
    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_9ee7d637968289e36e552a3f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_131070eba90544ad1d4f9afd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690918;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_3701edbbdefd7716f5670b31.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.018555;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_e8b9e2381eac272cb027eba8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.018555;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_eaf582d4c41d496a54b1f2ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_994ad34cb4ff9804831dcb93.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7fe8d5178d6a5326b99b2584.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_ea23fa19fc169a455f9091e3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_a2de62059f6d9b0bde6c5ac4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.766602;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_d7a1c225f36ef3cb06ca1057.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b9627e800e3e064bc54e02b4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.130371;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_45107363b54c590bf0cd6268.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.130371;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_3fcd98cca64408c33b4bda71.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.769531;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_c3cdf96efaeaabd93bad22cd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.970703;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_9baeed72005233ca34c0700b.woff2')format("woff");}.fff{font-family:fff;line-height:0.891602;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_24ac1216f4e61e9217bae1e1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.891602;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_96d303db9c9ce44471a1fd24.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.690918;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_5d2f23197c6520f3f165e7de.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.861816;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_874787795e8efabf3e35867e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.861816;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_2ca6b272dbd1d0891c8925bd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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_88e86e3d716333b915635d54.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.971680;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_bb27dae101dd08767fba498d.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.048340;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_6e0fc1965cae31a0dd6fba6d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_7eda332cd6c0c84c6a877cba.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_152e77841ead217b36e39a7f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_c9db6fa5ec9397f17b29d5a6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.136230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_336184de20cca5508d12f68c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.668945;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_bc8c4041a2d84236b3298404.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-24.120000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.880000px;}
.v6{vertical-align:17.982000px;}
.v2{vertical-align:20.877480px;}
.v3{vertical-align:24.120000px;}
.ls51{letter-spacing:-3.359880px;}
.ls64{letter-spacing:-3.030480px;}
.ls65{letter-spacing:-2.635200px;}
.ls79{letter-spacing:-2.305800px;}
.ls7a{letter-spacing:-1.666647px;}
.ls35{letter-spacing:-1.623240px;}
.ls5b{letter-spacing:-1.600560px;}
.ls48{letter-spacing:-1.581120px;}
.ls5a{letter-spacing:-1.558440px;}
.ls11{letter-spacing:-1.476000px;}
.ls5d{letter-spacing:-1.449360px;}
.ls32{letter-spacing:-1.442880px;}
.ls33{letter-spacing:-1.382760px;}
.ls34{letter-spacing:-1.322640px;}
.ls10{letter-spacing:-1.284000px;}
.lsf{letter-spacing:-1.278000px;}
.ls57{letter-spacing:-1.251720px;}
.ls58{letter-spacing:-1.185840px;}
.ls56{letter-spacing:-1.119960px;}
.ls12{letter-spacing:-1.116000px;}
.ls5c{letter-spacing:-1.054080px;}
.ls59{letter-spacing:-0.988200px;}
.ls7c{letter-spacing:-0.902767px;}
.ls2e{letter-spacing:-0.901800px;}
.ls40{letter-spacing:-0.763880px;}
.ls2d{letter-spacing:-0.661320px;}
.lsb{letter-spacing:-0.559200px;}
.ls9b{letter-spacing:-0.541080px;}
.ls9c{letter-spacing:-0.420840px;}
.ls9{letter-spacing:-0.417000px;}
.lsa{letter-spacing:-0.398400px;}
.ls5f{letter-spacing:-0.378000px;}
.ls31{letter-spacing:-0.360720px;}
.ls30{letter-spacing:-0.300600px;}
.ls7b{letter-spacing:-0.277774px;}
.ls49{letter-spacing:-0.270000px;}
.ls2f{letter-spacing:-0.240480px;}
.ls2b{letter-spacing:-0.180360px;}
.ls7{letter-spacing:-0.180000px;}
.ls21{letter-spacing:-0.168480px;}
.ls4a{letter-spacing:-0.162000px;}
.ls23{letter-spacing:-0.143640px;}
.ls53{letter-spacing:-0.138887px;}
.ls36{letter-spacing:-0.131760px;}
.ls22{letter-spacing:-0.126360px;}
.ls9a{letter-spacing:-0.120240px;}
.ls38{letter-spacing:-0.108000px;}
.ls26{letter-spacing:-0.078120px;}
.ls7f{letter-spacing:-0.069444px;}
.ls27{letter-spacing:-0.065880px;}
.ls2c{letter-spacing:-0.060120px;}
.ls37{letter-spacing:-0.054000px;}
.lsd{letter-spacing:-0.038160px;}
.ls8{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls95{letter-spacing:0.006012px;}
.ls6d{letter-spacing:0.013176px;}
.ls9e{letter-spacing:0.021600px;}
.ls87{letter-spacing:0.032940px;}
.ls0{letter-spacing:0.036000px;}
.ls63{letter-spacing:0.037800px;}
.lsc{letter-spacing:0.050400px;}
.ls6a{letter-spacing:0.052200px;}
.ls1c{letter-spacing:0.054000px;}
.ls3d{letter-spacing:0.056880px;}
.ls29{letter-spacing:0.060120px;}
.ls3c{letter-spacing:0.065880px;}
.ls78{letter-spacing:0.070200px;}
.ls16{letter-spacing:0.077760px;}
.ls9f{letter-spacing:0.078156px;}
.ls8e{letter-spacing:0.078840px;}
.ls8c{letter-spacing:0.079056px;}
.ls50{letter-spacing:0.081000px;}
.ls20{letter-spacing:0.084240px;}
.ls46{letter-spacing:0.087840px;}
.ls24{letter-spacing:0.095760px;}
.ls8d{letter-spacing:0.098820px;}
.lse{letter-spacing:0.104400px;}
.ls3{letter-spacing:0.105120px;}
.ls1e{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.108720px;}
.ls39{letter-spacing:0.113760px;}
.ls61{letter-spacing:0.119160px;}
.ls28{letter-spacing:0.120240px;}
.ls6b{letter-spacing:0.121320px;}
.ls86{letter-spacing:0.125280px;}
.ls14{letter-spacing:0.126360px;}
.ls47{letter-spacing:0.131760px;}
.ls4{letter-spacing:0.136080px;}
.ls5{letter-spacing:0.136200px;}
.ls6c{letter-spacing:0.136800px;}
.ls13{letter-spacing:0.155844px;}
.ls5e{letter-spacing:0.162000px;}
.ls2a{letter-spacing:0.180360px;}
.ls25{letter-spacing:0.191520px;}
.ls3e{letter-spacing:0.197640px;}
.ls54{letter-spacing:0.210600px;}
.ls68{letter-spacing:0.210816px;}
.ls4d{letter-spacing:0.231120px;}
.ls4c{letter-spacing:0.263520px;}
.ls75{letter-spacing:0.313560px;}
.ls3f{letter-spacing:0.329400px;}
.ls7e{letter-spacing:0.380232px;}
.ls55{letter-spacing:0.395280px;}
.ls69{letter-spacing:0.450000px;}
.ls83{letter-spacing:0.461160px;}
.ls52{letter-spacing:0.592920px;}
.ls4b{letter-spacing:0.632448px;}
.ls1{letter-spacing:0.825120px;}
.ls77{letter-spacing:0.922320px;}
.ls82{letter-spacing:0.951120px;}
.ls2{letter-spacing:1.185120px;}
.ls62{letter-spacing:1.317600px;}
.ls71{letter-spacing:1.647000px;}
.ls19{letter-spacing:1.863720px;}
.ls88{letter-spacing:1.895400px;}
.ls4f{letter-spacing:2.042280px;}
.ls76{letter-spacing:2.075220px;}
.ls8b{letter-spacing:2.371680px;}
.ls67{letter-spacing:2.766960px;}
.ls8f{letter-spacing:2.878956px;}
.ls18{letter-spacing:3.080880px;}
.ls4e{letter-spacing:3.096360px;}
.ls66{letter-spacing:3.135888px;}
.ls94{letter-spacing:3.306600px;}
.ls60{letter-spacing:3.821040px;}
.ls84{letter-spacing:3.831120px;}
.ls9d{letter-spacing:4.125240px;}
.ls43{letter-spacing:4.216320px;}
.ls85{letter-spacing:4.545720px;}
.ls73{letter-spacing:4.941000px;}
.ls74{letter-spacing:5.270400px;}
.ls97{letter-spacing:5.929200px;}
.ls98{letter-spacing:5.995080px;}
.ls91{letter-spacing:6.060960px;}
.ls99{letter-spacing:6.126840px;}
.ls1b{letter-spacing:6.324480px;}
.ls1a{letter-spacing:6.553080px;}
.ls6f{letter-spacing:7.444440px;}
.ls70{letter-spacing:7.470792px;}
.ls3a{letter-spacing:7.773840px;}
.ls92{letter-spacing:7.995960px;}
.ls41{letter-spacing:8.169120px;}
.ls7d{letter-spacing:8.498520px;}
.ls80{letter-spacing:9.947880px;}
.ls96{letter-spacing:10.521000px;}
.ls72{letter-spacing:11.397240px;}
.ls81{letter-spacing:12.451320px;}
.ls89{letter-spacing:12.846600px;}
.ls1f{letter-spacing:13.014000px;}
.ls17{letter-spacing:16.074720px;}
.ls3b{letter-spacing:16.799400px;}
.ls90{letter-spacing:17.128800px;}
.ls6e{letter-spacing:20.027520px;}
.ls8a{letter-spacing:21.476880px;}
.ls1d{letter-spacing:33.534000px;}
.ls93{letter-spacing:45.450720px;}
.ls42{letter-spacing:53.494560px;}
.ls45{letter-spacing:86.961600px;}
.ls44{letter-spacing:86.991120px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws70{word-spacing:-65.880000px;}
.wsac{word-spacing:-21.015720px;}
.wsab{word-spacing:-20.883960px;}
.wsaa{word-spacing:-20.818080px;}
.ws2{word-spacing:-18.956880px;}
.ws1{word-spacing:-16.272000px;}
.ws8b{word-spacing:-15.624814px;}
.ws7c{word-spacing:-15.555370px;}
.ws4e{word-spacing:-15.284160px;}
.ws97{word-spacing:-15.152400px;}
.ws38{word-spacing:-15.086520px;}
.ws43{word-spacing:-15.020640px;}
.ws4c{word-spacing:-14.954760px;}
.ws8c{word-spacing:-14.930378px;}
.ws39{word-spacing:-14.888880px;}
.ws42{word-spacing:-14.823000px;}
.ws7d{word-spacing:-14.791491px;}
.ws3a{word-spacing:-14.757120px;}
.ws53{word-spacing:-13.834800px;}
.ws50{word-spacing:-13.768920px;}
.ws17{word-spacing:-13.767480px;}
.ws12{word-spacing:-13.707360px;}
.ws4f{word-spacing:-13.703040px;}
.ws37{word-spacing:-13.647240px;}
.ws13{word-spacing:-13.587120px;}
.ws15{word-spacing:-13.527000px;}
.wsad{word-spacing:-13.466880px;}
.ws14{word-spacing:-13.406760px;}
.ws19{word-spacing:-13.346640px;}
.wsa9{word-spacing:-13.286520px;}
.ws18{word-spacing:-13.226400px;}
.wsaf{word-spacing:-13.166280px;}
.wsae{word-spacing:-13.046040px;}
.ws5{word-spacing:-12.854880px;}
.ws8{word-spacing:-12.816720px;}
.ws16{word-spacing:-12.685320px;}
.ws7{word-spacing:-12.456480px;}
.ws6{word-spacing:-12.437880px;}
.wsa0{word-spacing:-12.366000px;}
.ws1a{word-spacing:-12.264480px;}
.ws56{word-spacing:-12.258000px;}
.ws3{word-spacing:-12.204000px;}
.ws4{word-spacing:-12.186000px;}
.ws1c{word-spacing:-12.150000px;}
.ws1d{word-spacing:-12.096000px;}
.wsa1{word-spacing:-12.042000px;}
.ws1b{word-spacing:-11.963880px;}
.ws9f{word-spacing:-11.934000px;}
.ws54{word-spacing:-11.826000px;}
.wsa{word-spacing:-11.738880px;}
.ws9{word-spacing:-11.378880px;}
.ws11{word-spacing:-11.012400px;}
.ws0{word-spacing:-10.820880px;}
.ws10{word-spacing:-10.677240px;}
.ws4d{word-spacing:-9.729720px;}
.wsd{word-spacing:-9.603360px;}
.wsc{word-spacing:-9.519120px;}
.wsf{word-spacing:-9.392760px;}
.wse{word-spacing:-9.350640px;}
.ws55{word-spacing:-8.864640px;}
.ws40{word-spacing:-8.169120px;}
.ws51{word-spacing:-7.960680px;}
.ws52{word-spacing:-7.918560px;}
.ws8d{word-spacing:-3.755160px;}
.ws58{word-spacing:-3.228120px;}
.wsa8{word-spacing:-2.766960px;}
.ws92{word-spacing:-2.701080px;}
.ws91{word-spacing:-2.569320px;}
.ws62{word-spacing:-2.239920px;}
.ws61{word-spacing:-2.108160px;}
.ws27{word-spacing:-1.863720px;}
.ws82{word-spacing:-1.647000px;}
.ws86{word-spacing:-1.581120px;}
.ws87{word-spacing:-1.449360px;}
.ws2a{word-spacing:-1.382760px;}
.ws77{word-spacing:-1.185840px;}
.ws88{word-spacing:-0.918000px;}
.ws7b{word-spacing:-0.864000px;}
.ws95{word-spacing:-0.856440px;}
.ws6d{word-spacing:-0.724680px;}
.ws59{word-spacing:-0.592920px;}
.ws5c{word-spacing:-0.527040px;}
.ws5d{word-spacing:-0.461160px;}
.ws3d{word-spacing:-0.329400px;}
.wsb0{word-spacing:-0.300600px;}
.wsa2{word-spacing:-0.263520px;}
.ws1f{word-spacing:-0.252720px;}
.ws46{word-spacing:-0.197640px;}
.ws26{word-spacing:-0.180360px;}
.ws69{word-spacing:-0.162000px;}
.ws5e{word-spacing:-0.131760px;}
.ws45{word-spacing:-0.126360px;}
.ws2b{word-spacing:-0.120240px;}
.ws3b{word-spacing:-0.113760px;}
.ws34{word-spacing:-0.108000px;}
.ws21{word-spacing:-0.095760px;}
.ws1e{word-spacing:-0.084240px;}
.ws24{word-spacing:-0.077760px;}
.ws23{word-spacing:-0.065880px;}
.ws28{word-spacing:-0.060120px;}
.ws3c{word-spacing:-0.056880px;}
.ws36{word-spacing:-0.054000px;}
.ws9c{word-spacing:-0.042120px;}
.wsb{word-spacing:0.000000px;}
.ws35{word-spacing:0.054000px;}
.wsb4{word-spacing:0.060120px;}
.ws41{word-spacing:0.065880px;}
.ws94{word-spacing:0.069444px;}
.ws22{word-spacing:0.078120px;}
.ws89{word-spacing:0.108000px;}
.ws44{word-spacing:0.113760px;}
.wsb3{word-spacing:0.120240px;}
.ws20{word-spacing:0.126360px;}
.ws32{word-spacing:0.131760px;}
.ws5a{word-spacing:0.138887px;}
.wsb9{word-spacing:0.180360px;}
.ws4b{word-spacing:0.216000px;}
.ws2d{word-spacing:0.240480px;}
.ws9a{word-spacing:0.263520px;}
.ws4a{word-spacing:0.270000px;}
.ws81{word-spacing:0.277774px;}
.ws2e{word-spacing:0.300600px;}
.ws8a{word-spacing:0.378000px;}
.wsb8{word-spacing:0.420840px;}
.wsa3{word-spacing:0.432000px;}
.ws73{word-spacing:0.527040px;}
.ws85{word-spacing:0.592920px;}
.ws83{word-spacing:0.658800px;}
.ws2c{word-spacing:0.661320px;}
.ws3e{word-spacing:0.763880px;}
.ws9d{word-spacing:0.856440px;}
.ws64{word-spacing:0.988200px;}
.ws9e{word-spacing:1.054080px;}
.ws60{word-spacing:1.119960px;}
.ws7a{word-spacing:1.134000px;}
.ws78{word-spacing:1.185840px;}
.ws67{word-spacing:1.251720px;}
.wsa6{word-spacing:1.317600px;}
.ws31{word-spacing:1.322640px;}
.ws30{word-spacing:1.382760px;}
.ws99{word-spacing:1.383480px;}
.ws2f{word-spacing:1.442880px;}
.ws68{word-spacing:1.449360px;}
.ws98{word-spacing:1.527760px;}
.ws48{word-spacing:1.581120px;}
.ws8f{word-spacing:1.666647px;}
.ws6f{word-spacing:1.712880px;}
.ws7e{word-spacing:2.305800px;}
.ws5f{word-spacing:2.503440px;}
.ws6c{word-spacing:2.635200px;}
.ws71{word-spacing:2.766960px;}
.ws65{word-spacing:2.832840px;}
.wsa7{word-spacing:2.898720px;}
.ws6a{word-spacing:3.030480px;}
.ws66{word-spacing:3.162240px;}
.ws5b{word-spacing:3.228120px;}
.ws25{word-spacing:3.246480px;}
.ws57{word-spacing:3.359880px;}
.ws96{word-spacing:3.491640px;}
.wsbd{word-spacing:3.607200px;}
.ws6b{word-spacing:3.623400px;}
.ws9b{word-spacing:3.755160px;}
.wsbb{word-spacing:3.847680px;}
.wsbc{word-spacing:3.907800px;}
.ws49{word-spacing:3.952800px;}
.ws29{word-spacing:3.967920px;}
.wsa5{word-spacing:4.677480px;}
.ws72{word-spacing:4.875120px;}
.ws63{word-spacing:5.665680px;}
.wsba{word-spacing:5.711400px;}
.ws75{word-spacing:6.258600px;}
.ws76{word-spacing:6.851520px;}
.ws79{word-spacing:7.444440px;}
.ws84{word-spacing:7.576200px;}
.ws33{word-spacing:8.235000px;}
.wsb7{word-spacing:8.236440px;}
.wsb6{word-spacing:8.296560px;}
.ws90{word-spacing:8.564400px;}
.wsb1{word-spacing:8.597160px;}
.wsb5{word-spacing:8.657280px;}
.ws47{word-spacing:9.552600px;}
.wsb2{word-spacing:9.619200px;}
.ws93{word-spacing:10.606680px;}
.wsa4{word-spacing:14.295960px;}
.ws3f{word-spacing:16.931160px;}
.ws74{word-spacing:19.961640px;}
.ws80{word-spacing:20.554560px;}
.ws7f{word-spacing:22.777507px;}
.ws6e{word-spacing:26.417880px;}
.ws8e{word-spacing:26.615520px;}
._17{margin-left:-8.134920px;}
._18{margin-left:-7.050096px;}
._e{margin-left:-4.653288px;}
._d{margin-left:-3.538332px;}
._6{margin-left:-2.492040px;}
._1{margin-left:-1.072680px;}
._0{width:1.007280px;}
._5{width:2.253600px;}
._9{width:3.543120px;}
._b{width:4.613604px;}
._4{width:5.933040px;}
._3{width:7.394400px;}
._10{width:8.776584px;}
._7{width:10.074480px;}
._8{width:11.148720px;}
._f{width:13.077180px;}
._16{width:16.706916px;}
._11{width:17.721720px;}
._21{width:18.947772px;}
._1e{width:20.339244px;}
._c{width:21.619152px;}
._a{width:23.719884px;}
._1f{width:26.431740px;}
._2{width:32.629320px;}
._13{width:33.728400px;}
._14{width:37.764720px;}
._15{width:39.420000px;}
._12{width:41.472000px;}
._23{width:45.017856px;}
._20{width:48.546972px;}
._1b{width:54.153360px;}
._1a{width:57.691800px;}
._1c{width:64.957680px;}
._1d{width:86.171040px;}
._19{width:87.356880px;}
._22{width:849.127320px;}
.fc4{color:transparent;}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:2.880000px;}
.fs4{font-size:6.120000px;}
.fsf{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs2{font-size:42.120000px;}
.fs1{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fsd{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fse{font-size:69.443617px;}
.fs5{font-size:72.000000px;}
.fsb{font-size:78.120000px;}
.fs8{font-size:83.880000px;}
.fs7{font-size:90.000000px;}
.fs6{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y41{bottom:3.239850px;}
.y3e{bottom:3.240000px;}
.ya{bottom:3.330000px;}
.y87{bottom:3.420000px;}
.yfe{bottom:3.510000px;}
.y30{bottom:3.780000px;}
.y37{bottom:3.870000px;}
.y29{bottom:4.410000px;}
.y7{bottom:5.580000px;}
.y9{bottom:6.840000px;}
.y89{bottom:8.820000px;}
.y15{bottom:12.780000px;}
.y9c{bottom:13.860000px;}
.y85{bottom:14.580000px;}
.y6a{bottom:15.840000px;}
.ye6{bottom:16.380000px;}
.y40{bottom:17.910000px;}
.y4{bottom:19.170000px;}
.y2f{bottom:21.150000px;}
.y28{bottom:23.760000px;}
.y26{bottom:25.110000px;}
.y14{bottom:32.310000px;}
.y34{bottom:35.460000px;}
.y9a{bottom:37.350000px;}
.yc{bottom:37.830000px;}
.y2e{bottom:38.610000px;}
.y27{bottom:40.230000px;}
.y3{bottom:40.350000px;}
.y123{bottom:48.870000px;}
.y33{bottom:53.010000px;}
.y32{bottom:53.640000px;}
.y2{bottom:54.840000px;}
.yb{bottom:55.380000px;}
.y2d{bottom:55.980000px;}
.y25{bottom:56.880000px;}
.y99{bottom:57.960000px;}
.y18c{bottom:58.860000px;}
.y13{bottom:62.280000px;}
.y1d7{bottom:71.550000px;}
.y2c{bottom:73.350000px;}
.y2b{bottom:74.070000px;}
.y24{bottom:74.340000px;}
.y1d2{bottom:78.480000px;}
.y98{bottom:81.540000px;}
.y1e3{bottom:81.630000px;}
.y12{bottom:85.050000px;}
.y107{bottom:86.940000px;}
.y205{bottom:88.290000px;}
.y121{bottom:90.000000px;}
.y23{bottom:91.710000px;}
.y5{bottom:99.120000px;}
.yab{bottom:102.060000px;}
.y96{bottom:105.030000px;}
.y22{bottom:109.080000px;}
.y204{bottom:111.780000px;}
.y21{bottom:126.540000px;}
.y94{bottom:128.610000px;}
.y67{bottom:131.130000px;}
.y202{bottom:135.360000px;}
.yb5{bottom:136.890000px;}
.y292{bottom:143.647560px;}
.y20{bottom:143.910000px;}
.y10f{bottom:147.880890px;}
.y13a{bottom:149.490000px;}
.yf9{bottom:149.850000px;}
.y92{bottom:152.190000px;}
.y11{bottom:152.820000px;}
.y66{bottom:153.360000px;}
.yb4{bottom:155.160000px;}
.y183{bottom:158.760000px;}
.y201{bottom:159.840000px;}
.y1f{bottom:161.280000px;}
.y291{bottom:164.704590px;}
.y139{bottom:165.960000px;}
.y65{bottom:165.964500px;}
.y1ea{bottom:166.320000px;}
.y17e{bottom:168.120000px;}
.y10e{bottom:168.484860px;}
.y20f{bottom:171.630000px;}
.yf8{bottom:171.992790px;}
.yb3{bottom:173.520000px;}
.y19d{bottom:175.594410px;}
.y90{bottom:175.770000px;}
.y1c3{bottom:177.218100px;}
.y10{bottom:178.470000px;}
.y1e{bottom:178.680000px;}
.y138{bottom:182.434500px;}
.y290{bottom:182.710530px;}
.y200{bottom:183.420000px;}
.y64{bottom:188.100000px;}
.y10d{bottom:189.006480px;}
.y20e{bottom:189.990000px;}
.yb2{bottom:191.790000px;}
.y83{bottom:192.254760px;}
.yf7{bottom:192.514410px;}
.y17d{bottom:194.415030px;}
.y1d{bottom:196.140000px;}
.y19c{bottom:196.198380px;}
.y1c2{bottom:197.822070px;}
.y8e{bottom:199.350000px;}
.y258{bottom:200.816460px;}
.y63{bottom:201.060000px;}
.y28f{bottom:203.677380px;}
.y137{bottom:204.570000px;}
.yb1{bottom:204.750000px;}
.y20d{bottom:208.260000px;}
.y10c{bottom:209.528100px;}
.ye0{bottom:210.060000px;}
.yf6{bottom:213.118380px;}
.y1c{bottom:213.510000px;}
.y17c{bottom:214.936650px;}
.y1e9{bottom:215.463600px;}
.y82{bottom:215.839800px;}
.y19b{bottom:216.720000px;}
.y62{bottom:220.422600px;}
.y257{bottom:221.420430px;}
.y28e{bottom:221.683320px;}
.y8c{bottom:222.840000px;}
.y136{bottom:222.930000px;}
.yf{bottom:225.810000px;}
.y20c{bottom:226.620000px;}
.ydf{bottom:228.420000px;}
.y10b{bottom:230.132070px;}
.y1b{bottom:230.880000px;}
.yf5{bottom:233.652690px;}
.y17b{bottom:235.540620px;}
.y1e8{bottom:235.985220px;}
.y81{bottom:239.424840px;}
.y20b{bottom:239.490000px;}
.yb0{bottom:240.288660px;}
.y19a{bottom:240.302790px;}
.y135{bottom:241.200000px;}
.yde{bottom:241.380000px;}
.y256{bottom:241.942050px;}
.y28d{bottom:242.650170px;}
.y22e{bottom:243.001530px;}
.y61{bottom:244.007640px;}
.y114{bottom:244.260000px;}
.y8a{bottom:246.420000px;}
.y159{bottom:246.690000px;}
.ye{bottom:248.040000px;}
.y1a{bottom:248.340000px;}
.y1c1{bottom:252.474840px;}
.y134{bottom:254.160000px;}
.yf4{bottom:254.256660px;}
.y10a{bottom:255.150000px;}
.yaa{bottom:256.050000px;}
.y1e7{bottom:256.589190px;}
.y20a{bottom:259.930440px;}
.y17a{bottom:260.558550px;}
.y199{bottom:260.824410px;}
.y255{bottom:262.546020px;}
.y80{bottom:262.911060px;}
.y28c{bottom:263.707200px;}
.yaf{bottom:263.873700px;}
.y60{bottom:264.529260px;}
.y158{bottom:265.050000px;}
.y19{bottom:265.710000px;}
.y22d{bottom:266.586570px;}
.ydd{bottom:270.008820px;}
.y17{bottom:270.930000px;}
.y1e2{bottom:272.340000px;}
.y1c0{bottom:272.996460px;}
.yf3{bottom:274.778280px;}
.y157{bottom:277.654500px;}
.y106{bottom:279.900000px;}
.y209{bottom:280.534410px;}
.y198{bottom:281.428380px;}
.y254{bottom:283.067640px;}
.y18{bottom:283.080000px;}
.y1e6{bottom:283.314960px;}
.y7f{bottom:283.515030px;}
.y28b{bottom:284.674050px;}
.y5f{bottom:285.133230px;}
.yae{bottom:287.458740px;}
.y179{bottom:290.171610px;}
.ydc{bottom:290.530440px;}
.y1bf{bottom:293.600430px;}
.y35{bottom:294.510000px;}
.yf2{bottom:295.382250px;}
.y208{bottom:301.056030px;}
.y156{bottom:301.950000px;}
.y28a{bottom:302.679990px;}
.y253{bottom:303.671610px;}
.y7e{bottom:304.036650px;}
.y5e{bottom:305.654850px;}
.y1e5{bottom:306.903780px;}
.y31{bottom:310.260000px;}
.y178{bottom:310.693230px;}
.yad{bottom:311.043780px;}
.ydb{bottom:311.134410px;}
.y133{bottom:311.484960px;}
.y22c{bottom:313.657830px;}
.y1be{bottom:314.122050px;}
.y155{bottom:315.000000px;}
.y109{bottom:315.630000px;}
.yf1{bottom:320.400180px;}
.y207{bottom:321.660000px;}
.y289{bottom:323.646840px;}
.y252{bottom:324.193230px;}
.y7d{bottom:324.640620px;}
.y197{bottom:325.528380px;}
.y5d{bottom:326.258820px;}
.y1e4{bottom:330.390000px;}
.y177{bottom:331.214850px;}
.yda{bottom:331.656030px;}
.yac{bottom:334.530000px;}
.y1bd{bottom:334.726020px;}
.y132{bottom:335.072790px;}
.y1ff{bottom:337.410000px;}
.y22b{bottom:338.675760px;}
.y288{bottom:344.703870px;}
.y251{bottom:344.714850px;}
.y7c{bottom:345.162240px;}
.y196{bottom:346.050000px;}
.y108{bottom:346.230000px;}
.y154{bottom:346.244220px;}
.y5c{bottom:346.780440px;}
.yf0{bottom:350.013240px;}
.y176{bottom:351.818820px;}
.yd9{bottom:352.264410px;}
.y1e1{bottom:353.970000px;}
.y1bc{bottom:355.247640px;}
.y131{bottom:355.594410px;}
.y250{bottom:365.318820px;}
.y287{bottom:365.670720px;}
.y7b{bottom:365.766210px;}
.y153{bottom:366.848190px;}
.y5b{bottom:367.384410px;}
.y22a{bottom:368.288820px;}
.y195{bottom:369.636030px;}
.yef{bottom:370.534860px;}
.y175{bottom:372.340440px;}
.yd8{bottom:372.786030px;}
.y1bb{bottom:375.851610px;}
.y130{bottom:376.198380px;}
.y1e0{bottom:378.442710px;}
.ya9{bottom:381.707640px;}
.y24f{bottom:385.840440px;}
.y7a{bottom:386.287830px;}
.y286{bottom:386.637570px;}
.y105{bottom:387.360000px;}
.y152{bottom:387.369810px;}
.y5a{bottom:387.906030px;}
.y229{bottom:388.892790px;}
.y194{bottom:390.238380px;}
.yee{bottom:391.138830px;}
.y174{bottom:392.944410px;}
.yd7{bottom:393.390000px;}
.y2a{bottom:394.770000px;}
.y1ba{bottom:396.373230px;}
.y12f{bottom:396.723780px;}
.y1df{bottom:402.027750px;}
.ya8{bottom:402.229260px;}
.y24e{bottom:406.444410px;}
.y79{bottom:406.891800px;}
.y285{bottom:407.694600px;}
.y151{bottom:407.973780px;}
.y59{bottom:408.510000px;}
.y228{bottom:409.414410px;}
.y193{bottom:410.770440px;}
.y104{bottom:410.923620px;}
.yed{bottom:411.660450px;}
.y173{bottom:413.466030px;}
.yd6{bottom:416.971170px;}
.y1b9{bottom:416.977200px;}
.y12e{bottom:417.327750px;}
.ya7{bottom:422.833230px;}
.y1de{bottom:425.513970px;}
.y206{bottom:425.700000px;}
.y24d{bottom:426.966030px;}
.y78{bottom:427.413420px;}
.y284{bottom:428.661450px;}
.y227{bottom:430.018380px;}
.y192{bottom:431.374410px;}
.y150{bottom:431.470440px;}
.yec{bottom:432.264420px;}
.y172{bottom:434.074410px;}
.y103{bottom:434.508660px;}
.yd5{bottom:437.492790px;}
.y1b8{bottom:437.498820px;}
.y12d{bottom:437.849370px;}
.ya6{bottom:443.354850px;}
.y24c{bottom:447.568380px;}
.y1dd{bottom:449.099010px;}
.y58{bottom:449.516070px;}
.y283{bottom:449.628300px;}
.y226{bottom:450.585090px;}
.y191{bottom:451.896030px;}
.y14f{bottom:452.074410px;}
.y77{bottom:452.431350px;}
.yeb{bottom:452.786040px;}
.y171{bottom:454.596030px;}
.yd4{bottom:458.014410px;}
.y1b7{bottom:458.020440px;}
.y102{bottom:458.093700px;}
.y12c{bottom:461.434410px;}
.ya5{bottom:463.958820px;}
.y282{bottom:467.634240px;}
.y24b{bottom:468.109080px;}
.y225{bottom:471.189060px;}
.y190{bottom:472.500000px;}
.y14e{bottom:472.596030px;}
.y203{bottom:472.770000px;}
.yea{bottom:473.307660px;}
.y1dc{bottom:474.116940px;}
.y170{bottom:475.200000px;}
.yd3{bottom:478.618380px;}
.y1b6{bottom:478.624410px;}
.y57{bottom:480.207330px;}
.y101{bottom:481.678740px;}
.y16{bottom:481.710000px;}
.y12b{bottom:481.956030px;}
.y76{bottom:482.044410px;}
.ya4{bottom:484.480440px;}
.y281{bottom:488.691270px;}
.y24a{bottom:488.713050px;}
.y224{bottom:491.710680px;}
.y14d{bottom:493.209990px;}
.ye9{bottom:493.911630px;}
.y18f{bottom:495.990000px;}
.y16f{bottom:498.702510px;}
.y56{bottom:498.844530px;}
.yd2{bottom:499.146030px;}
.y75{bottom:502.566030px;}
.y12a{bottom:502.568820px;}
.y1db{bottom:503.736030px;}
.ya3{bottom:505.084410px;}
.y100{bottom:505.164960px;}
.y280{bottom:506.697210px;}
.y249{bottom:509.234670px;}
.y18a{bottom:511.740000px;}
.y223{bottom:512.232300px;}
.y14c{bottom:513.731610px;}
.ye8{bottom:514.433250px;}
.y55{bottom:517.571910px;}
.y16e{bottom:519.306480px;}
.y1b5{bottom:519.750000px;}
.yd1{bottom:519.754410px;}
.y129{bottom:523.090440px;}
.y74{bottom:523.174410px;}
.y1da{bottom:524.340000px;}
.y27f{bottom:524.703150px;}
.ya2{bottom:525.606030px;}
.yff{bottom:528.750000px;}
.y248{bottom:532.819710px;}
.y222{bottom:532.836270px;}
.y14b{bottom:534.335580px;}
.y54{bottom:536.299290px;}
.ye7{bottom:539.550000px;}
.y16d{bottom:539.828100px;}
.y1d6{bottom:540.090000px;}
.yd0{bottom:540.276030px;}
.y1b4{bottom:543.341610px;}
.y128{bottom:543.694410px;}
.y73{bottom:543.696030px;}
.y1fe{bottom:544.312710px;}
.y27e{bottom:545.670000px;}
.ya1{bottom:546.214410px;}
.y1d0{bottom:547.374150px;}
.y247{bottom:553.341330px;}
.y221{bottom:553.357890px;}
.y14a{bottom:554.857200px;}
.y53{bottom:554.936490px;}
.y263{bottom:558.092160px;}
.y16c{bottom:560.432070px;}
.ycf{bottom:560.893140px;}
.y27d{bottom:563.656950px;}
.y1b3{bottom:563.863230px;}
.y127{bottom:564.216030px;}
.y72{bottom:564.300000px;}
.ya0{bottom:566.736030px;}
.y1fd{bottom:567.897750px;}
.y1d9{bottom:570.508380px;}
.y52{bottom:573.663870px;}
.y246{bottom:573.945300px;}
.y220{bottom:573.961860px;}
.y149{bottom:575.461170px;}
.yce{bottom:581.414760px;}
.y262{bottom:581.677200px;}
.y1b2{bottom:584.467200px;}
.y27c{bottom:584.623800px;}
.y126{bottom:584.820000px;}
.y16b{bottom:585.450000px;}
.y9f{bottom:587.338380px;}
.y71{bottom:587.886480px;}
.y1d8{bottom:591.030000px;}
.y1fc{bottom:591.482790px;}
.y51{bottom:592.391250px;}
.y245{bottom:594.466920px;}
.y21f{bottom:594.483480px;}
.ye4{bottom:594.990000px;}
.y148{bottom:595.982790px;}
.ye5{bottom:599.940000px;}
.y120{bottom:600.570000px;}
.ycd{bottom:602.018730px;}
.y261{bottom:602.198820px;}
.y27b{bottom:602.629740px;}
.yfd{bottom:603.000000px;}
.y1b1{bottom:604.988820px;}
.y9e{bottom:607.856940px;}
.y125{bottom:608.316030px;}
.y70{bottom:608.408100px;}
.y50{bottom:611.028450px;}
.y11f{bottom:613.341000px;}
.y1fb{bottom:615.067830px;}
.y244{bottom:615.070890px;}
.y16a{bottom:615.071610px;}
.y21e{bottom:615.087450px;}
.y147{bottom:616.504410px;}
.ycc{bottom:622.540350px;}
.y260{bottom:622.720440px;}
.y88{bottom:623.610000px;}
.y27a{bottom:623.686770px;}
.y1b0{bottom:625.510440px;}
.y1d1{bottom:627.390000px;}
.y124{bottom:628.920000px;}
.y6f{bottom:629.012070px;}
.y4f{bottom:629.755830px;}
.y1d5{bottom:635.119920px;}
.y1fa{bottom:635.589450px;}
.y243{bottom:635.592510px;}
.y169{bottom:635.593230px;}
.y21d{bottom:635.609070px;}
.y146{bottom:637.108380px;}
.y9d{bottom:637.470000px;}
.y279{bottom:641.692710px;}
.ycb{bottom:643.144320px;}
.y25f{bottom:643.324410px;}
.y1af{bottom:646.114410px;}
.y6e{bottom:654.030000px;}
.y1f9{bottom:656.193420px;}
.y242{bottom:656.196480px;}
.y168{bottom:656.197200px;}
.y21c{bottom:656.213040px;}
.y145{bottom:657.630000px;}
.y1d4{bottom:658.704960px;}
.y9b{bottom:660.960000px;}
.y278{bottom:662.659560px;}
.yca{bottom:663.665940px;}
.y25e{bottom:663.846030px;}
.y1ae{bottom:666.636030px;}
.y4e{bottom:669.450060px;}
.y122{bottom:670.050000px;}
.y1f8{bottom:676.715040px;}
.y241{bottom:676.718100px;}
.y167{bottom:676.718820px;}
.y21b{bottom:676.734660px;}
.y144{bottom:681.214410px;}
.y1d3{bottom:682.290000px;}
.y277{bottom:683.626410px;}
.yc9{bottom:684.187560px;}
.y25d{bottom:684.450000px;}
.y6d{bottom:686.160000px;}
.y1ad{bottom:687.240000px;}
.y1f7{bottom:697.319010px;}
.y240{bottom:697.322070px;}
.y166{bottom:697.322790px;}
.y21a{bottom:697.338630px;}
.y4d{bottom:700.141320px;}
.y276{bottom:701.632350px;}
.y143{bottom:701.818380px;}
.y6c{bottom:703.980000px;}
.y113{bottom:706.320000px;}
.yc8{bottom:707.772600px;}
.y1ac{bottom:710.822790px;}
.y11e{bottom:714.137400px;}
.y25c{bottom:716.572620px;}
.y165{bottom:717.844410px;}
.y219{bottom:717.860250px;}
.y4c{bottom:718.868700px;}
.y1f6{bottom:722.336940px;}
.y23f{bottom:722.340000px;}
.y142{bottom:722.346030px;}
.y275{bottom:722.689380px;}
.yc7{bottom:728.376570px;}
.y97{bottom:728.640000px;}
.y1cf{bottom:729.445770px;}
.y1ab{bottom:731.344410px;}
.y25b{bottom:735.300000px;}
.y4b{bottom:737.596080px;}
.y11d{bottom:737.722440px;}
.y164{bottom:738.448380px;}
.y218{bottom:738.464220px;}
.y18b{bottom:738.720000px;}
.y274{bottom:740.695320px;}
.y141{bottom:742.950000px;}
.yc6{bottom:748.898190px;}
.y1aa{bottom:751.948380px;}
.y23e{bottom:751.973220px;}
.y95{bottom:752.220000px;}
.y1ce{bottom:752.931990px;}
.y25a{bottom:753.030000px;}
.y4a{bottom:756.233280px;}
.y18e{bottom:756.448380px;}
.y163{bottom:758.970000px;}
.y11c{bottom:761.307480px;}
.y273{bottom:761.662170px;}
.y217{bottom:761.950440px;}
.y140{bottom:766.446030px;}
.yc5{bottom:769.502160px;}
.y1f5{bottom:772.467750px;}
.y1a9{bottom:772.470000px;}
.y23d{bottom:772.494840px;}
.y49{bottom:774.960660px;}
.y93{bottom:775.800000px;}
.y1cd{bottom:776.517030px;}
.y18d{bottom:776.970000px;}
.yd{bottom:778.380000px;}
.y272{bottom:779.668110px;}
.y216{bottom:782.554410px;}
.y162{bottom:783.997290px;}
.y11b{bottom:784.793700px;}
.y13f{bottom:787.050000px;}
.yc4{bottom:790.023780px;}
.y1f4{bottom:792.989370px;}
.y23c{bottom:793.016460px;}
.y48{bottom:793.688040px;}
.y1a8{bottom:796.057200px;}
.y91{bottom:799.380000px;}
.y1cc{bottom:800.102070px;}
.y271{bottom:800.634960px;}
.y215{bottom:803.076030px;}
.y11a{bottom:808.378740px;}
.yc3{bottom:810.627750px;}
.y13e{bottom:810.628380px;}
.y47{bottom:812.325240px;}
.y182{bottom:813.330000px;}
.y161{bottom:813.610350px;}
.y23b{bottom:813.620430px;}
.y1f3{bottom:816.574410px;}
.y1a7{bottom:816.578820px;}
.y189{bottom:821.147490px;}
.y270{bottom:821.691990px;}
.y210{bottom:822.420000px;}
.y8f{bottom:822.960000px;}
.y214{bottom:823.689990px;}
.y1cb{bottom:825.120000px;}
.y46{bottom:831.052620px;}
.y13d{bottom:831.148380px;}
.yc2{bottom:831.149370px;}
.y119{bottom:831.963780px;}
.y160{bottom:834.131970px;}
.y23a{bottom:834.142050px;}
.y1f2{bottom:837.178380px;}
.y1a6{bottom:837.182790px;}
.y26f{bottom:842.658840px;}
.y213{bottom:844.211610px;}
.y8d{bottom:846.450000px;}
.y188{bottom:847.878300px;}
.y29f{bottom:848.259450px;}
.y45{bottom:849.780000px;}
.y13c{bottom:851.670000px;}
.yc1{bottom:851.670990px;}
.y1ca{bottom:854.732790px;}
.y15f{bottom:854.735940px;}
.y239{bottom:854.746020px;}
.y118{bottom:855.455580px;}
.y1a5{bottom:857.704410px;}
.y1f1{bottom:857.707200px;}
.y26e{bottom:860.664780px;}
.y29e{bottom:869.226300px;}
.y212{bottom:869.229540px;}
.y8b{bottom:870.030000px;}
.y187{bottom:871.463340px;}
.y1c9{bottom:875.254410px;}
.yc0{bottom:875.256030px;}
.y15e{bottom:875.257560px;}
.y238{bottom:875.267640px;}
.y1a4{bottom:878.308380px;}
.y1f0{bottom:878.311170px;}
.y117{bottom:879.930000px;}
.y26d{bottom:881.631630px;}
.y259{bottom:886.590000px;}
.y86{bottom:886.680000px;}
.y29d{bottom:890.283330px;}
.y186{bottom:895.048380px;}
.y1c8{bottom:895.858380px;}
.y15d{bottom:895.861530px;}
.ybf{bottom:895.862790px;}
.y237{bottom:895.871610px;}
.y1a3{bottom:898.830000px;}
.y1ef{bottom:898.832790px;}
.y211{bottom:898.842600px;}
.y26c{bottom:899.637570px;}
.y116{bottom:903.504960px;}
.y44{bottom:904.860630px;}
.y29c{bottom:911.250180px;}
.ybe{bottom:916.384410px;}
.y1c7{bottom:916.386030px;}
.y236{bottom:916.393230px;}
.y1ee{bottom:919.436760px;}
.y15c{bottom:919.446570px;}
.y26b{bottom:920.694600px;}
.y185{bottom:921.779190px;}
.y1a2{bottom:922.417200px;}
.y115{bottom:927.090000px;}
.y29b{bottom:932.217030px;}
.yfc{bottom:933.923700px;}
.ybd{bottom:936.988380px;}
.y235{bottom:936.997200px;}
.y26a{bottom:938.700540px;}
.y1ed{bottom:939.958380px;}
.y15b{bottom:939.968190px;}
.y1a1{bottom:942.938820px;}
.y184{bottom:948.510000px;}
.y29a{bottom:950.222970px;}
.y43{bottom:955.440000px;}
.yfb{bottom:957.508740px;}
.ybc{bottom:957.510000px;}
.y234{bottom:957.518820px;}
.y269{bottom:959.667390px;}
.y1ec{bottom:960.486030px;}
.y15a{bottom:960.489810px;}
.y1a0{bottom:963.542790px;}
.y299{bottom:971.277210px;}
.y112{bottom:975.060000px;}
.y233{bottom:978.122790px;}
.y268{bottom:980.634240px;}
.ybb{bottom:981.083340px;}
.yfa{bottom:981.093780px;}
.y1c6{bottom:981.094410px;}
.y19f{bottom:984.064410px;}
.y298{bottom:992.244060px;}
.y42{bottom:994.950000px;}
.y181{bottom:995.669730px;}
.y111{bottom:998.640000px;}
.y232{bottom:998.644410px;}
.yba{bottom:1001.604960px;}
.y1eb{bottom:1001.615400px;}
.y1c5{bottom:1001.616030px;}
.y267{bottom:1001.691270px;}
.y19e{bottom:1004.668380px;}
.ye3{bottom:1004.678820px;}
.y297{bottom:1010.244240px;}
.y180{bottom:1019.155950px;}
.y231{bottom:1019.166030px;}
.y266{bottom:1019.697210px;}
.y110{bottom:1022.219370px;}
.y1c4{bottom:1022.220000px;}
.yb9{bottom:1025.194410px;}
.y13b{bottom:1025.196030px;}
.ye2{bottom:1025.200440px;}
.y296{bottom:1028.250180px;}
.y230{bottom:1039.770000px;}
.y265{bottom:1040.664060px;}
.y1{bottom:1042.080000px;}
.y17f{bottom:1042.740990px;}
.yb8{bottom:1045.798380px;}
.ye1{bottom:1045.804410px;}
.y295{bottom:1046.256120px;}
.y3f{bottom:1058.490000px;}
.y264{bottom:1058.670000px;}
.y22f{bottom:1063.350000px;}
.y3c{bottom:1064.068920px;}
.yb7{bottom:1066.326030px;}
.y294{bottom:1067.222970px;}
.y3b{bottom:1076.852340px;}
.yb6{bottom:1086.930000px;}
.y3d{bottom:1087.830000px;}
.y293{bottom:1088.280000px;}
.y3a{bottom:1089.720000px;}
.y6{bottom:1098.900000px;}
.y39{bottom:1102.410000px;}
.y69{bottom:1106.100000px;}
.y84{bottom:1106.910000px;}
.y8{bottom:1115.100000px;}
.y68{bottom:1121.760000px;}
.y6b{bottom:1121.940000px;}
.y38{bottom:1122.480000px;}
.y36{bottom:1160.460000px;}
.h14{height:2.742188px;}
.ha{height:6.087129px;}
.h1e{height:14.580000px;}
.h9{height:16.200000px;}
.h19{height:16.740000px;}
.h7{height:19.710000px;}
.h29{height:27.736172px;}
.h31{height:28.170000px;}
.h20{height:29.340000px;}
.h2c{height:29.430000px;}
.h1c{height:30.047520px;}
.h3b{height:30.690000px;}
.h1f{height:34.156582px;}
.h6{height:35.910000px;}
.h1d{height:37.971664px;}
.h28{height:38.522461px;}
.h2d{height:40.576992px;}
.h1b{height:42.820312px;}
.h51{height:42.888340px;}
.h2a{height:44.534180px;}
.h5{height:44.616973px;}
.h22{height:45.035156px;}
.h2e{height:46.116000px;}
.h2b{height:46.909336px;}
.h27{height:46.997402px;}
.h4{height:47.622832px;}
.h24{height:47.673281px;}
.h47{height:49.539612px;}
.h25{height:49.581387px;}
.h53{height:49.604427px;}
.h13{height:51.416016px;}
.h52{height:52.272949px;}
.h12{height:53.100000px;}
.h21{height:53.402344px;}
.h8{height:53.709961px;}
.h41{height:54.143400px;}
.h11{height:54.158203px;}
.h35{height:54.167520px;}
.h42{height:54.307579px;}
.h30{height:54.314059px;}
.h39{height:54.320539px;}
.h50{height:54.325579px;}
.h26{height:54.331699px;}
.h37{height:54.338179px;}
.h4d{height:54.340699px;}
.h36{height:54.343939px;}
.h48{height:54.348619px;}
.h4c{height:54.351859px;}
.h3c{height:54.356899px;}
.h18{height:55.291992px;}
.h2f{height:57.270640px;}
.h23{height:57.517324px;}
.he{height:64.056797px;}
.h3{height:65.526152px;}
.h16{height:67.456230px;}
.hf{height:70.336230px;}
.hb{height:73.722656px;}
.h45{height:74.610000px;}
.h17{height:84.510000px;}
.h15{height:86.940000px;}
.h4a{height:87.298500px;}
.h49{height:94.230000px;}
.hd{height:95.603730px;}
.h4b{height:98.280000px;}
.h40{height:105.750000px;}
.h2{height:114.510000px;}
.h38{height:117.808500px;}
.h43{height:174.508500px;}
.h4e{height:199.171500px;}
.h32{height:216.000000px;}
.h46{height:226.980000px;}
.h3f{height:260.910000px;}
.h34{height:263.070000px;}
.hc{height:263.700000px;}
.h4f{height:280.170000px;}
.h10{height:296.670000px;}
.h3e{height:323.101500px;}
.h3d{height:323.190000px;}
.h3a{height:401.850000px;}
.h44{height:476.098500px;}
.h33{height:479.070000px;}
.h0{height:1262.880000px;}
.h1a{height:1262.970000px;}
.h1{height:1263.000000px;}
.wd{width:26.190000px;}
.wc{width:26.280000px;}
.w6{width:97.500000px;}
.w4{width:140.070000px;}
.w2{width:156.090000px;}
.w9{width:174.690000px;}
.w15{width:189.000000px;}
.w1c{width:189.090000px;}
.w14{width:217.980000px;}
.w13{width:218.070000px;}
.w12{width:218.790000px;}
.w19{width:274.231500px;}
.wf{width:291.060000px;}
.w18{width:317.070000px;}
.w16{width:318.600000px;}
.w1e{width:319.500000px;}
.wb{width:332.460000px;}
.w11{width:335.700000px;}
.w17{width:337.770000px;}
.we{width:363.060000px;}
.w5{width:367.860000px;}
.w7{width:410.700000px;}
.w1d{width:414.540000px;}
.w1b{width:465.750000px;}
.w3{width:524.400000px;}
.w1a{width:637.920000px;}
.w10{width:654.840000px;}
.w8{width:892.979987px;}
.w0{width:892.980000px;}
.wa{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.130000px;}
.x23{left:11.880000px;}
.x9{left:21.600000px;}
.x3{left:30.090000px;}
.x10{left:63.450000px;}
.xb{left:79.470000px;}
.xd{left:103.710000px;}
.x1{left:106.290000px;}
.xe{left:109.200000px;}
.x2{left:112.980000px;}
.x19{left:119.070000px;}
.x12{left:123.300000px;}
.x2a{left:127.440000px;}
.x2b{left:129.240000px;}
.x1e{left:133.470000px;}
.x7{left:135.030000px;}
.x1c{left:140.400000px;}
.x28{left:141.750000px;}
.x27{left:144.540000px;}
.xa{left:147.990000px;}
.x2e{left:171.540000px;}
.x37{left:175.410000px;}
.x15{left:177.570000px;}
.x49{left:185.850000px;}
.x4c{left:200.250000px;}
.x3e{left:205.200000px;}
.x4d{left:208.260000px;}
.x17{left:220.500000px;}
.x34{left:224.460000px;}
.x35{left:232.920000px;}
.x3c{left:235.260000px;}
.x3b{left:236.610000px;}
.x16{left:238.140000px;}
.x3f{left:239.670000px;}
.x20{left:247.860000px;}
.x41{left:256.770000px;}
.x14{left:258.570000px;}
.x4f{left:259.920000px;}
.x5{left:262.380000px;}
.x29{left:264.960000px;}
.x40{left:267.570000px;}
.x6{left:270.480000px;}
.x33{left:276.300000px;}
.x21{left:280.440000px;}
.x26{left:289.530000px;}
.x2c{left:306.180000px;}
.x51{left:319.500000px;}
.x39{left:321.840000px;}
.x2f{left:337.860000px;}
.x3a{left:343.350000px;}
.x18{left:345.062610px;}
.x4e{left:353.430000px;}
.x1b{left:356.400000px;}
.x4a{left:359.370000px;}
.x24{left:362.250000px;}
.xc{left:367.980000px;}
.x1d{left:376.380000px;}
.x53{left:384.860610px;}
.x54{left:387.540000px;}
.x42{left:394.650000px;}
.x8{left:410.820000px;}
.x4b{left:414.540000px;}
.x1a{left:446.493600px;}
.x13{left:447.930000px;}
.x50{left:454.410000px;}
.x38{left:456.840000px;}
.x46{left:465.750000px;}
.x43{left:480.886560px;}
.x25{left:482.130000px;}
.x44{left:499.680000px;}
.x45{left:507.780000px;}
.x3d{left:511.920000px;}
.x31{left:541.170000px;}
.x30{left:555.930000px;}
.x47{left:584.820000px;}
.xf{left:626.760000px;}
.x48{left:646.020000px;}
.x11{left:647.280000px;}
.x32{left:731.440260px;}
.x22{left:735.120000px;}
.x2d{left:747.090000px;}
.x52{left:751.320000px;}
.x36{left:769.590000px;}
.x1f{left:792.720000px;}
@media print{
.v5{vertical-align:-21.440000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.560000pt;}
.v6{vertical-align:15.984000pt;}
.v2{vertical-align:18.557760pt;}
.v3{vertical-align:21.440000pt;}
.ls51{letter-spacing:-2.986560pt;}
.ls64{letter-spacing:-2.693760pt;}
.ls65{letter-spacing:-2.342400pt;}
.ls79{letter-spacing:-2.049600pt;}
.ls7a{letter-spacing:-1.481464pt;}
.ls35{letter-spacing:-1.442880pt;}
.ls5b{letter-spacing:-1.422720pt;}
.ls48{letter-spacing:-1.405440pt;}
.ls5a{letter-spacing:-1.385280pt;}
.ls11{letter-spacing:-1.312000pt;}
.ls5d{letter-spacing:-1.288320pt;}
.ls32{letter-spacing:-1.282560pt;}
.ls33{letter-spacing:-1.229120pt;}
.ls34{letter-spacing:-1.175680pt;}
.ls10{letter-spacing:-1.141333pt;}
.lsf{letter-spacing:-1.136000pt;}
.ls57{letter-spacing:-1.112640pt;}
.ls58{letter-spacing:-1.054080pt;}
.ls56{letter-spacing:-0.995520pt;}
.ls12{letter-spacing:-0.992000pt;}
.ls5c{letter-spacing:-0.936960pt;}
.ls59{letter-spacing:-0.878400pt;}
.ls7c{letter-spacing:-0.802460pt;}
.ls2e{letter-spacing:-0.801600pt;}
.ls40{letter-spacing:-0.679004pt;}
.ls2d{letter-spacing:-0.587840pt;}
.lsb{letter-spacing:-0.497067pt;}
.ls9b{letter-spacing:-0.480960pt;}
.ls9c{letter-spacing:-0.374080pt;}
.ls9{letter-spacing:-0.370667pt;}
.lsa{letter-spacing:-0.354133pt;}
.ls5f{letter-spacing:-0.336000pt;}
.ls31{letter-spacing:-0.320640pt;}
.ls30{letter-spacing:-0.267200pt;}
.ls7b{letter-spacing:-0.246911pt;}
.ls49{letter-spacing:-0.240000pt;}
.ls2f{letter-spacing:-0.213760pt;}
.ls2b{letter-spacing:-0.160320pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls21{letter-spacing:-0.149760pt;}
.ls4a{letter-spacing:-0.144000pt;}
.ls23{letter-spacing:-0.127680pt;}
.ls53{letter-spacing:-0.123455pt;}
.ls36{letter-spacing:-0.117120pt;}
.ls22{letter-spacing:-0.112320pt;}
.ls9a{letter-spacing:-0.106880pt;}
.ls38{letter-spacing:-0.096000pt;}
.ls26{letter-spacing:-0.069440pt;}
.ls7f{letter-spacing:-0.061728pt;}
.ls27{letter-spacing:-0.058560pt;}
.ls2c{letter-spacing:-0.053440pt;}
.ls37{letter-spacing:-0.048000pt;}
.lsd{letter-spacing:-0.033920pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls95{letter-spacing:0.005344pt;}
.ls6d{letter-spacing:0.011712pt;}
.ls9e{letter-spacing:0.019200pt;}
.ls87{letter-spacing:0.029280pt;}
.ls0{letter-spacing:0.032000pt;}
.ls63{letter-spacing:0.033600pt;}
.lsc{letter-spacing:0.044800pt;}
.ls6a{letter-spacing:0.046400pt;}
.ls1c{letter-spacing:0.048000pt;}
.ls3d{letter-spacing:0.050560pt;}
.ls29{letter-spacing:0.053440pt;}
.ls3c{letter-spacing:0.058560pt;}
.ls78{letter-spacing:0.062400pt;}
.ls16{letter-spacing:0.069120pt;}
.ls9f{letter-spacing:0.069472pt;}
.ls8e{letter-spacing:0.070080pt;}
.ls8c{letter-spacing:0.070272pt;}
.ls50{letter-spacing:0.072000pt;}
.ls20{letter-spacing:0.074880pt;}
.ls46{letter-spacing:0.078080pt;}
.ls24{letter-spacing:0.085120pt;}
.ls8d{letter-spacing:0.087840pt;}
.lse{letter-spacing:0.092800pt;}
.ls3{letter-spacing:0.093440pt;}
.ls1e{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.096640pt;}
.ls39{letter-spacing:0.101120pt;}
.ls61{letter-spacing:0.105920pt;}
.ls28{letter-spacing:0.106880pt;}
.ls6b{letter-spacing:0.107840pt;}
.ls86{letter-spacing:0.111360pt;}
.ls14{letter-spacing:0.112320pt;}
.ls47{letter-spacing:0.117120pt;}
.ls4{letter-spacing:0.120960pt;}
.ls5{letter-spacing:0.121067pt;}
.ls6c{letter-spacing:0.121600pt;}
.ls13{letter-spacing:0.138528pt;}
.ls5e{letter-spacing:0.144000pt;}
.ls2a{letter-spacing:0.160320pt;}
.ls25{letter-spacing:0.170240pt;}
.ls3e{letter-spacing:0.175680pt;}
.ls54{letter-spacing:0.187200pt;}
.ls68{letter-spacing:0.187392pt;}
.ls4d{letter-spacing:0.205440pt;}
.ls4c{letter-spacing:0.234240pt;}
.ls75{letter-spacing:0.278720pt;}
.ls3f{letter-spacing:0.292800pt;}
.ls7e{letter-spacing:0.337984pt;}
.ls55{letter-spacing:0.351360pt;}
.ls69{letter-spacing:0.400000pt;}
.ls83{letter-spacing:0.409920pt;}
.ls52{letter-spacing:0.527040pt;}
.ls4b{letter-spacing:0.562176pt;}
.ls1{letter-spacing:0.733440pt;}
.ls77{letter-spacing:0.819840pt;}
.ls82{letter-spacing:0.845440pt;}
.ls2{letter-spacing:1.053440pt;}
.ls62{letter-spacing:1.171200pt;}
.ls71{letter-spacing:1.464000pt;}
.ls19{letter-spacing:1.656640pt;}
.ls88{letter-spacing:1.684800pt;}
.ls4f{letter-spacing:1.815360pt;}
.ls76{letter-spacing:1.844640pt;}
.ls8b{letter-spacing:2.108160pt;}
.ls67{letter-spacing:2.459520pt;}
.ls8f{letter-spacing:2.559072pt;}
.ls18{letter-spacing:2.738560pt;}
.ls4e{letter-spacing:2.752320pt;}
.ls66{letter-spacing:2.787456pt;}
.ls94{letter-spacing:2.939200pt;}
.ls60{letter-spacing:3.396480pt;}
.ls84{letter-spacing:3.405440pt;}
.ls9d{letter-spacing:3.666880pt;}
.ls43{letter-spacing:3.747840pt;}
.ls85{letter-spacing:4.040640pt;}
.ls73{letter-spacing:4.392000pt;}
.ls74{letter-spacing:4.684800pt;}
.ls97{letter-spacing:5.270400pt;}
.ls98{letter-spacing:5.328960pt;}
.ls91{letter-spacing:5.387520pt;}
.ls99{letter-spacing:5.446080pt;}
.ls1b{letter-spacing:5.621760pt;}
.ls1a{letter-spacing:5.824960pt;}
.ls6f{letter-spacing:6.617280pt;}
.ls70{letter-spacing:6.640704pt;}
.ls3a{letter-spacing:6.910080pt;}
.ls92{letter-spacing:7.107520pt;}
.ls41{letter-spacing:7.261440pt;}
.ls7d{letter-spacing:7.554240pt;}
.ls80{letter-spacing:8.842560pt;}
.ls96{letter-spacing:9.352000pt;}
.ls72{letter-spacing:10.130880pt;}
.ls81{letter-spacing:11.067840pt;}
.ls89{letter-spacing:11.419200pt;}
.ls1f{letter-spacing:11.568000pt;}
.ls17{letter-spacing:14.288640pt;}
.ls3b{letter-spacing:14.932800pt;}
.ls90{letter-spacing:15.225600pt;}
.ls6e{letter-spacing:17.802240pt;}
.ls8a{letter-spacing:19.090560pt;}
.ls1d{letter-spacing:29.808000pt;}
.ls93{letter-spacing:40.400640pt;}
.ls42{letter-spacing:47.550720pt;}
.ls45{letter-spacing:77.299200pt;}
.ls44{letter-spacing:77.325440pt;}
.ws70{word-spacing:-58.560000pt;}
.wsac{word-spacing:-18.680640pt;}
.wsab{word-spacing:-18.563520pt;}
.wsaa{word-spacing:-18.504960pt;}
.ws2{word-spacing:-16.850560pt;}
.ws1{word-spacing:-14.464000pt;}
.ws8b{word-spacing:-13.888723pt;}
.ws7c{word-spacing:-13.826996pt;}
.ws4e{word-spacing:-13.585920pt;}
.ws97{word-spacing:-13.468800pt;}
.ws38{word-spacing:-13.410240pt;}
.ws43{word-spacing:-13.351680pt;}
.ws4c{word-spacing:-13.293120pt;}
.ws8c{word-spacing:-13.271447pt;}
.ws39{word-spacing:-13.234560pt;}
.ws42{word-spacing:-13.176000pt;}
.ws7d{word-spacing:-13.147992pt;}
.ws3a{word-spacing:-13.117440pt;}
.ws53{word-spacing:-12.297600pt;}
.ws50{word-spacing:-12.239040pt;}
.ws17{word-spacing:-12.237760pt;}
.ws12{word-spacing:-12.184320pt;}
.ws4f{word-spacing:-12.180480pt;}
.ws37{word-spacing:-12.130880pt;}
.ws13{word-spacing:-12.077440pt;}
.ws15{word-spacing:-12.024000pt;}
.wsad{word-spacing:-11.970560pt;}
.ws14{word-spacing:-11.917120pt;}
.ws19{word-spacing:-11.863680pt;}
.wsa9{word-spacing:-11.810240pt;}
.ws18{word-spacing:-11.756800pt;}
.wsaf{word-spacing:-11.703360pt;}
.wsae{word-spacing:-11.596480pt;}
.ws5{word-spacing:-11.426560pt;}
.ws8{word-spacing:-11.392640pt;}
.ws16{word-spacing:-11.275840pt;}
.ws7{word-spacing:-11.072427pt;}
.ws6{word-spacing:-11.055893pt;}
.wsa0{word-spacing:-10.992000pt;}
.ws1a{word-spacing:-10.901760pt;}
.ws56{word-spacing:-10.896000pt;}
.ws3{word-spacing:-10.848000pt;}
.ws4{word-spacing:-10.832000pt;}
.ws1c{word-spacing:-10.800000pt;}
.ws1d{word-spacing:-10.752000pt;}
.wsa1{word-spacing:-10.704000pt;}
.ws1b{word-spacing:-10.634560pt;}
.ws9f{word-spacing:-10.608000pt;}
.ws54{word-spacing:-10.512000pt;}
.wsa{word-spacing:-10.434560pt;}
.ws9{word-spacing:-10.114560pt;}
.ws11{word-spacing:-9.788800pt;}
.ws0{word-spacing:-9.618560pt;}
.ws10{word-spacing:-9.490880pt;}
.ws4d{word-spacing:-8.648640pt;}
.wsd{word-spacing:-8.536320pt;}
.wsc{word-spacing:-8.461440pt;}
.wsf{word-spacing:-8.349120pt;}
.wse{word-spacing:-8.311680pt;}
.ws55{word-spacing:-7.879680pt;}
.ws40{word-spacing:-7.261440pt;}
.ws51{word-spacing:-7.076160pt;}
.ws52{word-spacing:-7.038720pt;}
.ws8d{word-spacing:-3.337920pt;}
.ws58{word-spacing:-2.869440pt;}
.wsa8{word-spacing:-2.459520pt;}
.ws92{word-spacing:-2.400960pt;}
.ws91{word-spacing:-2.283840pt;}
.ws62{word-spacing:-1.991040pt;}
.ws61{word-spacing:-1.873920pt;}
.ws27{word-spacing:-1.656640pt;}
.ws82{word-spacing:-1.464000pt;}
.ws86{word-spacing:-1.405440pt;}
.ws87{word-spacing:-1.288320pt;}
.ws2a{word-spacing:-1.229120pt;}
.ws77{word-spacing:-1.054080pt;}
.ws88{word-spacing:-0.816000pt;}
.ws7b{word-spacing:-0.768000pt;}
.ws95{word-spacing:-0.761280pt;}
.ws6d{word-spacing:-0.644160pt;}
.ws59{word-spacing:-0.527040pt;}
.ws5c{word-spacing:-0.468480pt;}
.ws5d{word-spacing:-0.409920pt;}
.ws3d{word-spacing:-0.292800pt;}
.wsb0{word-spacing:-0.267200pt;}
.wsa2{word-spacing:-0.234240pt;}
.ws1f{word-spacing:-0.224640pt;}
.ws46{word-spacing:-0.175680pt;}
.ws26{word-spacing:-0.160320pt;}
.ws69{word-spacing:-0.144000pt;}
.ws5e{word-spacing:-0.117120pt;}
.ws45{word-spacing:-0.112320pt;}
.ws2b{word-spacing:-0.106880pt;}
.ws3b{word-spacing:-0.101120pt;}
.ws34{word-spacing:-0.096000pt;}
.ws21{word-spacing:-0.085120pt;}
.ws1e{word-spacing:-0.074880pt;}
.ws24{word-spacing:-0.069120pt;}
.ws23{word-spacing:-0.058560pt;}
.ws28{word-spacing:-0.053440pt;}
.ws3c{word-spacing:-0.050560pt;}
.ws36{word-spacing:-0.048000pt;}
.ws9c{word-spacing:-0.037440pt;}
.wsb{word-spacing:0.000000pt;}
.ws35{word-spacing:0.048000pt;}
.wsb4{word-spacing:0.053440pt;}
.ws41{word-spacing:0.058560pt;}
.ws94{word-spacing:0.061728pt;}
.ws22{word-spacing:0.069440pt;}
.ws89{word-spacing:0.096000pt;}
.ws44{word-spacing:0.101120pt;}
.wsb3{word-spacing:0.106880pt;}
.ws20{word-spacing:0.112320pt;}
.ws32{word-spacing:0.117120pt;}
.ws5a{word-spacing:0.123455pt;}
.wsb9{word-spacing:0.160320pt;}
.ws4b{word-spacing:0.192000pt;}
.ws2d{word-spacing:0.213760pt;}
.ws9a{word-spacing:0.234240pt;}
.ws4a{word-spacing:0.240000pt;}
.ws81{word-spacing:0.246911pt;}
.ws2e{word-spacing:0.267200pt;}
.ws8a{word-spacing:0.336000pt;}
.wsb8{word-spacing:0.374080pt;}
.wsa3{word-spacing:0.384000pt;}
.ws73{word-spacing:0.468480pt;}
.ws85{word-spacing:0.527040pt;}
.ws83{word-spacing:0.585600pt;}
.ws2c{word-spacing:0.587840pt;}
.ws3e{word-spacing:0.679004pt;}
.ws9d{word-spacing:0.761280pt;}
.ws64{word-spacing:0.878400pt;}
.ws9e{word-spacing:0.936960pt;}
.ws60{word-spacing:0.995520pt;}
.ws7a{word-spacing:1.008000pt;}
.ws78{word-spacing:1.054080pt;}
.ws67{word-spacing:1.112640pt;}
.wsa6{word-spacing:1.171200pt;}
.ws31{word-spacing:1.175680pt;}
.ws30{word-spacing:1.229120pt;}
.ws99{word-spacing:1.229760pt;}
.ws2f{word-spacing:1.282560pt;}
.ws68{word-spacing:1.288320pt;}
.ws98{word-spacing:1.358009pt;}
.ws48{word-spacing:1.405440pt;}
.ws8f{word-spacing:1.481464pt;}
.ws6f{word-spacing:1.522560pt;}
.ws7e{word-spacing:2.049600pt;}
.ws5f{word-spacing:2.225280pt;}
.ws6c{word-spacing:2.342400pt;}
.ws71{word-spacing:2.459520pt;}
.ws65{word-spacing:2.518080pt;}
.wsa7{word-spacing:2.576640pt;}
.ws6a{word-spacing:2.693760pt;}
.ws66{word-spacing:2.810880pt;}
.ws5b{word-spacing:2.869440pt;}
.ws25{word-spacing:2.885760pt;}
.ws57{word-spacing:2.986560pt;}
.ws96{word-spacing:3.103680pt;}
.wsbd{word-spacing:3.206400pt;}
.ws6b{word-spacing:3.220800pt;}
.ws9b{word-spacing:3.337920pt;}
.wsbb{word-spacing:3.420160pt;}
.wsbc{word-spacing:3.473600pt;}
.ws49{word-spacing:3.513600pt;}
.ws29{word-spacing:3.527040pt;}
.wsa5{word-spacing:4.157760pt;}
.ws72{word-spacing:4.333440pt;}
.ws63{word-spacing:5.036160pt;}
.wsba{word-spacing:5.076800pt;}
.ws75{word-spacing:5.563200pt;}
.ws76{word-spacing:6.090240pt;}
.ws79{word-spacing:6.617280pt;}
.ws84{word-spacing:6.734400pt;}
.ws33{word-spacing:7.320000pt;}
.wsb7{word-spacing:7.321280pt;}
.wsb6{word-spacing:7.374720pt;}
.ws90{word-spacing:7.612800pt;}
.wsb1{word-spacing:7.641920pt;}
.wsb5{word-spacing:7.695360pt;}
.ws47{word-spacing:8.491200pt;}
.wsb2{word-spacing:8.550400pt;}
.ws93{word-spacing:9.428160pt;}
.wsa4{word-spacing:12.707520pt;}
.ws3f{word-spacing:15.049920pt;}
.ws74{word-spacing:17.743680pt;}
.ws80{word-spacing:18.270720pt;}
.ws7f{word-spacing:20.246672pt;}
.ws6e{word-spacing:23.482560pt;}
.ws8e{word-spacing:23.658240pt;}
._17{margin-left:-7.231040pt;}
._18{margin-left:-6.266752pt;}
._e{margin-left:-4.136256pt;}
._d{margin-left:-3.145184pt;}
._6{margin-left:-2.215147pt;}
._1{margin-left:-0.953493pt;}
._0{width:0.895360pt;}
._5{width:2.003200pt;}
._9{width:3.149440pt;}
._b{width:4.100981pt;}
._4{width:5.273813pt;}
._3{width:6.572800pt;}
._10{width:7.801408pt;}
._7{width:8.955093pt;}
._8{width:9.909973pt;}
._f{width:11.624160pt;}
._16{width:14.850592pt;}
._11{width:15.752640pt;}
._21{width:16.842464pt;}
._1e{width:18.079328pt;}
._c{width:19.217024pt;}
._a{width:21.084341pt;}
._1f{width:23.494880pt;}
._2{width:29.003840pt;}
._13{width:29.980800pt;}
._14{width:33.568640pt;}
._15{width:35.040000pt;}
._12{width:36.864000pt;}
._23{width:40.015872pt;}
._20{width:43.152864pt;}
._1b{width:48.136320pt;}
._1a{width:51.281600pt;}
._1c{width:57.740160pt;}
._1d{width:76.596480pt;}
._19{width:77.650560pt;}
._22{width:754.779840pt;}
.fsa{font-size:2.560000pt;}
.fs4{font-size:5.440000pt;}
.fsf{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs2{font-size:37.440000pt;}
.fs1{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fsd{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fse{font-size:61.727660pt;}
.fs5{font-size:64.000000pt;}
.fsb{font-size:69.440000pt;}
.fs8{font-size:74.560000pt;}
.fs7{font-size:80.000000pt;}
.fs6{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:2.879867pt;}
.y3e{bottom:2.880000pt;}
.ya{bottom:2.960000pt;}
.y87{bottom:3.040000pt;}
.yfe{bottom:3.120000pt;}
.y30{bottom:3.360000pt;}
.y37{bottom:3.440000pt;}
.y29{bottom:3.920000pt;}
.y7{bottom:4.960000pt;}
.y9{bottom:6.080000pt;}
.y89{bottom:7.840000pt;}
.y15{bottom:11.360000pt;}
.y9c{bottom:12.320000pt;}
.y85{bottom:12.960000pt;}
.y6a{bottom:14.080000pt;}
.ye6{bottom:14.560000pt;}
.y40{bottom:15.920000pt;}
.y4{bottom:17.040000pt;}
.y2f{bottom:18.800000pt;}
.y28{bottom:21.120000pt;}
.y26{bottom:22.320000pt;}
.y14{bottom:28.720000pt;}
.y34{bottom:31.520000pt;}
.y9a{bottom:33.200000pt;}
.yc{bottom:33.626667pt;}
.y2e{bottom:34.320000pt;}
.y27{bottom:35.760000pt;}
.y3{bottom:35.866667pt;}
.y123{bottom:43.440000pt;}
.y33{bottom:47.120000pt;}
.y32{bottom:47.680000pt;}
.y2{bottom:48.746667pt;}
.yb{bottom:49.226667pt;}
.y2d{bottom:49.760000pt;}
.y25{bottom:50.560000pt;}
.y99{bottom:51.520000pt;}
.y18c{bottom:52.320000pt;}
.y13{bottom:55.360000pt;}
.y1d7{bottom:63.600000pt;}
.y2c{bottom:65.200000pt;}
.y2b{bottom:65.840000pt;}
.y24{bottom:66.080000pt;}
.y1d2{bottom:69.760000pt;}
.y98{bottom:72.480000pt;}
.y1e3{bottom:72.560000pt;}
.y12{bottom:75.600000pt;}
.y107{bottom:77.280000pt;}
.y205{bottom:78.480000pt;}
.y121{bottom:80.000000pt;}
.y23{bottom:81.520000pt;}
.y5{bottom:88.106667pt;}
.yab{bottom:90.720000pt;}
.y96{bottom:93.360000pt;}
.y22{bottom:96.960000pt;}
.y204{bottom:99.360000pt;}
.y21{bottom:112.480000pt;}
.y94{bottom:114.320000pt;}
.y67{bottom:116.560000pt;}
.y202{bottom:120.320000pt;}
.yb5{bottom:121.680000pt;}
.y292{bottom:127.686720pt;}
.y20{bottom:127.920000pt;}
.y10f{bottom:131.449680pt;}
.y13a{bottom:132.880000pt;}
.yf9{bottom:133.200000pt;}
.y92{bottom:135.280000pt;}
.y11{bottom:135.840000pt;}
.y66{bottom:136.320000pt;}
.yb4{bottom:137.920000pt;}
.y183{bottom:141.120000pt;}
.y201{bottom:142.080000pt;}
.y1f{bottom:143.360000pt;}
.y291{bottom:146.404080pt;}
.y139{bottom:147.520000pt;}
.y65{bottom:147.524000pt;}
.y1ea{bottom:147.840000pt;}
.y17e{bottom:149.440000pt;}
.y10e{bottom:149.764320pt;}
.y20f{bottom:152.560000pt;}
.yf8{bottom:152.882480pt;}
.yb3{bottom:154.240000pt;}
.y19d{bottom:156.083920pt;}
.y90{bottom:156.240000pt;}
.y1c3{bottom:157.527200pt;}
.y10{bottom:158.640000pt;}
.y1e{bottom:158.826667pt;}
.y138{bottom:162.164000pt;}
.y290{bottom:162.409360pt;}
.y200{bottom:163.040000pt;}
.y64{bottom:167.200000pt;}
.y10d{bottom:168.005760pt;}
.y20e{bottom:168.880000pt;}
.yb2{bottom:170.480000pt;}
.y83{bottom:170.893120pt;}
.yf7{bottom:171.123920pt;}
.y17d{bottom:172.813360pt;}
.y1d{bottom:174.346667pt;}
.y19c{bottom:174.398560pt;}
.y1c2{bottom:175.841840pt;}
.y8e{bottom:177.200000pt;}
.y258{bottom:178.503520pt;}
.y63{bottom:178.720000pt;}
.y28f{bottom:181.046560pt;}
.y137{bottom:181.840000pt;}
.yb1{bottom:182.000000pt;}
.y20d{bottom:185.120000pt;}
.y10c{bottom:186.247200pt;}
.ye0{bottom:186.720000pt;}
.yf6{bottom:189.438560pt;}
.y1c{bottom:189.786667pt;}
.y17c{bottom:191.054800pt;}
.y1e9{bottom:191.523200pt;}
.y82{bottom:191.857600pt;}
.y19b{bottom:192.640000pt;}
.y62{bottom:195.931200pt;}
.y257{bottom:196.818160pt;}
.y28e{bottom:197.051840pt;}
.y8c{bottom:198.080000pt;}
.y136{bottom:198.160000pt;}
.yf{bottom:200.720000pt;}
.y20c{bottom:201.440000pt;}
.ydf{bottom:203.040000pt;}
.y10b{bottom:204.561840pt;}
.y1b{bottom:205.226667pt;}
.yf5{bottom:207.691280pt;}
.y17b{bottom:209.369440pt;}
.y1e8{bottom:209.764640pt;}
.y81{bottom:212.822080pt;}
.y20b{bottom:212.880000pt;}
.yb0{bottom:213.589920pt;}
.y19a{bottom:213.602480pt;}
.y135{bottom:214.400000pt;}
.yde{bottom:214.560000pt;}
.y256{bottom:215.059600pt;}
.y28d{bottom:215.689040pt;}
.y22e{bottom:216.001360pt;}
.y61{bottom:216.895680pt;}
.y114{bottom:217.120000pt;}
.y8a{bottom:219.040000pt;}
.y159{bottom:219.280000pt;}
.ye{bottom:220.480000pt;}
.y1a{bottom:220.746667pt;}
.y1c1{bottom:224.422080pt;}
.y134{bottom:225.920000pt;}
.yf4{bottom:226.005920pt;}
.y10a{bottom:226.800000pt;}
.yaa{bottom:227.600000pt;}
.y1e7{bottom:228.079280pt;}
.y20a{bottom:231.049280pt;}
.y17a{bottom:231.607600pt;}
.y199{bottom:231.843920pt;}
.y255{bottom:233.374240pt;}
.y80{bottom:233.698720pt;}
.y28c{bottom:234.406400pt;}
.yaf{bottom:234.554400pt;}
.y60{bottom:235.137120pt;}
.y158{bottom:235.600000pt;}
.y19{bottom:236.186667pt;}
.y22d{bottom:236.965840pt;}
.ydd{bottom:240.007840pt;}
.y17{bottom:240.826667pt;}
.y1e2{bottom:242.080000pt;}
.y1c0{bottom:242.663520pt;}
.yf3{bottom:244.247360pt;}
.y157{bottom:246.804000pt;}
.y106{bottom:248.800000pt;}
.y209{bottom:249.363920pt;}
.y198{bottom:250.158560pt;}
.y254{bottom:251.615680pt;}
.y18{bottom:251.626667pt;}
.y1e6{bottom:251.835520pt;}
.y7f{bottom:252.013360pt;}
.y28b{bottom:253.043600pt;}
.y5f{bottom:253.451760pt;}
.yae{bottom:255.518880pt;}
.y179{bottom:257.930320pt;}
.ydc{bottom:258.249280pt;}
.y1bf{bottom:260.978160pt;}
.y35{bottom:261.786667pt;}
.yf2{bottom:262.562000pt;}
.y208{bottom:267.605360pt;}
.y156{bottom:268.400000pt;}
.y28a{bottom:269.048880pt;}
.y253{bottom:269.930320pt;}
.y7e{bottom:270.254800pt;}
.y5e{bottom:271.693200pt;}
.y1e5{bottom:272.803360pt;}
.y31{bottom:275.786667pt;}
.y178{bottom:276.171760pt;}
.yad{bottom:276.483360pt;}
.ydb{bottom:276.563920pt;}
.y133{bottom:276.875520pt;}
.y22c{bottom:278.806960pt;}
.y1be{bottom:279.219600pt;}
.y155{bottom:280.000000pt;}
.y109{bottom:280.560000pt;}
.yf1{bottom:284.800160pt;}
.y207{bottom:285.920000pt;}
.y289{bottom:287.686080pt;}
.y252{bottom:288.171760pt;}
.y7d{bottom:288.569440pt;}
.y197{bottom:289.358560pt;}
.y5d{bottom:290.007840pt;}
.y1e4{bottom:293.680000pt;}
.y177{bottom:294.413200pt;}
.yda{bottom:294.805360pt;}
.yac{bottom:297.360000pt;}
.y1bd{bottom:297.534240pt;}
.y132{bottom:297.842480pt;}
.y1ff{bottom:299.920000pt;}
.y22b{bottom:301.045120pt;}
.y288{bottom:306.403440pt;}
.y251{bottom:306.413200pt;}
.y7c{bottom:306.810880pt;}
.y196{bottom:307.600000pt;}
.y108{bottom:307.760000pt;}
.y154{bottom:307.772640pt;}
.y5c{bottom:308.249280pt;}
.yf0{bottom:311.122880pt;}
.y176{bottom:312.727840pt;}
.yd9{bottom:313.123920pt;}
.y1e1{bottom:314.640000pt;}
.y1bc{bottom:315.775680pt;}
.y131{bottom:316.083920pt;}
.y250{bottom:324.727840pt;}
.y287{bottom:325.040640pt;}
.y7b{bottom:325.125520pt;}
.y153{bottom:326.087280pt;}
.y5b{bottom:326.563920pt;}
.y22a{bottom:327.367840pt;}
.y195{bottom:328.565360pt;}
.yef{bottom:329.364320pt;}
.y175{bottom:330.969280pt;}
.yd8{bottom:331.365360pt;}
.y1bb{bottom:334.090320pt;}
.y130{bottom:334.398560pt;}
.y1e0{bottom:336.393520pt;}
.ya9{bottom:339.295680pt;}
.y24f{bottom:342.969280pt;}
.y7a{bottom:343.366960pt;}
.y286{bottom:343.677840pt;}
.y105{bottom:344.320000pt;}
.y152{bottom:344.328720pt;}
.y5a{bottom:344.805360pt;}
.y229{bottom:345.682480pt;}
.y194{bottom:346.878560pt;}
.yee{bottom:347.678960pt;}
.y174{bottom:349.283920pt;}
.yd7{bottom:349.680000pt;}
.y2a{bottom:350.906667pt;}
.y1ba{bottom:352.331760pt;}
.y12f{bottom:352.643360pt;}
.y1df{bottom:357.358000pt;}
.ya8{bottom:357.537120pt;}
.y24e{bottom:361.283920pt;}
.y79{bottom:361.681600pt;}
.y285{bottom:362.395200pt;}
.y151{bottom:362.643360pt;}
.y59{bottom:363.120000pt;}
.y228{bottom:363.923920pt;}
.y193{bottom:365.129280pt;}
.y104{bottom:365.265440pt;}
.yed{bottom:365.920400pt;}
.y173{bottom:367.525360pt;}
.yd6{bottom:370.641040pt;}
.y1b9{bottom:370.646400pt;}
.y12e{bottom:370.958000pt;}
.ya7{bottom:375.851760pt;}
.y1de{bottom:378.234640pt;}
.y206{bottom:378.400000pt;}
.y24d{bottom:379.525360pt;}
.y78{bottom:379.923040pt;}
.y284{bottom:381.032400pt;}
.y227{bottom:382.238560pt;}
.y192{bottom:383.443920pt;}
.y150{bottom:383.529280pt;}
.yec{bottom:384.235040pt;}
.y172{bottom:385.843920pt;}
.y103{bottom:386.229920pt;}
.yd5{bottom:388.882480pt;}
.y1b8{bottom:388.887840pt;}
.y12d{bottom:389.199440pt;}
.ya6{bottom:394.093200pt;}
.y24c{bottom:397.838560pt;}
.y1dd{bottom:399.199120pt;}
.y58{bottom:399.569840pt;}
.y283{bottom:399.669600pt;}
.y226{bottom:400.520080pt;}
.y191{bottom:401.685360pt;}
.y14f{bottom:401.843920pt;}
.y77{bottom:402.161200pt;}
.yeb{bottom:402.476480pt;}
.y171{bottom:404.085360pt;}
.yd4{bottom:407.123920pt;}
.y1b7{bottom:407.129280pt;}
.y102{bottom:407.194400pt;}
.y12c{bottom:410.163920pt;}
.ya5{bottom:412.407840pt;}
.y282{bottom:415.674880pt;}
.y24b{bottom:416.096960pt;}
.y225{bottom:418.834720pt;}
.y190{bottom:420.000000pt;}
.y14e{bottom:420.085360pt;}
.y203{bottom:420.240000pt;}
.yea{bottom:420.717920pt;}
.y1dc{bottom:421.437280pt;}
.y170{bottom:422.400000pt;}
.yd3{bottom:425.438560pt;}
.y1b6{bottom:425.443920pt;}
.y57{bottom:426.850960pt;}
.y101{bottom:428.158880pt;}
.y16{bottom:428.186667pt;}
.y12b{bottom:428.405360pt;}
.y76{bottom:428.483920pt;}
.ya4{bottom:430.649280pt;}
.y281{bottom:434.392240pt;}
.y24a{bottom:434.411600pt;}
.y224{bottom:437.076160pt;}
.y14d{bottom:438.408880pt;}
.ye9{bottom:439.032560pt;}
.y18f{bottom:440.880000pt;}
.y16f{bottom:443.291120pt;}
.y56{bottom:443.417360pt;}
.yd2{bottom:443.685360pt;}
.y75{bottom:446.725360pt;}
.y12a{bottom:446.727840pt;}
.y1db{bottom:447.765360pt;}
.ya3{bottom:448.963920pt;}
.y100{bottom:449.035520pt;}
.y280{bottom:450.397520pt;}
.y249{bottom:452.653040pt;}
.y18a{bottom:454.880000pt;}
.y223{bottom:455.317600pt;}
.y14c{bottom:456.650320pt;}
.ye8{bottom:457.274000pt;}
.y55{bottom:460.063920pt;}
.y16e{bottom:461.605760pt;}
.y1b5{bottom:462.000000pt;}
.yd1{bottom:462.003920pt;}
.y129{bottom:464.969280pt;}
.y74{bottom:465.043920pt;}
.y1da{bottom:466.080000pt;}
.y27f{bottom:466.402800pt;}
.ya2{bottom:467.205360pt;}
.yff{bottom:470.000000pt;}
.y248{bottom:473.617520pt;}
.y222{bottom:473.632240pt;}
.y14b{bottom:474.964960pt;}
.y54{bottom:476.710480pt;}
.ye7{bottom:479.600000pt;}
.y16d{bottom:479.847200pt;}
.y1d6{bottom:480.080000pt;}
.yd0{bottom:480.245360pt;}
.y1b4{bottom:482.970320pt;}
.y128{bottom:483.283920pt;}
.y73{bottom:483.285360pt;}
.y1fe{bottom:483.833520pt;}
.y27e{bottom:485.040000pt;}
.ya1{bottom:485.523920pt;}
.y1d0{bottom:486.554800pt;}
.y247{bottom:491.858960pt;}
.y221{bottom:491.873680pt;}
.y14a{bottom:493.206400pt;}
.y53{bottom:493.276880pt;}
.y263{bottom:496.081920pt;}
.y16c{bottom:498.161840pt;}
.ycf{bottom:498.571680pt;}
.y27d{bottom:501.028400pt;}
.y1b3{bottom:501.211760pt;}
.y127{bottom:501.525360pt;}
.y72{bottom:501.600000pt;}
.ya0{bottom:503.765360pt;}
.y1fd{bottom:504.798000pt;}
.y1d9{bottom:507.118560pt;}
.y52{bottom:509.923440pt;}
.y246{bottom:510.173600pt;}
.y220{bottom:510.188320pt;}
.y149{bottom:511.521040pt;}
.yce{bottom:516.813120pt;}
.y262{bottom:517.046400pt;}
.y1b2{bottom:519.526400pt;}
.y27c{bottom:519.665600pt;}
.y126{bottom:519.840000pt;}
.y16b{bottom:520.400000pt;}
.y9f{bottom:522.078560pt;}
.y71{bottom:522.565760pt;}
.y1d8{bottom:525.360000pt;}
.y1fc{bottom:525.762480pt;}
.y51{bottom:526.570000pt;}
.y245{bottom:528.415040pt;}
.y21f{bottom:528.429760pt;}
.ye4{bottom:528.880000pt;}
.y148{bottom:529.762480pt;}
.ye5{bottom:533.280000pt;}
.y120{bottom:533.840000pt;}
.ycd{bottom:535.127760pt;}
.y261{bottom:535.287840pt;}
.y27b{bottom:535.670880pt;}
.yfd{bottom:536.000000pt;}
.y1b1{bottom:537.767840pt;}
.y9e{bottom:540.317280pt;}
.y125{bottom:540.725360pt;}
.y70{bottom:540.807200pt;}
.y50{bottom:543.136400pt;}
.y11f{bottom:545.192000pt;}
.y1fb{bottom:546.726960pt;}
.y244{bottom:546.729680pt;}
.y16a{bottom:546.730320pt;}
.y21e{bottom:546.744400pt;}
.y147{bottom:548.003920pt;}
.ycc{bottom:553.369200pt;}
.y260{bottom:553.529280pt;}
.y88{bottom:554.320000pt;}
.y27a{bottom:554.388240pt;}
.y1b0{bottom:556.009280pt;}
.y1d1{bottom:557.680000pt;}
.y124{bottom:559.040000pt;}
.y6f{bottom:559.121840pt;}
.y4f{bottom:559.782960pt;}
.y1d5{bottom:564.551040pt;}
.y1fa{bottom:564.968400pt;}
.y243{bottom:564.971120pt;}
.y169{bottom:564.971760pt;}
.y21d{bottom:564.985840pt;}
.y146{bottom:566.318560pt;}
.y9d{bottom:566.640000pt;}
.y279{bottom:570.393520pt;}
.ycb{bottom:571.683840pt;}
.y25f{bottom:571.843920pt;}
.y1af{bottom:574.323920pt;}
.y6e{bottom:581.360000pt;}
.y1f9{bottom:583.283040pt;}
.y242{bottom:583.285760pt;}
.y168{bottom:583.286400pt;}
.y21c{bottom:583.300480pt;}
.y145{bottom:584.560000pt;}
.y1d4{bottom:585.515520pt;}
.y9b{bottom:587.520000pt;}
.y278{bottom:589.030720pt;}
.yca{bottom:589.925280pt;}
.y25e{bottom:590.085360pt;}
.y1ae{bottom:592.565360pt;}
.y4e{bottom:595.066720pt;}
.y122{bottom:595.600000pt;}
.y1f8{bottom:601.524480pt;}
.y241{bottom:601.527200pt;}
.y167{bottom:601.527840pt;}
.y21b{bottom:601.541920pt;}
.y144{bottom:605.523920pt;}
.y1d3{bottom:606.480000pt;}
.y277{bottom:607.667920pt;}
.yc9{bottom:608.166720pt;}
.y25d{bottom:608.400000pt;}
.y6d{bottom:609.920000pt;}
.y1ad{bottom:610.880000pt;}
.y1f7{bottom:619.839120pt;}
.y240{bottom:619.841840pt;}
.y166{bottom:619.842480pt;}
.y21a{bottom:619.856560pt;}
.y4d{bottom:622.347840pt;}
.y276{bottom:623.673200pt;}
.y143{bottom:623.838560pt;}
.y6c{bottom:625.760000pt;}
.y113{bottom:627.840000pt;}
.yc8{bottom:629.131200pt;}
.y1ac{bottom:631.842480pt;}
.y11e{bottom:634.788800pt;}
.y25c{bottom:636.953440pt;}
.y165{bottom:638.083920pt;}
.y219{bottom:638.098000pt;}
.y4c{bottom:638.994400pt;}
.y1f6{bottom:642.077280pt;}
.y23f{bottom:642.080000pt;}
.y142{bottom:642.085360pt;}
.y275{bottom:642.390560pt;}
.yc7{bottom:647.445840pt;}
.y97{bottom:647.680000pt;}
.y1cf{bottom:648.396240pt;}
.y1ab{bottom:650.083920pt;}
.y25b{bottom:653.600000pt;}
.y4b{bottom:655.640960pt;}
.y11d{bottom:655.753280pt;}
.y164{bottom:656.398560pt;}
.y218{bottom:656.412640pt;}
.y18b{bottom:656.640000pt;}
.y274{bottom:658.395840pt;}
.y141{bottom:660.400000pt;}
.yc6{bottom:665.687280pt;}
.y1aa{bottom:668.398560pt;}
.y23e{bottom:668.420640pt;}
.y95{bottom:668.640000pt;}
.y1ce{bottom:669.272880pt;}
.y25a{bottom:669.360000pt;}
.y4a{bottom:672.207360pt;}
.y18e{bottom:672.398560pt;}
.y163{bottom:674.640000pt;}
.y11c{bottom:676.717760pt;}
.y273{bottom:677.033040pt;}
.y217{bottom:677.289280pt;}
.y140{bottom:681.285360pt;}
.yc5{bottom:684.001920pt;}
.y1f5{bottom:686.638000pt;}
.y1a9{bottom:686.640000pt;}
.y23d{bottom:686.662080pt;}
.y49{bottom:688.853920pt;}
.y93{bottom:689.600000pt;}
.y1cd{bottom:690.237360pt;}
.y18d{bottom:690.640000pt;}
.yd{bottom:691.893333pt;}
.y272{bottom:693.038320pt;}
.y216{bottom:695.603920pt;}
.y162{bottom:696.886480pt;}
.y11b{bottom:697.594400pt;}
.y13f{bottom:699.600000pt;}
.yc4{bottom:702.243360pt;}
.y1f4{bottom:704.879440pt;}
.y23c{bottom:704.903520pt;}
.y48{bottom:705.500480pt;}
.y1a8{bottom:707.606400pt;}
.y91{bottom:710.560000pt;}
.y1cc{bottom:711.201840pt;}
.y271{bottom:711.675520pt;}
.y215{bottom:713.845360pt;}
.y11a{bottom:718.558880pt;}
.yc3{bottom:720.558000pt;}
.y13e{bottom:720.558560pt;}
.y47{bottom:722.066880pt;}
.y182{bottom:722.960000pt;}
.y161{bottom:723.209200pt;}
.y23b{bottom:723.218160pt;}
.y1f3{bottom:725.843920pt;}
.y1a7{bottom:725.847840pt;}
.y189{bottom:729.908880pt;}
.y270{bottom:730.392880pt;}
.y210{bottom:731.040000pt;}
.y8f{bottom:731.520000pt;}
.y214{bottom:732.168880pt;}
.y1cb{bottom:733.440000pt;}
.y46{bottom:738.713440pt;}
.y13d{bottom:738.798560pt;}
.yc2{bottom:738.799440pt;}
.y119{bottom:739.523360pt;}
.y160{bottom:741.450640pt;}
.y23a{bottom:741.459600pt;}
.y1f2{bottom:744.158560pt;}
.y1a6{bottom:744.162480pt;}
.y26f{bottom:749.030080pt;}
.y213{bottom:750.410320pt;}
.y8d{bottom:752.400000pt;}
.y188{bottom:753.669600pt;}
.y29f{bottom:754.008400pt;}
.y45{bottom:755.360000pt;}
.y13c{bottom:757.040000pt;}
.yc1{bottom:757.040880pt;}
.y1ca{bottom:759.762480pt;}
.y15f{bottom:759.765280pt;}
.y239{bottom:759.774240pt;}
.y118{bottom:760.404960pt;}
.y1a5{bottom:762.403920pt;}
.y1f1{bottom:762.406400pt;}
.y26e{bottom:765.035360pt;}
.y29e{bottom:772.645600pt;}
.y212{bottom:772.648480pt;}
.y8b{bottom:773.360000pt;}
.y187{bottom:774.634080pt;}
.y1c9{bottom:778.003920pt;}
.yc0{bottom:778.005360pt;}
.y15e{bottom:778.006720pt;}
.y238{bottom:778.015680pt;}
.y1a4{bottom:780.718560pt;}
.y1f0{bottom:780.721040pt;}
.y117{bottom:782.160000pt;}
.y26d{bottom:783.672560pt;}
.y259{bottom:788.080000pt;}
.y86{bottom:788.160000pt;}
.y29d{bottom:791.362960pt;}
.y186{bottom:795.598560pt;}
.y1c8{bottom:796.318560pt;}
.y15d{bottom:796.321360pt;}
.ybf{bottom:796.322480pt;}
.y237{bottom:796.330320pt;}
.y1a3{bottom:798.960000pt;}
.y1ef{bottom:798.962480pt;}
.y211{bottom:798.971200pt;}
.y26c{bottom:799.677840pt;}
.y116{bottom:803.115520pt;}
.y44{bottom:804.320560pt;}
.y29c{bottom:810.000160pt;}
.ybe{bottom:814.563920pt;}
.y1c7{bottom:814.565360pt;}
.y236{bottom:814.571760pt;}
.y1ee{bottom:817.277120pt;}
.y15c{bottom:817.285840pt;}
.y26b{bottom:818.395200pt;}
.y185{bottom:819.359280pt;}
.y1a2{bottom:819.926400pt;}
.y115{bottom:824.080000pt;}
.y29b{bottom:828.637360pt;}
.yfc{bottom:830.154400pt;}
.ybd{bottom:832.878560pt;}
.y235{bottom:832.886400pt;}
.y26a{bottom:834.400480pt;}
.y1ed{bottom:835.518560pt;}
.y15b{bottom:835.527280pt;}
.y1a1{bottom:838.167840pt;}
.y184{bottom:843.120000pt;}
.y29a{bottom:844.642640pt;}
.y43{bottom:849.280000pt;}
.yfb{bottom:851.118880pt;}
.ybc{bottom:851.120000pt;}
.y234{bottom:851.127840pt;}
.y269{bottom:853.037680pt;}
.y1ec{bottom:853.765360pt;}
.y15a{bottom:853.768720pt;}
.y1a0{bottom:856.482480pt;}
.y299{bottom:863.357520pt;}
.y112{bottom:866.720000pt;}
.y233{bottom:869.442480pt;}
.y268{bottom:871.674880pt;}
.ybb{bottom:872.074080pt;}
.yfa{bottom:872.083360pt;}
.y1c6{bottom:872.083920pt;}
.y19f{bottom:874.723920pt;}
.y298{bottom:881.994720pt;}
.y42{bottom:884.400000pt;}
.y181{bottom:885.039760pt;}
.y111{bottom:887.680000pt;}
.y232{bottom:887.683920pt;}
.yba{bottom:890.315520pt;}
.y1eb{bottom:890.324800pt;}
.y1c5{bottom:890.325360pt;}
.y267{bottom:890.392240pt;}
.y19e{bottom:893.038560pt;}
.ye3{bottom:893.047840pt;}
.y297{bottom:897.994880pt;}
.y180{bottom:905.916400pt;}
.y231{bottom:905.925360pt;}
.y266{bottom:906.397520pt;}
.y110{bottom:908.639440pt;}
.y1c4{bottom:908.640000pt;}
.yb9{bottom:911.283920pt;}
.y13b{bottom:911.285360pt;}
.ye2{bottom:911.289280pt;}
.y296{bottom:914.000160pt;}
.y230{bottom:924.240000pt;}
.y265{bottom:925.034720pt;}
.y1{bottom:926.293333pt;}
.y17f{bottom:926.880880pt;}
.yb8{bottom:929.598560pt;}
.ye1{bottom:929.603920pt;}
.y295{bottom:930.005440pt;}
.y3f{bottom:940.880000pt;}
.y264{bottom:941.040000pt;}
.y22f{bottom:945.200000pt;}
.y3c{bottom:945.839040pt;}
.yb7{bottom:947.845360pt;}
.y294{bottom:948.642640pt;}
.y3b{bottom:957.202080pt;}
.yb6{bottom:966.160000pt;}
.y3d{bottom:966.960000pt;}
.y293{bottom:967.360000pt;}
.y3a{bottom:968.640000pt;}
.y6{bottom:976.800000pt;}
.y39{bottom:979.920000pt;}
.y69{bottom:983.200000pt;}
.y84{bottom:983.920000pt;}
.y8{bottom:991.200000pt;}
.y68{bottom:997.120000pt;}
.y6b{bottom:997.280000pt;}
.y38{bottom:997.760000pt;}
.y36{bottom:1031.520000pt;}
.h14{height:2.437500pt;}
.ha{height:5.410781pt;}
.h1e{height:12.960000pt;}
.h9{height:14.400000pt;}
.h19{height:14.880000pt;}
.h7{height:17.520000pt;}
.h29{height:24.654375pt;}
.h31{height:25.040000pt;}
.h20{height:26.080000pt;}
.h2c{height:26.160000pt;}
.h1c{height:26.708906pt;}
.h3b{height:27.280000pt;}
.h1f{height:30.361406pt;}
.h6{height:31.920000pt;}
.h1d{height:33.752590pt;}
.h28{height:34.242188pt;}
.h2d{height:36.068438pt;}
.h1b{height:38.062500pt;}
.h51{height:38.122969pt;}
.h2a{height:39.585938pt;}
.h5{height:39.659531pt;}
.h22{height:40.031250pt;}
.h2e{height:40.992000pt;}
.h2b{height:41.697187pt;}
.h27{height:41.775469pt;}
.h4{height:42.331406pt;}
.h24{height:42.376250pt;}
.h47{height:44.035211pt;}
.h25{height:44.072344pt;}
.h53{height:44.092824pt;}
.h13{height:45.703125pt;}
.h52{height:46.464844pt;}
.h12{height:47.200000pt;}
.h21{height:47.468750pt;}
.h8{height:47.742188pt;}
.h41{height:48.127466pt;}
.h11{height:48.140625pt;}
.h35{height:48.148906pt;}
.h42{height:48.273404pt;}
.h30{height:48.279164pt;}
.h39{height:48.284924pt;}
.h50{height:48.289404pt;}
.h26{height:48.294844pt;}
.h37{height:48.300604pt;}
.h4d{height:48.302844pt;}
.h36{height:48.305724pt;}
.h48{height:48.309884pt;}
.h4c{height:48.312764pt;}
.h3c{height:48.317244pt;}
.h18{height:49.148438pt;}
.h2f{height:50.907235pt;}
.h23{height:51.126510pt;}
.he{height:56.939375pt;}
.h3{height:58.245469pt;}
.h16{height:59.961094pt;}
.hf{height:62.521094pt;}
.hb{height:65.531250pt;}
.h45{height:66.320000pt;}
.h17{height:75.120000pt;}
.h15{height:77.280000pt;}
.h4a{height:77.598667pt;}
.h49{height:83.760000pt;}
.hd{height:84.981094pt;}
.h4b{height:87.360000pt;}
.h40{height:94.000000pt;}
.h2{height:101.786667pt;}
.h38{height:104.718667pt;}
.h43{height:155.118667pt;}
.h4e{height:177.041333pt;}
.h32{height:192.000000pt;}
.h46{height:201.760000pt;}
.h3f{height:231.920000pt;}
.h34{height:233.840000pt;}
.hc{height:234.400000pt;}
.h4f{height:249.040000pt;}
.h10{height:263.706667pt;}
.h3e{height:287.201333pt;}
.h3d{height:287.280000pt;}
.h3a{height:357.200000pt;}
.h44{height:423.198667pt;}
.h33{height:425.840000pt;}
.h0{height:1122.560000pt;}
.h1a{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.wd{width:23.280000pt;}
.wc{width:23.360000pt;}
.w6{width:86.666667pt;}
.w4{width:124.506667pt;}
.w2{width:138.746667pt;}
.w9{width:155.280000pt;}
.w15{width:168.000000pt;}
.w1c{width:168.080000pt;}
.w14{width:193.760000pt;}
.w13{width:193.840000pt;}
.w12{width:194.480000pt;}
.w19{width:243.761333pt;}
.wf{width:258.720000pt;}
.w18{width:281.840000pt;}
.w16{width:283.200000pt;}
.w1e{width:284.000000pt;}
.wb{width:295.520000pt;}
.w11{width:298.400000pt;}
.w17{width:300.240000pt;}
.we{width:322.720000pt;}
.w5{width:326.986667pt;}
.w7{width:365.066667pt;}
.w1d{width:368.480000pt;}
.w1b{width:414.000000pt;}
.w3{width:466.133333pt;}
.w1a{width:567.040000pt;}
.w10{width:582.080000pt;}
.w8{width:793.759988pt;}
.w0{width:793.760000pt;}
.wa{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.226667pt;}
.x23{left:10.560000pt;}
.x9{left:19.200000pt;}
.x3{left:26.746667pt;}
.x10{left:56.400000pt;}
.xb{left:70.640000pt;}
.xd{left:92.186667pt;}
.x1{left:94.480000pt;}
.xe{left:97.066667pt;}
.x2{left:100.426667pt;}
.x19{left:105.840000pt;}
.x12{left:109.600000pt;}
.x2a{left:113.280000pt;}
.x2b{left:114.880000pt;}
.x1e{left:118.640000pt;}
.x7{left:120.026667pt;}
.x1c{left:124.800000pt;}
.x28{left:126.000000pt;}
.x27{left:128.480000pt;}
.xa{left:131.546667pt;}
.x2e{left:152.480000pt;}
.x37{left:155.920000pt;}
.x15{left:157.840000pt;}
.x49{left:165.200000pt;}
.x4c{left:178.000000pt;}
.x3e{left:182.400000pt;}
.x4d{left:185.120000pt;}
.x17{left:196.000000pt;}
.x34{left:199.520000pt;}
.x35{left:207.040000pt;}
.x3c{left:209.120000pt;}
.x3b{left:210.320000pt;}
.x16{left:211.680000pt;}
.x3f{left:213.040000pt;}
.x20{left:220.320000pt;}
.x41{left:228.240000pt;}
.x14{left:229.840000pt;}
.x4f{left:231.040000pt;}
.x5{left:233.226667pt;}
.x29{left:235.520000pt;}
.x40{left:237.840000pt;}
.x6{left:240.426667pt;}
.x33{left:245.600000pt;}
.x21{left:249.280000pt;}
.x26{left:257.360000pt;}
.x2c{left:272.160000pt;}
.x51{left:284.000000pt;}
.x39{left:286.080000pt;}
.x2f{left:300.320000pt;}
.x3a{left:305.200000pt;}
.x18{left:306.722320pt;}
.x4e{left:314.160000pt;}
.x1b{left:316.800000pt;}
.x4a{left:319.440000pt;}
.x24{left:322.000000pt;}
.xc{left:327.093333pt;}
.x1d{left:334.560000pt;}
.x53{left:342.098320pt;}
.x54{left:344.480000pt;}
.x42{left:350.800000pt;}
.x8{left:365.173333pt;}
.x4b{left:368.480000pt;}
.x1a{left:396.883200pt;}
.x13{left:398.160000pt;}
.x50{left:403.920000pt;}
.x38{left:406.080000pt;}
.x46{left:414.000000pt;}
.x43{left:427.454720pt;}
.x25{left:428.560000pt;}
.x44{left:444.160000pt;}
.x45{left:451.360000pt;}
.x3d{left:455.040000pt;}
.x31{left:481.040000pt;}
.x30{left:494.160000pt;}
.x47{left:519.840000pt;}
.xf{left:557.120000pt;}
.x48{left:574.240000pt;}
.x11{left:575.360000pt;}
.x32{left:650.169120pt;}
.x22{left:653.440000pt;}
.x2d{left:664.080000pt;}
.x52{left:667.840000pt;}
.x36{left:684.080000pt;}
.x1f{left:704.640000pt;}
}




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