
    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_54bbf0f46d6f6753e3c41ca9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.693000;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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.710000;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_bcc78ec60ed89023d1463859.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cec4e91163bdaefccdb59e3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_b1aa0e7bcafa69102283c4df.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_ba0670015b12f7ec758bb0cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bfd8cd4607725825536e209b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.014160;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_a001cfb01ec18a3a794a9889.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_51590558b57adfed99b473ea.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.021484;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_1096ab04b810d11007a7eace.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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_6c22986857036ef8b25eb3de.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;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_bfd8cd4607725825536e209b.woff2')format("woff");}.fff{font-family:fff;line-height:1.014160;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_3fb69d94cd957a28dc10efa6.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_66ed50f2e90b0f3c8931c2bd.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.021484;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_c3f81fc3a9c032f0a1f8d344.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.402354;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_53ce6758b6de9b1601f71f5d.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_7b6b0692d471f1beb54c95a8.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.014160;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_8be07434e6f12af5f86ad669.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_bd2df5410254cd38912b722a.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.021484;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_c3f81fc3a9c032f0a1f8d344.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.402354;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_7b6b0692d471f1beb54c95a8.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.014160;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_436f951269c76dfd00ab2061.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_4445f7036cb88c9055b05d11.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.021484;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_b80d9e9e0b7bcef40379d352.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.402354;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_c5b120cf87f3459e14412702.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.014160;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_cd8ba839091787bb2ba6f694.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_c6831d4ad5600067c5fc7ef9.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.021484;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_b80d9e9e0b7bcef40379d352.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.402354;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_bfd8cd4607725825536e209b.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.014160;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_d625781317a148051f4b820d.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_e656aeab8d7157fdf10f9ab2.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.021484;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_7198868736e26e377f312c2b.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.402354;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_538fe1d849ee5ae45feff041.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.014160;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_256b1786b7515d3735c89963.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_952376862998462732819d2a.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.021484;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:ff27;src:url('chunks/assets/font_1ad72f82a6c7d873b539c338.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.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);}
.m22{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);}
.m7{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);}
.m26{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);}
.m6{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);}
.m1b{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);}
.m18{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);}
.m1d{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);}
.m24{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);}
.m9{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);}
.m1f{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);}
.me{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);}
.md{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);}
.m23{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);}
.m19{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);}
.m17{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);}
.m28{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);}
.m25{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);}
.m1e{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);}
.m10{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);}
.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);}
.m16{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);}
.mc{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);}
.m29{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);}
.m27{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);}
.mb{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);}
.m1a{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);}
.m21{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);}
.m14{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);}
.m11{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);}
.m15{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);}
.m12{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);}
.m1c{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);}
.m1{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);}
.m13{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.ma{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);}
.m5{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);}
.m20{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);}
.m4{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);}
.m2{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);}
.mf{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);}
.v2{vertical-align:-19.530000px;}
.v3{vertical-align:-10.914000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls29{letter-spacing:-0.972000px;}
.ls10{letter-spacing:-0.540000px;}
.ls34{letter-spacing:-0.513000px;}
.ls1a{letter-spacing:-0.496800px;}
.ls25{letter-spacing:-0.475200px;}
.ls11{letter-spacing:-0.360000px;}
.ls35{letter-spacing:-0.342000px;}
.ls1b{letter-spacing:-0.331200px;}
.ls26{letter-spacing:-0.316800px;}
.ls2a{letter-spacing:-0.252000px;}
.ls39{letter-spacing:-0.165300px;}
.ls1d{letter-spacing:-0.138000px;}
.ls12{letter-spacing:-0.126000px;}
.ls37{letter-spacing:-0.050616px;}
.ls3b{letter-spacing:-0.034200px;}
.ls7{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.000863px;}
.ls3{letter-spacing:0.002074px;}
.ls50{letter-spacing:0.003040px;}
.ls2{letter-spacing:0.003859px;}
.ls44{letter-spacing:0.004800px;}
.ls1c{letter-spacing:0.016560px;}
.ls3a{letter-spacing:0.017100px;}
.ls13{letter-spacing:0.018000px;}
.ls17{letter-spacing:0.049680px;}
.lsb{letter-spacing:0.054000px;}
.lsa{letter-spacing:0.126000px;}
.ls16{letter-spacing:0.165600px;}
.ls28{letter-spacing:0.180000px;}
.ls38{letter-spacing:0.246810px;}
.ls2b{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.281520px;}
.ls33{letter-spacing:0.307800px;}
.ls14{letter-spacing:0.331200px;}
.ls36{letter-spacing:0.342000px;}
.ls9{letter-spacing:0.360000px;}
.ls40{letter-spacing:0.717483px;}
.lsc{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.275394px;}
.ls3d{letter-spacing:1.412226px;}
.ls3c{letter-spacing:1.548422px;}
.ls5{letter-spacing:1.861130px;}
.ls3f{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.ls2f{letter-spacing:3.060000px;}
.ls3e{letter-spacing:3.559200px;}
.ls51{letter-spacing:11.921829px;}
.ls6{letter-spacing:11.954850px;}
.ls4b{letter-spacing:12.013665px;}
.ls2c{letter-spacing:12.180290px;}
.ls2d{letter-spacing:12.186178px;}
.ls2e{letter-spacing:12.442800px;}
.lsd{letter-spacing:13.213226px;}
.ls20{letter-spacing:13.230212px;}
.ls21{letter-spacing:13.236094px;}
.ls4a{letter-spacing:13.244278px;}
.lse{letter-spacing:13.286571px;}
.lsf{letter-spacing:13.292500px;}
.ls4e{letter-spacing:13.307317px;}
.ls32{letter-spacing:13.330212px;}
.ls31{letter-spacing:13.336094px;}
.ls30{letter-spacing:13.342384px;}
.ls54{letter-spacing:13.442184px;}
.ls24{letter-spacing:13.444800px;}
.ls1e{letter-spacing:13.446422px;}
.ls43{letter-spacing:13.448400px;}
.ls1f{letter-spacing:13.450800px;}
.ls48{letter-spacing:13.454400px;}
.ls46{letter-spacing:13.481192px;}
.ls22{letter-spacing:13.527331px;}
.ls23{letter-spacing:13.533453px;}
.ls53{letter-spacing:13.544388px;}
.ls55{letter-spacing:13.556448px;}
.ls4f{letter-spacing:13.672600px;}
.ls19{letter-spacing:13.723249px;}
.ls18{letter-spacing:13.729371px;}
.ls49{letter-spacing:13.745919px;}
.ls27{letter-spacing:16.976270px;}
.ls45{letter-spacing:17.132753px;}
.ls42{letter-spacing:17.550400px;}
.ls4d{letter-spacing:17.891576px;}
.ls47{letter-spacing:18.532753px;}
.ls52{letter-spacing:22.585694px;}
.ls41{letter-spacing:23.012200px;}
.ls1{letter-spacing:70.236600px;}
.ls4{letter-spacing:72.353510px;}
.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;}
}
.ws6a{word-spacing:-15.199800px;}
.ws40{word-spacing:-14.943900px;}
.ws51{word-spacing:-14.802000px;}
.ws87{word-spacing:-14.580000px;}
.ws97{word-spacing:-14.535000px;}
.ws3{word-spacing:-14.355754px;}
.ws95{word-spacing:-14.193000px;}
.ws94{word-spacing:-14.027700px;}
.ws67{word-spacing:-13.518000px;}
.ws30{word-spacing:-13.500000px;}
.ws6f{word-spacing:-13.449600px;}
.ws69{word-spacing:-13.248000px;}
.ws98{word-spacing:-12.825000px;}
.ws99{word-spacing:-12.790800px;}
.ws68{word-spacing:-12.528000px;}
.ws45{word-spacing:-12.420000px;}
.ws2e{word-spacing:-12.060000px;}
.ws1e{word-spacing:-11.955150px;}
.ws93{word-spacing:-11.799000px;}
.ws2f{word-spacing:-11.700000px;}
.ws91{word-spacing:-11.457000px;}
.ws92{word-spacing:-11.115000px;}
.ws43{word-spacing:-11.095200px;}
.ws44{word-spacing:-10.764000px;}
.ws57{word-spacing:-10.612800px;}
.ws58{word-spacing:-10.296000px;}
.ws96{word-spacing:-8.550000px;}
.wsa3{word-spacing:-3.108331px;}
.wsab{word-spacing:-2.749678px;}
.ws6e{word-spacing:-2.689920px;}
.ws7d{word-spacing:-2.689902px;}
.wsb7{word-spacing:-2.570351px;}
.ws20{word-spacing:-2.450800px;}
.wsaa{word-spacing:-2.391024px;}
.ws3f{word-spacing:-2.331248px;}
.wsc8{word-spacing:-2.259533px;}
.ws8e{word-spacing:-2.092146px;}
.wse2{word-spacing:-2.044339px;}
.wsbf{word-spacing:-2.032370px;}
.wsf3{word-spacing:-1.990541px;}
.ws22{word-spacing:-1.972595px;}
.wsb0{word-spacing:-1.912819px;}
.ws8{word-spacing:-1.908367px;}
.wse3{word-spacing:-1.882944px;}
.ws8c{word-spacing:-1.667750px;}
.ws5c{word-spacing:-1.613952px;}
.ws73{word-spacing:-1.560154px;}
.wsbe{word-spacing:-1.554166px;}
.wse4{word-spacing:-1.452557px;}
.ws3b{word-spacing:-1.434614px;}
.wsf0{word-spacing:-1.398758px;}
.ws7e{word-spacing:-1.374839px;}
.ws7{word-spacing:-1.322630px;}
.ws77{word-spacing:-1.291162px;}
.wsc1{word-spacing:-1.255288px;}
.ws79{word-spacing:-1.237363px;}
.ws80{word-spacing:-1.135736px;}
.ws4e{word-spacing:-1.129766px;}
.ws1{word-spacing:-1.075968px;}
.ws75{word-spacing:-1.022170px;}
.ws78{word-spacing:-1.010381px;}
.ws17{word-spacing:-0.896634px;}
.ws74{word-spacing:-0.860774px;}
.wsd5{word-spacing:-0.806976px;}
.wsb9{word-spacing:-0.777083px;}
.ws29{word-spacing:-0.657532px;}
.ws5e{word-spacing:-0.645581px;}
.wsfc{word-spacing:-0.484186px;}
.ws28{word-spacing:-0.418429px;}
.wsd{word-spacing:-0.358654px;}
.ws6c{word-spacing:-0.322790px;}
.ws11{word-spacing:-0.298878px;}
.ws35{word-spacing:-0.268992px;}
.ws9{word-spacing:-0.239102px;}
.ws34{word-spacing:-0.220354px;}
.ws31{word-spacing:-0.215194px;}
.wsf{word-spacing:-0.179327px;}
.ws38{word-spacing:-0.161395px;}
.ws8d{word-spacing:-0.120568px;}
.ws14{word-spacing:-0.119551px;}
.ws39{word-spacing:-0.107597px;}
.wsc{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.wsd0{word-spacing:-0.008621px;}
.wsd6{word-spacing:-0.006989px;}
.ws103{word-spacing:-0.006816px;}
.ws2{word-spacing:-0.004766px;}
.ws0{word-spacing:0.000000px;}
.wsfa{word-spacing:0.000710px;}
.ws54{word-spacing:0.053798px;}
.ws19{word-spacing:0.059776px;}
.ws60{word-spacing:0.107597px;}
.wsa{word-spacing:0.119551px;}
.ws32{word-spacing:0.161395px;}
.ws1b{word-spacing:0.179327px;}
.ws4c{word-spacing:0.215194px;}
.ws18{word-spacing:0.239102px;}
.ws33{word-spacing:0.268992px;}
.wsb{word-spacing:0.298878px;}
.ws50{word-spacing:0.300615px;}
.ws6b{word-spacing:0.322790px;}
.ws10{word-spacing:0.358654px;}
.ws9b{word-spacing:0.376589px;}
.ws13{word-spacing:0.418429px;}
.wsd3{word-spacing:0.430387px;}
.ws5b{word-spacing:0.484186px;}
.ws4{word-spacing:0.562186px;}
.ws41{word-spacing:0.597756px;}
.ws4f{word-spacing:0.645581px;}
.ws1c{word-spacing:0.657532px;}
.ws12{word-spacing:0.717307px;}
.ws72{word-spacing:0.753178px;}
.ws21{word-spacing:0.777083px;}
.ws2a{word-spacing:0.836858px;}
.wsc0{word-spacing:0.896634px;}
.wsd9{word-spacing:0.914573px;}
.ws37{word-spacing:0.968371px;}
.ws2d{word-spacing:1.016185px;}
.ws36{word-spacing:1.022170px;}
.ws63{word-spacing:1.075961px;}
.ws9a{word-spacing:1.075968px;}
.ws76{word-spacing:1.183565px;}
.ws8f{word-spacing:1.255288px;}
.ws48{word-spacing:1.291162px;}
.ws65{word-spacing:1.315063px;}
.ws47{word-spacing:1.344960px;}
.wsb4{word-spacing:1.434614px;}
.ws71{word-spacing:1.452557px;}
.wsc3{word-spacing:1.554166px;}
.ws26{word-spacing:1.613941px;}
.ws55{word-spacing:1.613952px;}
.ws46{word-spacing:1.667750px;}
.ws66{word-spacing:1.673717px;}
.wscd{word-spacing:1.775347px;}
.wsa1{word-spacing:1.793268px;}
.wsbc{word-spacing:1.853044px;}
.ws88{word-spacing:1.882944px;}
.wsae{word-spacing:1.912819px;}
.ws61{word-spacing:1.972595px;}
.ws62{word-spacing:2.032370px;}
.wsf9{word-spacing:2.044339px;}
.wsbd{word-spacing:2.092146px;}
.ws2b{word-spacing:2.151922px;}
.ws49{word-spacing:2.205734px;}
.ws8a{word-spacing:2.367130px;}
.wsa7{word-spacing:2.391024px;}
.wsb2{word-spacing:2.450800px;}
.ws7b{word-spacing:2.510575px;}
.wsbb{word-spacing:2.630126px;}
.wsda{word-spacing:2.689920px;}
.ws1d{word-spacing:2.869236px;}
.ws89{word-spacing:2.905114px;}
.ws6d{word-spacing:2.958912px;}
.ws25{word-spacing:2.988780px;}
.wsce{word-spacing:3.066509px;}
.wsa6{word-spacing:3.108331px;}
.ws100{word-spacing:3.120307px;}
.ws3e{word-spacing:3.168107px;}
.wsde{word-spacing:3.222317px;}
.wsd4{word-spacing:3.224419px;}
.wsef{word-spacing:3.225014px;}
.wse7{word-spacing:3.225686px;}
.wsf7{word-spacing:3.227501px;}
.wsa8{word-spacing:3.227882px;}
.ws6{word-spacing:3.227904px;}
.wsc9{word-spacing:3.231840px;}
.ws2c{word-spacing:3.287658px;}
.wsd8{word-spacing:3.335501px;}
.ws9d{word-spacing:3.347434px;}
.wsdc{word-spacing:3.389299px;}
.ws84{word-spacing:3.466985px;}
.wse9{word-spacing:3.496896px;}
.ws7f{word-spacing:3.526760px;}
.wsf8{word-spacing:3.550694px;}
.ws15{word-spacing:3.583475px;}
.ws16{word-spacing:3.586536px;}
.wsb3{word-spacing:3.646312px;}
.wscb{word-spacing:3.658291px;}
.ws1a{word-spacing:3.706087px;}
.wsd2{word-spacing:3.712090px;}
.ws4b{word-spacing:3.765888px;}
.ws9c{word-spacing:3.819686px;}
.ws1f{word-spacing:3.825638px;}
.ws5d{word-spacing:3.927283px;}
.ws3c{word-spacing:4.004965px;}
.wscf{word-spacing:4.034880px;}
.wsc7{word-spacing:4.088678px;}
.wsb6{word-spacing:4.124516px;}
.wsb5{word-spacing:4.184292px;}
.ws70{word-spacing:4.303872px;}
.ws7a{word-spacing:4.363619px;}
.wseb{word-spacing:4.465267px;}
.ws81{word-spacing:4.483170px;}
.wsc6{word-spacing:4.572864px;}
.ws7c{word-spacing:4.662497px;}
.ws8b{word-spacing:4.680461px;}
.wsa2{word-spacing:4.722272px;}
.ws4a{word-spacing:4.734259px;}
.ws3d{word-spacing:4.841824px;}
.ws4d{word-spacing:4.841856px;}
.wsee{word-spacing:4.895654px;}
.wse{word-spacing:4.901599px;}
.wsc5{word-spacing:4.949453px;}
.ws56{word-spacing:5.003251px;}
.ws83{word-spacing:5.080926px;}
.wsd7{word-spacing:5.110848px;}
.wsaf{word-spacing:5.200477px;}
.wse1{word-spacing:5.218445px;}
.wsa5{word-spacing:5.379804px;}
.wsf6{word-spacing:5.433638px;}
.ws90{word-spacing:5.559131px;}
.ws9f{word-spacing:5.678682px;}
.ws9e{word-spacing:5.738458px;}
.ws5f{word-spacing:5.864026px;}
.ws3a{word-spacing:5.977560px;}
.wsd1{word-spacing:6.133018px;}
.ws27{word-spacing:6.156887px;}
.wsac{word-spacing:6.216662px;}
.wsfd{word-spacing:6.455808px;}
.ws85{word-spacing:6.694867px;}
.wsb1{word-spacing:6.933970px;}
.wsfe{word-spacing:7.101389px;}
.wscc{word-spacing:7.208986px;}
.ws64{word-spacing:7.232848px;}
.wsf4{word-spacing:7.262784px;}
.ws5a{word-spacing:7.585574px;}
.ws86{word-spacing:7.770828px;}
.ws59{word-spacing:8.015962px;}
.wsc4{word-spacing:8.069706px;}
.wsec{word-spacing:8.661542px;}
.wsff{word-spacing:8.876736px;}
.wsf5{word-spacing:9.145728px;}
.wse5{word-spacing:9.468518px;}
.wsc2{word-spacing:9.743423px;}
.wsa9{word-spacing:9.922750px;}
.ws82{word-spacing:10.042301px;}
.wsb8{word-spacing:10.221628px;}
.ws101{word-spacing:10.652083px;}
.wsdd{word-spacing:11.028672px;}
.wsdb{word-spacing:11.136269px;}
.wsa4{word-spacing:11.178037px;}
.ws102{word-spacing:11.566656px;}
.wse6{word-spacing:11.674253px;}
.wsba{word-spacing:11.775793px;}
.wsad{word-spacing:12.014896px;}
.wsca{word-spacing:12.373632px;}
.wse8{word-spacing:12.427430px;}
.ws53{word-spacing:12.911616px;}
.wsed{word-spacing:13.288205px;}
.ws52{word-spacing:13.449600px;}
.ws42{word-spacing:13.748388px;}
.wsea{word-spacing:14.202778px;}
.ws24{word-spacing:14.525471px;}
.wsf2{word-spacing:15.386342px;}
.wsfb{word-spacing:16.031923px;}
.wsf1{word-spacing:21.088973px;}
.wsa0{word-spacing:21.220338px;}
.wsdf{word-spacing:21.250368px;}
.ws23{word-spacing:23.910240px;}
.wse0{word-spacing:34.538573px;}
._0{margin-left:-35.544868px;}
._22{margin-left:-8.002810px;}
._8{margin-left:-6.956670px;}
._7{margin-left:-5.439580px;}
._1{margin-left:-3.999341px;}
._1c{margin-left:-2.990678px;}
._2{margin-left:-1.949894px;}
._5{width:1.091170px;}
._12{width:2.140980px;}
._13{width:3.313020px;}
._15{width:5.017449px;}
._14{width:6.096000px;}
._1a{width:7.849440px;}
._1b{width:9.019680px;}
._10{width:10.031903px;}
._b{width:11.409623px;}
._3{width:12.499488px;}
._1d{width:13.569079px;}
._16{width:15.493939px;}
._4{width:16.677504px;}
._32{width:17.696635px;}
._6{width:18.806614px;}
._18{width:19.942350px;}
._a{width:21.160562px;}
._28{width:22.176748px;}
._f{width:23.267083px;}
._21{width:24.658998px;}
._2b{width:26.241488px;}
._e{width:27.974981px;}
._1f{width:29.506918px;}
._2d{width:30.576782px;}
._17{width:31.772294px;}
._9{width:33.354785px;}
._2e{width:34.610072px;}
._24{width:36.582667px;}
._29{width:38.472786px;}
._33{width:39.745980px;}
._20{width:41.700668px;}
._2f{width:43.217759px;}
._31{width:45.083621px;}
._23{width:49.112843px;}
._2a{width:53.231735px;}
._2c{width:55.591308px;}
._30{width:61.868160px;}
._c{width:844.079611px;}
._1e{width:1332.175992px;}
._19{width:1391.634835px;}
._27{width:1415.661995px;}
._26{width:1489.440000px;}
._11{width:1513.200000px;}
._25{width:1889.966700px;}
._d{width:1913.876700px;}
.fc6{color:rgb(8,117,183);}
.fc5{color:rgb(12,11,11);}
.fc8{color:rgb(35,31,32);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(53,30,58);}
.fc7{color:transparent;}
.fc2{color:rgb(90,40,100);}
.fc1{color:rgb(14,15,14);}
.fc0{color:rgb(72,62,33);}
.fs18{font-size:34.200000px;}
.fs6{font-size:41.842800px;}
.fs9{font-size:41.936104px;}
.fs12{font-size:42.451200px;}
.fsf{font-size:44.380800px;}
.fs5{font-size:45.429600px;}
.fs15{font-size:45.828000px;}
.fs8{font-size:47.236800px;}
.fs19{font-size:47.337600px;}
.fs13{font-size:47.520000px;}
.fsa{font-size:47.820600px;}
.fsb{font-size:48.240000px;}
.fs10{font-size:49.680000px;}
.fs16{font-size:51.300000px;}
.fs14{font-size:52.588800px;}
.fs0{font-size:52.914960px;}
.fs7{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs11{font-size:54.979200px;}
.fse{font-size:56.058000px;}
.fs1{font-size:56.694600px;}
.fs17{font-size:56.772000px;}
.fsd{font-size:59.760000px;}
.fs3{font-size:59.775600px;}
.fs1a{font-size:62.286600px;}
.fs2{font-size:68.033520px;}
.fs4{font-size:107.596800px;}
.y159{bottom:-523.887000px;}
.y172{bottom:-504.267000px;}
.y171{bottom:-483.927000px;}
.y170{bottom:-463.767000px;}
.y16f{bottom:-443.427000px;}
.y16e{bottom:-423.273000px;}
.y63{bottom:-406.977000px;}
.y16d{bottom:-403.113000px;}
.y16c{bottom:-382.773000px;}
.y16b{bottom:-362.613000px;}
.yad{bottom:-344.686740px;}
.y16a{bottom:-324.633000px;}
.ybf{bottom:-317.693940px;}
.y169{bottom:-305.193000px;}
.ybe{bottom:-299.809140px;}
.yd3{bottom:-293.868000px;}
.y168{bottom:-285.753000px;}
.ybd{bottom:-281.758740px;}
.y167{bottom:-266.133000px;}
.ybc{bottom:-263.879460px;}
.ydf{bottom:-263.088000px;}
.y166{bottom:-246.648000px;}
.ybb{bottom:-245.994660px;}
.yde{bottom:-242.748000px;}
.y70{bottom:-241.743000px;}
.yba{bottom:-227.944260px;}
.y165{bottom:-227.208000px;}
.ydd{bottom:-222.588000px;}
.y6f{bottom:-222.303000px;}
.yb9{bottom:-209.728260px;}
.y164{bottom:-207.588000px;}
.y6e{bottom:-202.683000px;}
.ydc{bottom:-202.254000px;}
.yb8{bottom:-191.346660px;}
.y163{bottom:-188.148000px;}
.y6d{bottom:-183.243000px;}
.ydb{bottom:-182.094000px;}
.yb7{bottom:-173.461860px;}
.y162{bottom:-168.708000px;}
.y6c{bottom:-163.803000px;}
.yb6{bottom:-155.577060px;}
.y161{bottom:-149.088000px;}
.yda{bottom:-144.294000px;}
.y6b{bottom:-144.138000px;}
.yb5{bottom:-137.526660px;}
.y160{bottom:-129.648000px;}
.y6a{bottom:-124.698000px;}
.yd9{bottom:-124.674000px;}
.yb4{bottom:-119.641860px;}
.y15f{bottom:-110.208000px;}
.y69{bottom:-105.258000px;}
.yd8{bottom:-105.234000px;}
.yb3{bottom:-101.715660px;}
.y18d{bottom:-95.420850px;}
.y15e{bottom:-90.588000px;}
.yd7{bottom:-85.794000px;}
.y68{bottom:-85.638000px;}
.yb2{bottom:-83.665260px;}
.y15d{bottom:-71.148000px;}
.y67{bottom:-66.198000px;}
.yd6{bottom:-66.174000px;}
.yb1{bottom:-65.780460px;}
.y19e{bottom:-62.075850px;}
.y15c{bottom:-51.708000px;}
.yb0{bottom:-47.895660px;}
.y66{bottom:-46.758000px;}
.yd5{bottom:-46.734000px;}
.y19d{bottom:-43.607850px;}
.ye8{bottom:-33.604164px;}
.y15b{bottom:-32.088000px;}
.yaf{bottom:-29.845260px;}
.y10c{bottom:-29.156850px;}
.y65{bottom:-27.138000px;}
.y19c{bottom:-24.968850px;}
.yd4{bottom:-22.029000px;}
.y15a{bottom:-7.608000px;}
.yae{bottom:-7.323660px;}
.yf1{bottom:-3.666564px;}
.y64{bottom:-2.658000px;}
.y19b{bottom:-1.547550px;}
.y126{bottom:-1.076850px;}
.y0{bottom:0.000000px;}
.y16{bottom:3.425340px;}
.y4{bottom:9.473101px;}
.y15{bottom:14.151273px;}
.y3{bottom:28.937869px;}
.y2{bottom:32.769195px;}
.y31{bottom:63.780000px;}
.y201{bottom:110.091000px;}
.y1c3{bottom:114.156000px;}
.y1aa{bottom:114.381000px;}
.y202{bottom:115.515000px;}
.y252{bottom:119.239500px;}
.y188{bottom:120.978000px;}
.y1d8{bottom:125.572500px;}
.y285{bottom:128.325000px;}
.y200{bottom:130.354500px;}
.y30{bottom:130.548000px;}
.y1a9{bottom:133.614000px;}
.yfd{bottom:133.647000px;}
.y1c2{bottom:134.419500px;}
.yaa{bottom:134.539500px;}
.y21e{bottom:135.018000px;}
.y251{bottom:138.606000px;}
.y187{bottom:141.241500px;}
.yd0{bottom:143.410500px;}
.y1d7{bottom:145.837500px;}
.y284{bottom:147.691500px;}
.y21d{bottom:150.216000px;}
.y1ff{bottom:150.619500px;}
.y2f{bottom:150.813000px;}
.y1a8{bottom:152.847000px;}
.yfc{bottom:152.880000px;}
.y1c1{bottom:154.683000px;}
.ya9{bottom:154.803000px;}
.y250{bottom:157.974000px;}
.y186{bottom:161.505000px;}
.ycf{bottom:162.643500px;}
.y1d6{bottom:166.101000px;}
.y283{bottom:167.059500px;}
.y1a7{bottom:169.456500px;}
.y60{bottom:169.477500px;}
.y1fe{bottom:170.883000px;}
.y2e{bottom:171.076500px;}
.y1a6{bottom:172.080000px;}
.yfb{bottom:172.113000px;}
.y21c{bottom:174.381000px;}
.y1c0{bottom:174.948000px;}
.ya8{bottom:175.068000px;}
.y24f{bottom:177.340500px;}
.y185{bottom:181.770000px;}
.yce{bottom:181.876500px;}
.y1d5{bottom:186.364500px;}
.y282{bottom:186.427500px;}
.y21b{bottom:189.579000px;}
.y5f{bottom:189.742500px;}
.y1fd{bottom:191.148000px;}
.y1a4{bottom:191.313000px;}
.y2d{bottom:191.341500px;}
.yfa{bottom:191.346000px;}
.y1bf{bottom:195.211500px;}
.ya7{bottom:195.331500px;}
.y1a5{bottom:196.195500px;}
.y24e{bottom:196.708500px;}
.ycd{bottom:201.109500px;}
.y184{bottom:202.033500px;}
.y21a{bottom:204.777000px;}
.y281{bottom:205.794000px;}
.y1d4{bottom:206.629500px;}
.y12c{bottom:207.729000px;}
.y5e{bottom:210.006000px;}
.y1a3{bottom:210.546000px;}
.yf9{bottom:210.579000px;}
.y1fc{bottom:211.411500px;}
.y2c{bottom:211.605000px;}
.y1be{bottom:215.476500px;}
.ya6{bottom:215.595000px;}
.y24d{bottom:216.076500px;}
.ycc{bottom:220.342500px;}
.y280{bottom:225.162000px;}
.y12b{bottom:226.962000px;}
.y7c{bottom:228.549000px;}
.y219{bottom:228.940500px;}
.y1a2{bottom:229.779000px;}
.yf8{bottom:229.812000px;}
.y5d{bottom:230.271000px;}
.y288{bottom:230.946000px;}
.y183{bottom:231.264000px;}
.y1fb{bottom:231.675000px;}
.y2b{bottom:231.868500px;}
.ye5{bottom:232.737000px;}
.y24c{bottom:235.443000px;}
.y1bd{bottom:235.740000px;}
.ya5{bottom:235.860000px;}
.ycb{bottom:239.575500px;}
.y218{bottom:244.138500px;}
.y27f{bottom:244.528500px;}
.y12a{bottom:246.195000px;}
.y7b{bottom:247.780500px;}
.y1a1{bottom:249.010500px;}
.yf7{bottom:249.045000px;}
.y287{bottom:250.314000px;}
.y5c{bottom:250.534500px;}
.ye4{bottom:251.970000px;}
.y2a{bottom:252.133500px;}
.y24b{bottom:254.811000px;}
.y1bc{bottom:256.003500px;}
.ya4{bottom:256.123500px;}
.yca{bottom:258.807000px;}
.y156{bottom:258.951000px;}
.y217{bottom:259.336500px;}
.y1fa{bottom:260.905500px;}
.y27e{bottom:263.896500px;}
.y129{bottom:265.428000px;}
.y7a{bottom:267.013500px;}
.y1a0{bottom:268.243500px;}
.yf6{bottom:268.276500px;}
.y286{bottom:269.680500px;}
.y1d3{bottom:270.679500px;}
.y5b{bottom:270.798000px;}
.ye3{bottom:271.203000px;}
.y182{bottom:271.854000px;}
.y24a{bottom:274.177500px;}
.y1bb{bottom:276.268500px;}
.ya3{bottom:276.388500px;}
.yc9{bottom:278.040000px;}
.y155{bottom:279.214500px;}
.y29{bottom:281.364000px;}
.y27d{bottom:283.264500px;}
.y128{bottom:284.661000px;}
.y79{bottom:286.246500px;}
.y19f{bottom:287.476500px;}
.yf5{bottom:287.509500px;}
.ye2{bottom:290.436000px;}
.y5a{bottom:291.063000px;}
.y181{bottom:291.087000px;}
.y216{bottom:292.468500px;}
.y249{bottom:293.545500px;}
.y1f9{bottom:295.725000px;}
.y1ba{bottom:296.532000px;}
.ya2{bottom:296.652000px;}
.yc8{bottom:297.273000px;}
.y154{bottom:299.479500px;}
.y27c{bottom:302.631000px;}
.y127{bottom:303.894000px;}
.y78{bottom:305.479500px;}
.y1d2{bottom:305.499000px;}
.yf4{bottom:306.742500px;}
.ye1{bottom:309.669000px;}
.y180{bottom:310.320000px;}
.y59{bottom:311.326500px;}
.y215{bottom:312.732000px;}
.y248{bottom:312.913500px;}
.y18b{bottom:315.883500px;}
.y1f8{bottom:315.990000px;}
.yc7{bottom:316.506000px;}
.y1b9{bottom:316.797000px;}
.ya1{bottom:316.915500px;}
.y153{bottom:319.743000px;}
.y27b{bottom:321.999000px;}
.y77{bottom:324.712500px;}
.y1d1{bottom:325.762500px;}
.yf3{bottom:325.975500px;}
.ye0{bottom:328.902000px;}
.y17f{bottom:329.551500px;}
.y58{bottom:331.591500px;}
.y247{bottom:332.280000px;}
.y10a{bottom:332.300850px;}
.y214{bottom:332.995500px;}
.yc6{bottom:335.739000px;}
.y1f7{bottom:336.253500px;}
.y1b8{bottom:337.060500px;}
.ya0{bottom:337.180500px;}
.y152{bottom:340.006500px;}
.y27a{bottom:341.367000px;}
.y76{bottom:343.945500px;}
.yf2{bottom:345.208500px;}
.y1d0{bottom:346.027500px;}
.y17e{bottom:348.784500px;}
.y246{bottom:351.648000px;}
.y57{bottom:351.855000px;}
.y213{bottom:353.260500px;}
.yc5{bottom:354.972000px;}
.y1f6{bottom:356.518500px;}
.yd1{bottom:357.309000px;}
.y1b7{bottom:357.324000px;}
.y9f{bottom:357.444000px;}
.y28{bottom:357.772500px;}
.y151{bottom:360.271500px;}
.y279{bottom:360.733500px;}
.y75{bottom:363.178500px;}
.y1cf{bottom:366.291000px;}
.y17d{bottom:368.017500px;}
.y245{bottom:371.014500px;}
.y56{bottom:372.118500px;}
.ye6{bottom:373.615104px;}
.yc4{bottom:374.205000px;}
.y1f5{bottom:376.782000px;}
.y1b6{bottom:377.589000px;}
.y9e{bottom:377.709000px;}
.y278{bottom:380.101500px;}
.y150{bottom:380.535000px;}
.y74{bottom:382.411500px;}
.y212{bottom:382.491000px;}
.y1ce{bottom:386.554500px;}
.y17c{bottom:387.250500px;}
.y244{bottom:390.382500px;}
.y55{bottom:392.383500px;}
.yc3{bottom:393.438000px;}
.y27{bottom:395.968500px;}
.y1f4{bottom:397.045500px;}
.y1b5{bottom:397.852500px;}
.y9d{bottom:397.972500px;}
.y277{bottom:399.468000px;}
.y14f{bottom:400.800000px;}
.y73{bottom:401.644500px;}
.y17b{bottom:406.483500px;}
.y1cd{bottom:406.819500px;}
.y243{bottom:409.750500px;}
.y54{bottom:412.647000px;}
.yc2{bottom:412.671000px;}
.y26{bottom:416.233500px;}
.y1f3{bottom:417.310500px;}
.y1b4{bottom:418.117500px;}
.y9c{bottom:418.236000px;}
.y276{bottom:418.836000px;}
.y72{bottom:420.877500px;}
.y14e{bottom:421.063500px;}
.y17a{bottom:425.716500px;}
.y1cc{bottom:427.083000px;}
.y242{bottom:429.117000px;}
.yc1{bottom:431.904000px;}
.y1f2{bottom:434.844000px;}
.y25{bottom:436.497000px;}
.y1f1{bottom:437.574000px;}
.y275{bottom:438.204000px;}
.y1b3{bottom:438.381000px;}
.y9b{bottom:438.501000px;}
.y71{bottom:440.109000px;}
.y14d{bottom:441.327000px;}
.y53{bottom:441.877500px;}
.y179{bottom:444.949500px;}
.y1cb{bottom:447.348000px;}
.y241{bottom:448.485000px;}
.yc0{bottom:451.135500px;}
.y24{bottom:456.760500px;}
.y274{bottom:457.570500px;}
.y1f0{bottom:457.839000px;}
.y1b2{bottom:458.644500px;}
.y52{bottom:458.764500px;}
.y14c{bottom:461.592000px;}
.y178{bottom:464.182500px;}
.y1ca{bottom:467.611500px;}
.y240{bottom:467.851500px;}
.y61{bottom:468.516000px;}
.y273{bottom:476.938500px;}
.y23{bottom:477.025500px;}
.y1ef{bottom:478.102500px;}
.y1b1{bottom:478.909500px;}
.y9a{bottom:479.028000px;}
.yab{bottom:479.542500px;}
.y14b{bottom:481.855500px;}
.y177{bottom:483.415500px;}
.y23f{bottom:487.219500px;}
.y1c9{bottom:487.875000px;}
.y51{bottom:493.584000px;}
.y272{bottom:496.305000px;}
.y22{bottom:497.289000px;}
.y1ee{bottom:498.366000px;}
.y1b0{bottom:499.173000px;}
.y99{bottom:499.293000px;}
.y14a{bottom:502.120500px;}
.y176{bottom:502.648500px;}
.y1c8{bottom:505.410000px;}
.y23e{bottom:506.587500px;}
.y1c7{bottom:508.140000px;}
.y271{bottom:515.673000px;}
.y21{bottom:517.554000px;}
.y1ed{bottom:518.631000px;}
.y1af{bottom:519.438000px;}
.y98{bottom:519.556500px;}
.y175{bottom:521.880000px;}
.y149{bottom:522.384000px;}
.y211{bottom:524.055000px;}
.y23d{bottom:525.954000px;}
.y50{bottom:528.403500px;}
.y270{bottom:535.041000px;}
.y125{bottom:536.292150px;}
.y20{bottom:537.817500px;}
.y1eb{bottom:538.894500px;}
.y1ae{bottom:539.701500px;}
.y97{bottom:539.821500px;}
.y174{bottom:541.113000px;}
.y148{bottom:542.647500px;}
.y1ec{bottom:544.320000px;}
.y23c{bottom:545.322000px;}
.y1c6{bottom:545.938500px;}
.y4f{bottom:548.667000px;}
.y26f{bottom:554.407500px;}
.y124{bottom:556.452150px;}
.y1f{bottom:558.081000px;}
.y1ad{bottom:559.965000px;}
.y173{bottom:560.346000px;}
.y147{bottom:562.912500px;}
.y23b{bottom:564.690000px;}
.y1c5{bottom:566.202000px;}
.y1ea{bottom:568.125000px;}
.y4e{bottom:568.932000px;}
.y96{bottom:569.052000px;}
.y26e{bottom:573.775500px;}
.y123{bottom:576.792150px;}
.y1e{bottom:578.346000px;}
.y1ac{bottom:580.230000px;}
.y158{bottom:583.077000px;}
.y146{bottom:583.176000px;}
.y23a{bottom:584.056500px;}
.y95{bottom:585.939000px;}
.y1c4{bottom:586.465500px;}
.y157{bottom:588.753000px;}
.y4d{bottom:589.195500px;}
.y26d{bottom:593.142000px;}
.y122{bottom:596.952150px;}
.y1d{bottom:598.609500px;}
.y1ab{bottom:600.493500px;}
.y1e9{bottom:602.944500px;}
.y239{bottom:603.424500px;}
.y145{bottom:603.441000px;}
.y4c{bottom:609.460500px;}
.y26c{bottom:612.510000px;}
.y121{bottom:617.292150px;}
.y1c{bottom:618.874500px;}
.y94{bottom:620.758500px;}
.y238{bottom:622.791000px;}
.y1e8{bottom:623.209500px;}
.y144{bottom:623.704500px;}
.y4b{bottom:629.724000px;}
.y26b{bottom:631.878000px;}
.y120{bottom:637.452150px;}
.y1b{bottom:639.138000px;}
.y93{bottom:641.022000px;}
.y237{bottom:642.159000px;}
.y1e7{bottom:643.473000px;}
.y4a{bottom:649.987500px;}
.y26a{bottom:651.244500px;}
.y143{bottom:652.935000px;}
.y11f{bottom:657.612150px;}
.y1a{bottom:659.401500px;}
.y92{bottom:661.285500px;}
.y236{bottom:661.527000px;}
.y1e6{bottom:663.736500px;}
.y142{bottom:669.822000px;}
.y49{bottom:670.252500px;}
.y269{bottom:670.612500px;}
.yac{bottom:673.720140px;}
.y11e{bottom:677.952150px;}
.y19{bottom:679.666500px;}
.y235{bottom:680.893500px;}
.y19a{bottom:681.198450px;}
.y91{bottom:681.550500px;}
.y1e5{bottom:684.001500px;}
.y210{bottom:689.425500px;}
.y268{bottom:689.979000px;}
.y48{bottom:690.516000px;}
.y11d{bottom:698.112150px;}
.y18{bottom:699.930000px;}
.y62{bottom:699.987000px;}
.y234{bottom:700.261500px;}
.y199{bottom:700.350450px;}
.y90{bottom:701.814000px;}
.y1e4{bottom:704.265000px;}
.y141{bottom:704.641500px;}
.y267{bottom:709.347000px;}
.y47{bottom:710.781000px;}
.y20f{bottom:713.232000px;}
.y11c{bottom:718.452150px;}
.y233{bottom:719.628000px;}
.y198{bottom:719.673450px;}
.y17{bottom:720.195000px;}
.y8f{bottom:722.077500px;}
.y1e2{bottom:724.530000px;}
.y140{bottom:724.905000px;}
.y266{bottom:728.715000px;}
.y1e3{bottom:729.954000px;}
.y46{bottom:731.044500px;}
.y11b{bottom:738.612150px;}
.y197{bottom:738.825450px;}
.y232{bottom:738.996000px;}
.y8e{bottom:742.342500px;}
.y13f{bottom:745.170000px;}
.y20e{bottom:748.051500px;}
.y265{bottom:748.081500px;}
.y45{bottom:751.308000px;}
.y1e1{bottom:753.759000px;}
.y13{bottom:755.626500px;}
.y14{bottom:755.626555px;}
.y196{bottom:758.148450px;}
.y231{bottom:758.364000px;}
.y8d{bottom:762.606000px;}
.y13e{bottom:765.433500px;}
.y264{bottom:767.449500px;}
.y11a{bottom:767.997150px;}
.y20d{bottom:768.315000px;}
.y44{bottom:771.573000px;}
.y195{bottom:777.300450px;}
.y230{bottom:777.730500px;}
.yf0{bottom:782.731356px;}
.y8c{bottom:782.871000px;}
.y13d{bottom:785.697000px;}
.y263{bottom:786.816000px;}
.y119{bottom:788.157150px;}
.y1e0{bottom:788.578500px;}
.y43{bottom:791.836500px;}
.y12{bottom:795.393000px;}
.y194{bottom:796.452450px;}
.y22f{bottom:797.098500px;}
.yef{bottom:800.472156px;}
.y8b{bottom:803.134500px;}
.y13c{bottom:805.962000px;}
.y262{bottom:806.184000px;}
.y1df{bottom:808.843500px;}
.y42{bottom:812.101500px;}
.yd2{bottom:813.096000px;}
.y193{bottom:815.775450px;}
.y22e{bottom:816.465000px;}
.yee{bottom:818.371356px;}
.y11{bottom:818.431500px;}
.y8a{bottom:823.398000px;}
.y261{bottom:825.552000px;}
.y118{bottom:825.957150px;}
.y13b{bottom:826.225500px;}
.y1de{bottom:829.107000px;}
.y10{bottom:831.706500px;}
.y41{bottom:832.365000px;}
.y192{bottom:834.927450px;}
.y22d{bottom:835.833000px;}
.yed{bottom:836.112156px;}
.y89{bottom:843.663000px;}
.y260{bottom:844.918500px;}
.y117{bottom:845.577150px;}
.y13a{bottom:846.490500px;}
.y1dd{bottom:849.372000px;}
.y40{bottom:852.628500px;}
.yec{bottom:854.011356px;}
.y191{bottom:854.250450px;}
.yf{bottom:854.745000px;}
.y22c{bottom:855.201000px;}
.y88{bottom:863.926500px;}
.y25f{bottom:864.286500px;}
.y116{bottom:865.017150px;}
.y139{bottom:866.754000px;}
.y109{bottom:867.304500px;}
.y1dc{bottom:869.635500px;}
.yeb{bottom:871.752156px;}
.y3f{bottom:872.893500px;}
.ye{bottom:872.902500px;}
.y190{bottom:873.402450px;}
.y22b{bottom:874.567500px;}
.y25e{bottom:883.653000px;}
.y87{bottom:884.191500px;}
.y115{bottom:884.457150px;}
.y138{bottom:887.017500px;}
.y108{bottom:887.568000px;}
.yea{bottom:889.651356px;}
.y20c{bottom:889.899000px;}
.yd{bottom:891.060000px;}
.y18f{bottom:892.725450px;}
.y3e{bottom:893.157000px;}
.y22a{bottom:893.935500px;}
.y1db{bottom:898.866000px;}
.y25d{bottom:903.021000px;}
.y114{bottom:904.077150px;}
.y86{bottom:904.455000px;}
.ye9{bottom:907.418556px;}
.y107{bottom:907.833000px;}
.yc{bottom:909.216000px;}
.y20b{bottom:910.164000px;}
.y229{bottom:913.302000px;}
.y3d{bottom:913.422000px;}
.y18e{bottom:920.455950px;}
.y25c{bottom:922.389000px;}
.yb{bottom:922.491000px;}
.y113{bottom:923.517150px;}
.y85{bottom:924.718500px;}
.y137{bottom:925.215000px;}
.y106{bottom:928.096500px;}
.y20a{bottom:930.427500px;}
.y228{bottom:932.670000px;}
.y3c{bottom:933.685500px;}
.ye7{bottom:940.524156px;}
.y25b{bottom:941.755500px;}
.y112{bottom:942.957150px;}
.y136{bottom:944.448000px;}
.y84{bottom:944.983500px;}
.ya{bottom:945.531000px;}
.y105{bottom:948.360000px;}
.y209{bottom:950.692500px;}
.y227{bottom:952.038000px;}
.y3b{bottom:953.949000px;}
.y18c{bottom:956.194950px;}
.y1da{bottom:959.374500px;}
.y25a{bottom:961.123500px;}
.y111{bottom:962.577150px;}
.y135{bottom:963.681000px;}
.y83{bottom:965.247000px;}
.y9{bottom:967.771500px;}
.y104{bottom:968.625000px;}
.y207{bottom:970.956000px;}
.y226{bottom:971.404500px;}
.y3a{bottom:974.214000px;}
.y208{bottom:976.380000px;}
.y259{bottom:980.490000px;}
.y110{bottom:982.017150px;}
.y134{bottom:982.914000px;}
.y82{bottom:985.512000px;}
.y103{bottom:988.888500px;}
.y225{bottom:990.772500px;}
.y205{bottom:991.219500px;}
.y39{bottom:994.477500px;}
.y206{bottom:996.645000px;}
.y258{bottom:999.858000px;}
.y10f{bottom:1001.457150px;}
.y133{bottom:1002.147000px;}
.y81{bottom:1005.775500px;}
.y102{bottom:1009.153500px;}
.y224{bottom:1010.139000px;}
.y8{bottom:1010.451000px;}
.y204{bottom:1011.484500px;}
.y18a{bottom:1012.012500px;}
.y38{bottom:1014.742500px;}
.y257{bottom:1019.226000px;}
.y1d9{bottom:1020.166500px;}
.y10e{bottom:1021.077150px;}
.y132{bottom:1021.380000px;}
.y80{bottom:1026.039000px;}
.y101{bottom:1029.417000px;}
.y223{bottom:1029.507000px;}
.y37{bottom:1035.006000px;}
.y256{bottom:1038.592500px;}
.y10d{bottom:1040.547150px;}
.y131{bottom:1040.611500px;}
.y203{bottom:1040.715000px;}
.y7{bottom:1040.848500px;}
.y7f{bottom:1046.304000px;}
.y222{bottom:1048.875000px;}
.y100{bottom:1049.680500px;}
.y189{bottom:1052.541000px;}
.y36{bottom:1055.269500px;}
.y255{bottom:1057.960500px;}
.y130{bottom:1059.844500px;}
.y7e{bottom:1066.567500px;}
.y221{bottom:1068.241500px;}
.yff{bottom:1069.945500px;}
.y6{bottom:1071.244500px;}
.y35{bottom:1075.534500px;}
.y254{bottom:1077.327000px;}
.y10b{bottom:1077.807150px;}
.y12f{bottom:1079.077500px;}
.y7d{bottom:1086.832500px;}
.y220{bottom:1087.609500px;}
.y34{bottom:1095.798000px;}
.y253{bottom:1096.695000px;}
.y12e{bottom:1098.310500px;}
.yfe{bottom:1099.176000px;}
.y5{bottom:1100.145000px;}
.y21f{bottom:1115.943000px;}
.y33{bottom:1116.063000px;}
.y12d{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y32{bottom:1168.366500px;}
.hb{height:25.508090px;}
.h9{height:30.461558px;}
.h23{height:31.112916px;}
.h31{height:31.526842px;}
.h1b{height:32.527139px;}
.h29{height:33.072749px;}
.hd{height:33.112997px;}
.h2b{height:33.587807px;}
.hc{height:34.199443px;}
.h10{height:35.052500px;}
.h12{height:35.355586px;}
.h3{height:35.876343px;}
.h1e{height:36.265430px;}
.h1f{height:36.410977px;}
.h18{height:37.334628px;}
.h2f{height:37.447998px;}
.h20{height:37.551283px;}
.h25{height:38.388797px;}
.h17{height:38.896243px;}
.ha{height:39.165235px;}
.h4{height:39.402747px;}
.h15{height:39.418945px;}
.h19{height:39.434227px;}
.h16{height:39.577148px;}
.h1d{height:40.133742px;}
.h2e{height:41.442451px;}
.h33{height:41.482876px;}
.h2d{height:41.608775px;}
.h30{height:41.723369px;}
.he{height:43.217759px;}
.hf{height:43.516637px;}
.h14{height:43.623633px;}
.h27{height:43.798711px;}
.h6{height:43.815515px;}
.h5{height:46.126727px;}
.h24{height:48.843072px;}
.h2{height:50.931027px;}
.h1c{height:51.063211px;}
.h2c{height:52.728316px;}
.h32{height:53.228842px;}
.h8{height:54.547601px;}
.h13{height:55.503491px;}
.h7{height:77.792486px;}
.h26{height:511.363650px;}
.h28{height:542.254500px;}
.h1a{height:651.466260px;}
.h2a{height:656.456175px;}
.h11{height:662.491500px;}
.h22{height:757.388676px;}
.h21{height:773.700000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w8{width:522.295500px;}
.w5{width:522.922020px;}
.w7{width:534.479352px;}
.wa{width:541.779300px;}
.w4{width:571.243500px;}
.w6{width:600.709950px;}
.w9{width:604.986900px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x5c{left:-71.895000px;}
.x73{left:-47.080575px;}
.x3c{left:-44.282820px;}
.x2f{left:-42.906000px;}
.x5d{left:-40.035000px;}
.x4a{left:-34.351050px;}
.x51{left:-26.046768px;}
.x74{left:-16.813575px;}
.x3e{left:-14.971620px;}
.x31{left:-11.046000px;}
.x67{left:-4.410600px;}
.x4c{left:-2.491050px;}
.x0{left:0.000000px;}
.x52{left:1.990032px;}
.x68{left:27.449400px;}
.x9{left:29.274117px;}
.x3{left:60.027581px;}
.x4{left:113.754000px;}
.x1{left:114.802500px;}
.x7{left:122.110500px;}
.x5{left:123.307500px;}
.x49{left:144.661500px;}
.x6{left:146.170500px;}
.x57{left:150.817500px;}
.xb5{left:152.527500px;}
.xba{left:155.125500px;}
.x62{left:158.937000px;}
.x2e{left:160.836000px;}
.x72{left:175.569000px;}
.x20{left:179.098500px;}
.x2{left:181.274369px;}
.x3b{left:184.996500px;}
.x21{left:186.570000px;}
.xa{left:188.352000px;}
.xa7{left:192.322500px;}
.xc3{left:194.940000px;}
.x32{left:203.934000px;}
.x13{left:206.034000px;}
.xa8{left:207.267000px;}
.x33{left:208.498500px;}
.x3f{left:210.153000px;}
.x54{left:211.921500px;}
.x14{left:213.507000px;}
.x34{left:215.223000px;}
.x15{left:217.317000px;}
.x16{left:224.788500px;}
.xa9{left:226.021500px;}
.x5a{left:228.729000px;}
.x98{left:229.887000px;}
.x5b{left:234.700500px;}
.x7d{left:236.469000px;}
.xd1{left:237.604500px;}
.xd2{left:243.348000px;}
.x99{left:244.830000px;}
.xd0{left:248.992500px;}
.x7e{left:251.413500px;}
.x9a{left:252.451500px;}
.xe3{left:253.657500px;}
.x11{left:254.994000px;}
.x79{left:256.476000px;}
.xa0{left:259.549500px;}
.x12{left:262.467000px;}
.x7a{left:263.614500px;}
.xe2{left:265.518000px;}
.x9b{left:267.396000px;}
.xa1{left:278.304000px;}
.xad{left:279.465000px;}
.xa2{left:282.115500px;}
.x83{left:288.286500px;}
.xae{left:290.887500px;}
.x84{left:293.362500px;}
.x47{left:294.954000px;}
.x9c{left:296.002500px;}
.xa3{left:297.058500px;}
.xcb{left:298.935000px;}
.xaa{left:303.438000px;}
.x93{left:306.183000px;}
.x85{left:308.307000px;}
.x48{left:309.373500px;}
.x9d{left:310.945500px;}
.xaf{left:314.386500px;}
.x94{left:321.126000px;}
.x17{left:328.305000px;}
.xb0{left:329.329500px;}
.x18{left:335.776500px;}
.xa4{left:338.995500px;}
.x19{left:343.315500px;}
.x86{left:347.448000px;}
.xcc{left:351.265500px;}
.xa5{left:353.940000px;}
.x8a{left:357.201000px;}
.x1a{left:358.260000px;}
.xcd{left:361.167000px;}
.x9e{left:364.728000px;}
.x8b{left:372.145500px;}
.x43{left:374.488500px;}
.x7b{left:376.339500px;}
.x9f{left:379.671000px;}
.x44{left:382.795500px;}
.x7c{left:391.282500px;}
.x87{left:397.755000px;}
.x88{left:402.829500px;}
.x29{left:408.132000px;}
.x89{left:417.774000px;}
.x2a{left:423.076500px;}
.x22{left:426.520500px;}
.x2b{left:430.698000px;}
.x37{left:439.132500px;}
.x23{left:441.465000px;}
.x24{left:445.275000px;}
.x38{left:447.351000px;}
.x8c{left:453.517500px;}
.x25{left:460.219500px;}
.x6b{left:462.865500px;}
.x77{left:467.478000px;}
.x65{left:470.427000px;}
.x8d{left:472.153500px;}
.x6c{left:473.364000px;}
.xb8{left:475.672500px;}
.x78{left:476.983500px;}
.xbb{left:484.603500px;}
.x6d{left:487.794000px;}
.xb9{left:488.913000px;}
.x8e{left:490.788000px;}
.xb3{left:493.635000px;}
.x55{left:495.298500px;}
.xbc{left:501.184500px;}
.xb4{left:502.866000px;}
.x8f{left:505.732500px;}
.x56{left:509.709000px;}
.xbd{left:516.426000px;}
.x5e{left:521.139000px;}
.x90{left:524.367000px;}
.x7f{left:526.186500px;}
.x3d{left:527.307660px;}
.x91{left:531.750000px;}
.x53{left:533.522352px;}
.x4d{left:534.777000px;}
.x66{left:539.178000px;}
.x35{left:540.568500px;}
.xe0{left:545.619000px;}
.x92{left:546.693000px;}
.x2c{left:551.230500px;}
.x36{left:554.994000px;}
.xda{left:556.105500px;}
.xdf{left:558.010500px;}
.xbe{left:560.292000px;}
.xd8{left:562.129500px;}
.xbf{left:566.718000px;}
.xe1{left:572.518500px;}
.xc2{left:574.264500px;}
.xb6{left:577.084500px;}
.x30{left:580.548000px;}
.xc4{left:582.141000px;}
.xb7{left:583.890000px;}
.x75{left:585.693000px;}
.xde{left:587.545500px;}
.x63{left:590.149500px;}
.x76{left:593.911500px;}
.xab{left:595.225500px;}
.xc5{left:597.084000px;}
.x69{left:599.880000px;}
.x4b{left:601.702950px;}
.x2d{left:603.385500px;}
.x64{left:604.947000px;}
.x6e{left:607.063500px;}
.x6a{left:608.097000px;}
.x80{left:610.765500px;}
.xa6{left:612.549000px;}
.x6f{left:613.773000px;}
.xb1{left:617.230500px;}
.xc6{left:619.650000px;}
.xb{left:620.878500px;}
.x5f{left:624.276000px;}
.xc1{left:626.142000px;}
.xc{left:628.350000px;}
.xac{left:632.307000px;}
.x26{left:633.652500px;}
.x58{left:635.490000px;}
.xdc{left:638.119500px;}
.x4e{left:641.149500px;}
.xd3{left:647.409000px;}
.xb2{left:650.887500px;}
.x95{left:655.981500px;}
.xd6{left:657.664500px;}
.x40{left:659.827500px;}
.x1b{left:662.239500px;}
.x41{left:668.046000px;}
.x1c{left:669.712500px;}
.x1d{left:673.387500px;}
.x42{left:682.135500px;}
.xdd{left:683.206500px;}
.xd7{left:684.564000px;}
.x27{left:685.611000px;}
.x1e{left:688.332000px;}
.x81{left:689.850000px;}
.xf{left:692.308500px;}
.xc0{left:693.999000px;}
.x96{left:695.881500px;}
.x39{left:697.914000px;}
.x10{left:699.780000px;}
.x8{left:702.742573px;}
.x82{left:704.794500px;}
.x1f{left:706.953000px;}
.x97{left:710.826000px;}
.x3a{left:712.659000px;}
.x28{left:714.985500px;}
.x45{left:719.332500px;}
.xd4{left:720.729000px;}
.x60{left:722.314500px;}
.x46{left:727.639500px;}
.x61{left:730.555500px;}
.x59{left:732.000000px;}
.x4f{left:734.785500px;}
.xc7{left:736.390500px;}
.xce{left:737.941500px;}
.x50{left:740.757000px;}
.x70{left:744.139500px;}
.xd5{left:747.628500px;}
.xcf{left:748.707000px;}
.xc8{left:752.860500px;}
.x71{left:755.568000px;}
.xdb{left:763.227000px;}
.xd{left:764.715000px;}
.xc9{left:768.103500px;}
.xe{left:772.188000px;}
.xca{left:774.529500px;}
.xd9{left:776.362500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v3{vertical-align:-9.701333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls29{letter-spacing:-0.864000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls34{letter-spacing:-0.456000pt;}
.ls1a{letter-spacing:-0.441600pt;}
.ls25{letter-spacing:-0.422400pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls35{letter-spacing:-0.304000pt;}
.ls1b{letter-spacing:-0.294400pt;}
.ls26{letter-spacing:-0.281600pt;}
.ls2a{letter-spacing:-0.224000pt;}
.ls39{letter-spacing:-0.146933pt;}
.ls1d{letter-spacing:-0.122667pt;}
.ls12{letter-spacing:-0.112000pt;}
.ls37{letter-spacing:-0.044992pt;}
.ls3b{letter-spacing:-0.030400pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.000767pt;}
.ls3{letter-spacing:0.001843pt;}
.ls50{letter-spacing:0.002703pt;}
.ls2{letter-spacing:0.003430pt;}
.ls44{letter-spacing:0.004267pt;}
.ls1c{letter-spacing:0.014720pt;}
.ls3a{letter-spacing:0.015200pt;}
.ls13{letter-spacing:0.016000pt;}
.ls17{letter-spacing:0.044160pt;}
.lsb{letter-spacing:0.048000pt;}
.lsa{letter-spacing:0.112000pt;}
.ls16{letter-spacing:0.147200pt;}
.ls28{letter-spacing:0.160000pt;}
.ls38{letter-spacing:0.219387pt;}
.ls2b{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.250240pt;}
.ls33{letter-spacing:0.273600pt;}
.ls14{letter-spacing:0.294400pt;}
.ls36{letter-spacing:0.304000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls40{letter-spacing:0.637762pt;}
.lsc{letter-spacing:0.800000pt;}
.ls8{letter-spacing:1.133683pt;}
.ls3d{letter-spacing:1.255312pt;}
.ls3c{letter-spacing:1.376375pt;}
.ls5{letter-spacing:1.654338pt;}
.ls3f{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.ls2f{letter-spacing:2.720000pt;}
.ls3e{letter-spacing:3.163733pt;}
.ls51{letter-spacing:10.597181pt;}
.ls6{letter-spacing:10.626533pt;}
.ls4b{letter-spacing:10.678814pt;}
.ls2c{letter-spacing:10.826924pt;}
.ls2d{letter-spacing:10.832158pt;}
.ls2e{letter-spacing:11.060267pt;}
.lsd{letter-spacing:11.745090pt;}
.ls20{letter-spacing:11.760188pt;}
.ls21{letter-spacing:11.765417pt;}
.ls4a{letter-spacing:11.772691pt;}
.lse{letter-spacing:11.810285pt;}
.lsf{letter-spacing:11.815555pt;}
.ls4e{letter-spacing:11.828726pt;}
.ls32{letter-spacing:11.849077pt;}
.ls31{letter-spacing:11.854306pt;}
.ls30{letter-spacing:11.859897pt;}
.ls54{letter-spacing:11.948608pt;}
.ls24{letter-spacing:11.950933pt;}
.ls1e{letter-spacing:11.952375pt;}
.ls43{letter-spacing:11.954133pt;}
.ls1f{letter-spacing:11.956267pt;}
.ls48{letter-spacing:11.959467pt;}
.ls46{letter-spacing:11.983282pt;}
.ls22{letter-spacing:12.024294pt;}
.ls23{letter-spacing:12.029736pt;}
.ls53{letter-spacing:12.039456pt;}
.ls55{letter-spacing:12.050176pt;}
.ls4f{letter-spacing:12.153422pt;}
.ls19{letter-spacing:12.198444pt;}
.ls18{letter-spacing:12.203886pt;}
.ls49{letter-spacing:12.218595pt;}
.ls27{letter-spacing:15.090018pt;}
.ls45{letter-spacing:15.229114pt;}
.ls42{letter-spacing:15.600356pt;}
.ls4d{letter-spacing:15.903624pt;}
.ls47{letter-spacing:16.473558pt;}
.ls52{letter-spacing:20.076173pt;}
.ls41{letter-spacing:20.455289pt;}
.ls1{letter-spacing:62.432533pt;}
.ls4{letter-spacing:64.314231pt;}
.ws6a{word-spacing:-13.510933pt;}
.ws40{word-spacing:-13.283467pt;}
.ws51{word-spacing:-13.157333pt;}
.ws87{word-spacing:-12.960000pt;}
.ws97{word-spacing:-12.920000pt;}
.ws3{word-spacing:-12.760670pt;}
.ws95{word-spacing:-12.616000pt;}
.ws94{word-spacing:-12.469067pt;}
.ws67{word-spacing:-12.016000pt;}
.ws30{word-spacing:-12.000000pt;}
.ws6f{word-spacing:-11.955200pt;}
.ws69{word-spacing:-11.776000pt;}
.ws98{word-spacing:-11.400000pt;}
.ws99{word-spacing:-11.369600pt;}
.ws68{word-spacing:-11.136000pt;}
.ws45{word-spacing:-11.040000pt;}
.ws2e{word-spacing:-10.720000pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws93{word-spacing:-10.488000pt;}
.ws2f{word-spacing:-10.400000pt;}
.ws91{word-spacing:-10.184000pt;}
.ws92{word-spacing:-9.880000pt;}
.ws43{word-spacing:-9.862400pt;}
.ws44{word-spacing:-9.568000pt;}
.ws57{word-spacing:-9.433600pt;}
.ws58{word-spacing:-9.152000pt;}
.ws96{word-spacing:-7.600000pt;}
.wsa3{word-spacing:-2.762961pt;}
.wsab{word-spacing:-2.444158pt;}
.ws6e{word-spacing:-2.391040pt;}
.ws7d{word-spacing:-2.391024pt;}
.wsb7{word-spacing:-2.284756pt;}
.ws20{word-spacing:-2.178489pt;}
.wsaa{word-spacing:-2.125355pt;}
.ws3f{word-spacing:-2.072221pt;}
.wsc8{word-spacing:-2.008474pt;}
.ws8e{word-spacing:-1.859685pt;}
.wse2{word-spacing:-1.817190pt;}
.wsbf{word-spacing:-1.806551pt;}
.wsf3{word-spacing:-1.769370pt;}
.ws22{word-spacing:-1.753418pt;}
.wsb0{word-spacing:-1.700284pt;}
.ws8{word-spacing:-1.696326pt;}
.wse3{word-spacing:-1.673728pt;}
.ws8c{word-spacing:-1.482445pt;}
.ws5c{word-spacing:-1.434624pt;}
.ws73{word-spacing:-1.386803pt;}
.wsbe{word-spacing:-1.381481pt;}
.wse4{word-spacing:-1.291162pt;}
.ws3b{word-spacing:-1.275213pt;}
.wsf0{word-spacing:-1.243341pt;}
.ws7e{word-spacing:-1.222079pt;}
.ws7{word-spacing:-1.175671pt;}
.ws77{word-spacing:-1.147699pt;}
.wsc1{word-spacing:-1.115811pt;}
.ws79{word-spacing:-1.099878pt;}
.ws80{word-spacing:-1.009543pt;}
.ws4e{word-spacing:-1.004237pt;}
.ws1{word-spacing:-0.956416pt;}
.ws75{word-spacing:-0.908595pt;}
.ws78{word-spacing:-0.898116pt;}
.ws17{word-spacing:-0.797008pt;}
.ws74{word-spacing:-0.765133pt;}
.wsd5{word-spacing:-0.717312pt;}
.wsb9{word-spacing:-0.690740pt;}
.ws29{word-spacing:-0.584473pt;}
.ws5e{word-spacing:-0.573850pt;}
.wsfc{word-spacing:-0.430387pt;}
.ws28{word-spacing:-0.371937pt;}
.wsd{word-spacing:-0.318803pt;}
.ws6c{word-spacing:-0.286925pt;}
.ws11{word-spacing:-0.265669pt;}
.ws35{word-spacing:-0.239104pt;}
.ws9{word-spacing:-0.212535pt;}
.ws34{word-spacing:-0.195871pt;}
.ws31{word-spacing:-0.191283pt;}
.wsf{word-spacing:-0.159402pt;}
.ws38{word-spacing:-0.143462pt;}
.ws8d{word-spacing:-0.107172pt;}
.ws14{word-spacing:-0.106268pt;}
.ws39{word-spacing:-0.095642pt;}
.wsc{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047821pt;}
.wsd0{word-spacing:-0.007663pt;}
.wsd6{word-spacing:-0.006212pt;}
.ws103{word-spacing:-0.006059pt;}
.ws2{word-spacing:-0.004237pt;}
.ws0{word-spacing:0.000000pt;}
.wsfa{word-spacing:0.000631pt;}
.ws54{word-spacing:0.047821pt;}
.ws19{word-spacing:0.053134pt;}
.ws60{word-spacing:0.095642pt;}
.wsa{word-spacing:0.106268pt;}
.ws32{word-spacing:0.143462pt;}
.ws1b{word-spacing:0.159402pt;}
.ws4c{word-spacing:0.191283pt;}
.ws18{word-spacing:0.212535pt;}
.ws33{word-spacing:0.239104pt;}
.wsb{word-spacing:0.265669pt;}
.ws50{word-spacing:0.267213pt;}
.ws6b{word-spacing:0.286925pt;}
.ws10{word-spacing:0.318803pt;}
.ws9b{word-spacing:0.334746pt;}
.ws13{word-spacing:0.371937pt;}
.wsd3{word-spacing:0.382566pt;}
.ws5b{word-spacing:0.430387pt;}
.ws4{word-spacing:0.499721pt;}
.ws41{word-spacing:0.531339pt;}
.ws4f{word-spacing:0.573850pt;}
.ws1c{word-spacing:0.584473pt;}
.ws12{word-spacing:0.637606pt;}
.ws72{word-spacing:0.669491pt;}
.ws21{word-spacing:0.690740pt;}
.ws2a{word-spacing:0.743874pt;}
.wsc0{word-spacing:0.797008pt;}
.wsd9{word-spacing:0.812954pt;}
.ws37{word-spacing:0.860774pt;}
.ws2d{word-spacing:0.903276pt;}
.ws36{word-spacing:0.908595pt;}
.ws63{word-spacing:0.956410pt;}
.ws9a{word-spacing:0.956416pt;}
.ws76{word-spacing:1.052058pt;}
.ws8f{word-spacing:1.115811pt;}
.ws48{word-spacing:1.147699pt;}
.ws65{word-spacing:1.168945pt;}
.ws47{word-spacing:1.195520pt;}
.wsb4{word-spacing:1.275213pt;}
.ws71{word-spacing:1.291162pt;}
.wsc3{word-spacing:1.381481pt;}
.ws26{word-spacing:1.434614pt;}
.ws55{word-spacing:1.434624pt;}
.ws46{word-spacing:1.482445pt;}
.ws66{word-spacing:1.487748pt;}
.wscd{word-spacing:1.578086pt;}
.wsa1{word-spacing:1.594016pt;}
.wsbc{word-spacing:1.647150pt;}
.ws88{word-spacing:1.673728pt;}
.wsae{word-spacing:1.700284pt;}
.ws61{word-spacing:1.753418pt;}
.ws62{word-spacing:1.806551pt;}
.wsf9{word-spacing:1.817190pt;}
.wsbd{word-spacing:1.859685pt;}
.ws2b{word-spacing:1.912819pt;}
.ws49{word-spacing:1.960653pt;}
.ws8a{word-spacing:2.104115pt;}
.wsa7{word-spacing:2.125355pt;}
.wsb2{word-spacing:2.178489pt;}
.ws7b{word-spacing:2.231622pt;}
.wsbb{word-spacing:2.337890pt;}
.wsda{word-spacing:2.391040pt;}
.ws1d{word-spacing:2.550432pt;}
.ws89{word-spacing:2.582323pt;}
.ws6d{word-spacing:2.630144pt;}
.ws25{word-spacing:2.656693pt;}
.wsce{word-spacing:2.725786pt;}
.wsa6{word-spacing:2.762961pt;}
.ws100{word-spacing:2.773606pt;}
.ws3e{word-spacing:2.816095pt;}
.wsde{word-spacing:2.864282pt;}
.wsd4{word-spacing:2.866150pt;}
.wsef{word-spacing:2.866679pt;}
.wse7{word-spacing:2.867277pt;}
.wsf7{word-spacing:2.868890pt;}
.wsa8{word-spacing:2.869229pt;}
.ws6{word-spacing:2.869248pt;}
.wsc9{word-spacing:2.872747pt;}
.ws2c{word-spacing:2.922363pt;}
.wsd8{word-spacing:2.964890pt;}
.ws9d{word-spacing:2.975497pt;}
.wsdc{word-spacing:3.012710pt;}
.ws84{word-spacing:3.081764pt;}
.wse9{word-spacing:3.108352pt;}
.ws7f{word-spacing:3.134898pt;}
.wsf8{word-spacing:3.156173pt;}
.ws15{word-spacing:3.185311pt;}
.ws16{word-spacing:3.188032pt;}
.wsb3{word-spacing:3.241166pt;}
.wscb{word-spacing:3.251814pt;}
.ws1a{word-spacing:3.294300pt;}
.wsd2{word-spacing:3.299635pt;}
.ws4b{word-spacing:3.347456pt;}
.ws9c{word-spacing:3.395277pt;}
.ws1f{word-spacing:3.400567pt;}
.ws5d{word-spacing:3.490918pt;}
.ws3c{word-spacing:3.559969pt;}
.wscf{word-spacing:3.586560pt;}
.wsc7{word-spacing:3.634381pt;}
.wsb6{word-spacing:3.666237pt;}
.wsb5{word-spacing:3.719371pt;}
.ws70{word-spacing:3.825664pt;}
.ws7a{word-spacing:3.878772pt;}
.wseb{word-spacing:3.969126pt;}
.ws81{word-spacing:3.985040pt;}
.wsc6{word-spacing:4.064768pt;}
.ws7c{word-spacing:4.144442pt;}
.ws8b{word-spacing:4.160410pt;}
.wsa2{word-spacing:4.197575pt;}
.ws4a{word-spacing:4.208230pt;}
.ws3d{word-spacing:4.303843pt;}
.ws4d{word-spacing:4.303872pt;}
.wsee{word-spacing:4.351693pt;}
.wse{word-spacing:4.356977pt;}
.wsc5{word-spacing:4.399514pt;}
.ws56{word-spacing:4.447334pt;}
.ws83{word-spacing:4.516379pt;}
.wsd7{word-spacing:4.542976pt;}
.wsaf{word-spacing:4.622646pt;}
.wse1{word-spacing:4.638618pt;}
.wsa5{word-spacing:4.782048pt;}
.wsf6{word-spacing:4.829901pt;}
.ws90{word-spacing:4.941450pt;}
.ws9f{word-spacing:5.047717pt;}
.ws9e{word-spacing:5.100851pt;}
.ws5f{word-spacing:5.212467pt;}
.ws3a{word-spacing:5.313387pt;}
.wsd1{word-spacing:5.451571pt;}
.ws27{word-spacing:5.472788pt;}
.wsac{word-spacing:5.525922pt;}
.wsfd{word-spacing:5.738496pt;}
.ws85{word-spacing:5.950993pt;}
.wsb1{word-spacing:6.163529pt;}
.wsfe{word-spacing:6.312346pt;}
.wscc{word-spacing:6.407987pt;}
.ws64{word-spacing:6.429198pt;}
.wsf4{word-spacing:6.455808pt;}
.ws5a{word-spacing:6.742733pt;}
.ws86{word-spacing:6.907403pt;}
.ws59{word-spacing:7.125299pt;}
.wsc4{word-spacing:7.173072pt;}
.wsec{word-spacing:7.699149pt;}
.wsff{word-spacing:7.890432pt;}
.wsf5{word-spacing:8.129536pt;}
.wse5{word-spacing:8.416461pt;}
.wsc2{word-spacing:8.660820pt;}
.wsa9{word-spacing:8.820222pt;}
.ws82{word-spacing:8.926490pt;}
.wsb8{word-spacing:9.085891pt;}
.ws101{word-spacing:9.468518pt;}
.wsdd{word-spacing:9.803264pt;}
.wsdb{word-spacing:9.898906pt;}
.wsa4{word-spacing:9.936033pt;}
.ws102{word-spacing:10.281472pt;}
.wse6{word-spacing:10.377114pt;}
.wsba{word-spacing:10.467372pt;}
.wsad{word-spacing:10.679907pt;}
.wsca{word-spacing:10.998784pt;}
.wse8{word-spacing:11.046605pt;}
.ws53{word-spacing:11.476992pt;}
.wsed{word-spacing:11.811738pt;}
.ws52{word-spacing:11.955200pt;}
.ws42{word-spacing:12.220789pt;}
.wsea{word-spacing:12.624691pt;}
.ws24{word-spacing:12.911530pt;}
.wsf2{word-spacing:13.676749pt;}
.wsfb{word-spacing:14.250598pt;}
.wsf1{word-spacing:18.745754pt;}
.wsa0{word-spacing:18.862523pt;}
.wsdf{word-spacing:18.889216pt;}
.ws23{word-spacing:21.253547pt;}
.wse0{word-spacing:30.700954pt;}
._0{margin-left:-31.595439pt;}
._22{margin-left:-7.113609pt;}
._8{margin-left:-6.183707pt;}
._7{margin-left:-4.835182pt;}
._1{margin-left:-3.554970pt;}
._1c{margin-left:-2.658381pt;}
._2{margin-left:-1.733239pt;}
._5{width:0.969929pt;}
._12{width:1.903093pt;}
._13{width:2.944907pt;}
._15{width:4.459954pt;}
._14{width:5.418667pt;}
._1a{width:6.977280pt;}
._1b{width:8.017493pt;}
._10{width:8.917247pt;}
._b{width:10.141887pt;}
._3{width:11.110656pt;}
._1d{width:12.061404pt;}
._16{width:13.772390pt;}
._4{width:14.824448pt;}
._32{width:15.730342pt;}
._6{width:16.716990pt;}
._18{width:17.726533pt;}
._a{width:18.809389pt;}
._28{width:19.712665pt;}
._f{width:20.681852pt;}
._21{width:21.919109pt;}
._2b{width:23.325767pt;}
._e{width:24.866650pt;}
._1f{width:26.228371pt;}
._2d{width:27.179362pt;}
._17{width:28.242039pt;}
._9{width:29.648698pt;}
._2e{width:30.764509pt;}
._24{width:32.517926pt;}
._29{width:34.198032pt;}
._33{width:35.329760pt;}
._20{width:37.067261pt;}
._2f{width:38.415786pt;}
._31{width:40.074330pt;}
._23{width:43.655860pt;}
._2a{width:47.317098pt;}
._2c{width:49.414496pt;}
._30{width:54.993920pt;}
._c{width:750.292987pt;}
._1e{width:1184.156437pt;}
._19{width:1237.008742pt;}
._27{width:1258.366218pt;}
._26{width:1323.946667pt;}
._11{width:1345.066667pt;}
._25{width:1679.970400pt;}
._d{width:1701.223733pt;}
.fs18{font-size:30.400000pt;}
.fs6{font-size:37.193600pt;}
.fs9{font-size:37.276537pt;}
.fs12{font-size:37.734400pt;}
.fsf{font-size:39.449600pt;}
.fs5{font-size:40.381867pt;}
.fs15{font-size:40.736000pt;}
.fs8{font-size:41.988267pt;}
.fs19{font-size:42.077867pt;}
.fs13{font-size:42.240000pt;}
.fsa{font-size:42.507200pt;}
.fsb{font-size:42.880000pt;}
.fs10{font-size:44.160000pt;}
.fs16{font-size:45.600000pt;}
.fs14{font-size:46.745600pt;}
.fs0{font-size:47.035520pt;}
.fs7{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs11{font-size:48.870400pt;}
.fse{font-size:49.829333pt;}
.fs1{font-size:50.395200pt;}
.fs17{font-size:50.464000pt;}
.fsd{font-size:53.120000pt;}
.fs3{font-size:53.133867pt;}
.fs1a{font-size:55.365867pt;}
.fs2{font-size:60.474240pt;}
.fs4{font-size:95.641600pt;}
.y159{bottom:-465.677333pt;}
.y172{bottom:-448.237333pt;}
.y171{bottom:-430.157333pt;}
.y170{bottom:-412.237333pt;}
.y16f{bottom:-394.157333pt;}
.y16e{bottom:-376.242667pt;}
.y63{bottom:-361.757333pt;}
.y16d{bottom:-358.322667pt;}
.y16c{bottom:-340.242667pt;}
.y16b{bottom:-322.322667pt;}
.yad{bottom:-306.388213pt;}
.y16a{bottom:-288.562667pt;}
.ybf{bottom:-282.394613pt;}
.y169{bottom:-271.282667pt;}
.ybe{bottom:-266.497013pt;}
.yd3{bottom:-261.216000pt;}
.y168{bottom:-254.002667pt;}
.ybd{bottom:-250.452213pt;}
.y167{bottom:-236.562667pt;}
.ybc{bottom:-234.559520pt;}
.ydf{bottom:-233.856000pt;}
.y166{bottom:-219.242667pt;}
.ybb{bottom:-218.661920pt;}
.yde{bottom:-215.776000pt;}
.y70{bottom:-214.882667pt;}
.yba{bottom:-202.617120pt;}
.y165{bottom:-201.962667pt;}
.ydd{bottom:-197.856000pt;}
.y6f{bottom:-197.602667pt;}
.yb9{bottom:-186.425120pt;}
.y164{bottom:-184.522667pt;}
.y6e{bottom:-180.162667pt;}
.ydc{bottom:-179.781333pt;}
.yb8{bottom:-170.085920pt;}
.y163{bottom:-167.242667pt;}
.y6d{bottom:-162.882667pt;}
.ydb{bottom:-161.861333pt;}
.yb7{bottom:-154.188320pt;}
.y162{bottom:-149.962667pt;}
.y6c{bottom:-145.602667pt;}
.yb6{bottom:-138.290720pt;}
.y161{bottom:-132.522667pt;}
.yda{bottom:-128.261333pt;}
.y6b{bottom:-128.122667pt;}
.yb5{bottom:-122.245920pt;}
.y160{bottom:-115.242667pt;}
.y6a{bottom:-110.842667pt;}
.yd9{bottom:-110.821333pt;}
.yb4{bottom:-106.348320pt;}
.y15f{bottom:-97.962667pt;}
.y69{bottom:-93.562667pt;}
.yd8{bottom:-93.541333pt;}
.yb3{bottom:-90.413920pt;}
.y18d{bottom:-84.818533pt;}
.y15e{bottom:-80.522667pt;}
.yd7{bottom:-76.261333pt;}
.y68{bottom:-76.122667pt;}
.yb2{bottom:-74.369120pt;}
.y15d{bottom:-63.242667pt;}
.y67{bottom:-58.842667pt;}
.yd6{bottom:-58.821333pt;}
.yb1{bottom:-58.471520pt;}
.y19e{bottom:-55.178533pt;}
.y15c{bottom:-45.962667pt;}
.yb0{bottom:-42.573920pt;}
.y66{bottom:-41.562667pt;}
.yd5{bottom:-41.541333pt;}
.y19d{bottom:-38.762533pt;}
.ye8{bottom:-29.870368pt;}
.y15b{bottom:-28.522667pt;}
.yaf{bottom:-26.529120pt;}
.y10c{bottom:-25.917200pt;}
.y65{bottom:-24.122667pt;}
.y19c{bottom:-22.194533pt;}
.yd4{bottom:-19.581333pt;}
.y15a{bottom:-6.762667pt;}
.yae{bottom:-6.509920pt;}
.yf1{bottom:-3.259168pt;}
.y64{bottom:-2.362667pt;}
.y19b{bottom:-1.375600pt;}
.y126{bottom:-0.957200pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:3.044747pt;}
.y4{bottom:8.420534pt;}
.y15{bottom:12.578910pt;}
.y3{bottom:25.722550pt;}
.y2{bottom:29.128174pt;}
.y31{bottom:56.693333pt;}
.y201{bottom:97.858667pt;}
.y1c3{bottom:101.472000pt;}
.y1aa{bottom:101.672000pt;}
.y202{bottom:102.680000pt;}
.y252{bottom:105.990667pt;}
.y188{bottom:107.536000pt;}
.y1d8{bottom:111.620000pt;}
.y285{bottom:114.066667pt;}
.y200{bottom:115.870667pt;}
.y30{bottom:116.042667pt;}
.y1a9{bottom:118.768000pt;}
.yfd{bottom:118.797333pt;}
.y1c2{bottom:119.484000pt;}
.yaa{bottom:119.590667pt;}
.y21e{bottom:120.016000pt;}
.y251{bottom:123.205333pt;}
.y187{bottom:125.548000pt;}
.yd0{bottom:127.476000pt;}
.y1d7{bottom:129.633333pt;}
.y284{bottom:131.281333pt;}
.y21d{bottom:133.525333pt;}
.y1ff{bottom:133.884000pt;}
.y2f{bottom:134.056000pt;}
.y1a8{bottom:135.864000pt;}
.yfc{bottom:135.893333pt;}
.y1c1{bottom:137.496000pt;}
.ya9{bottom:137.602667pt;}
.y250{bottom:140.421333pt;}
.y186{bottom:143.560000pt;}
.ycf{bottom:144.572000pt;}
.y1d6{bottom:147.645333pt;}
.y283{bottom:148.497333pt;}
.y1a7{bottom:150.628000pt;}
.y60{bottom:150.646667pt;}
.y1fe{bottom:151.896000pt;}
.y2e{bottom:152.068000pt;}
.y1a6{bottom:152.960000pt;}
.yfb{bottom:152.989333pt;}
.y21c{bottom:155.005333pt;}
.y1c0{bottom:155.509333pt;}
.ya8{bottom:155.616000pt;}
.y24f{bottom:157.636000pt;}
.y185{bottom:161.573333pt;}
.yce{bottom:161.668000pt;}
.y1d5{bottom:165.657333pt;}
.y282{bottom:165.713333pt;}
.y21b{bottom:168.514667pt;}
.y5f{bottom:168.660000pt;}
.y1fd{bottom:169.909333pt;}
.y1a4{bottom:170.056000pt;}
.y2d{bottom:170.081333pt;}
.yfa{bottom:170.085333pt;}
.y1bf{bottom:173.521333pt;}
.ya7{bottom:173.628000pt;}
.y1a5{bottom:174.396000pt;}
.y24e{bottom:174.852000pt;}
.ycd{bottom:178.764000pt;}
.y184{bottom:179.585333pt;}
.y21a{bottom:182.024000pt;}
.y281{bottom:182.928000pt;}
.y1d4{bottom:183.670667pt;}
.y12c{bottom:184.648000pt;}
.y5e{bottom:186.672000pt;}
.y1a3{bottom:187.152000pt;}
.yf9{bottom:187.181333pt;}
.y1fc{bottom:187.921333pt;}
.y2c{bottom:188.093333pt;}
.y1be{bottom:191.534667pt;}
.ya6{bottom:191.640000pt;}
.y24d{bottom:192.068000pt;}
.ycc{bottom:195.860000pt;}
.y280{bottom:200.144000pt;}
.y12b{bottom:201.744000pt;}
.y7c{bottom:203.154667pt;}
.y219{bottom:203.502667pt;}
.y1a2{bottom:204.248000pt;}
.yf8{bottom:204.277333pt;}
.y5d{bottom:204.685333pt;}
.y288{bottom:205.285333pt;}
.y183{bottom:205.568000pt;}
.y1fb{bottom:205.933333pt;}
.y2b{bottom:206.105333pt;}
.ye5{bottom:206.877333pt;}
.y24c{bottom:209.282667pt;}
.y1bd{bottom:209.546667pt;}
.ya5{bottom:209.653333pt;}
.ycb{bottom:212.956000pt;}
.y218{bottom:217.012000pt;}
.y27f{bottom:217.358667pt;}
.y12a{bottom:218.840000pt;}
.y7b{bottom:220.249333pt;}
.y1a1{bottom:221.342667pt;}
.yf7{bottom:221.373333pt;}
.y287{bottom:222.501333pt;}
.y5c{bottom:222.697333pt;}
.ye4{bottom:223.973333pt;}
.y2a{bottom:224.118667pt;}
.y24b{bottom:226.498667pt;}
.y1bc{bottom:227.558667pt;}
.ya4{bottom:227.665333pt;}
.yca{bottom:230.050667pt;}
.y156{bottom:230.178667pt;}
.y217{bottom:230.521333pt;}
.y1fa{bottom:231.916000pt;}
.y27e{bottom:234.574667pt;}
.y129{bottom:235.936000pt;}
.y7a{bottom:237.345333pt;}
.y1a0{bottom:238.438667pt;}
.yf6{bottom:238.468000pt;}
.y286{bottom:239.716000pt;}
.y1d3{bottom:240.604000pt;}
.y5b{bottom:240.709333pt;}
.ye3{bottom:241.069333pt;}
.y182{bottom:241.648000pt;}
.y24a{bottom:243.713333pt;}
.y1bb{bottom:245.572000pt;}
.ya3{bottom:245.678667pt;}
.yc9{bottom:247.146667pt;}
.y155{bottom:248.190667pt;}
.y29{bottom:250.101333pt;}
.y27d{bottom:251.790667pt;}
.y128{bottom:253.032000pt;}
.y79{bottom:254.441333pt;}
.y19f{bottom:255.534667pt;}
.yf5{bottom:255.564000pt;}
.ye2{bottom:258.165333pt;}
.y5a{bottom:258.722667pt;}
.y181{bottom:258.744000pt;}
.y216{bottom:259.972000pt;}
.y249{bottom:260.929333pt;}
.y1f9{bottom:262.866667pt;}
.y1ba{bottom:263.584000pt;}
.ya2{bottom:263.690667pt;}
.yc8{bottom:264.242667pt;}
.y154{bottom:266.204000pt;}
.y27c{bottom:269.005333pt;}
.y127{bottom:270.128000pt;}
.y78{bottom:271.537333pt;}
.y1d2{bottom:271.554667pt;}
.yf4{bottom:272.660000pt;}
.ye1{bottom:275.261333pt;}
.y180{bottom:275.840000pt;}
.y59{bottom:276.734667pt;}
.y215{bottom:277.984000pt;}
.y248{bottom:278.145333pt;}
.y18b{bottom:280.785333pt;}
.y1f8{bottom:280.880000pt;}
.yc7{bottom:281.338667pt;}
.y1b9{bottom:281.597333pt;}
.ya1{bottom:281.702667pt;}
.y153{bottom:284.216000pt;}
.y27b{bottom:286.221333pt;}
.y77{bottom:288.633333pt;}
.y1d1{bottom:289.566667pt;}
.yf3{bottom:289.756000pt;}
.ye0{bottom:292.357333pt;}
.y17f{bottom:292.934667pt;}
.y58{bottom:294.748000pt;}
.y247{bottom:295.360000pt;}
.y10a{bottom:295.378533pt;}
.y214{bottom:295.996000pt;}
.yc6{bottom:298.434667pt;}
.y1f7{bottom:298.892000pt;}
.y1b8{bottom:299.609333pt;}
.ya0{bottom:299.716000pt;}
.y152{bottom:302.228000pt;}
.y27a{bottom:303.437333pt;}
.y76{bottom:305.729333pt;}
.yf2{bottom:306.852000pt;}
.y1d0{bottom:307.580000pt;}
.y17e{bottom:310.030667pt;}
.y246{bottom:312.576000pt;}
.y57{bottom:312.760000pt;}
.y213{bottom:314.009333pt;}
.yc5{bottom:315.530667pt;}
.y1f6{bottom:316.905333pt;}
.yd1{bottom:317.608000pt;}
.y1b7{bottom:317.621333pt;}
.y9f{bottom:317.728000pt;}
.y28{bottom:318.020000pt;}
.y151{bottom:320.241333pt;}
.y279{bottom:320.652000pt;}
.y75{bottom:322.825333pt;}
.y1cf{bottom:325.592000pt;}
.y17d{bottom:327.126667pt;}
.y245{bottom:329.790667pt;}
.y56{bottom:330.772000pt;}
.ye6{bottom:332.102315pt;}
.yc4{bottom:332.626667pt;}
.y1f5{bottom:334.917333pt;}
.y1b6{bottom:335.634667pt;}
.y9e{bottom:335.741333pt;}
.y278{bottom:337.868000pt;}
.y150{bottom:338.253333pt;}
.y74{bottom:339.921333pt;}
.y212{bottom:339.992000pt;}
.y1ce{bottom:343.604000pt;}
.y17c{bottom:344.222667pt;}
.y244{bottom:347.006667pt;}
.y55{bottom:348.785333pt;}
.yc3{bottom:349.722667pt;}
.y27{bottom:351.972000pt;}
.y1f4{bottom:352.929333pt;}
.y1b5{bottom:353.646667pt;}
.y9d{bottom:353.753333pt;}
.y277{bottom:355.082667pt;}
.y14f{bottom:356.266667pt;}
.y73{bottom:357.017333pt;}
.y17b{bottom:361.318667pt;}
.y1cd{bottom:361.617333pt;}
.y243{bottom:364.222667pt;}
.y54{bottom:366.797333pt;}
.yc2{bottom:366.818667pt;}
.y26{bottom:369.985333pt;}
.y1f3{bottom:370.942667pt;}
.y1b4{bottom:371.660000pt;}
.y9c{bottom:371.765333pt;}
.y276{bottom:372.298667pt;}
.y72{bottom:374.113333pt;}
.y14e{bottom:374.278667pt;}
.y17a{bottom:378.414667pt;}
.y1cc{bottom:379.629333pt;}
.y242{bottom:381.437333pt;}
.yc1{bottom:383.914667pt;}
.y1f2{bottom:386.528000pt;}
.y25{bottom:387.997333pt;}
.y1f1{bottom:388.954667pt;}
.y275{bottom:389.514667pt;}
.y1b3{bottom:389.672000pt;}
.y9b{bottom:389.778667pt;}
.y71{bottom:391.208000pt;}
.y14d{bottom:392.290667pt;}
.y53{bottom:392.780000pt;}
.y179{bottom:395.510667pt;}
.y1cb{bottom:397.642667pt;}
.y241{bottom:398.653333pt;}
.yc0{bottom:401.009333pt;}
.y24{bottom:406.009333pt;}
.y274{bottom:406.729333pt;}
.y1f0{bottom:406.968000pt;}
.y1b2{bottom:407.684000pt;}
.y52{bottom:407.790667pt;}
.y14c{bottom:410.304000pt;}
.y178{bottom:412.606667pt;}
.y1ca{bottom:415.654667pt;}
.y240{bottom:415.868000pt;}
.y61{bottom:416.458667pt;}
.y273{bottom:423.945333pt;}
.y23{bottom:424.022667pt;}
.y1ef{bottom:424.980000pt;}
.y1b1{bottom:425.697333pt;}
.y9a{bottom:425.802667pt;}
.yab{bottom:426.260000pt;}
.y14b{bottom:428.316000pt;}
.y177{bottom:429.702667pt;}
.y23f{bottom:433.084000pt;}
.y1c9{bottom:433.666667pt;}
.y51{bottom:438.741333pt;}
.y272{bottom:441.160000pt;}
.y22{bottom:442.034667pt;}
.y1ee{bottom:442.992000pt;}
.y1b0{bottom:443.709333pt;}
.y99{bottom:443.816000pt;}
.y14a{bottom:446.329333pt;}
.y176{bottom:446.798667pt;}
.y1c8{bottom:449.253333pt;}
.y23e{bottom:450.300000pt;}
.y1c7{bottom:451.680000pt;}
.y271{bottom:458.376000pt;}
.y21{bottom:460.048000pt;}
.y1ed{bottom:461.005333pt;}
.y1af{bottom:461.722667pt;}
.y98{bottom:461.828000pt;}
.y175{bottom:463.893333pt;}
.y149{bottom:464.341333pt;}
.y211{bottom:465.826667pt;}
.y23d{bottom:467.514667pt;}
.y50{bottom:469.692000pt;}
.y270{bottom:475.592000pt;}
.y125{bottom:476.704133pt;}
.y20{bottom:478.060000pt;}
.y1eb{bottom:479.017333pt;}
.y1ae{bottom:479.734667pt;}
.y97{bottom:479.841333pt;}
.y174{bottom:480.989333pt;}
.y148{bottom:482.353333pt;}
.y1ec{bottom:483.840000pt;}
.y23c{bottom:484.730667pt;}
.y1c6{bottom:485.278667pt;}
.y4f{bottom:487.704000pt;}
.y26f{bottom:492.806667pt;}
.y124{bottom:494.624133pt;}
.y1f{bottom:496.072000pt;}
.y1ad{bottom:497.746667pt;}
.y173{bottom:498.085333pt;}
.y147{bottom:500.366667pt;}
.y23b{bottom:501.946667pt;}
.y1c5{bottom:503.290667pt;}
.y1ea{bottom:505.000000pt;}
.y4e{bottom:505.717333pt;}
.y96{bottom:505.824000pt;}
.y26e{bottom:510.022667pt;}
.y123{bottom:512.704133pt;}
.y1e{bottom:514.085333pt;}
.y1ac{bottom:515.760000pt;}
.y158{bottom:518.290667pt;}
.y146{bottom:518.378667pt;}
.y23a{bottom:519.161333pt;}
.y95{bottom:520.834667pt;}
.y1c4{bottom:521.302667pt;}
.y157{bottom:523.336000pt;}
.y4d{bottom:523.729333pt;}
.y26d{bottom:527.237333pt;}
.y122{bottom:530.624133pt;}
.y1d{bottom:532.097333pt;}
.y1ab{bottom:533.772000pt;}
.y1e9{bottom:535.950667pt;}
.y239{bottom:536.377333pt;}
.y145{bottom:536.392000pt;}
.y4c{bottom:541.742667pt;}
.y26c{bottom:544.453333pt;}
.y121{bottom:548.704133pt;}
.y1c{bottom:550.110667pt;}
.y94{bottom:551.785333pt;}
.y238{bottom:553.592000pt;}
.y1e8{bottom:553.964000pt;}
.y144{bottom:554.404000pt;}
.y4b{bottom:559.754667pt;}
.y26b{bottom:561.669333pt;}
.y120{bottom:566.624133pt;}
.y1b{bottom:568.122667pt;}
.y93{bottom:569.797333pt;}
.y237{bottom:570.808000pt;}
.y1e7{bottom:571.976000pt;}
.y4a{bottom:577.766667pt;}
.y26a{bottom:578.884000pt;}
.y143{bottom:580.386667pt;}
.y11f{bottom:584.544133pt;}
.y1a{bottom:586.134667pt;}
.y92{bottom:587.809333pt;}
.y236{bottom:588.024000pt;}
.y1e6{bottom:589.988000pt;}
.y142{bottom:595.397333pt;}
.y49{bottom:595.780000pt;}
.y269{bottom:596.100000pt;}
.yac{bottom:598.862347pt;}
.y11e{bottom:602.624133pt;}
.y19{bottom:604.148000pt;}
.y235{bottom:605.238667pt;}
.y19a{bottom:605.509733pt;}
.y91{bottom:605.822667pt;}
.y1e5{bottom:608.001333pt;}
.y210{bottom:612.822667pt;}
.y268{bottom:613.314667pt;}
.y48{bottom:613.792000pt;}
.y11d{bottom:620.544133pt;}
.y18{bottom:622.160000pt;}
.y62{bottom:622.210667pt;}
.y234{bottom:622.454667pt;}
.y199{bottom:622.533733pt;}
.y90{bottom:623.834667pt;}
.y1e4{bottom:626.013333pt;}
.y141{bottom:626.348000pt;}
.y267{bottom:630.530667pt;}
.y47{bottom:631.805333pt;}
.y20f{bottom:633.984000pt;}
.y11c{bottom:638.624133pt;}
.y233{bottom:639.669333pt;}
.y198{bottom:639.709733pt;}
.y17{bottom:640.173333pt;}
.y8f{bottom:641.846667pt;}
.y1e2{bottom:644.026667pt;}
.y140{bottom:644.360000pt;}
.y266{bottom:647.746667pt;}
.y1e3{bottom:648.848000pt;}
.y46{bottom:649.817333pt;}
.y11b{bottom:656.544133pt;}
.y197{bottom:656.733733pt;}
.y232{bottom:656.885333pt;}
.y8e{bottom:659.860000pt;}
.y13f{bottom:662.373333pt;}
.y20e{bottom:664.934667pt;}
.y265{bottom:664.961333pt;}
.y45{bottom:667.829333pt;}
.y1e1{bottom:670.008000pt;}
.y13{bottom:671.668000pt;}
.y14{bottom:671.668048pt;}
.y196{bottom:673.909733pt;}
.y231{bottom:674.101333pt;}
.y8d{bottom:677.872000pt;}
.y13e{bottom:680.385333pt;}
.y264{bottom:682.177333pt;}
.y11a{bottom:682.664133pt;}
.y20d{bottom:682.946667pt;}
.y44{bottom:685.842667pt;}
.y195{bottom:690.933733pt;}
.y230{bottom:691.316000pt;}
.yf0{bottom:695.761205pt;}
.y8c{bottom:695.885333pt;}
.y13d{bottom:698.397333pt;}
.y263{bottom:699.392000pt;}
.y119{bottom:700.584133pt;}
.y1e0{bottom:700.958667pt;}
.y43{bottom:703.854667pt;}
.y12{bottom:707.016000pt;}
.y194{bottom:707.957733pt;}
.y22f{bottom:708.532000pt;}
.yef{bottom:711.530805pt;}
.y8b{bottom:713.897333pt;}
.y13c{bottom:716.410667pt;}
.y262{bottom:716.608000pt;}
.y1df{bottom:718.972000pt;}
.y42{bottom:721.868000pt;}
.yd2{bottom:722.752000pt;}
.y193{bottom:725.133733pt;}
.y22e{bottom:725.746667pt;}
.yee{bottom:727.441205pt;}
.y11{bottom:727.494667pt;}
.y8a{bottom:731.909333pt;}
.y261{bottom:733.824000pt;}
.y118{bottom:734.184133pt;}
.y13b{bottom:734.422667pt;}
.y1de{bottom:736.984000pt;}
.y10{bottom:739.294667pt;}
.y41{bottom:739.880000pt;}
.y192{bottom:742.157733pt;}
.y22d{bottom:742.962667pt;}
.yed{bottom:743.210805pt;}
.y89{bottom:749.922667pt;}
.y260{bottom:751.038667pt;}
.y117{bottom:751.624133pt;}
.y13a{bottom:752.436000pt;}
.y1dd{bottom:754.997333pt;}
.y40{bottom:757.892000pt;}
.yec{bottom:759.121205pt;}
.y191{bottom:759.333733pt;}
.yf{bottom:759.773333pt;}
.y22c{bottom:760.178667pt;}
.y88{bottom:767.934667pt;}
.y25f{bottom:768.254667pt;}
.y116{bottom:768.904133pt;}
.y139{bottom:770.448000pt;}
.y109{bottom:770.937333pt;}
.y1dc{bottom:773.009333pt;}
.yeb{bottom:774.890805pt;}
.y3f{bottom:775.905333pt;}
.ye{bottom:775.913333pt;}
.y190{bottom:776.357733pt;}
.y22b{bottom:777.393333pt;}
.y25e{bottom:785.469333pt;}
.y87{bottom:785.948000pt;}
.y115{bottom:786.184133pt;}
.y138{bottom:788.460000pt;}
.y108{bottom:788.949333pt;}
.yea{bottom:790.801205pt;}
.y20c{bottom:791.021333pt;}
.yd{bottom:792.053333pt;}
.y18f{bottom:793.533733pt;}
.y3e{bottom:793.917333pt;}
.y22a{bottom:794.609333pt;}
.y1db{bottom:798.992000pt;}
.y25d{bottom:802.685333pt;}
.y114{bottom:803.624133pt;}
.y86{bottom:803.960000pt;}
.ye9{bottom:806.594272pt;}
.y107{bottom:806.962667pt;}
.yc{bottom:808.192000pt;}
.y20b{bottom:809.034667pt;}
.y229{bottom:811.824000pt;}
.y3d{bottom:811.930667pt;}
.y18e{bottom:818.183067pt;}
.y25c{bottom:819.901333pt;}
.yb{bottom:819.992000pt;}
.y113{bottom:820.904133pt;}
.y85{bottom:821.972000pt;}
.y137{bottom:822.413333pt;}
.y106{bottom:824.974667pt;}
.y20a{bottom:827.046667pt;}
.y228{bottom:829.040000pt;}
.y3c{bottom:829.942667pt;}
.ye7{bottom:836.021472pt;}
.y25b{bottom:837.116000pt;}
.y112{bottom:838.184133pt;}
.y136{bottom:839.509333pt;}
.y84{bottom:839.985333pt;}
.ya{bottom:840.472000pt;}
.y105{bottom:842.986667pt;}
.y209{bottom:845.060000pt;}
.y227{bottom:846.256000pt;}
.y3b{bottom:847.954667pt;}
.y18c{bottom:849.951067pt;}
.y1da{bottom:852.777333pt;}
.y25a{bottom:854.332000pt;}
.y111{bottom:855.624133pt;}
.y135{bottom:856.605333pt;}
.y83{bottom:857.997333pt;}
.y9{bottom:860.241333pt;}
.y104{bottom:861.000000pt;}
.y207{bottom:863.072000pt;}
.y226{bottom:863.470667pt;}
.y3a{bottom:865.968000pt;}
.y208{bottom:867.893333pt;}
.y259{bottom:871.546667pt;}
.y110{bottom:872.904133pt;}
.y134{bottom:873.701333pt;}
.y82{bottom:876.010667pt;}
.y103{bottom:879.012000pt;}
.y225{bottom:880.686667pt;}
.y205{bottom:881.084000pt;}
.y39{bottom:883.980000pt;}
.y206{bottom:885.906667pt;}
.y258{bottom:888.762667pt;}
.y10f{bottom:890.184133pt;}
.y133{bottom:890.797333pt;}
.y81{bottom:894.022667pt;}
.y102{bottom:897.025333pt;}
.y224{bottom:897.901333pt;}
.y8{bottom:898.178667pt;}
.y204{bottom:899.097333pt;}
.y18a{bottom:899.566667pt;}
.y38{bottom:901.993333pt;}
.y257{bottom:905.978667pt;}
.y1d9{bottom:906.814667pt;}
.y10e{bottom:907.624133pt;}
.y132{bottom:907.893333pt;}
.y80{bottom:912.034667pt;}
.y101{bottom:915.037333pt;}
.y223{bottom:915.117333pt;}
.y37{bottom:920.005333pt;}
.y256{bottom:923.193333pt;}
.y10d{bottom:924.930800pt;}
.y131{bottom:924.988000pt;}
.y203{bottom:925.080000pt;}
.y7{bottom:925.198667pt;}
.y7f{bottom:930.048000pt;}
.y222{bottom:932.333333pt;}
.y100{bottom:933.049333pt;}
.y189{bottom:935.592000pt;}
.y36{bottom:938.017333pt;}
.y255{bottom:940.409333pt;}
.y130{bottom:942.084000pt;}
.y7e{bottom:948.060000pt;}
.y221{bottom:949.548000pt;}
.yff{bottom:951.062667pt;}
.y6{bottom:952.217333pt;}
.y35{bottom:956.030667pt;}
.y254{bottom:957.624000pt;}
.y10b{bottom:958.050800pt;}
.y12f{bottom:959.180000pt;}
.y7d{bottom:966.073333pt;}
.y220{bottom:966.764000pt;}
.y34{bottom:974.042667pt;}
.y253{bottom:974.840000pt;}
.y12e{bottom:976.276000pt;}
.yfe{bottom:977.045333pt;}
.y5{bottom:977.906667pt;}
.y21f{bottom:991.949333pt;}
.y33{bottom:992.056000pt;}
.y12d{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y32{bottom:1038.548000pt;}
.hb{height:22.673858pt;}
.h9{height:27.076941pt;}
.h23{height:27.655925pt;}
.h31{height:28.023859pt;}
.h1b{height:28.913012pt;}
.h29{height:29.397999pt;}
.hd{height:29.433775pt;}
.h2b{height:29.855828pt;}
.hc{height:30.399505pt;}
.h10{height:31.157778pt;}
.h12{height:31.427187pt;}
.h3{height:31.890083pt;}
.h1e{height:32.235937pt;}
.h1f{height:32.365313pt;}
.h18{height:33.186336pt;}
.h2f{height:33.287109pt;}
.h20{height:33.378918pt;}
.h25{height:34.123375pt;}
.h17{height:34.574438pt;}
.ha{height:34.813542pt;}
.h4{height:35.024664pt;}
.h15{height:35.039062pt;}
.h19{height:35.052646pt;}
.h16{height:35.179688pt;}
.h1d{height:35.674438pt;}
.h2e{height:36.837734pt;}
.h33{height:36.873667pt;}
.h2d{height:36.985578pt;}
.h30{height:37.087439pt;}
.he{height:38.415786pt;}
.hf{height:38.681455pt;}
.h14{height:38.776563pt;}
.h27{height:38.932188pt;}
.h6{height:38.947124pt;}
.h5{height:41.001535pt;}
.h24{height:43.416064pt;}
.h2{height:45.272024pt;}
.h1c{height:45.389521pt;}
.h2c{height:46.869614pt;}
.h32{height:47.314526pt;}
.h8{height:48.486756pt;}
.h13{height:49.336436pt;}
.h7{height:69.148877pt;}
.h26{height:454.545467pt;}
.h28{height:482.004000pt;}
.h1a{height:579.081120pt;}
.h2a{height:583.516600pt;}
.h11{height:588.881333pt;}
.h22{height:673.234379pt;}
.h21{height:687.733333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w8{width:464.262667pt;}
.w5{width:464.819573pt;}
.w7{width:475.092757pt;}
.wa{width:481.581600pt;}
.w4{width:507.772000pt;}
.w6{width:533.964400pt;}
.w9{width:537.766133pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x5c{left:-63.906667pt;}
.x73{left:-41.849400pt;}
.x3c{left:-39.362507pt;}
.x2f{left:-38.138667pt;}
.x5d{left:-35.586667pt;}
.x4a{left:-30.534267pt;}
.x51{left:-23.152683pt;}
.x74{left:-14.945400pt;}
.x3e{left:-13.308107pt;}
.x31{left:-9.818667pt;}
.x67{left:-3.920533pt;}
.x4c{left:-2.214267pt;}
.x0{left:0.000000pt;}
.x52{left:1.768917pt;}
.x68{left:24.399467pt;}
.x9{left:26.021437pt;}
.x3{left:53.357850pt;}
.x4{left:101.114667pt;}
.x1{left:102.046667pt;}
.x7{left:108.542667pt;}
.x5{left:109.606667pt;}
.x49{left:128.588000pt;}
.x6{left:129.929333pt;}
.x57{left:134.060000pt;}
.xb5{left:135.580000pt;}
.xba{left:137.889333pt;}
.x62{left:141.277333pt;}
.x2e{left:142.965333pt;}
.x72{left:156.061333pt;}
.x20{left:159.198667pt;}
.x2{left:161.132773pt;}
.x3b{left:164.441333pt;}
.x21{left:165.840000pt;}
.xa{left:167.424000pt;}
.xa7{left:170.953333pt;}
.xc3{left:173.280000pt;}
.x32{left:181.274667pt;}
.x13{left:183.141333pt;}
.xa8{left:184.237333pt;}
.x33{left:185.332000pt;}
.x3f{left:186.802667pt;}
.x54{left:188.374667pt;}
.x14{left:189.784000pt;}
.x34{left:191.309333pt;}
.x15{left:193.170667pt;}
.x16{left:199.812000pt;}
.xa9{left:200.908000pt;}
.x5a{left:203.314667pt;}
.x98{left:204.344000pt;}
.x5b{left:208.622667pt;}
.x7d{left:210.194667pt;}
.xd1{left:211.204000pt;}
.xd2{left:216.309333pt;}
.x99{left:217.626667pt;}
.xd0{left:221.326667pt;}
.x7e{left:223.478667pt;}
.x9a{left:224.401333pt;}
.xe3{left:225.473333pt;}
.x11{left:226.661333pt;}
.x79{left:227.978667pt;}
.xa0{left:230.710667pt;}
.x12{left:233.304000pt;}
.x7a{left:234.324000pt;}
.xe2{left:236.016000pt;}
.x9b{left:237.685333pt;}
.xa1{left:247.381333pt;}
.xad{left:248.413333pt;}
.xa2{left:250.769333pt;}
.x83{left:256.254667pt;}
.xae{left:258.566667pt;}
.x84{left:260.766667pt;}
.x47{left:262.181333pt;}
.x9c{left:263.113333pt;}
.xa3{left:264.052000pt;}
.xcb{left:265.720000pt;}
.xaa{left:269.722667pt;}
.x93{left:272.162667pt;}
.x85{left:274.050667pt;}
.x48{left:274.998667pt;}
.x9d{left:276.396000pt;}
.xaf{left:279.454667pt;}
.x94{left:285.445333pt;}
.x17{left:291.826667pt;}
.xb0{left:292.737333pt;}
.x18{left:298.468000pt;}
.xa4{left:301.329333pt;}
.x19{left:305.169333pt;}
.x86{left:308.842667pt;}
.xcc{left:312.236000pt;}
.xa5{left:314.613333pt;}
.x8a{left:317.512000pt;}
.x1a{left:318.453333pt;}
.xcd{left:321.037333pt;}
.x9e{left:324.202667pt;}
.x8b{left:330.796000pt;}
.x43{left:332.878667pt;}
.x7b{left:334.524000pt;}
.x9f{left:337.485333pt;}
.x44{left:340.262667pt;}
.x7c{left:347.806667pt;}
.x87{left:353.560000pt;}
.x88{left:358.070667pt;}
.x29{left:362.784000pt;}
.x89{left:371.354667pt;}
.x2a{left:376.068000pt;}
.x22{left:379.129333pt;}
.x2b{left:382.842667pt;}
.x37{left:390.340000pt;}
.x23{left:392.413333pt;}
.x24{left:395.800000pt;}
.x38{left:397.645333pt;}
.x8c{left:403.126667pt;}
.x25{left:409.084000pt;}
.x6b{left:411.436000pt;}
.x77{left:415.536000pt;}
.x65{left:418.157333pt;}
.x8d{left:419.692000pt;}
.x6c{left:420.768000pt;}
.xb8{left:422.820000pt;}
.x78{left:423.985333pt;}
.xbb{left:430.758667pt;}
.x6d{left:433.594667pt;}
.xb9{left:434.589333pt;}
.x8e{left:436.256000pt;}
.xb3{left:438.786667pt;}
.x55{left:440.265333pt;}
.xbc{left:445.497333pt;}
.xb4{left:446.992000pt;}
.x8f{left:449.540000pt;}
.x56{left:453.074667pt;}
.xbd{left:459.045333pt;}
.x5e{left:463.234667pt;}
.x90{left:466.104000pt;}
.x7f{left:467.721333pt;}
.x3d{left:468.717920pt;}
.x91{left:472.666667pt;}
.x53{left:474.242091pt;}
.x4d{left:475.357333pt;}
.x66{left:479.269333pt;}
.x35{left:480.505333pt;}
.xe0{left:484.994667pt;}
.x92{left:485.949333pt;}
.x2c{left:489.982667pt;}
.x36{left:493.328000pt;}
.xda{left:494.316000pt;}
.xdf{left:496.009333pt;}
.xbe{left:498.037333pt;}
.xd8{left:499.670667pt;}
.xbf{left:503.749333pt;}
.xe1{left:508.905333pt;}
.xc2{left:510.457333pt;}
.xb6{left:512.964000pt;}
.x30{left:516.042667pt;}
.xc4{left:517.458667pt;}
.xb7{left:519.013333pt;}
.x75{left:520.616000pt;}
.xde{left:522.262667pt;}
.x63{left:524.577333pt;}
.x76{left:527.921333pt;}
.xab{left:529.089333pt;}
.xc5{left:530.741333pt;}
.x69{left:533.226667pt;}
.x4b{left:534.847067pt;}
.x2d{left:536.342667pt;}
.x64{left:537.730667pt;}
.x6e{left:539.612000pt;}
.x6a{left:540.530667pt;}
.x80{left:542.902667pt;}
.xa6{left:544.488000pt;}
.x6f{left:545.576000pt;}
.xb1{left:548.649333pt;}
.xc6{left:550.800000pt;}
.xb{left:551.892000pt;}
.x5f{left:554.912000pt;}
.xc1{left:556.570667pt;}
.xc{left:558.533333pt;}
.xac{left:562.050667pt;}
.x26{left:563.246667pt;}
.x58{left:564.880000pt;}
.xdc{left:567.217333pt;}
.x4e{left:569.910667pt;}
.xd3{left:575.474667pt;}
.xb2{left:578.566667pt;}
.x95{left:583.094667pt;}
.xd6{left:584.590667pt;}
.x40{left:586.513333pt;}
.x1b{left:588.657333pt;}
.x41{left:593.818667pt;}
.x1c{left:595.300000pt;}
.x1d{left:598.566667pt;}
.x42{left:606.342667pt;}
.xdd{left:607.294667pt;}
.xd7{left:608.501333pt;}
.x27{left:609.432000pt;}
.x1e{left:611.850667pt;}
.x81{left:613.200000pt;}
.xf{left:615.385333pt;}
.xc0{left:616.888000pt;}
.x96{left:618.561333pt;}
.x39{left:620.368000pt;}
.x10{left:622.026667pt;}
.x8{left:624.660065pt;}
.x82{left:626.484000pt;}
.x1f{left:628.402667pt;}
.x97{left:631.845333pt;}
.x3a{left:633.474667pt;}
.x28{left:635.542667pt;}
.x45{left:639.406667pt;}
.xd4{left:640.648000pt;}
.x60{left:642.057333pt;}
.x46{left:646.790667pt;}
.x61{left:649.382667pt;}
.x59{left:650.666667pt;}
.x4f{left:653.142667pt;}
.xc7{left:654.569333pt;}
.xce{left:655.948000pt;}
.x50{left:658.450667pt;}
.x70{left:661.457333pt;}
.xd5{left:664.558667pt;}
.xcf{left:665.517333pt;}
.xc8{left:669.209333pt;}
.x71{left:671.616000pt;}
.xdb{left:678.424000pt;}
.xd{left:679.746667pt;}
.xc9{left:682.758667pt;}
.xe{left:686.389333pt;}
.xca{left:688.470667pt;}
.xd9{left:690.100000pt;}
}




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