
    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_f7d12d86ad379d326e313000.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.875000;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_9aed6ce0ed0c4da477ea4d5b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_833bd73137b83fddda71018f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cafd4a5b606426860de16ac8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.094238;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_c5ebdff389cbb95fec0385a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.094238;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_c720d3a12a5aec70fae970b6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_bde228cc554414c1fb974875.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.154297;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_8bd515b7bdd4a4acb8148755.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.154297;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_a5a25021e288ddc9a7a2a386.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_5743c4bed9daf15f77c903a3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9d6e6c2c2d750226cecfee8c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.056000;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_ae2a7d99e2db9581a85e3082.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.061000;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa8{letter-spacing:-3.300000px;}
.ls53{letter-spacing:-2.580000px;}
.ls5e{letter-spacing:-1.860000px;}
.ls94{letter-spacing:-1.062000px;}
.lsa9{letter-spacing:-0.954000px;}
.ls71{letter-spacing:-0.906000px;}
.lsb5{letter-spacing:-0.876000px;}
.ls34{letter-spacing:-0.828000px;}
.ls79{letter-spacing:-0.780000px;}
.ls16{letter-spacing:-0.696000px;}
.ls1b{letter-spacing:-0.660000px;}
.lsa7{letter-spacing:-0.630000px;}
.ls47{letter-spacing:-0.573000px;}
.ls8e{letter-spacing:-0.465000px;}
.ls9b{letter-spacing:-0.445800px;}
.ls97{letter-spacing:-0.445200px;}
.ls7d{letter-spacing:-0.438600px;}
.lsb6{letter-spacing:-0.425400px;}
.ls3c{letter-spacing:-0.424800px;}
.ls1a{letter-spacing:-0.394800px;}
.ls40{letter-spacing:-0.360600px;}
.ls80{letter-spacing:-0.360000px;}
.lsc0{letter-spacing:-0.359400px;}
.ls92{letter-spacing:-0.350400px;}
.ls8b{letter-spacing:-0.345600px;}
.ls1e{letter-spacing:-0.342600px;}
.ls36{letter-spacing:-0.328200px;}
.lsab{letter-spacing:-0.290400px;}
.lsbf{letter-spacing:-0.280800px;}
.ls9{letter-spacing:-0.271200px;}
.ls86{letter-spacing:-0.270600px;}
.ls5c{letter-spacing:-0.245400px;}
.ls4c{letter-spacing:-0.234600px;}
.ls3d{letter-spacing:-0.234000px;}
.ls2d{letter-spacing:-0.226800px;}
.ls61{letter-spacing:-0.216600px;}
.ls4{letter-spacing:-0.216000px;}
.ls67{letter-spacing:-0.208800px;}
.ls6e{letter-spacing:-0.198600px;}
.lsc6{letter-spacing:-0.194400px;}
.ls2a{letter-spacing:-0.186600px;}
.lsa6{letter-spacing:-0.186000px;}
.ls4d{letter-spacing:-0.163800px;}
.ls91{letter-spacing:-0.153000px;}
.ls75{letter-spacing:-0.136800px;}
.ls69{letter-spacing:-0.127800px;}
.lsb3{letter-spacing:-0.123000px;}
.ls17{letter-spacing:-0.112800px;}
.ls3{letter-spacing:-0.111600px;}
.ls18{letter-spacing:-0.106800px;}
.ls5f{letter-spacing:-0.094800px;}
.ls15{letter-spacing:-0.081600px;}
.ls4b{letter-spacing:-0.078600px;}
.ls27{letter-spacing:-0.062400px;}
.ls72{letter-spacing:-0.054720px;}
.ls51{letter-spacing:-0.049680px;}
.lsb{letter-spacing:-0.048960px;}
.lscc{letter-spacing:-0.042600px;}
.ls3b{letter-spacing:-0.031080px;}
.ls58{letter-spacing:-0.020760px;}
.ls2b{letter-spacing:-0.015840px;}
.ls62{letter-spacing:-0.001152px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.024180px;}
.ls19{letter-spacing:0.024480px;}
.ls5{letter-spacing:0.028800px;}
.ls88{letter-spacing:0.032280px;}
.ls35{letter-spacing:0.037440px;}
.ls43{letter-spacing:0.038160px;}
.ls14{letter-spacing:0.058740px;}
.lsa{letter-spacing:0.060600px;}
.ls10{letter-spacing:0.080400px;}
.ls4f{letter-spacing:0.081600px;}
.ls7{letter-spacing:0.083400px;}
.ls20{letter-spacing:0.087000px;}
.lsba{letter-spacing:0.087120px;}
.ls98{letter-spacing:0.094800px;}
.ls45{letter-spacing:0.102000px;}
.lsc7{letter-spacing:0.106200px;}
.ls73{letter-spacing:0.112800px;}
.ls2{letter-spacing:0.137400px;}
.lsc{letter-spacing:0.147000px;}
.lsbc{letter-spacing:0.150912px;}
.ls1f{letter-spacing:0.168600px;}
.lsd{letter-spacing:0.174000px;}
.ls49{letter-spacing:0.175200px;}
.lsbd{letter-spacing:0.179712px;}
.ls5d{letter-spacing:0.192000px;}
.ls8a{letter-spacing:0.194400px;}
.ls7e{letter-spacing:0.197280px;}
.ls64{letter-spacing:0.202800px;}
.lsb8{letter-spacing:0.225600px;}
.lsb4{letter-spacing:0.228000px;}
.lsc5{letter-spacing:0.230400px;}
.ls3e{letter-spacing:0.231000px;}
.ls57{letter-spacing:0.239040px;}
.ls77{letter-spacing:0.246000px;}
.ls2c{letter-spacing:0.255000px;}
.lsc8{letter-spacing:0.256800px;}
.ls63{letter-spacing:0.264960px;}
.ls6{letter-spacing:0.270600px;}
.ls26{letter-spacing:0.274200px;}
.ls95{letter-spacing:0.274800px;}
.ls3f{letter-spacing:0.276000px;}
.ls1{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.291000px;}
.ls28{letter-spacing:0.294600px;}
.ls70{letter-spacing:0.294912px;}
.ls89{letter-spacing:0.300000px;}
.ls24{letter-spacing:0.302400px;}
.ls90{letter-spacing:0.306000px;}
.ls4e{letter-spacing:0.306600px;}
.ls9a{letter-spacing:0.319200px;}
.lse{letter-spacing:0.325200px;}
.lsc3{letter-spacing:0.355200px;}
.lsa0{letter-spacing:0.360000px;}
.lsbb{letter-spacing:0.360600px;}
.ls59{letter-spacing:0.369600px;}
.ls6a{letter-spacing:0.370800px;}
.lsac{letter-spacing:0.371400px;}
.ls8{letter-spacing:0.377280px;}
.ls1d{letter-spacing:0.377400px;}
.ls33{letter-spacing:0.391800px;}
.ls9e{letter-spacing:0.399000px;}
.ls99{letter-spacing:0.422400px;}
.ls29{letter-spacing:0.438600px;}
.ls65{letter-spacing:0.448800px;}
.ls68{letter-spacing:0.450600px;}
.ls2e{letter-spacing:0.475800px;}
.lsae{letter-spacing:0.480000px;}
.lsb9{letter-spacing:0.493200px;}
.ls50{letter-spacing:0.515400px;}
.ls31{letter-spacing:0.521400px;}
.lsa2{letter-spacing:0.540000px;}
.ls5a{letter-spacing:0.567000px;}
.lsca{letter-spacing:0.612000px;}
.lsbe{letter-spacing:0.690000px;}
.ls2f{letter-spacing:0.702000px;}
.ls48{letter-spacing:0.744000px;}
.ls5b{letter-spacing:0.780000px;}
.lscb{letter-spacing:0.810000px;}
.lsc4{letter-spacing:0.822000px;}
.ls9d{letter-spacing:0.864000px;}
.ls87{letter-spacing:0.912000px;}
.ls6d{letter-spacing:0.917280px;}
.ls76{letter-spacing:0.996000px;}
.ls30{letter-spacing:1.022400px;}
.ls96{letter-spacing:1.044000px;}
.ls93{letter-spacing:1.164960px;}
.ls55{letter-spacing:1.704960px;}
.lsad{letter-spacing:1.740000px;}
.ls41{letter-spacing:1.742400px;}
.ls56{letter-spacing:2.424960px;}
.ls42{letter-spacing:2.462400px;}
.ls11{letter-spacing:3.182400px;}
.lsc1{letter-spacing:3.362400px;}
.lsc2{letter-spacing:3.864960px;}
.ls54{letter-spacing:3.900000px;}
.ls37{letter-spacing:3.902400px;}
.ls13{letter-spacing:4.622400px;}
.ls85{letter-spacing:4.802400px;}
.ls78{letter-spacing:5.304960px;}
.ls38{letter-spacing:5.342400px;}
.ls7f{letter-spacing:6.024960px;}
.ls39{letter-spacing:6.062400px;}
.ls7b{letter-spacing:6.782400px;}
.ls6b{letter-spacing:7.502400px;}
.ls6c{letter-spacing:8.184960px;}
.ls12{letter-spacing:8.222400px;}
.ls32{letter-spacing:8.942400px;}
.ls23{letter-spacing:9.662400px;}
.ls83{letter-spacing:10.344960px;}
.lsb7{letter-spacing:10.380000px;}
.ls4a{letter-spacing:10.382400px;}
.ls60{letter-spacing:11.100000px;}
.ls7a{letter-spacing:11.102400px;}
.ls81{letter-spacing:11.822400px;}
.ls9c{letter-spacing:12.542400px;}
.lsc9{letter-spacing:13.224960px;}
.ls74{letter-spacing:13.262400px;}
.lsa1{letter-spacing:13.982400px;}
.ls6f{letter-spacing:14.162400px;}
.lsf{letter-spacing:14.664960px;}
.ls44{letter-spacing:14.702400px;}
.ls52{letter-spacing:15.422400px;}
.ls21{letter-spacing:16.104960px;}
.ls46{letter-spacing:16.142400px;}
.ls9f{letter-spacing:16.862400px;}
.ls22{letter-spacing:17.582400px;}
.ls3a{letter-spacing:18.302400px;}
.ls66{letter-spacing:19.022400px;}
.ls84{letter-spacing:19.742400px;}
.ls8f{letter-spacing:20.462400px;}
.ls7c{letter-spacing:21.902400px;}
.ls8d{letter-spacing:24.062400px;}
.ls8c{letter-spacing:25.502400px;}
.lsaa{letter-spacing:27.662400px;}
.ls82{letter-spacing:31.982400px;}
.lsa4{letter-spacing:133.502400px;}
.lsa5{letter-spacing:134.222400px;}
.lsa3{letter-spacing:134.342400px;}
.lsaf{letter-spacing:170.942400px;}
.lsb1{letter-spacing:171.662400px;}
.lsb0{letter-spacing:171.842400px;}
.lsb2{letter-spacing:445.982400px;}
.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:-59.760000px;}
.ws62{word-spacing:-34.489320px;}
.ws44{word-spacing:-34.265088px;}
.ws40{word-spacing:-34.182720px;}
.ws1{word-spacing:-25.072440px;}
.ws53{word-spacing:-24.842880px;}
.ws2{word-spacing:-24.823440px;}
.ws55{word-spacing:-24.798240px;}
.ws89{word-spacing:-22.081117px;}
.ws8a{word-spacing:-21.000412px;}
.ws3{word-spacing:-18.504000px;}
.ws6{word-spacing:-17.493000px;}
.ws7{word-spacing:-17.305800px;}
.ws5{word-spacing:-17.251200px;}
.ws4{word-spacing:-17.222400px;}
.ws69{word-spacing:-16.581600px;}
.ws56{word-spacing:-16.571040px;}
.ws5c{word-spacing:-16.449600px;}
.ws6f{word-spacing:-16.401600px;}
.ws80{word-spacing:-16.359600px;}
.ws87{word-spacing:-16.347600px;}
.ws45{word-spacing:-16.317600px;}
.ws35{word-spacing:-16.281600px;}
.ws7d{word-spacing:-16.265040px;}
.ws29{word-spacing:-16.239600px;}
.ws86{word-spacing:-16.149600px;}
.ws43{word-spacing:-16.142040px;}
.ws2d{word-spacing:-16.059000px;}
.ws3e{word-spacing:-16.053000px;}
.ws7b{word-spacing:-16.030800px;}
.ws28{word-spacing:-16.013400px;}
.ws4f{word-spacing:-15.988200px;}
.ws4d{word-spacing:-15.986400px;}
.ws23{word-spacing:-15.976200px;}
.ws42{word-spacing:-15.944640px;}
.ws70{word-spacing:-15.936600px;}
.ws2a{word-spacing:-15.929400px;}
.ws1a{word-spacing:-15.915000px;}
.ws75{word-spacing:-15.909000px;}
.ws6e{word-spacing:-15.908400px;}
.ws7c{word-spacing:-15.898200px;}
.ws82{word-spacing:-15.892800px;}
.wsf{word-spacing:-15.862800px;}
.ws6c{word-spacing:-15.856800px;}
.ws20{word-spacing:-15.849240px;}
.ws3c{word-spacing:-15.844200px;}
.ws65{word-spacing:-15.843600px;}
.ws61{word-spacing:-15.837600px;}
.ws22{word-spacing:-15.832200px;}
.ws85{word-spacing:-15.831840px;}
.ws19{word-spacing:-15.828600px;}
.ws32{word-spacing:-15.813600px;}
.ws68{word-spacing:-15.812400px;}
.ws81{word-spacing:-15.805440px;}
.ws77{word-spacing:-15.803040px;}
.ws7a{word-spacing:-15.800640px;}
.ws26{word-spacing:-15.792600px;}
.ws57{word-spacing:-15.783600px;}
.ws4c{word-spacing:-15.777840px;}
.ws5e{word-spacing:-15.769440px;}
.ws31{word-spacing:-15.768600px;}
.wse{word-spacing:-15.749040px;}
.ws47{word-spacing:-15.729600px;}
.ws38{word-spacing:-15.712800px;}
.ws1c{word-spacing:-15.706200px;}
.ws54{word-spacing:-15.687840px;}
.wsc{word-spacing:-15.684600px;}
.ws84{word-spacing:-15.681240px;}
.ws3d{word-spacing:-15.656640px;}
.ws37{word-spacing:-15.639600px;}
.ws10{word-spacing:-15.633780px;}
.ws6b{word-spacing:-15.632400px;}
.ws1d{word-spacing:-15.624600px;}
.ws14{word-spacing:-15.618000px;}
.ws60{word-spacing:-15.607320px;}
.ws1f{word-spacing:-15.599220px;}
.wsa{word-spacing:-15.598200px;}
.ws36{word-spacing:-15.575760px;}
.wsd{word-spacing:-15.575040px;}
.ws4a{word-spacing:-15.573888px;}
.ws16{word-spacing:-15.562080px;}
.ws41{word-spacing:-15.554280px;}
.ws2e{word-spacing:-15.543960px;}
.ws9{word-spacing:-15.537600px;}
.ws88{word-spacing:-15.532440px;}
.ws25{word-spacing:-15.521760px;}
.ws21{word-spacing:-15.512640px;}
.ws39{word-spacing:-15.496440px;}
.ws11{word-spacing:-15.493440px;}
.wsb{word-spacing:-15.488640px;}
.ws3f{word-spacing:-15.487920px;}
.ws50{word-spacing:-15.447240px;}
.ws48{word-spacing:-15.442800px;}
.ws15{word-spacing:-15.430800px;}
.ws13{word-spacing:-15.424800px;}
.ws64{word-spacing:-15.422040px;}
.ws76{word-spacing:-15.414600px;}
.ws3b{word-spacing:-15.411240px;}
.ws24{word-spacing:-15.388440px;}
.ws49{word-spacing:-15.358440px;}
.ws71{word-spacing:-15.351600px;}
.ws83{word-spacing:-15.343200px;}
.ws51{word-spacing:-15.339000px;}
.ws4e{word-spacing:-15.328800px;}
.ws27{word-spacing:-15.310800px;}
.ws5b{word-spacing:-15.304440px;}
.ws30{word-spacing:-15.303600px;}
.ws3a{word-spacing:-15.303000px;}
.ws7e{word-spacing:-15.294240px;}
.ws46{word-spacing:-15.292200px;}
.ws74{word-spacing:-15.284640px;}
.ws8{word-spacing:-15.266400px;}
.ws5f{word-spacing:-15.229440px;}
.ws66{word-spacing:-15.224640px;}
.ws33{word-spacing:-15.214440px;}
.ws2c{word-spacing:-15.209400px;}
.ws1b{word-spacing:-15.195000px;}
.ws7f{word-spacing:-15.178200px;}
.ws5a{word-spacing:-15.177600px;}
.ws2f{word-spacing:-15.150240px;}
.ws17{word-spacing:-15.142800px;}
.ws6d{word-spacing:-15.129240px;}
.ws79{word-spacing:-15.112200px;}
.ws59{word-spacing:-15.099000px;}
.ws6a{word-spacing:-15.092400px;}
.ws63{word-spacing:-15.072600px;}
.ws34{word-spacing:-14.964600px;}
.ws4b{word-spacing:-14.915040px;}
.ws72{word-spacing:-14.907600px;}
.ws12{word-spacing:-14.879040px;}
.ws18{word-spacing:-14.877600px;}
.ws1e{word-spacing:-14.841600px;}
.ws58{word-spacing:-14.795040px;}
.ws2b{word-spacing:-14.709600px;}
.ws78{word-spacing:-14.699040px;}
.ws52{word-spacing:-14.669040px;}
.ws73{word-spacing:-14.583600px;}
.ws67{word-spacing:-14.475600px;}
.ws0{word-spacing:0.000000px;}
._21{margin-left:-19.826688px;}
._26{margin-left:-15.004080px;}
._5f{margin-left:-9.045936px;}
._25{margin-left:-7.737312px;}
._11{margin-left:-4.147776px;}
._9{margin-left:-3.100320px;}
._1{margin-left:-1.258560px;}
._0{width:1.272816px;}
._23{width:2.287512px;}
._6{width:3.300480px;}
._5{width:4.616640px;}
._17{width:5.620944px;}
._1a{width:6.655104px;}
._4{width:8.057760px;}
._3{width:9.100080px;}
._15{width:10.856304px;}
._14{width:12.536640px;}
._2{width:14.075424px;}
._b{width:16.624224px;}
._e{width:17.689680px;}
._d{width:19.016640px;}
._1b{width:20.327904px;}
._1c{width:21.330672px;}
._13{width:23.029344px;}
._12{width:24.056640px;}
._1d{width:25.291008px;}
._1e{width:26.546016px;}
._a{width:27.869184px;}
._20{width:29.096640px;}
._2c{width:30.568800px;}
._42{width:31.569264px;}
._32{width:32.583864px;}
._2f{width:34.038000px;}
._4e{width:35.221728px;}
._2a{width:36.221904px;}
._2b{width:37.234416px;}
._30{width:38.629872px;}
._63{width:40.690320px;}
._41{width:41.864160px;}
._35{width:43.501104px;}
._31{width:45.380880px;}
._58{width:48.366864px;}
._59{width:49.545696px;}
._40{width:51.659808px;}
._10{width:58.266864px;}
._f{width:59.469840px;}
._62{width:64.293120px;}
._61{width:65.677680px;}
._34{width:67.468800px;}
._57{width:73.732320px;}
._56{width:74.883024px;}
._19{width:81.287280px;}
._18{width:82.368000px;}
._3d{width:90.402144px;}
._3c{width:91.463760px;}
._4b{width:97.141536px;}
._69{width:99.763440px;}
._68{width:100.796160px;}
._2e{width:103.994784px;}
._8{width:129.382896px;}
._7{width:130.491504px;}
._4d{width:134.169264px;}
._3b{width:159.429840px;}
._3a{width:160.727760px;}
._2d{width:162.883440px;}
._5c{width:171.969840px;}
._3f{width:185.931504px;}
._39{width:191.845584px;}
._49{width:211.679136px;}
._4a{width:212.712192px;}
._c{width:219.264480px;}
._33{width:227.744640px;}
._43{width:239.904720px;}
._5b{width:266.653440px;}
._5a{width:268.000560px;}
._3e{width:326.993904px;}
._5e{width:345.489840px;}
._38{width:352.050624px;}
._44{width:422.751744px;}
._67{width:424.071984px;}
._5d{width:446.760480px;}
._65{width:455.848560px;}
._66{width:456.979440px;}
._54{width:503.216928px;}
._50{width:508.700640px;}
._4f{width:510.232320px;}
._6a{width:523.487664px;}
._55{width:739.031760px;}
._51{width:754.215024px;}
._52{width:755.259840px;}
._24{width:765.018336px;}
._37{width:807.669840px;}
._47{width:887.553840px;}
._53{width:945.242400px;}
._4c{width:1035.242400px;}
._60{width:1098.602400px;}
._28{width:1197.242400px;}
._36{width:1251.242400px;}
._45{width:1371.482400px;}
._48{width:1629.242400px;}
._46{width:1667.310240px;}
._64{width:1672.097088px;}
._27{width:1711.427664px;}
._16{width:1921.742400px;}
._1f{width:2017.558560px;}
._29{width:2061.422400px;}
._22{width:2160.782400px;}
.fca{color:rgb(0,76,62);}
.fc9{color:rgb(5,99,193);}
.fc7{color:rgb(35,30,63);}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(14,16,26);}
.fc3{color:rgb(14,40,65);}
.fc2{color:rgb(60,60,59);}
.fc1{color:transparent;}
.fc8{color:rgb(68,68,68);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:48.018094px;}
.fs5{font-size:59.760000px;}
.fs7{font-size:59.904000px;}
.fs6{font-size:66.240000px;}
.fs9{font-size:66.384000px;}
.fs4{font-size:72.000000px;}
.fsd{font-size:84.001650px;}
.fsb{font-size:88.324466px;}
.fsa{font-size:88.331175px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:95.904000px;}
.fs8{font-size:120.240000px;}
.fs1{font-size:227.335655px;}
.fs0{font-size:336.096651px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.yd{bottom:4.860000px;}
.y4f{bottom:4.905000px;}
.y2b{bottom:5.220000px;}
.y3ec{bottom:5.976000px;}
.ydc{bottom:6.156000px;}
.y4ba{bottom:9.161024px;}
.y163{bottom:10.875000px;}
.y464{bottom:11.736000px;}
.y4b5{bottom:14.936378px;}
.y3c5{bottom:14.970000px;}
.y20c{bottom:14.976000px;}
.y5c{bottom:15.015000px;}
.yfa{bottom:15.045000px;}
.y1d7{bottom:15.090000px;}
.y1ab{bottom:15.120000px;}
.y6e{bottom:15.150000px;}
.yb5{bottom:15.156000px;}
.y65{bottom:15.195000px;}
.y4b2{bottom:15.216032px;}
.y54{bottom:15.225000px;}
.yb8{bottom:15.270000px;}
.y295{bottom:16.230000px;}
.y30f{bottom:16.815000px;}
.y14d{bottom:19.656000px;}
.y2f3{bottom:19.725000px;}
.y1e6{bottom:20.085000px;}
.y4b6{bottom:23.175020px;}
.y39{bottom:23.580000px;}
.y41{bottom:23.760000px;}
.y2c1{bottom:24.015000px;}
.y211{bottom:24.270000px;}
.y47{bottom:24.480000px;}
.y4b{bottom:25.020000px;}
.y4b9{bottom:25.167056px;}
.y3c{bottom:25.200000px;}
.y34{bottom:25.230000px;}
.y269{bottom:25.455000px;}
.y5d{bottom:26.355000px;}
.y57{bottom:26.385000px;}
.y59{bottom:26.565000px;}
.y2d4{bottom:27.150000px;}
.y15{bottom:27.180000px;}
.y21{bottom:27.354000px;}
.yc{bottom:27.360000px;}
.y23{bottom:27.390000px;}
.y4e{bottom:27.405000px;}
.y2a8{bottom:27.576000px;}
.y404{bottom:28.470000px;}
.y188{bottom:28.476000px;}
.y2d1{bottom:28.650000px;}
.ydb{bottom:28.656000px;}
.y2a{bottom:29.700000px;}
.y2d{bottom:30.600000px;}
.y6a{bottom:30.855000px;}
.y2e6{bottom:30.930000px;}
.y463{bottom:34.236000px;}
.y3f8{bottom:34.815000px;}
.y23e{bottom:36.360000px;}
.y2b2{bottom:37.050000px;}
.y1a4{bottom:37.470000px;}
.y356{bottom:37.476000px;}
.y5b{bottom:37.515000px;}
.y100{bottom:37.545000px;}
.y1ad{bottom:37.590000px;}
.yb7{bottom:37.620000px;}
.y71{bottom:37.650000px;}
.y10a{bottom:37.656000px;}
.y6c{bottom:37.695000px;}
.y53{bottom:37.725000px;}
.ybb{bottom:37.770000px;}
.y4b8{bottom:41.173087px;}
.y318{bottom:41.976000px;}
.y14c{bottom:42.150000px;}
.y2f2{bottom:42.225000px;}
.y1d0{bottom:42.330000px;}
.yb{bottom:45.000000px;}
.y439{bottom:45.150000px;}
.y38{bottom:46.080000px;}
.y40{bottom:46.260000px;}
.y2c0{bottom:46.515000px;}
.y287{bottom:46.545000px;}
.y170{bottom:46.590000px;}
.y9a{bottom:46.650000px;}
.y242{bottom:46.695000px;}
.y13e{bottom:46.725000px;}
.y31b{bottom:46.770000px;}
.y46{bottom:46.980000px;}
.y4a{bottom:47.520000px;}
.y3b{bottom:47.700000px;}
.y33{bottom:47.730000px;}
.y2d3{bottom:49.500000px;}
.y14{bottom:49.680000px;}
.y43{bottom:49.854000px;}
.yf{bottom:49.860000px;}
.y187{bottom:50.970000px;}
.yda{bottom:50.976000px;}
.y1c1{bottom:51.150000px;}
.y308{bottom:51.156000px;}
.y29{bottom:54.180000px;}
.y28{bottom:55.800000px;}
.y4b7{bottom:57.179118px;}
.y254{bottom:59.550000px;}
.y135{bottom:59.970000px;}
.y64{bottom:60.015000px;}
.y139{bottom:60.045000px;}
.yba{bottom:60.090000px;}
.y151{bottom:60.120000px;}
.y237{bottom:60.150000px;}
.y261{bottom:60.156000px;}
.y105{bottom:60.195000px;}
.ya9{bottom:60.225000px;}
.y16b{bottom:60.270000px;}
.y69{bottom:62.355000px;}
.y14b{bottom:64.650000px;}
.y2f1{bottom:64.725000px;}
.y462{bottom:65.730000px;}
.ye8{bottom:65.850000px;}
.y438{bottom:67.650000px;}
.y37{bottom:68.580000px;}
.y1a8{bottom:68.970000px;}
.y374{bottom:69.015000px;}
.y493{bottom:69.045000px;}
.y16f{bottom:69.090000px;}
.y99{bottom:69.150000px;}
.y31a{bottom:69.270000px;}
.y45{bottom:69.510000px;}
.y19{bottom:72.180000px;}
.y11{bottom:72.225000px;}
.y26{bottom:72.360000px;}
.yd9{bottom:73.470000px;}
.y2bf{bottom:78.015000px;}
.y286{bottom:78.045000px;}
.y241{bottom:78.195000px;}
.y452{bottom:78.225000px;}
.y253{bottom:81.900000px;}
.y134{bottom:82.470000px;}
.y63{bottom:82.515000px;}
.y138{bottom:82.545000px;}
.ya8{bottom:82.590000px;}
.y1f0{bottom:82.620000px;}
.y1c0{bottom:82.650000px;}
.y351{bottom:82.695000px;}
.y15d{bottom:82.725000px;}
.y1ca{bottom:82.770000px;}
.yc0{bottom:86.220000px;}
.y109{bottom:86.580000px;}
.y14a{bottom:86.970000px;}
.y2f0{bottom:87.225000px;}
.y4b1{bottom:87.465111px;}
.y4b4{bottom:88.186708px;}
.y260{bottom:88.200000px;}
.y461{bottom:88.230000px;}
.ye7{bottom:88.350000px;}
.y40e{bottom:88.380000px;}
.y437{bottom:90.150000px;}
.y383{bottom:90.720000px;}
.y457{bottom:90.900000px;}
.y36{bottom:91.080000px;}
.y3f{bottom:91.125000px;}
.y40f{bottom:91.440000px;}
.y20b{bottom:91.470000px;}
.y373{bottom:91.515000px;}
.y3ac{bottom:91.725000px;}
.y319{bottom:91.770000px;}
.y276{bottom:92.160000px;}
.y2a9{bottom:92.736000px;}
.y68{bottom:93.675000px;}
.y18{bottom:94.680000px;}
.y2fa{bottom:95.220000px;}
.yd8{bottom:95.970000px;}
.y28b{bottom:96.660000px;}
.y3dd{bottom:97.740000px;}
.y2f5{bottom:98.205000px;}
.y31c{bottom:98.250000px;}
.y346{bottom:99.000000px;}
.y3ff{bottom:99.180000px;}
.y175{bottom:99.720000px;}
.y2{bottom:99.890097px;}
.y1ef{bottom:99.900000px;}
.y31e{bottom:100.440000px;}
.y1a7{bottom:100.470000px;}
.y16e{bottom:100.590000px;}
.y98{bottom:100.650000px;}
.y317{bottom:100.980000px;}
.y47a{bottom:103.320000px;}
.y29a{bottom:103.896000px;}
.y44b{bottom:104.040000px;}
.y133{bottom:104.970000px;}
.y62{bottom:105.015000px;}
.yf5{bottom:105.045000px;}
.ya7{bottom:105.090000px;}
.y20e{bottom:105.120000px;}
.y2b1{bottom:105.150000px;}
.y3c2{bottom:105.195000px;}
.y15c{bottom:105.225000px;}
.y1dd{bottom:105.660000px;}
.y3ba{bottom:106.020000px;}
.y281{bottom:106.236000px;}
.y3dc{bottom:107.460000px;}
.y26f{bottom:107.496000px;}
.y249{bottom:108.540000px;}
.y149{bottom:109.470000px;}
.y2be{bottom:109.515000px;}
.y285{bottom:109.545000px;}
.y479{bottom:109.695000px;}
.y2ef{bottom:109.725000px;}
.y1d1{bottom:110.016000px;}
.y429{bottom:110.160000px;}
.y460{bottom:110.730000px;}
.ye6{bottom:110.850000px;}
.y1b9{bottom:110.880000px;}
.y2a7{bottom:111.240000px;}
.y355{bottom:111.600000px;}
.y436{bottom:112.500000px;}
.y20a{bottom:113.970000px;}
.y345{bottom:114.015000px;}
.y199{bottom:114.045000px;}
.y1c9{bottom:114.090000px;}
.y2e4{bottom:114.120000px;}
.y3f4{bottom:114.225000px;}
.y146{bottom:114.300000px;}
.y169{bottom:115.020000px;}
.y10b{bottom:117.720000px;}
.yd7{bottom:118.470000px;}
.y1a9{bottom:118.800000px;}
.y14f{bottom:120.630000px;}
.y403{bottom:122.220000px;}
.y97{bottom:122.970000px;}
.y3d5{bottom:124.350000px;}
.y2d0{bottom:125.100000px;}
.y67{bottom:125.175000px;}
.y20{bottom:126.756000px;}
.yb4{bottom:127.080000px;}
.y1f4{bottom:127.440000px;}
.y132{bottom:127.470000px;}
.y61{bottom:127.515000px;}
.yf4{bottom:127.545000px;}
.ya6{bottom:127.590000px;}
.y427{bottom:127.800000px;}
.y1cd{bottom:128.520000px;}
.y148{bottom:131.970000px;}
.y1a6{bottom:132.015000px;}
.y2ee{bottom:132.045000px;}
.y16d{bottom:132.090000px;}
.y32c{bottom:133.056000px;}
.y45f{bottom:133.230000px;}
.ye5{bottom:133.350000px;}
.y72{bottom:135.540000px;}
.y43a{bottom:136.260000px;}
.y209{bottom:136.470000px;}
.y236{bottom:136.515000px;}
.y198{bottom:136.545000px;}
.y1c8{bottom:136.590000px;}
.y299{bottom:137.556000px;}
.y3b9{bottom:138.240000px;}
.y42{bottom:138.276000px;}
.y280{bottom:139.896000px;}
.y3eb{bottom:140.790000px;}
.y284{bottom:140.865000px;}
.yd6{bottom:140.970000px;}
.y2bd{bottom:141.015000px;}
.y451{bottom:141.045000px;}
.y26e{bottom:141.156000px;}
.y108{bottom:141.300000px;}
.y40d{bottom:143.100000px;}
.y2f4{bottom:145.545000px;}
.y2e3{bottom:146.340000px;}
.y3d4{bottom:146.670000px;}
.y2e2{bottom:149.835000px;}
.y137{bottom:149.865000px;}
.y47c{bottom:149.940000px;}
.y131{bottom:149.970000px;}
.y60{bottom:150.015000px;}
.yf3{bottom:150.045000px;}
.ya5{bottom:150.090000px;}
.y2aa{bottom:150.480000px;}
.y3fe{bottom:153.900000px;}
.y147{bottom:154.470000px;}
.y96{bottom:154.515000px;}
.y2ed{bottom:154.545000px;}
.y492{bottom:154.590000px;}
.y45e{bottom:155.550000px;}
.ye4{bottom:155.670000px;}
.y2a6{bottom:155.880000px;}
.y66{bottom:156.675000px;}
.y21d{bottom:158.040000px;}
.y208{bottom:158.835000px;}
.y417{bottom:158.970000px;}
.y235{bottom:159.015000px;}
.y197{bottom:159.045000px;}
.y1c7{bottom:159.090000px;}
.y70{bottom:160.200000px;}
.y49d{bottom:161.640000px;}
.y382{bottom:163.080000px;}
.y248{bottom:163.260000px;}
.y1df{bottom:163.290000px;}
.y1a5{bottom:163.335000px;}
.yd5{bottom:163.470000px;}
.y478{bottom:163.515000px;}
.y16c{bottom:163.590000px;}
.y354{bottom:166.140000px;}
.y32b{bottom:166.890000px;}
.y14e{bottom:168.015000px;}
.y3d3{bottom:169.170000px;}
.y4ab{bottom:169.380000px;}
.y168{bottom:169.740000px;}
.y298{bottom:171.390000px;}
.y186{bottom:172.290000px;}
.y5f{bottom:172.335000px;}
.yf2{bottom:172.365000px;}
.y283{bottom:172.410000px;}
.y1f{bottom:172.470000px;}
.y104{bottom:172.515000px;}
.y15b{bottom:172.545000px;}
.ya4{bottom:172.590000px;}
.y107{bottom:173.520000px;}
.y27f{bottom:173.730000px;}
.y26d{bottom:174.810000px;}
.y95{bottom:177.015000px;}
.y2ec{bottom:177.045000px;}
.y491{bottom:177.090000px;}
.y45d{bottom:178.050000px;}
.ye3{bottom:178.170000px;}
.y207{bottom:181.335000px;}
.y372{bottom:181.365000px;}
.y416{bottom:181.470000px;}
.y234{bottom:181.515000px;}
.y196{bottom:181.545000px;}
.y1c6{bottom:181.590000px;}
.yb3{bottom:181.800000px;}
.y3a4{bottom:183.060000px;}
.y27a{bottom:183.675000px;}
.yae{bottom:184.065000px;}
.y3d0{bottom:185.580000px;}
.yd4{bottom:185.790000px;}
.y1de{bottom:185.835000px;}
.y307{bottom:185.970000px;}
.y477{bottom:186.015000px;}
.y3c1{bottom:190.515000px;}
.y316{bottom:191.520000px;}
.y3d2{bottom:191.670000px;}
.y3b8{bottom:192.960000px;}
.y130{bottom:194.835000px;}
.yf1{bottom:194.865000px;}
.y23a{bottom:194.910000px;}
.y24b{bottom:194.940000px;}
.y36b{bottom:194.970000px;}
.y2b0{bottom:195.015000px;}
.y15a{bottom:195.045000px;}
.ya3{bottom:195.090000px;}
.y381{bottom:195.300000px;}
.y40c{bottom:197.820000px;}
.y353{bottom:198.360000px;}
.y48b{bottom:199.260000px;}
.y94{bottom:199.515000px;}
.y32a{bottom:200.550000px;}
.y45c{bottom:200.595000px;}
.ye2{bottom:200.670000px;}
.y206{bottom:203.835000px;}
.y371{bottom:203.865000px;}
.y348{bottom:203.940000px;}
.y1bf{bottom:204.015000px;}
.y195{bottom:204.045000px;}
.y1c5{bottom:204.090000px;}
.y297{bottom:205.050000px;}
.y106{bottom:205.740000px;}
.y3e{bottom:206.490000px;}
.y27e{bottom:207.390000px;}
.yd3{bottom:208.335000px;}
.y44a{bottom:208.515000px;}
.y490{bottom:208.590000px;}
.y3fd{bottom:208.620000px;}
.y26c{bottom:208.650000px;}
.y2a5{bottom:210.600000px;}
.y344{bottom:212.835000px;}
.y1ee{bottom:212.940000px;}
.y233{bottom:213.015000px;}
.y6f{bottom:214.920000px;}
.y3a3{bottom:215.280000px;}
.y49c{bottom:216.360000px;}
.y12f{bottom:217.335000px;}
.yf0{bottom:217.365000px;}
.ya2{bottom:217.410000px;}
.y2af{bottom:217.515000px;}
.y159{bottom:217.545000px;}
.y3aa{bottom:217.590000px;}
.y3cf{bottom:217.800000px;}
.y247{bottom:217.980000px;}
.y1e{bottom:218.190000px;}
.y328{bottom:219.060000px;}
.y93{bottom:222.015000px;}
.y45b{bottom:223.095000px;}
.ye1{bottom:223.170000px;}
.y4aa{bottom:224.100000px;}
.y167{bottom:224.460000px;}
.y465{bottom:225.360000px;}
.y205{bottom:226.335000px;}
.y370{bottom:226.365000px;}
.y194{bottom:226.410000px;}
.y1e1{bottom:226.440000px;}
.y1be{bottom:226.515000px;}
.y3f3{bottom:226.545000px;}
.y49e{bottom:226.590000px;}
.y380{bottom:227.520000px;}
.y352{bottom:230.580000px;}
.yd2{bottom:230.835000px;}
.y48f{bottom:230.910000px;}
.y32d{bottom:234.540000px;}
.y21c{bottom:235.080000px;}
.y232{bottom:235.335000px;}
.y3c0{bottom:235.545000px;}
.y1c4{bottom:235.590000px;}
.yb2{bottom:236.520000px;}
.y3f0{bottom:237.750000px;}
.y296{bottom:238.710000px;}
.y12e{bottom:239.835000px;}
.yef{bottom:239.865000px;}
.ya1{bottom:239.910000px;}
.y2ae{bottom:240.015000px;}
.y158{bottom:240.090000px;}
.y27d{bottom:241.050000px;}
.y26b{bottom:242.310000px;}
.y2a1{bottom:242.820000px;}
.y3db{bottom:243.000000px;}
.y92{bottom:244.515000px;}
.y2c3{bottom:244.800000px;}
.y45a{bottom:245.595000px;}
.ye0{bottom:245.670000px;}
.y315{bottom:246.240000px;}
.y6d{bottom:247.140000px;}
.y3a2{bottom:247.500000px;}
.y1bd{bottom:248.835000px;}
.y36f{bottom:248.865000px;}
.y193{bottom:248.910000px;}
.y3f2{bottom:249.045000px;}
.y3a9{bottom:249.090000px;}
.y3ce{bottom:250.020000px;}
.y40b{bottom:252.540000px;}
.yd1{bottom:253.335000px;}
.y48e{bottom:253.410000px;}
.y48a{bottom:253.800000px;}
.y4a9{bottom:256.320000px;}
.y166{bottom:256.680000px;}
.y294{bottom:257.400000px;}
.y343{bottom:257.835000px;}
.y1c3{bottom:257.940000px;}
.y3bf{bottom:258.045000px;}
.y3ef{bottom:260.250000px;}
.y103{bottom:260.460000px;}
.y2cf{bottom:260.640000px;}
.y3c4{bottom:262.260000px;}
.y185{bottom:262.335000px;}
.yee{bottom:262.365000px;}
.ya0{bottom:262.410000px;}
.y3fc{bottom:263.340000px;}
.y1d{bottom:263.730000px;}
.y432{bottom:266.610000px;}
.y24c{bottom:266.760000px;}
.y91{bottom:266.835000px;}
.y21b{bottom:267.300000px;}
.y1ed{bottom:267.660000px;}
.y459{bottom:268.095000px;}
.ydf{bottom:268.170000px;}
.yb1{bottom:268.740000px;}
.y329{bottom:269.175000px;}
.y49b{bottom:271.080000px;}
.y12d{bottom:271.335000px;}
.y36e{bottom:271.365000px;}
.y4bb{bottom:271.367295px;}
.y192{bottom:271.410000px;}
.y476{bottom:271.515000px;}
.yad{bottom:271.545000px;}
.y3c7{bottom:271.620000px;}
.y246{bottom:272.700000px;}
.y27c{bottom:274.890000px;}
.y3ea{bottom:275.655000px;}
.yd0{bottom:275.835000px;}
.y26a{bottom:275.970000px;}
.y25f{bottom:277.740000px;}
.y6b{bottom:279.360000px;}
.y240{bottom:280.365000px;}
.y19c{bottom:281.700000px;}
.y37f{bottom:282.240000px;}
.y3ee{bottom:282.600000px;}
.y398{bottom:283.680000px;}
.y40a{bottom:284.760000px;}
.y184{bottom:284.835000px;}
.yed{bottom:284.865000px;}
.y9f{bottom:284.910000px;}
.y350{bottom:285.300000px;}
.y489{bottom:286.020000px;}
.y1c{bottom:286.995000px;}
.y4af{bottom:287.355000px;}
.y90{bottom:289.335000px;}
.y458{bottom:290.415000px;}
.yde{bottom:290.520000px;}
.y293{bottom:290.700000px;}
.y204{bottom:293.655000px;}
.y2e1{bottom:293.685000px;}
.y12c{bottom:293.835000px;}
.y36d{bottom:293.865000px;}
.y191{bottom:293.910000px;}
.y268{bottom:294.660000px;}
.y3fb{bottom:295.560000px;}
.y3da{bottom:297.720000px;}
.y3e9{bottom:298.155000px;}
.ycf{bottom:298.335000px;}
.y21a{bottom:299.520000px;}
.y314{bottom:300.960000px;}
.y15f{bottom:301.860000px;}
.y3a1{bottom:302.220000px;}
.y449{bottom:302.835000px;}
.y290{bottom:302.910000px;}
.y245{bottom:304.920000px;}
.y4ac{bottom:305.820000px;}
.y183{bottom:307.155000px;}
.yec{bottom:307.185000px;}
.y3bd{bottom:307.230000px;}
.y30a{bottom:307.260000px;}
.y2ad{bottom:307.335000px;}
.y402{bottom:307.365000px;}
.y157{bottom:307.410000px;}
.y431{bottom:308.415000px;}
.y27b{bottom:308.595000px;}
.y8f{bottom:311.835000px;}
.y377{bottom:314.100000px;}
.y2ce{bottom:315.360000px;}
.y3d{bottom:315.975000px;}
.y203{bottom:316.155000px;}
.y2e0{bottom:316.185000px;}
.y12b{bottom:316.335000px;}
.y394{bottom:316.365000px;}
.y9e{bottom:316.410000px;}
.y3c3{bottom:316.800000px;}
.y426{bottom:317.340000px;}
.y488{bottom:318.240000px;}
.yce{bottom:320.655000px;}
.y231{bottom:320.835000px;}
.y1ec{bottom:322.380000px;}
.y1bc{bottom:325.335000px;}
.y41b{bottom:325.365000px;}
.y28f{bottom:325.410000px;}
.y49a{bottom:325.800000px;}
.y279{bottom:327.060000px;}
.y182{bottom:329.655000px;}
.yeb{bottom:329.685000px;}
.y3bc{bottom:329.730000px;}
.y2c5{bottom:329.760000px;}
.y2ac{bottom:329.835000px;}
.y156{bottom:329.910000px;}
.y165{bottom:330.555000px;}
.y145{bottom:330.840000px;}
.y219{bottom:331.740000px;}
.y25e{bottom:332.460000px;}
.y1b{bottom:332.715000px;}
.y2f9{bottom:333.360000px;}
.y5e{bottom:334.080000px;}
.y448{bottom:334.335000px;}
.y342{bottom:334.365000px;}
.y258{bottom:334.410000px;}
.y41d{bottom:335.700000px;}
.y19b{bottom:336.420000px;}
.y3cd{bottom:336.780000px;}
.y267{bottom:337.140000px;}
.y12a{bottom:338.655000px;}
.y2a4{bottom:338.685000px;}
.y239{bottom:338.760000px;}
.y401{bottom:338.865000px;}
.y9d{bottom:338.910000px;}
.y430{bottom:342.255000px;}
.yb0{bottom:342.435000px;}
.ycd{bottom:343.155000px;}
.y8e{bottom:343.335000px;}
.y292{bottom:345.420000px;}
.y400{bottom:347.580000px;}
.y415{bottom:347.655000px;}
.y393{bottom:347.685000px;}
.y1bb{bottom:347.835000px;}
.y41a{bottom:347.865000px;}
.y28e{bottom:347.910000px;}
.y3be{bottom:349.020000px;}
.y181{bottom:352.155000px;}
.yea{bottom:352.185000px;}
.y1b8{bottom:352.230000px;}
.y2ab{bottom:352.335000px;}
.y264{bottom:352.410000px;}
.y396{bottom:352.440000px;}
.y313{bottom:355.680000px;}
.y244{bottom:356.295000px;}
.y341{bottom:356.685000px;}
.y447{bottom:356.835000px;}
.y475{bottom:356.865000px;}
.y499{bottom:358.020000px;}
.y2d9{bottom:358.380000px;}
.y409{bottom:358.455000px;}
.y42f{bottom:360.720000px;}
.y129{bottom:361.155000px;}
.y2a3{bottom:361.185000px;}
.y190{bottom:361.230000px;}
.y9c{bottom:361.260000px;}
.y4a8{bottom:361.365000px;}
.y3a8{bottom:361.410000px;}
.y1cf{bottom:361.515000px;}
.y2c2{bottom:363.960000px;}
.ycc{bottom:365.655000px;}
.y8d{bottom:365.835000px;}
.y19a{bottom:368.640000px;}
.y3fa{bottom:369.255000px;}
.y2cd{bottom:370.080000px;}
.y414{bottom:370.155000px;}
.y392{bottom:370.185000px;}
.y28d{bottom:370.260000px;}
.y1ba{bottom:370.335000px;}
.y419{bottom:370.365000px;}
.yf7{bottom:370.440000px;}
.y425{bottom:372.060000px;}
.y487{bottom:372.960000px;}
.y4b3{bottom:373.815005px;}
.y4b0{bottom:374.535005px;}
.y180{bottom:374.655000px;}
.y251{bottom:374.685000px;}
.y1b7{bottom:374.730000px;}
.y164{bottom:375.375000px;}
.y1eb{bottom:377.100000px;}
.y291{bottom:377.640000px;}
.y15e{bottom:379.080000px;}
.y340{bottom:379.185000px;}
.y446{bottom:379.335000px;}
.y474{bottom:379.365000px;}
.yf9{bottom:381.600000px;}
.y3a{bottom:382.035000px;}
.y3b7{bottom:382.500000px;}
.y128{bottom:383.655000px;}
.y2a2{bottom:383.685000px;}
.y18f{bottom:383.730000px;}
.y48d{bottom:383.760000px;}
.y3a7{bottom:383.910000px;}
.y376{bottom:383.940000px;}
.yaf{bottom:384.375000px;}
.y1a3{bottom:385.380000px;}
.y144{bottom:385.560000px;}
.y218{bottom:386.460000px;}
.y25d{bottom:387.180000px;}
.y312{bottom:387.900000px;}
.ycb{bottom:388.155000px;}
.y8c{bottom:388.335000px;}
.y41c{bottom:390.240000px;}
.y162{bottom:390.885000px;}
.y266{bottom:391.860000px;}
.y413{bottom:392.655000px;}
.y391{bottom:392.685000px;}
.y42e{bottom:392.940000px;}
.y17f{bottom:397.155000px;}
.y250{bottom:397.185000px;}
.y1b6{bottom:397.230000px;}
.y243{bottom:398.055000px;}
.y456{bottom:398.520000px;}
.y408{bottom:400.395000px;}
.y1a{bottom:400.935000px;}
.y33f{bottom:401.685000px;}
.y160{bottom:401.940000px;}
.yac{bottom:402.840000px;}
.y127{bottom:406.155000px;}
.y2df{bottom:406.185000px;}
.y2a0{bottom:406.230000px;}
.y3a6{bottom:406.260000px;}
.y395{bottom:407.160000px;}
.y1ea{bottom:409.320000px;}
.y498{bottom:409.395000px;}
.y3e8{bottom:410.475000px;}
.y8b{bottom:410.655000px;}
.y445{bottom:410.835000px;}
.y473{bottom:410.865000px;}
.y3f9{bottom:411.195000px;}
.y412{bottom:415.155000px;}
.y18e{bottom:415.230000px;}
.y23f{bottom:416.520000px;}
.y2bc{bottom:418.680000px;}
.y17e{bottom:419.655000px;}
.y24f{bottom:419.685000px;}
.y1b5{bottom:419.730000px;}
.y418{bottom:422.460000px;}
.y19e{bottom:423.720000px;}
.y265{bottom:424.080000px;}
.y33e{bottom:424.185000px;}
.y2cc{bottom:424.800000px;}
.yf6{bottom:425.160000px;}
.y3b0{bottom:426.600000px;}
.y202{bottom:428.475000px;}
.y2de{bottom:428.505000px;}
.y126{bottom:428.655000px;}
.y230{bottom:428.685000px;}
.y29f{bottom:428.730000px;}
.y3f7{bottom:429.660000px;}
.y455{bottom:430.740000px;}
.y2f8{bottom:432.900000px;}
.y3e7{bottom:432.975000px;}
.yca{bottom:433.155000px;}
.y8a{bottom:433.185000px;}
.y407{bottom:434.055000px;}
.y3b6{bottom:437.220000px;}
.y411{bottom:437.655000px;}
.y18d{bottom:437.730000px;}
.y4ae{bottom:438.045000px;}
.y375{bottom:438.660000px;}
.y390{bottom:439.380000px;}
.y143{bottom:440.100000px;}
.y25c{bottom:441.720000px;}
.y17d{bottom:441.975000px;}
.y24e{bottom:442.005000px;}
.y1b4{bottom:442.050000px;}
.y306{bottom:442.155000px;}
.y444{bottom:442.185000px;}
.y472{bottom:442.365000px;}
.y33d{bottom:446.685000px;}
.y42d{bottom:447.660000px;}
.y35{bottom:448.095000px;}
.y102{bottom:450.000000px;}
.y201{bottom:451.005000px;}
.y36a{bottom:451.155000px;}
.y125{bottom:451.185000px;}
.y29e{bottom:451.230000px;}
.y405{bottom:452.520000px;}
.yc9{bottom:455.475000px;}
.y89{bottom:455.685000px;}
.y2cb{bottom:457.020000px;}
.y41f{bottom:458.100000px;}
.y410{bottom:460.155000px;}
.y311{bottom:461.595000px;}
.y454{bottom:462.960000px;}
.y17c{bottom:464.475000px;}
.y24d{bottom:464.505000px;}
.y1b3{bottom:464.550000px;}
.y305{bottom:464.655000px;}
.y42c{bottom:464.685000px;}
.y2f7{bottom:465.120000px;}
.y17{bottom:469.155000px;}
.y33c{bottom:469.185000px;}
.y18c{bottom:469.230000px;}
.y497{bottom:469.620000px;}
.y36c{bottom:470.880000px;}
.y38f{bottom:473.475000px;}
.y124{bottom:473.505000px;}
.y369{bottom:473.655000px;}
.y22f{bottom:473.685000px;}
.y29d{bottom:473.730000px;}
.y25b{bottom:473.940000px;}
.y1dc{bottom:474.840000px;}
.y4a1{bottom:477.180000px;}
.yc8{bottom:477.975000px;}
.y3e6{bottom:478.005000px;}
.y88{bottom:478.185000px;}
.y13d{bottom:478.440000px;}
.ye9{bottom:479.880000px;}
.y424{bottom:481.320000px;}
.y3f6{bottom:481.680000px;}
.y200{bottom:482.505000px;}
.y3d1{bottom:482.685000px;}
.y1e9{bottom:483.015000px;}
.y17b{bottom:487.005000px;}
.y1b2{bottom:487.050000px;}
.y33b{bottom:491.505000px;}
.y18b{bottom:491.730000px;}
.y3b5{bottom:491.940000px;}
.y3ae{bottom:492.840000px;}
.y37e{bottom:494.280000px;}
.y142{bottom:494.820000px;}
.y453{bottom:495.180000px;}
.y123{bottom:496.005000px;}
.y2dd{bottom:496.050000px;}
.y29c{bottom:496.080000px;}
.y22e{bottom:496.185000px;}
.y4a7{bottom:496.230000px;}
.y2f6{bottom:497.340000px;}
.y1ae{bottom:498.240000px;}
.yc7{bottom:500.505000px;}
.y87{bottom:500.685000px;}
.y406{bottom:501.270000px;}
.y496{bottom:501.840000px;}
.y310{bottom:503.535000px;}
.y101{bottom:504.720000px;}
.y1ff{bottom:505.005000px;}
.y327{bottom:505.260000px;}
.y17a{bottom:509.505000px;}
.y1b1{bottom:509.550000px;}
.y3d9{bottom:513.075000px;}
.y423{bottom:513.540000px;}
.y33a{bottom:514.005000px;}
.y18a{bottom:514.080000px;}
.y3a0{bottom:514.260000px;}
.y122{bottom:518.505000px;}
.y2dc{bottom:518.550000px;}
.y275{bottom:519.840000px;}
.y30e{bottom:522.000000px;}
.yc6{bottom:523.005000px;}
.y86{bottom:523.185000px;}
.y5a{bottom:523.620000px;}
.y1e8{bottom:524.775000px;}
.y25a{bottom:525.315000px;}
.y141{bottom:527.040000px;}
.y1fe{bottom:527.505000px;}
.y22d{bottom:527.685000px;}
.y13b{bottom:527.760000px;}
.y1db{bottom:529.560000px;}
.y2ca{bottom:530.715000px;}
.y179{bottom:532.005000px;}
.y1b0{bottom:532.050000px;}
.y3f5{bottom:536.220000px;}
.y339{bottom:536.505000px;}
.y121{bottom:541.005000px;}
.y2db{bottom:541.050000px;}
.y3e5{bottom:545.325000px;}
.y85{bottom:545.505000px;}
.y3b4{bottom:546.660000px;}
.y3ad{bottom:547.560000px;}
.y3cc{bottom:548.820000px;}
.y37d{bottom:549.000000px;}
.y1a2{bottom:549.540000px;}
.y450{bottom:549.720000px;}
.y1fd{bottom:550.005000px;}
.y274{bottom:552.060000px;}
.y178{bottom:554.505000px;}
.y1af{bottom:554.550000px;}
.y3d8{bottom:554.835000px;}
.y30d{bottom:555.840000px;}
.y495{bottom:556.560000px;}
.y32{bottom:557.535000px;}
.y1e7{bottom:558.615000px;}
.y338{bottom:559.005000px;}
.y443{bottom:559.185000px;}
.yff{bottom:559.440000px;}
.y326{bottom:559.980000px;}
.y1da{bottom:561.780000px;}
.y486{bottom:562.500000px;}
.y2da{bottom:563.370000px;}
.y120{bottom:563.505000px;}
.y4a6{bottom:563.550000px;}
.y3d7{bottom:566.100000px;}
.y3e4{bottom:567.825000px;}
.yc5{bottom:568.005000px;}
.y3f1{bottom:568.440000px;}
.y39f{bottom:568.980000px;}
.y259{bottom:570.345000px;}
.y1fc{bottom:572.325000px;}
.y22c{bottom:572.505000px;}
.y3d6{bottom:573.480000px;}
.y28a{bottom:574.560000px;}
.y177{bottom:576.825000px;}
.y84{bottom:577.005000px;}
.y1e5{bottom:577.080000px;}
.y58{bottom:578.160000px;}
.y3b3{bottom:578.880000px;}
.y3ab{bottom:579.780000px;}
.y442{bottom:581.685000px;}
.y1a1{bottom:581.760000px;}
.y4a0{bottom:582.120000px;}
.y16{bottom:582.225000px;}
.y13a{bottom:582.480000px;}
.y273{bottom:584.280000px;}
.y11f{bottom:586.005000px;}
.y4a5{bottom:586.050000px;}
.y422{bottom:587.445000px;}
.y494{bottom:588.780000px;}
.yc4{bottom:590.325000px;}
.y337{bottom:590.505000px;}
.y471{bottom:590.685000px;}
.y2c9{bottom:591.120000px;}
.y325{bottom:592.200000px;}
.y1d9{bottom:594.000000px;}
.y1fb{bottom:594.825000px;}
.y38e{bottom:595.005000px;}
.y257{bottom:596.880000px;}
.y217{bottom:598.500000px;}
.y176{bottom:599.325000px;}
.y83{bottom:599.505000px;}
.y140{bottom:600.945000px;}
.y3cb{bottom:603.540000px;}
.y37c{bottom:603.720000px;}
.y22b{bottom:604.005000px;}
.y289{bottom:606.780000px;}
.y2bb{bottom:608.220000px;}
.y11e{bottom:608.325000px;}
.y304{bottom:608.505000px;}
.y4a4{bottom:608.550000px;}
.y30c{bottom:610.560000px;}
.yc3{bottom:612.825000px;}
.y336{bottom:613.050000px;}
.y470{bottom:613.185000px;}
.y155{bottom:613.440000px;}
.yfe{bottom:613.980000px;}
.y1e4{bottom:614.340000px;}
.y272{bottom:616.500000px;}
.y485{bottom:617.220000px;}
.y1fa{bottom:617.325000px;}
.y368{bottom:617.505000px;}
.y324{bottom:621.825000px;}
.y82{bottom:622.005000px;}
.y2c8{bottom:623.340000px;}
.y31{bottom:623.625000px;}
.y39e{bottom:623.700000px;}
.y3bb{bottom:624.060000px;}
.y189{bottom:625.500000px;}
.y22a{bottom:626.505000px;}
.y278{bottom:627.300000px;}
.y421{bottom:629.205000px;}
.y11d{bottom:630.825000px;}
.y56{bottom:632.880000px;}
.yc2{bottom:635.325000px;}
.y335{bottom:635.370000px;}
.y46f{bottom:635.550000px;}
.y49f{bottom:636.660000px;}
.y136{bottom:637.200000px;}
.y288{bottom:639.000000px;}
.y367{bottom:639.825000px;}
.y4a3{bottom:640.050000px;}
.y13f{bottom:642.705000px;}
.y30b{bottom:642.780000px;}
.y29b{bottom:643.500000px;}
.y323{bottom:644.325000px;}
.yfd{bottom:646.200000px;}
.y1d8{bottom:648.720000px;}
.y1f9{bottom:648.825000px;}
.y229{bottom:649.005000px;}
.y1ce{bottom:649.185000px;}
.y13{bottom:650.445000px;}
.y3b2{bottom:652.605000px;}
.y216{bottom:653.040000px;}
.y11c{bottom:653.325000px;}
.y81{bottom:653.505000px;}
.y1a0{bottom:655.485000px;}
.yc1{bottom:657.825000px;}
.y334{bottom:657.870000px;}
.y46e{bottom:658.050000px;}
.y37b{bottom:658.260000px;}
.y277{bottom:659.520000px;}
.y13c{bottom:661.140000px;}
.y34f{bottom:661.320000px;}
.y366{bottom:662.325000px;}
.y4a2{bottom:662.400000px;}
.y2ba{bottom:662.760000px;}
.y420{bottom:662.865000px;}
.y322{bottom:666.825000px;}
.y1e3{bottom:668.880000px;}
.y271{bottom:671.220000px;}
.y1f8{bottom:671.325000px;}
.y441{bottom:671.505000px;}
.y484{bottom:671.940000px;}
.y11b{bottom:675.825000px;}
.y80{bottom:676.005000px;}
.y2c7{bottom:677.880000px;}
.y39d{bottom:678.240000px;}
.y333{bottom:680.370000px;}
.y228{bottom:680.505000px;}
.y46d{bottom:680.550000px;}
.y41e{bottom:681.480000px;}
.y434{bottom:683.820000px;}
.y365{bottom:684.825000px;}
.y55{bottom:687.600000px;}
.y3e3{bottom:689.145000px;}
.y321{bottom:689.325000px;}
.y37a{bottom:690.480000px;}
.yab{bottom:691.380000px;}
.y30{bottom:691.665000px;}
.y34e{bottom:693.540000px;}
.y282{bottom:693.720000px;}
.y1f7{bottom:693.825000px;}
.y440{bottom:694.005000px;}
.y3b1{bottom:694.365000px;}
.y19f{bottom:697.425000px;}
.yfc{bottom:697.605000px;}
.y11a{bottom:698.325000px;}
.y1e2{bottom:701.100000px;}
.y227{bottom:702.870000px;}
.y46c{bottom:703.050000px;}
.y7f{bottom:707.325000px;}
.y215{bottom:707.760000px;}
.y2c6{bottom:710.100000px;}
.y39c{bottom:710.460000px;}
.y3e2{bottom:711.645000px;}
.y320{bottom:711.825000px;}
.y3af{bottom:712.980000px;}
.y23d{bottom:713.805000px;}
.y23c{bottom:713.880000px;}
.y19d{bottom:715.860000px;}
.y174{bottom:716.040000px;}
.y1f6{bottom:716.145000px;}
.y43f{bottom:716.550000px;}
.y2b9{bottom:717.480000px;}
.y12{bottom:718.485000px;}
.y52{bottom:719.820000px;}
.y119{bottom:720.825000px;}
.y226{bottom:725.370000px;}
.y46b{bottom:725.550000px;}
.y483{bottom:726.660000px;}
.y364{bottom:729.825000px;}
.y7e{bottom:729.870000px;}
.y3a5{bottom:733.320000px;}
.y31f{bottom:734.145000px;}
.y2f{bottom:737.385000px;}
.y161{bottom:737.640000px;}
.y433{bottom:738.540000px;}
.y1f5{bottom:738.690000px;}
.y43e{bottom:738.870000px;}
.y44f{bottom:739.260000px;}
.yfb{bottom:739.365000px;}
.y118{bottom:743.190000px;}
.y303{bottom:743.325000px;}
.y42b{bottom:743.370000px;}
.y34d{bottom:744.945000px;}
.y3ca{bottom:745.200000px;}
.yaa{bottom:746.100000px;}
.y225{bottom:747.870000px;}
.y46a{bottom:748.050000px;}
.y38d{bottom:752.145000px;}
.y363{bottom:752.325000px;}
.y48c{bottom:755.820000px;}
.y3e1{bottom:756.690000px;}
.yf8{bottom:757.980000px;}
.y482{bottom:758.880000px;}
.ybf{bottom:761.040000px;}
.y7d{bottom:761.370000px;}
.y39b{bottom:761.865000px;}
.y214{bottom:762.480000px;}
.y379{bottom:765.105000px;}
.y117{bottom:765.690000px;}
.y23b{bottom:768.600000px;}
.y28c{bottom:769.320000px;}
.y332{bottom:770.190000px;}
.y224{bottom:770.370000px;}
.y173{bottom:770.760000px;}
.y2b8{bottom:772.200000px;}
.y362{bottom:774.690000px;}
.y9b{bottom:778.320000px;}
.y3e0{bottom:779.190000px;}
.y2e{bottom:783.105000px;}
.y38c{bottom:783.690000px;}
.y43d{bottom:783.870000px;}
.y10{bottom:786.705000px;}
.y116{bottom:788.190000px;}
.y34c{bottom:789.945000px;}
.y331{bottom:792.690000px;}
.y7c{bottom:792.870000px;}
.ybe{bottom:793.260000px;}
.y44e{bottom:793.980000px;}
.y51{bottom:794.445000px;}
.y1cc{bottom:794.700000px;}
.y3c9{bottom:796.425000px;}
.y302{bottom:797.190000px;}
.y238{bottom:800.820000px;}
.y3df{bottom:801.690000px;}
.y172{bottom:802.980000px;}
.y39a{bottom:803.625000px;}
.y2b7{bottom:804.420000px;}
.y38b{bottom:806.190000px;}
.y43c{bottom:806.370000px;}
.y378{bottom:806.865000px;}
.y2c4{bottom:809.820000px;}
.y481{bottom:810.105000px;}
.y115{bottom:810.690000px;}
.y330{bottom:815.190000px;}
.y7b{bottom:815.370000px;}
.y34b{bottom:816.480000px;}
.y301{bottom:819.690000px;}
.y3de{bottom:824.010000px;}
.y50{bottom:825.405000px;}
.ybd{bottom:825.480000px;}
.y361{bottom:828.690000px;}
.y43b{bottom:828.870000px;}
.y309{bottom:832.320000px;}
.y114{bottom:833.190000px;}
.y4ad{bottom:833.760000px;}
.y171{bottom:835.200000px;}
.y399{bottom:837.465000px;}
.y32f{bottom:837.690000px;}
.y7a{bottom:837.870000px;}
.y3c8{bottom:841.425000px;}
.y300{bottom:842.190000px;}
.y4d{bottom:845.385000px;}
.y213{bottom:846.105000px;}
.y223{bottom:846.690000px;}
.y469{bottom:846.870000px;}
.y34a{bottom:848.700000px;}
.ydd{bottom:849.060000px;}
.y1cb{bottom:849.420000px;}
.y360{bottom:851.190000px;}
.y2c{bottom:851.370000px;}
.y31d{bottom:851.760000px;}
.y480{bottom:852.090000px;}
.y2eb{bottom:855.540000px;}
.y113{bottom:855.690000px;}
.y397{bottom:855.900000px;}
.y3ed{bottom:856.980000px;}
.ybc{bottom:857.700000px;}
.y79{bottom:860.190000px;}
.y1d6{bottom:860.760000px;}
.y2ff{bottom:864.690000px;}
.y3c6{bottom:867.960000px;}
.y222{bottom:869.190000px;}
.y468{bottom:869.370000px;}
.y47f{bottom:870.480000px;}
.y35f{bottom:873.690000px;}
.ye{bottom:877.290000px;}
.y112{bottom:878.010000px;}
.y42a{bottom:878.190000px;}
.y2b6{bottom:878.370000px;}
.y1c2{bottom:881.640000px;}
.y78{bottom:882.690000px;}
.y1f3{bottom:883.080000px;}
.y2fe{bottom:887.190000px;}
.y212{bottom:887.910000px;}
.y16a{bottom:889.920000px;}
.y4c{bottom:891.150000px;}
.y221{bottom:891.690000px;}
.y467{bottom:891.870000px;}
.y35e{bottom:896.190000px;}
.y27{bottom:900.330000px;}
.y111{bottom:900.510000px;}
.y47e{bottom:902.700000px;}
.y349{bottom:903.420000px;}
.y38a{bottom:905.010000px;}
.y32e{bottom:905.040000px;}
.y77{bottom:905.190000px;}
.y210{bottom:906.300000px;}
.y2fd{bottom:909.510000px;}
.y2ea{bottom:910.260000px;}
.yb9{bottom:912.420000px;}
.y1e0{bottom:913.140000px;}
.y220{bottom:914.190000px;}
.y466{bottom:914.220000px;}
.y1d5{bottom:915.300000px;}
.y35d{bottom:918.510000px;}
.y2b5{bottom:920.130000px;}
.y389{bottom:927.510000px;}
.y76{bottom:927.690000px;}
.y110{bottom:932.010000px;}
.y347{bottom:935.640000px;}
.y21f{bottom:936.690000px;}
.y1f2{bottom:937.800000px;}
.y2b4{bottom:938.520000px;}
.y2d8{bottom:938.880000px;}
.y35c{bottom:941.010000px;}
.y2e9{bottom:942.480000px;}
.y24a{bottom:944.640000px;}
.ya{bottom:945.510000px;}
.y20f{bottom:947.520000px;}
.y256{bottom:948.240000px;}
.y388{bottom:950.010000px;}
.y10f{bottom:954.510000px;}
.y49{bottom:957.210000px;}
.y47d{bottom:957.420000px;}
.y75{bottom:959.190000px;}
.y154{bottom:960.300000px;}
.y5{bottom:961.401714px;}
.y35b{bottom:963.510000px;}
.y1d4{bottom:970.020000px;}
.y2b3{bottom:970.740000px;}
.y2d7{bottom:971.100000px;}
.y25{bottom:974.490000px;}
.y10e{bottom:977.010000px;}
.y387{bottom:981.510000px;}
.y21e{bottom:981.540000px;}
.y74{bottom:981.690000px;}
.y263{bottom:982.800000px;}
.y35a{bottom:986.010000px;}
.y47b{bottom:989.640000px;}
.y270{bottom:992.520000px;}
.y2e8{bottom:993.750000px;}
.y10d{bottom:999.510000px;}
.y1f1{bottom:1002.240000px;}
.y2d6{bottom:1003.320000px;}
.y386{bottom:1004.010000px;}
.y73{bottom:1004.040000px;}
.y428{bottom:1005.300000px;}
.y359{bottom:1008.510000px;}
.y44d{bottom:1009.410000px;}
.y9{bottom:1011.210000px;}
.y153{bottom:1015.020000px;}
.y10c{bottom:1021.860000px;}
.y2fc{bottom:1022.010000px;}
.y48{bottom:1023.090000px;}
.y1d3{bottom:1024.740000px;}
.y255{bottom:1025.460000px;}
.y385{bottom:1026.510000px;}
.y435{bottom:1027.080000px;}
.y358{bottom:1031.010000px;}
.y20d{bottom:1034.460000px;}
.y2d5{bottom:1035.540000px;}
.y2e7{bottom:1035.690000px;}
.y262{bottom:1037.520000px;}
.y4{bottom:1040.181396px;}
.y2fb{bottom:1044.360000px;}
.y152{bottom:1047.240000px;}
.y384{bottom:1048.860000px;}
.y8{bottom:1049.910000px;}
.y44c{bottom:1051.350000px;}
.y357{bottom:1053.360000px;}
.y2e5{bottom:1054.080000px;}
.y1d2{bottom:1056.960000px;}
.y252{bottom:1057.680000px;}
.y24{bottom:1065.210000px;}
.y44{bottom:1068.810000px;}
.y1ac{bottom:1069.740000px;}
.y150{bottom:1079.460000px;}
.y2d2{bottom:1090.080000px;}
.y7{bottom:1094.910000px;}
.yb6{bottom:1101.960000px;}
.y22{bottom:1110.930000px;}
.y3{bottom:1118.961079px;}
.y1aa{bottom:1124.460000px;}
.y6{bottom:1130.940000px;}
.h11{height:22.536000px;}
.h3e{height:31.320000px;}
.h22{height:31.500000px;}
.h58{height:32.580000px;}
.h67{height:33.120000px;}
.h44{height:36.360000px;}
.h8e{height:39.038710px;}
.h49{height:40.500000px;}
.h52{height:41.760000px;}
.h5c{height:43.920000px;}
.h12{height:44.820000px;}
.h13{height:44.856000px;}
.h9{height:45.000000px;}
.h1f{height:45.036000px;}
.h63{height:47.160000px;}
.h17{height:48.240000px;}
.h21{height:51.035273px;}
.h7b{height:51.120000px;}
.h25{height:51.158250px;}
.h23{height:53.820000px;}
.h20{height:54.000000px;}
.ha{height:54.507656px;}
.h26{height:54.639000px;}
.hb{height:56.569219px;}
.hd{height:60.418125px;}
.h5f{height:60.549469px;}
.h8{height:61.417969px;}
.h1b{height:65.160000px;}
.h19{height:65.196000px;}
.h1c{height:65.340000px;}
.h16{height:65.671875px;}
.h61{height:65.700000px;}
.hf{height:67.320000px;}
.h18{height:67.356000px;}
.hc{height:67.500000px;}
.h8f{height:68.293341px;}
.h8d{height:70.199997px;}
.h8c{height:71.807791px;}
.h8a{height:71.813245px;}
.h15{height:73.440000px;}
.h34{height:76.320000px;}
.h37{height:76.500000px;}
.h7{height:81.779414px;}
.h6{height:81.902391px;}
.h1e{height:86.976000px;}
.h68{height:89.820000px;}
.he{height:89.856000px;}
.h14{height:90.000000px;}
.h4f{height:98.100000px;}
.h46{height:98.820000px;}
.h5e{height:99.000000px;}
.h1a{height:108.720000px;}
.h1d{height:108.756000px;}
.h33{height:109.672031px;}
.h89{height:112.319995px;}
.h45{height:112.320000px;}
.h10{height:112.356000px;}
.h8b{height:113.039995px;}
.h48{height:121.320000px;}
.h82{height:128.700000px;}
.h69{height:130.320000px;}
.h60{height:134.820000px;}
.h73{height:152.820000px;}
.h85{height:166.140000px;}
.h4e{height:166.320000px;}
.h4{height:172.721816px;}
.h24{height:188.640000px;}
.h2a{height:188.820000px;}
.h64{height:193.320000px;}
.h54{height:199.980000px;}
.h30{height:211.140000px;}
.h39{height:211.320000px;}
.h32{height:215.820000px;}
.h6d{height:220.140000px;}
.h7c{height:224.640000px;}
.h36{height:233.640000px;}
.h43{height:242.640000px;}
.h3c{height:256.140000px;}
.h41{height:274.140000px;}
.h76{height:274.320000px;}
.h6b{height:285.480000px;}
.h7a{height:287.640000px;}
.h29{height:287.820000px;}
.h3{height:291.395797px;}
.h4c{height:296.640000px;}
.h79{height:298.800000px;}
.h72{height:299.880000px;}
.h2c{height:306.720000px;}
.h66{height:323.460000px;}
.h6f{height:330.300000px;}
.h5d{height:345.960000px;}
.h35{height:346.140000px;}
.h50{height:350.640000px;}
.h4b{height:354.960000px;}
.h2d{height:368.460000px;}
.h51{height:368.640000px;}
.h28{height:377.460000px;}
.h56{height:386.460000px;}
.h40{height:386.640000px;}
.h57{height:390.960000px;}
.h2e{height:397.800000px;}
.h5b{height:399.960000px;}
.h71{height:408.960000px;}
.h59{height:413.460000px;}
.h55{height:422.460000px;}
.h53{height:426.960000px;}
.h3d{height:439.920000px;}
.h74{height:442.800000px;}
.h75{height:444.960000px;}
.h7f{height:474.300000px;}
.h86{height:480.780000px;}
.h31{height:494.640000px;}
.h5a{height:512.280000px;}
.h7d{height:517.500000px;}
.h4d{height:525.780000px;}
.h3b{height:530.280000px;}
.h3f{height:570.780000px;}
.h62{height:579.600000px;}
.h77{height:582.300000px;}
.h81{height:584.100000px;}
.h3a{height:615.600000px;}
.h42{height:665.460000px;}
.h2b{height:674.100000px;}
.h87{height:678.600000px;}
.h7e{height:701.100000px;}
.h6a{height:750.420000px;}
.h38{height:753.840000px;}
.h47{height:754.920000px;}
.h78{height:840.240000px;}
.h88{height:849.960000px;}
.h83{height:889.920000px;}
.h80{height:894.420000px;}
.h6c{height:921.240000px;}
.h84{height:930.420000px;}
.h4a{height:997.740000px;}
.h27{height:1020.240000px;}
.h2f{height:1038.060000px;}
.h65{height:1060.560000px;}
.h70{height:1065.060000px;}
.h6e{height:1069.560000px;}
.h5{height:1262.880000px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w4{width:34.236000px;}
.w7{width:116.136000px;}
.wb{width:174.960000px;}
.w8{width:179.640000px;}
.w13{width:246.599990px;}
.w6{width:254.550000px;}
.w12{width:259.199989px;}
.w5{width:318.090000px;}
.w14{width:440.279982px;}
.w10{width:552.060000px;}
.w11{width:556.380000px;}
.wf{width:556.740000px;}
.w9{width:562.320000px;}
.wa{width:562.680000px;}
.wc{width:567.360000px;}
.we{width:567.720000px;}
.wd{width:567.825000px;}
.w3{width:892.979987px;}
.w2{width:892.980000px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.560000px;}
.xc{left:50.105630px;}
.xd{left:52.018690px;}
.x10{left:70.303557px;}
.x3{left:84.959987px;}
.x2{left:89.324996px;}
.x1{left:104.607417px;}
.x5{left:120.636000px;}
.x9{left:261.540000px;}
.x8{left:266.220000px;}
.xf{left:276.479988px;}
.xe{left:378.359984px;}
.x6{left:439.455000px;}
.xa{left:509.730000px;}
.xb{left:547.890000px;}
.x7{left:694.725000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa8{letter-spacing:-2.933333pt;}
.ls53{letter-spacing:-2.293333pt;}
.ls5e{letter-spacing:-1.653333pt;}
.ls94{letter-spacing:-0.944000pt;}
.lsa9{letter-spacing:-0.848000pt;}
.ls71{letter-spacing:-0.805333pt;}
.lsb5{letter-spacing:-0.778667pt;}
.ls34{letter-spacing:-0.736000pt;}
.ls79{letter-spacing:-0.693333pt;}
.ls16{letter-spacing:-0.618667pt;}
.ls1b{letter-spacing:-0.586667pt;}
.lsa7{letter-spacing:-0.560000pt;}
.ls47{letter-spacing:-0.509333pt;}
.ls8e{letter-spacing:-0.413333pt;}
.ls9b{letter-spacing:-0.396267pt;}
.ls97{letter-spacing:-0.395733pt;}
.ls7d{letter-spacing:-0.389867pt;}
.lsb6{letter-spacing:-0.378133pt;}
.ls3c{letter-spacing:-0.377600pt;}
.ls1a{letter-spacing:-0.350933pt;}
.ls40{letter-spacing:-0.320533pt;}
.ls80{letter-spacing:-0.320000pt;}
.lsc0{letter-spacing:-0.319467pt;}
.ls92{letter-spacing:-0.311467pt;}
.ls8b{letter-spacing:-0.307200pt;}
.ls1e{letter-spacing:-0.304533pt;}
.ls36{letter-spacing:-0.291733pt;}
.lsab{letter-spacing:-0.258133pt;}
.lsbf{letter-spacing:-0.249600pt;}
.ls9{letter-spacing:-0.241067pt;}
.ls86{letter-spacing:-0.240533pt;}
.ls5c{letter-spacing:-0.218133pt;}
.ls4c{letter-spacing:-0.208533pt;}
.ls3d{letter-spacing:-0.208000pt;}
.ls2d{letter-spacing:-0.201600pt;}
.ls61{letter-spacing:-0.192533pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls67{letter-spacing:-0.185600pt;}
.ls6e{letter-spacing:-0.176533pt;}
.lsc6{letter-spacing:-0.172800pt;}
.ls2a{letter-spacing:-0.165867pt;}
.lsa6{letter-spacing:-0.165333pt;}
.ls4d{letter-spacing:-0.145600pt;}
.ls91{letter-spacing:-0.136000pt;}
.ls75{letter-spacing:-0.121600pt;}
.ls69{letter-spacing:-0.113600pt;}
.lsb3{letter-spacing:-0.109333pt;}
.ls17{letter-spacing:-0.100267pt;}
.ls3{letter-spacing:-0.099200pt;}
.ls18{letter-spacing:-0.094933pt;}
.ls5f{letter-spacing:-0.084267pt;}
.ls15{letter-spacing:-0.072533pt;}
.ls4b{letter-spacing:-0.069867pt;}
.ls27{letter-spacing:-0.055467pt;}
.ls72{letter-spacing:-0.048640pt;}
.ls51{letter-spacing:-0.044160pt;}
.lsb{letter-spacing:-0.043520pt;}
.lscc{letter-spacing:-0.037867pt;}
.ls3b{letter-spacing:-0.027627pt;}
.ls58{letter-spacing:-0.018453pt;}
.ls2b{letter-spacing:-0.014080pt;}
.ls62{letter-spacing:-0.001024pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.021493pt;}
.ls19{letter-spacing:0.021760pt;}
.ls5{letter-spacing:0.025600pt;}
.ls88{letter-spacing:0.028693pt;}
.ls35{letter-spacing:0.033280pt;}
.ls43{letter-spacing:0.033920pt;}
.ls14{letter-spacing:0.052213pt;}
.lsa{letter-spacing:0.053867pt;}
.ls10{letter-spacing:0.071467pt;}
.ls4f{letter-spacing:0.072533pt;}
.ls7{letter-spacing:0.074133pt;}
.ls20{letter-spacing:0.077333pt;}
.lsba{letter-spacing:0.077440pt;}
.ls98{letter-spacing:0.084267pt;}
.ls45{letter-spacing:0.090667pt;}
.lsc7{letter-spacing:0.094400pt;}
.ls73{letter-spacing:0.100267pt;}
.ls2{letter-spacing:0.122133pt;}
.lsc{letter-spacing:0.130667pt;}
.lsbc{letter-spacing:0.134144pt;}
.ls1f{letter-spacing:0.149867pt;}
.lsd{letter-spacing:0.154667pt;}
.ls49{letter-spacing:0.155733pt;}
.lsbd{letter-spacing:0.159744pt;}
.ls5d{letter-spacing:0.170667pt;}
.ls8a{letter-spacing:0.172800pt;}
.ls7e{letter-spacing:0.175360pt;}
.ls64{letter-spacing:0.180267pt;}
.lsb8{letter-spacing:0.200533pt;}
.lsb4{letter-spacing:0.202667pt;}
.lsc5{letter-spacing:0.204800pt;}
.ls3e{letter-spacing:0.205333pt;}
.ls57{letter-spacing:0.212480pt;}
.ls77{letter-spacing:0.218667pt;}
.ls2c{letter-spacing:0.226667pt;}
.lsc8{letter-spacing:0.228267pt;}
.ls63{letter-spacing:0.235520pt;}
.ls6{letter-spacing:0.240533pt;}
.ls26{letter-spacing:0.243733pt;}
.ls95{letter-spacing:0.244267pt;}
.ls3f{letter-spacing:0.245333pt;}
.ls1{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.258667pt;}
.ls28{letter-spacing:0.261867pt;}
.ls70{letter-spacing:0.262144pt;}
.ls89{letter-spacing:0.266667pt;}
.ls24{letter-spacing:0.268800pt;}
.ls90{letter-spacing:0.272000pt;}
.ls4e{letter-spacing:0.272533pt;}
.ls9a{letter-spacing:0.283733pt;}
.lse{letter-spacing:0.289067pt;}
.lsc3{letter-spacing:0.315733pt;}
.lsa0{letter-spacing:0.320000pt;}
.lsbb{letter-spacing:0.320533pt;}
.ls59{letter-spacing:0.328533pt;}
.ls6a{letter-spacing:0.329600pt;}
.lsac{letter-spacing:0.330133pt;}
.ls8{letter-spacing:0.335360pt;}
.ls1d{letter-spacing:0.335467pt;}
.ls33{letter-spacing:0.348267pt;}
.ls9e{letter-spacing:0.354667pt;}
.ls99{letter-spacing:0.375467pt;}
.ls29{letter-spacing:0.389867pt;}
.ls65{letter-spacing:0.398933pt;}
.ls68{letter-spacing:0.400533pt;}
.ls2e{letter-spacing:0.422933pt;}
.lsae{letter-spacing:0.426667pt;}
.lsb9{letter-spacing:0.438400pt;}
.ls50{letter-spacing:0.458133pt;}
.ls31{letter-spacing:0.463467pt;}
.lsa2{letter-spacing:0.480000pt;}
.ls5a{letter-spacing:0.504000pt;}
.lsca{letter-spacing:0.544000pt;}
.lsbe{letter-spacing:0.613333pt;}
.ls2f{letter-spacing:0.624000pt;}
.ls48{letter-spacing:0.661333pt;}
.ls5b{letter-spacing:0.693333pt;}
.lscb{letter-spacing:0.720000pt;}
.lsc4{letter-spacing:0.730667pt;}
.ls9d{letter-spacing:0.768000pt;}
.ls87{letter-spacing:0.810667pt;}
.ls6d{letter-spacing:0.815360pt;}
.ls76{letter-spacing:0.885333pt;}
.ls30{letter-spacing:0.908800pt;}
.ls96{letter-spacing:0.928000pt;}
.ls93{letter-spacing:1.035520pt;}
.ls55{letter-spacing:1.515520pt;}
.lsad{letter-spacing:1.546667pt;}
.ls41{letter-spacing:1.548800pt;}
.ls56{letter-spacing:2.155520pt;}
.ls42{letter-spacing:2.188800pt;}
.ls11{letter-spacing:2.828800pt;}
.lsc1{letter-spacing:2.988800pt;}
.lsc2{letter-spacing:3.435520pt;}
.ls54{letter-spacing:3.466667pt;}
.ls37{letter-spacing:3.468800pt;}
.ls13{letter-spacing:4.108800pt;}
.ls85{letter-spacing:4.268800pt;}
.ls78{letter-spacing:4.715520pt;}
.ls38{letter-spacing:4.748800pt;}
.ls7f{letter-spacing:5.355520pt;}
.ls39{letter-spacing:5.388800pt;}
.ls7b{letter-spacing:6.028800pt;}
.ls6b{letter-spacing:6.668800pt;}
.ls6c{letter-spacing:7.275520pt;}
.ls12{letter-spacing:7.308800pt;}
.ls32{letter-spacing:7.948800pt;}
.ls23{letter-spacing:8.588800pt;}
.ls83{letter-spacing:9.195520pt;}
.lsb7{letter-spacing:9.226667pt;}
.ls4a{letter-spacing:9.228800pt;}
.ls60{letter-spacing:9.866667pt;}
.ls7a{letter-spacing:9.868800pt;}
.ls81{letter-spacing:10.508800pt;}
.ls9c{letter-spacing:11.148800pt;}
.lsc9{letter-spacing:11.755520pt;}
.ls74{letter-spacing:11.788800pt;}
.lsa1{letter-spacing:12.428800pt;}
.ls6f{letter-spacing:12.588800pt;}
.lsf{letter-spacing:13.035520pt;}
.ls44{letter-spacing:13.068800pt;}
.ls52{letter-spacing:13.708800pt;}
.ls21{letter-spacing:14.315520pt;}
.ls46{letter-spacing:14.348800pt;}
.ls9f{letter-spacing:14.988800pt;}
.ls22{letter-spacing:15.628800pt;}
.ls3a{letter-spacing:16.268800pt;}
.ls66{letter-spacing:16.908800pt;}
.ls84{letter-spacing:17.548800pt;}
.ls8f{letter-spacing:18.188800pt;}
.ls7c{letter-spacing:19.468800pt;}
.ls8d{letter-spacing:21.388800pt;}
.ls8c{letter-spacing:22.668800pt;}
.lsaa{letter-spacing:24.588800pt;}
.ls82{letter-spacing:28.428800pt;}
.lsa4{letter-spacing:118.668800pt;}
.lsa5{letter-spacing:119.308800pt;}
.lsa3{letter-spacing:119.415467pt;}
.lsaf{letter-spacing:151.948800pt;}
.lsb1{letter-spacing:152.588800pt;}
.lsb0{letter-spacing:152.748800pt;}
.lsb2{letter-spacing:396.428800pt;}
.ws5d{word-spacing:-53.120000pt;}
.ws62{word-spacing:-30.657173pt;}
.ws44{word-spacing:-30.457856pt;}
.ws40{word-spacing:-30.384640pt;}
.ws1{word-spacing:-22.286613pt;}
.ws53{word-spacing:-22.082560pt;}
.ws2{word-spacing:-22.065280pt;}
.ws55{word-spacing:-22.042880pt;}
.ws89{word-spacing:-19.627659pt;}
.ws8a{word-spacing:-18.667033pt;}
.ws3{word-spacing:-16.448000pt;}
.ws6{word-spacing:-15.549333pt;}
.ws7{word-spacing:-15.382933pt;}
.ws5{word-spacing:-15.334400pt;}
.ws4{word-spacing:-15.308800pt;}
.ws69{word-spacing:-14.739200pt;}
.ws56{word-spacing:-14.729813pt;}
.ws5c{word-spacing:-14.621867pt;}
.ws6f{word-spacing:-14.579200pt;}
.ws80{word-spacing:-14.541867pt;}
.ws87{word-spacing:-14.531200pt;}
.ws45{word-spacing:-14.504533pt;}
.ws35{word-spacing:-14.472533pt;}
.ws7d{word-spacing:-14.457813pt;}
.ws29{word-spacing:-14.435200pt;}
.ws86{word-spacing:-14.355200pt;}
.ws43{word-spacing:-14.348480pt;}
.ws2d{word-spacing:-14.274667pt;}
.ws3e{word-spacing:-14.269333pt;}
.ws7b{word-spacing:-14.249600pt;}
.ws28{word-spacing:-14.234133pt;}
.ws4f{word-spacing:-14.211733pt;}
.ws4d{word-spacing:-14.210133pt;}
.ws23{word-spacing:-14.201067pt;}
.ws42{word-spacing:-14.173013pt;}
.ws70{word-spacing:-14.165867pt;}
.ws2a{word-spacing:-14.159467pt;}
.ws1a{word-spacing:-14.146667pt;}
.ws75{word-spacing:-14.141333pt;}
.ws6e{word-spacing:-14.140800pt;}
.ws7c{word-spacing:-14.131733pt;}
.ws82{word-spacing:-14.126933pt;}
.wsf{word-spacing:-14.100267pt;}
.ws6c{word-spacing:-14.094933pt;}
.ws20{word-spacing:-14.088213pt;}
.ws3c{word-spacing:-14.083733pt;}
.ws65{word-spacing:-14.083200pt;}
.ws61{word-spacing:-14.077867pt;}
.ws22{word-spacing:-14.073067pt;}
.ws85{word-spacing:-14.072747pt;}
.ws19{word-spacing:-14.069867pt;}
.ws32{word-spacing:-14.056533pt;}
.ws68{word-spacing:-14.055467pt;}
.ws81{word-spacing:-14.049280pt;}
.ws77{word-spacing:-14.047147pt;}
.ws7a{word-spacing:-14.045013pt;}
.ws26{word-spacing:-14.037867pt;}
.ws57{word-spacing:-14.029867pt;}
.ws4c{word-spacing:-14.024747pt;}
.ws5e{word-spacing:-14.017280pt;}
.ws31{word-spacing:-14.016533pt;}
.wse{word-spacing:-13.999147pt;}
.ws47{word-spacing:-13.981867pt;}
.ws38{word-spacing:-13.966933pt;}
.ws1c{word-spacing:-13.961067pt;}
.ws54{word-spacing:-13.944747pt;}
.wsc{word-spacing:-13.941867pt;}
.ws84{word-spacing:-13.938880pt;}
.ws3d{word-spacing:-13.917013pt;}
.ws37{word-spacing:-13.901867pt;}
.ws10{word-spacing:-13.896693pt;}
.ws6b{word-spacing:-13.895467pt;}
.ws1d{word-spacing:-13.888533pt;}
.ws14{word-spacing:-13.882667pt;}
.ws60{word-spacing:-13.873173pt;}
.ws1f{word-spacing:-13.865973pt;}
.wsa{word-spacing:-13.865067pt;}
.ws36{word-spacing:-13.845120pt;}
.wsd{word-spacing:-13.844480pt;}
.ws4a{word-spacing:-13.843456pt;}
.ws16{word-spacing:-13.832960pt;}
.ws41{word-spacing:-13.826027pt;}
.ws2e{word-spacing:-13.816853pt;}
.ws9{word-spacing:-13.811200pt;}
.ws88{word-spacing:-13.806613pt;}
.ws25{word-spacing:-13.797120pt;}
.ws21{word-spacing:-13.789013pt;}
.ws39{word-spacing:-13.774613pt;}
.ws11{word-spacing:-13.771947pt;}
.wsb{word-spacing:-13.767680pt;}
.ws3f{word-spacing:-13.767040pt;}
.ws50{word-spacing:-13.730880pt;}
.ws48{word-spacing:-13.726933pt;}
.ws15{word-spacing:-13.716267pt;}
.ws13{word-spacing:-13.710933pt;}
.ws64{word-spacing:-13.708480pt;}
.ws76{word-spacing:-13.701867pt;}
.ws3b{word-spacing:-13.698880pt;}
.ws24{word-spacing:-13.678613pt;}
.ws49{word-spacing:-13.651947pt;}
.ws71{word-spacing:-13.645867pt;}
.ws83{word-spacing:-13.638400pt;}
.ws51{word-spacing:-13.634667pt;}
.ws4e{word-spacing:-13.625600pt;}
.ws27{word-spacing:-13.609600pt;}
.ws5b{word-spacing:-13.603947pt;}
.ws30{word-spacing:-13.603200pt;}
.ws3a{word-spacing:-13.602667pt;}
.ws7e{word-spacing:-13.594880pt;}
.ws46{word-spacing:-13.593067pt;}
.ws74{word-spacing:-13.586347pt;}
.ws8{word-spacing:-13.570133pt;}
.ws5f{word-spacing:-13.537280pt;}
.ws66{word-spacing:-13.533013pt;}
.ws33{word-spacing:-13.523947pt;}
.ws2c{word-spacing:-13.519467pt;}
.ws1b{word-spacing:-13.506667pt;}
.ws7f{word-spacing:-13.491733pt;}
.ws5a{word-spacing:-13.491200pt;}
.ws2f{word-spacing:-13.466880pt;}
.ws17{word-spacing:-13.460267pt;}
.ws6d{word-spacing:-13.448213pt;}
.ws79{word-spacing:-13.433067pt;}
.ws59{word-spacing:-13.421333pt;}
.ws6a{word-spacing:-13.415467pt;}
.ws63{word-spacing:-13.397867pt;}
.ws34{word-spacing:-13.301867pt;}
.ws4b{word-spacing:-13.257813pt;}
.ws72{word-spacing:-13.251200pt;}
.ws12{word-spacing:-13.225813pt;}
.ws18{word-spacing:-13.224533pt;}
.ws1e{word-spacing:-13.192533pt;}
.ws58{word-spacing:-13.151147pt;}
.ws2b{word-spacing:-13.075200pt;}
.ws78{word-spacing:-13.065813pt;}
.ws52{word-spacing:-13.039147pt;}
.ws73{word-spacing:-12.963200pt;}
.ws67{word-spacing:-12.867200pt;}
.ws0{word-spacing:0.000000pt;}
._21{margin-left:-17.623723pt;}
._26{margin-left:-13.336960pt;}
._5f{margin-left:-8.040832pt;}
._25{margin-left:-6.877611pt;}
._11{margin-left:-3.686912pt;}
._9{margin-left:-2.755840pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.131392pt;}
._23{width:2.033344pt;}
._6{width:2.933760pt;}
._5{width:4.103680pt;}
._17{width:4.996395pt;}
._1a{width:5.915648pt;}
._4{width:7.162453pt;}
._3{width:8.088960pt;}
._15{width:9.650048pt;}
._14{width:11.143680pt;}
._2{width:12.511488pt;}
._b{width:14.777088pt;}
._e{width:15.724160pt;}
._d{width:16.903680pt;}
._1b{width:18.069248pt;}
._1c{width:18.960597pt;}
._13{width:20.470528pt;}
._12{width:21.383680pt;}
._1d{width:22.480896pt;}
._1e{width:23.596459pt;}
._a{width:24.772608pt;}
._20{width:25.863680pt;}
._2c{width:27.172267pt;}
._42{width:28.061568pt;}
._32{width:28.963435pt;}
._2f{width:30.256000pt;}
._4e{width:31.308203pt;}
._2a{width:32.197248pt;}
._2b{width:33.097259pt;}
._30{width:34.337664pt;}
._63{width:36.169173pt;}
._41{width:37.212587pt;}
._35{width:38.667648pt;}
._31{width:40.338560pt;}
._58{width:42.992768pt;}
._59{width:44.040619pt;}
._40{width:45.919829pt;}
._10{width:51.792768pt;}
._f{width:52.862080pt;}
._62{width:57.149440pt;}
._61{width:58.380160pt;}
._34{width:59.972267pt;}
._57{width:65.539840pt;}
._56{width:66.562688pt;}
._19{width:72.255360pt;}
._18{width:73.216000pt;}
._3d{width:80.357461pt;}
._3c{width:81.301120pt;}
._4b{width:86.348032pt;}
._69{width:88.678613pt;}
._68{width:89.596587pt;}
._2e{width:92.439808pt;}
._8{width:115.007019pt;}
._7{width:115.992448pt;}
._4d{width:119.261568pt;}
._3b{width:141.715413pt;}
._3a{width:142.869120pt;}
._2d{width:144.785280pt;}
._5c{width:152.862080pt;}
._3f{width:165.272448pt;}
._39{width:170.529408pt;}
._49{width:188.159232pt;}
._4a{width:189.077504pt;}
._c{width:194.901760pt;}
._33{width:202.439680pt;}
._43{width:213.248640pt;}
._5b{width:237.025280pt;}
._5a{width:238.222720pt;}
._3e{width:290.661248pt;}
._5e{width:307.102080pt;}
._38{width:312.933888pt;}
._44{width:375.779328pt;}
._67{width:376.952875pt;}
._5d{width:397.120427pt;}
._65{width:405.198720pt;}
._66{width:406.203947pt;}
._54{width:447.303936pt;}
._50{width:452.178347pt;}
._4f{width:453.539840pt;}
._6a{width:465.322368pt;}
._55{width:656.917120pt;}
._51{width:670.413355pt;}
._52{width:671.342080pt;}
._24{width:680.016299pt;}
._37{width:717.928747pt;}
._47{width:788.936747pt;}
._53{width:840.215467pt;}
._4c{width:920.215467pt;}
._60{width:976.535467pt;}
._28{width:1064.215467pt;}
._36{width:1112.215467pt;}
._45{width:1219.095467pt;}
._48{width:1448.215467pt;}
._46{width:1482.053547pt;}
._64{width:1486.308523pt;}
._27{width:1521.269035pt;}
._16{width:1708.215467pt;}
._1f{width:1793.385387pt;}
._29{width:1832.375467pt;}
._22{width:1920.695467pt;}
.fsc{font-size:42.682750pt;}
.fs5{font-size:53.120000pt;}
.fs7{font-size:53.248000pt;}
.fs6{font-size:58.880000pt;}
.fs9{font-size:59.008000pt;}
.fs4{font-size:64.000000pt;}
.fsd{font-size:74.668133pt;}
.fsb{font-size:78.510637pt;}
.fsa{font-size:78.516600pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:85.248000pt;}
.fs8{font-size:106.880000pt;}
.fs1{font-size:202.076138pt;}
.fs0{font-size:298.752579pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.yd{bottom:4.320000pt;}
.y4f{bottom:4.360000pt;}
.y2b{bottom:4.640000pt;}
.y3ec{bottom:5.312000pt;}
.ydc{bottom:5.472000pt;}
.y4ba{bottom:8.143133pt;}
.y163{bottom:9.666667pt;}
.y464{bottom:10.432000pt;}
.y4b5{bottom:13.276781pt;}
.y3c5{bottom:13.306667pt;}
.y20c{bottom:13.312000pt;}
.y5c{bottom:13.346667pt;}
.yfa{bottom:13.373333pt;}
.y1d7{bottom:13.413333pt;}
.y1ab{bottom:13.440000pt;}
.y6e{bottom:13.466667pt;}
.yb5{bottom:13.472000pt;}
.y65{bottom:13.506667pt;}
.y4b2{bottom:13.525362pt;}
.y54{bottom:13.533333pt;}
.yb8{bottom:13.573333pt;}
.y295{bottom:14.426667pt;}
.y30f{bottom:14.946667pt;}
.y14d{bottom:17.472000pt;}
.y2f3{bottom:17.533333pt;}
.y1e6{bottom:17.853333pt;}
.y4b6{bottom:20.600018pt;}
.y39{bottom:20.960000pt;}
.y41{bottom:21.120000pt;}
.y2c1{bottom:21.346667pt;}
.y211{bottom:21.573333pt;}
.y47{bottom:21.760000pt;}
.y4b{bottom:22.240000pt;}
.y4b9{bottom:22.370716pt;}
.y3c{bottom:22.400000pt;}
.y34{bottom:22.426667pt;}
.y269{bottom:22.626667pt;}
.y5d{bottom:23.426667pt;}
.y57{bottom:23.453333pt;}
.y59{bottom:23.613333pt;}
.y2d4{bottom:24.133333pt;}
.y15{bottom:24.160000pt;}
.y21{bottom:24.314667pt;}
.yc{bottom:24.320000pt;}
.y23{bottom:24.346667pt;}
.y4e{bottom:24.360000pt;}
.y2a8{bottom:24.512000pt;}
.y404{bottom:25.306667pt;}
.y188{bottom:25.312000pt;}
.y2d1{bottom:25.466667pt;}
.ydb{bottom:25.472000pt;}
.y2a{bottom:26.400000pt;}
.y2d{bottom:27.200000pt;}
.y6a{bottom:27.426667pt;}
.y2e6{bottom:27.493333pt;}
.y463{bottom:30.432000pt;}
.y3f8{bottom:30.946667pt;}
.y23e{bottom:32.320000pt;}
.y2b2{bottom:32.933333pt;}
.y1a4{bottom:33.306667pt;}
.y356{bottom:33.312000pt;}
.y5b{bottom:33.346667pt;}
.y100{bottom:33.373333pt;}
.y1ad{bottom:33.413333pt;}
.yb7{bottom:33.440000pt;}
.y71{bottom:33.466667pt;}
.y10a{bottom:33.472000pt;}
.y6c{bottom:33.506667pt;}
.y53{bottom:33.533333pt;}
.ybb{bottom:33.573333pt;}
.y4b8{bottom:36.598299pt;}
.y318{bottom:37.312000pt;}
.y14c{bottom:37.466667pt;}
.y2f2{bottom:37.533333pt;}
.y1d0{bottom:37.626667pt;}
.yb{bottom:40.000000pt;}
.y439{bottom:40.133333pt;}
.y38{bottom:40.960000pt;}
.y40{bottom:41.120000pt;}
.y2c0{bottom:41.346667pt;}
.y287{bottom:41.373333pt;}
.y170{bottom:41.413333pt;}
.y9a{bottom:41.466667pt;}
.y242{bottom:41.506667pt;}
.y13e{bottom:41.533333pt;}
.y31b{bottom:41.573333pt;}
.y46{bottom:41.760000pt;}
.y4a{bottom:42.240000pt;}
.y3b{bottom:42.400000pt;}
.y33{bottom:42.426667pt;}
.y2d3{bottom:44.000000pt;}
.y14{bottom:44.160000pt;}
.y43{bottom:44.314667pt;}
.yf{bottom:44.320000pt;}
.y187{bottom:45.306667pt;}
.yda{bottom:45.312000pt;}
.y1c1{bottom:45.466667pt;}
.y308{bottom:45.472000pt;}
.y29{bottom:48.160000pt;}
.y28{bottom:49.600000pt;}
.y4b7{bottom:50.825883pt;}
.y254{bottom:52.933333pt;}
.y135{bottom:53.306667pt;}
.y64{bottom:53.346667pt;}
.y139{bottom:53.373333pt;}
.yba{bottom:53.413333pt;}
.y151{bottom:53.440000pt;}
.y237{bottom:53.466667pt;}
.y261{bottom:53.472000pt;}
.y105{bottom:53.506667pt;}
.ya9{bottom:53.533333pt;}
.y16b{bottom:53.573333pt;}
.y69{bottom:55.426667pt;}
.y14b{bottom:57.466667pt;}
.y2f1{bottom:57.533333pt;}
.y462{bottom:58.426667pt;}
.ye8{bottom:58.533333pt;}
.y438{bottom:60.133333pt;}
.y37{bottom:60.960000pt;}
.y1a8{bottom:61.306667pt;}
.y374{bottom:61.346667pt;}
.y493{bottom:61.373333pt;}
.y16f{bottom:61.413333pt;}
.y99{bottom:61.466667pt;}
.y31a{bottom:61.573333pt;}
.y45{bottom:61.786667pt;}
.y19{bottom:64.160000pt;}
.y11{bottom:64.200000pt;}
.y26{bottom:64.320000pt;}
.yd9{bottom:65.306667pt;}
.y2bf{bottom:69.346667pt;}
.y286{bottom:69.373333pt;}
.y241{bottom:69.506667pt;}
.y452{bottom:69.533333pt;}
.y253{bottom:72.800000pt;}
.y134{bottom:73.306667pt;}
.y63{bottom:73.346667pt;}
.y138{bottom:73.373333pt;}
.ya8{bottom:73.413333pt;}
.y1f0{bottom:73.440000pt;}
.y1c0{bottom:73.466667pt;}
.y351{bottom:73.506667pt;}
.y15d{bottom:73.533333pt;}
.y1ca{bottom:73.573333pt;}
.yc0{bottom:76.640000pt;}
.y109{bottom:76.960000pt;}
.y14a{bottom:77.306667pt;}
.y2f0{bottom:77.533333pt;}
.y4b1{bottom:77.746765pt;}
.y4b4{bottom:78.388185pt;}
.y260{bottom:78.400000pt;}
.y461{bottom:78.426667pt;}
.ye7{bottom:78.533333pt;}
.y40e{bottom:78.560000pt;}
.y437{bottom:80.133333pt;}
.y383{bottom:80.640000pt;}
.y457{bottom:80.800000pt;}
.y36{bottom:80.960000pt;}
.y3f{bottom:81.000000pt;}
.y40f{bottom:81.280000pt;}
.y20b{bottom:81.306667pt;}
.y373{bottom:81.346667pt;}
.y3ac{bottom:81.533333pt;}
.y319{bottom:81.573333pt;}
.y276{bottom:81.920000pt;}
.y2a9{bottom:82.432000pt;}
.y68{bottom:83.266667pt;}
.y18{bottom:84.160000pt;}
.y2fa{bottom:84.640000pt;}
.yd8{bottom:85.306667pt;}
.y28b{bottom:85.920000pt;}
.y3dd{bottom:86.880000pt;}
.y2f5{bottom:87.293333pt;}
.y31c{bottom:87.333333pt;}
.y346{bottom:88.000000pt;}
.y3ff{bottom:88.160000pt;}
.y175{bottom:88.640000pt;}
.y2{bottom:88.791198pt;}
.y1ef{bottom:88.800000pt;}
.y31e{bottom:89.280000pt;}
.y1a7{bottom:89.306667pt;}
.y16e{bottom:89.413333pt;}
.y98{bottom:89.466667pt;}
.y317{bottom:89.760000pt;}
.y47a{bottom:91.840000pt;}
.y29a{bottom:92.352000pt;}
.y44b{bottom:92.480000pt;}
.y133{bottom:93.306667pt;}
.y62{bottom:93.346667pt;}
.yf5{bottom:93.373333pt;}
.ya7{bottom:93.413333pt;}
.y20e{bottom:93.440000pt;}
.y2b1{bottom:93.466667pt;}
.y3c2{bottom:93.506667pt;}
.y15c{bottom:93.533333pt;}
.y1dd{bottom:93.920000pt;}
.y3ba{bottom:94.240000pt;}
.y281{bottom:94.432000pt;}
.y3dc{bottom:95.520000pt;}
.y26f{bottom:95.552000pt;}
.y249{bottom:96.480000pt;}
.y149{bottom:97.306667pt;}
.y2be{bottom:97.346667pt;}
.y285{bottom:97.373333pt;}
.y479{bottom:97.506667pt;}
.y2ef{bottom:97.533333pt;}
.y1d1{bottom:97.792000pt;}
.y429{bottom:97.920000pt;}
.y460{bottom:98.426667pt;}
.ye6{bottom:98.533333pt;}
.y1b9{bottom:98.560000pt;}
.y2a7{bottom:98.880000pt;}
.y355{bottom:99.200000pt;}
.y436{bottom:100.000000pt;}
.y20a{bottom:101.306667pt;}
.y345{bottom:101.346667pt;}
.y199{bottom:101.373333pt;}
.y1c9{bottom:101.413333pt;}
.y2e4{bottom:101.440000pt;}
.y3f4{bottom:101.533333pt;}
.y146{bottom:101.600000pt;}
.y169{bottom:102.240000pt;}
.y10b{bottom:104.640000pt;}
.yd7{bottom:105.306667pt;}
.y1a9{bottom:105.600000pt;}
.y14f{bottom:107.226667pt;}
.y403{bottom:108.640000pt;}
.y97{bottom:109.306667pt;}
.y3d5{bottom:110.533333pt;}
.y2d0{bottom:111.200000pt;}
.y67{bottom:111.266667pt;}
.y20{bottom:112.672000pt;}
.yb4{bottom:112.960000pt;}
.y1f4{bottom:113.280000pt;}
.y132{bottom:113.306667pt;}
.y61{bottom:113.346667pt;}
.yf4{bottom:113.373333pt;}
.ya6{bottom:113.413333pt;}
.y427{bottom:113.600000pt;}
.y1cd{bottom:114.240000pt;}
.y148{bottom:117.306667pt;}
.y1a6{bottom:117.346667pt;}
.y2ee{bottom:117.373333pt;}
.y16d{bottom:117.413333pt;}
.y32c{bottom:118.272000pt;}
.y45f{bottom:118.426667pt;}
.ye5{bottom:118.533333pt;}
.y72{bottom:120.480000pt;}
.y43a{bottom:121.120000pt;}
.y209{bottom:121.306667pt;}
.y236{bottom:121.346667pt;}
.y198{bottom:121.373333pt;}
.y1c8{bottom:121.413333pt;}
.y299{bottom:122.272000pt;}
.y3b9{bottom:122.880000pt;}
.y42{bottom:122.912000pt;}
.y280{bottom:124.352000pt;}
.y3eb{bottom:125.146667pt;}
.y284{bottom:125.213333pt;}
.yd6{bottom:125.306667pt;}
.y2bd{bottom:125.346667pt;}
.y451{bottom:125.373333pt;}
.y26e{bottom:125.472000pt;}
.y108{bottom:125.600000pt;}
.y40d{bottom:127.200000pt;}
.y2f4{bottom:129.373333pt;}
.y2e3{bottom:130.080000pt;}
.y3d4{bottom:130.373333pt;}
.y2e2{bottom:133.186667pt;}
.y137{bottom:133.213333pt;}
.y47c{bottom:133.280000pt;}
.y131{bottom:133.306667pt;}
.y60{bottom:133.346667pt;}
.yf3{bottom:133.373333pt;}
.ya5{bottom:133.413333pt;}
.y2aa{bottom:133.760000pt;}
.y3fe{bottom:136.800000pt;}
.y147{bottom:137.306667pt;}
.y96{bottom:137.346667pt;}
.y2ed{bottom:137.373333pt;}
.y492{bottom:137.413333pt;}
.y45e{bottom:138.266667pt;}
.ye4{bottom:138.373333pt;}
.y2a6{bottom:138.560000pt;}
.y66{bottom:139.266667pt;}
.y21d{bottom:140.480000pt;}
.y208{bottom:141.186667pt;}
.y417{bottom:141.306667pt;}
.y235{bottom:141.346667pt;}
.y197{bottom:141.373333pt;}
.y1c7{bottom:141.413333pt;}
.y70{bottom:142.400000pt;}
.y49d{bottom:143.680000pt;}
.y382{bottom:144.960000pt;}
.y248{bottom:145.120000pt;}
.y1df{bottom:145.146667pt;}
.y1a5{bottom:145.186667pt;}
.yd5{bottom:145.306667pt;}
.y478{bottom:145.346667pt;}
.y16c{bottom:145.413333pt;}
.y354{bottom:147.680000pt;}
.y32b{bottom:148.346667pt;}
.y14e{bottom:149.346667pt;}
.y3d3{bottom:150.373333pt;}
.y4ab{bottom:150.560000pt;}
.y168{bottom:150.880000pt;}
.y298{bottom:152.346667pt;}
.y186{bottom:153.146667pt;}
.y5f{bottom:153.186667pt;}
.yf2{bottom:153.213333pt;}
.y283{bottom:153.253333pt;}
.y1f{bottom:153.306667pt;}
.y104{bottom:153.346667pt;}
.y15b{bottom:153.373333pt;}
.ya4{bottom:153.413333pt;}
.y107{bottom:154.240000pt;}
.y27f{bottom:154.426667pt;}
.y26d{bottom:155.386667pt;}
.y95{bottom:157.346667pt;}
.y2ec{bottom:157.373333pt;}
.y491{bottom:157.413333pt;}
.y45d{bottom:158.266667pt;}
.ye3{bottom:158.373333pt;}
.y207{bottom:161.186667pt;}
.y372{bottom:161.213333pt;}
.y416{bottom:161.306667pt;}
.y234{bottom:161.346667pt;}
.y196{bottom:161.373333pt;}
.y1c6{bottom:161.413333pt;}
.yb3{bottom:161.600000pt;}
.y3a4{bottom:162.720000pt;}
.y27a{bottom:163.266667pt;}
.yae{bottom:163.613333pt;}
.y3d0{bottom:164.960000pt;}
.yd4{bottom:165.146667pt;}
.y1de{bottom:165.186667pt;}
.y307{bottom:165.306667pt;}
.y477{bottom:165.346667pt;}
.y3c1{bottom:169.346667pt;}
.y316{bottom:170.240000pt;}
.y3d2{bottom:170.373333pt;}
.y3b8{bottom:171.520000pt;}
.y130{bottom:173.186667pt;}
.yf1{bottom:173.213333pt;}
.y23a{bottom:173.253333pt;}
.y24b{bottom:173.280000pt;}
.y36b{bottom:173.306667pt;}
.y2b0{bottom:173.346667pt;}
.y15a{bottom:173.373333pt;}
.ya3{bottom:173.413333pt;}
.y381{bottom:173.600000pt;}
.y40c{bottom:175.840000pt;}
.y353{bottom:176.320000pt;}
.y48b{bottom:177.120000pt;}
.y94{bottom:177.346667pt;}
.y32a{bottom:178.266667pt;}
.y45c{bottom:178.306667pt;}
.ye2{bottom:178.373333pt;}
.y206{bottom:181.186667pt;}
.y371{bottom:181.213333pt;}
.y348{bottom:181.280000pt;}
.y1bf{bottom:181.346667pt;}
.y195{bottom:181.373333pt;}
.y1c5{bottom:181.413333pt;}
.y297{bottom:182.266667pt;}
.y106{bottom:182.880000pt;}
.y3e{bottom:183.546667pt;}
.y27e{bottom:184.346667pt;}
.yd3{bottom:185.186667pt;}
.y44a{bottom:185.346667pt;}
.y490{bottom:185.413333pt;}
.y3fd{bottom:185.440000pt;}
.y26c{bottom:185.466667pt;}
.y2a5{bottom:187.200000pt;}
.y344{bottom:189.186667pt;}
.y1ee{bottom:189.280000pt;}
.y233{bottom:189.346667pt;}
.y6f{bottom:191.040000pt;}
.y3a3{bottom:191.360000pt;}
.y49c{bottom:192.320000pt;}
.y12f{bottom:193.186667pt;}
.yf0{bottom:193.213333pt;}
.ya2{bottom:193.253333pt;}
.y2af{bottom:193.346667pt;}
.y159{bottom:193.373333pt;}
.y3aa{bottom:193.413333pt;}
.y3cf{bottom:193.600000pt;}
.y247{bottom:193.760000pt;}
.y1e{bottom:193.946667pt;}
.y328{bottom:194.720000pt;}
.y93{bottom:197.346667pt;}
.y45b{bottom:198.306667pt;}
.ye1{bottom:198.373333pt;}
.y4aa{bottom:199.200000pt;}
.y167{bottom:199.520000pt;}
.y465{bottom:200.320000pt;}
.y205{bottom:201.186667pt;}
.y370{bottom:201.213333pt;}
.y194{bottom:201.253333pt;}
.y1e1{bottom:201.280000pt;}
.y1be{bottom:201.346667pt;}
.y3f3{bottom:201.373333pt;}
.y49e{bottom:201.413333pt;}
.y380{bottom:202.240000pt;}
.y352{bottom:204.960000pt;}
.yd2{bottom:205.186667pt;}
.y48f{bottom:205.253333pt;}
.y32d{bottom:208.480000pt;}
.y21c{bottom:208.960000pt;}
.y232{bottom:209.186667pt;}
.y3c0{bottom:209.373333pt;}
.y1c4{bottom:209.413333pt;}
.yb2{bottom:210.240000pt;}
.y3f0{bottom:211.333333pt;}
.y296{bottom:212.186667pt;}
.y12e{bottom:213.186667pt;}
.yef{bottom:213.213333pt;}
.ya1{bottom:213.253333pt;}
.y2ae{bottom:213.346667pt;}
.y158{bottom:213.413333pt;}
.y27d{bottom:214.266667pt;}
.y26b{bottom:215.386667pt;}
.y2a1{bottom:215.840000pt;}
.y3db{bottom:216.000000pt;}
.y92{bottom:217.346667pt;}
.y2c3{bottom:217.600000pt;}
.y45a{bottom:218.306667pt;}
.ye0{bottom:218.373333pt;}
.y315{bottom:218.880000pt;}
.y6d{bottom:219.680000pt;}
.y3a2{bottom:220.000000pt;}
.y1bd{bottom:221.186667pt;}
.y36f{bottom:221.213333pt;}
.y193{bottom:221.253333pt;}
.y3f2{bottom:221.373333pt;}
.y3a9{bottom:221.413333pt;}
.y3ce{bottom:222.240000pt;}
.y40b{bottom:224.480000pt;}
.yd1{bottom:225.186667pt;}
.y48e{bottom:225.253333pt;}
.y48a{bottom:225.600000pt;}
.y4a9{bottom:227.840000pt;}
.y166{bottom:228.160000pt;}
.y294{bottom:228.800000pt;}
.y343{bottom:229.186667pt;}
.y1c3{bottom:229.280000pt;}
.y3bf{bottom:229.373333pt;}
.y3ef{bottom:231.333333pt;}
.y103{bottom:231.520000pt;}
.y2cf{bottom:231.680000pt;}
.y3c4{bottom:233.120000pt;}
.y185{bottom:233.186667pt;}
.yee{bottom:233.213333pt;}
.ya0{bottom:233.253333pt;}
.y3fc{bottom:234.080000pt;}
.y1d{bottom:234.426667pt;}
.y432{bottom:236.986667pt;}
.y24c{bottom:237.120000pt;}
.y91{bottom:237.186667pt;}
.y21b{bottom:237.600000pt;}
.y1ed{bottom:237.920000pt;}
.y459{bottom:238.306667pt;}
.ydf{bottom:238.373333pt;}
.yb1{bottom:238.880000pt;}
.y329{bottom:239.266667pt;}
.y49b{bottom:240.960000pt;}
.y12d{bottom:241.186667pt;}
.y36e{bottom:241.213333pt;}
.y4bb{bottom:241.215374pt;}
.y192{bottom:241.253333pt;}
.y476{bottom:241.346667pt;}
.yad{bottom:241.373333pt;}
.y3c7{bottom:241.440000pt;}
.y246{bottom:242.400000pt;}
.y27c{bottom:244.346667pt;}
.y3ea{bottom:245.026667pt;}
.yd0{bottom:245.186667pt;}
.y26a{bottom:245.306667pt;}
.y25f{bottom:246.880000pt;}
.y6b{bottom:248.320000pt;}
.y240{bottom:249.213333pt;}
.y19c{bottom:250.400000pt;}
.y37f{bottom:250.880000pt;}
.y3ee{bottom:251.200000pt;}
.y398{bottom:252.160000pt;}
.y40a{bottom:253.120000pt;}
.y184{bottom:253.186667pt;}
.yed{bottom:253.213333pt;}
.y9f{bottom:253.253333pt;}
.y350{bottom:253.600000pt;}
.y489{bottom:254.240000pt;}
.y1c{bottom:255.106667pt;}
.y4af{bottom:255.426667pt;}
.y90{bottom:257.186667pt;}
.y458{bottom:258.146667pt;}
.yde{bottom:258.240000pt;}
.y293{bottom:258.400000pt;}
.y204{bottom:261.026667pt;}
.y2e1{bottom:261.053333pt;}
.y12c{bottom:261.186667pt;}
.y36d{bottom:261.213333pt;}
.y191{bottom:261.253333pt;}
.y268{bottom:261.920000pt;}
.y3fb{bottom:262.720000pt;}
.y3da{bottom:264.640000pt;}
.y3e9{bottom:265.026667pt;}
.ycf{bottom:265.186667pt;}
.y21a{bottom:266.240000pt;}
.y314{bottom:267.520000pt;}
.y15f{bottom:268.320000pt;}
.y3a1{bottom:268.640000pt;}
.y449{bottom:269.186667pt;}
.y290{bottom:269.253333pt;}
.y245{bottom:271.040000pt;}
.y4ac{bottom:271.840000pt;}
.y183{bottom:273.026667pt;}
.yec{bottom:273.053333pt;}
.y3bd{bottom:273.093333pt;}
.y30a{bottom:273.120000pt;}
.y2ad{bottom:273.186667pt;}
.y402{bottom:273.213333pt;}
.y157{bottom:273.253333pt;}
.y431{bottom:274.146667pt;}
.y27b{bottom:274.306667pt;}
.y8f{bottom:277.186667pt;}
.y377{bottom:279.200000pt;}
.y2ce{bottom:280.320000pt;}
.y3d{bottom:280.866667pt;}
.y203{bottom:281.026667pt;}
.y2e0{bottom:281.053333pt;}
.y12b{bottom:281.186667pt;}
.y394{bottom:281.213333pt;}
.y9e{bottom:281.253333pt;}
.y3c3{bottom:281.600000pt;}
.y426{bottom:282.080000pt;}
.y488{bottom:282.880000pt;}
.yce{bottom:285.026667pt;}
.y231{bottom:285.186667pt;}
.y1ec{bottom:286.560000pt;}
.y1bc{bottom:289.186667pt;}
.y41b{bottom:289.213333pt;}
.y28f{bottom:289.253333pt;}
.y49a{bottom:289.600000pt;}
.y279{bottom:290.720000pt;}
.y182{bottom:293.026667pt;}
.yeb{bottom:293.053333pt;}
.y3bc{bottom:293.093333pt;}
.y2c5{bottom:293.120000pt;}
.y2ac{bottom:293.186667pt;}
.y156{bottom:293.253333pt;}
.y165{bottom:293.826667pt;}
.y145{bottom:294.080000pt;}
.y219{bottom:294.880000pt;}
.y25e{bottom:295.520000pt;}
.y1b{bottom:295.746667pt;}
.y2f9{bottom:296.320000pt;}
.y5e{bottom:296.960000pt;}
.y448{bottom:297.186667pt;}
.y342{bottom:297.213333pt;}
.y258{bottom:297.253333pt;}
.y41d{bottom:298.400000pt;}
.y19b{bottom:299.040000pt;}
.y3cd{bottom:299.360000pt;}
.y267{bottom:299.680000pt;}
.y12a{bottom:301.026667pt;}
.y2a4{bottom:301.053333pt;}
.y239{bottom:301.120000pt;}
.y401{bottom:301.213333pt;}
.y9d{bottom:301.253333pt;}
.y430{bottom:304.226667pt;}
.yb0{bottom:304.386667pt;}
.ycd{bottom:305.026667pt;}
.y8e{bottom:305.186667pt;}
.y292{bottom:307.040000pt;}
.y400{bottom:308.960000pt;}
.y415{bottom:309.026667pt;}
.y393{bottom:309.053333pt;}
.y1bb{bottom:309.186667pt;}
.y41a{bottom:309.213333pt;}
.y28e{bottom:309.253333pt;}
.y3be{bottom:310.240000pt;}
.y181{bottom:313.026667pt;}
.yea{bottom:313.053333pt;}
.y1b8{bottom:313.093333pt;}
.y2ab{bottom:313.186667pt;}
.y264{bottom:313.253333pt;}
.y396{bottom:313.280000pt;}
.y313{bottom:316.160000pt;}
.y244{bottom:316.706667pt;}
.y341{bottom:317.053333pt;}
.y447{bottom:317.186667pt;}
.y475{bottom:317.213333pt;}
.y499{bottom:318.240000pt;}
.y2d9{bottom:318.560000pt;}
.y409{bottom:318.626667pt;}
.y42f{bottom:320.640000pt;}
.y129{bottom:321.026667pt;}
.y2a3{bottom:321.053333pt;}
.y190{bottom:321.093333pt;}
.y9c{bottom:321.120000pt;}
.y4a8{bottom:321.213333pt;}
.y3a8{bottom:321.253333pt;}
.y1cf{bottom:321.346667pt;}
.y2c2{bottom:323.520000pt;}
.ycc{bottom:325.026667pt;}
.y8d{bottom:325.186667pt;}
.y19a{bottom:327.680000pt;}
.y3fa{bottom:328.226667pt;}
.y2cd{bottom:328.960000pt;}
.y414{bottom:329.026667pt;}
.y392{bottom:329.053333pt;}
.y28d{bottom:329.120000pt;}
.y1ba{bottom:329.186667pt;}
.y419{bottom:329.213333pt;}
.yf7{bottom:329.280000pt;}
.y425{bottom:330.720000pt;}
.y487{bottom:331.520000pt;}
.y4b3{bottom:332.280005pt;}
.y4b0{bottom:332.920005pt;}
.y180{bottom:333.026667pt;}
.y251{bottom:333.053333pt;}
.y1b7{bottom:333.093333pt;}
.y164{bottom:333.666667pt;}
.y1eb{bottom:335.200000pt;}
.y291{bottom:335.680000pt;}
.y15e{bottom:336.960000pt;}
.y340{bottom:337.053333pt;}
.y446{bottom:337.186667pt;}
.y474{bottom:337.213333pt;}
.yf9{bottom:339.200000pt;}
.y3a{bottom:339.586667pt;}
.y3b7{bottom:340.000000pt;}
.y128{bottom:341.026667pt;}
.y2a2{bottom:341.053333pt;}
.y18f{bottom:341.093333pt;}
.y48d{bottom:341.120000pt;}
.y3a7{bottom:341.253333pt;}
.y376{bottom:341.280000pt;}
.yaf{bottom:341.666667pt;}
.y1a3{bottom:342.560000pt;}
.y144{bottom:342.720000pt;}
.y218{bottom:343.520000pt;}
.y25d{bottom:344.160000pt;}
.y312{bottom:344.800000pt;}
.ycb{bottom:345.026667pt;}
.y8c{bottom:345.186667pt;}
.y41c{bottom:346.880000pt;}
.y162{bottom:347.453333pt;}
.y266{bottom:348.320000pt;}
.y413{bottom:349.026667pt;}
.y391{bottom:349.053333pt;}
.y42e{bottom:349.280000pt;}
.y17f{bottom:353.026667pt;}
.y250{bottom:353.053333pt;}
.y1b6{bottom:353.093333pt;}
.y243{bottom:353.826667pt;}
.y456{bottom:354.240000pt;}
.y408{bottom:355.906667pt;}
.y1a{bottom:356.386667pt;}
.y33f{bottom:357.053333pt;}
.y160{bottom:357.280000pt;}
.yac{bottom:358.080000pt;}
.y127{bottom:361.026667pt;}
.y2df{bottom:361.053333pt;}
.y2a0{bottom:361.093333pt;}
.y3a6{bottom:361.120000pt;}
.y395{bottom:361.920000pt;}
.y1ea{bottom:363.840000pt;}
.y498{bottom:363.906667pt;}
.y3e8{bottom:364.866667pt;}
.y8b{bottom:365.026667pt;}
.y445{bottom:365.186667pt;}
.y473{bottom:365.213333pt;}
.y3f9{bottom:365.506667pt;}
.y412{bottom:369.026667pt;}
.y18e{bottom:369.093333pt;}
.y23f{bottom:370.240000pt;}
.y2bc{bottom:372.160000pt;}
.y17e{bottom:373.026667pt;}
.y24f{bottom:373.053333pt;}
.y1b5{bottom:373.093333pt;}
.y418{bottom:375.520000pt;}
.y19e{bottom:376.640000pt;}
.y265{bottom:376.960000pt;}
.y33e{bottom:377.053333pt;}
.y2cc{bottom:377.600000pt;}
.yf6{bottom:377.920000pt;}
.y3b0{bottom:379.200000pt;}
.y202{bottom:380.866667pt;}
.y2de{bottom:380.893333pt;}
.y126{bottom:381.026667pt;}
.y230{bottom:381.053333pt;}
.y29f{bottom:381.093333pt;}
.y3f7{bottom:381.920000pt;}
.y455{bottom:382.880000pt;}
.y2f8{bottom:384.800000pt;}
.y3e7{bottom:384.866667pt;}
.yca{bottom:385.026667pt;}
.y8a{bottom:385.053333pt;}
.y407{bottom:385.826667pt;}
.y3b6{bottom:388.640000pt;}
.y411{bottom:389.026667pt;}
.y18d{bottom:389.093333pt;}
.y4ae{bottom:389.373333pt;}
.y375{bottom:389.920000pt;}
.y390{bottom:390.560000pt;}
.y143{bottom:391.200000pt;}
.y25c{bottom:392.640000pt;}
.y17d{bottom:392.866667pt;}
.y24e{bottom:392.893333pt;}
.y1b4{bottom:392.933333pt;}
.y306{bottom:393.026667pt;}
.y444{bottom:393.053333pt;}
.y472{bottom:393.213333pt;}
.y33d{bottom:397.053333pt;}
.y42d{bottom:397.920000pt;}
.y35{bottom:398.306667pt;}
.y102{bottom:400.000000pt;}
.y201{bottom:400.893333pt;}
.y36a{bottom:401.026667pt;}
.y125{bottom:401.053333pt;}
.y29e{bottom:401.093333pt;}
.y405{bottom:402.240000pt;}
.yc9{bottom:404.866667pt;}
.y89{bottom:405.053333pt;}
.y2cb{bottom:406.240000pt;}
.y41f{bottom:407.200000pt;}
.y410{bottom:409.026667pt;}
.y311{bottom:410.306667pt;}
.y454{bottom:411.520000pt;}
.y17c{bottom:412.866667pt;}
.y24d{bottom:412.893333pt;}
.y1b3{bottom:412.933333pt;}
.y305{bottom:413.026667pt;}
.y42c{bottom:413.053333pt;}
.y2f7{bottom:413.440000pt;}
.y17{bottom:417.026667pt;}
.y33c{bottom:417.053333pt;}
.y18c{bottom:417.093333pt;}
.y497{bottom:417.440000pt;}
.y36c{bottom:418.560000pt;}
.y38f{bottom:420.866667pt;}
.y124{bottom:420.893333pt;}
.y369{bottom:421.026667pt;}
.y22f{bottom:421.053333pt;}
.y29d{bottom:421.093333pt;}
.y25b{bottom:421.280000pt;}
.y1dc{bottom:422.080000pt;}
.y4a1{bottom:424.160000pt;}
.yc8{bottom:424.866667pt;}
.y3e6{bottom:424.893333pt;}
.y88{bottom:425.053333pt;}
.y13d{bottom:425.280000pt;}
.ye9{bottom:426.560000pt;}
.y424{bottom:427.840000pt;}
.y3f6{bottom:428.160000pt;}
.y200{bottom:428.893333pt;}
.y3d1{bottom:429.053333pt;}
.y1e9{bottom:429.346667pt;}
.y17b{bottom:432.893333pt;}
.y1b2{bottom:432.933333pt;}
.y33b{bottom:436.893333pt;}
.y18b{bottom:437.093333pt;}
.y3b5{bottom:437.280000pt;}
.y3ae{bottom:438.080000pt;}
.y37e{bottom:439.360000pt;}
.y142{bottom:439.840000pt;}
.y453{bottom:440.160000pt;}
.y123{bottom:440.893333pt;}
.y2dd{bottom:440.933333pt;}
.y29c{bottom:440.960000pt;}
.y22e{bottom:441.053333pt;}
.y4a7{bottom:441.093333pt;}
.y2f6{bottom:442.080000pt;}
.y1ae{bottom:442.880000pt;}
.yc7{bottom:444.893333pt;}
.y87{bottom:445.053333pt;}
.y406{bottom:445.573333pt;}
.y496{bottom:446.080000pt;}
.y310{bottom:447.586667pt;}
.y101{bottom:448.640000pt;}
.y1ff{bottom:448.893333pt;}
.y327{bottom:449.120000pt;}
.y17a{bottom:452.893333pt;}
.y1b1{bottom:452.933333pt;}
.y3d9{bottom:456.066667pt;}
.y423{bottom:456.480000pt;}
.y33a{bottom:456.893333pt;}
.y18a{bottom:456.960000pt;}
.y3a0{bottom:457.120000pt;}
.y122{bottom:460.893333pt;}
.y2dc{bottom:460.933333pt;}
.y275{bottom:462.080000pt;}
.y30e{bottom:464.000000pt;}
.yc6{bottom:464.893333pt;}
.y86{bottom:465.053333pt;}
.y5a{bottom:465.440000pt;}
.y1e8{bottom:466.466667pt;}
.y25a{bottom:466.946667pt;}
.y141{bottom:468.480000pt;}
.y1fe{bottom:468.893333pt;}
.y22d{bottom:469.053333pt;}
.y13b{bottom:469.120000pt;}
.y1db{bottom:470.720000pt;}
.y2ca{bottom:471.746667pt;}
.y179{bottom:472.893333pt;}
.y1b0{bottom:472.933333pt;}
.y3f5{bottom:476.640000pt;}
.y339{bottom:476.893333pt;}
.y121{bottom:480.893333pt;}
.y2db{bottom:480.933333pt;}
.y3e5{bottom:484.733333pt;}
.y85{bottom:484.893333pt;}
.y3b4{bottom:485.920000pt;}
.y3ad{bottom:486.720000pt;}
.y3cc{bottom:487.840000pt;}
.y37d{bottom:488.000000pt;}
.y1a2{bottom:488.480000pt;}
.y450{bottom:488.640000pt;}
.y1fd{bottom:488.893333pt;}
.y274{bottom:490.720000pt;}
.y178{bottom:492.893333pt;}
.y1af{bottom:492.933333pt;}
.y3d8{bottom:493.186667pt;}
.y30d{bottom:494.080000pt;}
.y495{bottom:494.720000pt;}
.y32{bottom:495.586667pt;}
.y1e7{bottom:496.546667pt;}
.y338{bottom:496.893333pt;}
.y443{bottom:497.053333pt;}
.yff{bottom:497.280000pt;}
.y326{bottom:497.760000pt;}
.y1da{bottom:499.360000pt;}
.y486{bottom:500.000000pt;}
.y2da{bottom:500.773333pt;}
.y120{bottom:500.893333pt;}
.y4a6{bottom:500.933333pt;}
.y3d7{bottom:503.200000pt;}
.y3e4{bottom:504.733333pt;}
.yc5{bottom:504.893333pt;}
.y3f1{bottom:505.280000pt;}
.y39f{bottom:505.760000pt;}
.y259{bottom:506.973333pt;}
.y1fc{bottom:508.733333pt;}
.y22c{bottom:508.893333pt;}
.y3d6{bottom:509.760000pt;}
.y28a{bottom:510.720000pt;}
.y177{bottom:512.733333pt;}
.y84{bottom:512.893333pt;}
.y1e5{bottom:512.960000pt;}
.y58{bottom:513.920000pt;}
.y3b3{bottom:514.560000pt;}
.y3ab{bottom:515.360000pt;}
.y442{bottom:517.053333pt;}
.y1a1{bottom:517.120000pt;}
.y4a0{bottom:517.440000pt;}
.y16{bottom:517.533333pt;}
.y13a{bottom:517.760000pt;}
.y273{bottom:519.360000pt;}
.y11f{bottom:520.893333pt;}
.y4a5{bottom:520.933333pt;}
.y422{bottom:522.173333pt;}
.y494{bottom:523.360000pt;}
.yc4{bottom:524.733333pt;}
.y337{bottom:524.893333pt;}
.y471{bottom:525.053333pt;}
.y2c9{bottom:525.440000pt;}
.y325{bottom:526.400000pt;}
.y1d9{bottom:528.000000pt;}
.y1fb{bottom:528.733333pt;}
.y38e{bottom:528.893333pt;}
.y257{bottom:530.560000pt;}
.y217{bottom:532.000000pt;}
.y176{bottom:532.733333pt;}
.y83{bottom:532.893333pt;}
.y140{bottom:534.173333pt;}
.y3cb{bottom:536.480000pt;}
.y37c{bottom:536.640000pt;}
.y22b{bottom:536.893333pt;}
.y289{bottom:539.360000pt;}
.y2bb{bottom:540.640000pt;}
.y11e{bottom:540.733333pt;}
.y304{bottom:540.893333pt;}
.y4a4{bottom:540.933333pt;}
.y30c{bottom:542.720000pt;}
.yc3{bottom:544.733333pt;}
.y336{bottom:544.933333pt;}
.y470{bottom:545.053333pt;}
.y155{bottom:545.280000pt;}
.yfe{bottom:545.760000pt;}
.y1e4{bottom:546.080000pt;}
.y272{bottom:548.000000pt;}
.y485{bottom:548.640000pt;}
.y1fa{bottom:548.733333pt;}
.y368{bottom:548.893333pt;}
.y324{bottom:552.733333pt;}
.y82{bottom:552.893333pt;}
.y2c8{bottom:554.080000pt;}
.y31{bottom:554.333333pt;}
.y39e{bottom:554.400000pt;}
.y3bb{bottom:554.720000pt;}
.y189{bottom:556.000000pt;}
.y22a{bottom:556.893333pt;}
.y278{bottom:557.600000pt;}
.y421{bottom:559.293333pt;}
.y11d{bottom:560.733333pt;}
.y56{bottom:562.560000pt;}
.yc2{bottom:564.733333pt;}
.y335{bottom:564.773333pt;}
.y46f{bottom:564.933333pt;}
.y49f{bottom:565.920000pt;}
.y136{bottom:566.400000pt;}
.y288{bottom:568.000000pt;}
.y367{bottom:568.733333pt;}
.y4a3{bottom:568.933333pt;}
.y13f{bottom:571.293333pt;}
.y30b{bottom:571.360000pt;}
.y29b{bottom:572.000000pt;}
.y323{bottom:572.733333pt;}
.yfd{bottom:574.400000pt;}
.y1d8{bottom:576.640000pt;}
.y1f9{bottom:576.733333pt;}
.y229{bottom:576.893333pt;}
.y1ce{bottom:577.053333pt;}
.y13{bottom:578.173333pt;}
.y3b2{bottom:580.093333pt;}
.y216{bottom:580.480000pt;}
.y11c{bottom:580.733333pt;}
.y81{bottom:580.893333pt;}
.y1a0{bottom:582.653333pt;}
.yc1{bottom:584.733333pt;}
.y334{bottom:584.773333pt;}
.y46e{bottom:584.933333pt;}
.y37b{bottom:585.120000pt;}
.y277{bottom:586.240000pt;}
.y13c{bottom:587.680000pt;}
.y34f{bottom:587.840000pt;}
.y366{bottom:588.733333pt;}
.y4a2{bottom:588.800000pt;}
.y2ba{bottom:589.120000pt;}
.y420{bottom:589.213333pt;}
.y322{bottom:592.733333pt;}
.y1e3{bottom:594.560000pt;}
.y271{bottom:596.640000pt;}
.y1f8{bottom:596.733333pt;}
.y441{bottom:596.893333pt;}
.y484{bottom:597.280000pt;}
.y11b{bottom:600.733333pt;}
.y80{bottom:600.893333pt;}
.y2c7{bottom:602.560000pt;}
.y39d{bottom:602.880000pt;}
.y333{bottom:604.773333pt;}
.y228{bottom:604.893333pt;}
.y46d{bottom:604.933333pt;}
.y41e{bottom:605.760000pt;}
.y434{bottom:607.840000pt;}
.y365{bottom:608.733333pt;}
.y55{bottom:611.200000pt;}
.y3e3{bottom:612.573333pt;}
.y321{bottom:612.733333pt;}
.y37a{bottom:613.760000pt;}
.yab{bottom:614.560000pt;}
.y30{bottom:614.813333pt;}
.y34e{bottom:616.480000pt;}
.y282{bottom:616.640000pt;}
.y1f7{bottom:616.733333pt;}
.y440{bottom:616.893333pt;}
.y3b1{bottom:617.213333pt;}
.y19f{bottom:619.933333pt;}
.yfc{bottom:620.093333pt;}
.y11a{bottom:620.733333pt;}
.y1e2{bottom:623.200000pt;}
.y227{bottom:624.773333pt;}
.y46c{bottom:624.933333pt;}
.y7f{bottom:628.733333pt;}
.y215{bottom:629.120000pt;}
.y2c6{bottom:631.200000pt;}
.y39c{bottom:631.520000pt;}
.y3e2{bottom:632.573333pt;}
.y320{bottom:632.733333pt;}
.y3af{bottom:633.760000pt;}
.y23d{bottom:634.493333pt;}
.y23c{bottom:634.560000pt;}
.y19d{bottom:636.320000pt;}
.y174{bottom:636.480000pt;}
.y1f6{bottom:636.573333pt;}
.y43f{bottom:636.933333pt;}
.y2b9{bottom:637.760000pt;}
.y12{bottom:638.653333pt;}
.y52{bottom:639.840000pt;}
.y119{bottom:640.733333pt;}
.y226{bottom:644.773333pt;}
.y46b{bottom:644.933333pt;}
.y483{bottom:645.920000pt;}
.y364{bottom:648.733333pt;}
.y7e{bottom:648.773333pt;}
.y3a5{bottom:651.840000pt;}
.y31f{bottom:652.573333pt;}
.y2f{bottom:655.453333pt;}
.y161{bottom:655.680000pt;}
.y433{bottom:656.480000pt;}
.y1f5{bottom:656.613333pt;}
.y43e{bottom:656.773333pt;}
.y44f{bottom:657.120000pt;}
.yfb{bottom:657.213333pt;}
.y118{bottom:660.613333pt;}
.y303{bottom:660.733333pt;}
.y42b{bottom:660.773333pt;}
.y34d{bottom:662.173333pt;}
.y3ca{bottom:662.400000pt;}
.yaa{bottom:663.200000pt;}
.y225{bottom:664.773333pt;}
.y46a{bottom:664.933333pt;}
.y38d{bottom:668.573333pt;}
.y363{bottom:668.733333pt;}
.y48c{bottom:671.840000pt;}
.y3e1{bottom:672.613333pt;}
.yf8{bottom:673.760000pt;}
.y482{bottom:674.560000pt;}
.ybf{bottom:676.480000pt;}
.y7d{bottom:676.773333pt;}
.y39b{bottom:677.213333pt;}
.y214{bottom:677.760000pt;}
.y379{bottom:680.093333pt;}
.y117{bottom:680.613333pt;}
.y23b{bottom:683.200000pt;}
.y28c{bottom:683.840000pt;}
.y332{bottom:684.613333pt;}
.y224{bottom:684.773333pt;}
.y173{bottom:685.120000pt;}
.y2b8{bottom:686.400000pt;}
.y362{bottom:688.613333pt;}
.y9b{bottom:691.840000pt;}
.y3e0{bottom:692.613333pt;}
.y2e{bottom:696.093333pt;}
.y38c{bottom:696.613333pt;}
.y43d{bottom:696.773333pt;}
.y10{bottom:699.293333pt;}
.y116{bottom:700.613333pt;}
.y34c{bottom:702.173333pt;}
.y331{bottom:704.613333pt;}
.y7c{bottom:704.773333pt;}
.ybe{bottom:705.120000pt;}
.y44e{bottom:705.760000pt;}
.y51{bottom:706.173333pt;}
.y1cc{bottom:706.400000pt;}
.y3c9{bottom:707.933333pt;}
.y302{bottom:708.613333pt;}
.y238{bottom:711.840000pt;}
.y3df{bottom:712.613333pt;}
.y172{bottom:713.760000pt;}
.y39a{bottom:714.333333pt;}
.y2b7{bottom:715.040000pt;}
.y38b{bottom:716.613333pt;}
.y43c{bottom:716.773333pt;}
.y378{bottom:717.213333pt;}
.y2c4{bottom:719.840000pt;}
.y481{bottom:720.093333pt;}
.y115{bottom:720.613333pt;}
.y330{bottom:724.613333pt;}
.y7b{bottom:724.773333pt;}
.y34b{bottom:725.760000pt;}
.y301{bottom:728.613333pt;}
.y3de{bottom:732.453333pt;}
.y50{bottom:733.693333pt;}
.ybd{bottom:733.760000pt;}
.y361{bottom:736.613333pt;}
.y43b{bottom:736.773333pt;}
.y309{bottom:739.840000pt;}
.y114{bottom:740.613333pt;}
.y4ad{bottom:741.120000pt;}
.y171{bottom:742.400000pt;}
.y399{bottom:744.413333pt;}
.y32f{bottom:744.613333pt;}
.y7a{bottom:744.773333pt;}
.y3c8{bottom:747.933333pt;}
.y300{bottom:748.613333pt;}
.y4d{bottom:751.453333pt;}
.y213{bottom:752.093333pt;}
.y223{bottom:752.613333pt;}
.y469{bottom:752.773333pt;}
.y34a{bottom:754.400000pt;}
.ydd{bottom:754.720000pt;}
.y1cb{bottom:755.040000pt;}
.y360{bottom:756.613333pt;}
.y2c{bottom:756.773333pt;}
.y31d{bottom:757.120000pt;}
.y480{bottom:757.413333pt;}
.y2eb{bottom:760.480000pt;}
.y113{bottom:760.613333pt;}
.y397{bottom:760.800000pt;}
.y3ed{bottom:761.760000pt;}
.ybc{bottom:762.400000pt;}
.y79{bottom:764.613333pt;}
.y1d6{bottom:765.120000pt;}
.y2ff{bottom:768.613333pt;}
.y3c6{bottom:771.520000pt;}
.y222{bottom:772.613333pt;}
.y468{bottom:772.773333pt;}
.y47f{bottom:773.760000pt;}
.y35f{bottom:776.613333pt;}
.ye{bottom:779.813333pt;}
.y112{bottom:780.453333pt;}
.y42a{bottom:780.613333pt;}
.y2b6{bottom:780.773333pt;}
.y1c2{bottom:783.680000pt;}
.y78{bottom:784.613333pt;}
.y1f3{bottom:784.960000pt;}
.y2fe{bottom:788.613333pt;}
.y212{bottom:789.253333pt;}
.y16a{bottom:791.040000pt;}
.y4c{bottom:792.133333pt;}
.y221{bottom:792.613333pt;}
.y467{bottom:792.773333pt;}
.y35e{bottom:796.613333pt;}
.y27{bottom:800.293333pt;}
.y111{bottom:800.453333pt;}
.y47e{bottom:802.400000pt;}
.y349{bottom:803.040000pt;}
.y38a{bottom:804.453333pt;}
.y32e{bottom:804.480000pt;}
.y77{bottom:804.613333pt;}
.y210{bottom:805.600000pt;}
.y2fd{bottom:808.453333pt;}
.y2ea{bottom:809.120000pt;}
.yb9{bottom:811.040000pt;}
.y1e0{bottom:811.680000pt;}
.y220{bottom:812.613333pt;}
.y466{bottom:812.640000pt;}
.y1d5{bottom:813.600000pt;}
.y35d{bottom:816.453333pt;}
.y2b5{bottom:817.893333pt;}
.y389{bottom:824.453333pt;}
.y76{bottom:824.613333pt;}
.y110{bottom:828.453333pt;}
.y347{bottom:831.680000pt;}
.y21f{bottom:832.613333pt;}
.y1f2{bottom:833.600000pt;}
.y2b4{bottom:834.240000pt;}
.y2d8{bottom:834.560000pt;}
.y35c{bottom:836.453333pt;}
.y2e9{bottom:837.760000pt;}
.y24a{bottom:839.680000pt;}
.ya{bottom:840.453333pt;}
.y20f{bottom:842.240000pt;}
.y256{bottom:842.880000pt;}
.y388{bottom:844.453333pt;}
.y10f{bottom:848.453333pt;}
.y49{bottom:850.853333pt;}
.y47d{bottom:851.040000pt;}
.y75{bottom:852.613333pt;}
.y154{bottom:853.600000pt;}
.y5{bottom:854.579301pt;}
.y35b{bottom:856.453333pt;}
.y1d4{bottom:862.240000pt;}
.y2b3{bottom:862.880000pt;}
.y2d7{bottom:863.200000pt;}
.y25{bottom:866.213333pt;}
.y10e{bottom:868.453333pt;}
.y387{bottom:872.453333pt;}
.y21e{bottom:872.480000pt;}
.y74{bottom:872.613333pt;}
.y263{bottom:873.600000pt;}
.y35a{bottom:876.453333pt;}
.y47b{bottom:879.680000pt;}
.y270{bottom:882.240000pt;}
.y2e8{bottom:883.333333pt;}
.y10d{bottom:888.453333pt;}
.y1f1{bottom:890.880000pt;}
.y2d6{bottom:891.840000pt;}
.y386{bottom:892.453333pt;}
.y73{bottom:892.480000pt;}
.y428{bottom:893.600000pt;}
.y359{bottom:896.453333pt;}
.y44d{bottom:897.253333pt;}
.y9{bottom:898.853333pt;}
.y153{bottom:902.240000pt;}
.y10c{bottom:908.320000pt;}
.y2fc{bottom:908.453333pt;}
.y48{bottom:909.413333pt;}
.y1d3{bottom:910.880000pt;}
.y255{bottom:911.520000pt;}
.y385{bottom:912.453333pt;}
.y435{bottom:912.960000pt;}
.y358{bottom:916.453333pt;}
.y20d{bottom:919.520000pt;}
.y2d5{bottom:920.480000pt;}
.y2e7{bottom:920.613333pt;}
.y262{bottom:922.240000pt;}
.y4{bottom:924.605686pt;}
.y2fb{bottom:928.320000pt;}
.y152{bottom:930.880000pt;}
.y384{bottom:932.320000pt;}
.y8{bottom:933.253333pt;}
.y44c{bottom:934.533333pt;}
.y357{bottom:936.320000pt;}
.y2e5{bottom:936.960000pt;}
.y1d2{bottom:939.520000pt;}
.y252{bottom:940.160000pt;}
.y24{bottom:946.853333pt;}
.y44{bottom:950.053333pt;}
.y1ac{bottom:950.880000pt;}
.y150{bottom:959.520000pt;}
.y2d2{bottom:968.960000pt;}
.y7{bottom:973.253333pt;}
.yb6{bottom:979.520000pt;}
.y22{bottom:987.493333pt;}
.y3{bottom:994.632070pt;}
.y1aa{bottom:999.520000pt;}
.y6{bottom:1005.280000pt;}
.h11{height:20.032000pt;}
.h3e{height:27.840000pt;}
.h22{height:28.000000pt;}
.h58{height:28.960000pt;}
.h67{height:29.440000pt;}
.h44{height:32.320000pt;}
.h8e{height:34.701076pt;}
.h49{height:36.000000pt;}
.h52{height:37.120000pt;}
.h5c{height:39.040000pt;}
.h12{height:39.840000pt;}
.h13{height:39.872000pt;}
.h9{height:40.000000pt;}
.h1f{height:40.032000pt;}
.h63{height:41.920000pt;}
.h17{height:42.880000pt;}
.h21{height:45.364688pt;}
.h7b{height:45.440000pt;}
.h25{height:45.474000pt;}
.h23{height:47.840000pt;}
.h20{height:48.000000pt;}
.ha{height:48.451250pt;}
.h26{height:48.568000pt;}
.hb{height:50.283750pt;}
.hd{height:53.705000pt;}
.h5f{height:53.821750pt;}
.h8{height:54.593750pt;}
.h1b{height:57.920000pt;}
.h19{height:57.952000pt;}
.h1c{height:58.080000pt;}
.h16{height:58.375000pt;}
.h61{height:58.400000pt;}
.hf{height:59.840000pt;}
.h18{height:59.872000pt;}
.hc{height:60.000000pt;}
.h8f{height:60.705192pt;}
.h8d{height:62.399997pt;}
.h8c{height:63.829148pt;}
.h8a{height:63.833996pt;}
.h15{height:65.280000pt;}
.h34{height:67.840000pt;}
.h37{height:68.000000pt;}
.h7{height:72.692813pt;}
.h6{height:72.802125pt;}
.h1e{height:77.312000pt;}
.h68{height:79.840000pt;}
.he{height:79.872000pt;}
.h14{height:80.000000pt;}
.h4f{height:87.200000pt;}
.h46{height:87.840000pt;}
.h5e{height:88.000000pt;}
.h1a{height:96.640000pt;}
.h1d{height:96.672000pt;}
.h33{height:97.486250pt;}
.h89{height:99.839996pt;}
.h45{height:99.840000pt;}
.h10{height:99.872000pt;}
.h8b{height:100.479996pt;}
.h48{height:107.840000pt;}
.h82{height:114.400000pt;}
.h69{height:115.840000pt;}
.h60{height:119.840000pt;}
.h73{height:135.840000pt;}
.h85{height:147.680000pt;}
.h4e{height:147.840000pt;}
.h4{height:153.530503pt;}
.h24{height:167.680000pt;}
.h2a{height:167.840000pt;}
.h64{height:171.840000pt;}
.h54{height:177.760000pt;}
.h30{height:187.680000pt;}
.h39{height:187.840000pt;}
.h32{height:191.840000pt;}
.h6d{height:195.680000pt;}
.h7c{height:199.680000pt;}
.h36{height:207.680000pt;}
.h43{height:215.680000pt;}
.h3c{height:227.680000pt;}
.h41{height:243.680000pt;}
.h76{height:243.840000pt;}
.h6b{height:253.760000pt;}
.h7a{height:255.680000pt;}
.h29{height:255.840000pt;}
.h3{height:259.018486pt;}
.h4c{height:263.680000pt;}
.h79{height:265.600000pt;}
.h72{height:266.560000pt;}
.h2c{height:272.640000pt;}
.h66{height:287.520000pt;}
.h6f{height:293.600000pt;}
.h5d{height:307.520000pt;}
.h35{height:307.680000pt;}
.h50{height:311.680000pt;}
.h4b{height:315.520000pt;}
.h2d{height:327.520000pt;}
.h51{height:327.680000pt;}
.h28{height:335.520000pt;}
.h56{height:343.520000pt;}
.h40{height:343.680000pt;}
.h57{height:347.520000pt;}
.h2e{height:353.600000pt;}
.h5b{height:355.520000pt;}
.h71{height:363.520000pt;}
.h59{height:367.520000pt;}
.h55{height:375.520000pt;}
.h53{height:379.520000pt;}
.h3d{height:391.040000pt;}
.h74{height:393.600000pt;}
.h75{height:395.520000pt;}
.h7f{height:421.600000pt;}
.h86{height:427.360000pt;}
.h31{height:439.680000pt;}
.h5a{height:455.360000pt;}
.h7d{height:460.000000pt;}
.h4d{height:467.360000pt;}
.h3b{height:471.360000pt;}
.h3f{height:507.360000pt;}
.h62{height:515.200000pt;}
.h77{height:517.600000pt;}
.h81{height:519.200000pt;}
.h3a{height:547.200000pt;}
.h42{height:591.520000pt;}
.h2b{height:599.200000pt;}
.h87{height:603.200000pt;}
.h7e{height:623.200000pt;}
.h6a{height:667.040000pt;}
.h38{height:670.080000pt;}
.h47{height:671.040000pt;}
.h78{height:746.880000pt;}
.h88{height:755.520000pt;}
.h83{height:791.040000pt;}
.h80{height:795.040000pt;}
.h6c{height:818.880000pt;}
.h84{height:827.040000pt;}
.h4a{height:886.880000pt;}
.h27{height:906.880000pt;}
.h2f{height:922.720000pt;}
.h65{height:942.720000pt;}
.h70{height:946.720000pt;}
.h6e{height:950.720000pt;}
.h5{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w4{width:30.432000pt;}
.w7{width:103.232000pt;}
.wb{width:155.520000pt;}
.w8{width:159.680000pt;}
.w13{width:219.199991pt;}
.w6{width:226.266667pt;}
.w12{width:230.399990pt;}
.w5{width:282.746667pt;}
.w14{width:391.359984pt;}
.w10{width:490.720000pt;}
.w11{width:494.560000pt;}
.wf{width:494.880000pt;}
.w9{width:499.840000pt;}
.wa{width:500.160000pt;}
.wc{width:504.320000pt;}
.we{width:504.640000pt;}
.wd{width:504.733333pt;}
.w3{width:793.759988pt;}
.w2{width:793.760000pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.720000pt;}
.xc{left:44.538338pt;}
.xd{left:46.238836pt;}
.x10{left:62.492051pt;}
.x3{left:75.519988pt;}
.x2{left:79.399997pt;}
.x1{left:92.984371pt;}
.x5{left:107.232000pt;}
.x9{left:232.480000pt;}
.x8{left:236.640000pt;}
.xf{left:245.759990pt;}
.xe{left:336.319986pt;}
.x6{left:390.626667pt;}
.xa{left:453.093333pt;}
.xb{left:487.013333pt;}
.x7{left:617.533333pt;}
}




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