
    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_5c9af78280128e1623545d53.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cc6881afab7b1ac490d5b370.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921000;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_0b9563d0c0e856a6e38b47d1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ee4278881a9b3d0623db7c6d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.070312;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_743155acfd2fc42d79f893bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_5c9af78280128e1623545d53.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b2a5ae702a95a91ed2b9fe53.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.726074;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_09c200e2860964d59a599fe4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_73d893ac392e5d4f211ba5f4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.070312;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_2abf1a4825cb5d7442f62aa8.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3e9ba0b581547256ace1104d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_5dfec7887c662da66f252616.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_20f5f0e749e4811c41b1f509.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_71fca156bd3f2eb034bd8733.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_30b01b055774713c09e6d999.woff2')format("woff");}.fff{font-family:fff;line-height:1.070312;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_5c9af78280128e1623545d53.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_5c9af78280128e1623545d53.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_a8ae115f06eca437917030bc.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;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_6feea09c217c3954516b3023.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.070312;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_cb70638822cf197aeb48d623.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938477;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;}
.m3{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.v6{vertical-align:-27.000000px;}
.v3{vertical-align:-20.880000px;}
.v5{vertical-align:-6.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.120000px;}
.v1{vertical-align:20.881656px;}
.v7{vertical-align:24.121728px;}
.v4{vertical-align:27.000000px;}
.ls35{letter-spacing:-11.100780px;}
.ls94{letter-spacing:-2.386758px;}
.ls76{letter-spacing:-2.386686px;}
.ls9a{letter-spacing:-2.158992px;}
.ls7e{letter-spacing:-2.094984px;}
.ls84{letter-spacing:-1.797506px;}
.ls85{letter-spacing:-1.776892px;}
.ls95{letter-spacing:-1.749498px;}
.lsb8{letter-spacing:-1.745820px;}
.ls77{letter-spacing:-1.745487px;}
.lsad{letter-spacing:-1.737623px;}
.lsba{letter-spacing:-1.592257px;}
.lsa0{letter-spacing:-1.571716px;}
.ls80{letter-spacing:-1.557261px;}
.lsb{letter-spacing:-1.523520px;}
.ls92{letter-spacing:-1.424935px;}
.ls74{letter-spacing:-1.424903px;}
.lsab{letter-spacing:-1.381755px;}
.ls99{letter-spacing:-1.257613px;}
.lse1{letter-spacing:-1.095120px;}
.lsd7{letter-spacing:-1.061280px;}
.lsd5{letter-spacing:-1.013040px;}
.lsbb{letter-spacing:-0.949964px;}
.lsd9{letter-spacing:-0.916560px;}
.lse{letter-spacing:-0.792000px;}
.lsd8{letter-spacing:-0.723600px;}
.ls82{letter-spacing:-0.687373px;}
.lsa3{letter-spacing:-0.665388px;}
.ls5{letter-spacing:-0.601200px;}
.lse7{letter-spacing:-0.594000px;}
.lse5{letter-spacing:-0.486000px;}
.ls8a{letter-spacing:-0.382104px;}
.ls7{letter-spacing:-0.360720px;}
.ls93{letter-spacing:-0.337519px;}
.lse0{letter-spacing:-0.336960px;}
.ls36{letter-spacing:-0.335988px;}
.ls75{letter-spacing:-0.332474px;}
.ls83{letter-spacing:-0.325321px;}
.ls8d{letter-spacing:-0.316224px;}
.ls57{letter-spacing:-0.303048px;}
.lsd1{letter-spacing:-0.298800px;}
.ls7c{letter-spacing:-0.296460px;}
.lsa5{letter-spacing:-0.294840px;}
.ls34{letter-spacing:-0.291600px;}
.ls6d{letter-spacing:-0.265356px;}
.lsa8{letter-spacing:-0.261144px;}
.ls6{letter-spacing:-0.240480px;}
.ls5f{letter-spacing:-0.240084px;}
.lsd0{letter-spacing:-0.239040px;}
.lse8{letter-spacing:-0.216000px;}
.lsa4{letter-spacing:-0.214812px;}
.lsd4{letter-spacing:-0.192960px;}
.ls8e{letter-spacing:-0.184464px;}
.ls56{letter-spacing:-0.181116px;}
.ls81{letter-spacing:-0.168656px;}
.ls91{letter-spacing:-0.167322px;}
.ls73{letter-spacing:-0.167318px;}
.ls4{letter-spacing:-0.155520px;}
.ls88{letter-spacing:-0.143208px;}
.lsc5{letter-spacing:-0.138276px;}
.ls2c{letter-spacing:-0.135000px;}
.lsa6{letter-spacing:-0.134784px;}
.lsa{letter-spacing:-0.132480px;}
.ls6e{letter-spacing:-0.130572px;}
.ls10{letter-spacing:-0.119520px;}
.ls71{letter-spacing:-0.113724px;}
.lsea{letter-spacing:-0.108000px;}
.ls60{letter-spacing:-0.096876px;}
.ls63{letter-spacing:-0.084240px;}
.lsc8{letter-spacing:-0.084168px;}
.ls70{letter-spacing:-0.080028px;}
.lsbf{letter-spacing:-0.078156px;}
.ls43{letter-spacing:-0.076896px;}
.ls32{letter-spacing:-0.075600px;}
.lsc3{letter-spacing:-0.072144px;}
.lsd{letter-spacing:-0.072000px;}
.ls27{letter-spacing:-0.067284px;}
.lsb9{letter-spacing:-0.066132px;}
.ls2e{letter-spacing:-0.064800px;}
.lsc6{letter-spacing:-0.060120px;}
.lsd2{letter-spacing:-0.059760px;}
.lsc4{letter-spacing:-0.054108px;}
.ls28{letter-spacing:-0.048600px;}
.lsd3{letter-spacing:-0.048240px;}
.ls47{letter-spacing:-0.048096px;}
.lsca{letter-spacing:-0.048060px;}
.ls30{letter-spacing:-0.043200px;}
.ls62{letter-spacing:-0.042120px;}
.ls72{letter-spacing:-0.042084px;}
.ls7d{letter-spacing:-0.037908px;}
.ls2a{letter-spacing:-0.037800px;}
.lsaa{letter-spacing:-0.036072px;}
.ls31{letter-spacing:-0.032400px;}
.ls48{letter-spacing:-0.030060px;}
.ls98{letter-spacing:-0.027216px;}
.ls4e{letter-spacing:-0.025272px;}
.lsb0{letter-spacing:-0.024048px;}
.lsa9{letter-spacing:-0.023328px;}
.ls2d{letter-spacing:-0.021600px;}
.ls46{letter-spacing:-0.018036px;}
.ls2f{letter-spacing:-0.016200px;}
.ls90{letter-spacing:-0.013176px;}
.ls4d{letter-spacing:-0.012636px;}
.ls45{letter-spacing:-0.012024px;}
.ls29{letter-spacing:-0.010800px;}
.lsc7{letter-spacing:-0.006012px;}
.ls33{letter-spacing:-0.005400px;}
.ls6f{letter-spacing:-0.004212px;}
.ls3{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.006012px;}
.ls1e{letter-spacing:0.010800px;}
.ls40{letter-spacing:0.012024px;}
.ls6c{letter-spacing:0.012636px;}
.ls3c{letter-spacing:0.013176px;}
.ls20{letter-spacing:0.016200px;}
.lsdd{letter-spacing:0.018000px;}
.lsb4{letter-spacing:0.018036px;}
.ls2b{letter-spacing:0.019764px;}
.lsae{letter-spacing:0.020124px;}
.ls1d{letter-spacing:0.021600px;}
.ls5d{letter-spacing:0.021960px;}
.ls3d{letter-spacing:0.024048px;}
.ls4a{letter-spacing:0.026352px;}
.ls5c{letter-spacing:0.029484px;}
.lsb3{letter-spacing:0.030060px;}
.ls79{letter-spacing:0.030764px;}
.ls21{letter-spacing:0.032940px;}
.ls51{letter-spacing:0.033552px;}
.lsa2{letter-spacing:0.033696px;}
.lsc0{letter-spacing:0.034184px;}
.ls41{letter-spacing:0.036072px;}
.ls17{letter-spacing:0.037800px;}
.ls1f{letter-spacing:0.039528px;}
.ls37{letter-spacing:0.041940px;}
.ls42{letter-spacing:0.042084px;}
.ls54{letter-spacing:0.042120px;}
.ls1a{letter-spacing:0.045360px;}
.ls26{letter-spacing:0.046116px;}
.ls3e{letter-spacing:0.048096px;}
.ls24{letter-spacing:0.048600px;}
.ls8c{letter-spacing:0.050328px;}
.lsa1{letter-spacing:0.050544px;}
.ls19{letter-spacing:0.052704px;}
.lsc2{letter-spacing:0.054108px;}
.ls67{letter-spacing:0.058716px;}
.ls13{letter-spacing:0.059292px;}
.lse2{letter-spacing:0.059760px;}
.lsb5{letter-spacing:0.060120px;}
.ls23{letter-spacing:0.064800px;}
.ls25{letter-spacing:0.065880px;}
.lsc1{letter-spacing:0.066132px;}
.ls52{letter-spacing:0.067104px;}
.ls1c{letter-spacing:0.067320px;}
.ls55{letter-spacing:0.067392px;}
.ls59{letter-spacing:0.071604px;}
.ls18{letter-spacing:0.072180px;}
.ls15{letter-spacing:0.072468px;}
.ls49{letter-spacing:0.075816px;}
.ls14{letter-spacing:0.079056px;}
.ls38{letter-spacing:0.085644px;}
.ls11{letter-spacing:0.092232px;}
.lsb1{letter-spacing:0.092664px;}
.lsce{letter-spacing:0.096480px;}
.ls87{letter-spacing:0.096876px;}
.ls39{letter-spacing:0.098820px;}
.ls4f{letter-spacing:0.105408px;}
.ls1b{letter-spacing:0.108000px;}
.ls5a{letter-spacing:0.109512px;}
.ls97{letter-spacing:0.111996px;}
.ls4b{letter-spacing:0.118584px;}
.ls8b{letter-spacing:0.125172px;}
.ls96{letter-spacing:0.126360px;}
.lsaf{letter-spacing:0.131760px;}
.lsb2{letter-spacing:0.134640px;}
.ls58{letter-spacing:0.134784px;}
.ls50{letter-spacing:0.143208px;}
.lsf{letter-spacing:0.144000px;}
.lscf{letter-spacing:0.144720px;}
.ls5b{letter-spacing:0.144936px;}
.ls0{letter-spacing:0.155520px;}
.lse4{letter-spacing:0.162000px;}
.ls3b{letter-spacing:0.170640px;}
.ls69{letter-spacing:0.172692px;}
.ls7a{letter-spacing:0.175380px;}
.ls4c{letter-spacing:0.176904px;}
.ls9d{letter-spacing:0.194306px;}
.ls22{letter-spacing:0.201960px;}
.lsdc{letter-spacing:0.216000px;}
.ls9f{letter-spacing:0.228849px;}
.lscb{letter-spacing:0.239040px;}
.ls9{letter-spacing:0.259920px;}
.lse3{letter-spacing:0.270000px;}
.lsc{letter-spacing:0.288000px;}
.lsd6{letter-spacing:0.289440px;}
.ls1{letter-spacing:0.311040px;}
.ls53{letter-spacing:0.341280px;}
.ls2{letter-spacing:0.388800px;}
.ls65{letter-spacing:0.415044px;}
.ls5e{letter-spacing:0.421632px;}
.ls66{letter-spacing:0.438048px;}
.lscd{letter-spacing:0.482400px;}
.lsda{letter-spacing:0.484056px;}
.ls8{letter-spacing:0.504000px;}
.lsdb{letter-spacing:0.507960px;}
.lsbc{letter-spacing:0.889512px;}
.lsbd{letter-spacing:0.962918px;}
.ls86{letter-spacing:1.139724px;}
.ls8f{letter-spacing:1.495476px;}
.ls7f{letter-spacing:1.573734px;}
.lscc{letter-spacing:1.673280px;}
.lsb6{letter-spacing:1.979640px;}
.ls9c{letter-spacing:2.025095px;}
.lsb7{letter-spacing:2.575908px;}
.ls7b{letter-spacing:3.062124px;}
.ls64{letter-spacing:5.576688px;}
.ls89{letter-spacing:6.179544px;}
.lsdf{letter-spacing:6.785280px;}
.ls44{letter-spacing:8.696160px;}
.lse6{letter-spacing:11.628000px;}
.lse9{letter-spacing:13.068000px;}
.lsde{letter-spacing:27.468000px;}
.ls6b{letter-spacing:34.257600px;}
.lsa7{letter-spacing:56.577744px;}
.ls12{letter-spacing:68.271444px;}
.ls16{letter-spacing:73.311264px;}
.ls6a{letter-spacing:100.137600px;}
.ls61{letter-spacing:119.578788px;}
.ls68{letter-spacing:186.539220px;}
.lsc9{letter-spacing:192.398400px;}
.ls3a{letter-spacing:194.095656px;}
.ls78{letter-spacing:194.181300px;}
.lsac{letter-spacing:200.138558px;}
.ls9b{letter-spacing:236.857615px;}
.ls9e{letter-spacing:239.378238px;}
.lsbe{letter-spacing:845.687808px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5d{word-spacing:-281.834816px;}
.ws5a{word-spacing:-278.952561px;}
.ws62{word-spacing:-242.233505px;}
.ws6e{word-spacing:-68.401784px;}
.ws39{word-spacing:-65.880000px;}
.ws48{word-spacing:-56.050144px;}
.ws47{word-spacing:-54.661539px;}
.ws4f{word-spacing:-53.807478px;}
.ws40{word-spacing:-53.806282px;}
.ws58{word-spacing:-52.717187px;}
.ws61{word-spacing:-52.593045px;}
.ws50{word-spacing:-52.549865px;}
.ws41{word-spacing:-52.548697px;}
.ws68{word-spacing:-52.382543px;}
.ws49{word-spacing:-52.145879px;}
.ws59{word-spacing:-51.815808px;}
.ws6c{word-spacing:-44.143118px;}
.ws5c{word-spacing:-43.373305px;}
.ws5f{word-spacing:-41.607284px;}
.ws72{word-spacing:-23.334480px;}
.ws87{word-spacing:-23.081760px;}
.ws2{word-spacing:-22.484880px;}
.ws88{word-spacing:-22.323600px;}
.ws4c{word-spacing:-20.782632px;}
.ws4b{word-spacing:-20.741404px;}
.wsb{word-spacing:-20.304000px;}
.wsa{word-spacing:-19.944000px;}
.ws63{word-spacing:-19.822365px;}
.ws33{word-spacing:-18.413460px;}
.ws46{word-spacing:-18.400284px;}
.ws2d{word-spacing:-18.393696px;}
.ws1a{word-spacing:-18.387108px;}
.ws55{word-spacing:-18.380520px;}
.ws4e{word-spacing:-18.373932px;}
.ws3a{word-spacing:-18.360756px;}
.ws1f{word-spacing:-18.334404px;}
.ws1b{word-spacing:-18.314640px;}
.ws9{word-spacing:-18.282240px;}
.ws2b{word-spacing:-17.978652px;}
.ws8{word-spacing:-16.891200px;}
.ws6f{word-spacing:-16.695324px;}
.ws89{word-spacing:-16.673040px;}
.ws70{word-spacing:-16.659252px;}
.ws76{word-spacing:-16.613280px;}
.ws74{word-spacing:-16.493760px;}
.ws73{word-spacing:-16.374240px;}
.ws75{word-spacing:-16.314480px;}
.ws8b{word-spacing:-15.282000px;}
.ws8a{word-spacing:-15.228000px;}
.ws8c{word-spacing:-15.174000px;}
.wsae{word-spacing:-15.120000px;}
.ws1{word-spacing:-15.085440px;}
.ws2a{word-spacing:-15.076800px;}
.ws2c{word-spacing:-15.060600px;}
.ws1c{word-spacing:-15.049800px;}
.ws22{word-spacing:-15.033600px;}
.ws23{word-spacing:-15.022800px;}
.ws28{word-spacing:-15.006600px;}
.ws1d{word-spacing:-15.001200px;}
.ws21{word-spacing:-14.990400px;}
.ws26{word-spacing:-14.979600px;}
.ws1e{word-spacing:-14.974200px;}
.ws25{word-spacing:-14.968800px;}
.ws24{word-spacing:-14.947200px;}
.ws27{word-spacing:-14.936400px;}
.wsab{word-spacing:-14.904000px;}
.ws20{word-spacing:-14.877000px;}
.ws9e{word-spacing:-14.796000px;}
.ws0{word-spacing:-14.774400px;}
.ws29{word-spacing:-14.720400px;}
.ws9f{word-spacing:-14.526000px;}
.wsa0{word-spacing:-14.418000px;}
.ws7a{word-spacing:-13.700160px;}
.ws79{word-spacing:-13.507200px;}
.ws77{word-spacing:-13.410720px;}
.ws78{word-spacing:-13.217760px;}
.ws7b{word-spacing:-12.687120px;}
.ws7c{word-spacing:-12.397680px;}
.ws3e{word-spacing:-11.785176px;}
.ws3b{word-spacing:-11.751480px;}
.ws3f{word-spacing:-11.721996px;}
.ws2e{word-spacing:-11.709360px;}
.ws56{word-spacing:-11.684088px;}
.ws2f{word-spacing:-10.808640px;}
.ws60{word-spacing:-10.785312px;}
.ws57{word-spacing:-10.781424px;}
.ws19{word-spacing:-2.808720px;}
.ws92{word-spacing:-2.268000px;}
.ws95{word-spacing:-1.512000px;}
.ws17{word-spacing:-1.374480px;}
.ws82{word-spacing:-0.964800px;}
.ws12{word-spacing:-0.864000px;}
.ws8f{word-spacing:-0.810000px;}
.ws31{word-spacing:-0.737856px;}
.ws32{word-spacing:-0.698328px;}
.wsac{word-spacing:-0.594000px;}
.ws11{word-spacing:-0.504000px;}
.ws7f{word-spacing:-0.298800px;}
.wsd{word-spacing:-0.264960px;}
.ws83{word-spacing:-0.241200px;}
.ws71{word-spacing:-0.223992px;}
.ws34{word-spacing:-0.217404px;}
.ws90{word-spacing:-0.216000px;}
.ws3d{word-spacing:-0.204228px;}
.ws37{word-spacing:-0.184464px;}
.ws30{word-spacing:-0.177876px;}
.ws54{word-spacing:-0.171288px;}
.ws45{word-spacing:-0.164700px;}
.wsa8{word-spacing:-0.162000px;}
.ws4d{word-spacing:-0.158112px;}
.wse{word-spacing:-0.144000px;}
.ws3c{word-spacing:-0.131760px;}
.ws64{word-spacing:-0.118584px;}
.ws8e{word-spacing:-0.108000px;}
.ws3{word-spacing:0.000000px;}
.ws13{word-spacing:0.059760px;}
.ws7{word-spacing:0.077760px;}
.ws9d{word-spacing:0.108000px;}
.ws15{word-spacing:0.119520px;}
.ws84{word-spacing:0.192960px;}
.wsf{word-spacing:0.216000px;}
.ws5{word-spacing:0.240480px;}
.ws8d{word-spacing:0.298800px;}
.ws80{word-spacing:0.337680px;}
.ws6{word-spacing:0.360720px;}
.ws4{word-spacing:0.388800px;}
.wsc{word-spacing:0.463680px;}
.ws81{word-spacing:0.482400px;}
.ws96{word-spacing:0.486000px;}
.wsa1{word-spacing:0.594000px;}
.wsa3{word-spacing:0.648000px;}
.ws7e{word-spacing:0.776880px;}
.ws10{word-spacing:0.792000px;}
.ws85{word-spacing:1.302480px;}
.wsa2{word-spacing:1.350000px;}
.ws86{word-spacing:1.350720px;}
.ws65{word-spacing:1.462536px;}
.ws93{word-spacing:2.052000px;}
.ws94{word-spacing:2.268000px;}
.wsb7{word-spacing:2.754000px;}
.ws9a{word-spacing:2.808000px;}
.ws38{word-spacing:3.274236px;}
.ws99{word-spacing:3.510000px;}
.ws91{word-spacing:4.212000px;}
.ws66{word-spacing:4.295376px;}
.ws67{word-spacing:4.328316px;}
.wsa5{word-spacing:4.428000px;}
.ws98{word-spacing:4.968000px;}
.ws9b{word-spacing:5.076000px;}
.ws9c{word-spacing:5.670000px;}
.ws18{word-spacing:5.856480px;}
.ws16{word-spacing:7.290720px;}
.wsb0{word-spacing:7.830000px;}
.wsaf{word-spacing:7.938000px;}
.wsaa{word-spacing:8.532000px;}
.ws14{word-spacing:8.724960px;}
.ws35{word-spacing:8.999208px;}
.ws36{word-spacing:9.018972px;}
.wsa9{word-spacing:9.990000px;}
.wsa7{word-spacing:10.692000px;}
.wsa6{word-spacing:11.448000px;}
.wsa4{word-spacing:12.150000px;}
.wsad{word-spacing:12.852000px;}
.wsb5{word-spacing:17.928000px;}
.wsb4{word-spacing:18.144000px;}
.wsb6{word-spacing:18.630000px;}
.ws7d{word-spacing:20.258640px;}
.wsb3{word-spacing:25.110000px;}
.ws97{word-spacing:27.270000px;}
.wsb1{word-spacing:27.972000px;}
.wsb2{word-spacing:28.674000px;}
.wsb8{word-spacing:38.070000px;}
.ws6d{word-spacing:59.658346px;}
.ws69{word-spacing:64.337962px;}
.ws53{word-spacing:121.141487px;}
.ws6b{word-spacing:121.915496px;}
.ws52{word-spacing:123.299044px;}
.ws6a{word-spacing:126.343401px;}
.ws43{word-spacing:138.414104px;}
.ws44{word-spacing:138.588304px;}
.ws42{word-spacing:158.015673px;}
.ws51{word-spacing:159.460190px;}
.ws4a{word-spacing:164.530673px;}
.ws5b{word-spacing:269.559126px;}
.ws5e{word-spacing:428.615326px;}
._4c{margin-left:-241.537230px;}
._49{margin-left:-239.016607px;}
._4d{margin-left:-237.848867px;}
._4a{margin-left:-235.317449px;}
._55{margin-left:-202.297550px;}
._56{margin-left:-198.954626px;}
._16{margin-left:-194.154948px;}
._59{margin-left:-131.654592px;}
._30{margin-left:-119.551392px;}
._1f{margin-left:-116.937000px;}
._20{margin-left:-95.064840px;}
._22{margin-left:-91.395324px;}
._43{margin-left:-87.623244px;}
._52{margin-left:-57.470868px;}
._53{margin-left:-55.605564px;}
._1c{margin-left:-43.882668px;}
._33{margin-left:-36.583164px;}
._4b{margin-left:-28.795556px;}
._a{margin-left:-17.174016px;}
._b{margin-left:-16.125516px;}
._8{margin-left:-15.040908px;}
._d{margin-left:-13.058388px;}
._6{margin-left:-11.621232px;}
._9{margin-left:-9.308844px;}
._f{margin-left:-7.681608px;}
._5{margin-left:-6.607764px;}
._e{margin-left:-5.184756px;}
._7{margin-left:-4.147344px;}
._12{margin-left:-3.135672px;}
._4{margin-left:-2.086272px;}
._2{margin-left:-1.080864px;}
._1{width:1.127520px;}
._3{width:2.904480px;}
._11{width:3.939624px;}
._1b{width:5.362632px;}
._15{width:7.187508px;}
._32{width:8.190576px;}
._14{width:9.233280px;}
._c{width:10.303632px;}
._23{width:11.341044px;}
._48{width:13.307760px;}
._18{width:14.388192px;}
._5c{width:15.547680px;}
._64{width:17.330544px;}
._42{width:20.515032px;}
._61{width:21.527784px;}
._2b{width:26.487180px;}
._62{width:28.010772px;}
._13{width:33.535224px;}
._58{width:34.540884px;}
._2e{width:37.290492px;}
._65{width:38.752272px;}
._27{width:41.069592px;}
._34{width:44.463348px;}
._10{width:49.328784px;}
._25{width:51.860736px;}
._46{width:54.379584px;}
._24{width:59.338116px;}
._2d{width:67.257756px;}
._40{width:70.267500px;}
._35{width:76.742712px;}
._2c{width:78.048036px;}
._50{width:79.611192px;}
._17{width:90.762876px;}
._31{width:94.715784px;}
._47{width:98.530128px;}
._21{width:102.015180px;}
._45{width:111.916944px;}
._5d{width:114.109524px;}
._39{width:118.115126px;}
._38{width:119.453590px;}
._4f{width:126.779472px;}
._41{width:137.511324px;}
._1e{width:142.768548px;}
._51{width:144.356256px;}
._1a{width:146.411712px;}
._3f{width:148.107132px;}
._1d{width:150.028524px;}
._5a{width:151.147044px;}
._2a{width:158.168124px;}
._28{width:161.920620px;}
._26{width:164.844000px;}
._2f{width:174.708612px;}
._3e{width:177.278832px;}
._57{width:179.955868px;}
._4e{width:184.075308px;}
._5b{width:185.275728px;}
._3c{width:188.560560px;}
._29{width:192.144240px;}
._19{width:194.042952px;}
._37{width:196.404772px;}
._3b{width:202.592611px;}
._3a{width:228.503184px;}
._36{width:265.288809px;}
._44{width:266.730845px;}
._60{width:364.573692px;}
._3d{width:371.007730px;}
._5e{width:397.347120px;}
._5f{width:738.655776px;}
._54{width:845.633736px;}
._63{width:848.998080px;}
._0{width:2127.032640px;}
.fc8{color:rgb(0,0,255);}
.fc5{color:rgb(255,192,0);}
.fc4{color:rgb(0,32,96);}
.fc6{color:rgb(0,112,192);}
.fc3{color:rgb(192,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc7{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1e{font-size:18.000000px;}
.fs5{font-size:36.000000px;}
.fsd{font-size:38.880000px;}
.fs11{font-size:39.580200px;}
.fs18{font-size:39.581400px;}
.fs15{font-size:41.227200px;}
.fsc{font-size:42.120000px;}
.fs19{font-size:43.179000px;}
.fs1a{font-size:43.180200px;}
.fs7{font-size:47.880000px;}
.fs1d{font-size:48.240000px;}
.fs14{font-size:48.722400px;}
.fs10{font-size:50.374800px;}
.fs17{font-size:50.376000px;}
.fs13{font-size:52.471200px;}
.fsf{font-size:53.973600px;}
.fs16{font-size:53.974800px;}
.fsa{font-size:54.000000px;}
.fs12{font-size:56.218800px;}
.fs6{font-size:59.760000px;}
.fse{font-size:60.120000px;}
.fs9{font-size:65.880000px;}
.fs0{font-size:66.240000px;}
.fs1b{font-size:68.367600px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fsb{font-size:83.880000px;}
.fs1c{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs8{font-size:96.120000px;}
.fs2{font-size:120.240000px;}
.y4f{bottom:-219.780000px;}
.y4e{bottom:-193.860000px;}
.y4d{bottom:-167.940000px;}
.y4c{bottom:-142.200000px;}
.y4b{bottom:-116.280000px;}
.y4a{bottom:-90.360000px;}
.y49{bottom:-64.440000px;}
.y48{bottom:-38.700000px;}
.y16{bottom:-13.320000px;}
.y47{bottom:-12.780000px;}
.y0{bottom:0.000000px;}
.y121{bottom:3.330450px;}
.y18d{bottom:3.330600px;}
.y14a{bottom:3.510450px;}
.y31d{bottom:5.760000px;}
.y31b{bottom:5.940000px;}
.y28{bottom:6.840000px;}
.y390{bottom:9.720000px;}
.y399{bottom:9.900000px;}
.y38f{bottom:10.080000px;}
.y3ba{bottom:10.260000px;}
.y30b{bottom:10.440000px;}
.y2a{bottom:10.980000px;}
.y19{bottom:11.520000px;}
.y384{bottom:11.880000px;}
.y15{bottom:12.960000px;}
.y46{bottom:13.140000px;}
.y367{bottom:13.860000px;}
.y12{bottom:14.760000px;}
.y1c{bottom:20.340000px;}
.y33f{bottom:20.880000px;}
.y319{bottom:25.920000px;}
.y3a3{bottom:27.540000px;}
.y382{bottom:27.720000px;}
.y25{bottom:28.080000px;}
.y306{bottom:28.620000px;}
.y14{bottom:28.980000px;}
.y365{bottom:29.700000px;}
.y30a{bottom:30.240000px;}
.y3bd{bottom:32.040000px;}
.y3c2{bottom:32.220000px;}
.y3d5{bottom:32.400000px;}
.y18{bottom:36.180000px;}
.y45{bottom:39.060000px;}
.y380{bottom:43.560000px;}
.y394{bottom:45.360000px;}
.y363{bottom:45.540000px;}
.y318{bottom:45.720000px;}
.y33e{bottom:48.600000px;}
.y309{bottom:50.220000px;}
.y23{bottom:53.820000px;}
.y69{bottom:55.650450px;}
.y51{bottom:55.740450px;}
.y4{bottom:57.774240px;}
.y388{bottom:57.786480px;}
.y37e{bottom:59.400000px;}
.y361{bottom:61.380000px;}
.y44{bottom:64.800000px;}
.y316{bottom:65.520000px;}
.y68{bottom:71.040600px;}
.y3{bottom:73.440000px;}
.y33c{bottom:73.620000px;}
.y387{bottom:77.940000px;}
.y21{bottom:79.740000px;}
.y37c{bottom:84.240000px;}
.y314{bottom:85.320000px;}
.y35f{bottom:86.220000px;}
.y33a{bottom:89.460000px;}
.y67{bottom:89.850450px;}
.y43{bottom:90.900000px;}
.y37a{bottom:100.080000px;}
.y35d{bottom:102.060000px;}
.y313{bottom:105.120000px;}
.y338{bottom:105.300000px;}
.y20{bottom:105.660000px;}
.y90{bottom:108.569502px;}
.yb7{bottom:108.569991px;}
.y386{bottom:113.040000px;}
.y11d{bottom:113.790600px;}
.y336{bottom:121.140000px;}
.y240{bottom:123.509352px;}
.y311{bottom:125.100000px;}
.y146{bottom:126.028425px;}
.y189{bottom:126.029469px;}
.y11c{bottom:126.029928px;}
.y1e3{bottom:126.030450px;}
.y35b{bottom:127.080000px;}
.y34a{bottom:128.700000px;}
.y8f{bottom:129.089961px;}
.yb6{bottom:134.310450px;}
.y385{bottom:140.580000px;}
.y377{bottom:140.940000px;}
.y368{bottom:142.560000px;}
.y359{bottom:142.920000px;}
.y20d{bottom:144.119991px;}
.y30f{bottom:144.900000px;}
.y2da{bottom:145.470504px;}
.y334{bottom:145.980000px;}
.y1ae{bottom:146.549214px;}
.y8e{bottom:154.920450px;}
.y383{bottom:156.420000px;}
.y366{bottom:158.400000px;}
.yf0{bottom:161.489676px;}
.y173{bottom:161.671008px;}
.y332{bottom:161.820000px;}
.yb5{bottom:163.920450px;}
.y30e{bottom:164.520000px;}
.y375{bottom:165.780000px;}
.y188{bottom:166.349676px;}
.y22d{bottom:167.156085px;}
.y25b{bottom:167.158551px;}
.y357{bottom:167.760000px;}
.y2d9{bottom:168.060756px;}
.y20c{bottom:169.860450px;}
.y381{bottom:172.260000px;}
.y1ad{bottom:173.009916px;}
.y11b{bottom:173.999826px;}
.y364{bottom:174.240000px;}
.yb4{bottom:176.157225px;}
.y3b8{bottom:178.380000px;}
.y8d{bottom:179.219991px;}
.y373{bottom:181.620000px;}
.y20b{bottom:182.096292px;}
.y355{bottom:183.600000px;}
.y172{bottom:184.261260px;}
.y330{bottom:186.840000px;}
.y37f{bottom:188.100000px;}
.y3ec{bottom:189.180000px;}
.y362{bottom:190.080000px;}
.y2d8{bottom:190.739946px;}
.y3b7{bottom:193.860000px;}
.y23f{bottom:194.249991px;}
.y1ac{bottom:195.600168px;}
.yef{bottom:197.580450px;}
.yee{bottom:199.110567px;}
.y187{bottom:202.440450px;}
.y32e{bottom:202.680000px;}
.y186{bottom:203.969676px;}
.y3eb{bottom:204.660000px;}
.y8c{bottom:204.960600px;}
.y371{bottom:206.460000px;}
.y171{bottom:206.939424px;}
.y353{bottom:208.440000px;}
.y50{bottom:210.420000px;}
.y11a{bottom:211.619676px;}
.y37d{bottom:212.940000px;}
.y2d7{bottom:213.330198px;}
.y360{bottom:214.920000px;}
.y3b5{bottom:216.180000px;}
.y23e{bottom:219.990450px;}
.y36f{bottom:222.300000px;}
.y351{bottom:224.280000px;}
.y3b6{bottom:225.900000px;}
.y42{bottom:226.080000px;}
.y3ea{bottom:227.160000px;}
.y32c{bottom:227.520000px;}
.y37b{bottom:228.780000px;}
.y8b{bottom:229.349991px;}
.y170{bottom:229.529676px;}
.y1ab{bottom:229.619523px;}
.y35e{bottom:230.760000px;}
.y2d6{bottom:235.920450px;}
.yed{bottom:236.640756px;}
.y36e{bottom:238.320000px;}
.y20a{bottom:238.706976px;}
.y185{bottom:240.060450px;}
.y350{bottom:240.480000px;}
.y184{bottom:241.589424px;}
.y32a{bottom:243.360000px;}
.yb3{bottom:243.927981px;}
.y349{bottom:245.520000px;}
.y119{bottom:249.238650px;}
.y3e9{bottom:249.480000px;}
.y23d{bottom:249.510450px;}
.y22c{bottom:251.485779px;}
.y379{bottom:253.800000px;}
.y36c{bottom:254.340000px;}
.y8a{bottom:255.090450px;}
.y35c{bottom:255.780000px;}
.y34e{bottom:256.320000px;}
.y3b3{bottom:256.500000px;}
.yec{bottom:259.319946px;}
.y209{bottom:261.297228px;}
.y23c{bottom:261.748992px;}
.y1aa{bottom:263.639955px;}
.y347{bottom:264.240000px;}
.y1bc{bottom:264.630000px;}
.y3b4{bottom:266.220000px;}
.yb2{bottom:266.518233px;}
.y16f{bottom:267.149676px;}
.y89{bottom:267.330639px;}
.y1bb{bottom:267.960450px;}
.y328{bottom:268.200000px;}
.y34d{bottom:268.920000px;}
.y378{bottom:269.640000px;}
.y36b{bottom:270.000000px;}
.y35a{bottom:271.620000px;}
.y3e7{bottom:271.800000px;}
.y2d1{bottom:273.718272px;}
.y22b{bottom:274.076031px;}
.y34c{bottom:279.000000px;}
.y183{bottom:279.210198px;}
.y345{bottom:280.080000px;}
.y266{bottom:281.094861px;}
.y3e8{bottom:281.520000px;}
.yeb{bottom:281.910198px;}
.y326{bottom:284.040000px;}
.y36a{bottom:285.840000px;}
.y118{bottom:286.859424px;}
.yb1{bottom:289.108485px;}
.y1c7{bottom:289.740450px;}
.y2d0{bottom:294.328911px;}
.y376{bottom:294.480000px;}
.y23b{bottom:295.769424px;}
.y343{bottom:295.920000px;}
.y358{bottom:296.460000px;}
.y3b1{bottom:296.640000px;}
.y208{bottom:298.918002px;}
.y34b{bottom:298.980000px;}
.y325{bottom:300.060000px;}
.y369{bottom:301.680000px;}
.y182{bottom:301.800450px;}
.y13b{bottom:302.608485px;}
.yea{bottom:304.500450px;}
.y16e{bottom:304.770045px;}
.y3b2{bottom:306.360000px;}
.y1c6{bottom:306.391233px;}
.y342{bottom:308.880000px;}
.y117{bottom:309.449676px;}
.y374{bottom:310.320000px;}
.y22a{bottom:311.696805px;}
.yb0{bottom:311.698737px;}
.y3e6{bottom:311.940000px;}
.y356{bottom:312.300000px;}
.y2cf{bottom:314.759190px;}
.y323{bottom:316.080000px;}
.y23a{bottom:318.359676px;}
.y340{bottom:319.140000px;}
.y207{bottom:321.508254px;}
.y1bd{bottom:323.490450px;}
.y13a{bottom:325.198737px;}
.y265{bottom:325.735149px;}
.y322{bottom:328.680000px;}
.y2c{bottom:330.660000px;}
.y229{bottom:334.287057px;}
.yaf{bottom:334.288989px;}
.y3e4{bottom:334.440000px;}
.y372{bottom:335.160000px;}
.y2ce{bottom:336.448983px;}
.y181{bottom:336.720450px;}
.y3af{bottom:336.780000px;}
.y354{bottom:337.140000px;}
.y320{bottom:338.939850px;}
.ye9{bottom:339.420450px;}
.y16d{bottom:342.300234px;}
.y41{bottom:342.705420px;}
.y206{bottom:344.098506px;}
.y3e5{bottom:344.160000px;}
.y88{bottom:345.088920px;}
.y3b0{bottom:346.680000px;}
.y115{bottom:347.069676px;}
.y264{bottom:348.325401px;}
.y370{bottom:351.000000px;}
.y116{bottom:352.290600px;}
.y352{bottom:352.980000px;}
.y239{bottom:355.979259px;}
.y228{bottom:356.967894px;}
.y2cd{bottom:356.969442px;}
.yae{bottom:356.969826px;}
.y31f{bottom:357.480000px;}
.y2d5{bottom:357.956913px;}
.y1be{bottom:360.210856px;}
.y139{bottom:362.819511px;}
.y16c{bottom:364.979424px;}
.y87{bottom:367.679172px;}
.y40{bottom:368.626320px;}
.y263{bottom:371.006238px;}
.y1e0{bottom:372.179844px;}
.y32{bottom:374.220000px;}
.y3e2{bottom:374.580000px;}
.y3ad{bottom:377.100000px;}
.y2cc{bottom:377.489901px;}
.y2d4{bottom:378.567552px;}
.y238{bottom:378.569511px;}
.y180{bottom:378.569664px;}
.y227{bottom:379.558146px;}
.ye8{bottom:381.269880px;}
.y205{bottom:381.719280px;}
.y36d{bottom:383.040000px;}
.y3e3{bottom:384.300000px;}
.y114{bottom:384.690261px;}
.y34f{bottom:385.020000px;}
.y138{bottom:385.409763px;}
.y40d{bottom:385.920000px;}
.y3ae{bottom:386.820000px;}
.y16b{bottom:387.569676px;}
.y86{bottom:390.269424px;}
.yad{bottom:393.060450px;}
.y262{bottom:393.596490px;}
.y3f{bottom:394.367940px;}
.yac{bottom:394.589424px;}
.y1df{bottom:394.770096px;}
.y1bf{bottom:396.840854px;}
.y2d3{bottom:399.088011px;}
.y2cb{bottom:399.089514px;}
.y2c9{bottom:399.989811px;}
.y30{bottom:400.140000px;}
.y237{bottom:401.159763px;}
.y17f{bottom:401.159916px;}
.y40c{bottom:401.400000px;}
.y226{bottom:402.148398px;}
.ye7{bottom:403.860132px;}
.y204{bottom:404.309532px;}
.y137{bottom:408.090411px;}
.y85{bottom:412.859676px;}
.y3e0{bottom:414.720000px;}
.y261{bottom:416.186742px;}
.y3ab{bottom:417.240000px;}
.y1de{bottom:417.360348px;}
.y2d2{bottom:419.608470px;}
.y2ca{bottom:419.609973px;}
.y3e{bottom:420.288840px;}
.y2c8{bottom:420.600450px;}
.y113{bottom:422.220636px;}
.y40b{bottom:423.720000px;}
.y17e{bottom:423.840753px;}
.y3e1{bottom:424.440000px;}
.y16a{bottom:425.189676px;}
.y2e{bottom:426.060000px;}
.ye6{bottom:426.450384px;}
.y3ac{bottom:426.960000px;}
.y203{bottom:426.988722px;}
.yab{bottom:432.119613px;}
.y1c0{bottom:433.470852px;}
.y260{bottom:438.776994px;}
.y225{bottom:439.769172px;}
.y1dd{bottom:439.950600px;}
.y31e{bottom:441.540000px;}
.y136{bottom:445.619676px;}
.y409{bottom:446.040000px;}
.y3d{bottom:446.209740px;}
.ye5{bottom:449.129574px;}
.y84{bottom:450.481476px;}
.y2c7{bottom:451.016346px;}
.y2d{bottom:451.800000px;}
.yaa{bottom:454.799676px;}
.y3de{bottom:455.040000px;}
.y40a{bottom:455.940000px;}
.y3aa{bottom:457.380000px;}
.y17d{bottom:457.770459px;}
.y236{bottom:457.772628px;}
.y112{bottom:459.841410px;}
.y224{bottom:462.359424px;}
.y169{bottom:462.809574px;}
.y202{bottom:464.518911px;}
.y3df{bottom:464.760000px;}
.y1c1{bottom:470.191258px;}
.y2c6{bottom:471.536805px;}
.ye4{bottom:471.719826px;}
.y3c{bottom:471.951360px;}
.y83{bottom:473.160666px;}
.y1dc{bottom:476.040600px;}
.y25f{bottom:476.397768px;}
.y1db{bottom:477.570450px;}
.y66{bottom:477.747120px;}
.y3a9{bottom:479.880000px;}
.y111{bottom:482.520600px;}
.y135{bottom:483.239424px;}
.y223{bottom:484.949676px;}
.y407{bottom:486.360000px;}
.y201{bottom:487.198101px;}
.y145{bottom:488.638533px;}
.ya9{bottom:490.890450px;}
.y17c{bottom:491.790891px;}
.y235{bottom:491.793060px;}
.y2c5{bottom:492.057264px;}
.ya8{bottom:492.418452px;}
.y18c{bottom:492.780000px;}
.y3dd{bottom:495.180000px;}
.y408{bottom:496.080000px;}
.y18b{bottom:496.110295px;}
.y3b{bottom:497.872260px;}
.y25e{bottom:498.988020px;}
.y168{bottom:500.430348px;}
.y106{bottom:501.510348px;}
.y3a8{bottom:502.200000px;}
.y1c2{bottom:506.821256px;}
.ye3{bottom:509.339676px;}
.y82{bottom:510.690855px;}
.y2c4{bottom:512.667903px;}
.y198{bottom:512.760450px;}
.y1e2{bottom:514.018542px;}
.y33d{bottom:515.160000px;}
.y1da{bottom:515.189676px;}
.y65{bottom:515.367894px;}
.y110{bottom:517.440600px;}
.y3da{bottom:517.500000px;}
.y24b{bottom:519.240450px;}
.y134{bottom:520.860198px;}
.y25d{bottom:521.668857px;}
.y222{bottom:522.569676px;}
.y167{bottom:523.020600px;}
.y3a{bottom:523.793160px;}
.y105{bottom:524.101260px;}
.y3a7{bottom:524.520000px;}
.y200{bottom:524.818875px;}
.y144{bottom:526.259307px;}
.y406{bottom:526.500000px;}
.y3db{bottom:527.220000px;}
.ya7{bottom:529.948641px;}
.y197{bottom:530.040694px;}
.y33b{bottom:531.000000px;}
.y3dc{bottom:531.720000px;}
.y2c3{bottom:533.098182px;}
.y423{bottom:536.580000px;}
.y1e1{bottom:536.608794px;}
.y24a{bottom:537.059884px;}
.y133{bottom:543.448425px;}
.y1c3{bottom:543.451254px;}
.ye2{bottom:545.430450px;}
.y18e{bottom:546.420450px;}
.y104{bottom:546.780198px;}
.y339{bottom:546.840000px;}
.ye1{bottom:546.958398px;}
.y1ff{bottom:547.409127px;}
.y81{bottom:548.311629px;}
.y405{bottom:548.820000px;}
.y143{bottom:548.849559px;}
.y39{bottom:549.714060px;}
.ya6{bottom:552.627831px;}
.y1d9{bottom:552.810297px;}
.y64{bottom:552.988668px;}
.y241{bottom:554.160450px;}
.y2c2{bottom:554.787975px;}
.y2ba{bottom:555.778452px;}
.y166{bottom:557.940450px;}
.y10f{bottom:559.199046px;}
.y221{bottom:560.189676px;}
.y3d7{bottom:562.320000px;}
.y337{bottom:562.680000px;}
.y3a5{bottom:569.160000px;}
.y103{bottom:569.369676px;}
.y1fe{bottom:569.999379px;}
.y80{bottom:570.990819px;}
.y404{bottom:571.320000px;}
.y142{bottom:571.439811px;}
.y3d8{bottom:572.040000px;}
.ya5{bottom:575.218083px;}
.y2c1{bottom:575.218254px;}
.y38{bottom:575.455680px;}
.y2b9{bottom:576.298911px;}
.y3d9{bottom:576.540000px;}
.y132{bottom:577.468857px;}
.y3a6{bottom:578.880000px;}
.y1c4{bottom:580.081252px;}
.y10e{bottom:581.878236px;}
.y18f{bottom:582.689911px;}
.ye0{bottom:584.579172px;}
.y335{bottom:587.520000px;}
.y242{bottom:589.800010px;}
.y25a{bottom:589.978038px;}
.y1d8{bottom:590.431071px;}
.y63{bottom:590.609442px;}
.y1fd{bottom:592.589631px;}
.y7f{bottom:593.581071px;}
.y403{bottom:593.640000px;}
.y220{bottom:596.280450px;}
.y2c0{bottom:596.908047px;}
.y2b8{bottom:596.909550px;}
.y2fb{bottom:597.630450px;}
.ya4{bottom:597.808335px;}
.y21f{bottom:597.809424px;}
.y165{bottom:599.789676px;}
.y37{bottom:601.376580px;}
.y333{bottom:603.360000px;}
.y10d{bottom:604.468488px;}
.ycc{bottom:605.100729px;}
.y102{bottom:605.460450px;}
.y3d4{bottom:606.960000px;}
.y101{bottom:606.989676px;}
.ydf{bottom:607.169424px;}
.y3a2{bottom:609.480000px;}
.y141{bottom:610.229955px;}
.y131{bottom:611.489289px;}
.y259{bottom:612.568290px;}
.y1d7{bottom:613.021323px;}
.y2eb{bottom:614.099280px;}
.y1fc{bottom:615.179883px;}
.y422{bottom:615.960000px;}
.y7e{bottom:616.171323px;}
.y1c5{bottom:616.801658px;}
.y3d6{bottom:617.040000px;}
.y2bf{bottom:617.338326px;}
.y2b7{bottom:617.339829px;}
.y190{bottom:618.869954px;}
.y3a4{bottom:619.200000px;}
.ya3{bottom:620.398587px;}
.y243{bottom:625.350512px;}
.y10c{bottom:627.058740px;}
.y36{bottom:627.297480px;}
.y62{bottom:628.230216px;}
.y331{bottom:628.380000px;}
.yde{bottom:629.759676px;}
.y285{bottom:631.741953px;}
.y140{bottom:632.729622px;}
.y400{bottom:633.780000px;}
.y258{bottom:635.249127px;}
.y21e{bottom:635.430198px;}
.ycb{bottom:636.780774px;}
.y164{bottom:637.410261px;}
.y420{bottom:638.280000px;}
.y2be{bottom:639.028119px;}
.y2b6{bottom:639.029622px;}
.y25c{bottom:642.089262px;}
.ya2{bottom:643.079424px;}
.y100{bottom:643.080450px;}
.y402{bottom:643.500000px;}
.y32f{bottom:644.220000px;}
.yff{bottom:644.609676px;}
.y421{bottom:648.000000px;}
.y1d6{bottom:649.110450px;}
.y39f{bottom:649.620000px;}
.y10b{bottom:649.648992px;}
.y1d5{bottom:650.639424px;}
.y3d3{bottom:651.600000px;}
.y2ea{bottom:651.720054px;}
.y7d{bottom:652.260450px;}
.y1fb{bottom:652.800657px;}
.y35{bottom:653.218380px;}
.y7c{bottom:653.789172px;}
.y284{bottom:654.332205px;}
.y2fa{bottom:654.600450px;}
.y191{bottom:655.049997px;}
.y257{bottom:657.839379px;}
.y21d{bottom:658.019424px;}
.y3a1{bottom:659.340000px;}
.yca{bottom:659.371026px;}
.y2bd{bottom:659.548578px;}
.y2b5{bottom:659.550081px;}
.y244{bottom:660.990073px;}
.y401{bottom:661.320000px;}
.y1a9{bottom:664.679514px;}
.ya1{bottom:665.669676px;}
.y61{bottom:665.850990px;}
.ydd{bottom:667.379676px;}
.y32d{bottom:669.060000px;}
.y13f{bottom:671.519766px;}
.y3d2{bottom:673.920000px;}
.y1a8{bottom:674.579694px;}
.y163{bottom:674.941323px;}
.y1fa{bottom:675.479847px;}
.y3a0{bottom:677.160000px;}
.y2f9{bottom:677.190198px;}
.y41e{bottom:678.420000px;}
.y34{bottom:678.960000px;}
.y2bc{bottom:680.069037px;}
.y2b4{bottom:680.070540px;}
.yc9{bottom:681.961278px;}
.y2b2{bottom:682.049991px;}
.yfe{bottom:682.230198px;}
.y32b{bottom:684.900000px;}
.y10a{bottom:687.269766px;}
.y1d4{bottom:688.260198px;}
.y41f{bottom:688.320000px;}
.y2e9{bottom:689.340828px;}
.y192{bottom:691.230040px;}
.y7b{bottom:691.409946px;}
.y3fe{bottom:691.920000px;}
.y283{bottom:691.951332px;}
.y13e{bottom:694.110018px;}
.y256{bottom:695.460153px;}
.y21c{bottom:695.640198px;}
.y3cf{bottom:696.420000px;}
.y245{bottom:696.629633px;}
.y1a7{bottom:697.169946px;}
.y60{bottom:697.440198px;}
.y1f9{bottom:698.070099px;}
.y2f8{bottom:699.780450px;}
.y2bb{bottom:701.578470px;}
.y2b3{bottom:701.579973px;}
.y3ff{bottom:701.640000px;}
.y2b1{bottom:702.570450px;}
.ya0{bottom:703.289424px;}
.yc8{bottom:704.551530px;}
.yfd{bottom:704.818704px;}
.y33{bottom:704.880000px;}
.ydc{bottom:704.997219px;}
.y348{bottom:705.780000px;}
.y3d1{bottom:706.140000px;}
.y39c{bottom:707.760000px;}
.y329{bottom:709.740000px;}
.y109{bottom:709.860018px;}
.y1d3{bottom:710.849676px;}
.y2e8{bottom:711.931080px;}
.y162{bottom:712.559676px;}
.y7a{bottom:714.000198px;}
.y282{bottom:714.630522px;}
.y39e{bottom:717.480000px;}
.y255{bottom:718.050405px;}
.y21b{bottom:718.231071px;}
.y41d{bottom:718.740000px;}
.y1a6{bottom:719.760198px;}
.y5f{bottom:720.030198px;}
.y1f8{bottom:720.660351px;}
.y346{bottom:721.620000px;}
.y3d0{bottom:723.960000px;}
.y2a7{bottom:723.988380px;}
.y327{bottom:725.580000px;}
.yc7{bottom:727.230720px;}
.y193{bottom:727.410083px;}
.y13d{bottom:728.130018px;}
.y31{bottom:730.800000px;}
.y3fc{bottom:732.060000px;}
.y246{bottom:732.180135px;}
.y2e7{bottom:734.610270px;}
.y39d{bottom:735.300000px;}
.y79{bottom:736.590036px;}
.y281{bottom:737.220774px;}
.y2f7{bottom:737.400297px;}
.y344{bottom:737.460000px;}
.y254{bottom:740.640657px;}
.y9f{bottom:740.910198px;}
.y21a{bottom:740.910261px;}
.y41c{bottom:741.060000px;}
.y3fd{bottom:741.780000px;}
.y1a5{bottom:742.439388px;}
.yfc{bottom:742.439478px;}
.ydb{bottom:742.617993px;}
.y5e{bottom:742.619631px;}
.y108{bottom:743.880018px;}
.y2a6{bottom:744.508839px;}
.y2b0{bottom:745.586490px;}
.y1d2{bottom:746.940450px;}
.y1d1{bottom:748.469676px;}
.y161{bottom:750.181017px;}
.y3ce{bottom:754.380000px;}
.y2f{bottom:756.720000px;}
.y2e6{bottom:757.200522px;}
.y324{bottom:757.620000px;}
.y1f7{bottom:758.281125px;}
.y78{bottom:759.180288px;}
.y280{bottom:759.811026px;}
.y2f6{bottom:759.990549px;}
.y341{bottom:760.680000px;}
.y13c{bottom:762.150450px;}
.y149{bottom:763.140000px;}
.y253{bottom:763.230909px;}
.y41b{bottom:763.380000px;}
.y9e{bottom:763.500450px;}
.y194{bottom:763.679544px;}
.yc6{bottom:764.760909px;}
.y2a5{bottom:765.029298px;}
.y1a4{bottom:765.029640px;}
.yfb{bottom:765.029730px;}
.yda{bottom:765.208245px;}
.y39b{bottom:765.720000px;}
.y2af{bottom:766.106949px;}
.y148{bottom:766.651713px;}
.y247{bottom:767.819696px;}
.y3fa{bottom:772.200000px;}
.y3cc{bottom:776.700000px;}
.y107{bottom:777.900450px;}
.y219{bottom:778.439052px;}
.y120{bottom:778.890000px;}
.y5d{bottom:780.240405px;}
.y321{bottom:780.479850px;}
.y1f6{bottom:780.871377px;}
.y77{bottom:781.861125px;}
.y3fb{bottom:782.100000px;}
.y11f{bottom:782.218849px;}
.y1e4{bottom:782.220295px;}
.y1af{bottom:782.220450px;}
.y1d0{bottom:784.560450px;}
.y418{bottom:785.700000px;}
.y158{bottom:785.730450px;}
.y252{bottom:785.910099px;}
.y1cf{bottom:786.089622px;}
.y3cd{bottom:786.600000px;}
.y2ae{bottom:786.627408px;}
.y2a4{bottom:786.628911px;}
.yc5{bottom:787.440099px;}
.yfa{bottom:787.619982px;}
.yd9{bottom:787.798497px;}
.y160{bottom:787.800144px;}
.y39a{bottom:788.040000px;}
.y2e5{bottom:794.821296px;}
.y41a{bottom:795.600000px;}
.y12c{bottom:796.260450px;}
.y29{bottom:796.320000px;}
.y157{bottom:796.620450px;}
.y27f{bottom:797.430153px;}
.y2f5{bottom:797.611323px;}
.y9d{bottom:798.420450px;}
.y1ed{bottom:798.600450px;}
.y195{bottom:799.859587px;}
.y1ba{bottom:801.840450px;}
.y1a3{bottom:802.650414px;}
.y248{bottom:803.370198px;}
.y1f5{bottom:803.461629px;}
.y2ad{bottom:807.147867px;}
.y2a3{bottom:807.239550px;}
.y2b{bottom:807.300000px;}
.yc4{bottom:810.030351px;}
.y31c{bottom:810.180000px;}
.yf9{bottom:810.210234px;}
.y398{bottom:810.360000px;}
.yd8{bottom:810.388749px;}
.y15f{bottom:810.390396px;}
.y1ec{bottom:810.750450px;}
.y156{bottom:811.020450px;}
.y12b{bottom:811.469824px;}
.y5c{bottom:811.920198px;}
.y3f7{bottom:812.520000px;}
.y270{bottom:812.643524px;}
.y419{bottom:813.420000px;}
.y10{bottom:815.940000px;}
.y218{bottom:816.059826px;}
.y3ca{bottom:817.020000px;}
.y2e4{bottom:817.411548px;}
.y304{bottom:817.590450px;}
.y76{bottom:819.480252px;}
.y1b9{bottom:819.662583px;}
.y27e{bottom:820.020405px;}
.y3f9{bottom:822.240000px;}
.y3f8{bottom:822.600000px;}
.y251{bottom:823.440288px;}
.y1ce{bottom:823.710396px;}
.y27{bottom:824.040000px;}
.y1a2{bottom:825.240666px;}
.y1f4{bottom:826.140819px;}
.y3cb{bottom:826.740000px;}
.y2a2{bottom:827.669829px;}
.y14b{bottom:827.670450px;}
.y122{bottom:827.850450px;}
.y1eb{bottom:828.030826px;}
.y2ac{bottom:828.747480px;}
.y267{bottom:829.830450px;}
.y30d{bottom:829.980000px;}
.y397{bottom:832.860000px;}
.y5b{bottom:834.510198px;}
.y2f4{bottom:835.230450px;}
.y196{bottom:836.039630px;}
.y1b0{bottom:836.760450px;}
.y249{bottom:839.009758px;}
.y2e3{bottom:840.001800px;}
.y9c{bottom:840.270348px;}
.y75{bottom:842.070504px;}
.y27d{bottom:842.610657px;}
.y416{bottom:843.840000px;}
.y1f{bottom:844.740000px;}
.y1e5{bottom:845.220450px;}
.y250{bottom:846.119478px;}
.yc3{bottom:847.651125px;}
.y1a1{bottom:847.830918px;}
.yf8{bottom:847.831008px;}
.yd7{bottom:848.009523px;}
.y15e{bottom:848.011170px;}
.y2ab{bottom:849.358119px;}
.y2a1{bottom:849.359622px;}
.y417{bottom:853.560000px;}
.y217{bottom:853.680198px;}
.yf{bottom:854.825760px;}
.y393{bottom:855.180000px;}
.y31a{bottom:855.900000px;}
.y18a{bottom:855.930600px;}
.y5a{bottom:857.100216px;}
.y14c{bottom:857.100234px;}
.y3c8{bottom:857.160000px;}
.y2f3{bottom:857.820702px;}
.y1cd{bottom:861.331170px;}
.y2e2{bottom:862.592052px;}
.y9b{bottom:862.857624px;}
.y1f3{bottom:863.671008px;}
.y123{bottom:864.569901px;}
.y74{bottom:864.660756px;}
.y396{bottom:864.900000px;}
.y27c{bottom:865.289847px;}
.y268{bottom:865.380952px;}
.y3c9{bottom:866.880000px;}
.y24f{bottom:868.709730px;}
.y2aa{bottom:869.788398px;}
.y2a0{bottom:869.789901px;}
.yc2{bottom:870.241377px;}
.yf7{bottom:870.421260px;}
.yd6{bottom:870.599775px;}
.y15d{bottom:870.601422px;}
.y303{bottom:871.049406px;}
.y26{bottom:872.820000px;}
.y1b1{bottom:873.480856px;}
.y216{bottom:876.269676px;}
.ye{bottom:876.967920px;}
.y3f6{bottom:879.480000px;}
.y395{bottom:882.720000px;}
.y414{bottom:883.980000px;}
.y2e1{bottom:885.271242px;}
.y9a{bottom:885.447876px;}
.y1a0{bottom:885.450045px;}
.y1f2{bottom:886.350198px;}
.y14d{bottom:886.530019px;}
.y73{bottom:887.251008px;}
.y27b{bottom:887.880099px;}
.y24e{bottom:891.299982px;}
.y2a9{bottom:891.478191px;}
.y29f{bottom:891.479694px;}
.y29d{bottom:892.379991px;}
.y17b{bottom:892.830756px;}
.yc1{bottom:892.831629px;}
.y234{bottom:892.832619px;}
.yf6{bottom:893.099676px;}
.y15c{bottom:893.280612px;}
.y415{bottom:893.700000px;}
.y59{bottom:894.720990px;}
.y2f2{bottom:895.441476px;}
.y317{bottom:895.500000px;}
.y3c6{bottom:897.300000px;}
.y24{bottom:898.560000px;}
.y1cc{bottom:898.950297px;}
.yd{bottom:899.110080px;}
.y302{bottom:899.489802px;}
.y1e6{bottom:900.120918px;}
.y269{bottom:900.931454px;}
.y124{bottom:901.380027px;}
.y3f5{bottom:901.800000px;}
.y3c7{bottom:907.200000px;}
.y2e0{bottom:907.861494px;}
.y19f{bottom:908.040297px;}
.yd5{bottom:908.220549px;}
.y1f1{bottom:908.940450px;}
.y72{bottom:909.841260px;}
.y1b2{bottom:910.290320px;}
.y27a{bottom:910.470351px;}
.y2a8{bottom:911.908470px;}
.y29e{bottom:911.909973px;}
.y215{bottom:912.360450px;}
.y29c{bottom:912.900450px;}
.y391{bottom:913.140000px;}
.y214{bottom:913.889730px;}
.y315{bottom:915.300000px;}
.y17a{bottom:915.421008px;}
.yc0{bottom:915.421881px;}
.y233{bottom:915.422871px;}
.y14e{bottom:915.959803px;}
.y271{bottom:916.680450px;}
.y2f1{bottom:918.120666px;}
.yc{bottom:921.427200px;}
.y392{bottom:923.040000px;}
.y99{bottom:923.068650px;}
.y3f4{bottom:924.300000px;}
.y22{bottom:924.480000px;}
.y58{bottom:926.310198px;}
.y301{bottom:928.019136px;}
.y24d{bottom:928.920756px;}
.y2df{bottom:930.451746px;}
.y19e{bottom:930.719487px;}
.yf5{bottom:930.720261px;}
.yd4{bottom:930.810801px;}
.y71{bottom:932.520450px;}
.y279{bottom:933.060603px;}
.y26a{bottom:936.481956px;}
.y1cb{bottom:936.571071px;}
.y179{bottom:938.100198px;}
.ybf{bottom:938.101071px;}
.y232{bottom:938.102061px;}
.y125{bottom:938.190153px;}
.y3c4{bottom:942.120000px;}
.yb{bottom:943.200000px;}
.y293{bottom:943.317336px;}
.y1f0{bottom:943.860450px;}
.y14f{bottom:945.389587px;}
.y3f2{bottom:946.620000px;}
.y1b3{bottom:947.010726px;}
.y57{bottom:948.901863px;}
.y213{bottom:951.510504px;}
.y24c{bottom:951.511008px;}
.y3c5{bottom:951.840000px;}
.y2de{bottom:953.041998px;}
.y15b{bottom:953.401053px;}
.y38e{bottom:953.460000px;}
.y272{bottom:953.580153px;}
.y312{bottom:955.080000px;}
.y1e7{bottom:955.110444px;}
.y2f0{bottom:955.650855px;}
.y3f3{bottom:956.340000px;}
.y300{bottom:956.459532px;}
.y98{bottom:960.689424px;}
.y178{bottom:960.690198px;}
.ybe{bottom:960.691323px;}
.y231{bottom:960.692313px;}
.y29b{bottom:963.836292px;}
.y292{bottom:963.837795px;}
.y1d{bottom:964.260000px;}
.y70{bottom:967.440450px;}
.y19d{bottom:968.249676px;}
.yf4{bottom:968.250549px;}
.yd3{bottom:969.600945px;}
.y278{bottom:970.681377px;}
.y26b{bottom:971.942050px;}
.y212{bottom:974.100756px;}
.y1ca{bottom:974.101260px;}
.y150{bottom:974.819372px;}
.y310{bottom:974.880000px;}
.y126{bottom:974.909604px;}
.y2dd{bottom:975.721188px;}
.y1e{bottom:977.220000px;}
.y2ef{bottom:978.330045px;}
.ya{bottom:982.247400px;}
.y3c1{bottom:982.260000px;}
.y97{bottom:983.279676px;}
.y1b4{bottom:983.731132px;}
.y29a{bottom:984.356751px;}
.y291{bottom:984.358254px;}
.y2ff{bottom:984.899928px;}
.y1ef{bottom:985.709946px;}
.y56{bottom:986.520990px;}
.y3f0{bottom:986.760000px;}
.y3c3{bottom:991.980000px;}
.yd2{bottom:992.100612px;}
.y15a{bottom:992.191197px;}
.y38d{bottom:992.520000px;}
.y277{bottom:993.271629px;}
.y1b{bottom:993.960000px;}
.y3f1{bottom:996.480000px;}
.y211{bottom:996.779946px;}
.ybd{bottom:996.780450px;}
.ybc{bottom:998.308146px;}
.y230{bottom:998.311440px;}
.y151{bottom:1004.158643px;}
.y19c{bottom:1004.340450px;}
.y19b{bottom:1005.869523px;}
.yf3{bottom:1005.871323px;}
.y299{bottom:1005.956364px;}
.y290{bottom:1005.957867px;}
.y26c{bottom:1007.492552px;}
.y1ee{bottom:1008.300198px;}
.y308{bottom:1008.540000px;}
.y6f{bottom:1008.569568px;}
.y413{bottom:1009.080000px;}
.y1e8{bottom:1010.010912px;}
.y127{bottom:1011.719729px;}
.y2dc{bottom:1013.251377px;}
.y2fe{bottom:1013.340324px;}
.y159{bottom:1014.781449px;}
.y2ee{bottom:1015.949172px;}
.y276{bottom:1015.950819px;}
.y55{bottom:1018.109613px;}
.y9{bottom:1018.620000px;}
.y30c{bottom:1018.980000px;}
.y210{bottom:1019.370198px;}
.y1b5{bottom:1020.451537px;}
.y96{bottom:1020.900198px;}
.y177{bottom:1020.901323px;}
.y22f{bottom:1020.901692px;}
.y274{bottom:1022.879261px;}
.y38c{bottom:1023.119460px;}
.y298{bottom:1026.476823px;}
.y28f{bottom:1026.568506px;}
.y3bf{bottom:1027.080000px;}
.y17{bottom:1028.160000px;}
.y130{bottom:1028.279109px;}
.y6e{bottom:1030.349496px;}
.yd1{bottom:1030.890756px;}
.y412{bottom:1031.580000px;}
.y1c9{bottom:1031.700450px;}
.y152{bottom:1033.588427px;}
.ybb{bottom:1035.928920px;}
.y2db{bottom:1035.930567px;}
.y3c0{bottom:1036.800000px;}
.y2ed{bottom:1038.539424px;}
.y1a{bottom:1039.680000px;}
.y54{bottom:1040.791323px;}
.y38b{bottom:1041.660000px;}
.y2fd{bottom:1041.780720px;}
.y20f{bottom:1041.960450px;}
.y26d{bottom:1043.043054px;}
.y19a{bottom:1043.488650px;}
.yf2{bottom:1043.489676px;}
.y95{bottom:1043.490450px;}
.y28e{bottom:1046.998785px;}
.y297{bottom:1048.076436px;}
.y128{bottom:1048.529855px;}
.y3ee{bottom:1049.400000px;}
.y273{bottom:1050.780079px;}
.y12f{bottom:1050.869361px;}
.y8{bottom:1052.097840px;}
.y6d{bottom:1052.220009px;}
.yd0{bottom:1053.481008px;}
.y410{bottom:1053.900000px;}
.y176{bottom:1056.990450px;}
.y1b6{bottom:1057.171943px;}
.yba{bottom:1058.519172px;}
.y175{bottom:1058.519676px;}
.y22e{bottom:1058.520819px;}
.y3ef{bottom:1059.120000px;}
.y38a{bottom:1060.379460px;}
.y2ec{bottom:1061.129676px;}
.y153{bottom:1063.018212px;}
.y411{bottom:1063.620000px;}
.y1e9{bottom:1064.911380px;}
.y199{bottom:1066.078902px;}
.y3bc{bottom:1067.220000px;}
.y296{bottom:1068.596895px;}
.y28d{bottom:1068.598398px;}
.y2fc{bottom:1070.310054px;}
.y288{bottom:1070.579352px;}
.y305{bottom:1072.620000px;}
.y1c8{bottom:1073.549694px;}
.y12e{bottom:1073.550198px;}
.y6c{bottom:1073.999937px;}
.y7{bottom:1074.065040px;}
.ycf{bottom:1076.160198px;}
.y20e{bottom:1076.880450px;}
.y3be{bottom:1076.940000px;}
.y53{bottom:1078.410450px;}
.y26e{bottom:1078.593556px;}
.y389{bottom:1078.920000px;}
.y94{bottom:1079.580450px;}
.y13{bottom:1081.080000px;}
.yb9{bottom:1081.109424px;}
.y93{bottom:1081.111071px;}
.yf1{bottom:1081.111323px;}
.y129{bottom:1085.249306px;}
.y3ed{bottom:1089.540000px;}
.y295{bottom:1090.196508px;}
.y28c{bottom:1090.198011px;}
.y28a{bottom:1091.188488px;}
.y287{bottom:1091.189991px;}
.y154{bottom:1092.447996px;}
.y1b7{bottom:1093.892349px;}
.y40e{bottom:1094.040000px;}
.y6{bottom:1095.837840px;}
.y6b{bottom:1095.870450px;}
.y12d{bottom:1096.139946px;}
.y174{bottom:1096.140198px;}
.yce{bottom:1098.750450px;}
.y307{bottom:1101.240000px;}
.yb8{bottom:1103.699676px;}
.y40f{bottom:1103.760000px;}
.y294{bottom:1110.716967px;}
.y28b{bottom:1110.718470px;}
.y289{bottom:1111.708947px;}
.y286{bottom:1111.710450px;}
.y3bb{bottom:1111.860000px;}
.y26f{bottom:1114.144058px;}
.y5{bottom:1117.980000px;}
.y92{bottom:1118.730198px;}
.y52{bottom:1119.270450px;}
.y1ea{bottom:1119.900906px;}
.y155{bottom:1121.877780px;}
.y12a{bottom:1122.059432px;}
.y11{bottom:1126.800000px;}
.y1b8{bottom:1130.612755px;}
.y6a{bottom:1131.240450px;}
.y3b9{bottom:1134.180000px;}
.ycd{bottom:1134.210450px;}
.y275{bottom:1134.300450px;}
.y91{bottom:1141.320450px;}
.y147{bottom:1141.410450px;}
.y11e{bottom:1142.040600px;}
.y2{bottom:1227.240000px;}
.y1{bottom:1247.400000px;}
.h63{height:15.477539px;}
.h38{height:16.200000px;}
.h41{height:16.920000px;}
.h60{height:19.800000px;}
.h13{height:20.700000px;}
.h67{height:22.320000px;}
.h6b{height:22.321500px;}
.h6c{height:22.498500px;}
.h6f{height:22.500000px;}
.hb{height:26.208984px;}
.h3a{height:27.056777px;}
.h4c{height:27.057598px;}
.h14{height:27.720000px;}
.h44{height:28.182656px;}
.h4e{height:29.516895px;}
.h56{height:29.517715px;}
.h10{height:29.700000px;}
.h7{height:29.880000px;}
.h43{height:33.306328px;}
.h24{height:33.431484px;}
.he{height:34.200000px;}
.h17{height:34.413750px;}
.h39{height:34.435898px;}
.h4b{height:34.436719px;}
.h64{height:35.120039px;}
.h42{height:35.868984px;}
.h34{height:36.217441px;}
.h37{height:36.896016px;}
.h4a{height:36.896836px;}
.h40{height:38.430820px;}
.h73{height:39.313477px;}
.h6e{height:40.140000px;}
.h70{height:40.141500px;}
.h71{height:40.318500px;}
.h69{height:40.320000px;}
.h62{height:41.479805px;}
.h11{height:43.506914px;}
.h3{height:44.149219px;}
.h76{height:44.638500px;}
.h74{height:44.640000px;}
.h75{height:44.820000px;}
.h9{height:45.720000px;}
.h68{height:46.432617px;}
.h59{height:46.735664px;}
.h1e{height:47.351250px;}
.hf{height:51.385430px;}
.h66{height:51.387590px;}
.h25{height:51.694980px;}
.ha{height:52.417969px;}
.h5a{height:52.575645px;}
.hd{height:52.920000px;}
.h5{height:54.432000px;}
.h4{height:55.598400px;}
.h19{height:56.647793px;}
.h3f{height:56.648549px;}
.h1c{height:56.648729px;}
.h1b{height:56.648801px;}
.h48{height:56.649413px;}
.h3b{height:56.649809px;}
.h2a{height:56.650889px;}
.h1d{height:56.651069px;}
.h1a{height:56.651141px;}
.h47{height:56.651297px;}
.h2d{height:56.651489px;}
.h3e{height:56.651897px;}
.h52{height:56.653385px;}
.h31{height:56.654777px;}
.h35{height:56.654993px;}
.h3d{height:56.655893px;}
.h72{height:56.957344px;}
.h22{height:57.093937px;}
.h46{height:57.093949px;}
.h45{height:57.095173px;}
.h51{height:57.096217px;}
.h54{height:57.096229px;}
.h33{height:57.096697px;}
.h2f{height:57.097045px;}
.h4f{height:57.098053px;}
.h30{height:57.098197px;}
.h27{height:57.098449px;}
.h20{height:57.099097px;}
.h36{height:57.099937px;}
.h57{height:57.100465px;}
.h2c{height:57.100537px;}
.h2e{height:57.101137px;}
.h29{height:57.101545px;}
.h55{height:57.102205px;}
.h23{height:57.103561px;}
.h28{height:57.108745px;}
.h2b{height:57.110365px;}
.h3c{height:57.612832px;}
.h6a{height:57.960000px;}
.h77{height:58.138500px;}
.h6d{height:58.140000px;}
.h53{height:60.945722px;}
.h49{height:60.954398px;}
.h32{height:60.956162px;}
.h4d{height:60.958142px;}
.h5d{height:61.329023px;}
.h5b{height:61.910156px;}
.h21{height:62.767793px;}
.h26{height:63.217441px;}
.h5e{height:64.078500px;}
.hc{height:69.715898px;}
.h1f{height:73.354043px;}
.h8{height:82.340508px;}
.h18{height:84.058066px;}
.h5c{height:84.060000px;}
.h50{height:84.066298px;}
.h58{height:84.080422px;}
.h6{height:85.971600px;}
.h16{height:104.578500px;}
.h12{height:119.521500px;}
.h5f{height:178.560000px;}
.h65{height:312.841500px;}
.h61{height:368.638500px;}
.h15{height:465.661500px;}
.h2{height:1262.866500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:68.220000px;}
.w6{width:73.170000px;}
.w8{width:83.970000px;}
.w7{width:87.480000px;}
.wa{width:342.000000px;}
.wb{width:342.180000px;}
.wd{width:618.120000px;}
.w3{width:669.958500px;}
.w9{width:684.180000px;}
.w5{width:892.500000px;}
.w4{width:892.830000px;}
.w2{width:892.965000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x23{left:66.600000px;}
.x38{left:77.400000px;}
.x2b{left:80.640000px;}
.x51{left:103.320000px;}
.xe{left:106.200000px;}
.x1{left:111.600000px;}
.x3{left:114.300000px;}
.x10{left:119.970000px;}
.xd{left:122.400000px;}
.x5{left:127.260000px;}
.x4b{left:130.500000px;}
.x18{left:133.289271px;}
.x11{left:135.000522px;}
.x42{left:136.710090px;}
.x61{left:138.240000px;}
.x35{left:142.830675px;}
.x52{left:146.339640px;}
.x54{left:147.780000px;}
.x28{left:148.859685px;}
.x36{left:155.069721px;}
.x60{left:156.960000px;}
.x19{left:160.288542px;}
.x43{left:163.711008px;}
.x12{left:164.965806px;}
.x3f{left:167.670000px;}
.x1a{left:170.370000px;}
.x1b{left:172.170000px;}
.x34{left:174.870000px;}
.x29{left:179.280000px;}
.x15{left:182.250000px;}
.x2e{left:185.130502px;}
.xa{left:187.380000px;}
.x21{left:190.440000px;}
.x2d{left:191.790526px;}
.x45{left:194.938857px;}
.x2c{left:198.360000px;}
.x25{left:200.521062px;}
.x3b{left:204.119969px;}
.x24{left:206.910531px;}
.x1e{left:209.339829px;}
.x3a{left:210.870193px;}
.x1f{left:212.489757px;}
.x2f{left:214.020000px;}
.x55{left:215.280000px;}
.x39{left:217.530000px;}
.x46{left:221.580156px;}
.x26{left:228.241508px;}
.x3c{left:233.100589px;}
.x32{left:234.180000px;}
.x17{left:237.600000px;}
.x44{left:239.490000px;}
.x56{left:241.560000px;}
.x40{left:243.180000px;}
.x1c{left:244.980000px;}
.x20{left:248.580000px;}
.x2{left:251.100000px;}
.x30{left:265.589766px;}
.x59{left:267.660000px;}
.x58{left:270.900000px;}
.x6{left:278.280000px;}
.x41{left:284.040000px;}
.x4c{left:297.629028px;}
.x4d{left:308.339406px;}
.x57{left:324.360000px;}
.x3d{left:330.930000px;}
.x3e{left:377.280000px;}
.x2a{left:402.389563px;}
.x37{left:404.550000px;}
.x22{left:409.950483px;}
.x4a{left:426.960000px;}
.x31{left:428.400000px;}
.x33{left:430.290000px;}
.x16{left:431.460000px;}
.x14{left:432.990000px;}
.xb{left:439.560000px;}
.x13{left:446.490000px;}
.x5a{left:448.200000px;}
.xf{left:453.690000px;}
.x47{left:471.690000px;}
.x6a{left:478.440000px;}
.x6b{left:480.240000px;}
.xc{left:482.760000px;}
.x7{left:490.680000px;}
.x69{left:508.860000px;}
.x62{left:516.960000px;}
.x49{left:528.389803px;}
.x50{left:539.639082px;}
.x4e{left:542.159613px;}
.x8{left:544.680000px;}
.x68{left:551.160000px;}
.x4f{left:552.869991px;}
.x5d{left:567.000000px;}
.x9{left:571.140000px;}
.x5f{left:574.200000px;}
.x5c{left:576.540000px;}
.x48{left:582.299914px;}
.x5e{left:600.300000px;}
.x64{left:606.960000px;}
.x67{left:609.660000px;}
.x66{left:612.900000px;}
.x63{left:625.680000px;}
.x65{left:644.400000px;}
.x5b{left:685.080000px;}
.x53{left:687.240000px;}
.x1d{left:705.240000px;}
.x27{left:716.492279px;}
@media print{
.v6{vertical-align:-24.000000pt;}
.v3{vertical-align:-18.560000pt;}
.v5{vertical-align:-5.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.440000pt;}
.v1{vertical-align:18.561472pt;}
.v7{vertical-align:21.441536pt;}
.v4{vertical-align:24.000000pt;}
.ls35{letter-spacing:-9.867360pt;}
.ls94{letter-spacing:-2.121563pt;}
.ls76{letter-spacing:-2.121499pt;}
.ls9a{letter-spacing:-1.919104pt;}
.ls7e{letter-spacing:-1.862208pt;}
.ls84{letter-spacing:-1.597783pt;}
.ls85{letter-spacing:-1.579460pt;}
.ls95{letter-spacing:-1.555109pt;}
.lsb8{letter-spacing:-1.551840pt;}
.ls77{letter-spacing:-1.551544pt;}
.lsad{letter-spacing:-1.544554pt;}
.lsba{letter-spacing:-1.415339pt;}
.lsa0{letter-spacing:-1.397081pt;}
.ls80{letter-spacing:-1.384232pt;}
.lsb{letter-spacing:-1.354240pt;}
.ls92{letter-spacing:-1.266609pt;}
.ls74{letter-spacing:-1.266580pt;}
.lsab{letter-spacing:-1.228227pt;}
.ls99{letter-spacing:-1.117878pt;}
.lse1{letter-spacing:-0.973440pt;}
.lsd7{letter-spacing:-0.943360pt;}
.lsd5{letter-spacing:-0.900480pt;}
.lsbb{letter-spacing:-0.844413pt;}
.lsd9{letter-spacing:-0.814720pt;}
.lse{letter-spacing:-0.704000pt;}
.lsd8{letter-spacing:-0.643200pt;}
.ls82{letter-spacing:-0.610998pt;}
.lsa3{letter-spacing:-0.591456pt;}
.ls5{letter-spacing:-0.534400pt;}
.lse7{letter-spacing:-0.528000pt;}
.lse5{letter-spacing:-0.432000pt;}
.ls8a{letter-spacing:-0.339648pt;}
.ls7{letter-spacing:-0.320640pt;}
.ls93{letter-spacing:-0.300017pt;}
.lse0{letter-spacing:-0.299520pt;}
.ls36{letter-spacing:-0.298656pt;}
.ls75{letter-spacing:-0.295532pt;}
.ls83{letter-spacing:-0.289175pt;}
.ls8d{letter-spacing:-0.281088pt;}
.ls57{letter-spacing:-0.269376pt;}
.lsd1{letter-spacing:-0.265600pt;}
.ls7c{letter-spacing:-0.263520pt;}
.lsa5{letter-spacing:-0.262080pt;}
.ls34{letter-spacing:-0.259200pt;}
.ls6d{letter-spacing:-0.235872pt;}
.lsa8{letter-spacing:-0.232128pt;}
.ls6{letter-spacing:-0.213760pt;}
.ls5f{letter-spacing:-0.213408pt;}
.lsd0{letter-spacing:-0.212480pt;}
.lse8{letter-spacing:-0.192000pt;}
.lsa4{letter-spacing:-0.190944pt;}
.lsd4{letter-spacing:-0.171520pt;}
.ls8e{letter-spacing:-0.163968pt;}
.ls56{letter-spacing:-0.160992pt;}
.ls81{letter-spacing:-0.149917pt;}
.ls91{letter-spacing:-0.148731pt;}
.ls73{letter-spacing:-0.148727pt;}
.ls4{letter-spacing:-0.138240pt;}
.ls88{letter-spacing:-0.127296pt;}
.lsc5{letter-spacing:-0.122912pt;}
.ls2c{letter-spacing:-0.120000pt;}
.lsa6{letter-spacing:-0.119808pt;}
.lsa{letter-spacing:-0.117760pt;}
.ls6e{letter-spacing:-0.116064pt;}
.ls10{letter-spacing:-0.106240pt;}
.ls71{letter-spacing:-0.101088pt;}
.lsea{letter-spacing:-0.096000pt;}
.ls60{letter-spacing:-0.086112pt;}
.ls63{letter-spacing:-0.074880pt;}
.lsc8{letter-spacing:-0.074816pt;}
.ls70{letter-spacing:-0.071136pt;}
.lsbf{letter-spacing:-0.069472pt;}
.ls43{letter-spacing:-0.068352pt;}
.ls32{letter-spacing:-0.067200pt;}
.lsc3{letter-spacing:-0.064128pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls27{letter-spacing:-0.059808pt;}
.lsb9{letter-spacing:-0.058784pt;}
.ls2e{letter-spacing:-0.057600pt;}
.lsc6{letter-spacing:-0.053440pt;}
.lsd2{letter-spacing:-0.053120pt;}
.lsc4{letter-spacing:-0.048096pt;}
.ls28{letter-spacing:-0.043200pt;}
.lsd3{letter-spacing:-0.042880pt;}
.ls47{letter-spacing:-0.042752pt;}
.lsca{letter-spacing:-0.042720pt;}
.ls30{letter-spacing:-0.038400pt;}
.ls62{letter-spacing:-0.037440pt;}
.ls72{letter-spacing:-0.037408pt;}
.ls7d{letter-spacing:-0.033696pt;}
.ls2a{letter-spacing:-0.033600pt;}
.lsaa{letter-spacing:-0.032064pt;}
.ls31{letter-spacing:-0.028800pt;}
.ls48{letter-spacing:-0.026720pt;}
.ls98{letter-spacing:-0.024192pt;}
.ls4e{letter-spacing:-0.022464pt;}
.lsb0{letter-spacing:-0.021376pt;}
.lsa9{letter-spacing:-0.020736pt;}
.ls2d{letter-spacing:-0.019200pt;}
.ls46{letter-spacing:-0.016032pt;}
.ls2f{letter-spacing:-0.014400pt;}
.ls90{letter-spacing:-0.011712pt;}
.ls4d{letter-spacing:-0.011232pt;}
.ls45{letter-spacing:-0.010688pt;}
.ls29{letter-spacing:-0.009600pt;}
.lsc7{letter-spacing:-0.005344pt;}
.ls33{letter-spacing:-0.004800pt;}
.ls6f{letter-spacing:-0.003744pt;}
.ls3{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.005344pt;}
.ls1e{letter-spacing:0.009600pt;}
.ls40{letter-spacing:0.010688pt;}
.ls6c{letter-spacing:0.011232pt;}
.ls3c{letter-spacing:0.011712pt;}
.ls20{letter-spacing:0.014400pt;}
.lsdd{letter-spacing:0.016000pt;}
.lsb4{letter-spacing:0.016032pt;}
.ls2b{letter-spacing:0.017568pt;}
.lsae{letter-spacing:0.017888pt;}
.ls1d{letter-spacing:0.019200pt;}
.ls5d{letter-spacing:0.019520pt;}
.ls3d{letter-spacing:0.021376pt;}
.ls4a{letter-spacing:0.023424pt;}
.ls5c{letter-spacing:0.026208pt;}
.lsb3{letter-spacing:0.026720pt;}
.ls79{letter-spacing:0.027345pt;}
.ls21{letter-spacing:0.029280pt;}
.ls51{letter-spacing:0.029824pt;}
.lsa2{letter-spacing:0.029952pt;}
.lsc0{letter-spacing:0.030386pt;}
.ls41{letter-spacing:0.032064pt;}
.ls17{letter-spacing:0.033600pt;}
.ls1f{letter-spacing:0.035136pt;}
.ls37{letter-spacing:0.037280pt;}
.ls42{letter-spacing:0.037408pt;}
.ls54{letter-spacing:0.037440pt;}
.ls1a{letter-spacing:0.040320pt;}
.ls26{letter-spacing:0.040992pt;}
.ls3e{letter-spacing:0.042752pt;}
.ls24{letter-spacing:0.043200pt;}
.ls8c{letter-spacing:0.044736pt;}
.lsa1{letter-spacing:0.044928pt;}
.ls19{letter-spacing:0.046848pt;}
.lsc2{letter-spacing:0.048096pt;}
.ls67{letter-spacing:0.052192pt;}
.ls13{letter-spacing:0.052704pt;}
.lse2{letter-spacing:0.053120pt;}
.lsb5{letter-spacing:0.053440pt;}
.ls23{letter-spacing:0.057600pt;}
.ls25{letter-spacing:0.058560pt;}
.lsc1{letter-spacing:0.058784pt;}
.ls52{letter-spacing:0.059648pt;}
.ls1c{letter-spacing:0.059840pt;}
.ls55{letter-spacing:0.059904pt;}
.ls59{letter-spacing:0.063648pt;}
.ls18{letter-spacing:0.064160pt;}
.ls15{letter-spacing:0.064416pt;}
.ls49{letter-spacing:0.067392pt;}
.ls14{letter-spacing:0.070272pt;}
.ls38{letter-spacing:0.076128pt;}
.ls11{letter-spacing:0.081984pt;}
.lsb1{letter-spacing:0.082368pt;}
.lsce{letter-spacing:0.085760pt;}
.ls87{letter-spacing:0.086112pt;}
.ls39{letter-spacing:0.087840pt;}
.ls4f{letter-spacing:0.093696pt;}
.ls1b{letter-spacing:0.096000pt;}
.ls5a{letter-spacing:0.097344pt;}
.ls97{letter-spacing:0.099552pt;}
.ls4b{letter-spacing:0.105408pt;}
.ls8b{letter-spacing:0.111264pt;}
.ls96{letter-spacing:0.112320pt;}
.lsaf{letter-spacing:0.117120pt;}
.lsb2{letter-spacing:0.119680pt;}
.ls58{letter-spacing:0.119808pt;}
.ls50{letter-spacing:0.127296pt;}
.lsf{letter-spacing:0.128000pt;}
.lscf{letter-spacing:0.128640pt;}
.ls5b{letter-spacing:0.128832pt;}
.ls0{letter-spacing:0.138240pt;}
.lse4{letter-spacing:0.144000pt;}
.ls3b{letter-spacing:0.151680pt;}
.ls69{letter-spacing:0.153504pt;}
.ls7a{letter-spacing:0.155894pt;}
.ls4c{letter-spacing:0.157248pt;}
.ls9d{letter-spacing:0.172716pt;}
.ls22{letter-spacing:0.179520pt;}
.lsdc{letter-spacing:0.192000pt;}
.ls9f{letter-spacing:0.203421pt;}
.lscb{letter-spacing:0.212480pt;}
.ls9{letter-spacing:0.231040pt;}
.lse3{letter-spacing:0.240000pt;}
.lsc{letter-spacing:0.256000pt;}
.lsd6{letter-spacing:0.257280pt;}
.ls1{letter-spacing:0.276480pt;}
.ls53{letter-spacing:0.303360pt;}
.ls2{letter-spacing:0.345600pt;}
.ls65{letter-spacing:0.368928pt;}
.ls5e{letter-spacing:0.374784pt;}
.ls66{letter-spacing:0.389376pt;}
.lscd{letter-spacing:0.428800pt;}
.lsda{letter-spacing:0.430272pt;}
.ls8{letter-spacing:0.448000pt;}
.lsdb{letter-spacing:0.451520pt;}
.lsbc{letter-spacing:0.790677pt;}
.lsbd{letter-spacing:0.855928pt;}
.ls86{letter-spacing:1.013088pt;}
.ls8f{letter-spacing:1.329312pt;}
.ls7f{letter-spacing:1.398874pt;}
.lscc{letter-spacing:1.487360pt;}
.lsb6{letter-spacing:1.759680pt;}
.ls9c{letter-spacing:1.800085pt;}
.lsb7{letter-spacing:2.289696pt;}
.ls7b{letter-spacing:2.721888pt;}
.ls64{letter-spacing:4.957056pt;}
.ls89{letter-spacing:5.492928pt;}
.lsdf{letter-spacing:6.031360pt;}
.ls44{letter-spacing:7.729920pt;}
.lse6{letter-spacing:10.336000pt;}
.lse9{letter-spacing:11.616000pt;}
.lsde{letter-spacing:24.416000pt;}
.ls6b{letter-spacing:30.451200pt;}
.lsa7{letter-spacing:50.291328pt;}
.ls12{letter-spacing:60.685728pt;}
.ls16{letter-spacing:65.165568pt;}
.ls6a{letter-spacing:89.011200pt;}
.ls61{letter-spacing:106.292256pt;}
.ls68{letter-spacing:165.812640pt;}
.lsc9{letter-spacing:171.020800pt;}
.ls3a{letter-spacing:172.529472pt;}
.ls78{letter-spacing:172.605600pt;}
.lsac{letter-spacing:177.900941pt;}
.ls9b{letter-spacing:210.540102pt;}
.ls9e{letter-spacing:212.780656pt;}
.lsbe{letter-spacing:751.722496pt;}
.ws5d{word-spacing:-250.519836pt;}
.ws5a{word-spacing:-247.957832pt;}
.ws62{word-spacing:-215.318671pt;}
.ws6e{word-spacing:-60.801586pt;}
.ws39{word-spacing:-58.560000pt;}
.ws48{word-spacing:-49.822350pt;}
.ws47{word-spacing:-48.588035pt;}
.ws4f{word-spacing:-47.828869pt;}
.ws40{word-spacing:-47.827806pt;}
.ws58{word-spacing:-46.859722pt;}
.ws61{word-spacing:-46.749373pt;}
.ws50{word-spacing:-46.710991pt;}
.ws41{word-spacing:-46.709953pt;}
.ws68{word-spacing:-46.562261pt;}
.ws49{word-spacing:-46.351892pt;}
.ws59{word-spacing:-46.058496pt;}
.ws6c{word-spacing:-39.238328pt;}
.ws5c{word-spacing:-38.554049pt;}
.ws5f{word-spacing:-36.984253pt;}
.ws72{word-spacing:-20.741760pt;}
.ws87{word-spacing:-20.517120pt;}
.ws2{word-spacing:-19.986560pt;}
.ws88{word-spacing:-19.843200pt;}
.ws4c{word-spacing:-18.473450pt;}
.ws4b{word-spacing:-18.436804pt;}
.wsb{word-spacing:-18.048000pt;}
.wsa{word-spacing:-17.728000pt;}
.ws63{word-spacing:-17.619880pt;}
.ws33{word-spacing:-16.367520pt;}
.ws46{word-spacing:-16.355808pt;}
.ws2d{word-spacing:-16.349952pt;}
.ws1a{word-spacing:-16.344096pt;}
.ws55{word-spacing:-16.338240pt;}
.ws4e{word-spacing:-16.332384pt;}
.ws3a{word-spacing:-16.320672pt;}
.ws1f{word-spacing:-16.297248pt;}
.ws1b{word-spacing:-16.279680pt;}
.ws9{word-spacing:-16.250880pt;}
.ws2b{word-spacing:-15.981024pt;}
.ws8{word-spacing:-15.014400pt;}
.ws6f{word-spacing:-14.840288pt;}
.ws89{word-spacing:-14.820480pt;}
.ws70{word-spacing:-14.808224pt;}
.ws76{word-spacing:-14.767360pt;}
.ws74{word-spacing:-14.661120pt;}
.ws73{word-spacing:-14.554880pt;}
.ws75{word-spacing:-14.501760pt;}
.ws8b{word-spacing:-13.584000pt;}
.ws8a{word-spacing:-13.536000pt;}
.ws8c{word-spacing:-13.488000pt;}
.wsae{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.409280pt;}
.ws2a{word-spacing:-13.401600pt;}
.ws2c{word-spacing:-13.387200pt;}
.ws1c{word-spacing:-13.377600pt;}
.ws22{word-spacing:-13.363200pt;}
.ws23{word-spacing:-13.353600pt;}
.ws28{word-spacing:-13.339200pt;}
.ws1d{word-spacing:-13.334400pt;}
.ws21{word-spacing:-13.324800pt;}
.ws26{word-spacing:-13.315200pt;}
.ws1e{word-spacing:-13.310400pt;}
.ws25{word-spacing:-13.305600pt;}
.ws24{word-spacing:-13.286400pt;}
.ws27{word-spacing:-13.276800pt;}
.wsab{word-spacing:-13.248000pt;}
.ws20{word-spacing:-13.224000pt;}
.ws9e{word-spacing:-13.152000pt;}
.ws0{word-spacing:-13.132800pt;}
.ws29{word-spacing:-13.084800pt;}
.ws9f{word-spacing:-12.912000pt;}
.wsa0{word-spacing:-12.816000pt;}
.ws7a{word-spacing:-12.177920pt;}
.ws79{word-spacing:-12.006400pt;}
.ws77{word-spacing:-11.920640pt;}
.ws78{word-spacing:-11.749120pt;}
.ws7b{word-spacing:-11.277440pt;}
.ws7c{word-spacing:-11.020160pt;}
.ws3e{word-spacing:-10.475712pt;}
.ws3b{word-spacing:-10.445760pt;}
.ws3f{word-spacing:-10.419552pt;}
.ws2e{word-spacing:-10.408320pt;}
.ws56{word-spacing:-10.385856pt;}
.ws2f{word-spacing:-9.607680pt;}
.ws60{word-spacing:-9.586944pt;}
.ws57{word-spacing:-9.583488pt;}
.ws19{word-spacing:-2.496640pt;}
.ws92{word-spacing:-2.016000pt;}
.ws95{word-spacing:-1.344000pt;}
.ws17{word-spacing:-1.221760pt;}
.ws82{word-spacing:-0.857600pt;}
.ws12{word-spacing:-0.768000pt;}
.ws8f{word-spacing:-0.720000pt;}
.ws31{word-spacing:-0.655872pt;}
.ws32{word-spacing:-0.620736pt;}
.wsac{word-spacing:-0.528000pt;}
.ws11{word-spacing:-0.448000pt;}
.ws7f{word-spacing:-0.265600pt;}
.wsd{word-spacing:-0.235520pt;}
.ws83{word-spacing:-0.214400pt;}
.ws71{word-spacing:-0.199104pt;}
.ws34{word-spacing:-0.193248pt;}
.ws90{word-spacing:-0.192000pt;}
.ws3d{word-spacing:-0.181536pt;}
.ws37{word-spacing:-0.163968pt;}
.ws30{word-spacing:-0.158112pt;}
.ws54{word-spacing:-0.152256pt;}
.ws45{word-spacing:-0.146400pt;}
.wsa8{word-spacing:-0.144000pt;}
.ws4d{word-spacing:-0.140544pt;}
.wse{word-spacing:-0.128000pt;}
.ws3c{word-spacing:-0.117120pt;}
.ws64{word-spacing:-0.105408pt;}
.ws8e{word-spacing:-0.096000pt;}
.ws3{word-spacing:0.000000pt;}
.ws13{word-spacing:0.053120pt;}
.ws7{word-spacing:0.069120pt;}
.ws9d{word-spacing:0.096000pt;}
.ws15{word-spacing:0.106240pt;}
.ws84{word-spacing:0.171520pt;}
.wsf{word-spacing:0.192000pt;}
.ws5{word-spacing:0.213760pt;}
.ws8d{word-spacing:0.265600pt;}
.ws80{word-spacing:0.300160pt;}
.ws6{word-spacing:0.320640pt;}
.ws4{word-spacing:0.345600pt;}
.wsc{word-spacing:0.412160pt;}
.ws81{word-spacing:0.428800pt;}
.ws96{word-spacing:0.432000pt;}
.wsa1{word-spacing:0.528000pt;}
.wsa3{word-spacing:0.576000pt;}
.ws7e{word-spacing:0.690560pt;}
.ws10{word-spacing:0.704000pt;}
.ws85{word-spacing:1.157760pt;}
.wsa2{word-spacing:1.200000pt;}
.ws86{word-spacing:1.200640pt;}
.ws65{word-spacing:1.300032pt;}
.ws93{word-spacing:1.824000pt;}
.ws94{word-spacing:2.016000pt;}
.wsb7{word-spacing:2.448000pt;}
.ws9a{word-spacing:2.496000pt;}
.ws38{word-spacing:2.910432pt;}
.ws99{word-spacing:3.120000pt;}
.ws91{word-spacing:3.744000pt;}
.ws66{word-spacing:3.818112pt;}
.ws67{word-spacing:3.847392pt;}
.wsa5{word-spacing:3.936000pt;}
.ws98{word-spacing:4.416000pt;}
.ws9b{word-spacing:4.512000pt;}
.ws9c{word-spacing:5.040000pt;}
.ws18{word-spacing:5.205760pt;}
.ws16{word-spacing:6.480640pt;}
.wsb0{word-spacing:6.960000pt;}
.wsaf{word-spacing:7.056000pt;}
.wsaa{word-spacing:7.584000pt;}
.ws14{word-spacing:7.755520pt;}
.ws35{word-spacing:7.999296pt;}
.ws36{word-spacing:8.016864pt;}
.wsa9{word-spacing:8.880000pt;}
.wsa7{word-spacing:9.504000pt;}
.wsa6{word-spacing:10.176000pt;}
.wsa4{word-spacing:10.800000pt;}
.wsad{word-spacing:11.424000pt;}
.wsb5{word-spacing:15.936000pt;}
.wsb4{word-spacing:16.128000pt;}
.wsb6{word-spacing:16.560000pt;}
.ws7d{word-spacing:18.007680pt;}
.wsb3{word-spacing:22.320000pt;}
.ws97{word-spacing:24.240000pt;}
.wsb1{word-spacing:24.864000pt;}
.wsb2{word-spacing:25.488000pt;}
.wsb8{word-spacing:33.840000pt;}
.ws6d{word-spacing:53.029641pt;}
.ws69{word-spacing:57.189299pt;}
.ws53{word-spacing:107.681321pt;}
.ws6b{word-spacing:108.369330pt;}
.ws52{word-spacing:109.599150pt;}
.ws6a{word-spacing:112.305246pt;}
.ws43{word-spacing:123.034759pt;}
.ws44{word-spacing:123.189603pt;}
.ws42{word-spacing:140.458376pt;}
.ws51{word-spacing:141.742391pt;}
.ws4a{word-spacing:146.249487pt;}
.ws5b{word-spacing:239.608112pt;}
.ws5e{word-spacing:380.991400pt;}
._4c{margin-left:-214.699760pt;}
._49{margin-left:-212.459206pt;}
._4d{margin-left:-211.421215pt;}
._4a{margin-left:-209.171066pt;}
._55{margin-left:-179.820045pt;}
._56{margin-left:-176.848557pt;}
._16{margin-left:-172.582176pt;}
._59{margin-left:-117.026304pt;}
._30{margin-left:-106.267904pt;}
._1f{margin-left:-103.944000pt;}
._20{margin-left:-84.502080pt;}
._22{margin-left:-81.240288pt;}
._43{margin-left:-77.887328pt;}
._52{margin-left:-51.085216pt;}
._53{margin-left:-49.427168pt;}
._1c{margin-left:-39.006816pt;}
._33{margin-left:-32.518368pt;}
._4b{margin-left:-25.596050pt;}
._a{margin-left:-15.265792pt;}
._b{margin-left:-14.333792pt;}
._8{margin-left:-13.369696pt;}
._d{margin-left:-11.607456pt;}
._6{margin-left:-10.329984pt;}
._9{margin-left:-8.274528pt;}
._f{margin-left:-6.828096pt;}
._5{margin-left:-5.873568pt;}
._e{margin-left:-4.608672pt;}
._7{margin-left:-3.686528pt;}
._12{margin-left:-2.787264pt;}
._4{margin-left:-1.854464pt;}
._2{margin-left:-0.960768pt;}
._1{width:1.002240pt;}
._3{width:2.581760pt;}
._11{width:3.501888pt;}
._1b{width:4.766784pt;}
._15{width:6.388896pt;}
._32{width:7.280512pt;}
._14{width:8.207360pt;}
._c{width:9.158784pt;}
._23{width:10.080928pt;}
._48{width:11.829120pt;}
._18{width:12.789504pt;}
._5c{width:13.820160pt;}
._64{width:15.404928pt;}
._42{width:18.235584pt;}
._61{width:19.135808pt;}
._2b{width:23.544160pt;}
._62{width:24.898464pt;}
._13{width:29.809088pt;}
._58{width:30.703008pt;}
._2e{width:33.147104pt;}
._65{width:34.446464pt;}
._27{width:36.506304pt;}
._34{width:39.522976pt;}
._10{width:43.847808pt;}
._25{width:46.098432pt;}
._46{width:48.337408pt;}
._24{width:52.744992pt;}
._2d{width:59.784672pt;}
._40{width:62.460000pt;}
._35{width:68.215744pt;}
._2c{width:69.376032pt;}
._50{width:70.765504pt;}
._17{width:80.678112pt;}
._31{width:84.191808pt;}
._47{width:87.582336pt;}
._21{width:90.680160pt;}
._45{width:99.481728pt;}
._5d{width:101.430688pt;}
._39{width:104.991223pt;}
._38{width:106.180969pt;}
._4f{width:112.692864pt;}
._41{width:122.232288pt;}
._1e{width:126.905376pt;}
._51{width:128.316672pt;}
._1a{width:130.143744pt;}
._3f{width:131.650784pt;}
._1d{width:133.358688pt;}
._5a{width:134.352928pt;}
._2a{width:140.593888pt;}
._28{width:143.929440pt;}
._26{width:146.528000pt;}
._2f{width:155.296544pt;}
._3e{width:157.581184pt;}
._57{width:159.960772pt;}
._4e{width:163.622496pt;}
._5b{width:164.689536pt;}
._3c{width:167.609387pt;}
._29{width:170.794880pt;}
._19{width:172.482624pt;}
._37{width:174.582020pt;}
._3b{width:180.082321pt;}
._3a{width:203.113941pt;}
._36{width:235.812275pt;}
._44{width:237.094084pt;}
._60{width:324.065504pt;}
._3d{width:329.784649pt;}
._5e{width:353.197440pt;}
._5f{width:656.582912pt;}
._54{width:751.674432pt;}
._63{width:754.664960pt;}
._0{width:1890.695680pt;}
.fs1e{font-size:16.000000pt;}
.fs5{font-size:32.000000pt;}
.fsd{font-size:34.560000pt;}
.fs11{font-size:35.182400pt;}
.fs18{font-size:35.183467pt;}
.fs15{font-size:36.646400pt;}
.fsc{font-size:37.440000pt;}
.fs19{font-size:38.381333pt;}
.fs1a{font-size:38.382400pt;}
.fs7{font-size:42.560000pt;}
.fs1d{font-size:42.880000pt;}
.fs14{font-size:43.308800pt;}
.fs10{font-size:44.777600pt;}
.fs17{font-size:44.778667pt;}
.fs13{font-size:46.641067pt;}
.fsf{font-size:47.976533pt;}
.fs16{font-size:47.977600pt;}
.fsa{font-size:48.000000pt;}
.fs12{font-size:49.972267pt;}
.fs6{font-size:53.120000pt;}
.fse{font-size:53.440000pt;}
.fs9{font-size:58.560000pt;}
.fs0{font-size:58.880000pt;}
.fs1b{font-size:60.771200pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fsb{font-size:74.560000pt;}
.fs1c{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs8{font-size:85.440000pt;}
.fs2{font-size:106.880000pt;}
.y4f{bottom:-195.360000pt;}
.y4e{bottom:-172.320000pt;}
.y4d{bottom:-149.280000pt;}
.y4c{bottom:-126.400000pt;}
.y4b{bottom:-103.360000pt;}
.y4a{bottom:-80.320000pt;}
.y49{bottom:-57.280000pt;}
.y48{bottom:-34.400000pt;}
.y16{bottom:-11.840000pt;}
.y47{bottom:-11.360000pt;}
.y0{bottom:0.000000pt;}
.y121{bottom:2.960400pt;}
.y18d{bottom:2.960533pt;}
.y14a{bottom:3.120400pt;}
.y31d{bottom:5.120000pt;}
.y31b{bottom:5.280000pt;}
.y28{bottom:6.080000pt;}
.y390{bottom:8.640000pt;}
.y399{bottom:8.800000pt;}
.y38f{bottom:8.960000pt;}
.y3ba{bottom:9.120000pt;}
.y30b{bottom:9.280000pt;}
.y2a{bottom:9.760000pt;}
.y19{bottom:10.240000pt;}
.y384{bottom:10.560000pt;}
.y15{bottom:11.520000pt;}
.y46{bottom:11.680000pt;}
.y367{bottom:12.320000pt;}
.y12{bottom:13.120000pt;}
.y1c{bottom:18.080000pt;}
.y33f{bottom:18.560000pt;}
.y319{bottom:23.040000pt;}
.y3a3{bottom:24.480000pt;}
.y382{bottom:24.640000pt;}
.y25{bottom:24.960000pt;}
.y306{bottom:25.440000pt;}
.y14{bottom:25.760000pt;}
.y365{bottom:26.400000pt;}
.y30a{bottom:26.880000pt;}
.y3bd{bottom:28.480000pt;}
.y3c2{bottom:28.640000pt;}
.y3d5{bottom:28.800000pt;}
.y18{bottom:32.160000pt;}
.y45{bottom:34.720000pt;}
.y380{bottom:38.720000pt;}
.y394{bottom:40.320000pt;}
.y363{bottom:40.480000pt;}
.y318{bottom:40.640000pt;}
.y33e{bottom:43.200000pt;}
.y309{bottom:44.640000pt;}
.y23{bottom:47.840000pt;}
.y69{bottom:49.467067pt;}
.y51{bottom:49.547067pt;}
.y4{bottom:51.354880pt;}
.y388{bottom:51.365760pt;}
.y37e{bottom:52.800000pt;}
.y361{bottom:54.560000pt;}
.y44{bottom:57.600000pt;}
.y316{bottom:58.240000pt;}
.y68{bottom:63.147200pt;}
.y3{bottom:65.280000pt;}
.y33c{bottom:65.440000pt;}
.y387{bottom:69.280000pt;}
.y21{bottom:70.880000pt;}
.y37c{bottom:74.880000pt;}
.y314{bottom:75.840000pt;}
.y35f{bottom:76.640000pt;}
.y33a{bottom:79.520000pt;}
.y67{bottom:79.867067pt;}
.y43{bottom:80.800000pt;}
.y37a{bottom:88.960000pt;}
.y35d{bottom:90.720000pt;}
.y313{bottom:93.440000pt;}
.y338{bottom:93.600000pt;}
.y20{bottom:93.920000pt;}
.y90{bottom:96.506224pt;}
.yb7{bottom:96.506659pt;}
.y386{bottom:100.480000pt;}
.y11d{bottom:101.147200pt;}
.y336{bottom:107.680000pt;}
.y240{bottom:109.786091pt;}
.y311{bottom:111.200000pt;}
.y146{bottom:112.025267pt;}
.y189{bottom:112.026195pt;}
.y11c{bottom:112.026603pt;}
.y1e3{bottom:112.027067pt;}
.y35b{bottom:112.960000pt;}
.y34a{bottom:114.400000pt;}
.y8f{bottom:114.746632pt;}
.yb6{bottom:119.387067pt;}
.y385{bottom:124.960000pt;}
.y377{bottom:125.280000pt;}
.y368{bottom:126.720000pt;}
.y359{bottom:127.040000pt;}
.y20d{bottom:128.106659pt;}
.y30f{bottom:128.800000pt;}
.y2da{bottom:129.307115pt;}
.y334{bottom:129.760000pt;}
.y1ae{bottom:130.265968pt;}
.y8e{bottom:137.707067pt;}
.y383{bottom:139.040000pt;}
.y366{bottom:140.800000pt;}
.yf0{bottom:143.546379pt;}
.y173{bottom:143.707563pt;}
.y332{bottom:143.840000pt;}
.yb5{bottom:145.707067pt;}
.y30e{bottom:146.240000pt;}
.y375{bottom:147.360000pt;}
.y188{bottom:147.866379pt;}
.y22d{bottom:148.583187pt;}
.y25b{bottom:148.585379pt;}
.y357{bottom:149.120000pt;}
.y2d9{bottom:149.387339pt;}
.y20c{bottom:150.987067pt;}
.y381{bottom:153.120000pt;}
.y1ad{bottom:153.786592pt;}
.y11b{bottom:154.666512pt;}
.y364{bottom:154.880000pt;}
.yb4{bottom:156.584200pt;}
.y3b8{bottom:158.560000pt;}
.y8d{bottom:159.306659pt;}
.y373{bottom:161.440000pt;}
.y20b{bottom:161.863371pt;}
.y355{bottom:163.200000pt;}
.y172{bottom:163.787787pt;}
.y330{bottom:166.080000pt;}
.y37f{bottom:167.200000pt;}
.y3ec{bottom:168.160000pt;}
.y362{bottom:168.960000pt;}
.y2d8{bottom:169.546619pt;}
.y3b7{bottom:172.320000pt;}
.y23f{bottom:172.666659pt;}
.y1ac{bottom:173.866816pt;}
.yef{bottom:175.627067pt;}
.yee{bottom:176.987171pt;}
.y187{bottom:179.947067pt;}
.y32e{bottom:180.160000pt;}
.y186{bottom:181.306379pt;}
.y3eb{bottom:181.920000pt;}
.y8c{bottom:182.187200pt;}
.y371{bottom:183.520000pt;}
.y171{bottom:183.946155pt;}
.y353{bottom:185.280000pt;}
.y50{bottom:187.040000pt;}
.y11a{bottom:188.106379pt;}
.y37d{bottom:189.280000pt;}
.y2d7{bottom:189.626843pt;}
.y360{bottom:191.040000pt;}
.y3b5{bottom:192.160000pt;}
.y23e{bottom:195.547067pt;}
.y36f{bottom:197.600000pt;}
.y351{bottom:199.360000pt;}
.y3b6{bottom:200.800000pt;}
.y42{bottom:200.960000pt;}
.y3ea{bottom:201.920000pt;}
.y32c{bottom:202.240000pt;}
.y37b{bottom:203.360000pt;}
.y8b{bottom:203.866659pt;}
.y170{bottom:204.026379pt;}
.y1ab{bottom:204.106243pt;}
.y35e{bottom:205.120000pt;}
.y2d6{bottom:209.707067pt;}
.yed{bottom:210.347339pt;}
.y36e{bottom:211.840000pt;}
.y20a{bottom:212.183979pt;}
.y185{bottom:213.387067pt;}
.y350{bottom:213.760000pt;}
.y184{bottom:214.746155pt;}
.y32a{bottom:216.320000pt;}
.yb3{bottom:216.824872pt;}
.y349{bottom:218.240000pt;}
.y119{bottom:221.545467pt;}
.y3e9{bottom:221.760000pt;}
.y23d{bottom:221.787067pt;}
.y22c{bottom:223.542915pt;}
.y379{bottom:225.600000pt;}
.y36c{bottom:226.080000pt;}
.y8a{bottom:226.747067pt;}
.y35c{bottom:227.360000pt;}
.y34e{bottom:227.840000pt;}
.y3b3{bottom:228.000000pt;}
.yec{bottom:230.506619pt;}
.y209{bottom:232.264203pt;}
.y23c{bottom:232.665771pt;}
.y1aa{bottom:234.346627pt;}
.y347{bottom:234.880000pt;}
.y1bc{bottom:235.226667pt;}
.y3b4{bottom:236.640000pt;}
.yb2{bottom:236.905096pt;}
.y16f{bottom:237.466379pt;}
.y89{bottom:237.627235pt;}
.y1bb{bottom:238.187067pt;}
.y328{bottom:238.400000pt;}
.y34d{bottom:239.040000pt;}
.y378{bottom:239.680000pt;}
.y36b{bottom:240.000000pt;}
.y35a{bottom:241.440000pt;}
.y3e7{bottom:241.600000pt;}
.y2d1{bottom:243.305131pt;}
.y22b{bottom:243.623139pt;}
.y34c{bottom:248.000000pt;}
.y183{bottom:248.186843pt;}
.y345{bottom:248.960000pt;}
.y266{bottom:249.862099pt;}
.y3e8{bottom:250.240000pt;}
.yeb{bottom:250.586843pt;}
.y326{bottom:252.480000pt;}
.y36a{bottom:254.080000pt;}
.y118{bottom:254.986155pt;}
.yb1{bottom:256.985320pt;}
.y1c7{bottom:257.547067pt;}
.y2d0{bottom:261.625699pt;}
.y376{bottom:261.760000pt;}
.y23b{bottom:262.906155pt;}
.y343{bottom:263.040000pt;}
.y358{bottom:263.520000pt;}
.y3b1{bottom:263.680000pt;}
.y208{bottom:265.704891pt;}
.y34b{bottom:265.760000pt;}
.y325{bottom:266.720000pt;}
.y369{bottom:268.160000pt;}
.y182{bottom:268.267067pt;}
.y13b{bottom:268.985320pt;}
.yea{bottom:270.667067pt;}
.y16e{bottom:270.906707pt;}
.y3b2{bottom:272.320000pt;}
.y1c6{bottom:272.347763pt;}
.y342{bottom:274.560000pt;}
.y117{bottom:275.066379pt;}
.y374{bottom:275.840000pt;}
.y22a{bottom:277.063827pt;}
.yb0{bottom:277.065544pt;}
.y3e6{bottom:277.280000pt;}
.y356{bottom:277.600000pt;}
.y2cf{bottom:279.785947pt;}
.y323{bottom:280.960000pt;}
.y23a{bottom:282.986379pt;}
.y340{bottom:283.680000pt;}
.y207{bottom:285.785115pt;}
.y1bd{bottom:287.547067pt;}
.y13a{bottom:289.065544pt;}
.y265{bottom:289.542355pt;}
.y322{bottom:292.160000pt;}
.y2c{bottom:293.920000pt;}
.y229{bottom:297.144051pt;}
.yaf{bottom:297.145768pt;}
.y3e4{bottom:297.280000pt;}
.y372{bottom:297.920000pt;}
.y2ce{bottom:299.065763pt;}
.y181{bottom:299.307067pt;}
.y3af{bottom:299.360000pt;}
.y354{bottom:299.680000pt;}
.y320{bottom:301.279867pt;}
.ye9{bottom:301.707067pt;}
.y16d{bottom:304.266875pt;}
.y41{bottom:304.627040pt;}
.y206{bottom:305.865339pt;}
.y3e5{bottom:305.920000pt;}
.y88{bottom:306.745707pt;}
.y3b0{bottom:308.160000pt;}
.y115{bottom:308.506379pt;}
.y264{bottom:309.622579pt;}
.y370{bottom:312.000000pt;}
.y116{bottom:313.147200pt;}
.y352{bottom:313.760000pt;}
.y239{bottom:316.426008pt;}
.y228{bottom:317.304795pt;}
.y2cd{bottom:317.306171pt;}
.yae{bottom:317.306512pt;}
.y31f{bottom:317.760000pt;}
.y2d5{bottom:318.183923pt;}
.y1be{bottom:320.187427pt;}
.y139{bottom:322.506232pt;}
.y16c{bottom:324.426155pt;}
.y87{bottom:326.825931pt;}
.y40{bottom:327.667840pt;}
.y263{bottom:329.783323pt;}
.y1e0{bottom:330.826528pt;}
.y32{bottom:332.640000pt;}
.y3e2{bottom:332.960000pt;}
.y3ad{bottom:335.200000pt;}
.y2cc{bottom:335.546579pt;}
.y2d4{bottom:336.504491pt;}
.y238{bottom:336.506232pt;}
.y180{bottom:336.506368pt;}
.y227{bottom:337.385019pt;}
.ye8{bottom:338.906560pt;}
.y205{bottom:339.306027pt;}
.y36d{bottom:340.480000pt;}
.y3e3{bottom:341.600000pt;}
.y114{bottom:341.946899pt;}
.y34f{bottom:342.240000pt;}
.y138{bottom:342.586456pt;}
.y40d{bottom:343.040000pt;}
.y3ae{bottom:343.840000pt;}
.y16b{bottom:344.506379pt;}
.y86{bottom:346.906155pt;}
.yad{bottom:349.387067pt;}
.y262{bottom:349.863547pt;}
.y3f{bottom:350.549280pt;}
.yac{bottom:350.746155pt;}
.y1df{bottom:350.906752pt;}
.y1bf{bottom:352.747426pt;}
.y2d3{bottom:354.744899pt;}
.y2cb{bottom:354.746235pt;}
.y2c9{bottom:355.546499pt;}
.y30{bottom:355.680000pt;}
.y237{bottom:356.586456pt;}
.y17f{bottom:356.586592pt;}
.y40c{bottom:356.800000pt;}
.y226{bottom:357.465243pt;}
.ye7{bottom:358.986784pt;}
.y204{bottom:359.386251pt;}
.y137{bottom:362.747032pt;}
.y85{bottom:366.986379pt;}
.y3e0{bottom:368.640000pt;}
.y261{bottom:369.943771pt;}
.y3ab{bottom:370.880000pt;}
.y1de{bottom:370.986976pt;}
.y2d2{bottom:372.985307pt;}
.y2ca{bottom:372.986643pt;}
.y3e{bottom:373.590080pt;}
.y2c8{bottom:373.867067pt;}
.y113{bottom:375.307232pt;}
.y40b{bottom:376.640000pt;}
.y17e{bottom:376.747336pt;}
.y3e1{bottom:377.280000pt;}
.y16a{bottom:377.946379pt;}
.y2e{bottom:378.720000pt;}
.ye6{bottom:379.067008pt;}
.y3ac{bottom:379.520000pt;}
.y203{bottom:379.545531pt;}
.yab{bottom:384.106323pt;}
.y1c0{bottom:385.307424pt;}
.y260{bottom:390.023995pt;}
.y225{bottom:390.905931pt;}
.y1dd{bottom:391.067200pt;}
.y31e{bottom:392.480000pt;}
.y136{bottom:396.106379pt;}
.y409{bottom:396.480000pt;}
.y3d{bottom:396.630880pt;}
.ye5{bottom:399.226288pt;}
.y84{bottom:400.427979pt;}
.y2c7{bottom:400.903419pt;}
.y2d{bottom:401.600000pt;}
.yaa{bottom:404.266379pt;}
.y3de{bottom:404.480000pt;}
.y40a{bottom:405.280000pt;}
.y3aa{bottom:406.560000pt;}
.y17d{bottom:406.907075pt;}
.y236{bottom:406.909003pt;}
.y112{bottom:408.747920pt;}
.y224{bottom:410.986155pt;}
.y169{bottom:411.386288pt;}
.y202{bottom:412.905699pt;}
.y3df{bottom:413.120000pt;}
.y1c1{bottom:417.947785pt;}
.y2c6{bottom:419.143827pt;}
.ye4{bottom:419.306512pt;}
.y3c{bottom:419.512320pt;}
.y83{bottom:420.587259pt;}
.y1dc{bottom:423.147200pt;}
.y25f{bottom:423.464683pt;}
.y1db{bottom:424.507067pt;}
.y66{bottom:424.664107pt;}
.y3a9{bottom:426.560000pt;}
.y111{bottom:428.907200pt;}
.y135{bottom:429.546155pt;}
.y223{bottom:431.066379pt;}
.y407{bottom:432.320000pt;}
.y201{bottom:433.064979pt;}
.y145{bottom:434.345363pt;}
.ya9{bottom:436.347067pt;}
.y17c{bottom:437.147459pt;}
.y235{bottom:437.149387pt;}
.y2c5{bottom:437.384235pt;}
.ya8{bottom:437.705291pt;}
.y18c{bottom:438.026667pt;}
.y3dd{bottom:440.160000pt;}
.y408{bottom:440.960000pt;}
.y18b{bottom:440.986928pt;}
.y3b{bottom:442.553120pt;}
.y25e{bottom:443.544907pt;}
.y168{bottom:444.826976pt;}
.y106{bottom:445.786976pt;}
.y3a8{bottom:446.400000pt;}
.y1c2{bottom:450.507783pt;}
.ye3{bottom:452.746379pt;}
.y82{bottom:453.947427pt;}
.y2c4{bottom:455.704803pt;}
.y198{bottom:455.787067pt;}
.y1e2{bottom:456.905371pt;}
.y33d{bottom:457.920000pt;}
.y1da{bottom:457.946379pt;}
.y65{bottom:458.104795pt;}
.y110{bottom:459.947200pt;}
.y3da{bottom:460.000000pt;}
.y24b{bottom:461.547067pt;}
.y134{bottom:462.986843pt;}
.y25d{bottom:463.705651pt;}
.y222{bottom:464.506379pt;}
.y167{bottom:464.907200pt;}
.y3a{bottom:465.593920pt;}
.y105{bottom:465.867787pt;}
.y3a7{bottom:466.240000pt;}
.y200{bottom:466.505667pt;}
.y144{bottom:467.786051pt;}
.y406{bottom:468.000000pt;}
.y3db{bottom:468.640000pt;}
.ya7{bottom:471.065459pt;}
.y197{bottom:471.147283pt;}
.y33b{bottom:472.000000pt;}
.y3dc{bottom:472.640000pt;}
.y2c3{bottom:473.865051pt;}
.y423{bottom:476.960000pt;}
.y1e1{bottom:476.985595pt;}
.y24a{bottom:477.386564pt;}
.y133{bottom:483.065267pt;}
.y1c3{bottom:483.067781pt;}
.ye2{bottom:484.827067pt;}
.y18e{bottom:485.707067pt;}
.y104{bottom:486.026843pt;}
.y339{bottom:486.080000pt;}
.ye1{bottom:486.185243pt;}
.y1ff{bottom:486.585891pt;}
.y81{bottom:487.388115pt;}
.y405{bottom:487.840000pt;}
.y143{bottom:487.866275pt;}
.y39{bottom:488.634720pt;}
.ya6{bottom:491.224739pt;}
.y1d9{bottom:491.386931pt;}
.y64{bottom:491.545483pt;}
.y241{bottom:492.587067pt;}
.y2c2{bottom:493.144867pt;}
.y2ba{bottom:494.025291pt;}
.y166{bottom:495.947067pt;}
.y10f{bottom:497.065819pt;}
.y221{bottom:497.946379pt;}
.y3d7{bottom:499.840000pt;}
.y337{bottom:500.160000pt;}
.y3a5{bottom:505.920000pt;}
.y103{bottom:506.106379pt;}
.y1fe{bottom:506.666115pt;}
.y80{bottom:507.547395pt;}
.y404{bottom:507.840000pt;}
.y142{bottom:507.946499pt;}
.y3d8{bottom:508.480000pt;}
.ya5{bottom:511.304963pt;}
.y2c1{bottom:511.305115pt;}
.y38{bottom:511.516160pt;}
.y2b9{bottom:512.265699pt;}
.y3d9{bottom:512.480000pt;}
.y132{bottom:513.305651pt;}
.y3a6{bottom:514.560000pt;}
.y1c4{bottom:515.627779pt;}
.y10e{bottom:517.225099pt;}
.y18f{bottom:517.946587pt;}
.ye0{bottom:519.625931pt;}
.y335{bottom:522.240000pt;}
.y242{bottom:524.266676pt;}
.y25a{bottom:524.424923pt;}
.y1d8{bottom:524.827619pt;}
.y63{bottom:524.986171pt;}
.y1fd{bottom:526.746339pt;}
.y7f{bottom:527.627619pt;}
.y403{bottom:527.680000pt;}
.y220{bottom:530.027067pt;}
.y2c0{bottom:530.584931pt;}
.y2b8{bottom:530.586267pt;}
.y2fb{bottom:531.227067pt;}
.ya4{bottom:531.385187pt;}
.y21f{bottom:531.386155pt;}
.y165{bottom:533.146379pt;}
.y37{bottom:534.556960pt;}
.y333{bottom:536.320000pt;}
.y10d{bottom:537.305323pt;}
.ycc{bottom:537.867315pt;}
.y102{bottom:538.187067pt;}
.y3d4{bottom:539.520000pt;}
.y101{bottom:539.546379pt;}
.ydf{bottom:539.706155pt;}
.y3a2{bottom:541.760000pt;}
.y141{bottom:542.426627pt;}
.y131{bottom:543.546035pt;}
.y259{bottom:544.505147pt;}
.y1d7{bottom:544.907843pt;}
.y2eb{bottom:545.866027pt;}
.y1fc{bottom:546.826563pt;}
.y422{bottom:547.520000pt;}
.y7e{bottom:547.707843pt;}
.y1c5{bottom:548.268140pt;}
.y3d6{bottom:548.480000pt;}
.y2bf{bottom:548.745179pt;}
.y2b7{bottom:548.746515pt;}
.y190{bottom:550.106626pt;}
.y3a4{bottom:550.400000pt;}
.ya3{bottom:551.465411pt;}
.y243{bottom:555.867122pt;}
.y10c{bottom:557.385547pt;}
.y36{bottom:557.597760pt;}
.y62{bottom:558.426859pt;}
.y331{bottom:558.560000pt;}
.yde{bottom:559.786379pt;}
.y285{bottom:561.548403pt;}
.y140{bottom:562.426331pt;}
.y400{bottom:563.360000pt;}
.y258{bottom:564.665891pt;}
.y21e{bottom:564.826843pt;}
.ycb{bottom:566.027355pt;}
.y164{bottom:566.586899pt;}
.y420{bottom:567.360000pt;}
.y2be{bottom:568.024995pt;}
.y2b6{bottom:568.026331pt;}
.y25c{bottom:570.746011pt;}
.ya2{bottom:571.626155pt;}
.y100{bottom:571.627067pt;}
.y402{bottom:572.000000pt;}
.y32f{bottom:572.640000pt;}
.yff{bottom:572.986379pt;}
.y421{bottom:576.000000pt;}
.y1d6{bottom:576.987067pt;}
.y39f{bottom:577.440000pt;}
.y10b{bottom:577.465771pt;}
.y1d5{bottom:578.346155pt;}
.y3d3{bottom:579.200000pt;}
.y2ea{bottom:579.306715pt;}
.y7d{bottom:579.787067pt;}
.y1fb{bottom:580.267251pt;}
.y35{bottom:580.638560pt;}
.y7c{bottom:581.145931pt;}
.y284{bottom:581.628627pt;}
.y2fa{bottom:581.867067pt;}
.y191{bottom:582.266664pt;}
.y257{bottom:584.746115pt;}
.y21d{bottom:584.906155pt;}
.y3a1{bottom:586.080000pt;}
.yca{bottom:586.107579pt;}
.y2bd{bottom:586.265403pt;}
.y2b5{bottom:586.266739pt;}
.y244{bottom:587.546731pt;}
.y401{bottom:587.840000pt;}
.y1a9{bottom:590.826235pt;}
.ya1{bottom:591.706379pt;}
.y61{bottom:591.867547pt;}
.ydd{bottom:593.226379pt;}
.y32d{bottom:594.720000pt;}
.y13f{bottom:596.906459pt;}
.y3d2{bottom:599.040000pt;}
.y1a8{bottom:599.626395pt;}
.y163{bottom:599.947843pt;}
.y1fa{bottom:600.426531pt;}
.y3a0{bottom:601.920000pt;}
.y2f9{bottom:601.946843pt;}
.y41e{bottom:603.040000pt;}
.y34{bottom:603.520000pt;}
.y2bc{bottom:604.505811pt;}
.y2b4{bottom:604.507147pt;}
.yc9{bottom:606.187803pt;}
.y2b2{bottom:606.266659pt;}
.yfe{bottom:606.426843pt;}
.y32b{bottom:608.800000pt;}
.y10a{bottom:610.906459pt;}
.y1d4{bottom:611.786843pt;}
.y41f{bottom:611.840000pt;}
.y2e9{bottom:612.747403pt;}
.y192{bottom:614.426702pt;}
.y7b{bottom:614.586619pt;}
.y3fe{bottom:615.040000pt;}
.y283{bottom:615.067851pt;}
.y13e{bottom:616.986683pt;}
.y256{bottom:618.186803pt;}
.y21c{bottom:618.346843pt;}
.y3cf{bottom:619.040000pt;}
.y245{bottom:619.226341pt;}
.y1a7{bottom:619.706619pt;}
.y60{bottom:619.946843pt;}
.y1f9{bottom:620.506755pt;}
.y2f8{bottom:622.027067pt;}
.y2bb{bottom:623.625307pt;}
.y2b3{bottom:623.626643pt;}
.y3ff{bottom:623.680000pt;}
.y2b1{bottom:624.507067pt;}
.ya0{bottom:625.146155pt;}
.yc8{bottom:626.268027pt;}
.yfd{bottom:626.505515pt;}
.y33{bottom:626.560000pt;}
.ydc{bottom:626.664195pt;}
.y348{bottom:627.360000pt;}
.y3d1{bottom:627.680000pt;}
.y39c{bottom:629.120000pt;}
.y329{bottom:630.880000pt;}
.y109{bottom:630.986683pt;}
.y1d3{bottom:631.866379pt;}
.y2e8{bottom:632.827627pt;}
.y162{bottom:633.386379pt;}
.y7a{bottom:634.666843pt;}
.y282{bottom:635.227131pt;}
.y39e{bottom:637.760000pt;}
.y255{bottom:638.267027pt;}
.y21b{bottom:638.427619pt;}
.y41d{bottom:638.880000pt;}
.y1a6{bottom:639.786843pt;}
.y5f{bottom:640.026843pt;}
.y1f8{bottom:640.586979pt;}
.y346{bottom:641.440000pt;}
.y3d0{bottom:643.520000pt;}
.y2a7{bottom:643.545227pt;}
.y327{bottom:644.960000pt;}
.yc7{bottom:646.427307pt;}
.y193{bottom:646.586741pt;}
.y13d{bottom:647.226683pt;}
.y31{bottom:649.600000pt;}
.y3fc{bottom:650.720000pt;}
.y246{bottom:650.826787pt;}
.y2e7{bottom:652.986907pt;}
.y39d{bottom:653.600000pt;}
.y79{bottom:654.746699pt;}
.y281{bottom:655.307355pt;}
.y2f7{bottom:655.466931pt;}
.y344{bottom:655.520000pt;}
.y254{bottom:658.347251pt;}
.y9f{bottom:658.586843pt;}
.y21a{bottom:658.586899pt;}
.y41c{bottom:658.720000pt;}
.y3fd{bottom:659.360000pt;}
.y1a5{bottom:659.946123pt;}
.yfc{bottom:659.946203pt;}
.ydb{bottom:660.104883pt;}
.y5e{bottom:660.106339pt;}
.y108{bottom:661.226683pt;}
.y2a6{bottom:661.785635pt;}
.y2b0{bottom:662.743547pt;}
.y1d2{bottom:663.947067pt;}
.y1d1{bottom:665.306379pt;}
.y161{bottom:666.827571pt;}
.y3ce{bottom:670.560000pt;}
.y2f{bottom:672.640000pt;}
.y2e6{bottom:673.067131pt;}
.y324{bottom:673.440000pt;}
.y1f7{bottom:674.027667pt;}
.y78{bottom:674.826923pt;}
.y280{bottom:675.387579pt;}
.y2f6{bottom:675.547155pt;}
.y341{bottom:676.160000pt;}
.y13c{bottom:677.467067pt;}
.y149{bottom:678.346667pt;}
.y253{bottom:678.427475pt;}
.y41b{bottom:678.560000pt;}
.y9e{bottom:678.667067pt;}
.y194{bottom:678.826261pt;}
.yc6{bottom:679.787475pt;}
.y2a5{bottom:680.026043pt;}
.y1a4{bottom:680.026347pt;}
.yfb{bottom:680.026427pt;}
.yda{bottom:680.185107pt;}
.y39b{bottom:680.640000pt;}
.y2af{bottom:680.983955pt;}
.y148{bottom:681.468189pt;}
.y247{bottom:682.506396pt;}
.y3fa{bottom:686.400000pt;}
.y3cc{bottom:690.400000pt;}
.y107{bottom:691.467067pt;}
.y219{bottom:691.945824pt;}
.y120{bottom:692.346667pt;}
.y5d{bottom:693.547027pt;}
.y321{bottom:693.759867pt;}
.y1f6{bottom:694.107891pt;}
.y77{bottom:694.987667pt;}
.y3fb{bottom:695.200000pt;}
.y11f{bottom:695.305643pt;}
.y1e4{bottom:695.306928pt;}
.y1af{bottom:695.307067pt;}
.y1d0{bottom:697.387067pt;}
.y418{bottom:698.400000pt;}
.y158{bottom:698.427067pt;}
.y252{bottom:698.586755pt;}
.y1cf{bottom:698.746331pt;}
.y3cd{bottom:699.200000pt;}
.y2ae{bottom:699.224363pt;}
.y2a4{bottom:699.225699pt;}
.yc5{bottom:699.946755pt;}
.yfa{bottom:700.106651pt;}
.yd9{bottom:700.265331pt;}
.y160{bottom:700.266795pt;}
.y39a{bottom:700.480000pt;}
.y2e5{bottom:706.507819pt;}
.y41a{bottom:707.200000pt;}
.y12c{bottom:707.787067pt;}
.y29{bottom:707.840000pt;}
.y157{bottom:708.107067pt;}
.y27f{bottom:708.826803pt;}
.y2f5{bottom:708.987843pt;}
.y9d{bottom:709.707067pt;}
.y1ed{bottom:709.867067pt;}
.y195{bottom:710.986300pt;}
.y1ba{bottom:712.747067pt;}
.y1a3{bottom:713.467035pt;}
.y248{bottom:714.106843pt;}
.y1f5{bottom:714.188115pt;}
.y2ad{bottom:717.464771pt;}
.y2a3{bottom:717.546267pt;}
.y2b{bottom:717.600000pt;}
.yc4{bottom:720.026979pt;}
.y31c{bottom:720.160000pt;}
.yf9{bottom:720.186875pt;}
.y398{bottom:720.320000pt;}
.yd8{bottom:720.345555pt;}
.y15f{bottom:720.347019pt;}
.y1ec{bottom:720.667067pt;}
.y156{bottom:720.907067pt;}
.y12b{bottom:721.306511pt;}
.y5c{bottom:721.706843pt;}
.y3f7{bottom:722.240000pt;}
.y270{bottom:722.349799pt;}
.y419{bottom:723.040000pt;}
.y10{bottom:725.280000pt;}
.y218{bottom:725.386512pt;}
.y3ca{bottom:726.240000pt;}
.y2e4{bottom:726.588043pt;}
.y304{bottom:726.747067pt;}
.y76{bottom:728.426891pt;}
.y1b9{bottom:728.588962pt;}
.y27e{bottom:728.907027pt;}
.y3f9{bottom:730.880000pt;}
.y3f8{bottom:731.200000pt;}
.y251{bottom:731.946923pt;}
.y1ce{bottom:732.187019pt;}
.y27{bottom:732.480000pt;}
.y1a2{bottom:733.547259pt;}
.y1f4{bottom:734.347395pt;}
.y3cb{bottom:734.880000pt;}
.y2a2{bottom:735.706515pt;}
.y14b{bottom:735.707067pt;}
.y122{bottom:735.867067pt;}
.y1eb{bottom:736.027401pt;}
.y2ac{bottom:736.664427pt;}
.y267{bottom:737.627067pt;}
.y30d{bottom:737.760000pt;}
.y397{bottom:740.320000pt;}
.y5b{bottom:741.786843pt;}
.y2f4{bottom:742.427067pt;}
.y196{bottom:743.146338pt;}
.y1b0{bottom:743.787067pt;}
.y249{bottom:745.786452pt;}
.y2e3{bottom:746.668267pt;}
.y9c{bottom:746.906976pt;}
.y75{bottom:748.507115pt;}
.y27d{bottom:748.987251pt;}
.y416{bottom:750.080000pt;}
.y1f{bottom:750.880000pt;}
.y1e5{bottom:751.307067pt;}
.y250{bottom:752.106203pt;}
.yc3{bottom:753.467667pt;}
.y1a1{bottom:753.627483pt;}
.yf8{bottom:753.627563pt;}
.yd7{bottom:753.786243pt;}
.y15e{bottom:753.787707pt;}
.y2ab{bottom:754.984995pt;}
.y2a1{bottom:754.986331pt;}
.y417{bottom:758.720000pt;}
.y217{bottom:758.826843pt;}
.yf{bottom:759.845120pt;}
.y393{bottom:760.160000pt;}
.y31a{bottom:760.800000pt;}
.y18a{bottom:760.827200pt;}
.y5a{bottom:761.866859pt;}
.y14c{bottom:761.866875pt;}
.y3c8{bottom:761.920000pt;}
.y2f3{bottom:762.507291pt;}
.y1cd{bottom:765.627707pt;}
.y2e2{bottom:766.748491pt;}
.y9b{bottom:766.984555pt;}
.y1f3{bottom:767.707563pt;}
.y123{bottom:768.506579pt;}
.y74{bottom:768.587339pt;}
.y396{bottom:768.800000pt;}
.y27c{bottom:769.146531pt;}
.y268{bottom:769.227513pt;}
.y3c9{bottom:770.560000pt;}
.y24f{bottom:772.186427pt;}
.y2aa{bottom:773.145243pt;}
.y2a0{bottom:773.146579pt;}
.yc2{bottom:773.547891pt;}
.yf7{bottom:773.707787pt;}
.yd6{bottom:773.866467pt;}
.y15d{bottom:773.867931pt;}
.y303{bottom:774.266139pt;}
.y26{bottom:775.840000pt;}
.y1b1{bottom:776.427427pt;}
.y216{bottom:778.906379pt;}
.ye{bottom:779.527040pt;}
.y3f6{bottom:781.760000pt;}
.y395{bottom:784.640000pt;}
.y414{bottom:785.760000pt;}
.y2e1{bottom:786.907771pt;}
.y9a{bottom:787.064779pt;}
.y1a0{bottom:787.066707pt;}
.y1f2{bottom:787.866843pt;}
.y14d{bottom:788.026683pt;}
.y73{bottom:788.667563pt;}
.y27b{bottom:789.226755pt;}
.y24e{bottom:792.266651pt;}
.y2a9{bottom:792.425059pt;}
.y29f{bottom:792.426395pt;}
.y29d{bottom:793.226659pt;}
.y17b{bottom:793.627339pt;}
.yc1{bottom:793.628115pt;}
.y234{bottom:793.628995pt;}
.yf6{bottom:793.866379pt;}
.y15c{bottom:794.027211pt;}
.y415{bottom:794.400000pt;}
.y59{bottom:795.307547pt;}
.y2f2{bottom:795.947979pt;}
.y317{bottom:796.000000pt;}
.y3c6{bottom:797.600000pt;}
.y24{bottom:798.720000pt;}
.y1cc{bottom:799.066931pt;}
.yd{bottom:799.208960pt;}
.y302{bottom:799.546491pt;}
.y1e6{bottom:800.107483pt;}
.y269{bottom:800.827959pt;}
.y124{bottom:801.226691pt;}
.y3f5{bottom:801.600000pt;}
.y3c7{bottom:806.400000pt;}
.y2e0{bottom:806.987995pt;}
.y19f{bottom:807.146931pt;}
.yd5{bottom:807.307155pt;}
.y1f1{bottom:807.947067pt;}
.y72{bottom:808.747787pt;}
.y1b2{bottom:809.146951pt;}
.y27a{bottom:809.306979pt;}
.y2a8{bottom:810.585307pt;}
.y29e{bottom:810.586643pt;}
.y215{bottom:810.987067pt;}
.y29c{bottom:811.467067pt;}
.y391{bottom:811.680000pt;}
.y214{bottom:812.346427pt;}
.y315{bottom:813.600000pt;}
.y17a{bottom:813.707563pt;}
.yc0{bottom:813.708339pt;}
.y233{bottom:813.709219pt;}
.y14e{bottom:814.186491pt;}
.y271{bottom:814.827067pt;}
.y2f1{bottom:816.107259pt;}
.yc{bottom:819.046400pt;}
.y392{bottom:820.480000pt;}
.y99{bottom:820.505467pt;}
.y3f4{bottom:821.600000pt;}
.y22{bottom:821.760000pt;}
.y58{bottom:823.386843pt;}
.y301{bottom:824.905899pt;}
.y24d{bottom:825.707339pt;}
.y2df{bottom:827.068219pt;}
.y19e{bottom:827.306211pt;}
.yf5{bottom:827.306899pt;}
.yd4{bottom:827.387379pt;}
.y71{bottom:828.907067pt;}
.y279{bottom:829.387203pt;}
.y26a{bottom:832.428405pt;}
.y1cb{bottom:832.507619pt;}
.y179{bottom:833.866843pt;}
.ybf{bottom:833.867619pt;}
.y232{bottom:833.868499pt;}
.y125{bottom:833.946802pt;}
.y3c4{bottom:837.440000pt;}
.yb{bottom:838.400000pt;}
.y293{bottom:838.504299pt;}
.y1f0{bottom:838.987067pt;}
.y14f{bottom:840.346300pt;}
.y3f2{bottom:841.440000pt;}
.y1b3{bottom:841.787312pt;}
.y57{bottom:843.468323pt;}
.y213{bottom:845.787115pt;}
.y24c{bottom:845.787563pt;}
.y3c5{bottom:846.080000pt;}
.y2de{bottom:847.148443pt;}
.y15b{bottom:847.467603pt;}
.y38e{bottom:847.520000pt;}
.y272{bottom:847.626803pt;}
.y312{bottom:848.960000pt;}
.y1e7{bottom:848.987061pt;}
.y2f0{bottom:849.467427pt;}
.y3f3{bottom:850.080000pt;}
.y300{bottom:850.186251pt;}
.y98{bottom:853.946155pt;}
.y178{bottom:853.946843pt;}
.ybe{bottom:853.947843pt;}
.y231{bottom:853.948723pt;}
.y29b{bottom:856.743371pt;}
.y292{bottom:856.744707pt;}
.y1d{bottom:857.120000pt;}
.y70{bottom:859.947067pt;}
.y19d{bottom:860.666379pt;}
.yf4{bottom:860.667155pt;}
.yd3{bottom:861.867507pt;}
.y278{bottom:862.827891pt;}
.y26b{bottom:863.948489pt;}
.y212{bottom:865.867339pt;}
.y1ca{bottom:865.867787pt;}
.y150{bottom:866.506108pt;}
.y310{bottom:866.560000pt;}
.y126{bottom:866.586314pt;}
.y2dd{bottom:867.307723pt;}
.y1e{bottom:868.640000pt;}
.y2ef{bottom:869.626707pt;}
.ya{bottom:873.108800pt;}
.y3c1{bottom:873.120000pt;}
.y97{bottom:874.026379pt;}
.y1b4{bottom:874.427673pt;}
.y29a{bottom:874.983779pt;}
.y291{bottom:874.985115pt;}
.y2ff{bottom:875.466603pt;}
.y1ef{bottom:876.186619pt;}
.y56{bottom:876.907547pt;}
.y3f0{bottom:877.120000pt;}
.y3c3{bottom:881.760000pt;}
.yd2{bottom:881.867211pt;}
.y15a{bottom:881.947731pt;}
.y38d{bottom:882.240000pt;}
.y277{bottom:882.908115pt;}
.y1b{bottom:883.520000pt;}
.y3f1{bottom:885.760000pt;}
.y211{bottom:886.026619pt;}
.ybd{bottom:886.027067pt;}
.ybc{bottom:887.385019pt;}
.y230{bottom:887.387947pt;}
.y151{bottom:892.585460pt;}
.y19c{bottom:892.747067pt;}
.y19b{bottom:894.106243pt;}
.yf3{bottom:894.107843pt;}
.y299{bottom:894.183435pt;}
.y290{bottom:894.184771pt;}
.y26c{bottom:895.548935pt;}
.y1ee{bottom:896.266843pt;}
.y308{bottom:896.480000pt;}
.y6f{bottom:896.506283pt;}
.y413{bottom:896.960000pt;}
.y1e8{bottom:897.787477pt;}
.y127{bottom:899.306426pt;}
.y2dc{bottom:900.667891pt;}
.y2fe{bottom:900.746955pt;}
.y159{bottom:902.027955pt;}
.y2ee{bottom:903.065931pt;}
.y276{bottom:903.067395pt;}
.y55{bottom:904.986323pt;}
.y9{bottom:905.440000pt;}
.y30c{bottom:905.760000pt;}
.y210{bottom:906.106843pt;}
.y1b5{bottom:907.068033pt;}
.y96{bottom:907.466843pt;}
.y177{bottom:907.467843pt;}
.y22f{bottom:907.468171pt;}
.y274{bottom:909.226010pt;}
.y38c{bottom:909.439520pt;}
.y298{bottom:912.423843pt;}
.y28f{bottom:912.505339pt;}
.y3bf{bottom:912.960000pt;}
.y17{bottom:913.920000pt;}
.y130{bottom:914.025875pt;}
.y6e{bottom:915.866219pt;}
.yd1{bottom:916.347339pt;}
.y412{bottom:916.960000pt;}
.y1c9{bottom:917.067067pt;}
.y152{bottom:918.745269pt;}
.ybb{bottom:920.825707pt;}
.y2db{bottom:920.827171pt;}
.y3c0{bottom:921.600000pt;}
.y2ed{bottom:923.146155pt;}
.y1a{bottom:924.160000pt;}
.y54{bottom:925.147843pt;}
.y38b{bottom:925.920000pt;}
.y2fd{bottom:926.027307pt;}
.y20f{bottom:926.187067pt;}
.y26d{bottom:927.149382pt;}
.y19a{bottom:927.545467pt;}
.yf2{bottom:927.546379pt;}
.y95{bottom:927.547067pt;}
.y28e{bottom:930.665587pt;}
.y297{bottom:931.623499pt;}
.y128{bottom:932.026538pt;}
.y3ee{bottom:932.800000pt;}
.y273{bottom:934.026737pt;}
.y12f{bottom:934.106099pt;}
.y8{bottom:935.198080pt;}
.y6d{bottom:935.306675pt;}
.yd0{bottom:936.427563pt;}
.y410{bottom:936.800000pt;}
.y176{bottom:939.547067pt;}
.y1b6{bottom:939.708394pt;}
.yba{bottom:940.905931pt;}
.y175{bottom:940.906379pt;}
.y22e{bottom:940.907395pt;}
.y3ef{bottom:941.440000pt;}
.y38a{bottom:942.559520pt;}
.y2ec{bottom:943.226379pt;}
.y153{bottom:944.905077pt;}
.y411{bottom:945.440000pt;}
.y1e9{bottom:946.587893pt;}
.y199{bottom:947.625691pt;}
.y3bc{bottom:948.640000pt;}
.y296{bottom:949.863907pt;}
.y28d{bottom:949.865243pt;}
.y2fc{bottom:951.386715pt;}
.y288{bottom:951.626091pt;}
.y305{bottom:953.440000pt;}
.y1c8{bottom:954.266395pt;}
.y12e{bottom:954.266843pt;}
.y6c{bottom:954.666611pt;}
.y7{bottom:954.724480pt;}
.ycf{bottom:956.586843pt;}
.y20e{bottom:957.227067pt;}
.y3be{bottom:957.280000pt;}
.y53{bottom:958.587067pt;}
.y26e{bottom:958.749828pt;}
.y389{bottom:959.040000pt;}
.y94{bottom:959.627067pt;}
.y13{bottom:960.960000pt;}
.yb9{bottom:960.986155pt;}
.y93{bottom:960.987619pt;}
.yf1{bottom:960.987843pt;}
.y129{bottom:964.666050pt;}
.y3ed{bottom:968.480000pt;}
.y295{bottom:969.063563pt;}
.y28c{bottom:969.064899pt;}
.y28a{bottom:969.945323pt;}
.y287{bottom:969.946659pt;}
.y154{bottom:971.064885pt;}
.y1b7{bottom:972.348755pt;}
.y40e{bottom:972.480000pt;}
.y6{bottom:974.078080pt;}
.y6b{bottom:974.107067pt;}
.y12d{bottom:974.346619pt;}
.y174{bottom:974.346843pt;}
.yce{bottom:976.667067pt;}
.y307{bottom:978.880000pt;}
.yb8{bottom:981.066379pt;}
.y40f{bottom:981.120000pt;}
.y294{bottom:987.303971pt;}
.y28b{bottom:987.305307pt;}
.y289{bottom:988.185731pt;}
.y286{bottom:988.187067pt;}
.y3bb{bottom:988.320000pt;}
.y26f{bottom:990.350274pt;}
.y5{bottom:993.760000pt;}
.y92{bottom:994.426843pt;}
.y52{bottom:994.907067pt;}
.y1ea{bottom:995.467472pt;}
.y155{bottom:997.224693pt;}
.y12a{bottom:997.386162pt;}
.y11{bottom:1001.600000pt;}
.y1b8{bottom:1004.989115pt;}
.y6a{bottom:1005.547067pt;}
.y3b9{bottom:1008.160000pt;}
.ycd{bottom:1008.187067pt;}
.y275{bottom:1008.267067pt;}
.y91{bottom:1014.507067pt;}
.y147{bottom:1014.587067pt;}
.y11e{bottom:1015.147200pt;}
.y2{bottom:1090.880000pt;}
.y1{bottom:1108.800000pt;}
.h63{height:13.757812pt;}
.h38{height:14.400000pt;}
.h41{height:15.040000pt;}
.h60{height:17.600000pt;}
.h13{height:18.400000pt;}
.h67{height:19.840000pt;}
.h6b{height:19.841333pt;}
.h6c{height:19.998667pt;}
.h6f{height:20.000000pt;}
.hb{height:23.296875pt;}
.h3a{height:24.050469pt;}
.h4c{height:24.051198pt;}
.h14{height:24.640000pt;}
.h44{height:25.051250pt;}
.h4e{height:26.237240pt;}
.h56{height:26.237969pt;}
.h10{height:26.400000pt;}
.h7{height:26.560000pt;}
.h43{height:29.605625pt;}
.h24{height:29.716875pt;}
.he{height:30.400000pt;}
.h17{height:30.590000pt;}
.h39{height:30.609688pt;}
.h4b{height:30.610417pt;}
.h64{height:31.217812pt;}
.h42{height:31.883542pt;}
.h34{height:32.193281pt;}
.h37{height:32.796458pt;}
.h4a{height:32.797187pt;}
.h40{height:34.160729pt;}
.h73{height:34.945312pt;}
.h6e{height:35.680000pt;}
.h70{height:35.681333pt;}
.h71{height:35.838667pt;}
.h69{height:35.840000pt;}
.h62{height:36.870937pt;}
.h11{height:38.672812pt;}
.h3{height:39.243750pt;}
.h76{height:39.678667pt;}
.h74{height:39.680000pt;}
.h75{height:39.840000pt;}
.h9{height:40.640000pt;}
.h68{height:41.273438pt;}
.h59{height:41.542813pt;}
.h1e{height:42.090000pt;}
.hf{height:45.675938pt;}
.h66{height:45.677857pt;}
.h25{height:45.951094pt;}
.ha{height:46.593750pt;}
.h5a{height:46.733906pt;}
.hd{height:47.040000pt;}
.h5{height:48.384000pt;}
.h4{height:49.420800pt;}
.h19{height:50.353594pt;}
.h3f{height:50.354266pt;}
.h1c{height:50.354426pt;}
.h1b{height:50.354490pt;}
.h48{height:50.355034pt;}
.h3b{height:50.355386pt;}
.h2a{height:50.356346pt;}
.h1d{height:50.356506pt;}
.h1a{height:50.356570pt;}
.h47{height:50.356708pt;}
.h2d{height:50.356879pt;}
.h3e{height:50.357242pt;}
.h52{height:50.358564pt;}
.h31{height:50.359802pt;}
.h35{height:50.359994pt;}
.h3d{height:50.360794pt;}
.h72{height:50.628750pt;}
.h22{height:50.750167pt;}
.h46{height:50.750177pt;}
.h45{height:50.751265pt;}
.h51{height:50.752193pt;}
.h54{height:50.752204pt;}
.h33{height:50.752620pt;}
.h2f{height:50.752929pt;}
.h4f{height:50.753825pt;}
.h30{height:50.753953pt;}
.h27{height:50.754177pt;}
.h20{height:50.754753pt;}
.h36{height:50.755500pt;}
.h57{height:50.755969pt;}
.h2c{height:50.756033pt;}
.h2e{height:50.756567pt;}
.h29{height:50.756929pt;}
.h55{height:50.757516pt;}
.h23{height:50.758721pt;}
.h28{height:50.763329pt;}
.h2b{height:50.764769pt;}
.h3c{height:51.211406pt;}
.h6a{height:51.520000pt;}
.h77{height:51.678667pt;}
.h6d{height:51.680000pt;}
.h53{height:54.173975pt;}
.h49{height:54.181687pt;}
.h32{height:54.183255pt;}
.h4d{height:54.185015pt;}
.h5d{height:54.514687pt;}
.h5b{height:55.031250pt;}
.h21{height:55.793594pt;}
.h26{height:56.193281pt;}
.h5e{height:56.958667pt;}
.hc{height:61.969687pt;}
.h1f{height:65.203594pt;}
.h8{height:73.191563pt;}
.h18{height:74.718281pt;}
.h5c{height:74.720000pt;}
.h50{height:74.725599pt;}
.h58{height:74.738153pt;}
.h6{height:76.419200pt;}
.h16{height:92.958667pt;}
.h12{height:106.241333pt;}
.h5f{height:158.720000pt;}
.h65{height:278.081333pt;}
.h61{height:327.678667pt;}
.h15{height:413.921333pt;}
.h2{height:1122.548000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:60.640000pt;}
.w6{width:65.040000pt;}
.w8{width:74.640000pt;}
.w7{width:77.760000pt;}
.wa{width:304.000000pt;}
.wb{width:304.160000pt;}
.wd{width:549.440000pt;}
.w3{width:595.518667pt;}
.w9{width:608.160000pt;}
.w5{width:793.333333pt;}
.w4{width:793.626667pt;}
.w2{width:793.746667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x23{left:59.200000pt;}
.x38{left:68.800000pt;}
.x2b{left:71.680000pt;}
.x51{left:91.840000pt;}
.xe{left:94.400000pt;}
.x1{left:99.200000pt;}
.x3{left:101.600000pt;}
.x10{left:106.640000pt;}
.xd{left:108.800000pt;}
.x5{left:113.120000pt;}
.x4b{left:116.000000pt;}
.x18{left:118.479352pt;}
.x11{left:120.000464pt;}
.x42{left:121.520080pt;}
.x61{left:122.880000pt;}
.x35{left:126.960600pt;}
.x52{left:130.079680pt;}
.x54{left:131.360000pt;}
.x28{left:132.319720pt;}
.x36{left:137.839752pt;}
.x60{left:139.520000pt;}
.x19{left:142.478704pt;}
.x43{left:145.520896pt;}
.x12{left:146.636272pt;}
.x3f{left:149.040000pt;}
.x1a{left:151.440000pt;}
.x1b{left:153.040000pt;}
.x34{left:155.440000pt;}
.x29{left:159.360000pt;}
.x15{left:162.000000pt;}
.x2e{left:164.560446pt;}
.xa{left:166.560000pt;}
.x21{left:169.280000pt;}
.x2d{left:170.480468pt;}
.x45{left:173.278984pt;}
.x2c{left:176.320000pt;}
.x25{left:178.240944pt;}
.x3b{left:181.439972pt;}
.x24{left:183.920472pt;}
.x1e{left:186.079848pt;}
.x3a{left:187.440171pt;}
.x1f{left:188.879784pt;}
.x2f{left:190.240000pt;}
.x55{left:191.360000pt;}
.x39{left:193.360000pt;}
.x46{left:196.960139pt;}
.x26{left:202.881340pt;}
.x3c{left:207.200523pt;}
.x32{left:208.160000pt;}
.x17{left:211.200000pt;}
.x44{left:212.880000pt;}
.x56{left:214.720000pt;}
.x40{left:216.160000pt;}
.x1c{left:217.760000pt;}
.x20{left:220.960000pt;}
.x2{left:223.200000pt;}
.x30{left:236.079792pt;}
.x59{left:237.920000pt;}
.x58{left:240.800000pt;}
.x6{left:247.360000pt;}
.x41{left:252.480000pt;}
.x4c{left:264.559136pt;}
.x4d{left:274.079472pt;}
.x57{left:288.320000pt;}
.x3d{left:294.160000pt;}
.x3e{left:335.360000pt;}
.x2a{left:357.679612pt;}
.x37{left:359.600000pt;}
.x22{left:364.400430pt;}
.x4a{left:379.520000pt;}
.x31{left:380.800000pt;}
.x33{left:382.480000pt;}
.x16{left:383.520000pt;}
.x14{left:384.880000pt;}
.xb{left:390.720000pt;}
.x13{left:396.880000pt;}
.x5a{left:398.400000pt;}
.xf{left:403.280000pt;}
.x47{left:419.280000pt;}
.x6a{left:425.280000pt;}
.x6b{left:426.880000pt;}
.xc{left:429.120000pt;}
.x7{left:436.160000pt;}
.x69{left:452.320000pt;}
.x62{left:459.520000pt;}
.x49{left:469.679825pt;}
.x50{left:479.679184pt;}
.x4e{left:481.919656pt;}
.x8{left:484.160000pt;}
.x68{left:489.920000pt;}
.x4f{left:491.439992pt;}
.x5d{left:504.000000pt;}
.x9{left:507.680000pt;}
.x5f{left:510.400000pt;}
.x5c{left:512.480000pt;}
.x48{left:517.599924pt;}
.x5e{left:533.600000pt;}
.x64{left:539.520000pt;}
.x67{left:541.920000pt;}
.x66{left:544.800000pt;}
.x63{left:556.160000pt;}
.x65{left:572.800000pt;}
.x5b{left:608.960000pt;}
.x53{left:610.880000pt;}
.x1d{left:626.880000pt;}
.x27{left:636.882025pt;}
}




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