
    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_1eadd74f315ad4f329152c13.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.048000;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_95e8f0156633106c67c19a8b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_b2fb5ce37f498c71c523f718.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_4afa7e89cbfd26b42b3515a5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_c5ccd40d997da0d9ff994583.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_ec762c5c967add204509dc97.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.518000;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_1b02647d996c365dac53ce2d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973000;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_e01f3bf09d70b67b91d67c4d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_159e86fffedce90db84b9d8f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_434c7d84bc4f9c6b0efdffc4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923000;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_41d48c9aca6002297c1c28fd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.935000;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_7bcad72450c89dee9563c0fd.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.460000;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_3f16c80a4422c4ed3a72df9d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_527faaff4ccbb74da99c99df.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.880000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6ef93eb3e2ef780d66383cc7.woff2')format("woff");}.fff{font-family:fff;line-height:0.932000;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_7bcad72450c89dee9563c0fd.woff2')format("woff");}.ff10{font-family:ff10;line-height:2.460000;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_3f16c80a4422c4ed3a72df9d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_527faaff4ccbb74da99c99df.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.880000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_6ef93eb3e2ef780d66383cc7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.932000;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_39ccd9c8d54a565414a6c0c6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_53f7a1bef1d2c292c489a6b0.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_6d03f8376b77fd2fe01cfd57.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.830000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_70c7fe31bef8a615c4c23842.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.558000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-80.296818px;}
.v7{vertical-align:-37.890000px;}
.v3{vertical-align:-20.115000px;}
.v8{vertical-align:-7.988400px;}
.v6{vertical-align:-6.885000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.006000px;}
.v4{vertical-align:20.100000px;}
.v2{vertical-align:26.820000px;}
.v5{vertical-align:35.910000px;}
.ls57{letter-spacing:-4.104000px;}
.ls43{letter-spacing:-1.596000px;}
.ls2d{letter-spacing:-1.539000px;}
.ls3a{letter-spacing:-1.482000px;}
.ls35{letter-spacing:-1.425000px;}
.ls45{letter-spacing:-1.368000px;}
.ls48{letter-spacing:-1.254000px;}
.ls36{letter-spacing:-1.197000px;}
.ls34{letter-spacing:-1.083000px;}
.ls47{letter-spacing:-1.026000px;}
.ls68{letter-spacing:-1.014000px;}
.ls3d{letter-spacing:-0.969000px;}
.ls22{letter-spacing:-0.912000px;}
.ls65{letter-spacing:-0.897000px;}
.ls26{letter-spacing:-0.855000px;}
.ls64{letter-spacing:-0.819000px;}
.ls1b{letter-spacing:-0.810000px;}
.ls37{letter-spacing:-0.798000px;}
.ls2b{letter-spacing:-0.741000px;}
.ls62{letter-spacing:-0.702000px;}
.lsd{letter-spacing:-0.684000px;}
.ls3e{letter-spacing:-0.675000px;}
.ls38{letter-spacing:-0.627000px;}
.ls60{letter-spacing:-0.585000px;}
.ls11{letter-spacing:-0.570000px;}
.ls66{letter-spacing:-0.546000px;}
.ls17{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.513000px;}
.lse{letter-spacing:-0.456000px;}
.ls2f{letter-spacing:-0.450000px;}
.ls63{letter-spacing:-0.429000px;}
.ls1c{letter-spacing:-0.405000px;}
.ls15{letter-spacing:-0.399000px;}
.ls5e{letter-spacing:-0.390000px;}
.ls19{letter-spacing:-0.383126px;}
.ls27{letter-spacing:-0.360000px;}
.ls61{letter-spacing:-0.351000px;}
.ls10{letter-spacing:-0.342000px;}
.lsa{letter-spacing:-0.324000px;}
.ls5d{letter-spacing:-0.312000px;}
.ls1d{letter-spacing:-0.287345px;}
.ls2e{letter-spacing:-0.285000px;}
.ls5f{letter-spacing:-0.273000px;}
.ls42{letter-spacing:-0.228000px;}
.ls24{letter-spacing:-0.171000px;}
.ls67{letter-spacing:-0.117000px;}
.ls2a{letter-spacing:-0.114000px;}
.ls5c{letter-spacing:-0.078000px;}
.ls16{letter-spacing:-0.057000px;}
.ls18{letter-spacing:-0.045000px;}
.ls1a{letter-spacing:-0.031927px;}
.ls9{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.000600px;}
.ls55{letter-spacing:0.056787px;}
.ls46{letter-spacing:0.057000px;}
.ls5b{letter-spacing:0.089700px;}
.ls8{letter-spacing:0.090000px;}
.ls33{letter-spacing:0.114000px;}
.ls5a{letter-spacing:0.117000px;}
.ls3f{letter-spacing:0.135000px;}
.ls23{letter-spacing:0.171000px;}
.ls4c{letter-spacing:0.176700px;}
.ls4b{letter-spacing:0.188100px;}
.ls40{letter-spacing:0.228000px;}
.ls58{letter-spacing:0.273000px;}
.ls59{letter-spacing:0.276900px;}
.lsf{letter-spacing:0.285000px;}
.ls7{letter-spacing:0.290700px;}
.ls12{letter-spacing:0.342000px;}
.ls6{letter-spacing:0.399000px;}
.ls49{letter-spacing:0.404136px;}
.ls1f{letter-spacing:0.405000px;}
.ls25{letter-spacing:0.456000px;}
.ls14{letter-spacing:0.513000px;}
.ls31{letter-spacing:0.570000px;}
.ls28{letter-spacing:0.627000px;}
.ls29{letter-spacing:0.684000px;}
.lsc{letter-spacing:0.741000px;}
.ls3{letter-spacing:0.746700px;}
.ls44{letter-spacing:0.798000px;}
.ls4a{letter-spacing:0.803700px;}
.ls39{letter-spacing:0.855000px;}
.ls5{letter-spacing:0.912000px;}
.ls56{letter-spacing:0.969000px;}
.ls4{letter-spacing:0.980400px;}
.ls1e{letter-spacing:0.990000px;}
.ls30{letter-spacing:1.026000px;}
.ls51{letter-spacing:1.078953px;}
.ls13{letter-spacing:1.083000px;}
.ls3c{letter-spacing:1.140000px;}
.ls41{letter-spacing:1.197000px;}
.ls4d{letter-spacing:1.254000px;}
.ls2c{letter-spacing:1.311000px;}
.ls4e{letter-spacing:1.368000px;}
.ls3b{letter-spacing:2.109000px;}
.ls50{letter-spacing:6.303357px;}
.ls4f{letter-spacing:7.893393px;}
.ls2{letter-spacing:9.180000px;}
.ls1{letter-spacing:9.900000px;}
.ls53{letter-spacing:10.505595px;}
.ls52{letter-spacing:11.016678px;}
.ls54{letter-spacing:11.073465px;}
.ls0{letter-spacing:11.220000px;}
.ls32{letter-spacing:108.945000px;}
.ls21{letter-spacing:499.443600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-20.088000px;}
.ws104{word-spacing:-14.307000px;}
.ws99{word-spacing:-13.509000px;}
.ws102{word-spacing:-13.338000px;}
.ws80{word-spacing:-13.110000px;}
.ws7d{word-spacing:-13.053000px;}
.ws3{word-spacing:-12.939000px;}
.wsfe{word-spacing:-12.882000px;}
.ws7e{word-spacing:-12.825000px;}
.ws59{word-spacing:-12.768000px;}
.ws98{word-spacing:-12.654000px;}
.wsd2{word-spacing:-12.597000px;}
.ws7f{word-spacing:-12.483000px;}
.wsd3{word-spacing:-12.426000px;}
.ws116{word-spacing:-12.255000px;}
.wsd4{word-spacing:-12.141000px;}
.wsc{word-spacing:-12.120000px;}
.ws97{word-spacing:-11.628000px;}
.ws103{word-spacing:-11.457000px;}
.ws2{word-spacing:-10.908000px;}
.ws57{word-spacing:-9.540000px;}
.ws5{word-spacing:-9.495000px;}
.wseb{word-spacing:-9.180289px;}
.ws55{word-spacing:-9.135000px;}
.ws5a{word-spacing:-9.090000px;}
.ws9{word-spacing:-9.000000px;}
.ws1{word-spacing:-8.599140px;}
.ws105{word-spacing:-8.268000px;}
.ws5f{word-spacing:-8.190000px;}
.ws12f{word-spacing:-7.956000px;}
.ws107{word-spacing:-7.950180px;}
.ws129{word-spacing:-7.878000px;}
.ws12d{word-spacing:-7.605000px;}
.ws121{word-spacing:-7.215000px;}
.ws11f{word-spacing:-7.098000px;}
.ws11d{word-spacing:-7.020000px;}
.ws122{word-spacing:-6.825000px;}
.ws11e{word-spacing:-6.786000px;}
.ws4{word-spacing:-6.768566px;}
.ws7{word-spacing:-6.736639px;}
.ws120{word-spacing:-6.708000px;}
.ws8{word-spacing:-6.481222px;}
.ws6{word-spacing:-6.385440px;}
.wsac{word-spacing:-4.389000px;}
.wsfd{word-spacing:-3.876000px;}
.wsf4{word-spacing:-3.420000px;}
.wsa9{word-spacing:-3.135000px;}
.ws100{word-spacing:-3.021000px;}
.ws43{word-spacing:-2.907000px;}
.wse4{word-spacing:-2.793000px;}
.ws6f{word-spacing:-2.736000px;}
.ws77{word-spacing:-2.622000px;}
.ws115{word-spacing:-2.508000px;}
.ws74{word-spacing:-2.451000px;}
.ws101{word-spacing:-2.394000px;}
.wsd{word-spacing:-2.340000px;}
.ws19{word-spacing:-2.337000px;}
.ws9d{word-spacing:-2.280000px;}
.wsaa{word-spacing:-2.223000px;}
.wse{word-spacing:-2.220000px;}
.ws11b{word-spacing:-2.166000px;}
.wsc3{word-spacing:-2.109000px;}
.wsc6{word-spacing:-2.052000px;}
.ws15{word-spacing:-1.998000px;}
.ws27{word-spacing:-1.995000px;}
.ws9f{word-spacing:-1.938000px;}
.ws12{word-spacing:-1.890000px;}
.ws18{word-spacing:-1.881000px;}
.wsdb{word-spacing:-1.824000px;}
.ws4b{word-spacing:-1.800000px;}
.ws23{word-spacing:-1.767000px;}
.wsf2{word-spacing:-1.710000px;}
.wsba{word-spacing:-1.653000px;}
.ws7c{word-spacing:-1.620000px;}
.ws11c{word-spacing:-1.599000px;}
.ws78{word-spacing:-1.596000px;}
.ws6b{word-spacing:-1.539000px;}
.ws58{word-spacing:-1.512000px;}
.wsfb{word-spacing:-1.482000px;}
.ws4a{word-spacing:-1.440000px;}
.ws66{word-spacing:-1.425000px;}
.wse0{word-spacing:-1.368000px;}
.ws2c{word-spacing:-1.311000px;}
.ws92{word-spacing:-1.260000px;}
.ws3b{word-spacing:-1.254000px;}
.ws96{word-spacing:-1.215000px;}
.wse9{word-spacing:-1.197000px;}
.wse6{word-spacing:-1.140000px;}
.ws22{word-spacing:-1.083000px;}
.ws91{word-spacing:-1.035000px;}
.ws6d{word-spacing:-1.026000px;}
.ws90{word-spacing:-0.990000px;}
.wsd9{word-spacing:-0.969000px;}
.wsf5{word-spacing:-0.912000px;}
.ws56{word-spacing:-0.900000px;}
.ws63{word-spacing:-0.855000px;}
.ws16{word-spacing:-0.810000px;}
.ws1f{word-spacing:-0.798000px;}
.ws6c{word-spacing:-0.741000px;}
.ws42{word-spacing:-0.684000px;}
.wsb{word-spacing:-0.660000px;}
.ws52{word-spacing:-0.630000px;}
.ws88{word-spacing:-0.627000px;}
.wsad{word-spacing:-0.570000px;}
.ws3e{word-spacing:-0.513000px;}
.ws24{word-spacing:-0.456000px;}
.ws7b{word-spacing:-0.405000px;}
.ws3c{word-spacing:-0.399000px;}
.ws65{word-spacing:-0.342000px;}
.wscb{word-spacing:-0.315000px;}
.ws29{word-spacing:-0.285000px;}
.ws125{word-spacing:-0.273000px;}
.wscc{word-spacing:-0.270000px;}
.ws132{word-spacing:-0.234000px;}
.wsec{word-spacing:-0.228000px;}
.ws26{word-spacing:-0.171000px;}
.ws124{word-spacing:-0.156000px;}
.ws126{word-spacing:-0.117000px;}
.ws73{word-spacing:-0.114000px;}
.ws3f{word-spacing:-0.057000px;}
.ws108{word-spacing:-0.056787px;}
.wsc4{word-spacing:-0.045000px;}
.ws12c{word-spacing:-0.039000px;}
.ws60{word-spacing:-0.031927px;}
.wsa{word-spacing:0.000000px;}
.ws40{word-spacing:0.057000px;}
.ws123{word-spacing:0.078000px;}
.wscf{word-spacing:0.090000px;}
.ws41{word-spacing:0.114000px;}
.ws131{word-spacing:0.117000px;}
.wsca{word-spacing:0.135000px;}
.ws3d{word-spacing:0.171000px;}
.wsce{word-spacing:0.225000px;}
.ws62{word-spacing:0.228000px;}
.ws127{word-spacing:0.273000px;}
.ws68{word-spacing:0.285000px;}
.ws130{word-spacing:0.312000px;}
.ws14{word-spacing:0.324000px;}
.ws32{word-spacing:0.342000px;}
.ws95{word-spacing:0.360000px;}
.ws61{word-spacing:0.399000px;}
.ws12b{word-spacing:0.429000px;}
.wsd1{word-spacing:0.450000px;}
.ws2a{word-spacing:0.456000px;}
.ws93{word-spacing:0.495000px;}
.ws33{word-spacing:0.513000px;}
.ws10{word-spacing:0.540000px;}
.ws128{word-spacing:0.585000px;}
.wse5{word-spacing:0.627000px;}
.ws53{word-spacing:0.630000px;}
.ws37{word-spacing:0.684000px;}
.ws12a{word-spacing:0.702000px;}
.wsd0{word-spacing:0.720000px;}
.wse1{word-spacing:0.741000px;}
.ws8e{word-spacing:0.798000px;}
.ws2f{word-spacing:0.855000px;}
.ws12e{word-spacing:0.897000px;}
.ws69{word-spacing:0.912000px;}
.ws79{word-spacing:0.945000px;}
.ws1c{word-spacing:0.969000px;}
.ws7a{word-spacing:0.990000px;}
.ws133{word-spacing:1.014000px;}
.wsc2{word-spacing:1.026000px;}
.ws30{word-spacing:1.083000px;}
.wsf1{word-spacing:1.140000px;}
.wsf{word-spacing:1.188000px;}
.wsa3{word-spacing:1.197000px;}
.wsa5{word-spacing:1.311000px;}
.wse2{word-spacing:1.368000px;}
.ws82{word-spacing:1.425000px;}
.wsbc{word-spacing:1.482000px;}
.ws4c{word-spacing:1.530000px;}
.wsdf{word-spacing:1.539000px;}
.ws94{word-spacing:1.575000px;}
.wsc1{word-spacing:1.596000px;}
.ws1e{word-spacing:1.653000px;}
.ws8d{word-spacing:1.710000px;}
.wscd{word-spacing:1.755000px;}
.ws87{word-spacing:1.767000px;}
.wsda{word-spacing:1.824000px;}
.ws28{word-spacing:1.881000px;}
.ws13{word-spacing:1.890000px;}
.ws76{word-spacing:1.938000px;}
.wsdc{word-spacing:1.995000px;}
.ws85{word-spacing:2.052000px;}
.wsdd{word-spacing:2.109000px;}
.wsb9{word-spacing:2.166000px;}
.ws17{word-spacing:2.223000px;}
.ws39{word-spacing:2.280000px;}
.wsf9{word-spacing:2.337000px;}
.ws1d{word-spacing:2.394000px;}
.wsa6{word-spacing:2.451000px;}
.wsc5{word-spacing:2.508000px;}
.ws64{word-spacing:2.565000px;}
.wsea{word-spacing:2.622000px;}
.ws8c{word-spacing:2.679000px;}
.wsbb{word-spacing:2.736000px;}
.wsbe{word-spacing:2.793000px;}
.ws84{word-spacing:2.850000px;}
.wse3{word-spacing:2.907000px;}
.ws54{word-spacing:2.925000px;}
.ws114{word-spacing:2.964000px;}
.ws47{word-spacing:3.015000px;}
.wsaf{word-spacing:3.021000px;}
.ws11{word-spacing:3.024000px;}
.ws2b{word-spacing:3.078000px;}
.ws89{word-spacing:3.135000px;}
.ws21{word-spacing:3.192000px;}
.wsc9{word-spacing:3.306000px;}
.ws51{word-spacing:3.330000px;}
.wsbf{word-spacing:3.363000px;}
.ws72{word-spacing:3.420000px;}
.ws118{word-spacing:3.477000px;}
.wsb7{word-spacing:3.534000px;}
.ws83{word-spacing:3.591000px;}
.wsc0{word-spacing:3.648000px;}
.wsb2{word-spacing:3.705000px;}
.ws1a{word-spacing:3.762000px;}
.ws8a{word-spacing:3.819000px;}
.wsb3{word-spacing:3.876000px;}
.ws8b{word-spacing:3.990000px;}
.wsb5{word-spacing:4.047000px;}
.ws4d{word-spacing:4.095000px;}
.ws2d{word-spacing:4.104000px;}
.ws6a{word-spacing:4.161000px;}
.ws67{word-spacing:4.218000px;}
.ws3a{word-spacing:4.275000px;}
.ws86{word-spacing:4.332000px;}
.wsbd{word-spacing:4.389000px;}
.wsb1{word-spacing:4.446000px;}
.ws44{word-spacing:4.455000px;}
.ws46{word-spacing:4.500000px;}
.ws6e{word-spacing:4.503000px;}
.wsde{word-spacing:4.560000px;}
.ws48{word-spacing:4.635000px;}
.wsb4{word-spacing:4.674000px;}
.wsa1{word-spacing:4.731000px;}
.ws9e{word-spacing:4.788000px;}
.ws20{word-spacing:4.845000px;}
.ws4f{word-spacing:4.860000px;}
.ws1b{word-spacing:4.902000px;}
.wsc8{word-spacing:4.959000px;}
.wsa0{word-spacing:5.016000px;}
.ws4e{word-spacing:5.085000px;}
.ws81{word-spacing:5.130000px;}
.wsfa{word-spacing:5.187000px;}
.ws71{word-spacing:5.244000px;}
.ws2e{word-spacing:5.301000px;}
.ws38{word-spacing:5.358000px;}
.wsb6{word-spacing:5.415000px;}
.wsa7{word-spacing:5.472000px;}
.ws31{word-spacing:5.529000px;}
.ws25{word-spacing:5.586000px;}
.ws34{word-spacing:5.700000px;}
.wsc7{word-spacing:5.757000px;}
.wsa4{word-spacing:5.814000px;}
.wsab{word-spacing:5.871000px;}
.ws70{word-spacing:5.928000px;}
.wse7{word-spacing:5.985000px;}
.ws8f{word-spacing:6.042000px;}
.ws110{word-spacing:6.099000px;}
.wsd5{word-spacing:6.156000px;}
.ws35{word-spacing:6.213000px;}
.ws75{word-spacing:6.270000px;}
.wsb8{word-spacing:6.327000px;}
.ws112{word-spacing:6.384000px;}
.ws45{word-spacing:6.435000px;}
.ws113{word-spacing:6.498000px;}
.ws36{word-spacing:6.612000px;}
.ws50{word-spacing:6.750000px;}
.wsb0{word-spacing:7.011000px;}
.wsf7{word-spacing:7.068000px;}
.wsd7{word-spacing:7.125000px;}
.ws117{word-spacing:7.182000px;}
.wsae{word-spacing:7.353000px;}
.wsa2{word-spacing:7.467000px;}
.ws49{word-spacing:7.695000px;}
.wsf3{word-spacing:7.809000px;}
.ws111{word-spacing:7.866000px;}
.ws10b{word-spacing:7.893393px;}
.wsf8{word-spacing:7.923000px;}
.wse8{word-spacing:7.980000px;}
.wsd6{word-spacing:8.037000px;}
.wsff{word-spacing:8.151000px;}
.ws10f{word-spacing:8.208000px;}
.wsa8{word-spacing:8.265000px;}
.wsed{word-spacing:8.550000px;}
.wsef{word-spacing:8.835000px;}
.wsfc{word-spacing:9.006000px;}
.ws11a{word-spacing:9.234000px;}
.ws119{word-spacing:9.291000px;}
.wsf0{word-spacing:9.348000px;}
.wsee{word-spacing:9.519000px;}
.wsf6{word-spacing:9.747000px;}
.ws10a{word-spacing:10.448808px;}
.ws10c{word-spacing:10.477201px;}
.wsd8{word-spacing:12.255000px;}
.ws106{word-spacing:13.061010px;}
.ws10d{word-spacing:13.452000px;}
.ws10e{word-spacing:13.509000px;}
.ws109{word-spacing:13.634559px;}
.ws9c{word-spacing:69.255000px;}
.ws9b{word-spacing:114.390000px;}
.ws9a{word-spacing:173.565000px;}
.ws5c{word-spacing:207.630000px;}
.ws5b{word-spacing:238.005000px;}
.ws5e{word-spacing:247.410000px;}
.ws5d{word-spacing:294.300000px;}
._36{margin-left:-22.881900px;}
._29{margin-left:-20.791500px;}
._35{margin-left:-19.593900px;}
._9{margin-left:-18.407400px;}
._28{margin-left:-17.309400px;}
._7{margin-left:-15.864000px;}
._a{margin-left:-14.018400px;}
._4{margin-left:-11.996550px;}
._27{margin-left:-10.550850px;}
._6{margin-left:-9.514500px;}
._26{margin-left:-8.005500px;}
._38{margin-left:-6.934884px;}
._8{margin-left:-5.683200px;}
._1{margin-left:-4.422000px;}
._0{margin-left:-2.479500px;}
._2{margin-left:-1.122000px;}
._3{width:1.748400px;}
._37{width:2.907000px;}
._e{width:4.155300px;}
._25{width:5.524500px;}
._b{width:7.444500px;}
._34{width:8.459100px;}
._13{width:9.540000px;}
._3b{width:10.959000px;}
._5{width:12.600000px;}
._c{width:13.819500px;}
._d{width:15.435000px;}
._3a{width:19.422000px;}
._3c{width:20.484900px;}
._3d{width:27.300000px;}
._39{width:32.292000px;}
._24{width:34.563600px;}
._2a{width:80.775000px;}
._33{width:142.965000px;}
._f{width:153.045000px;}
._31{width:154.530000px;}
._2b{width:159.339000px;}
._2c{width:165.386100px;}
._2d{width:184.590000px;}
._2e{width:187.380000px;}
._2f{width:189.855000px;}
._1d{width:241.830000px;}
._19{width:263.351100px;}
._21{width:274.140000px;}
._16{width:287.460000px;}
._1f{width:304.065000px;}
._32{width:305.145000px;}
._14{width:311.314500px;}
._12{width:325.125000px;}
._17{width:334.260000px;}
._23{width:350.725800px;}
._30{width:351.765000px;}
._10{width:368.730000px;}
._11{width:371.025000px;}
._1a{width:385.422000px;}
._1b{width:414.855000px;}
._22{width:472.365000px;}
._1c{width:552.555000px;}
._20{width:558.090000px;}
._15{width:714.735000px;}
._18{width:976.781100px;}
._1e{width:1084.545000px;}
.fc1{color:rgb(181,18,27);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:31.927200px;}
.fsb{font-size:39.000000px;}
.fsa{font-size:40.441800px;}
.fs8{font-size:42.000000px;}
.fs5{font-size:42.570000px;}
.fs0{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fsc{font-size:56.787000px;}
.fs6{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y25c{bottom:1.672036px;}
.y264{bottom:1.672337px;}
.y266{bottom:3.652350px;}
.y256{bottom:46.086450px;}
.y25e{bottom:46.086900px;}
.y1{bottom:46.462500px;}
.y25b{bottom:53.376600px;}
.y258{bottom:53.376750px;}
.y263{bottom:53.376900px;}
.y260{bottom:53.377050px;}
.y2af{bottom:74.550000px;}
.y197{bottom:76.467900px;}
.y13f{bottom:76.495350px;}
.y139{bottom:76.509600px;}
.y5c{bottom:76.515000px;}
.y15c{bottom:76.553400px;}
.y20a{bottom:76.574400px;}
.y227{bottom:76.614900px;}
.y254{bottom:76.625400px;}
.y1cf{bottom:76.789500px;}
.y45{bottom:76.809750px;}
.y387{bottom:77.658000px;}
.y2f7{bottom:77.660250px;}
.y33f{bottom:77.921250px;}
.ye4{bottom:80.092500px;}
.y2ae{bottom:88.053750px;}
.y5b{bottom:89.261250px;}
.y253{bottom:90.129150px;}
.y386{bottom:91.161750px;}
.y2f6{bottom:91.164000px;}
.y33e{bottom:91.425000px;}
.y196{bottom:92.969400px;}
.y13e{bottom:92.996850px;}
.y138{bottom:93.011100px;}
.y15b{bottom:93.054900px;}
.y209{bottom:93.075900px;}
.y226{bottom:93.116400px;}
.y1ce{bottom:93.291000px;}
.y44{bottom:93.311250px;}
.ye3{bottom:93.896250px;}
.ybd{bottom:94.492500px;}
.y2ad{bottom:101.557500px;}
.y5a{bottom:102.007500px;}
.y252{bottom:103.632900px;}
.y133{bottom:103.777500px;}
.y385{bottom:104.665500px;}
.y2f5{bottom:104.667750px;}
.y33d{bottom:104.928750px;}
.y3a1{bottom:106.186500px;}
.ybc{bottom:106.496250px;}
.ye2{bottom:107.685000px;}
.y195{bottom:109.470900px;}
.y13d{bottom:109.498350px;}
.y137{bottom:109.512600px;}
.y15a{bottom:109.556400px;}
.y208{bottom:109.577400px;}
.y225{bottom:109.617900px;}
.y1cd{bottom:109.792500px;}
.y43{bottom:109.812750px;}
.y59{bottom:114.753750px;}
.y2ac{bottom:115.061250px;}
.y251{bottom:117.136650px;}
.y384{bottom:118.169250px;}
.y2f4{bottom:118.171500px;}
.y33c{bottom:118.432500px;}
.ybb{bottom:118.500000px;}
.y3a0{bottom:119.690250px;}
.y14c{bottom:121.396650px;}
.ye1{bottom:121.488750px;}
.y132{bottom:121.743750px;}
.y194{bottom:125.972400px;}
.y13c{bottom:125.999850px;}
.y136{bottom:126.014100px;}
.y159{bottom:126.057900px;}
.y207{bottom:126.078900px;}
.y224{bottom:126.119400px;}
.y1cc{bottom:126.294000px;}
.y42{bottom:126.314250px;}
.y58{bottom:127.511250px;}
.y2ab{bottom:128.565000px;}
.y250{bottom:130.640400px;}
.y12f{bottom:130.732500px;}
.y383{bottom:131.673000px;}
.y2f3{bottom:131.675250px;}
.y33b{bottom:131.936250px;}
.y39f{bottom:133.194000px;}
.ye0{bottom:135.292500px;}
.y14b{bottom:136.392900px;}
.y131{bottom:139.710000px;}
.y57{bottom:140.257500px;}
.y2aa{bottom:142.068750px;}
.y193{bottom:142.473900px;}
.y13b{bottom:142.501350px;}
.y135{bottom:142.515600px;}
.y158{bottom:142.559400px;}
.y206{bottom:142.580400px;}
.y223{bottom:142.620900px;}
.y1cb{bottom:142.795500px;}
.yba{bottom:142.803750px;}
.y41{bottom:142.815750px;}
.y24f{bottom:144.060150px;}
.y382{bottom:145.176750px;}
.y2f2{bottom:145.179000px;}
.y33a{bottom:145.440000px;}
.y39e{bottom:146.697750px;}
.ydf{bottom:149.096250px;}
.y14a{bottom:151.389150px;}
.y56{bottom:153.003750px;}
.y2a9{bottom:155.572500px;}
.y130{bottom:157.676250px;}
.y381{bottom:158.680500px;}
.y2f1{bottom:158.682750px;}
.y339{bottom:158.943750px;}
.y192{bottom:158.975400px;}
.y13a{bottom:159.002850px;}
.y134{bottom:159.017100px;}
.y205{bottom:159.081900px;}
.y222{bottom:159.122400px;}
.y1ca{bottom:159.297000px;}
.y40{bottom:159.317250px;}
.yde{bottom:162.900000px;}
.yb9{bottom:163.233750px;}
.yb2{bottom:163.987500px;}
.y55{bottom:165.753750px;}
.y149{bottom:166.385400px;}
.y2a8{bottom:169.076250px;}
.y380{bottom:172.184250px;}
.y2f0{bottom:172.186500px;}
.y39d{bottom:172.194000px;}
.y338{bottom:172.447500px;}
.y191{bottom:175.476900px;}
.y157{bottom:175.562400px;}
.y204{bottom:175.583400px;}
.y221{bottom:175.623900px;}
.y12e{bottom:175.642500px;}
.y1c9{bottom:175.798500px;}
.y3f{bottom:175.818750px;}
.yb1{bottom:177.487500px;}
.y54{bottom:178.507500px;}
.y148{bottom:181.381650px;}
.yb8{bottom:181.942500px;}
.y2a7{bottom:182.580000px;}
.y37f{bottom:185.688000px;}
.y2ef{bottom:185.690250px;}
.y39c{bottom:185.697750px;}
.y337{bottom:185.951250px;}
.yb0{bottom:190.987500px;}
.y53{bottom:191.253750px;}
.y190{bottom:191.978400px;}
.y24e{bottom:192.054150px;}
.y156{bottom:192.063900px;}
.y203{bottom:192.084900px;}
.y220{bottom:192.125400px;}
.y146{bottom:192.259650px;}
.y1c8{bottom:192.300000px;}
.y3e{bottom:192.320250px;}
.y12d{bottom:193.608750px;}
.y2a6{bottom:196.083750px;}
.y147{bottom:196.377900px;}
.y37e{bottom:199.191750px;}
.y2ee{bottom:199.194000px;}
.y39b{bottom:199.201500px;}
.y336{bottom:199.455000px;}
.yb7{bottom:202.383750px;}
.y12a{bottom:202.597500px;}
.y52{bottom:204.003750px;}
.yaf{bottom:204.487500px;}
.yb4{bottom:206.343750px;}
.y145{bottom:207.255900px;}
.y18f{bottom:208.479900px;}
.y24d{bottom:208.555650px;}
.y155{bottom:208.565400px;}
.y202{bottom:208.586400px;}
.y21f{bottom:208.626900px;}
.y1c7{bottom:208.801500px;}
.y3d{bottom:208.821750px;}
.y2a5{bottom:209.587500px;}
.y12c{bottom:211.575000px;}
.y37d{bottom:212.695500px;}
.y2ed{bottom:212.697750px;}
.y39a{bottom:212.705250px;}
.y335{bottom:212.958750px;}
.yab{bottom:213.075000px;}
.y51{bottom:216.753750px;}
.yae{bottom:217.987500px;}
.yb3{bottom:219.843750px;}
.y144{bottom:222.252150px;}
.yb6{bottom:222.825000px;}
.y2a4{bottom:223.091250px;}
.ya8{bottom:224.291250px;}
.y18e{bottom:224.981400px;}
.y24c{bottom:225.057150px;}
.y154{bottom:225.066900px;}
.y201{bottom:225.087900px;}
.y21e{bottom:225.128400px;}
.y1c6{bottom:225.303000px;}
.y3c{bottom:225.323250px;}
.y37c{bottom:226.199250px;}
.y2ec{bottom:226.201500px;}
.y399{bottom:226.209000px;}
.y334{bottom:226.462500px;}
.y50{bottom:229.503750px;}
.y12b{bottom:229.541250px;}
.yad{bottom:231.487500px;}
.y2a3{bottom:236.595000px;}
.y143{bottom:237.248400px;}
.ya7{bottom:237.791250px;}
.y37b{bottom:239.703000px;}
.y2eb{bottom:239.705250px;}
.y398{bottom:239.712750px;}
.y333{bottom:239.966250px;}
.y18d{bottom:241.482900px;}
.y153{bottom:241.568400px;}
.y200{bottom:241.589400px;}
.y21d{bottom:241.629900px;}
.y1c5{bottom:241.804500px;}
.y3b{bottom:241.824750px;}
.y4f{bottom:242.257500px;}
.yb5{bottom:243.266250px;}
.yac{bottom:244.987500px;}
.y2a2{bottom:250.098750px;}
.y142{bottom:252.244650px;}
.y129{bottom:252.975000px;}
.y37a{bottom:253.206750px;}
.y2ea{bottom:253.209000px;}
.y397{bottom:253.216500px;}
.y332{bottom:253.470000px;}
.y4e{bottom:255.003750px;}
.y265{bottom:257.953500px;}
.y18c{bottom:257.984400px;}
.y152{bottom:258.069900px;}
.y1ff{bottom:258.090900px;}
.y21c{bottom:258.131400px;}
.y3a{bottom:258.326250px;}
.y267{bottom:261.605850px;}
.yaa{bottom:262.935000px;}
.y2a1{bottom:263.602500px;}
.y379{bottom:266.710500px;}
.y2e9{bottom:266.712750px;}
.y396{bottom:266.720250px;}
.y331{bottom:266.973750px;}
.y141{bottom:267.240900px;}
.y4d{bottom:267.753750px;}
.y18b{bottom:274.485900px;}
.y151{bottom:274.571400px;}
.y1fe{bottom:274.592400px;}
.y21b{bottom:274.632900px;}
.y1c4{bottom:274.807500px;}
.y39{bottom:274.827750px;}
.y128{bottom:275.130000px;}
.y2a0{bottom:277.106250px;}
.y378{bottom:280.214250px;}
.y2e8{bottom:280.216500px;}
.y395{bottom:280.224000px;}
.y330{bottom:280.477500px;}
.y4c{bottom:280.503750px;}
.ya9{bottom:280.901250px;}
.y140{bottom:282.237150px;}
.ya4{bottom:283.263750px;}
.y127{bottom:289.383750px;}
.y29f{bottom:290.610000px;}
.y18a{bottom:290.987400px;}
.y24b{bottom:291.063150px;}
.y150{bottom:291.072900px;}
.y1fd{bottom:291.093900px;}
.y21a{bottom:291.134400px;}
.y1c3{bottom:291.309000px;}
.y38{bottom:291.329250px;}
.y4b{bottom:293.253750px;}
.y377{bottom:293.718000px;}
.y2e7{bottom:293.720250px;}
.y394{bottom:293.727750px;}
.y32f{bottom:293.981250px;}
.ya3{bottom:296.763750px;}
.ya6{bottom:301.331250px;}
.y126{bottom:303.637500px;}
.y29e{bottom:304.113750px;}
.y4a{bottom:306.003750px;}
.y376{bottom:307.221750px;}
.y2e6{bottom:307.224000px;}
.y393{bottom:307.231500px;}
.y32e{bottom:307.485000px;}
.y189{bottom:307.488900px;}
.y24a{bottom:307.564650px;}
.y14f{bottom:307.574400px;}
.y1fc{bottom:307.595400px;}
.y219{bottom:307.635900px;}
.y1c2{bottom:307.810500px;}
.y37{bottom:307.830750px;}
.ya2{bottom:310.263750px;}
.y29d{bottom:317.617500px;}
.y49{bottom:318.757500px;}
.ya5{bottom:319.297500px;}
.y375{bottom:320.725500px;}
.y2e5{bottom:320.727750px;}
.y392{bottom:320.735250px;}
.y32d{bottom:320.988750px;}
.ya1{bottom:323.763750px;}
.y188{bottom:323.990400px;}
.y249{bottom:324.066150px;}
.y14e{bottom:324.075900px;}
.y1fb{bottom:324.096900px;}
.y218{bottom:324.137400px;}
.y1c1{bottom:324.312000px;}
.y36{bottom:324.332250px;}
.ya0{bottom:328.286250px;}
.y9c{bottom:329.287500px;}
.y29c{bottom:331.121250px;}
.y48{bottom:331.503750px;}
.y374{bottom:334.229250px;}
.y2e4{bottom:334.231500px;}
.y391{bottom:334.239000px;}
.y32c{bottom:334.492500px;}
.y187{bottom:340.491900px;}
.y248{bottom:340.567650px;}
.y14d{bottom:340.577400px;}
.y1fa{bottom:340.598400px;}
.y217{bottom:340.638900px;}
.y1c0{bottom:340.813500px;}
.y35{bottom:340.833750px;}
.y9b{bottom:342.787500px;}
.y47{bottom:344.253750px;}
.y29b{bottom:344.625000px;}
.y9e{bottom:346.252500px;}
.y373{bottom:347.733000px;}
.y2e3{bottom:347.735250px;}
.y390{bottom:347.742750px;}
.y32b{bottom:347.996250px;}
.y9f{bottom:355.230000px;}
.y186{bottom:356.993400px;}
.y247{bottom:357.069150px;}
.yfd{bottom:357.078900px;}
.y1f9{bottom:357.099900px;}
.y125{bottom:357.108900px;}
.y216{bottom:357.122400px;}
.y1bf{bottom:357.315000px;}
.y34{bottom:357.335250px;}
.y29a{bottom:358.128750px;}
.y9d{bottom:359.696250px;}
.y372{bottom:361.236750px;}
.y2e2{bottom:361.239000px;}
.y38f{bottom:361.246500px;}
.y32a{bottom:361.500000px;}
.y46{bottom:362.028750px;}
.y299{bottom:371.632500px;}
.y9a{bottom:373.196250px;}
.y185{bottom:373.494900px;}
.y246{bottom:373.570650px;}
.yfc{bottom:373.580400px;}
.y1f8{bottom:373.601400px;}
.y124{bottom:373.610400px;}
.y215{bottom:373.623900px;}
.y1be{bottom:373.816500px;}
.y33{bottom:373.836750px;}
.y371{bottom:374.740500px;}
.y2e1{bottom:374.742750px;}
.y38e{bottom:374.750250px;}
.y329{bottom:375.003750px;}
.y298{bottom:385.136250px;}
.y370{bottom:388.244250px;}
.y2e0{bottom:388.246500px;}
.y38d{bottom:388.254000px;}
.y328{bottom:388.507500px;}
.y184{bottom:389.996400px;}
.y245{bottom:390.072150px;}
.yfb{bottom:390.081900px;}
.y1f7{bottom:390.102900px;}
.y123{bottom:390.111900px;}
.y214{bottom:390.125400px;}
.y1bd{bottom:390.318000px;}
.y32{bottom:390.338250px;}
.y99{bottom:391.162500px;}
.y297{bottom:398.640000px;}
.y36f{bottom:401.748000px;}
.y2df{bottom:401.750250px;}
.y38c{bottom:401.757750px;}
.y327{bottom:402.011250px;}
.y183{bottom:406.497900px;}
.y244{bottom:406.573650px;}
.yfa{bottom:406.583400px;}
.y1f6{bottom:406.604400px;}
.y122{bottom:406.613400px;}
.y213{bottom:406.626900px;}
.y1bc{bottom:406.819500px;}
.y31{bottom:406.839750px;}
.y296{bottom:412.143750px;}
.y98{bottom:414.596250px;}
.y36e{bottom:415.251750px;}
.y2de{bottom:415.254000px;}
.y38b{bottom:415.261500px;}
.y326{bottom:415.515000px;}
.y182{bottom:422.999400px;}
.y243{bottom:423.075150px;}
.yf9{bottom:423.084900px;}
.y1f5{bottom:423.105900px;}
.y121{bottom:423.114900px;}
.y212{bottom:423.128400px;}
.y1bb{bottom:423.321000px;}
.y30{bottom:423.341250px;}
.y21{bottom:423.355500px;}
.y295{bottom:425.647500px;}
.y97{bottom:426.600000px;}
.y36d{bottom:428.755500px;}
.y2dd{bottom:428.757750px;}
.y38a{bottom:428.765250px;}
.y325{bottom:429.018750px;}
.y294{bottom:439.151250px;}
.y181{bottom:439.500900px;}
.y242{bottom:439.576650px;}
.yf8{bottom:439.586400px;}
.y1f4{bottom:439.607400px;}
.y120{bottom:439.616400px;}
.y211{bottom:439.629900px;}
.y1ba{bottom:439.822500px;}
.y2f{bottom:439.842750px;}
.y20{bottom:439.857000px;}
.y36c{bottom:442.259250px;}
.y2dc{bottom:442.261500px;}
.y389{bottom:442.269000px;}
.y324{bottom:442.522500px;}
.y96{bottom:448.743750px;}
.y293{bottom:452.655000px;}
.y36b{bottom:455.763000px;}
.y2db{bottom:455.765250px;}
.y388{bottom:455.772750px;}
.y180{bottom:456.002400px;}
.y323{bottom:456.026250px;}
.y241{bottom:456.078150px;}
.yf7{bottom:456.087900px;}
.y1f3{bottom:456.108900px;}
.y11f{bottom:456.117900px;}
.y210{bottom:456.131400px;}
.y1b9{bottom:456.324000px;}
.y2e{bottom:456.344250px;}
.y1f{bottom:456.358500px;}
.y95{bottom:462.997500px;}
.y292{bottom:466.158750px;}
.y36a{bottom:469.266750px;}
.y2da{bottom:469.269000px;}
.y322{bottom:469.530000px;}
.y17f{bottom:472.503900px;}
.y240{bottom:472.579650px;}
.yf6{bottom:472.589400px;}
.y1f2{bottom:472.610400px;}
.y11e{bottom:472.619400px;}
.y20f{bottom:472.632900px;}
.y1b8{bottom:472.825500px;}
.y2d{bottom:472.845750px;}
.y1e{bottom:472.860000px;}
.y94{bottom:477.251250px;}
.y291{bottom:479.662500px;}
.y369{bottom:482.770500px;}
.y2d9{bottom:482.772750px;}
.y321{bottom:483.033750px;}
.y17e{bottom:489.005400px;}
.y23f{bottom:489.081150px;}
.yf5{bottom:489.090900px;}
.y1f1{bottom:489.111900px;}
.y11d{bottom:489.120900px;}
.y20e{bottom:489.134400px;}
.y1b7{bottom:489.327000px;}
.y2c{bottom:489.347250px;}
.y1d{bottom:489.361500px;}
.y93{bottom:491.505000px;}
.y290{bottom:493.166250px;}
.y368{bottom:496.274250px;}
.y2d8{bottom:496.276500px;}
.y320{bottom:496.537500px;}
.y17d{bottom:505.506900px;}
.y23e{bottom:505.582650px;}
.yf4{bottom:505.592400px;}
.y1f0{bottom:505.613400px;}
.y11c{bottom:505.622400px;}
.y20d{bottom:505.635900px;}
.y92{bottom:505.758750px;}
.y1b6{bottom:505.828500px;}
.y2b{bottom:505.848750px;}
.y1c{bottom:505.863000px;}
.y28f{bottom:506.670000px;}
.y367{bottom:509.778000px;}
.y2d7{bottom:509.780250px;}
.y31f{bottom:510.041250px;}
.y91{bottom:520.012500px;}
.y28e{bottom:520.173750px;}
.y17c{bottom:522.008400px;}
.y23d{bottom:522.084150px;}
.yf3{bottom:522.093900px;}
.y1ef{bottom:522.114900px;}
.y11b{bottom:522.123900px;}
.y20c{bottom:522.137400px;}
.y1b5{bottom:522.330000px;}
.y2a{bottom:522.350250px;}
.y1b{bottom:522.364500px;}
.y366{bottom:523.281750px;}
.y2d6{bottom:523.284000px;}
.y31e{bottom:523.545000px;}
.y28d{bottom:533.677500px;}
.y365{bottom:536.785500px;}
.y2d5{bottom:536.787750px;}
.y31d{bottom:537.048750px;}
.y17b{bottom:538.509900px;}
.y23c{bottom:538.585650px;}
.yf2{bottom:538.595400px;}
.y1ee{bottom:538.616400px;}
.y11a{bottom:538.625400px;}
.y20b{bottom:538.638900px;}
.y1b4{bottom:538.831500px;}
.y29{bottom:538.851750px;}
.y1a{bottom:538.866000px;}
.y28c{bottom:547.181250px;}
.y364{bottom:550.289250px;}
.y2d4{bottom:550.291500px;}
.y31c{bottom:550.552500px;}
.y17a{bottom:555.011400px;}
.y23b{bottom:555.087150px;}
.yf1{bottom:555.096900px;}
.y1ed{bottom:555.117900px;}
.y119{bottom:555.126900px;}
.y1b3{bottom:555.333000px;}
.y28{bottom:555.353250px;}
.y19{bottom:555.367500px;}
.y28b{bottom:560.685000px;}
.y363{bottom:563.793000px;}
.y2d3{bottom:563.795250px;}
.y31b{bottom:564.056250px;}
.y179{bottom:571.512900px;}
.y23a{bottom:571.588650px;}
.yf0{bottom:571.598400px;}
.y1ec{bottom:571.619400px;}
.y118{bottom:571.628400px;}
.y1b2{bottom:571.834500px;}
.y27{bottom:571.854750px;}
.y18{bottom:571.869000px;}
.y28a{bottom:574.188750px;}
.y362{bottom:577.296750px;}
.y2d2{bottom:577.299000px;}
.y31a{bottom:577.560000px;}
.y289{bottom:587.692500px;}
.y178{bottom:588.014400px;}
.y239{bottom:588.090150px;}
.yef{bottom:588.099900px;}
.y1eb{bottom:588.120900px;}
.y117{bottom:588.129900px;}
.y1b1{bottom:588.336000px;}
.y26{bottom:588.356250px;}
.y17{bottom:588.370500px;}
.y361{bottom:590.800500px;}
.y2d1{bottom:590.802750px;}
.y319{bottom:591.063750px;}
.y288{bottom:601.196250px;}
.y360{bottom:604.304250px;}
.y2d0{bottom:604.306500px;}
.y71{bottom:604.513650px;}
.y177{bottom:604.515900px;}
.y318{bottom:604.567500px;}
.y238{bottom:604.591650px;}
.y8c{bottom:604.599150px;}
.yee{bottom:604.601400px;}
.y1ea{bottom:604.622400px;}
.y116{bottom:604.631400px;}
.y1b0{bottom:604.837500px;}
.y25{bottom:604.857750px;}
.y16{bottom:604.872000px;}
.y287{bottom:614.700000px;}
.y35f{bottom:617.808000px;}
.y2cf{bottom:617.810250px;}
.y317{bottom:618.071250px;}
.y70{bottom:621.015150px;}
.y176{bottom:621.017400px;}
.y237{bottom:621.093150px;}
.y8b{bottom:621.100650px;}
.yed{bottom:621.102900px;}
.y1e9{bottom:621.123900px;}
.y115{bottom:621.132900px;}
.y1af{bottom:621.339000px;}
.y24{bottom:621.359250px;}
.y15{bottom:621.373500px;}
.y286{bottom:628.203750px;}
.y35e{bottom:631.311750px;}
.y2ce{bottom:631.314000px;}
.y316{bottom:631.575000px;}
.y6f{bottom:637.516650px;}
.y175{bottom:637.518900px;}
.y236{bottom:637.594650px;}
.y8a{bottom:637.602150px;}
.yec{bottom:637.604400px;}
.y1e8{bottom:637.625400px;}
.y114{bottom:637.634400px;}
.y1ae{bottom:637.840500px;}
.y23{bottom:637.860750px;}
.y14{bottom:637.875000px;}
.y285{bottom:641.707500px;}
.y35d{bottom:644.815500px;}
.y2cd{bottom:644.817750px;}
.y315{bottom:645.078750px;}
.y6e{bottom:654.018150px;}
.y174{bottom:654.020400px;}
.y235{bottom:654.096150px;}
.y89{bottom:654.103650px;}
.yeb{bottom:654.105900px;}
.y1e7{bottom:654.126900px;}
.y113{bottom:654.135900px;}
.y13{bottom:654.339000px;}
.y1ad{bottom:654.342000px;}
.y22{bottom:654.362250px;}
.y284{bottom:655.211250px;}
.y35c{bottom:658.319250px;}
.y2cc{bottom:658.321500px;}
.y314{bottom:658.582500px;}
.y283{bottom:668.715000px;}
.y6d{bottom:670.519650px;}
.y173{bottom:670.521900px;}
.y88{bottom:670.605150px;}
.yea{bottom:670.607400px;}
.y1e6{bottom:670.628400px;}
.y112{bottom:670.637400px;}
.y1ac{bottom:670.843500px;}
.y35b{bottom:671.823000px;}
.y2cb{bottom:671.825250px;}
.y313{bottom:672.086250px;}
.y25d{bottom:678.424500px;}
.y282{bottom:682.218750px;}
.y35a{bottom:685.326750px;}
.y2ca{bottom:685.329000px;}
.y312{bottom:685.590000px;}
.y6c{bottom:687.021150px;}
.y172{bottom:687.023400px;}
.y87{bottom:687.106650px;}
.ye9{bottom:687.108900px;}
.y1e5{bottom:687.129900px;}
.y111{bottom:687.138900px;}
.y1ab{bottom:687.345000px;}
.y281{bottom:695.722500px;}
.y359{bottom:698.830500px;}
.y2c9{bottom:698.832750px;}
.y311{bottom:699.093750px;}
.y262{bottom:701.790900px;}
.y6b{bottom:703.522650px;}
.y171{bottom:703.524900px;}
.y86{bottom:703.608150px;}
.ye8{bottom:703.610400px;}
.y1e4{bottom:703.631400px;}
.y110{bottom:703.640400px;}
.y1aa{bottom:703.846500px;}
.y280{bottom:709.226250px;}
.y12{bottom:709.243500px;}
.y25f{bottom:711.726900px;}
.y358{bottom:712.334250px;}
.y2c8{bottom:712.336500px;}
.y310{bottom:712.597500px;}
.y170{bottom:720.026400px;}
.y85{bottom:720.109650px;}
.ye7{bottom:720.111900px;}
.y1e3{bottom:720.132900px;}
.y10f{bottom:720.140400px;}
.y1a9{bottom:720.348000px;}
.y261{bottom:721.663200px;}
.y27f{bottom:722.730000px;}
.y11{bottom:724.998000px;}
.y357{bottom:725.838000px;}
.y2c7{bottom:725.840250px;}
.y30f{bottom:726.101250px;}
.y27e{bottom:736.233750px;}
.y16f{bottom:736.527900px;}
.y84{bottom:736.611150px;}
.ye6{bottom:736.613400px;}
.y1e2{bottom:736.634400px;}
.y1a8{bottom:736.849500px;}
.y356{bottom:739.341750px;}
.y2c6{bottom:739.344000px;}
.y30e{bottom:739.605000px;}
.y10{bottom:740.752500px;}
.y90{bottom:741.033900px;}
.y27d{bottom:749.737500px;}
.y355{bottom:752.845500px;}
.y2c5{bottom:752.847750px;}
.y16e{bottom:753.029400px;}
.y30d{bottom:753.108750px;}
.y83{bottom:753.112650px;}
.ye5{bottom:753.114900px;}
.y1e1{bottom:753.135900px;}
.y1a7{bottom:753.351000px;}
.y8f{bottom:756.030150px;}
.yf{bottom:756.507000px;}
.y255{bottom:762.543000px;}
.y27c{bottom:763.241250px;}
.y354{bottom:766.349250px;}
.y2c4{bottom:766.351500px;}
.y30c{bottom:766.612500px;}
.y16d{bottom:769.530900px;}
.y10e{bottom:769.559400px;}
.y82{bottom:769.614150px;}
.yce{bottom:769.616400px;}
.y1e0{bottom:769.637400px;}
.ydd{bottom:769.638900px;}
.y1a6{bottom:769.852500px;}
.y8e{bottom:771.026400px;}
.ye{bottom:772.261500px;}
.y27b{bottom:776.745000px;}
.y353{bottom:779.853000px;}
.y2c3{bottom:779.855250px;}
.y30b{bottom:780.116250px;}
.y25a{bottom:785.908950px;}
.y8d{bottom:786.022650px;}
.y16c{bottom:786.032400px;}
.y10d{bottom:786.060900px;}
.y81{bottom:786.115650px;}
.ycd{bottom:786.117900px;}
.y1df{bottom:786.138900px;}
.ydc{bottom:786.140400px;}
.yd{bottom:788.016000px;}
.y27a{bottom:790.248750px;}
.y352{bottom:793.356750px;}
.y2c2{bottom:793.359000px;}
.y30a{bottom:793.620000px;}
.y257{bottom:795.844950px;}
.y6a{bottom:800.970000px;}
.y16b{bottom:802.533900px;}
.y10c{bottom:802.562400px;}
.y80{bottom:802.617150px;}
.ycc{bottom:802.619400px;}
.y1de{bottom:802.638900px;}
.ydb{bottom:802.640400px;}
.y1a5{bottom:802.855500px;}
.y279{bottom:803.752500px;}
.yc{bottom:803.770500px;}
.y259{bottom:805.781250px;}
.y351{bottom:806.860500px;}
.y2c1{bottom:806.862750px;}
.y309{bottom:807.123750px;}
.y278{bottom:817.256250px;}
.y16a{bottom:819.035400px;}
.y10b{bottom:819.063900px;}
.y7f{bottom:819.118650px;}
.ycb{bottom:819.120900px;}
.y1dd{bottom:819.137400px;}
.y1a4{bottom:819.357000px;}
.yb{bottom:819.525000px;}
.y350{bottom:820.364250px;}
.y2c0{bottom:820.366500px;}
.y308{bottom:820.627500px;}
.y277{bottom:830.760000px;}
.y34f{bottom:833.868000px;}
.y2bf{bottom:833.870250px;}
.y307{bottom:834.131250px;}
.y169{bottom:835.536900px;}
.y10a{bottom:835.565400px;}
.y234{bottom:835.598400px;}
.y7e{bottom:835.620150px;}
.yca{bottom:835.622400px;}
.y1dc{bottom:835.638900px;}
.y1a3{bottom:835.858500px;}
.y276{bottom:844.263750px;}
.y34e{bottom:847.371750px;}
.y2be{bottom:847.374000px;}
.y306{bottom:847.635000px;}
.ya{bottom:850.575000px;}
.y168{bottom:852.038400px;}
.y109{bottom:852.066900px;}
.yda{bottom:852.095400px;}
.y233{bottom:852.099900px;}
.y7d{bottom:852.121650px;}
.yc9{bottom:852.123900px;}
.y1db{bottom:852.129900px;}
.y1a2{bottom:852.360000px;}
.y69{bottom:853.071000px;}
.y275{bottom:857.767500px;}
.y34d{bottom:860.875500px;}
.y2bd{bottom:860.877750px;}
.y305{bottom:861.138750px;}
.y68{bottom:868.075500px;}
.y167{bottom:868.539900px;}
.y108{bottom:868.568400px;}
.y9{bottom:868.575000px;}
.yd9{bottom:868.596900px;}
.y232{bottom:868.601400px;}
.y7c{bottom:868.623150px;}
.yc8{bottom:868.625400px;}
.y1da{bottom:868.631400px;}
.y1a1{bottom:868.861500px;}
.y274{bottom:871.271250px;}
.y34c{bottom:874.379250px;}
.y2bc{bottom:874.381500px;}
.y304{bottom:874.642500px;}
.y67{bottom:883.080000px;}
.y273{bottom:884.775000px;}
.y166{bottom:885.041400px;}
.y107{bottom:885.069900px;}
.yd8{bottom:885.098400px;}
.y231{bottom:885.102900px;}
.y7b{bottom:885.124650px;}
.yc7{bottom:885.126900px;}
.y1d9{bottom:885.132900px;}
.y1a0{bottom:885.363000px;}
.y8{bottom:886.575000px;}
.y34b{bottom:887.883000px;}
.y2bb{bottom:887.885250px;}
.y303{bottom:888.146250px;}
.y66{bottom:898.084500px;}
.y272{bottom:898.278750px;}
.y34a{bottom:901.386750px;}
.y2ba{bottom:901.389000px;}
.y165{bottom:901.542900px;}
.y106{bottom:901.571400px;}
.yd7{bottom:901.599900px;}
.y230{bottom:901.604400px;}
.y7a{bottom:901.626150px;}
.yc6{bottom:901.628400px;}
.y1d8{bottom:901.634400px;}
.y302{bottom:901.650000px;}
.y19f{bottom:901.864500px;}
.y7{bottom:904.575000px;}
.y271{bottom:911.782500px;}
.y65{bottom:913.089000px;}
.y349{bottom:914.890500px;}
.y2b9{bottom:914.892750px;}
.y301{bottom:915.153750px;}
.y164{bottom:918.044400px;}
.y105{bottom:918.072900px;}
.yd6{bottom:918.101400px;}
.y22f{bottom:918.105900px;}
.y79{bottom:918.127650px;}
.yc5{bottom:918.129900px;}
.y1d7{bottom:918.135900px;}
.y19e{bottom:918.366000px;}
.y270{bottom:925.286250px;}
.y64{bottom:928.093500px;}
.y348{bottom:928.394250px;}
.y2b8{bottom:928.396500px;}
.y300{bottom:928.657500px;}
.y163{bottom:934.545900px;}
.y104{bottom:934.574400px;}
.yd5{bottom:934.602900px;}
.y22e{bottom:934.607400px;}
.y78{bottom:934.629150px;}
.yc4{bottom:934.631400px;}
.y1d6{bottom:934.637400px;}
.y19d{bottom:934.867500px;}
.y6{bottom:937.131000px;}
.y26f{bottom:938.790000px;}
.y347{bottom:941.898000px;}
.y2b7{bottom:941.900250px;}
.y2ff{bottom:942.161250px;}
.y63{bottom:943.098000px;}
.y162{bottom:951.047400px;}
.y103{bottom:951.075900px;}
.yd4{bottom:951.104400px;}
.y22d{bottom:951.108900px;}
.y77{bottom:951.130650px;}
.yc3{bottom:951.132900px;}
.y1d5{bottom:951.138900px;}
.y19c{bottom:951.369000px;}
.y26e{bottom:952.293750px;}
.y346{bottom:955.401750px;}
.y2b6{bottom:955.404000px;}
.y2fe{bottom:955.665000px;}
.y62{bottom:958.102500px;}
.y26d{bottom:965.797500px;}
.y5{bottom:967.128000px;}
.y1d4{bottom:967.542750px;}
.y161{bottom:967.548900px;}
.y102{bottom:967.577400px;}
.yd3{bottom:967.605900px;}
.y22c{bottom:967.610400px;}
.y76{bottom:967.632150px;}
.yc2{bottom:967.634400px;}
.y19b{bottom:967.870500px;}
.y345{bottom:968.905500px;}
.y2b5{bottom:968.907750px;}
.y2fd{bottom:969.168750px;}
.y61{bottom:973.107000px;}
.y26c{bottom:979.301250px;}
.y344{bottom:982.409250px;}
.y2b4{bottom:982.411500px;}
.y2fc{bottom:982.672500px;}
.y1d3{bottom:984.044250px;}
.y160{bottom:984.050400px;}
.y101{bottom:984.078900px;}
.yd2{bottom:984.107400px;}
.y22b{bottom:984.111900px;}
.y75{bottom:984.133650px;}
.yc1{bottom:984.135900px;}
.y19a{bottom:984.372000px;}
.y60{bottom:988.111500px;}
.y26b{bottom:992.805000px;}
.y343{bottom:995.913000px;}
.y2b3{bottom:995.915250px;}
.y2fb{bottom:996.176250px;}
.y4{bottom:997.125000px;}
.y1d2{bottom:1000.545750px;}
.y15f{bottom:1000.551900px;}
.y100{bottom:1000.580400px;}
.yd1{bottom:1000.608900px;}
.y22a{bottom:1000.613400px;}
.y74{bottom:1000.635150px;}
.yc0{bottom:1000.637400px;}
.y199{bottom:1000.873500px;}
.y5f{bottom:1003.116000px;}
.y26a{bottom:1006.308750px;}
.y342{bottom:1009.416750px;}
.y2b2{bottom:1009.419000px;}
.y2fa{bottom:1009.680000px;}
.y1d1{bottom:1017.047250px;}
.y15e{bottom:1017.053400px;}
.yff{bottom:1017.081900px;}
.yd0{bottom:1017.110400px;}
.y229{bottom:1017.114900px;}
.y73{bottom:1017.136650px;}
.ybf{bottom:1017.138900px;}
.y198{bottom:1017.375000px;}
.y5e{bottom:1018.120500px;}
.y269{bottom:1019.812500px;}
.y341{bottom:1022.920500px;}
.y2b1{bottom:1022.922750px;}
.y2f9{bottom:1023.183750px;}
.y5d{bottom:1033.125000px;}
.y268{bottom:1033.312500px;}
.y1d0{bottom:1033.548750px;}
.y15d{bottom:1033.554900px;}
.yfe{bottom:1033.583400px;}
.ycf{bottom:1033.611900px;}
.y228{bottom:1033.616400px;}
.y72{bottom:1033.638150px;}
.ybe{bottom:1033.640400px;}
.y3{bottom:1033.875000px;}
.y340{bottom:1036.424250px;}
.y2b0{bottom:1036.426500px;}
.y2f8{bottom:1036.687500px;}
.y2{bottom:1074.615300px;}
.h1b{height:3.747942px;}
.h1d{height:13.770000px;}
.h8{height:26.403794px;}
.h18{height:28.119000px;}
.h1e{height:30.324258px;}
.h19{height:32.253000px;}
.h3{height:32.445000px;}
.hc{height:34.734000px;}
.h1{height:37.215000px;}
.h4{height:38.934000px;}
.h1c{height:40.432344px;}
.h7{height:40.812000px;}
.h15{height:40.818000px;}
.h14{height:40.824000px;}
.h13{height:40.854000px;}
.h17{height:40.884000px;}
.h16{height:40.986000px;}
.h11{height:41.097000px;}
.h12{height:41.202600px;}
.hf{height:42.176695px;}
.hb{height:46.473794px;}
.ha{height:46.488794px;}
.h9{height:46.503794px;}
.h10{height:46.578794px;}
.hd{height:47.109375px;}
.h1a{height:54.330000px;}
.h2{height:55.506000px;}
.h6{height:57.512970px;}
.he{height:73.125000px;}
.h5{height:77.868000px;}
.h0{height:1134.000000px;}
.w2{width:274.425000px;}
.w1{width:275.415000px;}
.w3{width:298.545000px;}
.w0{width:891.000000px;}
.x2b{left:-1.593000px;}
.x0{left:0.000000px;}
.x30{left:1.023024px;}
.x1{left:54.000000px;}
.x7{left:72.000000px;}
.x27{left:73.999800px;}
.x35{left:78.024000px;}
.x2d{left:178.551300px;}
.x8{left:203.535000px;}
.x17{left:207.528750px;}
.x10{left:210.150000px;}
.x1d{left:213.457500px;}
.x1c{left:217.901250px;}
.xf{left:221.490000px;}
.x2f{left:262.129650px;}
.x33{left:269.398650px;}
.x1f{left:298.665000px;}
.x1e{left:300.858750px;}
.x12{left:316.867500px;}
.x9{left:320.872500px;}
.x11{left:328.207500px;}
.x29{left:338.408550px;}
.x28{left:342.132300px;}
.xd{left:427.623750px;}
.x19{left:428.973750px;}
.x20{left:430.558350px;}
.x18{left:444.318750px;}
.x4{left:454.496250px;}
.xa{left:469.012500px;}
.x3{left:472.494000px;}
.x36{left:478.671000px;}
.x31{left:496.477500px;}
.x2a{left:508.042500px;}
.x21{left:517.863000px;}
.x2c{left:519.625500px;}
.x24{left:521.848800px;}
.x13{left:524.351250px;}
.xe{left:529.807500px;}
.x23{left:534.693000px;}
.x22{left:551.016750px;}
.x1a{left:631.068750px;}
.x15{left:637.008750px;}
.xb{left:641.013750px;}
.x25{left:644.743800px;}
.x14{left:648.348750px;}
.x2e{left:699.040800px;}
.x5{left:736.800000px;}
.x1b{left:752.276250px;}
.x32{left:754.185000px;}
.xc{left:756.247500px;}
.x26{left:759.887550px;}
.x16{left:762.772500px;}
.x34{left:797.153100px;}
.x2{left:803.396700px;}
.x6{left:849.000000px;}
@media print{
.v9{vertical-align:-71.374949pt;}
.v7{vertical-align:-33.680000pt;}
.v3{vertical-align:-17.880000pt;}
.v8{vertical-align:-7.100800pt;}
.v6{vertical-align:-6.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.338667pt;}
.v4{vertical-align:17.866667pt;}
.v2{vertical-align:23.840000pt;}
.v5{vertical-align:31.920000pt;}
.ls57{letter-spacing:-3.648000pt;}
.ls43{letter-spacing:-1.418667pt;}
.ls2d{letter-spacing:-1.368000pt;}
.ls3a{letter-spacing:-1.317333pt;}
.ls35{letter-spacing:-1.266667pt;}
.ls45{letter-spacing:-1.216000pt;}
.ls48{letter-spacing:-1.114667pt;}
.ls36{letter-spacing:-1.064000pt;}
.ls34{letter-spacing:-0.962667pt;}
.ls47{letter-spacing:-0.912000pt;}
.ls68{letter-spacing:-0.901333pt;}
.ls3d{letter-spacing:-0.861333pt;}
.ls22{letter-spacing:-0.810667pt;}
.ls65{letter-spacing:-0.797333pt;}
.ls26{letter-spacing:-0.760000pt;}
.ls64{letter-spacing:-0.728000pt;}
.ls1b{letter-spacing:-0.720000pt;}
.ls37{letter-spacing:-0.709333pt;}
.ls2b{letter-spacing:-0.658667pt;}
.ls62{letter-spacing:-0.624000pt;}
.lsd{letter-spacing:-0.608000pt;}
.ls3e{letter-spacing:-0.600000pt;}
.ls38{letter-spacing:-0.557333pt;}
.ls60{letter-spacing:-0.520000pt;}
.ls11{letter-spacing:-0.506667pt;}
.ls66{letter-spacing:-0.485333pt;}
.ls17{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.456000pt;}
.lse{letter-spacing:-0.405333pt;}
.ls2f{letter-spacing:-0.400000pt;}
.ls63{letter-spacing:-0.381333pt;}
.ls1c{letter-spacing:-0.360000pt;}
.ls15{letter-spacing:-0.354667pt;}
.ls5e{letter-spacing:-0.346667pt;}
.ls19{letter-spacing:-0.340557pt;}
.ls27{letter-spacing:-0.320000pt;}
.ls61{letter-spacing:-0.312000pt;}
.ls10{letter-spacing:-0.304000pt;}
.lsa{letter-spacing:-0.288000pt;}
.ls5d{letter-spacing:-0.277333pt;}
.ls1d{letter-spacing:-0.255418pt;}
.ls2e{letter-spacing:-0.253333pt;}
.ls5f{letter-spacing:-0.242667pt;}
.ls42{letter-spacing:-0.202667pt;}
.ls24{letter-spacing:-0.152000pt;}
.ls67{letter-spacing:-0.104000pt;}
.ls2a{letter-spacing:-0.101333pt;}
.ls5c{letter-spacing:-0.069333pt;}
.ls16{letter-spacing:-0.050667pt;}
.ls18{letter-spacing:-0.040000pt;}
.ls1a{letter-spacing:-0.028380pt;}
.ls9{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.000533pt;}
.ls55{letter-spacing:0.050477pt;}
.ls46{letter-spacing:0.050667pt;}
.ls5b{letter-spacing:0.079733pt;}
.ls8{letter-spacing:0.080000pt;}
.ls33{letter-spacing:0.101333pt;}
.ls5a{letter-spacing:0.104000pt;}
.ls3f{letter-spacing:0.120000pt;}
.ls23{letter-spacing:0.152000pt;}
.ls4c{letter-spacing:0.157067pt;}
.ls4b{letter-spacing:0.167200pt;}
.ls40{letter-spacing:0.202667pt;}
.ls58{letter-spacing:0.242667pt;}
.ls59{letter-spacing:0.246133pt;}
.lsf{letter-spacing:0.253333pt;}
.ls7{letter-spacing:0.258400pt;}
.ls12{letter-spacing:0.304000pt;}
.ls6{letter-spacing:0.354667pt;}
.ls49{letter-spacing:0.359232pt;}
.ls1f{letter-spacing:0.360000pt;}
.ls25{letter-spacing:0.405333pt;}
.ls14{letter-spacing:0.456000pt;}
.ls31{letter-spacing:0.506667pt;}
.ls28{letter-spacing:0.557333pt;}
.ls29{letter-spacing:0.608000pt;}
.lsc{letter-spacing:0.658667pt;}
.ls3{letter-spacing:0.663733pt;}
.ls44{letter-spacing:0.709333pt;}
.ls4a{letter-spacing:0.714400pt;}
.ls39{letter-spacing:0.760000pt;}
.ls5{letter-spacing:0.810667pt;}
.ls56{letter-spacing:0.861333pt;}
.ls4{letter-spacing:0.871467pt;}
.ls1e{letter-spacing:0.880000pt;}
.ls30{letter-spacing:0.912000pt;}
.ls51{letter-spacing:0.959069pt;}
.ls13{letter-spacing:0.962667pt;}
.ls3c{letter-spacing:1.013333pt;}
.ls41{letter-spacing:1.064000pt;}
.ls4d{letter-spacing:1.114667pt;}
.ls2c{letter-spacing:1.165333pt;}
.ls4e{letter-spacing:1.216000pt;}
.ls3b{letter-spacing:1.874667pt;}
.ls50{letter-spacing:5.602984pt;}
.ls4f{letter-spacing:7.016349pt;}
.ls2{letter-spacing:8.160000pt;}
.ls1{letter-spacing:8.800000pt;}
.ls53{letter-spacing:9.338307pt;}
.ls52{letter-spacing:9.792603pt;}
.ls54{letter-spacing:9.843080pt;}
.ls0{letter-spacing:9.973333pt;}
.ls32{letter-spacing:96.840000pt;}
.ls21{letter-spacing:443.949867pt;}
.ws0{word-spacing:-17.856000pt;}
.ws104{word-spacing:-12.717333pt;}
.ws99{word-spacing:-12.008000pt;}
.ws102{word-spacing:-11.856000pt;}
.ws80{word-spacing:-11.653333pt;}
.ws7d{word-spacing:-11.602667pt;}
.ws3{word-spacing:-11.501333pt;}
.wsfe{word-spacing:-11.450667pt;}
.ws7e{word-spacing:-11.400000pt;}
.ws59{word-spacing:-11.349333pt;}
.ws98{word-spacing:-11.248000pt;}
.wsd2{word-spacing:-11.197333pt;}
.ws7f{word-spacing:-11.096000pt;}
.wsd3{word-spacing:-11.045333pt;}
.ws116{word-spacing:-10.893333pt;}
.wsd4{word-spacing:-10.792000pt;}
.wsc{word-spacing:-10.773333pt;}
.ws97{word-spacing:-10.336000pt;}
.ws103{word-spacing:-10.184000pt;}
.ws2{word-spacing:-9.696000pt;}
.ws57{word-spacing:-8.480000pt;}
.ws5{word-spacing:-8.440000pt;}
.wseb{word-spacing:-8.160257pt;}
.ws55{word-spacing:-8.120000pt;}
.ws5a{word-spacing:-8.080000pt;}
.ws9{word-spacing:-8.000000pt;}
.ws1{word-spacing:-7.643680pt;}
.ws105{word-spacing:-7.349333pt;}
.ws5f{word-spacing:-7.280000pt;}
.ws12f{word-spacing:-7.072000pt;}
.ws107{word-spacing:-7.066827pt;}
.ws129{word-spacing:-7.002667pt;}
.ws12d{word-spacing:-6.760000pt;}
.ws121{word-spacing:-6.413333pt;}
.ws11f{word-spacing:-6.309333pt;}
.ws11d{word-spacing:-6.240000pt;}
.ws122{word-spacing:-6.066667pt;}
.ws11e{word-spacing:-6.032000pt;}
.ws4{word-spacing:-6.016503pt;}
.ws7{word-spacing:-5.988124pt;}
.ws120{word-spacing:-5.962667pt;}
.ws8{word-spacing:-5.761086pt;}
.ws6{word-spacing:-5.675947pt;}
.wsac{word-spacing:-3.901333pt;}
.wsfd{word-spacing:-3.445333pt;}
.wsf4{word-spacing:-3.040000pt;}
.wsa9{word-spacing:-2.786667pt;}
.ws100{word-spacing:-2.685333pt;}
.ws43{word-spacing:-2.584000pt;}
.wse4{word-spacing:-2.482667pt;}
.ws6f{word-spacing:-2.432000pt;}
.ws77{word-spacing:-2.330667pt;}
.ws115{word-spacing:-2.229333pt;}
.ws74{word-spacing:-2.178667pt;}
.ws101{word-spacing:-2.128000pt;}
.wsd{word-spacing:-2.080000pt;}
.ws19{word-spacing:-2.077333pt;}
.ws9d{word-spacing:-2.026667pt;}
.wsaa{word-spacing:-1.976000pt;}
.wse{word-spacing:-1.973333pt;}
.ws11b{word-spacing:-1.925333pt;}
.wsc3{word-spacing:-1.874667pt;}
.wsc6{word-spacing:-1.824000pt;}
.ws15{word-spacing:-1.776000pt;}
.ws27{word-spacing:-1.773333pt;}
.ws9f{word-spacing:-1.722667pt;}
.ws12{word-spacing:-1.680000pt;}
.ws18{word-spacing:-1.672000pt;}
.wsdb{word-spacing:-1.621333pt;}
.ws4b{word-spacing:-1.600000pt;}
.ws23{word-spacing:-1.570667pt;}
.wsf2{word-spacing:-1.520000pt;}
.wsba{word-spacing:-1.469333pt;}
.ws7c{word-spacing:-1.440000pt;}
.ws11c{word-spacing:-1.421333pt;}
.ws78{word-spacing:-1.418667pt;}
.ws6b{word-spacing:-1.368000pt;}
.ws58{word-spacing:-1.344000pt;}
.wsfb{word-spacing:-1.317333pt;}
.ws4a{word-spacing:-1.280000pt;}
.ws66{word-spacing:-1.266667pt;}
.wse0{word-spacing:-1.216000pt;}
.ws2c{word-spacing:-1.165333pt;}
.ws92{word-spacing:-1.120000pt;}
.ws3b{word-spacing:-1.114667pt;}
.ws96{word-spacing:-1.080000pt;}
.wse9{word-spacing:-1.064000pt;}
.wse6{word-spacing:-1.013333pt;}
.ws22{word-spacing:-0.962667pt;}
.ws91{word-spacing:-0.920000pt;}
.ws6d{word-spacing:-0.912000pt;}
.ws90{word-spacing:-0.880000pt;}
.wsd9{word-spacing:-0.861333pt;}
.wsf5{word-spacing:-0.810667pt;}
.ws56{word-spacing:-0.800000pt;}
.ws63{word-spacing:-0.760000pt;}
.ws16{word-spacing:-0.720000pt;}
.ws1f{word-spacing:-0.709333pt;}
.ws6c{word-spacing:-0.658667pt;}
.ws42{word-spacing:-0.608000pt;}
.wsb{word-spacing:-0.586667pt;}
.ws52{word-spacing:-0.560000pt;}
.ws88{word-spacing:-0.557333pt;}
.wsad{word-spacing:-0.506667pt;}
.ws3e{word-spacing:-0.456000pt;}
.ws24{word-spacing:-0.405333pt;}
.ws7b{word-spacing:-0.360000pt;}
.ws3c{word-spacing:-0.354667pt;}
.ws65{word-spacing:-0.304000pt;}
.wscb{word-spacing:-0.280000pt;}
.ws29{word-spacing:-0.253333pt;}
.ws125{word-spacing:-0.242667pt;}
.wscc{word-spacing:-0.240000pt;}
.ws132{word-spacing:-0.208000pt;}
.wsec{word-spacing:-0.202667pt;}
.ws26{word-spacing:-0.152000pt;}
.ws124{word-spacing:-0.138667pt;}
.ws126{word-spacing:-0.104000pt;}
.ws73{word-spacing:-0.101333pt;}
.ws3f{word-spacing:-0.050667pt;}
.ws108{word-spacing:-0.050477pt;}
.wsc4{word-spacing:-0.040000pt;}
.ws12c{word-spacing:-0.034667pt;}
.ws60{word-spacing:-0.028380pt;}
.wsa{word-spacing:0.000000pt;}
.ws40{word-spacing:0.050667pt;}
.ws123{word-spacing:0.069333pt;}
.wscf{word-spacing:0.080000pt;}
.ws41{word-spacing:0.101333pt;}
.ws131{word-spacing:0.104000pt;}
.wsca{word-spacing:0.120000pt;}
.ws3d{word-spacing:0.152000pt;}
.wsce{word-spacing:0.200000pt;}
.ws62{word-spacing:0.202667pt;}
.ws127{word-spacing:0.242667pt;}
.ws68{word-spacing:0.253333pt;}
.ws130{word-spacing:0.277333pt;}
.ws14{word-spacing:0.288000pt;}
.ws32{word-spacing:0.304000pt;}
.ws95{word-spacing:0.320000pt;}
.ws61{word-spacing:0.354667pt;}
.ws12b{word-spacing:0.381333pt;}
.wsd1{word-spacing:0.400000pt;}
.ws2a{word-spacing:0.405333pt;}
.ws93{word-spacing:0.440000pt;}
.ws33{word-spacing:0.456000pt;}
.ws10{word-spacing:0.480000pt;}
.ws128{word-spacing:0.520000pt;}
.wse5{word-spacing:0.557333pt;}
.ws53{word-spacing:0.560000pt;}
.ws37{word-spacing:0.608000pt;}
.ws12a{word-spacing:0.624000pt;}
.wsd0{word-spacing:0.640000pt;}
.wse1{word-spacing:0.658667pt;}
.ws8e{word-spacing:0.709333pt;}
.ws2f{word-spacing:0.760000pt;}
.ws12e{word-spacing:0.797333pt;}
.ws69{word-spacing:0.810667pt;}
.ws79{word-spacing:0.840000pt;}
.ws1c{word-spacing:0.861333pt;}
.ws7a{word-spacing:0.880000pt;}
.ws133{word-spacing:0.901333pt;}
.wsc2{word-spacing:0.912000pt;}
.ws30{word-spacing:0.962667pt;}
.wsf1{word-spacing:1.013333pt;}
.wsf{word-spacing:1.056000pt;}
.wsa3{word-spacing:1.064000pt;}
.wsa5{word-spacing:1.165333pt;}
.wse2{word-spacing:1.216000pt;}
.ws82{word-spacing:1.266667pt;}
.wsbc{word-spacing:1.317333pt;}
.ws4c{word-spacing:1.360000pt;}
.wsdf{word-spacing:1.368000pt;}
.ws94{word-spacing:1.400000pt;}
.wsc1{word-spacing:1.418667pt;}
.ws1e{word-spacing:1.469333pt;}
.ws8d{word-spacing:1.520000pt;}
.wscd{word-spacing:1.560000pt;}
.ws87{word-spacing:1.570667pt;}
.wsda{word-spacing:1.621333pt;}
.ws28{word-spacing:1.672000pt;}
.ws13{word-spacing:1.680000pt;}
.ws76{word-spacing:1.722667pt;}
.wsdc{word-spacing:1.773333pt;}
.ws85{word-spacing:1.824000pt;}
.wsdd{word-spacing:1.874667pt;}
.wsb9{word-spacing:1.925333pt;}
.ws17{word-spacing:1.976000pt;}
.ws39{word-spacing:2.026667pt;}
.wsf9{word-spacing:2.077333pt;}
.ws1d{word-spacing:2.128000pt;}
.wsa6{word-spacing:2.178667pt;}
.wsc5{word-spacing:2.229333pt;}
.ws64{word-spacing:2.280000pt;}
.wsea{word-spacing:2.330667pt;}
.ws8c{word-spacing:2.381333pt;}
.wsbb{word-spacing:2.432000pt;}
.wsbe{word-spacing:2.482667pt;}
.ws84{word-spacing:2.533333pt;}
.wse3{word-spacing:2.584000pt;}
.ws54{word-spacing:2.600000pt;}
.ws114{word-spacing:2.634667pt;}
.ws47{word-spacing:2.680000pt;}
.wsaf{word-spacing:2.685333pt;}
.ws11{word-spacing:2.688000pt;}
.ws2b{word-spacing:2.736000pt;}
.ws89{word-spacing:2.786667pt;}
.ws21{word-spacing:2.837333pt;}
.wsc9{word-spacing:2.938667pt;}
.ws51{word-spacing:2.960000pt;}
.wsbf{word-spacing:2.989333pt;}
.ws72{word-spacing:3.040000pt;}
.ws118{word-spacing:3.090667pt;}
.wsb7{word-spacing:3.141333pt;}
.ws83{word-spacing:3.192000pt;}
.wsc0{word-spacing:3.242667pt;}
.wsb2{word-spacing:3.293333pt;}
.ws1a{word-spacing:3.344000pt;}
.ws8a{word-spacing:3.394667pt;}
.wsb3{word-spacing:3.445333pt;}
.ws8b{word-spacing:3.546667pt;}
.wsb5{word-spacing:3.597333pt;}
.ws4d{word-spacing:3.640000pt;}
.ws2d{word-spacing:3.648000pt;}
.ws6a{word-spacing:3.698667pt;}
.ws67{word-spacing:3.749333pt;}
.ws3a{word-spacing:3.800000pt;}
.ws86{word-spacing:3.850667pt;}
.wsbd{word-spacing:3.901333pt;}
.wsb1{word-spacing:3.952000pt;}
.ws44{word-spacing:3.960000pt;}
.ws46{word-spacing:4.000000pt;}
.ws6e{word-spacing:4.002667pt;}
.wsde{word-spacing:4.053333pt;}
.ws48{word-spacing:4.120000pt;}
.wsb4{word-spacing:4.154667pt;}
.wsa1{word-spacing:4.205333pt;}
.ws9e{word-spacing:4.256000pt;}
.ws20{word-spacing:4.306667pt;}
.ws4f{word-spacing:4.320000pt;}
.ws1b{word-spacing:4.357333pt;}
.wsc8{word-spacing:4.408000pt;}
.wsa0{word-spacing:4.458667pt;}
.ws4e{word-spacing:4.520000pt;}
.ws81{word-spacing:4.560000pt;}
.wsfa{word-spacing:4.610667pt;}
.ws71{word-spacing:4.661333pt;}
.ws2e{word-spacing:4.712000pt;}
.ws38{word-spacing:4.762667pt;}
.wsb6{word-spacing:4.813333pt;}
.wsa7{word-spacing:4.864000pt;}
.ws31{word-spacing:4.914667pt;}
.ws25{word-spacing:4.965333pt;}
.ws34{word-spacing:5.066667pt;}
.wsc7{word-spacing:5.117333pt;}
.wsa4{word-spacing:5.168000pt;}
.wsab{word-spacing:5.218667pt;}
.ws70{word-spacing:5.269333pt;}
.wse7{word-spacing:5.320000pt;}
.ws8f{word-spacing:5.370667pt;}
.ws110{word-spacing:5.421333pt;}
.wsd5{word-spacing:5.472000pt;}
.ws35{word-spacing:5.522667pt;}
.ws75{word-spacing:5.573333pt;}
.wsb8{word-spacing:5.624000pt;}
.ws112{word-spacing:5.674667pt;}
.ws45{word-spacing:5.720000pt;}
.ws113{word-spacing:5.776000pt;}
.ws36{word-spacing:5.877333pt;}
.ws50{word-spacing:6.000000pt;}
.wsb0{word-spacing:6.232000pt;}
.wsf7{word-spacing:6.282667pt;}
.wsd7{word-spacing:6.333333pt;}
.ws117{word-spacing:6.384000pt;}
.wsae{word-spacing:6.536000pt;}
.wsa2{word-spacing:6.637333pt;}
.ws49{word-spacing:6.840000pt;}
.wsf3{word-spacing:6.941333pt;}
.ws111{word-spacing:6.992000pt;}
.ws10b{word-spacing:7.016349pt;}
.wsf8{word-spacing:7.042667pt;}
.wse8{word-spacing:7.093333pt;}
.wsd6{word-spacing:7.144000pt;}
.wsff{word-spacing:7.245333pt;}
.ws10f{word-spacing:7.296000pt;}
.wsa8{word-spacing:7.346667pt;}
.wsed{word-spacing:7.600000pt;}
.wsef{word-spacing:7.853333pt;}
.wsfc{word-spacing:8.005333pt;}
.ws11a{word-spacing:8.208000pt;}
.ws119{word-spacing:8.258667pt;}
.wsf0{word-spacing:8.309333pt;}
.wsee{word-spacing:8.461333pt;}
.wsf6{word-spacing:8.664000pt;}
.ws10a{word-spacing:9.287829pt;}
.ws10c{word-spacing:9.313068pt;}
.wsd8{word-spacing:10.893333pt;}
.ws106{word-spacing:11.609787pt;}
.ws10d{word-spacing:11.957333pt;}
.ws10e{word-spacing:12.008000pt;}
.ws109{word-spacing:12.119608pt;}
.ws9c{word-spacing:61.560000pt;}
.ws9b{word-spacing:101.680000pt;}
.ws9a{word-spacing:154.280000pt;}
.ws5c{word-spacing:184.560000pt;}
.ws5b{word-spacing:211.560000pt;}
.ws5e{word-spacing:219.920000pt;}
.ws5d{word-spacing:261.600000pt;}
._36{margin-left:-20.339467pt;}
._29{margin-left:-18.481333pt;}
._35{margin-left:-17.416800pt;}
._9{margin-left:-16.362133pt;}
._28{margin-left:-15.386133pt;}
._7{margin-left:-14.101333pt;}
._a{margin-left:-12.460800pt;}
._4{margin-left:-10.663600pt;}
._27{margin-left:-9.378533pt;}
._6{margin-left:-8.457333pt;}
._26{margin-left:-7.116000pt;}
._38{margin-left:-6.164341pt;}
._8{margin-left:-5.051733pt;}
._1{margin-left:-3.930667pt;}
._0{margin-left:-2.204000pt;}
._2{margin-left:-0.997333pt;}
._3{width:1.554133pt;}
._37{width:2.584000pt;}
._e{width:3.693600pt;}
._25{width:4.910667pt;}
._b{width:6.617333pt;}
._34{width:7.519200pt;}
._13{width:8.480000pt;}
._3b{width:9.741333pt;}
._5{width:11.200000pt;}
._c{width:12.284000pt;}
._d{width:13.720000pt;}
._3a{width:17.264000pt;}
._3c{width:18.208800pt;}
._3d{width:24.266667pt;}
._39{width:28.704000pt;}
._24{width:30.723200pt;}
._2a{width:71.800000pt;}
._33{width:127.080000pt;}
._f{width:136.040000pt;}
._31{width:137.360000pt;}
._2b{width:141.634667pt;}
._2c{width:147.009867pt;}
._2d{width:164.080000pt;}
._2e{width:166.560000pt;}
._2f{width:168.760000pt;}
._1d{width:214.960000pt;}
._19{width:234.089867pt;}
._21{width:243.680000pt;}
._16{width:255.520000pt;}
._1f{width:270.280000pt;}
._32{width:271.240000pt;}
._14{width:276.724000pt;}
._12{width:289.000000pt;}
._17{width:297.120000pt;}
._23{width:311.756267pt;}
._30{width:312.680000pt;}
._10{width:327.760000pt;}
._11{width:329.800000pt;}
._1a{width:342.597333pt;}
._1b{width:368.760000pt;}
._22{width:419.880000pt;}
._1c{width:491.160000pt;}
._20{width:496.080000pt;}
._15{width:635.320000pt;}
._18{width:868.249867pt;}
._1e{width:964.040000pt;}
.fs7{font-size:28.379733pt;}
.fsb{font-size:34.666667pt;}
.fsa{font-size:35.948267pt;}
.fs8{font-size:37.333333pt;}
.fs5{font-size:37.840000pt;}
.fs0{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fsc{font-size:50.477333pt;}
.fs6{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y25c{bottom:1.486255pt;}
.y264{bottom:1.486521pt;}
.y266{bottom:3.246533pt;}
.y256{bottom:40.965733pt;}
.y25e{bottom:40.966133pt;}
.y1{bottom:41.300000pt;}
.y25b{bottom:47.445867pt;}
.y258{bottom:47.446000pt;}
.y263{bottom:47.446133pt;}
.y260{bottom:47.446267pt;}
.y2af{bottom:66.266667pt;}
.y197{bottom:67.971467pt;}
.y13f{bottom:67.995867pt;}
.y139{bottom:68.008533pt;}
.y5c{bottom:68.013333pt;}
.y15c{bottom:68.047467pt;}
.y20a{bottom:68.066133pt;}
.y227{bottom:68.102133pt;}
.y254{bottom:68.111467pt;}
.y1cf{bottom:68.257333pt;}
.y45{bottom:68.275333pt;}
.y387{bottom:69.029333pt;}
.y2f7{bottom:69.031333pt;}
.y33f{bottom:69.263333pt;}
.ye4{bottom:71.193333pt;}
.y2ae{bottom:78.270000pt;}
.y5b{bottom:79.343333pt;}
.y253{bottom:80.114800pt;}
.y386{bottom:81.032667pt;}
.y2f6{bottom:81.034667pt;}
.y33e{bottom:81.266667pt;}
.y196{bottom:82.639467pt;}
.y13e{bottom:82.663867pt;}
.y138{bottom:82.676533pt;}
.y15b{bottom:82.715467pt;}
.y209{bottom:82.734133pt;}
.y226{bottom:82.770133pt;}
.y1ce{bottom:82.925333pt;}
.y44{bottom:82.943333pt;}
.ye3{bottom:83.463333pt;}
.ybd{bottom:83.993333pt;}
.y2ad{bottom:90.273333pt;}
.y5a{bottom:90.673333pt;}
.y252{bottom:92.118133pt;}
.y133{bottom:92.246667pt;}
.y385{bottom:93.036000pt;}
.y2f5{bottom:93.038000pt;}
.y33d{bottom:93.270000pt;}
.y3a1{bottom:94.388000pt;}
.ybc{bottom:94.663333pt;}
.ye2{bottom:95.720000pt;}
.y195{bottom:97.307467pt;}
.y13d{bottom:97.331867pt;}
.y137{bottom:97.344533pt;}
.y15a{bottom:97.383467pt;}
.y208{bottom:97.402133pt;}
.y225{bottom:97.438133pt;}
.y1cd{bottom:97.593333pt;}
.y43{bottom:97.611333pt;}
.y59{bottom:102.003333pt;}
.y2ac{bottom:102.276667pt;}
.y251{bottom:104.121467pt;}
.y384{bottom:105.039333pt;}
.y2f4{bottom:105.041333pt;}
.y33c{bottom:105.273333pt;}
.ybb{bottom:105.333333pt;}
.y3a0{bottom:106.391333pt;}
.y14c{bottom:107.908133pt;}
.ye1{bottom:107.990000pt;}
.y132{bottom:108.216667pt;}
.y194{bottom:111.975467pt;}
.y13c{bottom:111.999867pt;}
.y136{bottom:112.012533pt;}
.y159{bottom:112.051467pt;}
.y207{bottom:112.070133pt;}
.y224{bottom:112.106133pt;}
.y1cc{bottom:112.261333pt;}
.y42{bottom:112.279333pt;}
.y58{bottom:113.343333pt;}
.y2ab{bottom:114.280000pt;}
.y250{bottom:116.124800pt;}
.y12f{bottom:116.206667pt;}
.y383{bottom:117.042667pt;}
.y2f3{bottom:117.044667pt;}
.y33b{bottom:117.276667pt;}
.y39f{bottom:118.394667pt;}
.ye0{bottom:120.260000pt;}
.y14b{bottom:121.238133pt;}
.y131{bottom:124.186667pt;}
.y57{bottom:124.673333pt;}
.y2aa{bottom:126.283333pt;}
.y193{bottom:126.643467pt;}
.y13b{bottom:126.667867pt;}
.y135{bottom:126.680533pt;}
.y158{bottom:126.719467pt;}
.y206{bottom:126.738133pt;}
.y223{bottom:126.774133pt;}
.y1cb{bottom:126.929333pt;}
.yba{bottom:126.936667pt;}
.y41{bottom:126.947333pt;}
.y24f{bottom:128.053467pt;}
.y382{bottom:129.046000pt;}
.y2f2{bottom:129.048000pt;}
.y33a{bottom:129.280000pt;}
.y39e{bottom:130.398000pt;}
.ydf{bottom:132.530000pt;}
.y14a{bottom:134.568133pt;}
.y56{bottom:136.003333pt;}
.y2a9{bottom:138.286667pt;}
.y130{bottom:140.156667pt;}
.y381{bottom:141.049333pt;}
.y2f1{bottom:141.051333pt;}
.y339{bottom:141.283333pt;}
.y192{bottom:141.311467pt;}
.y13a{bottom:141.335867pt;}
.y134{bottom:141.348533pt;}
.y205{bottom:141.406133pt;}
.y222{bottom:141.442133pt;}
.y1ca{bottom:141.597333pt;}
.y40{bottom:141.615333pt;}
.yde{bottom:144.800000pt;}
.yb9{bottom:145.096667pt;}
.yb2{bottom:145.766667pt;}
.y55{bottom:147.336667pt;}
.y149{bottom:147.898133pt;}
.y2a8{bottom:150.290000pt;}
.y380{bottom:153.052667pt;}
.y2f0{bottom:153.054667pt;}
.y39d{bottom:153.061333pt;}
.y338{bottom:153.286667pt;}
.y191{bottom:155.979467pt;}
.y157{bottom:156.055467pt;}
.y204{bottom:156.074133pt;}
.y221{bottom:156.110133pt;}
.y12e{bottom:156.126667pt;}
.y1c9{bottom:156.265333pt;}
.y3f{bottom:156.283333pt;}
.yb1{bottom:157.766667pt;}
.y54{bottom:158.673333pt;}
.y148{bottom:161.228133pt;}
.yb8{bottom:161.726667pt;}
.y2a7{bottom:162.293333pt;}
.y37f{bottom:165.056000pt;}
.y2ef{bottom:165.058000pt;}
.y39c{bottom:165.064667pt;}
.y337{bottom:165.290000pt;}
.yb0{bottom:169.766667pt;}
.y53{bottom:170.003333pt;}
.y190{bottom:170.647467pt;}
.y24e{bottom:170.714800pt;}
.y156{bottom:170.723467pt;}
.y203{bottom:170.742133pt;}
.y220{bottom:170.778133pt;}
.y146{bottom:170.897467pt;}
.y1c8{bottom:170.933333pt;}
.y3e{bottom:170.951333pt;}
.y12d{bottom:172.096667pt;}
.y2a6{bottom:174.296667pt;}
.y147{bottom:174.558133pt;}
.y37e{bottom:177.059333pt;}
.y2ee{bottom:177.061333pt;}
.y39b{bottom:177.068000pt;}
.y336{bottom:177.293333pt;}
.yb7{bottom:179.896667pt;}
.y12a{bottom:180.086667pt;}
.y52{bottom:181.336667pt;}
.yaf{bottom:181.766667pt;}
.yb4{bottom:183.416667pt;}
.y145{bottom:184.227467pt;}
.y18f{bottom:185.315467pt;}
.y24d{bottom:185.382800pt;}
.y155{bottom:185.391467pt;}
.y202{bottom:185.410133pt;}
.y21f{bottom:185.446133pt;}
.y1c7{bottom:185.601333pt;}
.y3d{bottom:185.619333pt;}
.y2a5{bottom:186.300000pt;}
.y12c{bottom:188.066667pt;}
.y37d{bottom:189.062667pt;}
.y2ed{bottom:189.064667pt;}
.y39a{bottom:189.071333pt;}
.y335{bottom:189.296667pt;}
.yab{bottom:189.400000pt;}
.y51{bottom:192.670000pt;}
.yae{bottom:193.766667pt;}
.yb3{bottom:195.416667pt;}
.y144{bottom:197.557467pt;}
.yb6{bottom:198.066667pt;}
.y2a4{bottom:198.303333pt;}
.ya8{bottom:199.370000pt;}
.y18e{bottom:199.983467pt;}
.y24c{bottom:200.050800pt;}
.y154{bottom:200.059467pt;}
.y201{bottom:200.078133pt;}
.y21e{bottom:200.114133pt;}
.y1c6{bottom:200.269333pt;}
.y3c{bottom:200.287333pt;}
.y37c{bottom:201.066000pt;}
.y2ec{bottom:201.068000pt;}
.y399{bottom:201.074667pt;}
.y334{bottom:201.300000pt;}
.y50{bottom:204.003333pt;}
.y12b{bottom:204.036667pt;}
.yad{bottom:205.766667pt;}
.y2a3{bottom:210.306667pt;}
.y143{bottom:210.887467pt;}
.ya7{bottom:211.370000pt;}
.y37b{bottom:213.069333pt;}
.y2eb{bottom:213.071333pt;}
.y398{bottom:213.078000pt;}
.y333{bottom:213.303333pt;}
.y18d{bottom:214.651467pt;}
.y153{bottom:214.727467pt;}
.y200{bottom:214.746133pt;}
.y21d{bottom:214.782133pt;}
.y1c5{bottom:214.937333pt;}
.y3b{bottom:214.955333pt;}
.y4f{bottom:215.340000pt;}
.yb5{bottom:216.236667pt;}
.yac{bottom:217.766667pt;}
.y2a2{bottom:222.310000pt;}
.y142{bottom:224.217467pt;}
.y129{bottom:224.866667pt;}
.y37a{bottom:225.072667pt;}
.y2ea{bottom:225.074667pt;}
.y397{bottom:225.081333pt;}
.y332{bottom:225.306667pt;}
.y4e{bottom:226.670000pt;}
.y265{bottom:229.292000pt;}
.y18c{bottom:229.319467pt;}
.y152{bottom:229.395467pt;}
.y1ff{bottom:229.414133pt;}
.y21c{bottom:229.450133pt;}
.y3a{bottom:229.623333pt;}
.y267{bottom:232.538533pt;}
.yaa{bottom:233.720000pt;}
.y2a1{bottom:234.313333pt;}
.y379{bottom:237.076000pt;}
.y2e9{bottom:237.078000pt;}
.y396{bottom:237.084667pt;}
.y331{bottom:237.310000pt;}
.y141{bottom:237.547467pt;}
.y4d{bottom:238.003333pt;}
.y18b{bottom:243.987467pt;}
.y151{bottom:244.063467pt;}
.y1fe{bottom:244.082133pt;}
.y21b{bottom:244.118133pt;}
.y1c4{bottom:244.273333pt;}
.y39{bottom:244.291333pt;}
.y128{bottom:244.560000pt;}
.y2a0{bottom:246.316667pt;}
.y378{bottom:249.079333pt;}
.y2e8{bottom:249.081333pt;}
.y395{bottom:249.088000pt;}
.y330{bottom:249.313333pt;}
.y4c{bottom:249.336667pt;}
.ya9{bottom:249.690000pt;}
.y140{bottom:250.877467pt;}
.ya4{bottom:251.790000pt;}
.y127{bottom:257.230000pt;}
.y29f{bottom:258.320000pt;}
.y18a{bottom:258.655467pt;}
.y24b{bottom:258.722800pt;}
.y150{bottom:258.731467pt;}
.y1fd{bottom:258.750133pt;}
.y21a{bottom:258.786133pt;}
.y1c3{bottom:258.941333pt;}
.y38{bottom:258.959333pt;}
.y4b{bottom:260.670000pt;}
.y377{bottom:261.082667pt;}
.y2e7{bottom:261.084667pt;}
.y394{bottom:261.091333pt;}
.y32f{bottom:261.316667pt;}
.ya3{bottom:263.790000pt;}
.ya6{bottom:267.850000pt;}
.y126{bottom:269.900000pt;}
.y29e{bottom:270.323333pt;}
.y4a{bottom:272.003333pt;}
.y376{bottom:273.086000pt;}
.y2e6{bottom:273.088000pt;}
.y393{bottom:273.094667pt;}
.y32e{bottom:273.320000pt;}
.y189{bottom:273.323467pt;}
.y24a{bottom:273.390800pt;}
.y14f{bottom:273.399467pt;}
.y1fc{bottom:273.418133pt;}
.y219{bottom:273.454133pt;}
.y1c2{bottom:273.609333pt;}
.y37{bottom:273.627333pt;}
.ya2{bottom:275.790000pt;}
.y29d{bottom:282.326667pt;}
.y49{bottom:283.340000pt;}
.ya5{bottom:283.820000pt;}
.y375{bottom:285.089333pt;}
.y2e5{bottom:285.091333pt;}
.y392{bottom:285.098000pt;}
.y32d{bottom:285.323333pt;}
.ya1{bottom:287.790000pt;}
.y188{bottom:287.991467pt;}
.y249{bottom:288.058800pt;}
.y14e{bottom:288.067467pt;}
.y1fb{bottom:288.086133pt;}
.y218{bottom:288.122133pt;}
.y1c1{bottom:288.277333pt;}
.y36{bottom:288.295333pt;}
.ya0{bottom:291.810000pt;}
.y9c{bottom:292.700000pt;}
.y29c{bottom:294.330000pt;}
.y48{bottom:294.670000pt;}
.y374{bottom:297.092667pt;}
.y2e4{bottom:297.094667pt;}
.y391{bottom:297.101333pt;}
.y32c{bottom:297.326667pt;}
.y187{bottom:302.659467pt;}
.y248{bottom:302.726800pt;}
.y14d{bottom:302.735467pt;}
.y1fa{bottom:302.754133pt;}
.y217{bottom:302.790133pt;}
.y1c0{bottom:302.945333pt;}
.y35{bottom:302.963333pt;}
.y9b{bottom:304.700000pt;}
.y47{bottom:306.003333pt;}
.y29b{bottom:306.333333pt;}
.y9e{bottom:307.780000pt;}
.y373{bottom:309.096000pt;}
.y2e3{bottom:309.098000pt;}
.y390{bottom:309.104667pt;}
.y32b{bottom:309.330000pt;}
.y9f{bottom:315.760000pt;}
.y186{bottom:317.327467pt;}
.y247{bottom:317.394800pt;}
.yfd{bottom:317.403467pt;}
.y1f9{bottom:317.422133pt;}
.y125{bottom:317.430133pt;}
.y216{bottom:317.442133pt;}
.y1bf{bottom:317.613333pt;}
.y34{bottom:317.631333pt;}
.y29a{bottom:318.336667pt;}
.y9d{bottom:319.730000pt;}
.y372{bottom:321.099333pt;}
.y2e2{bottom:321.101333pt;}
.y38f{bottom:321.108000pt;}
.y32a{bottom:321.333333pt;}
.y46{bottom:321.803333pt;}
.y299{bottom:330.340000pt;}
.y9a{bottom:331.730000pt;}
.y185{bottom:331.995467pt;}
.y246{bottom:332.062800pt;}
.yfc{bottom:332.071467pt;}
.y1f8{bottom:332.090133pt;}
.y124{bottom:332.098133pt;}
.y215{bottom:332.110133pt;}
.y1be{bottom:332.281333pt;}
.y33{bottom:332.299333pt;}
.y371{bottom:333.102667pt;}
.y2e1{bottom:333.104667pt;}
.y38e{bottom:333.111333pt;}
.y329{bottom:333.336667pt;}
.y298{bottom:342.343333pt;}
.y370{bottom:345.106000pt;}
.y2e0{bottom:345.108000pt;}
.y38d{bottom:345.114667pt;}
.y328{bottom:345.340000pt;}
.y184{bottom:346.663467pt;}
.y245{bottom:346.730800pt;}
.yfb{bottom:346.739467pt;}
.y1f7{bottom:346.758133pt;}
.y123{bottom:346.766133pt;}
.y214{bottom:346.778133pt;}
.y1bd{bottom:346.949333pt;}
.y32{bottom:346.967333pt;}
.y99{bottom:347.700000pt;}
.y297{bottom:354.346667pt;}
.y36f{bottom:357.109333pt;}
.y2df{bottom:357.111333pt;}
.y38c{bottom:357.118000pt;}
.y327{bottom:357.343333pt;}
.y183{bottom:361.331467pt;}
.y244{bottom:361.398800pt;}
.yfa{bottom:361.407467pt;}
.y1f6{bottom:361.426133pt;}
.y122{bottom:361.434133pt;}
.y213{bottom:361.446133pt;}
.y1bc{bottom:361.617333pt;}
.y31{bottom:361.635333pt;}
.y296{bottom:366.350000pt;}
.y98{bottom:368.530000pt;}
.y36e{bottom:369.112667pt;}
.y2de{bottom:369.114667pt;}
.y38b{bottom:369.121333pt;}
.y326{bottom:369.346667pt;}
.y182{bottom:375.999467pt;}
.y243{bottom:376.066800pt;}
.yf9{bottom:376.075467pt;}
.y1f5{bottom:376.094133pt;}
.y121{bottom:376.102133pt;}
.y212{bottom:376.114133pt;}
.y1bb{bottom:376.285333pt;}
.y30{bottom:376.303333pt;}
.y21{bottom:376.316000pt;}
.y295{bottom:378.353333pt;}
.y97{bottom:379.200000pt;}
.y36d{bottom:381.116000pt;}
.y2dd{bottom:381.118000pt;}
.y38a{bottom:381.124667pt;}
.y325{bottom:381.350000pt;}
.y294{bottom:390.356667pt;}
.y181{bottom:390.667467pt;}
.y242{bottom:390.734800pt;}
.yf8{bottom:390.743467pt;}
.y1f4{bottom:390.762133pt;}
.y120{bottom:390.770133pt;}
.y211{bottom:390.782133pt;}
.y1ba{bottom:390.953333pt;}
.y2f{bottom:390.971333pt;}
.y20{bottom:390.984000pt;}
.y36c{bottom:393.119333pt;}
.y2dc{bottom:393.121333pt;}
.y389{bottom:393.128000pt;}
.y324{bottom:393.353333pt;}
.y96{bottom:398.883333pt;}
.y293{bottom:402.360000pt;}
.y36b{bottom:405.122667pt;}
.y2db{bottom:405.124667pt;}
.y388{bottom:405.131333pt;}
.y180{bottom:405.335467pt;}
.y323{bottom:405.356667pt;}
.y241{bottom:405.402800pt;}
.yf7{bottom:405.411467pt;}
.y1f3{bottom:405.430133pt;}
.y11f{bottom:405.438133pt;}
.y210{bottom:405.450133pt;}
.y1b9{bottom:405.621333pt;}
.y2e{bottom:405.639333pt;}
.y1f{bottom:405.652000pt;}
.y95{bottom:411.553333pt;}
.y292{bottom:414.363333pt;}
.y36a{bottom:417.126000pt;}
.y2da{bottom:417.128000pt;}
.y322{bottom:417.360000pt;}
.y17f{bottom:420.003467pt;}
.y240{bottom:420.070800pt;}
.yf6{bottom:420.079467pt;}
.y1f2{bottom:420.098133pt;}
.y11e{bottom:420.106133pt;}
.y20f{bottom:420.118133pt;}
.y1b8{bottom:420.289333pt;}
.y2d{bottom:420.307333pt;}
.y1e{bottom:420.320000pt;}
.y94{bottom:424.223333pt;}
.y291{bottom:426.366667pt;}
.y369{bottom:429.129333pt;}
.y2d9{bottom:429.131333pt;}
.y321{bottom:429.363333pt;}
.y17e{bottom:434.671467pt;}
.y23f{bottom:434.738800pt;}
.yf5{bottom:434.747467pt;}
.y1f1{bottom:434.766133pt;}
.y11d{bottom:434.774133pt;}
.y20e{bottom:434.786133pt;}
.y1b7{bottom:434.957333pt;}
.y2c{bottom:434.975333pt;}
.y1d{bottom:434.988000pt;}
.y93{bottom:436.893333pt;}
.y290{bottom:438.370000pt;}
.y368{bottom:441.132667pt;}
.y2d8{bottom:441.134667pt;}
.y320{bottom:441.366667pt;}
.y17d{bottom:449.339467pt;}
.y23e{bottom:449.406800pt;}
.yf4{bottom:449.415467pt;}
.y1f0{bottom:449.434133pt;}
.y11c{bottom:449.442133pt;}
.y20d{bottom:449.454133pt;}
.y92{bottom:449.563333pt;}
.y1b6{bottom:449.625333pt;}
.y2b{bottom:449.643333pt;}
.y1c{bottom:449.656000pt;}
.y28f{bottom:450.373333pt;}
.y367{bottom:453.136000pt;}
.y2d7{bottom:453.138000pt;}
.y31f{bottom:453.370000pt;}
.y91{bottom:462.233333pt;}
.y28e{bottom:462.376667pt;}
.y17c{bottom:464.007467pt;}
.y23d{bottom:464.074800pt;}
.yf3{bottom:464.083467pt;}
.y1ef{bottom:464.102133pt;}
.y11b{bottom:464.110133pt;}
.y20c{bottom:464.122133pt;}
.y1b5{bottom:464.293333pt;}
.y2a{bottom:464.311333pt;}
.y1b{bottom:464.324000pt;}
.y366{bottom:465.139333pt;}
.y2d6{bottom:465.141333pt;}
.y31e{bottom:465.373333pt;}
.y28d{bottom:474.380000pt;}
.y365{bottom:477.142667pt;}
.y2d5{bottom:477.144667pt;}
.y31d{bottom:477.376667pt;}
.y17b{bottom:478.675467pt;}
.y23c{bottom:478.742800pt;}
.yf2{bottom:478.751467pt;}
.y1ee{bottom:478.770133pt;}
.y11a{bottom:478.778133pt;}
.y20b{bottom:478.790133pt;}
.y1b4{bottom:478.961333pt;}
.y29{bottom:478.979333pt;}
.y1a{bottom:478.992000pt;}
.y28c{bottom:486.383333pt;}
.y364{bottom:489.146000pt;}
.y2d4{bottom:489.148000pt;}
.y31c{bottom:489.380000pt;}
.y17a{bottom:493.343467pt;}
.y23b{bottom:493.410800pt;}
.yf1{bottom:493.419467pt;}
.y1ed{bottom:493.438133pt;}
.y119{bottom:493.446133pt;}
.y1b3{bottom:493.629333pt;}
.y28{bottom:493.647333pt;}
.y19{bottom:493.660000pt;}
.y28b{bottom:498.386667pt;}
.y363{bottom:501.149333pt;}
.y2d3{bottom:501.151333pt;}
.y31b{bottom:501.383333pt;}
.y179{bottom:508.011467pt;}
.y23a{bottom:508.078800pt;}
.yf0{bottom:508.087467pt;}
.y1ec{bottom:508.106133pt;}
.y118{bottom:508.114133pt;}
.y1b2{bottom:508.297333pt;}
.y27{bottom:508.315333pt;}
.y18{bottom:508.328000pt;}
.y28a{bottom:510.390000pt;}
.y362{bottom:513.152667pt;}
.y2d2{bottom:513.154667pt;}
.y31a{bottom:513.386667pt;}
.y289{bottom:522.393333pt;}
.y178{bottom:522.679467pt;}
.y239{bottom:522.746800pt;}
.yef{bottom:522.755467pt;}
.y1eb{bottom:522.774133pt;}
.y117{bottom:522.782133pt;}
.y1b1{bottom:522.965333pt;}
.y26{bottom:522.983333pt;}
.y17{bottom:522.996000pt;}
.y361{bottom:525.156000pt;}
.y2d1{bottom:525.158000pt;}
.y319{bottom:525.390000pt;}
.y288{bottom:534.396667pt;}
.y360{bottom:537.159333pt;}
.y2d0{bottom:537.161333pt;}
.y71{bottom:537.345467pt;}
.y177{bottom:537.347467pt;}
.y318{bottom:537.393333pt;}
.y238{bottom:537.414800pt;}
.y8c{bottom:537.421467pt;}
.yee{bottom:537.423467pt;}
.y1ea{bottom:537.442133pt;}
.y116{bottom:537.450133pt;}
.y1b0{bottom:537.633333pt;}
.y25{bottom:537.651333pt;}
.y16{bottom:537.664000pt;}
.y287{bottom:546.400000pt;}
.y35f{bottom:549.162667pt;}
.y2cf{bottom:549.164667pt;}
.y317{bottom:549.396667pt;}
.y70{bottom:552.013467pt;}
.y176{bottom:552.015467pt;}
.y237{bottom:552.082800pt;}
.y8b{bottom:552.089467pt;}
.yed{bottom:552.091467pt;}
.y1e9{bottom:552.110133pt;}
.y115{bottom:552.118133pt;}
.y1af{bottom:552.301333pt;}
.y24{bottom:552.319333pt;}
.y15{bottom:552.332000pt;}
.y286{bottom:558.403333pt;}
.y35e{bottom:561.166000pt;}
.y2ce{bottom:561.168000pt;}
.y316{bottom:561.400000pt;}
.y6f{bottom:566.681467pt;}
.y175{bottom:566.683467pt;}
.y236{bottom:566.750800pt;}
.y8a{bottom:566.757467pt;}
.yec{bottom:566.759467pt;}
.y1e8{bottom:566.778133pt;}
.y114{bottom:566.786133pt;}
.y1ae{bottom:566.969333pt;}
.y23{bottom:566.987333pt;}
.y14{bottom:567.000000pt;}
.y285{bottom:570.406667pt;}
.y35d{bottom:573.169333pt;}
.y2cd{bottom:573.171333pt;}
.y315{bottom:573.403333pt;}
.y6e{bottom:581.349467pt;}
.y174{bottom:581.351467pt;}
.y235{bottom:581.418800pt;}
.y89{bottom:581.425467pt;}
.yeb{bottom:581.427467pt;}
.y1e7{bottom:581.446133pt;}
.y113{bottom:581.454133pt;}
.y13{bottom:581.634667pt;}
.y1ad{bottom:581.637333pt;}
.y22{bottom:581.655333pt;}
.y284{bottom:582.410000pt;}
.y35c{bottom:585.172667pt;}
.y2cc{bottom:585.174667pt;}
.y314{bottom:585.406667pt;}
.y283{bottom:594.413333pt;}
.y6d{bottom:596.017467pt;}
.y173{bottom:596.019467pt;}
.y88{bottom:596.093467pt;}
.yea{bottom:596.095467pt;}
.y1e6{bottom:596.114133pt;}
.y112{bottom:596.122133pt;}
.y1ac{bottom:596.305333pt;}
.y35b{bottom:597.176000pt;}
.y2cb{bottom:597.178000pt;}
.y313{bottom:597.410000pt;}
.y25d{bottom:603.044000pt;}
.y282{bottom:606.416667pt;}
.y35a{bottom:609.179333pt;}
.y2ca{bottom:609.181333pt;}
.y312{bottom:609.413333pt;}
.y6c{bottom:610.685467pt;}
.y172{bottom:610.687467pt;}
.y87{bottom:610.761467pt;}
.ye9{bottom:610.763467pt;}
.y1e5{bottom:610.782133pt;}
.y111{bottom:610.790133pt;}
.y1ab{bottom:610.973333pt;}
.y281{bottom:618.420000pt;}
.y359{bottom:621.182667pt;}
.y2c9{bottom:621.184667pt;}
.y311{bottom:621.416667pt;}
.y262{bottom:623.814133pt;}
.y6b{bottom:625.353467pt;}
.y171{bottom:625.355467pt;}
.y86{bottom:625.429467pt;}
.ye8{bottom:625.431467pt;}
.y1e4{bottom:625.450133pt;}
.y110{bottom:625.458133pt;}
.y1aa{bottom:625.641333pt;}
.y280{bottom:630.423333pt;}
.y12{bottom:630.438667pt;}
.y25f{bottom:632.646133pt;}
.y358{bottom:633.186000pt;}
.y2c8{bottom:633.188000pt;}
.y310{bottom:633.420000pt;}
.y170{bottom:640.023467pt;}
.y85{bottom:640.097467pt;}
.ye7{bottom:640.099467pt;}
.y1e3{bottom:640.118133pt;}
.y10f{bottom:640.124800pt;}
.y1a9{bottom:640.309333pt;}
.y261{bottom:641.478400pt;}
.y27f{bottom:642.426667pt;}
.y11{bottom:644.442667pt;}
.y357{bottom:645.189333pt;}
.y2c7{bottom:645.191333pt;}
.y30f{bottom:645.423333pt;}
.y27e{bottom:654.430000pt;}
.y16f{bottom:654.691467pt;}
.y84{bottom:654.765467pt;}
.ye6{bottom:654.767467pt;}
.y1e2{bottom:654.786133pt;}
.y1a8{bottom:654.977333pt;}
.y356{bottom:657.192667pt;}
.y2c6{bottom:657.194667pt;}
.y30e{bottom:657.426667pt;}
.y10{bottom:658.446667pt;}
.y90{bottom:658.696800pt;}
.y27d{bottom:666.433333pt;}
.y355{bottom:669.196000pt;}
.y2c5{bottom:669.198000pt;}
.y16e{bottom:669.359467pt;}
.y30d{bottom:669.430000pt;}
.y83{bottom:669.433467pt;}
.ye5{bottom:669.435467pt;}
.y1e1{bottom:669.454133pt;}
.y1a7{bottom:669.645333pt;}
.y8f{bottom:672.026800pt;}
.yf{bottom:672.450667pt;}
.y255{bottom:677.816000pt;}
.y27c{bottom:678.436667pt;}
.y354{bottom:681.199333pt;}
.y2c4{bottom:681.201333pt;}
.y30c{bottom:681.433333pt;}
.y16d{bottom:684.027467pt;}
.y10e{bottom:684.052800pt;}
.y82{bottom:684.101467pt;}
.yce{bottom:684.103467pt;}
.y1e0{bottom:684.122133pt;}
.ydd{bottom:684.123467pt;}
.y1a6{bottom:684.313333pt;}
.y8e{bottom:685.356800pt;}
.ye{bottom:686.454667pt;}
.y27b{bottom:690.440000pt;}
.y353{bottom:693.202667pt;}
.y2c3{bottom:693.204667pt;}
.y30b{bottom:693.436667pt;}
.y25a{bottom:698.585733pt;}
.y8d{bottom:698.686800pt;}
.y16c{bottom:698.695467pt;}
.y10d{bottom:698.720800pt;}
.y81{bottom:698.769467pt;}
.ycd{bottom:698.771467pt;}
.y1df{bottom:698.790133pt;}
.ydc{bottom:698.791467pt;}
.yd{bottom:700.458667pt;}
.y27a{bottom:702.443333pt;}
.y352{bottom:705.206000pt;}
.y2c2{bottom:705.208000pt;}
.y30a{bottom:705.440000pt;}
.y257{bottom:707.417733pt;}
.y6a{bottom:711.973333pt;}
.y16b{bottom:713.363467pt;}
.y10c{bottom:713.388800pt;}
.y80{bottom:713.437467pt;}
.ycc{bottom:713.439467pt;}
.y1de{bottom:713.456800pt;}
.ydb{bottom:713.458133pt;}
.y1a5{bottom:713.649333pt;}
.y279{bottom:714.446667pt;}
.yc{bottom:714.462667pt;}
.y259{bottom:716.250000pt;}
.y351{bottom:717.209333pt;}
.y2c1{bottom:717.211333pt;}
.y309{bottom:717.443333pt;}
.y278{bottom:726.450000pt;}
.y16a{bottom:728.031467pt;}
.y10b{bottom:728.056800pt;}
.y7f{bottom:728.105467pt;}
.ycb{bottom:728.107467pt;}
.y1dd{bottom:728.122133pt;}
.y1a4{bottom:728.317333pt;}
.yb{bottom:728.466667pt;}
.y350{bottom:729.212667pt;}
.y2c0{bottom:729.214667pt;}
.y308{bottom:729.446667pt;}
.y277{bottom:738.453333pt;}
.y34f{bottom:741.216000pt;}
.y2bf{bottom:741.218000pt;}
.y307{bottom:741.450000pt;}
.y169{bottom:742.699467pt;}
.y10a{bottom:742.724800pt;}
.y234{bottom:742.754133pt;}
.y7e{bottom:742.773467pt;}
.yca{bottom:742.775467pt;}
.y1dc{bottom:742.790133pt;}
.y1a3{bottom:742.985333pt;}
.y276{bottom:750.456667pt;}
.y34e{bottom:753.219333pt;}
.y2be{bottom:753.221333pt;}
.y306{bottom:753.453333pt;}
.ya{bottom:756.066667pt;}
.y168{bottom:757.367467pt;}
.y109{bottom:757.392800pt;}
.yda{bottom:757.418133pt;}
.y233{bottom:757.422133pt;}
.y7d{bottom:757.441467pt;}
.yc9{bottom:757.443467pt;}
.y1db{bottom:757.448800pt;}
.y1a2{bottom:757.653333pt;}
.y69{bottom:758.285333pt;}
.y275{bottom:762.460000pt;}
.y34d{bottom:765.222667pt;}
.y2bd{bottom:765.224667pt;}
.y305{bottom:765.456667pt;}
.y68{bottom:771.622667pt;}
.y167{bottom:772.035467pt;}
.y108{bottom:772.060800pt;}
.y9{bottom:772.066667pt;}
.yd9{bottom:772.086133pt;}
.y232{bottom:772.090133pt;}
.y7c{bottom:772.109467pt;}
.yc8{bottom:772.111467pt;}
.y1da{bottom:772.116800pt;}
.y1a1{bottom:772.321333pt;}
.y274{bottom:774.463333pt;}
.y34c{bottom:777.226000pt;}
.y2bc{bottom:777.228000pt;}
.y304{bottom:777.460000pt;}
.y67{bottom:784.960000pt;}
.y273{bottom:786.466667pt;}
.y166{bottom:786.703467pt;}
.y107{bottom:786.728800pt;}
.yd8{bottom:786.754133pt;}
.y231{bottom:786.758133pt;}
.y7b{bottom:786.777467pt;}
.yc7{bottom:786.779467pt;}
.y1d9{bottom:786.784800pt;}
.y1a0{bottom:786.989333pt;}
.y8{bottom:788.066667pt;}
.y34b{bottom:789.229333pt;}
.y2bb{bottom:789.231333pt;}
.y303{bottom:789.463333pt;}
.y66{bottom:798.297333pt;}
.y272{bottom:798.470000pt;}
.y34a{bottom:801.232667pt;}
.y2ba{bottom:801.234667pt;}
.y165{bottom:801.371467pt;}
.y106{bottom:801.396800pt;}
.yd7{bottom:801.422133pt;}
.y230{bottom:801.426133pt;}
.y7a{bottom:801.445467pt;}
.yc6{bottom:801.447467pt;}
.y1d8{bottom:801.452800pt;}
.y302{bottom:801.466667pt;}
.y19f{bottom:801.657333pt;}
.y7{bottom:804.066667pt;}
.y271{bottom:810.473333pt;}
.y65{bottom:811.634667pt;}
.y349{bottom:813.236000pt;}
.y2b9{bottom:813.238000pt;}
.y301{bottom:813.470000pt;}
.y164{bottom:816.039467pt;}
.y105{bottom:816.064800pt;}
.yd6{bottom:816.090133pt;}
.y22f{bottom:816.094133pt;}
.y79{bottom:816.113467pt;}
.yc5{bottom:816.115467pt;}
.y1d7{bottom:816.120800pt;}
.y19e{bottom:816.325333pt;}
.y270{bottom:822.476667pt;}
.y64{bottom:824.972000pt;}
.y348{bottom:825.239333pt;}
.y2b8{bottom:825.241333pt;}
.y300{bottom:825.473333pt;}
.y163{bottom:830.707467pt;}
.y104{bottom:830.732800pt;}
.yd5{bottom:830.758133pt;}
.y22e{bottom:830.762133pt;}
.y78{bottom:830.781467pt;}
.yc4{bottom:830.783467pt;}
.y1d6{bottom:830.788800pt;}
.y19d{bottom:830.993333pt;}
.y6{bottom:833.005333pt;}
.y26f{bottom:834.480000pt;}
.y347{bottom:837.242667pt;}
.y2b7{bottom:837.244667pt;}
.y2ff{bottom:837.476667pt;}
.y63{bottom:838.309333pt;}
.y162{bottom:845.375467pt;}
.y103{bottom:845.400800pt;}
.yd4{bottom:845.426133pt;}
.y22d{bottom:845.430133pt;}
.y77{bottom:845.449467pt;}
.yc3{bottom:845.451467pt;}
.y1d5{bottom:845.456800pt;}
.y19c{bottom:845.661333pt;}
.y26e{bottom:846.483333pt;}
.y346{bottom:849.246000pt;}
.y2b6{bottom:849.248000pt;}
.y2fe{bottom:849.480000pt;}
.y62{bottom:851.646667pt;}
.y26d{bottom:858.486667pt;}
.y5{bottom:859.669333pt;}
.y1d4{bottom:860.038000pt;}
.y161{bottom:860.043467pt;}
.y102{bottom:860.068800pt;}
.yd3{bottom:860.094133pt;}
.y22c{bottom:860.098133pt;}
.y76{bottom:860.117467pt;}
.yc2{bottom:860.119467pt;}
.y19b{bottom:860.329333pt;}
.y345{bottom:861.249333pt;}
.y2b5{bottom:861.251333pt;}
.y2fd{bottom:861.483333pt;}
.y61{bottom:864.984000pt;}
.y26c{bottom:870.490000pt;}
.y344{bottom:873.252667pt;}
.y2b4{bottom:873.254667pt;}
.y2fc{bottom:873.486667pt;}
.y1d3{bottom:874.706000pt;}
.y160{bottom:874.711467pt;}
.y101{bottom:874.736800pt;}
.yd2{bottom:874.762133pt;}
.y22b{bottom:874.766133pt;}
.y75{bottom:874.785467pt;}
.yc1{bottom:874.787467pt;}
.y19a{bottom:874.997333pt;}
.y60{bottom:878.321333pt;}
.y26b{bottom:882.493333pt;}
.y343{bottom:885.256000pt;}
.y2b3{bottom:885.258000pt;}
.y2fb{bottom:885.490000pt;}
.y4{bottom:886.333333pt;}
.y1d2{bottom:889.374000pt;}
.y15f{bottom:889.379467pt;}
.y100{bottom:889.404800pt;}
.yd1{bottom:889.430133pt;}
.y22a{bottom:889.434133pt;}
.y74{bottom:889.453467pt;}
.yc0{bottom:889.455467pt;}
.y199{bottom:889.665333pt;}
.y5f{bottom:891.658667pt;}
.y26a{bottom:894.496667pt;}
.y342{bottom:897.259333pt;}
.y2b2{bottom:897.261333pt;}
.y2fa{bottom:897.493333pt;}
.y1d1{bottom:904.042000pt;}
.y15e{bottom:904.047467pt;}
.yff{bottom:904.072800pt;}
.yd0{bottom:904.098133pt;}
.y229{bottom:904.102133pt;}
.y73{bottom:904.121467pt;}
.ybf{bottom:904.123467pt;}
.y198{bottom:904.333333pt;}
.y5e{bottom:904.996000pt;}
.y269{bottom:906.500000pt;}
.y341{bottom:909.262667pt;}
.y2b1{bottom:909.264667pt;}
.y2f9{bottom:909.496667pt;}
.y5d{bottom:918.333333pt;}
.y268{bottom:918.500000pt;}
.y1d0{bottom:918.710000pt;}
.y15d{bottom:918.715467pt;}
.yfe{bottom:918.740800pt;}
.ycf{bottom:918.766133pt;}
.y228{bottom:918.770133pt;}
.y72{bottom:918.789467pt;}
.ybe{bottom:918.791467pt;}
.y3{bottom:919.000000pt;}
.y340{bottom:921.266000pt;}
.y2b0{bottom:921.268000pt;}
.y2f8{bottom:921.500000pt;}
.y2{bottom:955.213600pt;}
.h1b{height:3.331504pt;}
.h1d{height:12.240000pt;}
.h8{height:23.470039pt;}
.h18{height:24.994667pt;}
.h1e{height:26.954896pt;}
.h19{height:28.669333pt;}
.h3{height:28.840000pt;}
.hc{height:30.874667pt;}
.h1{height:33.080000pt;}
.h4{height:34.608000pt;}
.h1c{height:35.939861pt;}
.h7{height:36.277333pt;}
.h15{height:36.282667pt;}
.h14{height:36.288000pt;}
.h13{height:36.314667pt;}
.h17{height:36.341333pt;}
.h16{height:36.432000pt;}
.h11{height:36.530667pt;}
.h12{height:36.624533pt;}
.hf{height:37.490396pt;}
.hb{height:41.310039pt;}
.ha{height:41.323373pt;}
.h9{height:41.336706pt;}
.h10{height:41.403373pt;}
.hd{height:41.875000pt;}
.h1a{height:48.293333pt;}
.h2{height:49.338667pt;}
.h6{height:51.122640pt;}
.he{height:65.000000pt;}
.h5{height:69.216000pt;}
.h0{height:1008.000000pt;}
.w2{width:243.933333pt;}
.w1{width:244.813333pt;}
.w3{width:265.373333pt;}
.w0{width:792.000000pt;}
.x2b{left:-1.416000pt;}
.x0{left:0.000000pt;}
.x30{left:0.909355pt;}
.x1{left:48.000000pt;}
.x7{left:64.000000pt;}
.x27{left:65.777600pt;}
.x35{left:69.354667pt;}
.x2d{left:158.712267pt;}
.x8{left:180.920000pt;}
.x17{left:184.470000pt;}
.x10{left:186.800000pt;}
.x1d{left:189.740000pt;}
.x1c{left:193.690000pt;}
.xf{left:196.880000pt;}
.x2f{left:233.004133pt;}
.x33{left:239.465467pt;}
.x1f{left:265.480000pt;}
.x1e{left:267.430000pt;}
.x12{left:281.660000pt;}
.x9{left:285.220000pt;}
.x11{left:291.740000pt;}
.x29{left:300.807600pt;}
.x28{left:304.117600pt;}
.xd{left:380.110000pt;}
.x19{left:381.310000pt;}
.x20{left:382.718533pt;}
.x18{left:394.950000pt;}
.x4{left:403.996667pt;}
.xa{left:416.900000pt;}
.x3{left:419.994667pt;}
.x36{left:425.485333pt;}
.x31{left:441.313333pt;}
.x2a{left:451.593333pt;}
.x21{left:460.322667pt;}
.x2c{left:461.889333pt;}
.x24{left:463.865600pt;}
.x13{left:466.090000pt;}
.xe{left:470.940000pt;}
.x23{left:475.282667pt;}
.x22{left:489.792667pt;}
.x1a{left:560.950000pt;}
.x15{left:566.230000pt;}
.xb{left:569.790000pt;}
.x25{left:573.105600pt;}
.x14{left:576.310000pt;}
.x2e{left:621.369600pt;}
.x5{left:654.933333pt;}
.x1b{left:668.690000pt;}
.x32{left:670.386667pt;}
.xc{left:672.220000pt;}
.x26{left:675.455600pt;}
.x16{left:678.020000pt;}
.x34{left:708.580533pt;}
.x2{left:714.130400pt;}
.x6{left:754.666667pt;}
}




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