
    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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_fc8e5c39b8dca6444e53a14d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_616641de51ee4add1760cd51.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191000;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_e5af0dcc05048b6f0586d791.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_e991294894889c69cde43864.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894000;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_6abc4613ab3edcdcb2ac0664.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010000;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_cf3b35db75748e9baf7190cd.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_568c56e0ca9fe798cc536085.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_35366a90707494b9f13ef0b7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900000;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_42176f3308caf4fe0a8ad29d.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_466e3a07ea76698eb22ed35e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.722000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f71d0925ca2367a8d3f5b8ea.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_50c28688889ddc1089891e80.woff2')format("woff");}.fff{font-family:fff;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_243a93cd734cd08555445c6e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_852013041a747438337d545e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.745605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_3c87bcae4b11d0cf9f8506b6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.687000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_be37749a4850b577684d71cd.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_6360c22625ce2e41f2104384.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_3a9f23013101baf5d339f344.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_fef98e1bc95d4f8e06ce89a6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.745605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_f71d0925ca2367a8d3f5b8ea.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_9ef4e31328d34e46a893848a.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_9202c4119a9bb494f3765b3a.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_9b8ddae83716537830690cdb.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_fef98e1bc95d4f8e06ce89a6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.745605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_f71d0925ca2367a8d3f5b8ea.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000488;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:ff1d;src:url('chunks/assets/font_ab9d26c92497c66fabeeb106.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.003906;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:ff1e;src:url('chunks/assets/font_9d6ff24d23457a695ab85aa6.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.211426;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:ff1f;src:url('chunks/assets/font_f49eb9f9783980e5672b53fc.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.360019;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:ff20;src:url('chunks/assets/font_4df413b238f0b6c0cd7a426a.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_f71d0925ca2367a8d3f5b8ea.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.000488;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:ff22;src:url('chunks/assets/font_a849472f1daec83324019079.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.003906;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:ff23;src:url('chunks/assets/font_02a0e3ac874591cf47aed515.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.211426;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:ff24;src:url('chunks/assets/font_c3d8a94bb11de402688e8036.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.997000;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:ff25;src:url('chunks/assets/font_14a691836bd7421e47831fd5.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.726000;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;}
.m25{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-84.312000px;}
.v2{vertical-align:-17.358000px;}
.v6{vertical-align:-12.306000px;}
.v3{vertical-align:-10.914000px;}
.v5{vertical-align:-4.602000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:10.914000px;}
.v7{vertical-align:12.306000px;}
.vb{vertical-align:15.114816px;}
.va{vertical-align:19.350000px;}
.v1{vertical-align:21.702000px;}
.v8{vertical-align:134.628000px;}
.ls8b{letter-spacing:-0.264528px;}
.lsae{letter-spacing:-0.246492px;}
.lsad{letter-spacing:-0.240480px;}
.ls69{letter-spacing:-0.234468px;}
.ls6a{letter-spacing:-0.222444px;}
.lsaf{letter-spacing:-0.216432px;}
.ls50{letter-spacing:-0.162324px;}
.ls5e{letter-spacing:-0.144288px;}
.ls8c{letter-spacing:-0.138276px;}
.ls59{letter-spacing:-0.132264px;}
.ls51{letter-spacing:-0.126252px;}
.ls8a{letter-spacing:-0.120240px;}
.ls54{letter-spacing:-0.114228px;}
.ls49{letter-spacing:-0.108216px;}
.ls95{letter-spacing:-0.105811px;}
.ls5c{letter-spacing:-0.102204px;}
.ls92{letter-spacing:-0.101002px;}
.ls5b{letter-spacing:-0.096192px;}
.ls93{letter-spacing:-0.091382px;}
.ls47{letter-spacing:-0.090972px;}
.ls57{letter-spacing:-0.090180px;}
.ls94{letter-spacing:-0.086573px;}
.lsac{letter-spacing:-0.086184px;}
.ls48{letter-spacing:-0.084168px;}
.ls9d{letter-spacing:-0.081763px;}
.ls5f{letter-spacing:-0.078156px;}
.ls8f{letter-spacing:-0.072778px;}
.ls52{letter-spacing:-0.072144px;}
.ls9e{letter-spacing:-0.067334px;}
.ls4e{letter-spacing:-0.066132px;}
.ls9f{letter-spacing:-0.062525px;}
.ls55{letter-spacing:-0.060120px;}
.ls96{letter-spacing:-0.057715px;}
.ls60{letter-spacing:-0.054108px;}
.lsa2{letter-spacing:-0.052906px;}
.ls4d{letter-spacing:-0.048096px;}
.lsa1{letter-spacing:-0.043286px;}
.ls66{letter-spacing:-0.042084px;}
.ls9a{letter-spacing:-0.038477px;}
.ls87{letter-spacing:-0.037800px;}
.ls58{letter-spacing:-0.036072px;}
.ls9c{letter-spacing:-0.033667px;}
.ls89{letter-spacing:-0.032400px;}
.ls5a{letter-spacing:-0.030060px;}
.ls97{letter-spacing:-0.028858px;}
.ls90{letter-spacing:-0.025920px;}
.ls5d{letter-spacing:-0.024048px;}
.ls4a{letter-spacing:-0.018036px;}
.ls88{letter-spacing:-0.016200px;}
.ls99{letter-spacing:-0.014429px;}
.ls4b{letter-spacing:-0.012024px;}
.ls9b{letter-spacing:-0.009619px;}
.ls91{letter-spacing:-0.008640px;}
.ls61{letter-spacing:-0.006012px;}
.ls4c{letter-spacing:-0.005400px;}
.lsb{letter-spacing:0.000000px;}
.lsb5{letter-spacing:0.000009px;}
.ls35{letter-spacing:0.000017px;}
.ls34{letter-spacing:0.000583px;}
.ls74{letter-spacing:0.000612px;}
.ls73{letter-spacing:0.003178px;}
.ls4{letter-spacing:0.004200px;}
.ls72{letter-spacing:0.004800px;}
.ls7b{letter-spacing:0.004810px;}
.lsab{letter-spacing:0.005400px;}
.ls46{letter-spacing:0.006012px;}
.ls80{letter-spacing:0.009619px;}
.ls43{letter-spacing:0.012024px;}
.ls6b{letter-spacing:0.016200px;}
.ls7a{letter-spacing:0.017280px;}
.ls40{letter-spacing:0.018036px;}
.ls7e{letter-spacing:0.019238px;}
.ls78{letter-spacing:0.022982px;}
.ls85{letter-spacing:0.023501px;}
.ls62{letter-spacing:0.024048px;}
.ls76{letter-spacing:0.026813px;}
.ls3d{letter-spacing:0.028728px;}
.ls83{letter-spacing:0.028858px;}
.ls45{letter-spacing:0.030060px;}
.ls41{letter-spacing:0.032400px;}
.ls3b{letter-spacing:0.033516px;}
.ls82{letter-spacing:0.033667px;}
.ls71{letter-spacing:0.036072px;}
.lsa7{letter-spacing:0.038304px;}
.ls3f{letter-spacing:0.042084px;}
.lsa5{letter-spacing:0.043092px;}
.ls81{letter-spacing:0.043286px;}
.ls86{letter-spacing:0.047002px;}
.ls68{letter-spacing:0.048096px;}
.ls7c{letter-spacing:0.052906px;}
.ls42{letter-spacing:0.054108px;}
.lsa3{letter-spacing:0.057715px;}
.lsa9{letter-spacing:0.060120px;}
.lsaa{letter-spacing:0.066132px;}
.ls44{letter-spacing:0.072144px;}
.ls7f{letter-spacing:0.076954px;}
.ls63{letter-spacing:0.078156px;}
.ls84{letter-spacing:0.080352px;}
.ls6f{letter-spacing:0.084168px;}
.ls8d{letter-spacing:0.090180px;}
.ls70{letter-spacing:0.096192px;}
.ls64{letter-spacing:0.102204px;}
.ls6c{letter-spacing:0.124200px;}
.ls79{letter-spacing:0.134064px;}
.ls65{letter-spacing:0.138276px;}
.ls67{letter-spacing:0.144288px;}
.ls77{letter-spacing:0.145555px;}
.ls6d{letter-spacing:0.145800px;}
.lsc{letter-spacing:0.148766px;}
.ls3e{letter-spacing:0.167580px;}
.lsa8{letter-spacing:0.177156px;}
.ls53{letter-spacing:0.180360px;}
.ls3c{letter-spacing:0.181944px;}
.lsa6{letter-spacing:0.191520px;}
.ls56{letter-spacing:0.384768px;}
.ls1f{letter-spacing:0.473675px;}
.ls25{letter-spacing:0.542815px;}
.ls15{letter-spacing:0.548815px;}
.ls14{letter-spacing:0.565142px;}
.ls24{letter-spacing:0.571142px;}
.ls2d{letter-spacing:0.670741px;}
.ls33{letter-spacing:0.676741px;}
.ls38{letter-spacing:0.741634px;}
.ls2b{letter-spacing:0.747634px;}
.ls2f{letter-spacing:0.750583px;}
.ls26{letter-spacing:0.864783px;}
.ls17{letter-spacing:0.870783px;}
.ls1d{letter-spacing:1.250725px;}
.lsa{letter-spacing:1.275394px;}
.ls27{letter-spacing:1.464783px;}
.ls28{letter-spacing:1.470783px;}
.ls0{letter-spacing:1.861130px;}
.ls1b{letter-spacing:1.908017px;}
.ls36{letter-spacing:1.914017px;}
.ls31{letter-spacing:2.014741px;}
.ls2a{letter-spacing:2.020741px;}
.ls2e{letter-spacing:2.061483px;}
.ls8e{letter-spacing:2.248488px;}
.ls16{letter-spacing:2.539200px;}
.ls22{letter-spacing:2.661483px;}
.ls37{letter-spacing:2.989142px;}
.ls3{letter-spacing:2.989200px;}
.ls1e{letter-spacing:2.991986px;}
.ls30{letter-spacing:3.733142px;}
.lsf{letter-spacing:3.735986px;}
.ls29{letter-spacing:3.739142px;}
.ls11{letter-spacing:3.764725px;}
.ls4f{letter-spacing:4.052088px;}
.lsa0{letter-spacing:4.391165px;}
.ls10{letter-spacing:4.452783px;}
.ls98{letter-spacing:7.849267px;}
.ls1{letter-spacing:10.461300px;}
.ls13{letter-spacing:10.714115px;}
.ls9{letter-spacing:11.954850px;}
.lsb4{letter-spacing:13.348819px;}
.lsb1{letter-spacing:13.436854px;}
.lsb6{letter-spacing:13.439066px;}
.lsb2{letter-spacing:13.448400px;}
.lsba{letter-spacing:13.448604px;}
.lsb3{letter-spacing:13.454400px;}
.lsb0{letter-spacing:13.556473px;}
.lsb9{letter-spacing:13.568509px;}
.ls3a{letter-spacing:13.688612px;}
.ls32{letter-spacing:14.283483px;}
.ls2c{letter-spacing:14.289483px;}
.lsb8{letter-spacing:14.826871px;}
.ls5{letter-spacing:14.944200px;}
.ls2{letter-spacing:14.944766px;}
.lsb7{letter-spacing:15.068047px;}
.ls75{letter-spacing:15.123227px;}
.ls23{letter-spacing:15.357986px;}
.ls19{letter-spacing:15.690300px;}
.ls21{letter-spacing:17.350200px;}
.lse{letter-spacing:17.475483px;}
.ls39{letter-spacing:17.720806px;}
.ls1a{letter-spacing:17.931986px;}
.ls20{letter-spacing:17.935142px;}
.ls12{letter-spacing:18.069483px;}
.lsd{letter-spacing:20.337986px;}
.lsa4{letter-spacing:21.818094px;}
.ls1c{letter-spacing:33.465986px;}
.ls18{letter-spacing:33.625142px;}
.ls7{letter-spacing:62.761200px;}
.ls8{letter-spacing:64.321654px;}
.ls6e{letter-spacing:65.729196px;}
.ls7d{letter-spacing:66.406147px;}
.ls6{letter-spacing:72.361200px;}
.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;}
}
.ws6e{word-spacing:-60.120000px;}
.wsb3{word-spacing:-36.000000px;}
.wsd5{word-spacing:-15.210360px;}
.wsb4{word-spacing:-15.030000px;}
.ws48{word-spacing:-14.943900px;}
.wsd4{word-spacing:-13.500000px;}
.wsd7{word-spacing:-13.449600px;}
.ws14c{word-spacing:-12.161520px;}
.ws6d{word-spacing:-12.151944px;}
.ws28{word-spacing:-11.955150px;}
.ws10{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.wsde{word-spacing:-9.721555px;}
.ws6f{word-spacing:-9.000000px;}
.ws4f{word-spacing:-4.236853px;}
.ws4d{word-spacing:-4.234598px;}
.ws52{word-spacing:-4.230853px;}
.ws16d{word-spacing:-3.132252px;}
.ws150{word-spacing:-2.929004px;}
.ws191{word-spacing:-2.905114px;}
.ws9c{word-spacing:-2.819628px;}
.ws16f{word-spacing:-2.777544px;}
.ws68{word-spacing:-2.749678px;}
.ws170{word-spacing:-2.687364px;}
.ws16c{word-spacing:-2.675340px;}
.wscb{word-spacing:-2.500992px;}
.ws151{word-spacing:-2.450800px;}
.wsca{word-spacing:-2.410812px;}
.ws3c{word-spacing:-2.391024px;}
.wsc8{word-spacing:-2.332656px;}
.ws79{word-spacing:-2.271473px;}
.wsc9{word-spacing:-2.194380px;}
.ws60{word-spacing:-2.151922px;}
.ws1c{word-spacing:-2.092146px;}
.ws167{word-spacing:-2.062116px;}
.wsb9{word-spacing:-2.050092px;}
.ws1f{word-spacing:-2.032370px;}
.ws168{word-spacing:-1.965924px;}
.ws1{word-spacing:-1.908367px;}
.ws13c{word-spacing:-1.899792px;}
.ws13d{word-spacing:-1.890173px;}
.ws143{word-spacing:-1.853044px;}
.wseb{word-spacing:-1.791576px;}
.wsbc{word-spacing:-1.737468px;}
.ws5f{word-spacing:-1.733492px;}
.ws176{word-spacing:-1.701396px;}
.ws175{word-spacing:-1.677348px;}
.ws3d{word-spacing:-1.673717px;}
.ws190{word-spacing:-1.667750px;}
.wsea{word-spacing:-1.653300px;}
.ws105{word-spacing:-1.599192px;}
.ws196{word-spacing:-1.506355px;}
.ws6b{word-spacing:-1.494390px;}
.ws8e{word-spacing:-1.382760px;}
.ws12e{word-spacing:-1.375546px;}
.ws141{word-spacing:-1.374839px;}
.ws12c{word-spacing:-1.370736px;}
.wsb6{word-spacing:-1.358712px;}
.wsd0{word-spacing:-1.346688px;}
.wsfd{word-spacing:-1.322640px;}
.ws0{word-spacing:-1.322630px;}
.ws91{word-spacing:-1.304604px;}
.ws69{word-spacing:-1.255288px;}
.ws171{word-spacing:-1.214424px;}
.ws77{word-spacing:-1.195512px;}
.ws6{word-spacing:-1.171598px;}
.ws152{word-spacing:-1.135736px;}
.ws40{word-spacing:-1.075961px;}
.ws117{word-spacing:-1.053302px;}
.ws12d{word-spacing:-1.048493px;}
.ws161{word-spacing:-1.046088px;}
.ws8{word-spacing:-1.046070px;}
.ws118{word-spacing:-1.019635px;}
.wscc{word-spacing:-1.016028px;}
.wsaa{word-spacing:-0.901800px;}
.ws1a3{word-spacing:-0.806976px;}
.ws32{word-spacing:-0.777083px;}
.ws70{word-spacing:-0.645581px;}
.ws185{word-spacing:-0.597756px;}
.wsfe{word-spacing:-0.595188px;}
.ws5c{word-spacing:-0.398212px;}
.ws71{word-spacing:-0.376589px;}
.wsce{word-spacing:-0.372744px;}
.wsf7{word-spacing:-0.366732px;}
.ws44{word-spacing:-0.358654px;}
.ws17a{word-spacing:-0.330660px;}
.ws21{word-spacing:-0.298878px;}
.ws22{word-spacing:-0.239102px;}
.ws18e{word-spacing:-0.215194px;}
.ws26{word-spacing:-0.179327px;}
.wse1{word-spacing:-0.162000px;}
.ws13{word-spacing:-0.161395px;}
.wse2{word-spacing:-0.156600px;}
.wse6{word-spacing:-0.145800px;}
.ws11e{word-spacing:-0.144288px;}
.wse0{word-spacing:-0.140400px;}
.ws114{word-spacing:-0.129859px;}
.ws153{word-spacing:-0.124488px;}
.ws7b{word-spacing:-0.119700px;}
.ws2f{word-spacing:-0.119551px;}
.ws115{word-spacing:-0.110621px;}
.ws14{word-spacing:-0.107597px;}
.ws10a{word-spacing:-0.095760px;}
.ws31{word-spacing:-0.059776px;}
.wsbe{word-spacing:-0.054108px;}
.wsb5{word-spacing:-0.053798px;}
.ws29{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.ws12b{word-spacing:-0.004810px;}
.ws54{word-spacing:-0.001991px;}
.ws3{word-spacing:0.000000px;}
.wsdb{word-spacing:0.001200px;}
.ws56{word-spacing:0.004009px;}
.wsbf{word-spacing:0.012024px;}
.ws140{word-spacing:0.014429px;}
.ws135{word-spacing:0.024048px;}
.ws92{word-spacing:0.036072px;}
.ws16b{word-spacing:0.042084px;}
.wsd3{word-spacing:0.048096px;}
.ws134{word-spacing:0.052906px;}
.ws16{word-spacing:0.053798px;}
.ws1d{word-spacing:0.059776px;}
.ws8f{word-spacing:0.066132px;}
.ws81{word-spacing:0.072144px;}
.ws9e{word-spacing:0.078156px;}
.ws122{word-spacing:0.081763px;}
.ws102{word-spacing:0.090180px;}
.ws4b{word-spacing:0.095557px;}
.ws179{word-spacing:0.102204px;}
.ws19{word-spacing:0.107597px;}
.wscd{word-spacing:0.108216px;}
.ws39{word-spacing:0.119551px;}
.wsa7{word-spacing:0.120240px;}
.ws121{word-spacing:0.125050px;}
.ws10d{word-spacing:0.125280px;}
.ws10e{word-spacing:0.129600px;}
.ws103{word-spacing:0.138276px;}
.ws84{word-spacing:0.140400px;}
.ws10c{word-spacing:0.142560px;}
.ws83{word-spacing:0.145800px;}
.ws9d{word-spacing:0.150300px;}
.ws110{word-spacing:0.151200px;}
.ws18{word-spacing:0.161395px;}
.ws180{word-spacing:0.167400px;}
.ws10f{word-spacing:0.168480px;}
.ws82{word-spacing:0.178200px;}
.ws33{word-spacing:0.179327px;}
.ws90{word-spacing:0.180360px;}
.ws85{word-spacing:0.183600px;}
.wsf0{word-spacing:0.186372px;}
.ws181{word-spacing:0.189000px;}
.wsbd{word-spacing:0.198396px;}
.wsd6{word-spacing:0.215194px;}
.wsfc{word-spacing:0.228456px;}
.ws1e{word-spacing:0.239102px;}
.ws11{word-spacing:0.268992px;}
.ws24{word-spacing:0.298878px;}
.ws17{word-spacing:0.322790px;}
.wsf6{word-spacing:0.354708px;}
.ws37{word-spacing:0.358654px;}
.wsda{word-spacing:0.418429px;}
.ws16e{word-spacing:0.462924px;}
.wsb1{word-spacing:0.478205px;}
.wsc4{word-spacing:0.480960px;}
.wsc3{word-spacing:0.492984px;}
.ws41{word-spacing:0.537980px;}
.wsc0{word-spacing:0.559116px;}
.ws20{word-spacing:0.597756px;}
.ws3a{word-spacing:0.657532px;}
.ws129{word-spacing:0.663725px;}
.ws192{word-spacing:0.699379px;}
.ws12a{word-spacing:0.716630px;}
.wsa6{word-spacing:0.793584px;}
.wsff{word-spacing:0.811620px;}
.ws100{word-spacing:0.829656px;}
.ws96{word-spacing:0.841680px;}
.ws12f{word-spacing:0.884966px;}
.ws130{word-spacing:0.894586px;}
.ws6a{word-spacing:0.896634px;}
.ws125{word-spacing:0.918634px;}
.wse9{word-spacing:0.925848px;}
.ws35{word-spacing:0.956410px;}
.ws133{word-spacing:0.966730px;}
.ws7{word-spacing:1.004227px;}
.ws75{word-spacing:1.016185px;}
.ws1b0{word-spacing:1.022170px;}
.ws132{word-spacing:1.038874px;}
.ws30{word-spacing:1.075961px;}
.ws162{word-spacing:1.082160px;}
.ws163{word-spacing:1.124244px;}
.ws101{word-spacing:1.130256px;}
.ws2a{word-spacing:1.135736px;}
.ws74{word-spacing:1.195512px;}
.ws93{word-spacing:1.208412px;}
.ws11b{word-spacing:1.236067px;}
.ws1ad{word-spacing:1.237363px;}
.ws73{word-spacing:1.255288px;}
.ws11c{word-spacing:1.260115px;}
.wsf1{word-spacing:1.262520px;}
.ws173{word-spacing:1.298592px;}
.ws142{word-spacing:1.315063px;}
.ws76{word-spacing:1.374839px;}
.ws63{word-spacing:1.434614px;}
.ws197{word-spacing:1.452557px;}
.ws139{word-spacing:1.500595px;}
.ws13a{word-spacing:1.524643px;}
.ws15f{word-spacing:1.545084px;}
.ws160{word-spacing:1.563120px;}
.ws8d{word-spacing:1.587168px;}
.ws51{word-spacing:1.589729px;}
.ws4c{word-spacing:1.595729px;}
.ws9f{word-spacing:1.629252px;}
.ws8c{word-spacing:1.641276px;}
.ws149{word-spacing:1.673717px;}
.ws65{word-spacing:1.733492px;}
.ws78{word-spacing:1.912819px;}
.ws177{word-spacing:1.917828px;}
.wse4{word-spacing:1.949400px;}
.ws146{word-spacing:1.972595px;}
.wse3{word-spacing:1.981800px;}
.wse5{word-spacing:1.998000px;}
.ws178{word-spacing:2.020032px;}
.ws25{word-spacing:2.032370px;}
.ws1b2{word-spacing:2.098138px;}
.ws57{word-spacing:2.151922px;}
.ws58{word-spacing:2.161892px;}
.ws99{word-spacing:2.176344px;}
.wsc6{word-spacing:2.200392px;}
.ws2b{word-spacing:2.211697px;}
.ws98{word-spacing:2.236464px;}
.ws15{word-spacing:2.259533px;}
.ws3e{word-spacing:2.271473px;}
.wsc1{word-spacing:2.290572px;}
.ws104{word-spacing:2.296584px;}
.ws19b{word-spacing:2.313331px;}
.wsc7{word-spacing:2.332656px;}
.wsc2{word-spacing:2.338668px;}
.ws182{word-spacing:2.344680px;}
.ws183{word-spacing:2.368728px;}
.ws34{word-spacing:2.391024px;}
.ws147{word-spacing:2.450800px;}
.ws2{word-spacing:2.511541px;}
.ws66{word-spacing:2.570351px;}
.ws15b{word-spacing:2.579148px;}
.ws97{word-spacing:2.597184px;}
.wsad{word-spacing:2.603196px;}
.wsae{word-spacing:2.615220px;}
.ws36{word-spacing:2.630126px;}
.ws38{word-spacing:2.689902px;}
.ws12{word-spacing:2.689920px;}
.ws14f{word-spacing:2.809453px;}
.ws19f{word-spacing:2.905114px;}
.ws14d{word-spacing:2.929004px;}
.ws184{word-spacing:2.939868px;}
.ws5b{word-spacing:2.988780px;}
.ws193{word-spacing:3.012710px;}
.ws186{word-spacing:3.048556px;}
.wsbb{word-spacing:3.054096px;}
.wsba{word-spacing:3.096180px;}
.ws5d{word-spacing:3.108331px;}
.ws4a{word-spacing:3.168107px;}
.ws18b{word-spacing:3.174106px;}
.ws138{word-spacing:3.208003px;}
.ws13b{word-spacing:3.222432px;}
.ws1a7{word-spacing:3.223642px;}
.ws194{word-spacing:3.227904px;}
.wsc5{word-spacing:3.306600px;}
.ws111{word-spacing:3.342672px;}
.wsee{word-spacing:3.366720px;}
.ws18c{word-spacing:3.443098px;}
.ws13f{word-spacing:3.477341px;}
.ws1a9{word-spacing:3.496896px;}
.ws136{word-spacing:3.520627px;}
.ws46{word-spacing:3.526760px;}
.ws11f{word-spacing:3.539866px;}
.ws120{word-spacing:3.573533px;}
.ws1b{word-spacing:3.586536px;}
.ws137{word-spacing:3.636058px;}
.ws3f{word-spacing:3.646312px;}
.wsf8{word-spacing:3.655296px;}
.ws19e{word-spacing:3.658291px;}
.wsd2{word-spacing:3.679344px;}
.wsf9{word-spacing:3.685356px;}
.wsa1{word-spacing:3.703392px;}
.ws64{word-spacing:3.706087px;}
.wsa0{word-spacing:3.715416px;}
.ws8b{word-spacing:3.763512px;}
.ws7e{word-spacing:3.775536px;}
.wsd1{word-spacing:3.793572px;}
.ws7f{word-spacing:3.799584px;}
.wsf5{word-spacing:3.805596px;}
.ws8a{word-spacing:3.817620px;}
.wsd8{word-spacing:3.825638px;}
.ws89{word-spacing:3.853692px;}
.ws62{word-spacing:3.885414px;}
.ws4e{word-spacing:3.995729px;}
.ws14e{word-spacing:4.004965px;}
.ws88{word-spacing:4.010004px;}
.wsaf{word-spacing:4.040064px;}
.ws166{word-spacing:4.070124px;}
.ws67{word-spacing:4.124516px;}
.ws9a{word-spacing:4.148280px;}
.ws9b{word-spacing:4.154292px;}
.ws148{word-spacing:4.184292px;}
.wsb0{word-spacing:4.184352px;}
.ws43{word-spacing:4.303843px;}
.ws18f{word-spacing:4.357670px;}
.ws7a{word-spacing:4.363619px;}
.ws174{word-spacing:4.370724px;}
.ws131{word-spacing:4.453690px;}
.ws1a6{word-spacing:4.465267px;}
.ws107{word-spacing:4.472928px;}
.wsb2{word-spacing:4.483170px;}
.ws108{word-spacing:4.502988px;}
.ws1ab{word-spacing:4.519066px;}
.ws109{word-spacing:4.527036px;}
.wsf4{word-spacing:4.539060px;}
.ws23{word-spacing:4.542946px;}
.ws1af{word-spacing:4.572864px;}
.ws42{word-spacing:4.662497px;}
.wse{word-spacing:4.770079px;}
.wsf{word-spacing:4.853765px;}
.ws187{word-spacing:5.140702px;}
.ws189{word-spacing:5.164646px;}
.wsf2{word-spacing:5.176332px;}
.wsf3{word-spacing:5.248476px;}
.ws11a{word-spacing:5.252083px;}
.ws18a{word-spacing:5.379840px;}
.ws6c{word-spacing:5.439580px;}
.ws7d{word-spacing:5.446872px;}
.ws188{word-spacing:5.487437px;}
.ws155{word-spacing:5.506992px;}
.ws154{word-spacing:5.627232px;}
.ws169{word-spacing:5.795568px;}
.wsa2{word-spacing:5.849676px;}
.ws16a{word-spacing:5.909796px;}
.ws72{word-spacing:5.977560px;}
.ws172{word-spacing:6.144264px;}
.ws127{word-spacing:6.151478px;}
.ws128{word-spacing:6.199574px;}
.wsa3{word-spacing:6.240456px;}
.ws19c{word-spacing:6.240614px;}
.ws94{word-spacing:6.276528px;}
.ws95{word-spacing:6.342660px;}
.ws11d{word-spacing:6.435245px;}
.ws1ac{word-spacing:6.509606px;}
.ws55{word-spacing:6.569729px;}
.ws49{word-spacing:6.575729px;}
.ws17f{word-spacing:6.601176px;}
.ws17e{word-spacing:6.673320px;}
.ws2d{word-spacing:6.694867px;}
.ws15e{word-spacing:6.823620px;}
.ws45{word-spacing:6.874194px;}
.ws2e{word-spacing:6.933970px;}
.wscf{word-spacing:7.022016px;}
.ws145{word-spacing:7.053521px;}
.wsdd{word-spacing:7.113296px;}
.ws18d{word-spacing:7.316582px;}
.wsa4{word-spacing:7.322616px;}
.ws61{word-spacing:7.591501px;}
.wsd9{word-spacing:7.651277px;}
.wse8{word-spacing:7.689348px;}
.ws5a{word-spacing:7.767774px;}
.ws59{word-spacing:7.770828px;}
.wsc{word-spacing:7.782761px;}
.wsa5{word-spacing:7.791552px;}
.ws119{word-spacing:7.897363px;}
.ws2c{word-spacing:7.950155px;}
.wse7{word-spacing:8.056080px;}
.ws144{word-spacing:8.249033px;}
.wsb7{word-spacing:8.356680px;}
.ws14b{word-spacing:8.368584px;}
.wsb8{word-spacing:8.410788px;}
.ws14a{word-spacing:8.428360px;}
.ws113{word-spacing:8.662090px;}
.ws112{word-spacing:8.801568px;}
.ws86{word-spacing:9.138240px;}
.ws87{word-spacing:9.156276px;}
.ws10b{word-spacing:9.296381px;}
.ws17b{word-spacing:9.438840px;}
.wsdc{word-spacing:9.564096px;}
.ws15c{word-spacing:9.787536px;}
.ws15d{word-spacing:9.853668px;}
.ws156{word-spacing:10.280520px;}
.ws157{word-spacing:10.322604px;}
.ws124{word-spacing:10.744646px;}
.ws123{word-spacing:10.768694px;}
.wsef{word-spacing:11.338632px;}
.ws7c{word-spacing:11.620476px;}
.ws27{word-spacing:11.904248px;}
.ws106{word-spacing:11.981916px;}
.wsa{word-spacing:12.176255px;}
.wsa8{word-spacing:12.408768px;}
.wsa9{word-spacing:12.444840px;}
.wsed{word-spacing:12.619188px;}
.ws1a4{word-spacing:12.642624px;}
.ws17d{word-spacing:12.691332px;}
.ws17c{word-spacing:12.811572px;}
.ws159{word-spacing:12.943836px;}
.ws158{word-spacing:13.070088px;}
.wsec{word-spacing:13.094136px;}
.ws19d{word-spacing:13.180608px;}
.ws15a{word-spacing:13.202352px;}
.ws199{word-spacing:13.342003px;}
.ws1a0{word-spacing:13.386499px;}
.ws1a8{word-spacing:13.392384px;}
.ws19a{word-spacing:13.395802px;}
.ws1b3{word-spacing:13.503398px;}
.ws1a{word-spacing:13.557197px;}
.ws1b1{word-spacing:14.417971px;}
.ws13e{word-spacing:14.443229px;}
.wsfa{word-spacing:14.585112px;}
.ws1ae{word-spacing:14.633165px;}
.wsfb{word-spacing:14.633208px;}
.ws5e{word-spacing:14.884124px;}
.ws116{word-spacing:15.967872px;}
.wsb{word-spacing:16.109478px;}
.ws1a2{word-spacing:16.354714px;}
.ws198{word-spacing:16.569907px;}
.ws1a1{word-spacing:16.620883px;}
.ws1a5{word-spacing:16.623706px;}
.ws1b4{word-spacing:16.627046px;}
.ws195{word-spacing:16.785101px;}
.ws80{word-spacing:17.747424px;}
.ws164{word-spacing:18.162252px;}
.ws165{word-spacing:18.318564px;}
.ws3b{word-spacing:18.470660px;}
.wsac{word-spacing:22.070052px;}
.wsab{word-spacing:22.106124px;}
.ws126{word-spacing:24.533770px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
.ws1aa{word-spacing:27.490982px;}
.wsdf{word-spacing:272.122762px;}
.ws53{word-spacing:462.543593px;}
.ws50{word-spacing:477.666820px;}
.ws47{word-spacing:807.986785px;}
._d{margin-left:-23.557066px;}
._2a{margin-left:-20.916075px;}
._4{margin-left:-16.276849px;}
._20{margin-left:-8.726410px;}
._e{margin-left:-6.938457px;}
._5{margin-left:-5.397721px;}
._2{margin-left:-3.849538px;}
._8{margin-left:-2.343197px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._3{width:2.343197px;}
._b{width:3.651516px;}
._1b{width:4.663663px;}
._28{width:10.800420px;}
._6{width:12.971789px;}
._12{width:13.995058px;}
._26{width:15.498158px;}
._10{width:16.516109px;}
._f{width:17.749024px;}
._13{width:18.829314px;}
._14{width:20.032393px;}
._19{width:21.048578px;}
._11{width:22.380134px;}
._18{width:23.989531px;}
._7{width:25.946136px;}
._1e{width:27.026138px;}
._2b{width:28.152915px;}
._1a{width:29.476938px;}
._9{width:30.587087px;}
._24{width:31.987513px;}
._a{width:33.355008px;}
._27{width:34.856742px;}
._2c{width:36.690509px;}
._23{width:40.415873px;}
._1c{width:41.491834px;}
._c{width:54.423634px;}
._2d{width:61.868160px;}
._29{width:88.767360px;}
._17{width:96.537594px;}
._22{width:286.559338px;}
._21{width:302.688662px;}
._15{width:747.163633px;}
._1f{width:1618.489555px;}
._1d{width:2023.111944px;}
._25{width:2410.328700px;}
._16{width:2434.238700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(61,100,144);}
.fc5{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs14{font-size:26.784000px;}
.fs15{font-size:29.376000px;}
.fs7{font-size:35.865600px;}
.fs10{font-size:36.000000px;}
.fs11{font-size:38.304000px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs13{font-size:43.200000px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fs12{font-size:48.096000px;}
.fs9{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fs4{font-size:59.775600px;}
.fse{font-size:60.120000px;}
.fsa{font-size:62.286600px;}
.fsc{font-size:83.686200px;}
.fs3{font-size:102.515176px;}
.fs5{font-size:107.596800px;}
.y182{bottom:-683.721954px;}
.y181{bottom:-664.462512px;}
.y180{bottom:-645.293250px;}
.y17f{bottom:-626.033808px;}
.y17e{bottom:-606.864546px;}
.y10b{bottom:-588.693303px;}
.y17d{bottom:-587.605104px;}
.y1bf{bottom:-585.078974px;}
.y1be{bottom:-569.743565px;}
.y10a{bottom:-569.524041px;}
.y17c{bottom:-568.345662px;}
.y1bd{bottom:-554.336011px;}
.y109{bottom:-550.264599px;}
.y17b{bottom:-549.176400px;}
.y1bc{bottom:-539.000602px;}
.y108{bottom:-531.005157px;}
.y17a{bottom:-529.916958px;}
.y1bb{bottom:-523.593048px;}
.y107{bottom:-511.834392px;}
.y179{bottom:-510.747696px;}
.y1ba{bottom:-508.185494px;}
.y1b9{bottom:-492.850085px;}
.y106{bottom:-492.574950px;}
.y178{bottom:-491.488254px;}
.y1b8{bottom:-477.442531px;}
.y105{bottom:-473.405688px;}
.y177{bottom:-472.228812px;}
.y1b7{bottom:-458.505934px;}
.y104{bottom:-454.146246px;}
.y176{bottom:-453.058164px;}
.y1b6{bottom:-443.098380px;}
.y103{bottom:-434.886804px;}
.y175{bottom:-433.798722px;}
.y102{bottom:-415.717542px;}
.y174{bottom:-414.627957px;}
.y1b5{bottom:-413.290884px;}
.y1b4{bottom:-397.955474px;}
.y101{bottom:-396.458100px;}
.y173{bottom:-395.368515px;}
.y1b3{bottom:-382.547921px;}
.y100{bottom:-377.288838px;}
.y172{bottom:-371.697768px;}
.y1b2{bottom:-367.212511px;}
.yff{bottom:-358.029396px;}
.y1b1{bottom:-351.804958px;}
.yfe{bottom:-338.769954px;}
.y1b0{bottom:-336.397404px;}
.y171{bottom:-334.167858px;}
.y1af{bottom:-321.060792px;}
.yfd{bottom:-319.600692px;}
.y170{bottom:-313.917939px;}
.y1ae{bottom:-305.653238px;}
.yfc{bottom:-300.341250px;}
.y16f{bottom:-293.668020px;}
.y1ad{bottom:-290.245685px;}
.yfb{bottom:-281.081808px;}
.y1ac{bottom:-274.910275px;}
.y16e{bottom:-273.418101px;}
.yfa{bottom:-261.912546px;}
.y1ab{bottom:-259.502722px;}
.y16d{bottom:-253.168182px;}
.y1aa{bottom:-244.167312px;}
.yf9{bottom:-242.653104px;}
.y16c{bottom:-232.918263px;}
.y1a9{bottom:-228.759758px;}
.yf8{bottom:-223.483842px;}
.y1a8{bottom:-213.352205px;}
.y16b{bottom:-212.758524px;}
.yf7{bottom:-204.224400px;}
.y1a7{bottom:-198.015593px;}
.y16a{bottom:-192.508605px;}
.yf6{bottom:-184.964958px;}
.y1a6{bottom:-182.608039px;}
.y169{bottom:-172.258686px;}
.y1a5{bottom:-167.272630px;}
.yf5{bottom:-165.795696px;}
.y168{bottom:-152.008767px;}
.y1a4{bottom:-151.865076px;}
.yf4{bottom:-146.536254px;}
.y1a3{bottom:-136.457522px;}
.y167{bottom:-131.758848px;}
.yf3{bottom:-127.366992px;}
.y1a2{bottom:-121.122113px;}
.y166{bottom:-111.508929px;}
.yf2{bottom:-108.106254px;}
.y1a1{bottom:-105.714559px;}
.y20f{bottom:-96.631812px;}
.y165{bottom:-91.529550px;}
.y1a0{bottom:-90.377947px;}
.yf1{bottom:-88.846812px;}
.y20e{bottom:-77.462550px;}
.y19f{bottom:-74.970394px;}
.yf0{bottom:-69.677550px;}
.y19e{bottom:-59.562840px;}
.y164{bottom:-54.809100px;}
.y20d{bottom:-40.653000px;}
.y163{bottom:-37.349550px;}
.yef{bottom:-32.868000px;}
.y19d{bottom:-30.115200px;}
.y20c{bottom:-23.282550px;}
.y162{bottom:-20.069550px;}
.y19c{bottom:-16.218840px;}
.yee{bottom:-15.497550px;}
.y20b{bottom:-0.860841px;}
.y0{bottom:0.000000px;}
.y19b{bottom:1.709160px;}
.y3{bottom:3.425340px;}
.y1c1{bottom:4.517160px;}
.y161{bottom:6.840531px;}
.yed{bottom:6.913323px;}
.y15b{bottom:8.168637px;}
.y2{bottom:14.151273px;}
.y1c0{bottom:14.309160px;}
.y20{bottom:18.594411px;}
.y1c2{bottom:21.293160px;}
.y160{bottom:27.090450px;}
.y15a{bottom:28.328376px;}
.y4c{bottom:31.890000px;}
.y1c3{bottom:42.317261px;}
.y1cc{bottom:61.253160px;}
.y1c4{bottom:63.269045px;}
.y1c5{bottom:84.293146px;}
.y22f{bottom:91.665000px;}
.ybe{bottom:98.304000px;}
.y12e{bottom:99.609000px;}
.y28e{bottom:104.503500px;}
.y1e{bottom:104.646000px;}
.y12f{bottom:105.034500px;}
.y1ce{bottom:105.064500px;}
.y1c6{bottom:105.317246px;}
.y1e9{bottom:105.847500px;}
.y80{bottom:107.641500px;}
.y22e{bottom:110.494500px;}
.y256{bottom:116.899500px;}
.ybd{bottom:117.133500px;}
.y12d{bottom:118.438500px;}
.y4b{bottom:119.209500px;}
.y28d{bottom:121.762500px;}
.y1d{bottom:122.535000px;}
.y1cd{bottom:124.297500px;}
.y15c{bottom:124.368000px;}
.y1e8{bottom:124.677000px;}
.y1c7{bottom:126.341347px;}
.y7f{bottom:126.471000px;}
.y22d{bottom:129.324000px;}
.y255{bottom:134.160000px;}
.y12c{bottom:137.268000px;}
.y4a{bottom:138.039000px;}
.y28c{bottom:139.023000px;}
.ye5{bottom:139.920000px;}
.y1c{bottom:140.422500px;}
.ybc{bottom:140.446500px;}
.y1e7{bottom:143.506500px;}
.y7e{bottom:145.300500px;}
.y198{bottom:146.725500px;}
.y1c8{bottom:147.365448px;}
.y22c{bottom:148.153500px;}
.y254{bottom:151.420500px;}
.y12b{bottom:156.097500px;}
.y28b{bottom:156.283500px;}
.y49{bottom:156.868500px;}
.y1b{bottom:158.310000px;}
.ye4{bottom:158.749500px;}
.ybb{bottom:159.276000px;}
.y1e6{bottom:162.336000px;}
.y7d{bottom:164.130000px;}
.y13f{bottom:164.730300px;}
.y22b{bottom:166.983000px;}
.y1c9{bottom:168.389549px;}
.y253{bottom:168.681000px;}
.y28a{bottom:173.544000px;}
.y12a{bottom:174.927000px;}
.y48{bottom:175.698000px;}
.y1a{bottom:176.199000px;}
.ye3{bottom:177.579000px;}
.yba{bottom:178.105500px;}
.y1e5{bottom:181.165500px;}
.y7c{bottom:182.959500px;}
.y252{bottom:185.941500px;}
.y1ca{bottom:189.341333px;}
.y22a{bottom:190.296000px;}
.y289{bottom:190.804500px;}
.y129{bottom:193.756500px;}
.y19{bottom:194.086500px;}
.y47{bottom:194.527500px;}
.ye2{bottom:196.408500px;}
.yb9{bottom:196.935000px;}
.y1e4{bottom:199.995000px;}
.y7b{bottom:201.789000px;}
.y251{bottom:203.200500px;}
.y288{bottom:208.065000px;}
.y1cb{bottom:210.365434px;}
.y18{bottom:211.974000px;}
.y128{bottom:212.586000px;}
.y46{bottom:213.357000px;}
.ye1{bottom:215.238000px;}
.yb8{bottom:215.764500px;}
.y1e3{bottom:218.824500px;}
.y250{bottom:220.461000px;}
.y7a{bottom:220.618500px;}
.y229{bottom:223.920000px;}
.y287{bottom:225.325500px;}
.y17{bottom:229.863000px;}
.y127{bottom:231.415500px;}
.y45{bottom:232.186500px;}
.ye0{bottom:234.067500px;}
.yb7{bottom:234.594000px;}
.y1e2{bottom:237.654000px;}
.y24f{bottom:237.721500px;}
.y79{bottom:239.448000px;}
.y286{bottom:242.586000px;}
.y228{bottom:242.749500px;}
.y19a{bottom:249.461268px;}
.y126{bottom:250.245000px;}
.y44{bottom:251.016000px;}
.ydf{bottom:252.897000px;}
.y24e{bottom:254.982000px;}
.y1e1{bottom:256.483500px;}
.y199{bottom:257.165160px;}
.yb6{bottom:257.907000px;}
.y285{bottom:259.846500px;}
.y227{bottom:261.579000px;}
.y78{bottom:262.759500px;}
.y125{bottom:269.074500px;}
.y43{bottom:269.845500px;}
.y24d{bottom:272.242500px;}
.y1e0{bottom:275.313000px;}
.yde{bottom:276.210000px;}
.y284{bottom:277.105500px;}
.y226{bottom:280.408500px;}
.y124{bottom:287.904000px;}
.y42{bottom:288.675000px;}
.y24c{bottom:289.503000px;}
.yb5{bottom:291.531000px;}
.y1df{bottom:294.142500px;}
.y283{bottom:294.366000px;}
.y77{bottom:296.383500px;}
.y225{bottom:299.238000px;}
.y16{bottom:300.154500px;}
.y159{bottom:305.078772px;}
.y123{bottom:306.733500px;}
.y41{bottom:307.504500px;}
.ydd{bottom:309.834000px;}
.yb4{bottom:310.360500px;}
.y24b{bottom:311.247000px;}
.y282{bottom:311.626500px;}
.y1de{bottom:312.972000px;}
.y76{bottom:315.213000px;}
.y15{bottom:318.043500px;}
.y224{bottom:318.067500px;}
.y158{bottom:325.328691px;}
.y122{bottom:325.563000px;}
.y40{bottom:326.334000px;}
.yb3{bottom:326.460000px;}
.ydc{bottom:328.663500px;}
.y281{bottom:328.887000px;}
.yb2{bottom:329.190000px;}
.y1dd{bottom:331.801500px;}
.y75{bottom:334.042500px;}
.y15f{bottom:334.530585px;}
.y14{bottom:335.931000px;}
.y223{bottom:336.897000px;}
.y15e{bottom:344.160450px;}
.y121{bottom:344.392500px;}
.y3f{bottom:345.163500px;}
.yb1{bottom:345.289500px;}
.y280{bottom:346.147500px;}
.ydb{bottom:347.493000px;}
.y24a{bottom:348.009000px;}
.yb0{bottom:348.019500px;}
.y1dc{bottom:350.631000px;}
.y74{bottom:352.872000px;}
.y13{bottom:353.818500px;}
.y20a{bottom:354.819600px;}
.y222{bottom:355.726500px;}
.y120{bottom:363.222000px;}
.y27f{bottom:363.408000px;}
.y3e{bottom:363.993000px;}
.yaf{bottom:364.119000px;}
.yda{bottom:366.322500px;}
.yae{bottom:366.847500px;}
.y1db{bottom:369.460500px;}
.y73{bottom:371.701500px;}
.y209{bottom:374.079042px;}
.y249{bottom:374.548500px;}
.y221{bottom:374.556000px;}
.yec{bottom:377.892801px;}
.y27e{bottom:380.668500px;}
.y12{bottom:380.673000px;}
.y11f{bottom:382.051500px;}
.y3d{bottom:382.822500px;}
.yad{bottom:382.948500px;}
.yac{bottom:385.677000px;}
.y197{bottom:386.446500px;}
.y1da{bottom:388.290000px;}
.yd9{bottom:389.634000px;}
.y72{bottom:390.531000px;}
.y248{bottom:392.122500px;}
.y208{bottom:393.338484px;}
.y220{bottom:393.385500px;}
.yeb{bottom:397.152243px;}
.y27d{bottom:397.929000px;}
.y11{bottom:398.562000px;}
.y11e{bottom:400.881000px;}
.yab{bottom:404.506500px;}
.y196{bottom:405.276000px;}
.y3c{bottom:406.135500px;}
.y1d9{bottom:407.119500px;}
.y71{bottom:409.360500px;}
.y21f{bottom:412.215000px;}
.y207{bottom:412.507746px;}
.y27c{bottom:415.188000px;}
.yea{bottom:416.411685px;}
.y10{bottom:416.449500px;}
.y247{bottom:418.663500px;}
.y11d{bottom:419.710500px;}
.yd8{bottom:423.258000px;}
.y195{bottom:424.105500px;}
.yaa{bottom:427.819500px;}
.y70{bottom:428.190000px;}
.y1d8{bottom:430.431000px;}
.y21e{bottom:431.044500px;}
.y206{bottom:431.767188px;}
.y27b{bottom:432.448500px;}
.ye9{bottom:435.582450px;}
.y11c{bottom:438.540000px;}
.yd7{bottom:442.087500px;}
.y194{bottom:442.935000px;}
.yf{bottom:444.798000px;}
.y246{bottom:445.204500px;}
.y1d7{bottom:446.122500px;}
.ya9{bottom:446.649000px;}
.y6f{bottom:447.019500px;}
.y27a{bottom:449.709000px;}
.y21d{bottom:449.874000px;}
.y205{bottom:451.026630px;}
.y11b{bottom:457.369500px;}
.yd6{bottom:460.917000px;}
.ye{bottom:462.685500px;}
.ya8{bottom:465.478500px;}
.y6e{bottom:465.849000px;}
.y193{bottom:466.248000px;}
.y279{bottom:466.969500px;}
.y21c{bottom:468.702000px;}
.y204{bottom:470.195892px;}
.y245{bottom:471.744000px;}
.y11a{bottom:476.199000px;}
.yd5{bottom:479.746500px;}
.y3b{bottom:481.285500px;}
.y278{bottom:484.230000px;}
.ya7{bottom:484.308000px;}
.y6d{bottom:484.678500px;}
.y21b{bottom:487.531500px;}
.y244{bottom:489.319500px;}
.y203{bottom:489.455334px;}
.yd{bottom:489.540000px;}
.ye8{bottom:490.302585px;}
.y119{bottom:495.027000px;}
.yd4{bottom:498.576000px;}
.y192{bottom:499.872000px;}
.ye7{bottom:499.932450px;}
.y3a{bottom:500.742000px;}
.y277{bottom:501.490500px;}
.y6c{bottom:503.508000px;}
.y21a{bottom:506.361000px;}
.y243{bottom:506.893500px;}
.yc{bottom:507.429000px;}
.ya6{bottom:507.621000px;}
.y202{bottom:508.626099px;}
.y118{bottom:513.856500px;}
.yd3{bottom:517.405500px;}
.y191{bottom:518.701500px;}
.y276{bottom:518.751000px;}
.y6b{bottom:522.337500px;}
.y242{bottom:524.467500px;}
.y219{bottom:525.190500px;}
.yb{bottom:525.316500px;}
.y201{bottom:527.885541px;}
.ya4{bottom:530.904000px;}
.y117{bottom:532.686000px;}
.y275{bottom:536.011500px;}
.yd2{bottom:536.235000px;}
.y190{bottom:537.531000px;}
.y39{bottom:538.132500px;}
.y6a{bottom:541.167000px;}
.y241{bottom:542.041500px;}
.ya{bottom:543.204000px;}
.y218{bottom:544.020000px;}
.ya3{bottom:544.186500px;}
.ya5{bottom:547.093500px;}
.y200{bottom:547.144983px;}
.ya1{bottom:547.296000px;}
.y116{bottom:551.515500px;}
.y274{bottom:553.272000px;}
.yd1{bottom:555.064500px;}
.y18f{bottom:556.360500px;}
.y38{bottom:557.589000px;}
.y240{bottom:559.615500px;}
.y69{bottom:559.996500px;}
.y9{bottom:561.093000px;}
.y217{bottom:562.849500px;}
.ya2{bottom:563.434500px;}
.y1ff{bottom:566.315748px;}
.y115{bottom:570.345000px;}
.y273{bottom:570.531000px;}
.yd0{bottom:573.894000px;}
.y18e{bottom:575.190000px;}
.y37{bottom:577.045500px;}
.y23f{bottom:577.189500px;}
.y68{bottom:578.826000px;}
.y8{bottom:578.980500px;}
.y216{bottom:581.679000px;}
.y1fe{bottom:585.575190px;}
.y272{bottom:587.791500px;}
.y114{bottom:589.174500px;}
.y9f{bottom:591.547500px;}
.ycf{bottom:592.723500px;}
.y18d{bottom:594.019500px;}
.y23e{bottom:594.763500px;}
.y36{bottom:596.503500px;}
.y7{bottom:596.868000px;}
.y67{bottom:597.655500px;}
.y157{bottom:599.558556px;}
.y215{bottom:600.508500px;}
.y1fd{bottom:604.744452px;}
.y9e{bottom:604.831500px;}
.y271{bottom:605.052000px;}
.ya0{bottom:607.737000px;}
.y9c{bottom:607.939500px;}
.y113{bottom:608.004000px;}
.yce{bottom:611.553000px;}
.y18c{bottom:612.849000px;}
.y6{bottom:614.757000px;}
.y35{bottom:615.960000px;}
.y66{bottom:616.485000px;}
.y156{bottom:618.817998px;}
.y214{bottom:619.338000px;}
.y23d{bottom:621.304500px;}
.y270{bottom:622.312500px;}
.y1fc{bottom:624.003894px;}
.y9d{bottom:624.078000px;}
.y112{bottom:626.833500px;}
.ycd{bottom:630.382500px;}
.y18b{bottom:631.678500px;}
.y5{bottom:632.644500px;}
.y65{bottom:635.314500px;}
.y34{bottom:635.418000px;}
.y155{bottom:638.077440px;}
.y213{bottom:638.167500px;}
.y23c{bottom:638.878500px;}
.y26f{bottom:639.573000px;}
.y1fb{bottom:643.263336px;}
.y110{bottom:645.663000px;}
.ycc{bottom:649.212000px;}
.y18a{bottom:650.506500px;}
.y4{bottom:650.532000px;}
.y111{bottom:651.088500px;}
.y64{bottom:654.144000px;}
.y9b{bottom:654.843000px;}
.y33{bottom:654.874500px;}
.y23b{bottom:656.452500px;}
.y26e{bottom:656.833500px;}
.y212{bottom:656.997000px;}
.y154{bottom:657.246702px;}
.y1fa{bottom:662.434101px;}
.y10f{bottom:664.492500px;}
.ycb{bottom:668.041500px;}
.y1{bottom:668.420964px;}
.y189{bottom:669.336000px;}
.y63{bottom:672.973500px;}
.y9a{bottom:673.672500px;}
.y23a{bottom:674.026500px;}
.y26d{bottom:674.094000px;}
.y32{bottom:674.331000px;}
.y153{bottom:676.506144px;}
.y1f9{bottom:681.693543px;}
.y10e{bottom:683.322000px;}
.yca{bottom:686.871000px;}
.y188{bottom:688.165500px;}
.y99{bottom:689.772000px;}
.y211{bottom:689.839500px;}
.y1d6{bottom:691.354500px;}
.y239{bottom:691.600500px;}
.y62{bottom:691.803000px;}
.y98{bottom:692.502000px;}
.y31{bottom:693.789000px;}
.y152{bottom:695.675406px;}
.y1f8{bottom:700.862805px;}
.yc9{bottom:705.700500px;}
.y187{bottom:706.995000px;}
.y97{bottom:708.601500px;}
.y26c{bottom:708.613500px;}
.y210{bottom:709.071000px;}
.y1d5{bottom:710.184000px;}
.y96{bottom:711.331500px;}
.y30{bottom:713.245500px;}
.y151{bottom:714.934848px;}
.y61{bottom:715.114500px;}
.y10d{bottom:716.887500px;}
.y238{bottom:718.141500px;}
.y1f7{bottom:720.122247px;}
.yc8{bottom:724.530000px;}
.y26b{bottom:725.874000px;}
.y1d4{bottom:729.013500px;}
.y186{bottom:730.308000px;}
.y1ea{bottom:731.500500px;}
.y2f{bottom:732.702000px;}
.y150{bottom:734.194290px;}
.y95{bottom:734.644500px;}
.y10c{bottom:736.120500px;}
.y237{bottom:736.186500px;}
.y1f6{bottom:739.381689px;}
.y26a{bottom:743.134500px;}
.yc7{bottom:743.359500px;}
.y1d3{bottom:747.843000px;}
.y60{bottom:748.738500px;}
.y2e{bottom:752.160000px;}
.y14f{bottom:753.365055px;}
.y94{bottom:753.474000px;}
.y236{bottom:754.231500px;}
.ye6{bottom:758.550000px;}
.y1f5{bottom:758.550951px;}
.y269{bottom:760.395000px;}
.yc6{bottom:762.189000px;}
.y185{bottom:763.873500px;}
.y1d2{bottom:766.671000px;}
.y5f{bottom:767.568000px;}
.y2d{bottom:771.616500px;}
.y235{bottom:772.276500px;}
.y93{bottom:772.303500px;}
.y14e{bottom:772.624497px;}
.y268{bottom:777.655500px;}
.y1f4{bottom:777.810393px;}
.yc5{bottom:781.018500px;}
.y184{bottom:783.106500px;}
.y13e{bottom:783.708000px;}
.y1d1{bottom:785.500500px;}
.y92{bottom:786.295500px;}
.y5e{bottom:786.397500px;}
.y234{bottom:790.320000px;}
.y2c{bottom:791.074500px;}
.y91{bottom:791.133000px;}
.y14d{bottom:791.793759px;}
.y267{bottom:794.916000px;}
.y1f3{bottom:797.069835px;}
.yc4{bottom:799.848000px;}
.y183{bottom:802.339500px;}
.y13d{bottom:802.537500px;}
.y1d0{bottom:804.330000px;}
.y5d{bottom:805.227000px;}
.y233{bottom:808.365000px;}
.y90{bottom:809.962500px;}
.y14c{bottom:811.053201px;}
.y266{bottom:812.176500px;}
.y1f2{bottom:816.239097px;}
.yc3{bottom:818.677500px;}
.y13c{bottom:821.367000px;}
.y1cf{bottom:823.159500px;}
.y5c{bottom:824.056500px;}
.y15d{bottom:824.769000px;}
.y232{bottom:826.410000px;}
.y8f{bottom:828.792000px;}
.y265{bottom:829.437000px;}
.y2b{bottom:829.659000px;}
.y14b{bottom:830.312643px;}
.y1f1{bottom:835.498539px;}
.y13b{bottom:840.196500px;}
.yc2{bottom:841.989000px;}
.y5b{bottom:842.886000px;}
.y231{bottom:844.455000px;}
.y264{bottom:846.697500px;}
.y14a{bottom:849.481905px;}
.y2a{bottom:850.138500px;}
.y8e{bottom:852.103500px;}
.y1f0{bottom:854.667801px;}
.y13a{bottom:859.026000px;}
.yc1{bottom:860.818500px;}
.y5a{bottom:861.715500px;}
.y29{bottom:861.939000px;}
.y230{bottom:862.500000px;}
.y263{bottom:863.956500px;}
.y149{bottom:873.241329px;}
.y1ef{bottom:873.927243px;}
.y8d{bottom:874.047000px;}
.y139{bottom:877.855500px;}
.y8c{bottom:879.474000px;}
.yc0{bottom:879.648000px;}
.y59{bottom:880.545000px;}
.y262{bottom:881.217000px;}
.y28{bottom:882.417000px;}
.y1ee{bottom:893.186685px;}
.y8b{bottom:893.581500px;}
.y138{bottom:896.685000px;}
.y148{bottom:896.912076px;}
.y8a{bottom:898.417500px;}
.ybf{bottom:898.477500px;}
.y27{bottom:898.557000px;}
.y58{bottom:903.858000px;}
.y1ed{bottom:912.357450px;}
.y137{bottom:915.514500px;}
.y261{bottom:915.738000px;}
.y89{bottom:917.307000px;}
.y57{bottom:922.687500px;}
.y260{bottom:932.998500px;}
.y88{bottom:933.406500px;}
.y147{bottom:934.171446px;}
.y136{bottom:934.344000px;}
.y87{bottom:936.136500px;}
.y56{bottom:941.517000px;}
.y26{bottom:943.233000px;}
.y25f{bottom:950.259000px;}
.y135{bottom:953.173500px;}
.y146{bottom:953.430888px;}
.y86{bottom:954.966000px;}
.y55{bottom:964.828500px;}
.y1ec{bottom:967.077585px;}
.y25e{bottom:967.519500px;}
.y134{bottom:972.003000px;}
.y145{bottom:972.600501px;}
.y85{bottom:973.795500px;}
.y1eb{bottom:976.707450px;}
.y25{bottom:979.996500px;}
.y54{bottom:983.658000px;}
.y25d{bottom:984.780000px;}
.y133{bottom:990.832500px;}
.y144{bottom:991.859943px;}
.y84{bottom:992.625000px;}
.y25c{bottom:1002.040500px;}
.y53{bottom:1006.971000px;}
.y24{bottom:1008.240000px;}
.y132{bottom:1009.662000px;}
.y143{bottom:1011.119385px;}
.y83{bottom:1011.454500px;}
.y25b{bottom:1019.299500px;}
.y52{bottom:1025.800500px;}
.y82{bottom:1030.284000px;}
.y142{bottom:1030.290150px;}
.y131{bottom:1032.973500px;}
.y23{bottom:1036.485000px;}
.y25a{bottom:1036.560000px;}
.y51{bottom:1044.630000px;}
.y81{bottom:1049.113500px;}
.y130{bottom:1053.148500px;}
.y259{bottom:1053.820500px;}
.y22{bottom:1064.728500px;}
.y50{bottom:1067.943000px;}
.y258{bottom:1071.081000px;}
.y141{bottom:1085.010285px;}
.y4f{bottom:1086.772500px;}
.y257{bottom:1088.341500px;}
.y21{bottom:1092.972000px;}
.y140{bottom:1094.640150px;}
.y4e{bottom:1105.602000px;}
.y1f{bottom:1136.460000px;}
.y4d{bottom:1168.366500px;}
.h2a{height:19.499484px;}
.h2b{height:21.386531px;}
.h2{height:25.508090px;}
.h1f{height:29.170493px;}
.hb{height:32.565965px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.h29{height:35.273531px;}
.h26{height:35.629453px;}
.h5{height:37.993262px;}
.hd{height:38.734848px;}
.h28{height:40.183594px;}
.h12{height:41.250077px;}
.h1a{height:42.500452px;}
.hf{height:43.038432px;}
.h22{height:43.269961px;}
.hc{height:43.421105px;}
.h8{height:43.815515px;}
.h2d{height:44.091914px;}
.h1c{height:44.536816px;}
.h27{height:44.737734px;}
.h20{height:46.445641px;}
.h11{height:46.714950px;}
.he{height:48.848947px;}
.h1e{height:50.229492px;}
.h6{height:50.931027px;}
.h10{height:54.276245px;}
.ha{height:54.411312px;}
.h19{height:55.086245px;}
.h1d{height:55.922168px;}
.h16{height:57.199200px;}
.h13{height:57.205200px;}
.h14{height:62.946077px;}
.h24{height:62.952077px;}
.h18{height:65.024177px;}
.h7{height:69.505289px;}
.h17{height:73.626245px;}
.h9{height:77.469696px;}
.h15{height:146.421024px;}
.h25{height:219.972000px;}
.h23{height:295.777500px;}
.h2c{height:332.355000px;}
.h1b{height:361.996500px;}
.h21{height:595.337700px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:211.537947px;}
.w7{width:283.542000px;}
.w6{width:343.707000px;}
.w5{width:353.797500px;}
.w4{width:397.312500px;}
.w8{width:574.527000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x66{left:-316.194000px;}
.x60{left:-310.518000px;}
.x80{left:-202.045500px;}
.x52{left:-188.172000px;}
.x6c{left:-153.060000px;}
.x68{left:-120.624000px;}
.x61{left:-114.948000px;}
.x69{left:-88.764000px;}
.x62{left:-83.087748px;}
.x82{left:-6.475394px;}
.x0{left:0.000000px;}
.x6d{left:3.396000px;}
.x53{left:7.398000px;}
.x72{left:11.748000px;}
.x71{left:15.779669px;}
.x70{left:19.812000px;}
.x81{left:25.384500px;}
.x6e{left:28.020000px;}
.x2{left:29.274117px;}
.x54{left:39.258000px;}
.x1{left:53.574073px;}
.x3{left:57.111683px;}
.x6f{left:81.084000px;}
.x89{left:85.848000px;}
.x8e{left:112.746000px;}
.x67{left:168.636621px;}
.x64{left:173.862126px;}
.x7e{left:247.348500px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x27{left:255.313500px;}
.x5{left:269.914500px;}
.x5b{left:279.354000px;}
.x9{left:281.479500px;}
.xc{left:284.184000px;}
.x5c{left:291.960000px;}
.x47{left:299.958000px;}
.x2a{left:303.657000px;}
.x55{left:306.598500px;}
.x7{left:308.148000px;}
.x2b{left:311.455500px;}
.x77{left:312.816000px;}
.x8{left:324.588000px;}
.x78{left:327.760500px;}
.x63{left:337.932612px;}
.x58{left:344.616000px;}
.x65{left:347.111433px;}
.x7f{left:352.650000px;}
.x44{left:354.649500px;}
.x59{left:360.640500px;}
.x45{left:362.416500px;}
.x1f{left:365.784000px;}
.x20{left:373.585500px;}
.x48{left:374.976000px;}
.x2c{left:386.439000px;}
.x19{left:388.509000px;}
.x3c{left:390.466500px;}
.x1a{left:393.013500px;}
.x3d{left:394.519500px;}
.x56{left:400.455000px;}
.x46{left:406.714500px;}
.x57{left:409.555500px;}
.x5a{left:416.323500px;}
.x87{left:417.768000px;}
.x88{left:427.966500px;}
.x3e{left:438.889500px;}
.xd{left:444.024000px;}
.xe{left:451.495500px;}
.x3f{left:454.335000px;}
.x2f{left:457.818000px;}
.x2e{left:460.531500px;}
.x32{left:461.607000px;}
.x2d{left:463.837500px;}
.x31{left:467.626500px;}
.x85{left:472.648500px;}
.x30{left:479.482500px;}
.x25{left:482.946000px;}
.x6a{left:486.349500px;}
.x6b{left:495.580500px;}
.x86{left:498.781500px;}
.x5f{left:502.063500px;}
.x23{left:503.277000px;}
.x5d{left:508.893000px;}
.x73{left:516.268500px;}
.x5e{left:521.497500px;}
.x74{left:523.741500px;}
.x26{left:526.894500px;}
.x49{left:559.072500px;}
.x24{left:560.218500px;}
.x4a{left:574.017000px;}
.x83{left:577.352738px;}
.x28{left:591.616500px;}
.x29{left:600.283500px;}
.x15{left:603.043500px;}
.x33{left:610.596000px;}
.x34{left:614.649000px;}
.x16{left:617.986500px;}
.x17{left:625.339500px;}
.x1b{left:627.304500px;}
.x1c{left:631.810500px;}
.x21{left:635.317500px;}
.x18{left:640.284000px;}
.x22{left:643.120500px;}
.x1d{left:648.976500px;}
.x35{left:660.919500px;}
.x1e{left:664.848000px;}
.x36{left:669.334500px;}
.x79{left:690.472500px;}
.x8a{left:696.822000px;}
.x7a{left:705.415500px;}
.x37{left:711.361500px;}
.x4e{left:713.907000px;}
.x38{left:719.776500px;}
.x4f{left:721.380000px;}
.xa{left:727.470000px;}
.x50{left:728.829000px;}
.x7c{left:730.084500px;}
.xb{left:734.941500px;}
.x40{left:740.659500px;}
.x51{left:743.773500px;}
.x7d{left:745.029000px;}
.x41{left:749.281500px;}
.xf{left:757.374000px;}
.x8d{left:776.986500px;}
.x39{left:781.561500px;}
.x8f{left:783.585000px;}
.x10{left:786.006000px;}
.x7b{left:789.453000px;}
.x3a{left:791.404500px;}
.x42{left:800.379000px;}
.x11{left:803.139000px;}
.x43{left:804.430500px;}
.x12{left:810.610500px;}
.x4b{left:813.129000px;}
.x75{left:815.481000px;}
.x8c{left:816.966000px;}
.x13{left:817.986000px;}
.x84{left:819.093000px;}
.x4d{left:825.169500px;}
.x4c{left:828.072000px;}
.x76{left:830.425500px;}
.x14{left:832.929000px;}
.x3b{left:834.861000px;}
.x8b{left:837.228000px;}
@media print{
.v9{vertical-align:-74.944000pt;}
.v2{vertical-align:-15.429333pt;}
.v6{vertical-align:-10.938667pt;}
.v3{vertical-align:-9.701333pt;}
.v5{vertical-align:-4.090667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:9.701333pt;}
.v7{vertical-align:10.938667pt;}
.vb{vertical-align:13.435392pt;}
.va{vertical-align:17.200000pt;}
.v1{vertical-align:19.290667pt;}
.v8{vertical-align:119.669333pt;}
.ls8b{letter-spacing:-0.235136pt;}
.lsae{letter-spacing:-0.219104pt;}
.lsad{letter-spacing:-0.213760pt;}
.ls69{letter-spacing:-0.208416pt;}
.ls6a{letter-spacing:-0.197728pt;}
.lsaf{letter-spacing:-0.192384pt;}
.ls50{letter-spacing:-0.144288pt;}
.ls5e{letter-spacing:-0.128256pt;}
.ls8c{letter-spacing:-0.122912pt;}
.ls59{letter-spacing:-0.117568pt;}
.ls51{letter-spacing:-0.112224pt;}
.ls8a{letter-spacing:-0.106880pt;}
.ls54{letter-spacing:-0.101536pt;}
.ls49{letter-spacing:-0.096192pt;}
.ls95{letter-spacing:-0.094054pt;}
.ls5c{letter-spacing:-0.090848pt;}
.ls92{letter-spacing:-0.089779pt;}
.ls5b{letter-spacing:-0.085504pt;}
.ls93{letter-spacing:-0.081229pt;}
.ls47{letter-spacing:-0.080864pt;}
.ls57{letter-spacing:-0.080160pt;}
.ls94{letter-spacing:-0.076954pt;}
.lsac{letter-spacing:-0.076608pt;}
.ls48{letter-spacing:-0.074816pt;}
.ls9d{letter-spacing:-0.072678pt;}
.ls5f{letter-spacing:-0.069472pt;}
.ls8f{letter-spacing:-0.064691pt;}
.ls52{letter-spacing:-0.064128pt;}
.ls9e{letter-spacing:-0.059853pt;}
.ls4e{letter-spacing:-0.058784pt;}
.ls9f{letter-spacing:-0.055578pt;}
.ls55{letter-spacing:-0.053440pt;}
.ls96{letter-spacing:-0.051302pt;}
.ls60{letter-spacing:-0.048096pt;}
.lsa2{letter-spacing:-0.047027pt;}
.ls4d{letter-spacing:-0.042752pt;}
.lsa1{letter-spacing:-0.038477pt;}
.ls66{letter-spacing:-0.037408pt;}
.ls9a{letter-spacing:-0.034202pt;}
.ls87{letter-spacing:-0.033600pt;}
.ls58{letter-spacing:-0.032064pt;}
.ls9c{letter-spacing:-0.029926pt;}
.ls89{letter-spacing:-0.028800pt;}
.ls5a{letter-spacing:-0.026720pt;}
.ls97{letter-spacing:-0.025651pt;}
.ls90{letter-spacing:-0.023040pt;}
.ls5d{letter-spacing:-0.021376pt;}
.ls4a{letter-spacing:-0.016032pt;}
.ls88{letter-spacing:-0.014400pt;}
.ls99{letter-spacing:-0.012826pt;}
.ls4b{letter-spacing:-0.010688pt;}
.ls9b{letter-spacing:-0.008550pt;}
.ls91{letter-spacing:-0.007680pt;}
.ls61{letter-spacing:-0.005344pt;}
.ls4c{letter-spacing:-0.004800pt;}
.lsb{letter-spacing:0.000000pt;}
.lsb5{letter-spacing:0.000008pt;}
.ls35{letter-spacing:0.000015pt;}
.ls34{letter-spacing:0.000518pt;}
.ls74{letter-spacing:0.000544pt;}
.ls73{letter-spacing:0.002825pt;}
.ls4{letter-spacing:0.003733pt;}
.ls72{letter-spacing:0.004267pt;}
.ls7b{letter-spacing:0.004275pt;}
.lsab{letter-spacing:0.004800pt;}
.ls46{letter-spacing:0.005344pt;}
.ls80{letter-spacing:0.008550pt;}
.ls43{letter-spacing:0.010688pt;}
.ls6b{letter-spacing:0.014400pt;}
.ls7a{letter-spacing:0.015360pt;}
.ls40{letter-spacing:0.016032pt;}
.ls7e{letter-spacing:0.017101pt;}
.ls78{letter-spacing:0.020429pt;}
.ls85{letter-spacing:0.020890pt;}
.ls62{letter-spacing:0.021376pt;}
.ls76{letter-spacing:0.023834pt;}
.ls3d{letter-spacing:0.025536pt;}
.ls83{letter-spacing:0.025651pt;}
.ls45{letter-spacing:0.026720pt;}
.ls41{letter-spacing:0.028800pt;}
.ls3b{letter-spacing:0.029792pt;}
.ls82{letter-spacing:0.029926pt;}
.ls71{letter-spacing:0.032064pt;}
.lsa7{letter-spacing:0.034048pt;}
.ls3f{letter-spacing:0.037408pt;}
.lsa5{letter-spacing:0.038304pt;}
.ls81{letter-spacing:0.038477pt;}
.ls86{letter-spacing:0.041779pt;}
.ls68{letter-spacing:0.042752pt;}
.ls7c{letter-spacing:0.047027pt;}
.ls42{letter-spacing:0.048096pt;}
.lsa3{letter-spacing:0.051302pt;}
.lsa9{letter-spacing:0.053440pt;}
.lsaa{letter-spacing:0.058784pt;}
.ls44{letter-spacing:0.064128pt;}
.ls7f{letter-spacing:0.068403pt;}
.ls63{letter-spacing:0.069472pt;}
.ls84{letter-spacing:0.071424pt;}
.ls6f{letter-spacing:0.074816pt;}
.ls8d{letter-spacing:0.080160pt;}
.ls70{letter-spacing:0.085504pt;}
.ls64{letter-spacing:0.090848pt;}
.ls6c{letter-spacing:0.110400pt;}
.ls79{letter-spacing:0.119168pt;}
.ls65{letter-spacing:0.122912pt;}
.ls67{letter-spacing:0.128256pt;}
.ls77{letter-spacing:0.129382pt;}
.ls6d{letter-spacing:0.129600pt;}
.lsc{letter-spacing:0.132237pt;}
.ls3e{letter-spacing:0.148960pt;}
.lsa8{letter-spacing:0.157472pt;}
.ls53{letter-spacing:0.160320pt;}
.ls3c{letter-spacing:0.161728pt;}
.lsa6{letter-spacing:0.170240pt;}
.ls56{letter-spacing:0.342016pt;}
.ls1f{letter-spacing:0.421044pt;}
.ls25{letter-spacing:0.482502pt;}
.ls15{letter-spacing:0.487835pt;}
.ls14{letter-spacing:0.502349pt;}
.ls24{letter-spacing:0.507682pt;}
.ls2d{letter-spacing:0.596214pt;}
.ls33{letter-spacing:0.601548pt;}
.ls38{letter-spacing:0.659230pt;}
.ls2b{letter-spacing:0.664563pt;}
.ls2f{letter-spacing:0.667185pt;}
.ls26{letter-spacing:0.768696pt;}
.ls17{letter-spacing:0.774029pt;}
.ls1d{letter-spacing:1.111756pt;}
.lsa{letter-spacing:1.133683pt;}
.ls27{letter-spacing:1.302029pt;}
.ls28{letter-spacing:1.307362pt;}
.ls0{letter-spacing:1.654338pt;}
.ls1b{letter-spacing:1.696015pt;}
.ls36{letter-spacing:1.701348pt;}
.ls31{letter-spacing:1.790881pt;}
.ls2a{letter-spacing:1.796214pt;}
.ls2e{letter-spacing:1.832429pt;}
.ls8e{letter-spacing:1.998656pt;}
.ls16{letter-spacing:2.257067pt;}
.ls22{letter-spacing:2.365762pt;}
.ls37{letter-spacing:2.657015pt;}
.ls3{letter-spacing:2.657067pt;}
.ls1e{letter-spacing:2.659543pt;}
.ls30{letter-spacing:3.318349pt;}
.lsf{letter-spacing:3.320877pt;}
.ls29{letter-spacing:3.323682pt;}
.ls11{letter-spacing:3.346422pt;}
.ls4f{letter-spacing:3.601856pt;}
.lsa0{letter-spacing:3.903258pt;}
.ls10{letter-spacing:3.958029pt;}
.ls98{letter-spacing:6.977126pt;}
.ls1{letter-spacing:9.298933pt;}
.ls13{letter-spacing:9.523658pt;}
.ls9{letter-spacing:10.626533pt;}
.lsb4{letter-spacing:11.865617pt;}
.lsb1{letter-spacing:11.943870pt;}
.lsb6{letter-spacing:11.945836pt;}
.lsb2{letter-spacing:11.954133pt;}
.lsba{letter-spacing:11.954314pt;}
.lsb3{letter-spacing:11.959467pt;}
.lsb0{letter-spacing:12.050198pt;}
.lsb9{letter-spacing:12.060897pt;}
.ls3a{letter-spacing:12.167655pt;}
.ls32{letter-spacing:12.696429pt;}
.ls2c{letter-spacing:12.701762pt;}
.lsb8{letter-spacing:13.179441pt;}
.ls5{letter-spacing:13.283733pt;}
.ls2{letter-spacing:13.284237pt;}
.lsb7{letter-spacing:13.393820pt;}
.ls75{letter-spacing:13.442868pt;}
.ls23{letter-spacing:13.651543pt;}
.ls19{letter-spacing:13.946933pt;}
.ls21{letter-spacing:15.422400pt;}
.lse{letter-spacing:15.533762pt;}
.ls39{letter-spacing:15.751827pt;}
.ls1a{letter-spacing:15.939543pt;}
.ls20{letter-spacing:15.942349pt;}
.ls12{letter-spacing:16.061762pt;}
.lsd{letter-spacing:18.078210pt;}
.lsa4{letter-spacing:19.393861pt;}
.ls1c{letter-spacing:29.747543pt;}
.ls18{letter-spacing:29.889015pt;}
.ls7{letter-spacing:55.787733pt;}
.ls8{letter-spacing:57.174803pt;}
.ls6e{letter-spacing:58.425952pt;}
.ls7d{letter-spacing:59.027686pt;}
.ls6{letter-spacing:64.321067pt;}
.ws6e{word-spacing:-53.440000pt;}
.wsb3{word-spacing:-32.000000pt;}
.wsd5{word-spacing:-13.520320pt;}
.wsb4{word-spacing:-13.360000pt;}
.ws48{word-spacing:-13.283467pt;}
.wsd4{word-spacing:-12.000000pt;}
.wsd7{word-spacing:-11.955200pt;}
.ws14c{word-spacing:-10.810240pt;}
.ws6d{word-spacing:-10.801728pt;}
.ws28{word-spacing:-10.626800pt;}
.ws10{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.wsde{word-spacing:-8.641382pt;}
.ws6f{word-spacing:-8.000000pt;}
.ws4f{word-spacing:-3.766092pt;}
.ws4d{word-spacing:-3.764087pt;}
.ws52{word-spacing:-3.760758pt;}
.ws16d{word-spacing:-2.784224pt;}
.ws150{word-spacing:-2.603559pt;}
.ws191{word-spacing:-2.582323pt;}
.ws9c{word-spacing:-2.506336pt;}
.ws16f{word-spacing:-2.468928pt;}
.ws68{word-spacing:-2.444158pt;}
.ws170{word-spacing:-2.388768pt;}
.ws16c{word-spacing:-2.378080pt;}
.wscb{word-spacing:-2.223104pt;}
.ws151{word-spacing:-2.178489pt;}
.wsca{word-spacing:-2.142944pt;}
.ws3c{word-spacing:-2.125355pt;}
.wsc8{word-spacing:-2.073472pt;}
.ws79{word-spacing:-2.019087pt;}
.wsc9{word-spacing:-1.950560pt;}
.ws60{word-spacing:-1.912819pt;}
.ws1c{word-spacing:-1.859685pt;}
.ws167{word-spacing:-1.832992pt;}
.wsb9{word-spacing:-1.822304pt;}
.ws1f{word-spacing:-1.806551pt;}
.ws168{word-spacing:-1.747488pt;}
.ws1{word-spacing:-1.696326pt;}
.ws13c{word-spacing:-1.688704pt;}
.ws13d{word-spacing:-1.680154pt;}
.ws143{word-spacing:-1.647150pt;}
.wseb{word-spacing:-1.592512pt;}
.wsbc{word-spacing:-1.544416pt;}
.ws5f{word-spacing:-1.540882pt;}
.ws176{word-spacing:-1.512352pt;}
.ws175{word-spacing:-1.490976pt;}
.ws3d{word-spacing:-1.487748pt;}
.ws190{word-spacing:-1.482445pt;}
.wsea{word-spacing:-1.469600pt;}
.ws105{word-spacing:-1.421504pt;}
.ws196{word-spacing:-1.338982pt;}
.ws6b{word-spacing:-1.328347pt;}
.ws8e{word-spacing:-1.229120pt;}
.ws12e{word-spacing:-1.222707pt;}
.ws141{word-spacing:-1.222079pt;}
.ws12c{word-spacing:-1.218432pt;}
.wsb6{word-spacing:-1.207744pt;}
.wsd0{word-spacing:-1.197056pt;}
.wsfd{word-spacing:-1.175680pt;}
.ws0{word-spacing:-1.175671pt;}
.ws91{word-spacing:-1.159648pt;}
.ws69{word-spacing:-1.115811pt;}
.ws171{word-spacing:-1.079488pt;}
.ws77{word-spacing:-1.062677pt;}
.ws6{word-spacing:-1.041421pt;}
.ws152{word-spacing:-1.009543pt;}
.ws40{word-spacing:-0.956410pt;}
.ws117{word-spacing:-0.936269pt;}
.ws12d{word-spacing:-0.931994pt;}
.ws161{word-spacing:-0.929856pt;}
.ws8{word-spacing:-0.929840pt;}
.ws118{word-spacing:-0.906342pt;}
.wscc{word-spacing:-0.903136pt;}
.wsaa{word-spacing:-0.801600pt;}
.ws1a3{word-spacing:-0.717312pt;}
.ws32{word-spacing:-0.690740pt;}
.ws70{word-spacing:-0.573850pt;}
.ws185{word-spacing:-0.531339pt;}
.wsfe{word-spacing:-0.529056pt;}
.ws5c{word-spacing:-0.353966pt;}
.ws71{word-spacing:-0.334746pt;}
.wsce{word-spacing:-0.331328pt;}
.wsf7{word-spacing:-0.325984pt;}
.ws44{word-spacing:-0.318803pt;}
.ws17a{word-spacing:-0.293920pt;}
.ws21{word-spacing:-0.265669pt;}
.ws22{word-spacing:-0.212535pt;}
.ws18e{word-spacing:-0.191283pt;}
.ws26{word-spacing:-0.159402pt;}
.wse1{word-spacing:-0.144000pt;}
.ws13{word-spacing:-0.143462pt;}
.wse2{word-spacing:-0.139200pt;}
.wse6{word-spacing:-0.129600pt;}
.ws11e{word-spacing:-0.128256pt;}
.wse0{word-spacing:-0.124800pt;}
.ws114{word-spacing:-0.115430pt;}
.ws153{word-spacing:-0.110656pt;}
.ws7b{word-spacing:-0.106400pt;}
.ws2f{word-spacing:-0.106268pt;}
.ws115{word-spacing:-0.098330pt;}
.ws14{word-spacing:-0.095642pt;}
.ws10a{word-spacing:-0.085120pt;}
.ws31{word-spacing:-0.053134pt;}
.wsbe{word-spacing:-0.048096pt;}
.wsb5{word-spacing:-0.047821pt;}
.ws29{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.ws12b{word-spacing:-0.004275pt;}
.ws54{word-spacing:-0.001770pt;}
.ws3{word-spacing:0.000000pt;}
.wsdb{word-spacing:0.001067pt;}
.ws56{word-spacing:0.003564pt;}
.wsbf{word-spacing:0.010688pt;}
.ws140{word-spacing:0.012826pt;}
.ws135{word-spacing:0.021376pt;}
.ws92{word-spacing:0.032064pt;}
.ws16b{word-spacing:0.037408pt;}
.wsd3{word-spacing:0.042752pt;}
.ws134{word-spacing:0.047027pt;}
.ws16{word-spacing:0.047821pt;}
.ws1d{word-spacing:0.053134pt;}
.ws8f{word-spacing:0.058784pt;}
.ws81{word-spacing:0.064128pt;}
.ws9e{word-spacing:0.069472pt;}
.ws122{word-spacing:0.072678pt;}
.ws102{word-spacing:0.080160pt;}
.ws4b{word-spacing:0.084940pt;}
.ws179{word-spacing:0.090848pt;}
.ws19{word-spacing:0.095642pt;}
.wscd{word-spacing:0.096192pt;}
.ws39{word-spacing:0.106268pt;}
.wsa7{word-spacing:0.106880pt;}
.ws121{word-spacing:0.111155pt;}
.ws10d{word-spacing:0.111360pt;}
.ws10e{word-spacing:0.115200pt;}
.ws103{word-spacing:0.122912pt;}
.ws84{word-spacing:0.124800pt;}
.ws10c{word-spacing:0.126720pt;}
.ws83{word-spacing:0.129600pt;}
.ws9d{word-spacing:0.133600pt;}
.ws110{word-spacing:0.134400pt;}
.ws18{word-spacing:0.143462pt;}
.ws180{word-spacing:0.148800pt;}
.ws10f{word-spacing:0.149760pt;}
.ws82{word-spacing:0.158400pt;}
.ws33{word-spacing:0.159402pt;}
.ws90{word-spacing:0.160320pt;}
.ws85{word-spacing:0.163200pt;}
.wsf0{word-spacing:0.165664pt;}
.ws181{word-spacing:0.168000pt;}
.wsbd{word-spacing:0.176352pt;}
.wsd6{word-spacing:0.191283pt;}
.wsfc{word-spacing:0.203072pt;}
.ws1e{word-spacing:0.212535pt;}
.ws11{word-spacing:0.239104pt;}
.ws24{word-spacing:0.265669pt;}
.ws17{word-spacing:0.286925pt;}
.wsf6{word-spacing:0.315296pt;}
.ws37{word-spacing:0.318803pt;}
.wsda{word-spacing:0.371937pt;}
.ws16e{word-spacing:0.411488pt;}
.wsb1{word-spacing:0.425071pt;}
.wsc4{word-spacing:0.427520pt;}
.wsc3{word-spacing:0.438208pt;}
.ws41{word-spacing:0.478205pt;}
.wsc0{word-spacing:0.496992pt;}
.ws20{word-spacing:0.531339pt;}
.ws3a{word-spacing:0.584473pt;}
.ws129{word-spacing:0.589978pt;}
.ws192{word-spacing:0.621670pt;}
.ws12a{word-spacing:0.637005pt;}
.wsa6{word-spacing:0.705408pt;}
.wsff{word-spacing:0.721440pt;}
.ws100{word-spacing:0.737472pt;}
.ws96{word-spacing:0.748160pt;}
.ws12f{word-spacing:0.786637pt;}
.ws130{word-spacing:0.795187pt;}
.ws6a{word-spacing:0.797008pt;}
.ws125{word-spacing:0.816563pt;}
.wse9{word-spacing:0.822976pt;}
.ws35{word-spacing:0.850142pt;}
.ws133{word-spacing:0.859315pt;}
.ws7{word-spacing:0.892646pt;}
.ws75{word-spacing:0.903276pt;}
.ws1b0{word-spacing:0.908595pt;}
.ws132{word-spacing:0.923443pt;}
.ws30{word-spacing:0.956410pt;}
.ws162{word-spacing:0.961920pt;}
.ws163{word-spacing:0.999328pt;}
.ws101{word-spacing:1.004672pt;}
.ws2a{word-spacing:1.009543pt;}
.ws74{word-spacing:1.062677pt;}
.ws93{word-spacing:1.074144pt;}
.ws11b{word-spacing:1.098726pt;}
.ws1ad{word-spacing:1.099878pt;}
.ws73{word-spacing:1.115811pt;}
.ws11c{word-spacing:1.120102pt;}
.wsf1{word-spacing:1.122240pt;}
.ws173{word-spacing:1.154304pt;}
.ws142{word-spacing:1.168945pt;}
.ws76{word-spacing:1.222079pt;}
.ws63{word-spacing:1.275213pt;}
.ws197{word-spacing:1.291162pt;}
.ws139{word-spacing:1.333862pt;}
.ws13a{word-spacing:1.355238pt;}
.ws15f{word-spacing:1.373408pt;}
.ws160{word-spacing:1.389440pt;}
.ws8d{word-spacing:1.410816pt;}
.ws51{word-spacing:1.413092pt;}
.ws4c{word-spacing:1.418426pt;}
.ws9f{word-spacing:1.448224pt;}
.ws8c{word-spacing:1.458912pt;}
.ws149{word-spacing:1.487748pt;}
.ws65{word-spacing:1.540882pt;}
.ws78{word-spacing:1.700284pt;}
.ws177{word-spacing:1.704736pt;}
.wse4{word-spacing:1.732800pt;}
.ws146{word-spacing:1.753418pt;}
.wse3{word-spacing:1.761600pt;}
.wse5{word-spacing:1.776000pt;}
.ws178{word-spacing:1.795584pt;}
.ws25{word-spacing:1.806551pt;}
.ws1b2{word-spacing:1.865011pt;}
.ws57{word-spacing:1.912819pt;}
.ws58{word-spacing:1.921681pt;}
.ws99{word-spacing:1.934528pt;}
.wsc6{word-spacing:1.955904pt;}
.ws2b{word-spacing:1.965953pt;}
.ws98{word-spacing:1.987968pt;}
.ws15{word-spacing:2.008474pt;}
.ws3e{word-spacing:2.019087pt;}
.wsc1{word-spacing:2.036064pt;}
.ws104{word-spacing:2.041408pt;}
.ws19b{word-spacing:2.056294pt;}
.wsc7{word-spacing:2.073472pt;}
.wsc2{word-spacing:2.078816pt;}
.ws182{word-spacing:2.084160pt;}
.ws183{word-spacing:2.105536pt;}
.ws34{word-spacing:2.125355pt;}
.ws147{word-spacing:2.178489pt;}
.ws2{word-spacing:2.232481pt;}
.ws66{word-spacing:2.284756pt;}
.ws15b{word-spacing:2.292576pt;}
.ws97{word-spacing:2.308608pt;}
.wsad{word-spacing:2.313952pt;}
.wsae{word-spacing:2.324640pt;}
.ws36{word-spacing:2.337890pt;}
.ws38{word-spacing:2.391024pt;}
.ws12{word-spacing:2.391040pt;}
.ws14f{word-spacing:2.497292pt;}
.ws19f{word-spacing:2.582323pt;}
.ws14d{word-spacing:2.603559pt;}
.ws184{word-spacing:2.613216pt;}
.ws5b{word-spacing:2.656693pt;}
.ws193{word-spacing:2.677965pt;}
.ws186{word-spacing:2.709827pt;}
.wsbb{word-spacing:2.714752pt;}
.wsba{word-spacing:2.752160pt;}
.ws5d{word-spacing:2.762961pt;}
.ws4a{word-spacing:2.816095pt;}
.ws18b{word-spacing:2.821427pt;}
.ws138{word-spacing:2.851558pt;}
.ws13b{word-spacing:2.864384pt;}
.ws1a7{word-spacing:2.865459pt;}
.ws194{word-spacing:2.869248pt;}
.wsc5{word-spacing:2.939200pt;}
.ws111{word-spacing:2.971264pt;}
.wsee{word-spacing:2.992640pt;}
.ws18c{word-spacing:3.060531pt;}
.ws13f{word-spacing:3.090970pt;}
.ws1a9{word-spacing:3.108352pt;}
.ws136{word-spacing:3.129446pt;}
.ws46{word-spacing:3.134898pt;}
.ws11f{word-spacing:3.146547pt;}
.ws120{word-spacing:3.176474pt;}
.ws1b{word-spacing:3.188032pt;}
.ws137{word-spacing:3.232051pt;}
.ws3f{word-spacing:3.241166pt;}
.wsf8{word-spacing:3.249152pt;}
.ws19e{word-spacing:3.251814pt;}
.wsd2{word-spacing:3.270528pt;}
.wsf9{word-spacing:3.275872pt;}
.wsa1{word-spacing:3.291904pt;}
.ws64{word-spacing:3.294300pt;}
.wsa0{word-spacing:3.302592pt;}
.ws8b{word-spacing:3.345344pt;}
.ws7e{word-spacing:3.356032pt;}
.wsd1{word-spacing:3.372064pt;}
.ws7f{word-spacing:3.377408pt;}
.wsf5{word-spacing:3.382752pt;}
.ws8a{word-spacing:3.393440pt;}
.wsd8{word-spacing:3.400567pt;}
.ws89{word-spacing:3.425504pt;}
.ws62{word-spacing:3.453701pt;}
.ws4e{word-spacing:3.551759pt;}
.ws14e{word-spacing:3.559969pt;}
.ws88{word-spacing:3.564448pt;}
.wsaf{word-spacing:3.591168pt;}
.ws166{word-spacing:3.617888pt;}
.ws67{word-spacing:3.666237pt;}
.ws9a{word-spacing:3.687360pt;}
.ws9b{word-spacing:3.692704pt;}
.ws148{word-spacing:3.719371pt;}
.wsb0{word-spacing:3.719424pt;}
.ws43{word-spacing:3.825638pt;}
.ws18f{word-spacing:3.873485pt;}
.ws7a{word-spacing:3.878772pt;}
.ws174{word-spacing:3.885088pt;}
.ws131{word-spacing:3.958835pt;}
.ws1a6{word-spacing:3.969126pt;}
.ws107{word-spacing:3.975936pt;}
.wsb2{word-spacing:3.985040pt;}
.ws108{word-spacing:4.002656pt;}
.ws1ab{word-spacing:4.016947pt;}
.ws109{word-spacing:4.024032pt;}
.wsf4{word-spacing:4.034720pt;}
.ws23{word-spacing:4.038174pt;}
.ws1af{word-spacing:4.064768pt;}
.ws42{word-spacing:4.144442pt;}
.wse{word-spacing:4.240070pt;}
.wsf{word-spacing:4.314458pt;}
.ws187{word-spacing:4.569513pt;}
.ws189{word-spacing:4.590797pt;}
.wsf2{word-spacing:4.601184pt;}
.wsf3{word-spacing:4.665312pt;}
.ws11a{word-spacing:4.668518pt;}
.ws18a{word-spacing:4.782080pt;}
.ws6c{word-spacing:4.835182pt;}
.ws7d{word-spacing:4.841664pt;}
.ws188{word-spacing:4.877722pt;}
.ws155{word-spacing:4.895104pt;}
.ws154{word-spacing:5.001984pt;}
.ws169{word-spacing:5.151616pt;}
.wsa2{word-spacing:5.199712pt;}
.ws16a{word-spacing:5.253152pt;}
.ws72{word-spacing:5.313387pt;}
.ws172{word-spacing:5.461568pt;}
.ws127{word-spacing:5.467981pt;}
.ws128{word-spacing:5.510733pt;}
.wsa3{word-spacing:5.547072pt;}
.ws19c{word-spacing:5.547213pt;}
.ws94{word-spacing:5.579136pt;}
.ws95{word-spacing:5.637920pt;}
.ws11d{word-spacing:5.720218pt;}
.ws1ac{word-spacing:5.786317pt;}
.ws55{word-spacing:5.839759pt;}
.ws49{word-spacing:5.845092pt;}
.ws17f{word-spacing:5.867712pt;}
.ws17e{word-spacing:5.931840pt;}
.ws2d{word-spacing:5.950993pt;}
.ws15e{word-spacing:6.065440pt;}
.ws45{word-spacing:6.110395pt;}
.ws2e{word-spacing:6.163529pt;}
.wscf{word-spacing:6.241792pt;}
.ws145{word-spacing:6.269796pt;}
.wsdd{word-spacing:6.322930pt;}
.ws18d{word-spacing:6.503629pt;}
.wsa4{word-spacing:6.508992pt;}
.ws61{word-spacing:6.748001pt;}
.wsd9{word-spacing:6.801135pt;}
.wse8{word-spacing:6.834976pt;}
.ws5a{word-spacing:6.904688pt;}
.ws59{word-spacing:6.907403pt;}
.wsc{word-spacing:6.918010pt;}
.wsa5{word-spacing:6.925824pt;}
.ws119{word-spacing:7.019878pt;}
.ws2c{word-spacing:7.066804pt;}
.wse7{word-spacing:7.160960pt;}
.ws144{word-spacing:7.332474pt;}
.wsb7{word-spacing:7.428160pt;}
.ws14b{word-spacing:7.438741pt;}
.wsb8{word-spacing:7.476256pt;}
.ws14a{word-spacing:7.491875pt;}
.ws113{word-spacing:7.699635pt;}
.ws112{word-spacing:7.823616pt;}
.ws86{word-spacing:8.122880pt;}
.ws87{word-spacing:8.138912pt;}
.ws10b{word-spacing:8.263450pt;}
.ws17b{word-spacing:8.390080pt;}
.wsdc{word-spacing:8.501419pt;}
.ws15c{word-spacing:8.700032pt;}
.ws15d{word-spacing:8.758816pt;}
.ws156{word-spacing:9.138240pt;}
.ws157{word-spacing:9.175648pt;}
.ws124{word-spacing:9.550797pt;}
.ws123{word-spacing:9.572173pt;}
.wsef{word-spacing:10.078784pt;}
.ws7c{word-spacing:10.329312pt;}
.ws27{word-spacing:10.581554pt;}
.ws106{word-spacing:10.650592pt;}
.wsa{word-spacing:10.823338pt;}
.wsa8{word-spacing:11.030016pt;}
.wsa9{word-spacing:11.062080pt;}
.wsed{word-spacing:11.217056pt;}
.ws1a4{word-spacing:11.237888pt;}
.ws17d{word-spacing:11.281184pt;}
.ws17c{word-spacing:11.388064pt;}
.ws159{word-spacing:11.505632pt;}
.ws158{word-spacing:11.617856pt;}
.wsec{word-spacing:11.639232pt;}
.ws19d{word-spacing:11.716096pt;}
.ws15a{word-spacing:11.735424pt;}
.ws199{word-spacing:11.859558pt;}
.ws1a0{word-spacing:11.899110pt;}
.ws1a8{word-spacing:11.904341pt;}
.ws19a{word-spacing:11.907379pt;}
.ws1b3{word-spacing:12.003021pt;}
.ws1a{word-spacing:12.050842pt;}
.ws1b1{word-spacing:12.815974pt;}
.ws13e{word-spacing:12.838426pt;}
.wsfa{word-spacing:12.964544pt;}
.ws1ae{word-spacing:13.007258pt;}
.wsfb{word-spacing:13.007296pt;}
.ws5e{word-spacing:13.230333pt;}
.ws116{word-spacing:14.193664pt;}
.wsb{word-spacing:14.319536pt;}
.ws1a2{word-spacing:14.537523pt;}
.ws198{word-spacing:14.728806pt;}
.ws1a1{word-spacing:14.774118pt;}
.ws1a5{word-spacing:14.776627pt;}
.ws1b4{word-spacing:14.779597pt;}
.ws195{word-spacing:14.920090pt;}
.ws80{word-spacing:15.775488pt;}
.ws164{word-spacing:16.144224pt;}
.ws165{word-spacing:16.283168pt;}
.ws3b{word-spacing:16.418365pt;}
.wsac{word-spacing:19.617824pt;}
.wsab{word-spacing:19.649888pt;}
.ws126{word-spacing:21.807795pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
.ws1aa{word-spacing:24.436429pt;}
.wsdf{word-spacing:241.886899pt;}
.ws53{word-spacing:411.149860pt;}
.ws50{word-spacing:424.592729pt;}
.ws47{word-spacing:718.210476pt;}
._d{margin-left:-20.939614pt;}
._2a{margin-left:-18.592066pt;}
._4{margin-left:-14.468310pt;}
._20{margin-left:-7.756809pt;}
._e{margin-left:-6.167517pt;}
._5{margin-left:-4.797974pt;}
._2{margin-left:-3.421811pt;}
._8{margin-left:-2.082842pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._3{width:2.082842pt;}
._b{width:3.245792pt;}
._1b{width:4.145478pt;}
._28{width:9.600373pt;}
._6{width:11.530479pt;}
._12{width:12.440051pt;}
._26{width:13.776141pt;}
._10{width:14.680986pt;}
._f{width:15.776910pt;}
._13{width:16.737168pt;}
._14{width:17.806572pt;}
._19{width:18.709847pt;}
._11{width:19.893453pt;}
._18{width:21.324028pt;}
._7{width:23.063232pt;}
._1e{width:24.023234pt;}
._2b{width:25.024813pt;}
._1a{width:26.201723pt;}
._9{width:27.188522pt;}
._24{width:28.433345pt;}
._a{width:29.648896pt;}
._27{width:30.983771pt;}
._2c{width:32.613786pt;}
._23{width:35.925220pt;}
._1c{width:36.881630pt;}
._c{width:48.376563pt;}
._2d{width:54.993920pt;}
._29{width:78.904320pt;}
._17{width:85.811195pt;}
._22{width:254.719411pt;}
._21{width:269.056589pt;}
._15{width:664.145451pt;}
._1f{width:1438.657382pt;}
._1d{width:1798.321728pt;}
._25{width:2142.514400pt;}
._16{width:2163.767733pt;}
.fs14{font-size:23.808000pt;}
.fs15{font-size:26.112000pt;}
.fs7{font-size:31.880533pt;}
.fs10{font-size:32.000000pt;}
.fs11{font-size:34.048000pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs13{font-size:38.400000pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fs12{font-size:42.752000pt;}
.fs9{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fs4{font-size:53.133867pt;}
.fse{font-size:53.440000pt;}
.fsa{font-size:55.365867pt;}
.fsc{font-size:74.387733pt;}
.fs3{font-size:91.124601pt;}
.fs5{font-size:95.641600pt;}
.y182{bottom:-607.752848pt;}
.y181{bottom:-590.633344pt;}
.y180{bottom:-573.594000pt;}
.y17f{bottom:-556.474496pt;}
.y17e{bottom:-539.435152pt;}
.y10b{bottom:-523.282936pt;}
.y17d{bottom:-522.315648pt;}
.y1bf{bottom:-520.070199pt;}
.y1be{bottom:-506.438724pt;}
.y10a{bottom:-506.243592pt;}
.y17c{bottom:-505.196144pt;}
.y1bd{bottom:-492.743121pt;}
.y109{bottom:-489.124088pt;}
.y17b{bottom:-488.156800pt;}
.y1bc{bottom:-479.111646pt;}
.y108{bottom:-472.004584pt;}
.y17a{bottom:-471.037296pt;}
.y1bb{bottom:-465.416043pt;}
.y107{bottom:-454.963904pt;}
.y179{bottom:-453.997952pt;}
.y1ba{bottom:-451.720439pt;}
.y1b9{bottom:-438.088964pt;}
.y106{bottom:-437.844400pt;}
.y178{bottom:-436.878448pt;}
.y1b8{bottom:-424.393361pt;}
.y105{bottom:-420.805056pt;}
.y177{bottom:-419.758944pt;}
.y1b7{bottom:-407.560830pt;}
.y104{bottom:-403.685552pt;}
.y176{bottom:-402.718368pt;}
.y1b6{bottom:-393.865227pt;}
.y103{bottom:-386.566048pt;}
.y175{bottom:-385.598864pt;}
.y102{bottom:-369.526704pt;}
.y174{bottom:-368.558184pt;}
.y1b5{bottom:-367.369675pt;}
.y1b4{bottom:-353.738199pt;}
.y101{bottom:-352.407200pt;}
.y173{bottom:-351.438680pt;}
.y1b3{bottom:-340.042596pt;}
.y100{bottom:-335.367856pt;}
.y172{bottom:-330.398016pt;}
.y1b2{bottom:-326.411121pt;}
.yff{bottom:-318.248352pt;}
.y1b1{bottom:-312.715518pt;}
.yfe{bottom:-301.128848pt;}
.y1b0{bottom:-299.019915pt;}
.y171{bottom:-297.038096pt;}
.y1af{bottom:-285.387371pt;}
.yfd{bottom:-284.089504pt;}
.y170{bottom:-279.038168pt;}
.y1ae{bottom:-271.691767pt;}
.yfc{bottom:-266.970000pt;}
.y16f{bottom:-261.038240pt;}
.y1ad{bottom:-257.996164pt;}
.yfb{bottom:-249.850496pt;}
.y1ac{bottom:-244.364689pt;}
.y16e{bottom:-243.038312pt;}
.yfa{bottom:-232.811152pt;}
.y1ab{bottom:-230.669086pt;}
.y16d{bottom:-225.038384pt;}
.y1aa{bottom:-217.037611pt;}
.yf9{bottom:-215.691648pt;}
.y16c{bottom:-207.038456pt;}
.y1a9{bottom:-203.342007pt;}
.yf8{bottom:-198.652304pt;}
.y1a8{bottom:-189.646404pt;}
.y16b{bottom:-189.118688pt;}
.yf7{bottom:-181.532800pt;}
.y1a7{bottom:-176.013860pt;}
.y16a{bottom:-171.118760pt;}
.yf6{bottom:-164.413296pt;}
.y1a6{bottom:-162.318257pt;}
.y169{bottom:-153.118832pt;}
.y1a5{bottom:-148.686782pt;}
.yf5{bottom:-147.373952pt;}
.y168{bottom:-135.118904pt;}
.y1a4{bottom:-134.991179pt;}
.yf4{bottom:-130.254448pt;}
.y1a3{bottom:-121.295575pt;}
.y167{bottom:-117.118976pt;}
.yf3{bottom:-113.215104pt;}
.y1a2{bottom:-107.664100pt;}
.y166{bottom:-99.119048pt;}
.yf2{bottom:-96.094448pt;}
.y1a1{bottom:-93.968497pt;}
.y20f{bottom:-85.894944pt;}
.y165{bottom:-81.359600pt;}
.y1a0{bottom:-80.335953pt;}
.yf1{bottom:-78.974944pt;}
.y20e{bottom:-68.855600pt;}
.y19f{bottom:-66.640350pt;}
.yf0{bottom:-61.935600pt;}
.y19e{bottom:-52.944747pt;}
.y164{bottom:-48.719200pt;}
.y20d{bottom:-36.136000pt;}
.y163{bottom:-33.199600pt;}
.yef{bottom:-29.216000pt;}
.y19d{bottom:-26.769067pt;}
.y20c{bottom:-20.695600pt;}
.y162{bottom:-17.839600pt;}
.y19c{bottom:-14.416747pt;}
.yee{bottom:-13.775600pt;}
.y20b{bottom:-0.765192pt;}
.y0{bottom:0.000000pt;}
.y19b{bottom:1.519253pt;}
.y3{bottom:3.044747pt;}
.y1c1{bottom:4.015253pt;}
.y161{bottom:6.080472pt;}
.yed{bottom:6.145176pt;}
.y15b{bottom:7.261011pt;}
.y2{bottom:12.578910pt;}
.y1c0{bottom:12.719253pt;}
.y20{bottom:16.528366pt;}
.y1c2{bottom:18.927253pt;}
.y160{bottom:24.080400pt;}
.y15a{bottom:25.180779pt;}
.y4c{bottom:28.346667pt;}
.y1c3{bottom:37.615343pt;}
.y1cc{bottom:54.447253pt;}
.y1c4{bottom:56.239151pt;}
.y1c5{bottom:74.927241pt;}
.y22f{bottom:81.480000pt;}
.ybe{bottom:87.381333pt;}
.y12e{bottom:88.541333pt;}
.y28e{bottom:92.892000pt;}
.y1e{bottom:93.018667pt;}
.y12f{bottom:93.364000pt;}
.y1ce{bottom:93.390667pt;}
.y1c6{bottom:93.615330pt;}
.y1e9{bottom:94.086667pt;}
.y80{bottom:95.681333pt;}
.y22e{bottom:98.217333pt;}
.y256{bottom:103.910667pt;}
.ybd{bottom:104.118667pt;}
.y12d{bottom:105.278667pt;}
.y4b{bottom:105.964000pt;}
.y28d{bottom:108.233333pt;}
.y1d{bottom:108.920000pt;}
.y1cd{bottom:110.486667pt;}
.y15c{bottom:110.549333pt;}
.y1e8{bottom:110.824000pt;}
.y1c7{bottom:112.303420pt;}
.y7f{bottom:112.418667pt;}
.y22d{bottom:114.954667pt;}
.y255{bottom:119.253333pt;}
.y12c{bottom:122.016000pt;}
.y4a{bottom:122.701333pt;}
.y28c{bottom:123.576000pt;}
.ye5{bottom:124.373333pt;}
.y1c{bottom:124.820000pt;}
.ybc{bottom:124.841333pt;}
.y1e7{bottom:127.561333pt;}
.y7e{bottom:129.156000pt;}
.y198{bottom:130.422667pt;}
.y1c8{bottom:130.991509pt;}
.y22c{bottom:131.692000pt;}
.y254{bottom:134.596000pt;}
.y12b{bottom:138.753333pt;}
.y28b{bottom:138.918667pt;}
.y49{bottom:139.438667pt;}
.y1b{bottom:140.720000pt;}
.ye4{bottom:141.110667pt;}
.ybb{bottom:141.578667pt;}
.y1e6{bottom:144.298667pt;}
.y7d{bottom:145.893333pt;}
.y13f{bottom:146.426933pt;}
.y22b{bottom:148.429333pt;}
.y1c9{bottom:149.679599pt;}
.y253{bottom:149.938667pt;}
.y28a{bottom:154.261333pt;}
.y12a{bottom:155.490667pt;}
.y48{bottom:156.176000pt;}
.y1a{bottom:156.621333pt;}
.ye3{bottom:157.848000pt;}
.yba{bottom:158.316000pt;}
.y1e5{bottom:161.036000pt;}
.y7c{bottom:162.630667pt;}
.y252{bottom:165.281333pt;}
.y1ca{bottom:168.303407pt;}
.y22a{bottom:169.152000pt;}
.y289{bottom:169.604000pt;}
.y129{bottom:172.228000pt;}
.y19{bottom:172.521333pt;}
.y47{bottom:172.913333pt;}
.ye2{bottom:174.585333pt;}
.yb9{bottom:175.053333pt;}
.y1e4{bottom:177.773333pt;}
.y7b{bottom:179.368000pt;}
.y251{bottom:180.622667pt;}
.y288{bottom:184.946667pt;}
.y1cb{bottom:186.991497pt;}
.y18{bottom:188.421333pt;}
.y128{bottom:188.965333pt;}
.y46{bottom:189.650667pt;}
.ye1{bottom:191.322667pt;}
.yb8{bottom:191.790667pt;}
.y1e3{bottom:194.510667pt;}
.y250{bottom:195.965333pt;}
.y7a{bottom:196.105333pt;}
.y229{bottom:199.040000pt;}
.y287{bottom:200.289333pt;}
.y17{bottom:204.322667pt;}
.y127{bottom:205.702667pt;}
.y45{bottom:206.388000pt;}
.ye0{bottom:208.060000pt;}
.yb7{bottom:208.528000pt;}
.y1e2{bottom:211.248000pt;}
.y24f{bottom:211.308000pt;}
.y79{bottom:212.842667pt;}
.y286{bottom:215.632000pt;}
.y228{bottom:215.777333pt;}
.y19a{bottom:221.743349pt;}
.y126{bottom:222.440000pt;}
.y44{bottom:223.125333pt;}
.ydf{bottom:224.797333pt;}
.y24e{bottom:226.650667pt;}
.y1e1{bottom:227.985333pt;}
.y199{bottom:228.591253pt;}
.yb6{bottom:229.250667pt;}
.y285{bottom:230.974667pt;}
.y227{bottom:232.514667pt;}
.y78{bottom:233.564000pt;}
.y125{bottom:239.177333pt;}
.y43{bottom:239.862667pt;}
.y24d{bottom:241.993333pt;}
.y1e0{bottom:244.722667pt;}
.yde{bottom:245.520000pt;}
.y284{bottom:246.316000pt;}
.y226{bottom:249.252000pt;}
.y124{bottom:255.914667pt;}
.y42{bottom:256.600000pt;}
.y24c{bottom:257.336000pt;}
.yb5{bottom:259.138667pt;}
.y1df{bottom:261.460000pt;}
.y283{bottom:261.658667pt;}
.y77{bottom:263.452000pt;}
.y225{bottom:265.989333pt;}
.y16{bottom:266.804000pt;}
.y159{bottom:271.181131pt;}
.y123{bottom:272.652000pt;}
.y41{bottom:273.337333pt;}
.ydd{bottom:275.408000pt;}
.yb4{bottom:275.876000pt;}
.y24b{bottom:276.664000pt;}
.y282{bottom:277.001333pt;}
.y1de{bottom:278.197333pt;}
.y76{bottom:280.189333pt;}
.y15{bottom:282.705333pt;}
.y224{bottom:282.726667pt;}
.y158{bottom:289.181059pt;}
.y122{bottom:289.389333pt;}
.y40{bottom:290.074667pt;}
.yb3{bottom:290.186667pt;}
.ydc{bottom:292.145333pt;}
.y281{bottom:292.344000pt;}
.yb2{bottom:292.613333pt;}
.y1dd{bottom:294.934667pt;}
.y75{bottom:296.926667pt;}
.y15f{bottom:297.360520pt;}
.y14{bottom:298.605333pt;}
.y223{bottom:299.464000pt;}
.y15e{bottom:305.920400pt;}
.y121{bottom:306.126667pt;}
.y3f{bottom:306.812000pt;}
.yb1{bottom:306.924000pt;}
.y280{bottom:307.686667pt;}
.ydb{bottom:308.882667pt;}
.y24a{bottom:309.341333pt;}
.yb0{bottom:309.350667pt;}
.y1dc{bottom:311.672000pt;}
.y74{bottom:313.664000pt;}
.y13{bottom:314.505333pt;}
.y20a{bottom:315.395200pt;}
.y222{bottom:316.201333pt;}
.y120{bottom:322.864000pt;}
.y27f{bottom:323.029333pt;}
.y3e{bottom:323.549333pt;}
.yaf{bottom:323.661333pt;}
.yda{bottom:325.620000pt;}
.yae{bottom:326.086667pt;}
.y1db{bottom:328.409333pt;}
.y73{bottom:330.401333pt;}
.y209{bottom:332.514704pt;}
.y249{bottom:332.932000pt;}
.y221{bottom:332.938667pt;}
.yec{bottom:335.904712pt;}
.y27e{bottom:338.372000pt;}
.y12{bottom:338.376000pt;}
.y11f{bottom:339.601333pt;}
.y3d{bottom:340.286667pt;}
.yad{bottom:340.398667pt;}
.yac{bottom:342.824000pt;}
.y197{bottom:343.508000pt;}
.y1da{bottom:345.146667pt;}
.yd9{bottom:346.341333pt;}
.y72{bottom:347.138667pt;}
.y248{bottom:348.553333pt;}
.y208{bottom:349.634208pt;}
.y220{bottom:349.676000pt;}
.yeb{bottom:353.024216pt;}
.y27d{bottom:353.714667pt;}
.y11{bottom:354.277333pt;}
.y11e{bottom:356.338667pt;}
.yab{bottom:359.561333pt;}
.y196{bottom:360.245333pt;}
.y3c{bottom:361.009333pt;}
.y1d9{bottom:361.884000pt;}
.y71{bottom:363.876000pt;}
.y21f{bottom:366.413333pt;}
.y207{bottom:366.673552pt;}
.y27c{bottom:369.056000pt;}
.yea{bottom:370.143720pt;}
.y10{bottom:370.177333pt;}
.y247{bottom:372.145333pt;}
.y11d{bottom:373.076000pt;}
.yd8{bottom:376.229333pt;}
.y195{bottom:376.982667pt;}
.yaa{bottom:380.284000pt;}
.y70{bottom:380.613333pt;}
.y1d8{bottom:382.605333pt;}
.y21e{bottom:383.150667pt;}
.y206{bottom:383.793056pt;}
.y27b{bottom:384.398667pt;}
.ye9{bottom:387.184400pt;}
.y11c{bottom:389.813333pt;}
.yd7{bottom:392.966667pt;}
.y194{bottom:393.720000pt;}
.yf{bottom:395.376000pt;}
.y246{bottom:395.737333pt;}
.y1d7{bottom:396.553333pt;}
.ya9{bottom:397.021333pt;}
.y6f{bottom:397.350667pt;}
.y27a{bottom:399.741333pt;}
.y21d{bottom:399.888000pt;}
.y205{bottom:400.912560pt;}
.y11b{bottom:406.550667pt;}
.yd6{bottom:409.704000pt;}
.ye{bottom:411.276000pt;}
.ya8{bottom:413.758667pt;}
.y6e{bottom:414.088000pt;}
.y193{bottom:414.442667pt;}
.y279{bottom:415.084000pt;}
.y21c{bottom:416.624000pt;}
.y204{bottom:417.951904pt;}
.y245{bottom:419.328000pt;}
.y11a{bottom:423.288000pt;}
.yd5{bottom:426.441333pt;}
.y3b{bottom:427.809333pt;}
.y278{bottom:430.426667pt;}
.ya7{bottom:430.496000pt;}
.y6d{bottom:430.825333pt;}
.y21b{bottom:433.361333pt;}
.y244{bottom:434.950667pt;}
.y203{bottom:435.071408pt;}
.yd{bottom:435.146667pt;}
.ye8{bottom:435.824520pt;}
.y119{bottom:440.024000pt;}
.yd4{bottom:443.178667pt;}
.y192{bottom:444.330667pt;}
.ye7{bottom:444.384400pt;}
.y3a{bottom:445.104000pt;}
.y277{bottom:445.769333pt;}
.y6c{bottom:447.562667pt;}
.y21a{bottom:450.098667pt;}
.y243{bottom:450.572000pt;}
.yc{bottom:451.048000pt;}
.ya6{bottom:451.218667pt;}
.y202{bottom:452.112088pt;}
.y118{bottom:456.761333pt;}
.yd3{bottom:459.916000pt;}
.y191{bottom:461.068000pt;}
.y276{bottom:461.112000pt;}
.y6b{bottom:464.300000pt;}
.y242{bottom:466.193333pt;}
.y219{bottom:466.836000pt;}
.yb{bottom:466.948000pt;}
.y201{bottom:469.231592pt;}
.ya4{bottom:471.914667pt;}
.y117{bottom:473.498667pt;}
.y275{bottom:476.454667pt;}
.yd2{bottom:476.653333pt;}
.y190{bottom:477.805333pt;}
.y39{bottom:478.340000pt;}
.y6a{bottom:481.037333pt;}
.y241{bottom:481.814667pt;}
.ya{bottom:482.848000pt;}
.y218{bottom:483.573333pt;}
.ya3{bottom:483.721333pt;}
.ya5{bottom:486.305333pt;}
.y200{bottom:486.351096pt;}
.ya1{bottom:486.485333pt;}
.y116{bottom:490.236000pt;}
.y274{bottom:491.797333pt;}
.yd1{bottom:493.390667pt;}
.y18f{bottom:494.542667pt;}
.y38{bottom:495.634667pt;}
.y240{bottom:497.436000pt;}
.y69{bottom:497.774667pt;}
.y9{bottom:498.749333pt;}
.y217{bottom:500.310667pt;}
.ya2{bottom:500.830667pt;}
.y1ff{bottom:503.391776pt;}
.y115{bottom:506.973333pt;}
.y273{bottom:507.138667pt;}
.yd0{bottom:510.128000pt;}
.y18e{bottom:511.280000pt;}
.y37{bottom:512.929333pt;}
.y23f{bottom:513.057333pt;}
.y68{bottom:514.512000pt;}
.y8{bottom:514.649333pt;}
.y216{bottom:517.048000pt;}
.y1fe{bottom:520.511280pt;}
.y272{bottom:522.481333pt;}
.y114{bottom:523.710667pt;}
.y9f{bottom:525.820000pt;}
.ycf{bottom:526.865333pt;}
.y18d{bottom:528.017333pt;}
.y23e{bottom:528.678667pt;}
.y36{bottom:530.225333pt;}
.y7{bottom:530.549333pt;}
.y67{bottom:531.249333pt;}
.y157{bottom:532.940939pt;}
.y215{bottom:533.785333pt;}
.y1fd{bottom:537.550624pt;}
.y9e{bottom:537.628000pt;}
.y271{bottom:537.824000pt;}
.ya0{bottom:540.210667pt;}
.y9c{bottom:540.390667pt;}
.y113{bottom:540.448000pt;}
.yce{bottom:543.602667pt;}
.y18c{bottom:544.754667pt;}
.y6{bottom:546.450667pt;}
.y35{bottom:547.520000pt;}
.y66{bottom:547.986667pt;}
.y156{bottom:550.060443pt;}
.y214{bottom:550.522667pt;}
.y23d{bottom:552.270667pt;}
.y270{bottom:553.166667pt;}
.y1fc{bottom:554.670128pt;}
.y9d{bottom:554.736000pt;}
.y112{bottom:557.185333pt;}
.ycd{bottom:560.340000pt;}
.y18b{bottom:561.492000pt;}
.y5{bottom:562.350667pt;}
.y65{bottom:564.724000pt;}
.y34{bottom:564.816000pt;}
.y155{bottom:567.179947pt;}
.y213{bottom:567.260000pt;}
.y23c{bottom:567.892000pt;}
.y26f{bottom:568.509333pt;}
.y1fb{bottom:571.789632pt;}
.y110{bottom:573.922667pt;}
.ycc{bottom:577.077333pt;}
.y18a{bottom:578.228000pt;}
.y4{bottom:578.250667pt;}
.y111{bottom:578.745333pt;}
.y64{bottom:581.461333pt;}
.y9b{bottom:582.082667pt;}
.y33{bottom:582.110667pt;}
.y23b{bottom:583.513333pt;}
.y26e{bottom:583.852000pt;}
.y212{bottom:583.997333pt;}
.y154{bottom:584.219291pt;}
.y1fa{bottom:588.830312pt;}
.y10f{bottom:590.660000pt;}
.ycb{bottom:593.814667pt;}
.y1{bottom:594.151968pt;}
.y189{bottom:594.965333pt;}
.y63{bottom:598.198667pt;}
.y9a{bottom:598.820000pt;}
.y23a{bottom:599.134667pt;}
.y26d{bottom:599.194667pt;}
.y32{bottom:599.405333pt;}
.y153{bottom:601.338795pt;}
.y1f9{bottom:605.949816pt;}
.y10e{bottom:607.397333pt;}
.yca{bottom:610.552000pt;}
.y188{bottom:611.702667pt;}
.y99{bottom:613.130667pt;}
.y211{bottom:613.190667pt;}
.y1d6{bottom:614.537333pt;}
.y239{bottom:614.756000pt;}
.y62{bottom:614.936000pt;}
.y98{bottom:615.557333pt;}
.y31{bottom:616.701333pt;}
.y152{bottom:618.378139pt;}
.y1f8{bottom:622.989160pt;}
.yc9{bottom:627.289333pt;}
.y187{bottom:628.440000pt;}
.y97{bottom:629.868000pt;}
.y26c{bottom:629.878667pt;}
.y210{bottom:630.285333pt;}
.y1d5{bottom:631.274667pt;}
.y96{bottom:632.294667pt;}
.y30{bottom:633.996000pt;}
.y151{bottom:635.497643pt;}
.y61{bottom:635.657333pt;}
.y10d{bottom:637.233333pt;}
.y238{bottom:638.348000pt;}
.y1f7{bottom:640.108664pt;}
.yc8{bottom:644.026667pt;}
.y26b{bottom:645.221333pt;}
.y1d4{bottom:648.012000pt;}
.y186{bottom:649.162667pt;}
.y1ea{bottom:650.222667pt;}
.y2f{bottom:651.290667pt;}
.y150{bottom:652.617147pt;}
.y95{bottom:653.017333pt;}
.y10c{bottom:654.329333pt;}
.y237{bottom:654.388000pt;}
.y1f6{bottom:657.228168pt;}
.y26a{bottom:660.564000pt;}
.yc7{bottom:660.764000pt;}
.y1d3{bottom:664.749333pt;}
.y60{bottom:665.545333pt;}
.y2e{bottom:668.586667pt;}
.y14f{bottom:669.657827pt;}
.y94{bottom:669.754667pt;}
.y236{bottom:670.428000pt;}
.ye6{bottom:674.266667pt;}
.y1f5{bottom:674.267512pt;}
.y269{bottom:675.906667pt;}
.yc6{bottom:677.501333pt;}
.y185{bottom:678.998667pt;}
.y1d2{bottom:681.485333pt;}
.y5f{bottom:682.282667pt;}
.y2d{bottom:685.881333pt;}
.y235{bottom:686.468000pt;}
.y93{bottom:686.492000pt;}
.y14e{bottom:686.777331pt;}
.y268{bottom:691.249333pt;}
.y1f4{bottom:691.387016pt;}
.yc5{bottom:694.238667pt;}
.y184{bottom:696.094667pt;}
.y13e{bottom:696.629333pt;}
.y1d1{bottom:698.222667pt;}
.y92{bottom:698.929333pt;}
.y5e{bottom:699.020000pt;}
.y234{bottom:702.506667pt;}
.y2c{bottom:703.177333pt;}
.y91{bottom:703.229333pt;}
.y14d{bottom:703.816675pt;}
.y267{bottom:706.592000pt;}
.y1f3{bottom:708.506520pt;}
.yc4{bottom:710.976000pt;}
.y183{bottom:713.190667pt;}
.y13d{bottom:713.366667pt;}
.y1d0{bottom:714.960000pt;}
.y5d{bottom:715.757333pt;}
.y233{bottom:718.546667pt;}
.y90{bottom:719.966667pt;}
.y14c{bottom:720.936179pt;}
.y266{bottom:721.934667pt;}
.y1f2{bottom:725.545864pt;}
.yc3{bottom:727.713333pt;}
.y13c{bottom:730.104000pt;}
.y1cf{bottom:731.697333pt;}
.y5c{bottom:732.494667pt;}
.y15d{bottom:733.128000pt;}
.y232{bottom:734.586667pt;}
.y8f{bottom:736.704000pt;}
.y265{bottom:737.277333pt;}
.y2b{bottom:737.474667pt;}
.y14b{bottom:738.055683pt;}
.y1f1{bottom:742.665368pt;}
.y13b{bottom:746.841333pt;}
.yc2{bottom:748.434667pt;}
.y5b{bottom:749.232000pt;}
.y231{bottom:750.626667pt;}
.y264{bottom:752.620000pt;}
.y14a{bottom:755.095027pt;}
.y2a{bottom:755.678667pt;}
.y8e{bottom:757.425333pt;}
.y1f0{bottom:759.704712pt;}
.y13a{bottom:763.578667pt;}
.yc1{bottom:765.172000pt;}
.y5a{bottom:765.969333pt;}
.y29{bottom:766.168000pt;}
.y230{bottom:766.666667pt;}
.y263{bottom:767.961333pt;}
.y149{bottom:776.214515pt;}
.y1ef{bottom:776.824216pt;}
.y8d{bottom:776.930667pt;}
.y139{bottom:780.316000pt;}
.y8c{bottom:781.754667pt;}
.yc0{bottom:781.909333pt;}
.y59{bottom:782.706667pt;}
.y262{bottom:783.304000pt;}
.y28{bottom:784.370667pt;}
.y1ee{bottom:793.943720pt;}
.y8b{bottom:794.294667pt;}
.y138{bottom:797.053333pt;}
.y148{bottom:797.255179pt;}
.y8a{bottom:798.593333pt;}
.ybf{bottom:798.646667pt;}
.y27{bottom:798.717333pt;}
.y58{bottom:803.429333pt;}
.y1ed{bottom:810.984400pt;}
.y137{bottom:813.790667pt;}
.y261{bottom:813.989333pt;}
.y89{bottom:815.384000pt;}
.y57{bottom:820.166667pt;}
.y260{bottom:829.332000pt;}
.y88{bottom:829.694667pt;}
.y147{bottom:830.374619pt;}
.y136{bottom:830.528000pt;}
.y87{bottom:832.121333pt;}
.y56{bottom:836.904000pt;}
.y26{bottom:838.429333pt;}
.y25f{bottom:844.674667pt;}
.y135{bottom:847.265333pt;}
.y146{bottom:847.494123pt;}
.y86{bottom:848.858667pt;}
.y55{bottom:857.625333pt;}
.y1ec{bottom:859.624520pt;}
.y25e{bottom:860.017333pt;}
.y134{bottom:864.002667pt;}
.y145{bottom:864.533779pt;}
.y85{bottom:865.596000pt;}
.y1eb{bottom:868.184400pt;}
.y25{bottom:871.108000pt;}
.y54{bottom:874.362667pt;}
.y25d{bottom:875.360000pt;}
.y133{bottom:880.740000pt;}
.y144{bottom:881.653283pt;}
.y84{bottom:882.333333pt;}
.y25c{bottom:890.702667pt;}
.y53{bottom:895.085333pt;}
.y24{bottom:896.213333pt;}
.y132{bottom:897.477333pt;}
.y143{bottom:898.772787pt;}
.y83{bottom:899.070667pt;}
.y25b{bottom:906.044000pt;}
.y52{bottom:911.822667pt;}
.y82{bottom:915.808000pt;}
.y142{bottom:915.813467pt;}
.y131{bottom:918.198667pt;}
.y23{bottom:921.320000pt;}
.y25a{bottom:921.386667pt;}
.y51{bottom:928.560000pt;}
.y81{bottom:932.545333pt;}
.y130{bottom:936.132000pt;}
.y259{bottom:936.729333pt;}
.y22{bottom:946.425333pt;}
.y50{bottom:949.282667pt;}
.y258{bottom:952.072000pt;}
.y141{bottom:964.453587pt;}
.y4f{bottom:966.020000pt;}
.y257{bottom:967.414667pt;}
.y21{bottom:971.530667pt;}
.y140{bottom:973.013467pt;}
.y4e{bottom:982.757333pt;}
.y1f{bottom:1010.186667pt;}
.y4d{bottom:1038.548000pt;}
.h2a{height:17.332875pt;}
.h2b{height:19.010250pt;}
.h2{height:22.673858pt;}
.h1f{height:25.929327pt;}
.hb{height:28.947524pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.h29{height:31.354250pt;}
.h26{height:31.670625pt;}
.h5{height:33.771789pt;}
.hd{height:34.430976pt;}
.h28{height:35.718750pt;}
.h12{height:36.666735pt;}
.h1a{height:37.778179pt;}
.hf{height:38.256384pt;}
.h22{height:38.462187pt;}
.hc{height:38.596538pt;}
.h8{height:38.947124pt;}
.h2d{height:39.192812pt;}
.h1c{height:39.588281pt;}
.h27{height:39.766875pt;}
.h20{height:41.285014pt;}
.h11{height:41.524400pt;}
.he{height:43.421286pt;}
.h1e{height:44.648438pt;}
.h6{height:45.272024pt;}
.h10{height:48.245551pt;}
.ha{height:48.365611pt;}
.h19{height:48.965551pt;}
.h1d{height:49.708594pt;}
.h16{height:50.843733pt;}
.h13{height:50.849067pt;}
.h14{height:55.952068pt;}
.h24{height:55.957402pt;}
.h18{height:57.799269pt;}
.h7{height:61.782479pt;}
.h17{height:65.445551pt;}
.h9{height:68.861952pt;}
.h15{height:130.152021pt;}
.h25{height:195.530667pt;}
.h23{height:262.913333pt;}
.h2c{height:295.426667pt;}
.h1b{height:321.774667pt;}
.h21{height:529.189067pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:188.033730pt;}
.w7{width:252.037333pt;}
.w6{width:305.517333pt;}
.w5{width:314.486667pt;}
.w4{width:353.166667pt;}
.w8{width:510.690667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x66{left:-281.061333pt;}
.x60{left:-276.016000pt;}
.x80{left:-179.596000pt;}
.x52{left:-167.264000pt;}
.x6c{left:-136.053333pt;}
.x68{left:-107.221333pt;}
.x61{left:-102.176000pt;}
.x69{left:-78.901333pt;}
.x62{left:-73.855776pt;}
.x82{left:-5.755906pt;}
.x0{left:0.000000pt;}
.x6d{left:3.018667pt;}
.x53{left:6.576000pt;}
.x72{left:10.442667pt;}
.x71{left:14.026372pt;}
.x70{left:17.610667pt;}
.x81{left:22.564000pt;}
.x6e{left:24.906667pt;}
.x2{left:26.021437pt;}
.x54{left:34.896000pt;}
.x1{left:47.621398pt;}
.x3{left:50.765941pt;}
.x6f{left:72.074667pt;}
.x89{left:76.309333pt;}
.x8e{left:100.218667pt;}
.x67{left:149.899219pt;}
.x64{left:154.544112pt;}
.x7e{left:219.865333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x27{left:226.945333pt;}
.x5{left:239.924000pt;}
.x5b{left:248.314667pt;}
.x9{left:250.204000pt;}
.xc{left:252.608000pt;}
.x5c{left:259.520000pt;}
.x47{left:266.629333pt;}
.x2a{left:269.917333pt;}
.x55{left:272.532000pt;}
.x7{left:273.909333pt;}
.x2b{left:276.849333pt;}
.x77{left:278.058667pt;}
.x8{left:288.522667pt;}
.x78{left:291.342667pt;}
.x63{left:300.384544pt;}
.x58{left:306.325333pt;}
.x65{left:308.543496pt;}
.x7f{left:313.466667pt;}
.x44{left:315.244000pt;}
.x59{left:320.569333pt;}
.x45{left:322.148000pt;}
.x1f{left:325.141333pt;}
.x20{left:332.076000pt;}
.x48{left:333.312000pt;}
.x2c{left:343.501333pt;}
.x19{left:345.341333pt;}
.x3c{left:347.081333pt;}
.x1a{left:349.345333pt;}
.x3d{left:350.684000pt;}
.x56{left:355.960000pt;}
.x46{left:361.524000pt;}
.x57{left:364.049333pt;}
.x5a{left:370.065333pt;}
.x87{left:371.349333pt;}
.x88{left:380.414667pt;}
.x3e{left:390.124000pt;}
.xd{left:394.688000pt;}
.xe{left:401.329333pt;}
.x3f{left:403.853333pt;}
.x2f{left:406.949333pt;}
.x2e{left:409.361333pt;}
.x32{left:410.317333pt;}
.x2d{left:412.300000pt;}
.x31{left:415.668000pt;}
.x85{left:420.132000pt;}
.x30{left:426.206667pt;}
.x25{left:429.285333pt;}
.x6a{left:432.310667pt;}
.x6b{left:440.516000pt;}
.x86{left:443.361333pt;}
.x5f{left:446.278667pt;}
.x23{left:447.357333pt;}
.x5d{left:452.349333pt;}
.x73{left:458.905333pt;}
.x5e{left:463.553333pt;}
.x74{left:465.548000pt;}
.x26{left:468.350667pt;}
.x49{left:496.953333pt;}
.x24{left:497.972000pt;}
.x4a{left:510.237333pt;}
.x83{left:513.202434pt;}
.x28{left:525.881333pt;}
.x29{left:533.585333pt;}
.x15{left:536.038667pt;}
.x33{left:542.752000pt;}
.x34{left:546.354667pt;}
.x16{left:549.321333pt;}
.x17{left:555.857333pt;}
.x1b{left:557.604000pt;}
.x1c{left:561.609333pt;}
.x21{left:564.726667pt;}
.x18{left:569.141333pt;}
.x22{left:571.662667pt;}
.x1d{left:576.868000pt;}
.x35{left:587.484000pt;}
.x1e{left:590.976000pt;}
.x36{left:594.964000pt;}
.x79{left:613.753333pt;}
.x8a{left:619.397333pt;}
.x7a{left:627.036000pt;}
.x37{left:632.321333pt;}
.x4e{left:634.584000pt;}
.x38{left:639.801333pt;}
.x4f{left:641.226667pt;}
.xa{left:646.640000pt;}
.x50{left:647.848000pt;}
.x7c{left:648.964000pt;}
.xb{left:653.281333pt;}
.x40{left:658.364000pt;}
.x51{left:661.132000pt;}
.x7d{left:662.248000pt;}
.x41{left:666.028000pt;}
.xf{left:673.221333pt;}
.x8d{left:690.654667pt;}
.x39{left:694.721333pt;}
.x8f{left:696.520000pt;}
.x10{left:698.672000pt;}
.x7b{left:701.736000pt;}
.x3a{left:703.470667pt;}
.x42{left:711.448000pt;}
.x11{left:713.901333pt;}
.x43{left:715.049333pt;}
.x12{left:720.542667pt;}
.x4b{left:722.781333pt;}
.x75{left:724.872000pt;}
.x8c{left:726.192000pt;}
.x13{left:727.098667pt;}
.x84{left:728.082667pt;}
.x4d{left:733.484000pt;}
.x4c{left:736.064000pt;}
.x76{left:738.156000pt;}
.x14{left:740.381333pt;}
.x3b{left:742.098667pt;}
.x8b{left:744.202667pt;}
}




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