
    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_9b4ee516ddc1d71a5bb49fb6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_f7ac5b6228c1881446705f0b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.920000;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_2110fdfaa327fbf1cc35c6b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6fab0cc2b1105f696679f244.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_217d59c11d471511ae46cae3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.709000;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_f9265d0f76e11304bc31517d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a713d7f581d4175264a48075.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_53658034ea60cbe44678597a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_987ecf438b2b6e45117f7fda.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.528000;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_840e22ad41639134ee7dc0fe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932000;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_2a116adeb3b58ce3e8cea58d.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_6fab0cc2b1105f696679f244.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e2f09b13be754bf2e4a1c4ce.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.999000;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_d723974c78c3e7ac162dd1f7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.665000;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_e438f2e79f233d5db261de15.woff2')format("woff");}.fff{font-family:fff;line-height:0.520000;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_c111a18c65b24c3979f4e9f9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.798000;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_ea3215f19726304ea8b0b1d1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.988000;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_09ec509a862e69a2205f6694.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.999000;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_bc9e13067dc78ee9d3d87d0f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.798000;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_ea3215f19726304ea8b0b1d1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.988000;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_bc9e13067dc78ee9d3d87d0f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.798000;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_ea3215f19726304ea8b0b1d1.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.988000;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_bc9e13067dc78ee9d3d87d0f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.798000;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_ea3215f19726304ea8b0b1d1.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.988000;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_2c50db7d5bda7e46faee2d3e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.798000;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_ea3215f19726304ea8b0b1d1.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.988000;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_bc9e13067dc78ee9d3d87d0f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.798000;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_ea3215f19726304ea8b0b1d1.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.988000;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_14ce26249c9e18b81683c184.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.798000;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_22eec89f94534a1270a0f66d.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.988000;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_1ce06e7a9861d54989074ff9.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.798000;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_543cb33bf21e3f581207d466.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.988000;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_1ce06e7a9861d54989074ff9.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.798000;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_543cb33bf21e3f581207d466.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.988000;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_871ce1094cabb7740f44e5d8.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.798000;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_543cb33bf21e3f581207d466.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.988000;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_1ce06e7a9861d54989074ff9.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.798000;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_543cb33bf21e3f581207d466.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.988000;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_1ce06e7a9861d54989074ff9.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.798000;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:ff28;src:url('chunks/assets/font_543cb33bf21e3f581207d466.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.988000;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;}
.m1f{transform:matrix(0.000000,-0.357163,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.357163,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.357163,0.250000,0.000000,0,0);}
.m1e{transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174990,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.ma{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);}
.mc{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);}
.m6{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);}
.me{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);}
.m15{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);}
.m16{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);}
.m19{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);}
.m8{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);}
.m22{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);}
.m1a{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);}
.m12{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);}
.md{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);}
.m3{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);}
.m17{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);}
.mb{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);}
.m1b{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);}
.m21{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);}
.m18{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);}
.m4{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);}
.mf{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);}
.m11{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);}
.m7{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);}
.m1d{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);}
.m5{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);}
.m20{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);}
.m10{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);}
.m23{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);}
.m14{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);}
.m13{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m1{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);}
.m9{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);}
.v20{vertical-align:-79.806000px;}
.v1f{vertical-align:-69.984000px;}
.v29{vertical-align:-65.172000px;}
.v17{vertical-align:-45.534000px;}
.v21{vertical-align:-44.214000px;}
.v26{vertical-align:-38.208000px;}
.v1e{vertical-align:-29.352000px;}
.v2{vertical-align:-26.034000px;}
.v1b{vertical-align:-23.490000px;}
.v2a{vertical-align:-18.930000px;}
.v7{vertical-align:-9.816000px;}
.v24{vertical-align:-6.636000px;}
.v18{vertical-align:-5.556000px;}
.v0{vertical-align:0.000000px;}
.v27{vertical-align:2.214000px;}
.v19{vertical-align:6.360000px;}
.v33{vertical-align:12.224040px;}
.v2d{vertical-align:13.614000px;}
.v34{vertical-align:15.186000px;}
.v4{vertical-align:16.542000px;}
.vc{vertical-align:18.906000px;}
.v6{vertical-align:22.566000px;}
.v3{vertical-align:23.754000px;}
.v5{vertical-align:25.776000px;}
.vf{vertical-align:27.024000px;}
.v23{vertical-align:29.250000px;}
.v1{vertical-align:31.236000px;}
.ve{vertical-align:35.082000px;}
.v1d{vertical-align:40.380000px;}
.v10{vertical-align:43.206000px;}
.v9{vertical-align:44.898000px;}
.v22{vertical-align:46.326000px;}
.v28{vertical-align:50.646000px;}
.v31{vertical-align:55.314000px;}
.v8{vertical-align:58.206000px;}
.v16{vertical-align:62.172000px;}
.v1a{vertical-align:66.018000px;}
.v12{vertical-align:67.770000px;}
.v25{vertical-align:69.984000px;}
.vd{vertical-align:71.922000px;}
.v11{vertical-align:74.388000px;}
.v14{vertical-align:79.572000px;}
.v1c{vertical-align:84.216000px;}
.v13{vertical-align:85.704000px;}
.va{vertical-align:89.178000px;}
.v32{vertical-align:90.342000px;}
.v2f{vertical-align:96.690000px;}
.vb{vertical-align:112.932000px;}
.v2c{vertical-align:116.898000px;}
.v15{vertical-align:130.602000px;}
.v2b{vertical-align:135.828000px;}
.v2e{vertical-align:139.500000px;}
.v30{vertical-align:158.952000px;}
.ls3{letter-spacing:0.000000px;}
.lsd2{letter-spacing:0.000061px;}
.lsca{letter-spacing:0.000152px;}
.lscb{letter-spacing:0.000182px;}
.lscc{letter-spacing:0.000243px;}
.lsd1{letter-spacing:0.000361px;}
.lsd3{letter-spacing:0.000486px;}
.ls2d{letter-spacing:0.001066px;}
.ls14{letter-spacing:0.001591px;}
.ls31{letter-spacing:0.002012px;}
.lsab{letter-spacing:0.002696px;}
.ls29{letter-spacing:0.002698px;}
.ls3d{letter-spacing:0.002706px;}
.ls92{letter-spacing:0.003181px;}
.ls5e{letter-spacing:0.003962px;}
.ls9d{letter-spacing:0.004200px;}
.lsa1{letter-spacing:0.005273px;}
.ls63{letter-spacing:0.011919px;}
.ls5d{letter-spacing:0.014550px;}
.lsa0{letter-spacing:0.015087px;}
.lsb3{letter-spacing:0.016167px;}
.lsb0{letter-spacing:0.019466px;}
.ls90{letter-spacing:0.020550px;}
.ls35{letter-spacing:0.027143px;}
.ls1f{letter-spacing:0.032005px;}
.ls5f{letter-spacing:1.386797px;}
.ls67{letter-spacing:1.434618px;}
.ls1e{letter-spacing:1.767274px;}
.ls5b{letter-spacing:1.816884px;}
.ls23{letter-spacing:1.832729px;}
.ls1a{letter-spacing:2.074826px;}
.lsae{letter-spacing:2.347610px;}
.lsa9{letter-spacing:2.349242px;}
.ls98{letter-spacing:2.773595px;}
.lsb2{letter-spacing:2.875066px;}
.ls2{letter-spacing:2.984915px;}
.ls66{letter-spacing:2.985017px;}
.ls1b{letter-spacing:2.986059px;}
.ls1{letter-spacing:2.986200px;}
.ls97{letter-spacing:2.987950px;}
.ls56{letter-spacing:2.989223px;}
.lsa6{letter-spacing:2.989289px;}
.ls34{letter-spacing:2.990915px;}
.ls76{letter-spacing:2.991017px;}
.ls0{letter-spacing:2.992200px;}
.lsa5{letter-spacing:2.995739px;}
.lsbb{letter-spacing:3.039145px;}
.ls79{letter-spacing:3.265351px;}
.ls55{letter-spacing:3.284686px;}
.ls80{letter-spacing:3.297177px;}
.ls8a{letter-spacing:3.435544px;}
.ls32{letter-spacing:3.448137px;}
.ls59{letter-spacing:3.454290px;}
.ls51{letter-spacing:3.454878px;}
.ls5a{letter-spacing:3.460878px;}
.lsaf{letter-spacing:3.469094px;}
.ls46{letter-spacing:3.473369px;}
.ls39{letter-spacing:3.483148px;}
.ls18{letter-spacing:3.632153px;}
.ls73{letter-spacing:3.638153px;}
.ls6a{letter-spacing:3.665458px;}
.ls6f{letter-spacing:3.767414px;}
.ls54{letter-spacing:3.773414px;}
.ls75{letter-spacing:3.785905px;}
.ls65{letter-spacing:3.791905px;}
.ls91{letter-spacing:4.399329px;}
.ls48{letter-spacing:5.367181px;}
.ls83{letter-spacing:7.012829px;}
.ls7e{letter-spacing:7.043428px;}
.ls71{letter-spacing:7.049428px;}
.ls8d{letter-spacing:7.069097px;}
.lsb7{letter-spacing:7.166915px;}
.lsd{letter-spacing:7.169412px;}
.ls3b{letter-spacing:7.172700px;}
.ls3c{letter-spacing:7.172706px;}
.lsf{letter-spacing:7.173072px;}
.ls3a{letter-spacing:7.173181px;}
.ls7d{letter-spacing:7.179962px;}
.ls7b{letter-spacing:7.975329px;}
.ls78{letter-spacing:8.744022px;}
.ls41{letter-spacing:8.989611px;}
.ls25{letter-spacing:9.092147px;}
.ls1c{letter-spacing:9.105663px;}
.ls22{letter-spacing:9.108957px;}
.ls2c{letter-spacing:9.111663px;}
.ls4e{letter-spacing:9.542686px;}
.ls4f{letter-spacing:9.548686px;}
.ls10{letter-spacing:9.605052px;}
.lse{letter-spacing:9.611052px;}
.ls84{letter-spacing:10.028915px;}
.ls72{letter-spacing:10.034915px;}
.lsa4{letter-spacing:10.100712px;}
.ls47{letter-spacing:10.154915px;}
.ls5c{letter-spacing:10.160915px;}
.ls4c{letter-spacing:10.503181px;}
.ls45{letter-spacing:10.643369px;}
.ls9f{letter-spacing:10.865464px;}
.lsbc{letter-spacing:10.930918px;}
.ls30{letter-spacing:11.387729px;}
.ls28{letter-spacing:12.666445px;}
.lsb6{letter-spacing:12.763647px;}
.ls99{letter-spacing:12.979488px;}
.lsa7{letter-spacing:13.262915px;}
.ls36{letter-spacing:13.856012px;}
.ls33{letter-spacing:13.892915px;}
.ls40{letter-spacing:13.898915px;}
.ls52{letter-spacing:13.941830px;}
.ls57{letter-spacing:14.192706px;}
.ls50{letter-spacing:14.368878px;}
.ls5{letter-spacing:14.530921px;}
.ls43{letter-spacing:14.540104px;}
.ls8c{letter-spacing:14.542438px;}
.ls44{letter-spacing:14.547181px;}
.ls9{letter-spacing:14.596376px;}
.ls9a{letter-spacing:15.025488px;}
.ls24{letter-spacing:16.313412px;}
.ls42{letter-spacing:16.363650px;}
.ls3e{letter-spacing:17.528915px;}
.ls64{letter-spacing:17.529017px;}
.ls74{letter-spacing:17.535017px;}
.lscd{letter-spacing:18.130924px;}
.ls38{letter-spacing:18.161912px;}
.ls27{letter-spacing:18.196379px;}
.lsd0{letter-spacing:18.261833px;}
.ls4{letter-spacing:18.327288px;}
.lsaa{letter-spacing:19.309107px;}
.lsc8{letter-spacing:19.636380px;}
.ls8{letter-spacing:19.832744px;}
.ls16{letter-spacing:19.949412px;}
.lsc6{letter-spacing:19.963653px;}
.lsa{letter-spacing:20.029108px;}
.ls96{letter-spacing:20.487290px;}
.lsa3{letter-spacing:20.552744px;}
.lsba{letter-spacing:20.814563px;}
.lsb8{letter-spacing:20.880017px;}
.ls77{letter-spacing:21.160884px;}
.lsce{letter-spacing:21.164915px;}
.ls26{letter-spacing:21.165017px;}
.lscf{letter-spacing:21.224915px;}
.ls6{letter-spacing:21.469109px;}
.ls68{letter-spacing:21.492237px;}
.ls12{letter-spacing:21.665473px;}
.ls7a{letter-spacing:21.681587px;}
.ls70{letter-spacing:21.713412px;}
.ls82{letter-spacing:21.719412px;}
.lsc5{letter-spacing:21.796382px;}
.ls37{letter-spacing:22.189109px;}
.ls2e{letter-spacing:22.254564px;}
.ls86{letter-spacing:22.513329px;}
.ls85{letter-spacing:22.519329px;}
.ls20{letter-spacing:22.579329px;}
.ls15{letter-spacing:22.580022px;}
.lsc7{letter-spacing:22.647292px;}
.ls17{letter-spacing:22.850706px;}
.ls81{letter-spacing:23.288022px;}
.ls7f{letter-spacing:23.294022px;}
.ls2a{letter-spacing:23.458810px;}
.ls62{letter-spacing:23.780022px;}
.ls6b{letter-spacing:23.786022px;}
.lsb9{letter-spacing:23.890929px;}
.ls53{letter-spacing:24.102461px;}
.lsbe{letter-spacing:24.349111px;}
.ls58{letter-spacing:24.658884px;}
.ls6d{letter-spacing:24.664884px;}
.ls8e{letter-spacing:24.678850px;}
.ls19{letter-spacing:24.704915px;}
.lsc9{letter-spacing:24.806915px;}
.lsd4{letter-spacing:25.003657px;}
.lsc4{letter-spacing:25.527294px;}
.lsac{letter-spacing:26.108915px;}
.lsbf{letter-spacing:26.181840px;}
.ls2b{letter-spacing:26.188059px;}
.ls1d{letter-spacing:26.194059px;}
.ls9b{letter-spacing:26.566677px;}
.ls2f{letter-spacing:27.163659px;}
.lsc1{letter-spacing:27.229114px;}
.lsbd{letter-spacing:27.332915px;}
.lsb4{letter-spacing:28.340915px;}
.lsc2{letter-spacing:29.061842px;}
.lsc3{letter-spacing:30.230915px;}
.lsc0{letter-spacing:30.236915px;}
.ls21{letter-spacing:30.831648px;}
.lsa2{letter-spacing:35.713545px;}
.ls94{letter-spacing:36.793499px;}
.ls4a{letter-spacing:42.086915px;}
.ls95{letter-spacing:43.293017px;}
.ls93{letter-spacing:52.705329px;}
.ls61{letter-spacing:52.953507px;}
.ls88{letter-spacing:52.955412px;}
.ls8f{letter-spacing:53.474022px;}
.ls13{letter-spacing:55.868712px;}
.ls11{letter-spacing:55.874712px;}
.ls4b{letter-spacing:55.940915px;}
.ls49{letter-spacing:56.423369px;}
.ls7c{letter-spacing:57.027041px;}
.ls9e{letter-spacing:57.964088px;}
.ls6c{letter-spacing:67.493412px;}
.ls6e{letter-spacing:67.499412px;}
.ls9c{letter-spacing:71.354915px;}
.ls69{letter-spacing:74.769962px;}
.ls87{letter-spacing:89.315412px;}
.ls3f{letter-spacing:103.517412px;}
.ls8b{letter-spacing:133.854657px;}
.lsad{letter-spacing:138.053412px;}
.ls7{letter-spacing:141.774664px;}
.lsb1{letter-spacing:154.433412px;}
.ls89{letter-spacing:349.593019px;}
.lsb{letter-spacing:403.658518px;}
.ls60{letter-spacing:486.066237px;}
.lsb5{letter-spacing:737.084251px;}
.lsc{letter-spacing:822.829777px;}
.lsa8{letter-spacing:978.415361px;}
.ls4d{letter-spacing:997.920832px;}
.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;}
}
.ws5f{word-spacing:-65.454600px;}
.ws9b{word-spacing:-60.833505px;}
.ws2f{word-spacing:-55.505501px;}
.ws28{word-spacing:-50.923679px;}
.ws2b{word-spacing:-50.858224px;}
.ws30{word-spacing:-48.420146px;}
.ws33{word-spacing:-47.877967px;}
.ws39{word-spacing:-47.869341px;}
.ws59{word-spacing:-47.324343px;}
.ws37{word-spacing:-45.285967px;}
.ws35{word-spacing:-45.271341px;}
.ws26{word-spacing:-42.637126px;}
.ws80{word-spacing:-39.878938px;}
.ws27{word-spacing:-33.211407px;}
.ws3a{word-spacing:-32.727300px;}
.ws23{word-spacing:-31.771663px;}
.ws86{word-spacing:-31.745532px;}
.ws4b{word-spacing:-31.706208px;}
.ws2c{word-spacing:-30.073841px;}
.ws40{word-spacing:-29.938934px;}
.ws14{word-spacing:-29.887800px;}
.ws42{word-spacing:-29.873479px;}
.ws29{word-spacing:-29.765107px;}
.ws56{word-spacing:-28.237114px;}
.wsa8{word-spacing:-27.334800px;}
.ws5b{word-spacing:-26.684831px;}
.ws34{word-spacing:-26.049894px;}
.ws38{word-spacing:-26.043894px;}
.ws3d{word-spacing:-25.329945px;}
.ws6c{word-spacing:-24.623990px;}
.wsb1{word-spacing:-24.440748px;}
.wsc4{word-spacing:-21.867840px;}
.wsab{word-spacing:-21.233472px;}
.ws8b{word-spacing:-20.840745px;}
.ws90{word-spacing:-20.448017px;}
.wsa3{word-spacing:-20.045520px;}
.ws5a{word-spacing:-19.724820px;}
.ws36{word-spacing:-19.629364px;}
.wsc2{word-spacing:-19.069502px;}
.wsc0{word-spacing:-18.223200px;}
.ws6f{word-spacing:-17.932995px;}
.ws47{word-spacing:-15.676901px;}
.ws43{word-spacing:-15.670901px;}
.ws9{word-spacing:-15.541656px;}
.ws31{word-spacing:-15.447286px;}
.wsc6{word-spacing:-14.989103px;}
.wsc5{word-spacing:-14.923649px;}
.wscf{word-spacing:-14.858194px;}
.wsa5{word-spacing:-14.668848px;}
.ws83{word-spacing:-14.596376px;}
.wsc1{word-spacing:-14.578560px;}
.wsd2{word-spacing:-14.334557px;}
.wscc{word-spacing:-14.138194px;}
.ws32{word-spacing:-13.810921px;}
.ws9f{word-spacing:-13.614557px;}
.ws82{word-spacing:-13.418193px;}
.wsb2{word-spacing:-13.025465px;}
.wsba{word-spacing:-12.894556px;}
.ws2e{word-spacing:-12.829102px;}
.ws4f{word-spacing:-12.763647px;}
.ws8{word-spacing:-12.732203px;}
.wsbb{word-spacing:-12.632738px;}
.wsd5{word-spacing:-12.567283px;}
.ws13{word-spacing:-12.552876px;}
.ws6d{word-spacing:-12.522683px;}
.wsc7{word-spacing:-12.501829px;}
.wsbc{word-spacing:-12.436374px;}
.wsb4{word-spacing:-12.370919px;}
.ws46{word-spacing:-12.367184px;}
.wsb3{word-spacing:-12.305465px;}
.ws5d{word-spacing:-12.140831px;}
.wsd7{word-spacing:-12.109101px;}
.wsbe{word-spacing:-11.781828px;}
.wsb{word-spacing:-11.775793px;}
.wsa6{word-spacing:-11.735078px;}
.wsb6{word-spacing:-11.716373px;}
.ws4e{word-spacing:-11.650919px;}
.ws54{word-spacing:-11.454555px;}
.ws1c{word-spacing:-11.389100px;}
.ws95{word-spacing:-11.323646px;}
.ws73{word-spacing:-11.258191px;}
.ws4c{word-spacing:-11.192737px;}
.ws1a{word-spacing:-11.127282px;}
.ws16{word-spacing:-11.061827px;}
.ws77{word-spacing:-10.996373px;}
.ws3{word-spacing:-10.930918px;}
.ws25{word-spacing:-10.865464px;}
.ws66{word-spacing:-10.800009px;}
.ws1d{word-spacing:-10.734554px;}
.ws21{word-spacing:-10.669100px;}
.ws17{word-spacing:-10.603645px;}
.ws22{word-spacing:-10.538191px;}
.ws48{word-spacing:-10.472736px;}
.ws1b{word-spacing:-10.407281px;}
.ws52{word-spacing:-10.341827px;}
.ws6{word-spacing:-10.281403px;}
.wsae{word-spacing:-10.276372px;}
.ws11{word-spacing:-10.221628px;}
.ws55{word-spacing:-10.210918px;}
.wsb5{word-spacing:-10.145463px;}
.wsf{word-spacing:-10.102076px;}
.ws19{word-spacing:-10.080008px;}
.wsc{word-spacing:-10.042301px;}
.ws9e{word-spacing:-10.014554px;}
.ws5{word-spacing:-9.982525px;}
.wsd{word-spacing:-9.922750px;}
.ws5e{word-spacing:-9.883645px;}
.wsa{word-spacing:-9.862974px;}
.ws9c{word-spacing:-9.818190px;}
.ws9d{word-spacing:-9.752735px;}
.wsc9{word-spacing:-9.687281px;}
.ws7e{word-spacing:-9.621826px;}
.ws10{word-spacing:-9.564096px;}
.ws81{word-spacing:-9.490917px;}
.wsaa{word-spacing:-9.425462px;}
.ws51{word-spacing:-9.229099px;}
.ws53{word-spacing:-9.163644px;}
.wsc3{word-spacing:-9.111600px;}
.ws8f{word-spacing:-8.967280px;}
.ws96{word-spacing:-8.770916px;}
.wsa7{word-spacing:-8.731950px;}
.wsca{word-spacing:-8.705462px;}
.ws91{word-spacing:-8.247280px;}
.ws78{word-spacing:-8.181825px;}
.ws63{word-spacing:-8.050916px;}
.wsa4{word-spacing:-7.945626px;}
.wsc8{word-spacing:-7.789097px;}
.ws92{word-spacing:-7.723643px;}
.ws18{word-spacing:-7.658188px;}
.wsbf{word-spacing:-7.593000px;}
.ws98{word-spacing:-7.461824px;}
.ws20{word-spacing:-7.396370px;}
.ws93{word-spacing:-7.330915px;}
.ws62{word-spacing:-7.200006px;}
.ws75{word-spacing:-7.134551px;}
.ws65{word-spacing:-6.872733px;}
.ws68{word-spacing:-6.807278px;}
.ws88{word-spacing:-6.741824px;}
.ws49{word-spacing:-6.676369px;}
.wscb{word-spacing:-6.283642px;}
.wsad{word-spacing:-6.152732px;}
.ws94{word-spacing:-6.021823px;}
.ws7{word-spacing:-5.858009px;}
.ws4a{word-spacing:-5.629096px;}
.ws7d{word-spacing:-5.301823px;}
.ws5c{word-spacing:-5.180820px;}
.wsd0{word-spacing:-4.909095px;}
.wse{word-spacing:-4.303843px;}
.ws12{word-spacing:-3.646312px;}
.wsac{word-spacing:-3.600003px;}
.ws64{word-spacing:-3.207275px;}
.ws7a{word-spacing:-2.749093px;}
.wscd{word-spacing:-1.963638px;}
.wsce{word-spacing:-0.720001px;}
.ws3c{word-spacing:-0.065455px;}
.wsa9{word-spacing:-0.053798px;}
.ws69{word-spacing:-0.047821px;}
.ws1e{word-spacing:0.000000px;}
.ws6e{word-spacing:8.416426px;}
.ws70{word-spacing:9.249180px;}
.ws3e{word-spacing:10.865464px;}
.ws41{word-spacing:11.323646px;}
.ws6a{word-spacing:12.963169px;}
.ws6b{word-spacing:12.969169px;}
.ws57{word-spacing:14.465467px;}
.ws61{word-spacing:16.363650px;}
.wsb7{word-spacing:17.869106px;}
.wsb8{word-spacing:17.934560px;}
.ws2d{word-spacing:18.065470px;}
.ws67{word-spacing:18.086495px;}
.ws76{word-spacing:18.089201px;}
.ws74{word-spacing:18.112129px;}
.ws2a{word-spacing:18.130924px;}
.ws3b{word-spacing:18.458197px;}
.wsa1{word-spacing:18.916379px;}
.wsd3{word-spacing:19.374562px;}
.wsaf{word-spacing:19.505471px;}
.wsb9{word-spacing:19.767289px;}
.ws71{word-spacing:19.929180px;}
.ws85{word-spacing:20.356381px;}
.ws89{word-spacing:20.618199px;}
.wsb0{word-spacing:21.272745px;}
.ws1f{word-spacing:21.339889px;}
.ws8a{word-spacing:21.403654px;}
.ws8d{word-spacing:21.665473px;}
.ws8e{word-spacing:21.730927px;}
.wsd6{word-spacing:21.927291px;}
.wsa2{word-spacing:22.058200px;}
.wsbd{word-spacing:22.189109px;}
.ws99{word-spacing:22.778201px;}
.wsa0{word-spacing:22.909110px;}
.wsd8{word-spacing:23.040019px;}
.ws60{word-spacing:23.236383px;}
.ws2{word-spacing:23.312640px;}
.wsd4{word-spacing:23.367292px;}
.ws44{word-spacing:23.396062px;}
.ws8c{word-spacing:23.498201px;}
.ws87{word-spacing:23.694565px;}
.ws97{word-spacing:24.283657px;}
.ws9a{word-spacing:24.349111px;}
.ws4{word-spacing:25.003657px;}
.ws4d{word-spacing:26.612275px;}
.ws72{word-spacing:26.827469px;}
.wsd1{word-spacing:27.687296px;}
.ws1{word-spacing:27.975090px;}
.ws45{word-spacing:29.275099px;}
.ws24{word-spacing:32.192873px;}
.ws84{word-spacing:33.250937px;}
.ws7f{word-spacing:35.410939px;}
.ws0{word-spacing:46.366650px;}
.ws7b{word-spacing:79.851180px;}
.ws15{word-spacing:96.750773px;}
.ws7c{word-spacing:289.610423px;}
.ws50{word-spacing:499.275540px;}
.ws58{word-spacing:630.759798px;}
.ws79{word-spacing:686.848638px;}
.ws3f{word-spacing:996.397099px;}
._1c{margin-left:-50.923679px;}
._1b{margin-left:-43.200036px;}
._15{margin-left:-35.672757px;}
._1a{margin-left:-30.632753px;}
._2d{margin-left:-17.673788px;}
._29{margin-left:-14.534223px;}
._25{margin-left:-6.742733px;}
._2{margin-left:-5.351154px;}
._f{margin-left:-3.832802px;}
._0{margin-left:-2.324084px;}
._3{margin-left:-1.190744px;}
._6{width:1.420286px;}
._1{width:2.422866px;}
._16{width:3.665458px;}
._13{width:4.843640px;}
._14{width:7.985461px;}
._27{width:9.064842px;}
._1e{width:11.866997px;}
._2f{width:13.610127px;}
._22{width:15.565628px;}
._8{width:18.379765px;}
._12{width:19.584995px;}
._b{width:20.988400px;}
._e{width:22.365595px;}
._9{width:24.156506px;}
._2a{width:25.458080px;}
._a{width:26.480591px;}
._26{width:27.487173px;}
._4{width:28.537160px;}
._5{width:29.618653px;}
._18{width:31.765196px;}
._28{width:33.578210px;}
._19{width:35.555302px;}
._2c{width:36.753204px;}
._7{width:38.548098px;}
._d{width:39.600033px;}
._2b{width:40.909125px;}
._1d{width:41.956399px;}
._c{width:44.114393px;}
._2e{width:45.558000px;}
._32{width:49.889894px;}
._30{width:51.833237px;}
._31{width:53.356766px;}
._17{width:61.090663px;}
._33{width:64.014599px;}
._24{width:80.697600px;}
._10{width:96.836850px;}
._23{width:423.478696px;}
._21{width:534.358788px;}
._11{width:634.320529px;}
._20{width:1373.628197px;}
._1f{width:1470.387276px;}
.fc2{color:rgb(5,150,105);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(16,185,129);}
.fsc{font-size:19.558464px;}
.fs11{font-size:24.297600px;}
.fsb{font-size:24.448080px;}
.fs12{font-size:25.426003px;}
.fs9{font-size:26.727360px;}
.fs13{font-size:29.157120px;}
.fs10{font-size:30.372000px;}
.fsa{font-size:31.782504px;}
.fs8{font-size:33.409200px;}
.fsd{font-size:34.927800px;}
.fs6{font-size:35.865600px;}
.fs7{font-size:36.446400px;}
.fse{font-size:45.558000px;}
.fs3{font-size:47.820600px;}
.fsf{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y10d{bottom:16.780530px;}
.y104{bottom:25.512480px;}
.y144{bottom:26.017263px;}
.yfb{bottom:30.827580px;}
.y13b{bottom:31.332363px;}
.y119{bottom:45.861720px;}
.yfc{bottom:47.722005px;}
.y13c{bottom:48.226788px;}
.y10f{bottom:50.151765px;}
.y14d{bottom:53.883573px;}
.y11a{bottom:60.895860px;}
.y27{bottom:61.467000px;}
.yfd{bottom:64.654395px;}
.y13d{bottom:65.159178px;}
.y110{bottom:69.475950px;}
.y11b{bottom:75.930000px;}
.y14e{bottom:76.434934px;}
.yfe{bottom:81.548820px;}
.y14c{bottom:81.712069px;}
.y13e{bottom:82.053755px;}
.y10b{bottom:85.295966px;}
.y10c{bottom:85.484272px;}
.y111{bottom:88.800135px;}
.y11c{bottom:90.964140px;}
.y10a{bottom:97.824416px;}
.yff{bottom:98.481210px;}
.y13f{bottom:98.986145px;}
.yc8{bottom:101.461500px;}
.y11d{bottom:105.960315px;}
.y26{bottom:106.299000px;}
.y112{bottom:108.124320px;}
.y109{bottom:110.352866px;}
.y14b{bottom:111.666454px;}
.y13a{bottom:112.237500px;}
.y100{bottom:115.375635px;}
.y140{bottom:115.880569px;}
.y14a{bottom:119.259455px;}
.y11e{bottom:120.994455px;}
.y124{bottom:121.021030px;}
.y14f{bottom:121.499389px;}
.y108{bottom:122.881315px;}
.y118{bottom:125.311075px;}
.yc7{bottom:126.114000px;}
.y149{bottom:126.852454px;}
.y113{bottom:127.448505px;}
.y154{bottom:128.625420px;}
.y25{bottom:130.951500px;}
.y101{bottom:132.270060px;}
.y141{bottom:132.774994px;}
.y123{bottom:133.549480px;}
.y148{bottom:134.445454px;}
.y107{bottom:135.409765px;}
.y11f{bottom:136.028595px;}
.yf9{bottom:136.890000px;}
.y158{bottom:137.254864px;}
.y153{bottom:137.737020px;}
.y117{bottom:137.839525px;}
.y147{bottom:142.038455px;}
.y150{bottom:144.050599px;}
.y157{bottom:144.847865px;}
.y122{bottom:146.077930px;}
.y114{bottom:146.772690px;}
.y152{bottom:146.848620px;}
.y106{bottom:147.938215px;}
.y102{bottom:149.202450px;}
.y146{bottom:149.631454px;}
.y142{bottom:149.707385px;}
.y116{bottom:150.367975px;}
.yc6{bottom:150.766500px;}
.y120{bottom:151.062735px;}
.y156{bottom:152.440864px;}
.y24{bottom:155.604000px;}
.y151{bottom:156.871380px;}
.y145{bottom:157.983754px;}
.y121{bottom:159.441610px;}
.y155{bottom:160.793164px;}
.y105{bottom:161.301895px;}
.yf8{bottom:161.542500px;}
.y115{bottom:163.731655px;}
.y103{bottom:166.096875px;}
.y143{bottom:166.601810px;}
.y5e{bottom:167.782500px;}
.y185{bottom:171.337500px;}
.y167{bottom:173.776500px;}
.y23{bottom:180.258000px;}
.yf7{bottom:182.443500px;}
.y139{bottom:186.195000px;}
.y5d{bottom:193.159500px;}
.y184{bottom:195.990000px;}
.y22{bottom:204.910500px;}
.yf6{bottom:207.097500px;}
.y8b{bottom:207.799500px;}
.y8d{bottom:214.978500px;}
.y8a{bottom:219.024000px;}
.y21{bottom:229.563000px;}
.y8c{bottom:230.094000px;}
.yf5{bottom:231.750000px;}
.ybf{bottom:236.241000px;}
.y183{bottom:236.376000px;}
.y166{bottom:236.856000px;}
.yc2{bottom:238.278000px;}
.yc5{bottom:245.457000px;}
.y5c{bottom:246.171000px;}
.y86{bottom:250.617000px;}
.y20{bottom:254.215500px;}
.yf3{bottom:256.402500px;}
.yc1{bottom:256.527000px;}
.y88{bottom:257.796000px;}
.yc4{bottom:258.010500px;}
.y138{bottom:260.154000px;}
.yc0{bottom:260.572500px;}
.y182{bottom:261.028500px;}
.y165{bottom:261.508500px;}
.yf4{bottom:262.341000px;}
.yc3{bottom:262.366500px;}
.y89{bottom:268.755000px;}
.ybe{bottom:270.198000px;}
.y5b{bottom:270.823500px;}
.y87{bottom:272.911500px;}
.y85{bottom:278.784000px;}
.y1f{bottom:278.868000px;}
.yf1{bottom:281.055000px;}
.y164{bottom:286.161000px;}
.yf2{bottom:286.993500px;}
.y5a{bottom:291.430500px;}
.y59{bottom:295.476000px;}
.y82{bottom:295.713000px;}
.ybd{bottom:299.254500px;}
.y181{bottom:301.413000px;}
.y84{bottom:302.893500px;}
.y1e{bottom:303.520500px;}
.yef{bottom:305.707500px;}
.y163{bottom:310.815000px;}
.yf0{bottom:311.646000px;}
.y83{bottom:318.009000px;}
.y81{bottom:319.398000px;}
.y58{bottom:320.128500px;}
.ybc{bottom:323.907000px;}
.y180{bottom:326.067000px;}
.y136{bottom:328.173000px;}
.yee{bottom:330.360000px;}
.y137{bottom:334.111500px;}
.y162{bottom:335.467500px;}
.y1d{bottom:344.374500px;}
.y57{bottom:344.781000px;}
.ybb{bottom:348.559500px;}
.y135{bottom:352.825500px;}
.y80{bottom:354.897000px;}
.yed{bottom:355.012500px;}
.y161{bottom:360.120000px;}
.y17f{bottom:366.451500px;}
.yba{bottom:373.212000px;}
.y134{bottom:377.479500px;}
.y7f{bottom:379.549500px;}
.yeb{bottom:379.666500px;}
.y53{bottom:382.308000px;}
.y160{bottom:384.772500px;}
.yec{bottom:385.603500px;}
.y55{bottom:387.913500px;}
.y17e{bottom:391.104000px;}
.y56{bottom:395.092500px;}
.y52{bottom:399.138000px;}
.y1c{bottom:400.482000px;}
.y132{bottom:402.132000px;}
.y7e{bottom:404.202000px;}
.yea{bottom:404.319000px;}
.y133{bottom:408.070500px;}
.y15f{bottom:409.425000px;}
.yb7{bottom:409.738500px;}
.y54{bottom:410.208000px;}
.y1b{bottom:422.235000px;}
.yb9{bottom:423.951000px;}
.y131{bottom:426.784500px;}
.yb4{bottom:427.996500px;}
.y7c{bottom:428.854500px;}
.ye8{bottom:428.971500px;}
.y4e{bottom:431.368500px;}
.y17d{bottom:431.490000px;}
.y7d{bottom:432.991500px;}
.y15e{bottom:434.077500px;}
.ye9{bottom:434.910000px;}
.y50{bottom:436.974000px;}
.yb6{bottom:442.548000px;}
.y1a{bottom:443.988000px;}
.y51{bottom:444.154500px;}
.yb5{bottom:447.031500px;}
.yb8{bottom:448.027500px;}
.y4d{bottom:448.200000px;}
.y130{bottom:451.437000px;}
.ye7{bottom:453.624000px;}
.y17c{bottom:456.142500px;}
.y15d{bottom:458.730000px;}
.y4f{bottom:459.270000px;}
.y19{bottom:465.739500px;}
.y7a{bottom:466.275000px;}
.y12f{bottom:476.089500px;}
.y79{bottom:477.499500px;}
.ye6{bottom:478.276500px;}
.y49{bottom:480.429000px;}
.yb3{bottom:482.041500px;}
.y15c{bottom:483.384000px;}
.y4b{bottom:486.036000px;}
.y18{bottom:487.492500px;}
.y7b{bottom:488.569500px;}
.y4c{bottom:493.215000px;}
.y17b{bottom:496.528500px;}
.y48{bottom:497.260500px;}
.y12d{bottom:500.742000px;}
.ye5{bottom:502.929000px;}
.y12e{bottom:506.680500px;}
.yb1{bottom:506.694000px;}
.y78{bottom:508.191000px;}
.y4a{bottom:508.330500px;}
.y17{bottom:509.244000px;}
.yb2{bottom:512.632500px;}
.y77{bottom:519.415500px;}
.y17a{bottom:521.181000px;}
.y12b{bottom:525.394500px;}
.y15b{bottom:526.207500px;}
.yb0{bottom:527.301000px;}
.ye3{bottom:527.581500px;}
.y16{bottom:530.997000px;}
.y12c{bottom:531.333000px;}
.yaf{bottom:531.346500px;}
.ye4{bottom:533.520000px;}
.y47{bottom:547.498500px;}
.y12a{bottom:550.048500px;}
.ye2{bottom:552.234000px;}
.y15{bottom:552.748500px;}
.yae{bottom:555.999000px;}
.y179{bottom:561.567000px;}
.y76{bottom:567.373500px;}
.y46{bottom:572.151000px;}
.y14{bottom:574.501500px;}
.y129{bottom:574.701000px;}
.yad{bottom:575.898000px;}
.ye0{bottom:576.888000px;}
.yac{bottom:580.653000px;}
.ye1{bottom:582.825000px;}
.y178{bottom:586.219500px;}
.y15a{bottom:589.287000px;}
.y74{bottom:592.026000px;}
.y75{bottom:596.163000px;}
.y13{bottom:596.254500px;}
.y45{bottom:596.803500px;}
.y128{bottom:599.353500px;}
.y44{bottom:600.940500px;}
.ydf{bottom:601.540500px;}
.y177{bottom:610.872000px;}
.y159{bottom:613.941000px;}
.y72{bottom:616.678500px;}
.y12{bottom:618.006000px;}
.y73{bottom:620.815500px;}
.y42{bottom:621.456000px;}
.yab{bottom:622.293000px;}
.y43{bottom:625.593000px;}
.yde{bottom:626.193000px;}
.yaa{bottom:629.472000px;}
.ya9{bottom:633.517500px;}
.y11{bottom:639.759000px;}
.y40{bottom:640.465500px;}
.y71{bottom:641.331000px;}
.y3e{bottom:646.108500px;}
.y3f{bottom:650.245500px;}
.ydd{bottom:650.845500px;}
.y176{bottom:651.258000px;}
.y41{bottom:652.551000px;}
.y10{bottom:661.510500px;}
.y3d{bottom:665.118000px;}
.y70{bottom:665.985000px;}
.y127{bottom:666.387000px;}
.ya8{bottom:667.543500px;}
.y3b{bottom:670.761000px;}
.ya7{bottom:674.722500px;}
.y3a{bottom:674.898000px;}
.ydb{bottom:675.498000px;}
.y175{bottom:675.910500px;}
.y6f{bottom:677.166000px;}
.y3c{bottom:677.205000px;}
.ya6{bottom:678.768000px;}
.ydc{bottom:681.436500px;}
.yf{bottom:683.263500px;}
.y39{bottom:689.772000px;}
.y6e{bottom:690.637500px;}
.y37{bottom:695.413500px;}
.y38{bottom:699.550500px;}
.yda{bottom:700.150500px;}
.y6d{bottom:701.818500px;}
.ye{bottom:705.016500px;}
.y126{bottom:705.933000px;}
.y6c{bottom:715.290000px;}
.y174{bottom:716.295000px;}
.y36{bottom:720.067500px;}
.yd9{bottom:724.803000px;}
.y125{bottom:726.256500px;}
.ya5{bottom:728.020500px;}
.yd{bottom:728.641500px;}
.y6b{bottom:739.942500px;}
.y173{bottom:740.947500px;}
.yd7{bottom:743.814000px;}
.yd8{bottom:745.299000px;}
.yd5{bottom:749.457000px;}
.ya4{bottom:752.673000px;}
.yd6{bottom:755.899500px;}
.yc{bottom:760.861500px;}
.y35{bottom:764.659500px;}
.yd4{bottom:774.109500px;}
.y69{bottom:776.970000px;}
.ya3{bottom:777.325500px;}
.y172{bottom:781.333500px;}
.y68{bottom:788.194500px;}
.yb{bottom:790.795500px;}
.y34{bottom:793.795500px;}
.y6a{bottom:799.264500px;}
.ya2{bottom:801.978000px;}
.y171{bottom:805.986000px;}
.yd3{bottom:811.906500px;}
.ya{bottom:815.448000px;}
.y66{bottom:822.166500px;}
.y65{bottom:822.220500px;}
.y170{bottom:830.638500px;}
.y64{bottom:833.445000px;}
.yd2{bottom:834.201000px;}
.y33{bottom:838.387500px;}
.y9{bottom:840.100500px;}
.y67{bottom:844.515000px;}
.ya1{bottom:846.570000px;}
.ya0{bottom:857.752500px;}
.y32{bottom:863.040000px;}
.y8{bottom:864.753000px;}
.y16f{bottom:871.024500px;}
.yd1{bottom:872.460000px;}
.y63{bottom:881.787000px;}
.y31{bottom:887.692500px;}
.y9f{bottom:891.163500px;}
.y16e{bottom:895.677000px;}
.yd0{bottom:897.112500px;}
.y7{bottom:897.588000px;}
.y62{bottom:906.441000px;}
.y30{bottom:912.345000px;}
.y9e{bottom:915.816000px;}
.y16d{bottom:920.329500px;}
.ycf{bottom:921.765000px;}
.y10e{bottom:937.398000px;}
.y6{bottom:937.527000px;}
.y61{bottom:942.876000px;}
.y9d{bottom:952.729500px;}
.y2f{bottom:954.811500px;}
.yfa{bottom:957.721500px;}
.yce{bottom:958.968000px;}
.y16c{bottom:960.715500px;}
.ycc{bottom:963.831000px;}
.y5{bottom:964.660500px;}
.y60{bottom:967.528500px;}
.ycb{bottom:972.796500px;}
.ycd{bottom:983.866500px;}
.y16b{bottom:985.368000px;}
.y4{bottom:991.795500px;}
.y5f{bottom:992.181000px;}
.y9c{bottom:1005.988500px;}
.y3{bottom:1014.879000px;}
.y2e{bottom:1016.833500px;}
.yca{bottom:1025.220000px;}
.y16a{bottom:1025.754000px;}
.y2d{bottom:1041.486000px;}
.y99{bottom:1041.877500px;}
.y9b{bottom:1049.056500px;}
.y169{bottom:1050.406500px;}
.y187{bottom:1052.689500px;}
.y98{bottom:1053.102000px;}
.y9a{bottom:1064.172000px;}
.y2c{bottom:1066.138500px;}
.yc9{bottom:1070.320500px;}
.y168{bottom:1075.059000px;}
.y186{bottom:1077.342000px;}
.y95{bottom:1086.973500px;}
.y2{bottom:1090.027500px;}
.y2b{bottom:1090.791000px;}
.y97{bottom:1094.152500px;}
.y94{bottom:1105.111500px;}
.y96{bottom:1109.268000px;}
.y93{bottom:1115.142000px;}
.y2a{bottom:1115.445000px;}
.y8f{bottom:1132.798500px;}
.y91{bottom:1133.686500px;}
.y90{bottom:1134.396000px;}
.y1{bottom:1135.345500px;}
.y29{bottom:1140.097500px;}
.y92{bottom:1145.752500px;}
.y8e{bottom:1155.937500px;}
.y28{bottom:1199.275500px;}
.h2e{height:2.391024px;}
.h3f{height:16.935450px;}
.h51{height:18.709152px;}
.h4c{height:20.580067px;}
.h4b{height:22.450982px;}
.h4e{height:24.345398px;}
.h3d{height:24.579788px;}
.h49{height:25.336950px;}
.h48{height:25.342950px;}
.h2a{height:25.600950px;}
.h4f{height:28.063728px;}
.h52{height:30.153322px;}
.h53{height:31.553670px;}
.h4d{height:33.168654px;}
.h12{height:34.191729px;}
.h4{height:35.865450px;}
.h34{height:36.123450px;}
.h54{height:36.183986px;}
.h50{height:40.348800px;}
.h8{height:41.723369px;}
.ha{height:42.799330px;}
.h25{height:43.534950px;}
.h7{height:44.831700px;}
.h6{height:45.687311px;}
.h5{height:49.090950px;}
.h1b{height:50.211840px;}
.hb{height:57.945729px;}
.h22{height:59.613450px;}
.h20{height:59.619450px;}
.h9{height:60.254040px;}
.h13{height:60.597024px;}
.h3c{height:60.674870px;}
.h3e{height:61.215729px;}
.h10{height:61.635450px;}
.hd{height:61.641450px;}
.h39{height:62.889450px;}
.h38{height:62.895450px;}
.h41{height:65.272950px;}
.hc{height:65.632950px;}
.h11{height:65.638950px;}
.h36{height:65.716950px;}
.h42{height:66.514950px;}
.h29{height:68.409024px;}
.h1c{height:70.161024px;}
.h30{height:75.801450px;}
.h3{height:76.067700px;}
.h2c{height:76.245450px;}
.h16{height:77.397729px;}
.h28{height:79.071450px;}
.h35{height:79.077450px;}
.h31{height:79.623729px;}
.h44{height:80.132870px;}
.h32{height:80.655450px;}
.h2f{height:82.191450px;}
.h2d{height:86.343024px;}
.h2{height:86.782500px;}
.h3b{height:88.095024px;}
.he{height:88.204950px;}
.hf{height:88.210950px;}
.h33{height:88.557024px;}
.h47{height:92.733024px;}
.h1d{height:93.370950px;}
.h21{height:93.814950px;}
.h37{height:93.820950px;}
.h23{height:93.988950px;}
.h3a{height:104.277024px;}
.h1a{height:106.113729px;}
.h17{height:106.119729px;}
.h15{height:107.787450px;}
.h26{height:107.793450px;}
.h43{height:108.848870px;}
.h27{height:109.552950px;}
.h24{height:115.065024px;}
.h2b{height:120.081450px;}
.h1f{height:132.993024px;}
.h19{height:138.268950px;}
.h18{height:138.274950px;}
.h1e{height:138.484950px;}
.h45{height:145.780950px;}
.h14{height:148.797450px;}
.h40{height:151.089729px;}
.h46{height:161.343024px;}
.h4a{height:191.343600px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:191.332800px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13e{left:5.421096px;}
.x142{left:8.044056px;}
.x13d{left:9.247752px;}
.x16e{left:11.798856px;}
.x13c{left:16.901064px;}
.x16d{left:18.176616px;}
.x13f{left:22.959936px;}
.x172{left:27.736187px;}
.x173{left:29.470566px;}
.x16f{left:30.480378px;}
.x170{left:31.958158px;}
.x171{left:34.174164px;}
.x14a{left:63.671304px;}
.x149{left:65.297101px;}
.x147{left:67.179072px;}
.x144{left:68.804869px;}
.x140{left:70.686840px;}
.x141{left:72.312637px;}
.x143{left:98.086760px;}
.x137{left:104.385000px;}
.x13{left:106.299000px;}
.x9b{left:107.865000px;}
.x2d{left:109.324500px;}
.x11e{left:114.645000px;}
.x49{left:119.094000px;}
.x5{left:120.198000px;}
.xba{left:121.954500px;}
.x138{left:123.766500px;}
.x2e{left:125.776500px;}
.xbb{left:129.973500px;}
.x18{left:131.704500px;}
.x122{left:134.824500px;}
.xaa{left:135.835500px;}
.xa4{left:137.290500px;}
.x139{left:138.603000px;}
.x9c{left:139.641000px;}
.x148{left:140.965500px;}
.x2f{left:145.233000px;}
.xf{left:147.208500px;}
.x1{left:148.575000px;}
.x5e{left:150.141000px;}
.x158{left:151.266000px;}
.x74{left:152.277000px;}
.xb4{left:155.016000px;}
.xcc{left:156.849000px;}
.x11f{left:160.078500px;}
.x44{left:161.806500px;}
.x43{left:164.866500px;}
.x86{left:167.791500px;}
.xe{left:169.624500px;}
.x83{left:170.956500px;}
.x7e{left:172.003500px;}
.xab{left:175.621500px;}
.x45{left:179.521500px;}
.xdd{left:180.903000px;}
.x4{left:182.103000px;}
.x21{left:185.074500px;}
.x9d{left:186.447000px;}
.xbc{left:188.488500px;}
.x123{left:190.050000px;}
.xf2{left:191.217000px;}
.x5f{left:192.394500px;}
.x114{left:193.473000px;}
.x30{left:195.069000px;}
.x7f{left:196.764000px;}
.x75{left:198.048000px;}
.x84{left:200.173500px;}
.x4a{left:201.463500px;}
.x6{left:203.307000px;}
.x2{left:206.866500px;}
.x6b{left:210.042000px;}
.x47{left:211.512000px;}
.x46{left:213.924000px;}
.x4b{left:216.918000px;}
.xac{left:218.010000px;}
.x60{left:219.387000px;}
.x120{left:220.411500px;}
.x61{left:221.925000px;}
.xc6{left:223.128000px;}
.xd4{left:224.278500px;}
.xf3{left:225.817500px;}
.xe5{left:227.086500px;}
.x115{left:228.696000px;}
.x48{left:229.750500px;}
.x12b{left:232.968000px;}
.xe6{left:234.108000px;}
.x4c{left:235.428000px;}
.x6c{left:237.033000px;}
.x105{left:238.609500px;}
.x121{left:239.793000px;}
.x9e{left:241.273500px;}
.x6d{left:242.355000px;}
.x14b{left:244.389000px;}
.x19{left:246.700500px;}
.x9f{left:247.765500px;}
.x124{left:249.987000px;}
.x106{left:254.185500px;}
.x3{left:255.195000px;}
.x159{left:257.640000px;}
.xc7{left:259.504500px;}
.x62{left:261.687000px;}
.xae{left:263.680500px;}
.xad{left:266.311500px;}
.x116{left:267.655500px;}
.x94{left:269.584500px;}
.x7{left:271.458000px;}
.x1a{left:275.059500px;}
.x16c{left:279.027000px;}
.x8d{left:280.119000px;}
.x11d{left:282.318000px;}
.x117{left:284.346000px;}
.x107{left:286.084500px;}
.xa0{left:288.079500px;}
.xfe{left:290.022000px;}
.x118{left:291.444000px;}
.x13a{left:292.662000px;}
.x1b{left:293.877000px;}
.x162{left:295.063500px;}
.xff{left:296.514000px;}
.x14{left:300.031500px;}
.x8e{left:301.737000px;}
.x4d{left:304.279500px;}
.xb5{left:305.391000px;}
.xb0{left:306.591000px;}
.x1c{left:308.277000px;}
.x15{left:309.441000px;}
.xbd{left:311.386500px;}
.xd5{left:312.780000px;}
.xa{left:313.911000px;}
.x31{left:316.761000px;}
.xb{left:318.222000px;}
.xfa{left:319.540500px;}
.x9{left:321.684000px;}
.xb1{left:323.826000px;}
.x1d{left:327.096000px;}
.x10{left:328.423500px;}
.x174{left:329.428500px;}
.x4e{left:330.484500px;}
.x32{left:331.803000px;}
.x95{left:335.095500px;}
.x4f{left:336.721500px;}
.x25{left:339.213000px;}
.xc{left:342.555000px;}
.xc8{left:343.593000px;}
.xaf{left:346.066500px;}
.x22{left:347.395500px;}
.x33{left:348.822000px;}
.x15f{left:350.149500px;}
.x87{left:351.300000px;}
.xb6{left:352.309500px;}
.x64{left:354.091500px;}
.xbe{left:355.227000px;}
.x88{left:357.541500px;}
.xa1{left:358.746000px;}
.x8f{left:360.006000px;}
.x6e{left:361.527000px;}
.x34{left:363.951000px;}
.x14d{left:365.223000px;}
.x10e{left:367.006500px;}
.x152{left:368.740500px;}
.x96{left:369.754500px;}
.x97{left:371.956500px;}
.xcd{left:373.510500px;}
.xc9{left:374.824500px;}
.x50{left:377.035500px;}
.x14e{left:378.114000px;}
.xee{left:380.707500px;}
.x167{left:381.861000px;}
.x89{left:383.656500px;}
.xa5{left:384.940500px;}
.xa6{left:386.506500px;}
.x14c{left:389.554500px;}
.x100{left:393.235500px;}
.x8{left:396.076500px;}
.xde{left:398.076000px;}
.x5c{left:399.133500px;}
.xef{left:400.810500px;}
.x35{left:401.829000px;}
.x12e{left:403.966500px;}
.xca{left:405.730500px;}
.x15a{left:407.412000px;}
.xce{left:409.251000px;}
.x109{left:411.544500px;}
.xd{left:413.812500px;}
.x14f{left:415.062000px;}
.x36{left:416.614500px;}
.x5d{left:417.952500px;}
.x63{left:419.004000px;}
.x160{left:420.117000px;}
.x90{left:421.239000px;}
.x153{left:422.292000px;}
.x10a{left:424.732500px;}
.x8a{left:426.655500px;}
.x12f{left:427.755000px;}
.x1e{left:430.206000px;}
.x145{left:431.829000px;}
.x38{left:432.870000px;}
.x98{left:435.264000px;}
.xed{left:437.847000px;}
.xf0{left:439.200000px;}
.x37{left:440.245500px;}
.x8b{left:441.765000px;}
.xec{left:442.783500px;}
.xd6{left:444.805500px;}
.xf1{left:446.223000px;}
.x8c{left:448.008000px;}
.x76{left:449.314500px;}
.xa7{left:450.351000px;}
.xa8{left:451.917000px;}
.xbf{left:453.231000px;}
.x154{left:454.239000px;}
.x10b{left:455.880000px;}
.xfb{left:457.039500px;}
.x1f{left:460.786500px;}
.x108{left:462.670500px;}
.xe0{left:464.221500px;}
.x65{left:466.053000px;}
.xcf{left:467.536500px;}
.xe2{left:468.691500px;}
.x99{left:469.924500px;}
.x9a{left:472.126500px;}
.x6f{left:473.487000px;}
.xdc{left:475.530000px;}
.x77{left:477.655500px;}
.xe3{left:479.197500px;}
.xa9{left:481.342500px;}
.x101{left:485.950500px;}
.x78{left:487.576500px;}
.xc0{left:489.607500px;}
.xdf{left:491.449500px;}
.x67{left:493.045500px;}
.x66{left:494.425500px;}
.xe4{left:497.479500px;}
.x16{left:499.188000px;}
.x11{left:500.583000px;}
.x85{left:503.310000px;}
.x15d{left:505.530000px;}
.x20{left:507.067500px;}
.x17{left:508.597500px;}
.x12{left:510.358500px;}
.xe7{left:512.332500px;}
.x23{left:513.697500px;}
.xb3{left:514.723500px;}
.x39{left:516.451500px;}
.xb2{left:518.643000px;}
.x79{left:519.745500px;}
.x161{left:522.025500px;}
.x52{left:523.956000px;}
.xda{left:525.325500px;}
.x51{left:526.368000px;}
.xc1{left:527.452500px;}
.x80{left:529.279500px;}
.x125{left:530.391000px;}
.x68{left:531.744000px;}
.x13b{left:533.877000px;}
.x3a{left:535.996500px;}
.xd8{left:537.321000px;}
.xf4{left:538.971000px;}
.x53{left:542.988000px;}
.x81{left:545.838000px;}
.x102{left:548.460000px;}
.xcb{left:549.996000px;}
.xdb{left:552.037500px;}
.x10f{left:553.320000px;}
.x3b{left:555.474000px;}
.x146{left:557.286000px;}
.xc2{left:558.753000px;}
.x10c{left:559.833000px;}
.x24{left:565.039500px;}
.xf5{left:567.727500px;}
.x15e{left:569.343000px;}
.x11c{left:570.471000px;}
.x71{left:572.977500px;}
.x3c{left:574.930500px;}
.x70{left:576.895500px;}
.x82{left:579.838500px;}
.x54{left:583.302000px;}
.xa2{left:585.331500px;}
.x126{left:586.420500px;}
.x110{left:588.475500px;}
.xd0{left:591.042000px;}
.xc3{left:593.239500px;}
.x103{left:594.540000px;}
.x155{left:597.438000px;}
.x150{left:599.452500px;}
.x104{left:601.032000px;}
.x130{left:602.832000px;}
.x151{left:603.997500px;}
.x164{left:605.959500px;}
.x165{left:607.035000px;}
.x55{left:611.838000px;}
.x3d{left:614.062500px;}
.x168{left:615.385500px;}
.xd7{left:616.713000px;}
.xf6{left:618.244500px;}
.x131{left:619.849500px;}
.x12c{left:621.451500px;}
.xa3{left:623.403000px;}
.x10d{left:625.986000px;}
.x3e{left:628.324500px;}
.x69{left:630.753000px;}
.x91{left:632.370000px;}
.x56{left:636.294000px;}
.x12d{left:638.142000px;}
.x132{left:640.594500px;}
.x57{left:642.531000px;}
.x40{left:644.580000px;}
.xf7{left:645.841500px;}
.xc4{left:647.004000px;}
.x166{left:648.109500px;}
.x127{left:649.992000px;}
.xd9{left:651.042000px;}
.x3f{left:652.969500px;}
.x27{left:654.516000px;}
.x26{left:657.042000px;}
.x15b{left:659.157000px;}
.x6a{left:660.784500px;}
.x133{left:662.445000px;}
.x169{left:663.577500px;}
.xd1{left:666.093000px;}
.x15c{left:667.293000px;}
.xf8{left:669.295500px;}
.x163{left:670.660500px;}
.x28{left:672.084000px;}
.x111{left:673.504500px;}
.xb8{left:676.495500px;}
.xb7{left:678.907500px;}
.x72{left:680.698500px;}
.x58{left:682.845000px;}
.xf9{left:684.717000px;}
.x29{left:689.103000px;}
.x7a{left:690.907500px;}
.x16a{left:692.176500px;}
.x119{left:693.427500px;}
.xb9{left:695.896500px;}
.x112{left:697.315500px;}
.xe8{left:698.337000px;}
.x156{left:699.457500px;}
.x92{left:701.367000px;}
.x2a{left:704.230500px;}
.x7b{left:706.972500px;}
.x134{left:708.382500px;}
.xd2{left:711.660000px;}
.x7c{left:713.221500px;}
.xfc{left:715.441500px;}
.x59{left:716.808000px;}
.xe9{left:718.186500px;}
.xc5{left:719.415000px;}
.x5a{left:723.045000px;}
.x41{left:728.161500px;}
.x7d{left:730.093500px;}
.x157{left:731.122500px;}
.x113{left:732.471000px;}
.x93{left:735.381000px;}
.xfd{left:736.902000px;}
.x128{left:738.631500px;}
.x16b{left:740.088000px;}
.x2b{left:743.103000px;}
.x135{left:744.280500px;}
.x42{left:745.588500px;}
.xe1{left:749.766000px;}
.xea{left:751.336500px;}
.x136{left:758.535000px;}
.x2c{left:760.777500px;}
.x5b{left:763.359000px;}
.x129{left:765.787500px;}
.x73{left:767.619000px;}
.x12a{left:770.332500px;}
.xeb{left:772.705500px;}
.x11a{left:778.054500px;}
.x11b{left:785.152500px;}
.xd3{left:799.255500px;}
@media print{
.v20{vertical-align:-70.938667pt;}
.v1f{vertical-align:-62.208000pt;}
.v29{vertical-align:-57.930667pt;}
.v17{vertical-align:-40.474667pt;}
.v21{vertical-align:-39.301333pt;}
.v26{vertical-align:-33.962667pt;}
.v1e{vertical-align:-26.090667pt;}
.v2{vertical-align:-23.141333pt;}
.v1b{vertical-align:-20.880000pt;}
.v2a{vertical-align:-16.826667pt;}
.v7{vertical-align:-8.725333pt;}
.v24{vertical-align:-5.898667pt;}
.v18{vertical-align:-4.938667pt;}
.v0{vertical-align:0.000000pt;}
.v27{vertical-align:1.968000pt;}
.v19{vertical-align:5.653333pt;}
.v33{vertical-align:10.865813pt;}
.v2d{vertical-align:12.101333pt;}
.v34{vertical-align:13.498667pt;}
.v4{vertical-align:14.704000pt;}
.vc{vertical-align:16.805333pt;}
.v6{vertical-align:20.058667pt;}
.v3{vertical-align:21.114667pt;}
.v5{vertical-align:22.912000pt;}
.vf{vertical-align:24.021333pt;}
.v23{vertical-align:26.000000pt;}
.v1{vertical-align:27.765333pt;}
.ve{vertical-align:31.184000pt;}
.v1d{vertical-align:35.893333pt;}
.v10{vertical-align:38.405333pt;}
.v9{vertical-align:39.909333pt;}
.v22{vertical-align:41.178667pt;}
.v28{vertical-align:45.018667pt;}
.v31{vertical-align:49.168000pt;}
.v8{vertical-align:51.738667pt;}
.v16{vertical-align:55.264000pt;}
.v1a{vertical-align:58.682667pt;}
.v12{vertical-align:60.240000pt;}
.v25{vertical-align:62.208000pt;}
.vd{vertical-align:63.930667pt;}
.v11{vertical-align:66.122667pt;}
.v14{vertical-align:70.730667pt;}
.v1c{vertical-align:74.858667pt;}
.v13{vertical-align:76.181333pt;}
.va{vertical-align:79.269333pt;}
.v32{vertical-align:80.304000pt;}
.v2f{vertical-align:85.946667pt;}
.vb{vertical-align:100.384000pt;}
.v2c{vertical-align:103.909333pt;}
.v15{vertical-align:116.090667pt;}
.v2b{vertical-align:120.736000pt;}
.v2e{vertical-align:124.000000pt;}
.v30{vertical-align:141.290667pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd2{letter-spacing:0.000054pt;}
.lsca{letter-spacing:0.000135pt;}
.lscb{letter-spacing:0.000162pt;}
.lscc{letter-spacing:0.000216pt;}
.lsd1{letter-spacing:0.000321pt;}
.lsd3{letter-spacing:0.000432pt;}
.ls2d{letter-spacing:0.000947pt;}
.ls14{letter-spacing:0.001414pt;}
.ls31{letter-spacing:0.001788pt;}
.lsab{letter-spacing:0.002397pt;}
.ls29{letter-spacing:0.002399pt;}
.ls3d{letter-spacing:0.002405pt;}
.ls92{letter-spacing:0.002827pt;}
.ls5e{letter-spacing:0.003521pt;}
.ls9d{letter-spacing:0.003733pt;}
.lsa1{letter-spacing:0.004688pt;}
.ls63{letter-spacing:0.010594pt;}
.ls5d{letter-spacing:0.012934pt;}
.lsa0{letter-spacing:0.013410pt;}
.lsb3{letter-spacing:0.014371pt;}
.lsb0{letter-spacing:0.017303pt;}
.ls90{letter-spacing:0.018267pt;}
.ls35{letter-spacing:0.024127pt;}
.ls1f{letter-spacing:0.028449pt;}
.ls5f{letter-spacing:1.232709pt;}
.ls67{letter-spacing:1.275216pt;}
.ls1e{letter-spacing:1.570910pt;}
.ls5b{letter-spacing:1.615008pt;}
.ls23{letter-spacing:1.629092pt;}
.ls1a{letter-spacing:1.844290pt;}
.lsae{letter-spacing:2.086764pt;}
.lsa9{letter-spacing:2.088215pt;}
.ls98{letter-spacing:2.465418pt;}
.lsb2{letter-spacing:2.555614pt;}
.ls2{letter-spacing:2.653258pt;}
.ls66{letter-spacing:2.653348pt;}
.ls1b{letter-spacing:2.654275pt;}
.ls1{letter-spacing:2.654400pt;}
.ls97{letter-spacing:2.655956pt;}
.ls56{letter-spacing:2.657087pt;}
.lsa6{letter-spacing:2.657146pt;}
.ls34{letter-spacing:2.658591pt;}
.ls76{letter-spacing:2.658681pt;}
.ls0{letter-spacing:2.659733pt;}
.lsa5{letter-spacing:2.662879pt;}
.lsbb{letter-spacing:2.701463pt;}
.ls79{letter-spacing:2.902535pt;}
.ls55{letter-spacing:2.919721pt;}
.ls80{letter-spacing:2.930824pt;}
.ls8a{letter-spacing:3.053817pt;}
.ls32{letter-spacing:3.065010pt;}
.ls59{letter-spacing:3.070480pt;}
.ls51{letter-spacing:3.071003pt;}
.ls5a{letter-spacing:3.076336pt;}
.lsaf{letter-spacing:3.083639pt;}
.ls46{letter-spacing:3.087439pt;}
.ls39{letter-spacing:3.096132pt;}
.ls18{letter-spacing:3.228580pt;}
.ls73{letter-spacing:3.233914pt;}
.ls6a{letter-spacing:3.258185pt;}
.ls6f{letter-spacing:3.348813pt;}
.ls54{letter-spacing:3.354146pt;}
.ls75{letter-spacing:3.365249pt;}
.ls65{letter-spacing:3.370582pt;}
.ls91{letter-spacing:3.910514pt;}
.ls48{letter-spacing:4.770827pt;}
.ls83{letter-spacing:6.233626pt;}
.ls7e{letter-spacing:6.260825pt;}
.ls71{letter-spacing:6.266158pt;}
.ls8d{letter-spacing:6.283642pt;}
.lsb7{letter-spacing:6.370591pt;}
.lsd{letter-spacing:6.372811pt;}
.ls3b{letter-spacing:6.375733pt;}
.ls3c{letter-spacing:6.375739pt;}
.lsf{letter-spacing:6.376064pt;}
.ls3a{letter-spacing:6.376161pt;}
.ls7d{letter-spacing:6.382188pt;}
.ls7b{letter-spacing:7.089181pt;}
.ls78{letter-spacing:7.772464pt;}
.ls41{letter-spacing:7.990765pt;}
.ls25{letter-spacing:8.081908pt;}
.ls1c{letter-spacing:8.093923pt;}
.ls22{letter-spacing:8.096851pt;}
.ls2c{letter-spacing:8.099256pt;}
.ls4e{letter-spacing:8.482387pt;}
.ls4f{letter-spacing:8.487721pt;}
.ls10{letter-spacing:8.537824pt;}
.lse{letter-spacing:8.543158pt;}
.ls84{letter-spacing:8.914591pt;}
.ls72{letter-spacing:8.919925pt;}
.lsa4{letter-spacing:8.978411pt;}
.ls47{letter-spacing:9.026591pt;}
.ls5c{letter-spacing:9.031925pt;}
.ls4c{letter-spacing:9.336161pt;}
.ls45{letter-spacing:9.460773pt;}
.ls9f{letter-spacing:9.658190pt;}
.lsbc{letter-spacing:9.716372pt;}
.ls30{letter-spacing:10.122425pt;}
.ls28{letter-spacing:11.259063pt;}
.lsb6{letter-spacing:11.345464pt;}
.ls99{letter-spacing:11.537323pt;}
.lsa7{letter-spacing:11.789258pt;}
.ls36{letter-spacing:12.316455pt;}
.ls33{letter-spacing:12.349258pt;}
.ls40{letter-spacing:12.354591pt;}
.ls52{letter-spacing:12.392738pt;}
.ls57{letter-spacing:12.615739pt;}
.ls50{letter-spacing:12.772336pt;}
.ls5{letter-spacing:12.916374pt;}
.ls43{letter-spacing:12.924537pt;}
.ls8c{letter-spacing:12.926612pt;}
.ls44{letter-spacing:12.930827pt;}
.ls9{letter-spacing:12.974556pt;}
.ls9a{letter-spacing:13.355989pt;}
.ls24{letter-spacing:14.500811pt;}
.ls42{letter-spacing:14.545467pt;}
.ls3e{letter-spacing:15.581258pt;}
.ls64{letter-spacing:15.581348pt;}
.ls74{letter-spacing:15.586681pt;}
.lscd{letter-spacing:16.116377pt;}
.ls38{letter-spacing:16.143922pt;}
.ls27{letter-spacing:16.174559pt;}
.lsd0{letter-spacing:16.232741pt;}
.ls4{letter-spacing:16.290923pt;}
.lsaa{letter-spacing:17.163651pt;}
.lsc8{letter-spacing:17.454560pt;}
.ls8{letter-spacing:17.629106pt;}
.ls16{letter-spacing:17.732811pt;}
.lsc6{letter-spacing:17.745469pt;}
.lsa{letter-spacing:17.803651pt;}
.ls96{letter-spacing:18.210924pt;}
.lsa3{letter-spacing:18.269106pt;}
.lsba{letter-spacing:18.501834pt;}
.lsb8{letter-spacing:18.560015pt;}
.ls77{letter-spacing:18.809675pt;}
.lsce{letter-spacing:18.813258pt;}
.ls26{letter-spacing:18.813348pt;}
.lscf{letter-spacing:18.866591pt;}
.ls6{letter-spacing:19.083652pt;}
.ls68{letter-spacing:19.104211pt;}
.ls12{letter-spacing:19.258198pt;}
.ls7a{letter-spacing:19.272522pt;}
.ls70{letter-spacing:19.300811pt;}
.ls82{letter-spacing:19.306144pt;}
.lsc5{letter-spacing:19.374562pt;}
.ls37{letter-spacing:19.723653pt;}
.ls2e{letter-spacing:19.781835pt;}
.ls86{letter-spacing:20.011848pt;}
.ls85{letter-spacing:20.017181pt;}
.ls20{letter-spacing:20.070514pt;}
.ls15{letter-spacing:20.071131pt;}
.lsc7{letter-spacing:20.130926pt;}
.ls17{letter-spacing:20.311739pt;}
.ls81{letter-spacing:20.700464pt;}
.ls7f{letter-spacing:20.705798pt;}
.ls2a{letter-spacing:20.852276pt;}
.ls62{letter-spacing:21.137798pt;}
.ls6b{letter-spacing:21.143131pt;}
.lsb9{letter-spacing:21.236381pt;}
.ls53{letter-spacing:21.424410pt;}
.lsbe{letter-spacing:21.643654pt;}
.ls58{letter-spacing:21.919008pt;}
.ls6d{letter-spacing:21.924342pt;}
.ls8e{letter-spacing:21.936755pt;}
.ls19{letter-spacing:21.959925pt;}
.lsc9{letter-spacing:22.050591pt;}
.lsd4{letter-spacing:22.225473pt;}
.lsc4{letter-spacing:22.690928pt;}
.lsac{letter-spacing:23.207925pt;}
.lsbf{letter-spacing:23.272747pt;}
.ls2b{letter-spacing:23.278275pt;}
.ls1d{letter-spacing:23.283608pt;}
.ls9b{letter-spacing:23.614824pt;}
.ls2f{letter-spacing:24.145475pt;}
.lsc1{letter-spacing:24.203657pt;}
.lsbd{letter-spacing:24.295925pt;}
.lsb4{letter-spacing:25.191925pt;}
.lsc2{letter-spacing:25.832749pt;}
.lsc3{letter-spacing:26.871925pt;}
.lsc0{letter-spacing:26.877258pt;}
.ls21{letter-spacing:27.405909pt;}
.lsa2{letter-spacing:31.745373pt;}
.ls94{letter-spacing:32.705333pt;}
.ls4a{letter-spacing:37.410591pt;}
.ls95{letter-spacing:38.482681pt;}
.ls93{letter-spacing:46.849181pt;}
.ls61{letter-spacing:47.069784pt;}
.ls88{letter-spacing:47.071477pt;}
.ls8f{letter-spacing:47.532464pt;}
.ls13{letter-spacing:49.661077pt;}
.ls11{letter-spacing:49.666411pt;}
.ls4b{letter-spacing:49.725258pt;}
.ls49{letter-spacing:50.154106pt;}
.ls7c{letter-spacing:50.690703pt;}
.ls9e{letter-spacing:51.523634pt;}
.ls6c{letter-spacing:59.994144pt;}
.ls6e{letter-spacing:59.999477pt;}
.ls9c{letter-spacing:63.426591pt;}
.ls69{letter-spacing:66.462188pt;}
.ls87{letter-spacing:79.391477pt;}
.ls3f{letter-spacing:92.015477pt;}
.ls8b{letter-spacing:118.981917pt;}
.lsad{letter-spacing:122.714144pt;}
.ls7{letter-spacing:126.021923pt;}
.lsb1{letter-spacing:137.274144pt;}
.ls89{letter-spacing:310.749350pt;}
.lsb{letter-spacing:358.807572pt;}
.ls60{letter-spacing:432.058877pt;}
.lsb5{letter-spacing:655.186001pt;}
.lsc{letter-spacing:731.404246pt;}
.lsa8{letter-spacing:869.702543pt;}
.ls4d{letter-spacing:887.040739pt;}
.ws5f{word-spacing:-58.181867pt;}
.ws9b{word-spacing:-54.074227pt;}
.ws2f{word-spacing:-49.338223pt;}
.ws28{word-spacing:-45.265492pt;}
.ws2b{word-spacing:-45.207310pt;}
.ws30{word-spacing:-43.040130pt;}
.ws33{word-spacing:-42.558193pt;}
.ws39{word-spacing:-42.550525pt;}
.ws59{word-spacing:-42.066082pt;}
.ws37{word-spacing:-40.254193pt;}
.ws35{word-spacing:-40.241192pt;}
.ws26{word-spacing:-37.899668pt;}
.ws80{word-spacing:-35.447945pt;}
.ws27{word-spacing:-29.521250pt;}
.ws3a{word-spacing:-29.090933pt;}
.ws23{word-spacing:-28.241478pt;}
.ws86{word-spacing:-28.218251pt;}
.ws4b{word-spacing:-28.183296pt;}
.ws2c{word-spacing:-26.732303pt;}
.ws40{word-spacing:-26.612386pt;}
.ws14{word-spacing:-26.566933pt;}
.ws42{word-spacing:-26.554204pt;}
.ws29{word-spacing:-26.457873pt;}
.ws56{word-spacing:-25.099657pt;}
.wsa8{word-spacing:-24.297600pt;}
.ws5b{word-spacing:-23.719849pt;}
.ws34{word-spacing:-23.155461pt;}
.ws38{word-spacing:-23.150128pt;}
.ws3d{word-spacing:-22.515506pt;}
.ws6c{word-spacing:-21.887991pt;}
.wsb1{word-spacing:-21.725109pt;}
.wsc4{word-spacing:-19.438080pt;}
.wsab{word-spacing:-18.874198pt;}
.ws8b{word-spacing:-18.525106pt;}
.ws90{word-spacing:-18.176015pt;}
.wsa3{word-spacing:-17.818240pt;}
.ws5a{word-spacing:-17.533174pt;}
.ws36{word-spacing:-17.448324pt;}
.wsc2{word-spacing:-16.950669pt;}
.wsc0{word-spacing:-16.198400pt;}
.ws6f{word-spacing:-15.940440pt;}
.ws47{word-spacing:-13.935023pt;}
.ws43{word-spacing:-13.929690pt;}
.ws9{word-spacing:-13.814805pt;}
.ws31{word-spacing:-13.730921pt;}
.wsc6{word-spacing:-13.323647pt;}
.wsc5{word-spacing:-13.265466pt;}
.wscf{word-spacing:-13.207284pt;}
.wsa5{word-spacing:-13.038976pt;}
.ws83{word-spacing:-12.974556pt;}
.wsc1{word-spacing:-12.958720pt;}
.wsd2{word-spacing:-12.741829pt;}
.wscc{word-spacing:-12.567283pt;}
.ws32{word-spacing:-12.276374pt;}
.ws9f{word-spacing:-12.101828pt;}
.ws82{word-spacing:-11.927283pt;}
.wsb2{word-spacing:-11.578191pt;}
.wsba{word-spacing:-11.461828pt;}
.ws2e{word-spacing:-11.403646pt;}
.ws4f{word-spacing:-11.345464pt;}
.ws8{word-spacing:-11.317514pt;}
.wsbb{word-spacing:-11.229100pt;}
.wsd5{word-spacing:-11.170918pt;}
.ws13{word-spacing:-11.158112pt;}
.ws6d{word-spacing:-11.131274pt;}
.wsc7{word-spacing:-11.112737pt;}
.wsbc{word-spacing:-11.054555pt;}
.wsb4{word-spacing:-10.996373pt;}
.ws46{word-spacing:-10.993052pt;}
.wsb3{word-spacing:-10.938191pt;}
.ws5d{word-spacing:-10.791849pt;}
.wsd7{word-spacing:-10.763645pt;}
.wsbe{word-spacing:-10.472736pt;}
.wsb{word-spacing:-10.467372pt;}
.wsa6{word-spacing:-10.431181pt;}
.wsb6{word-spacing:-10.414554pt;}
.ws4e{word-spacing:-10.356372pt;}
.ws54{word-spacing:-10.181827pt;}
.ws1c{word-spacing:-10.123645pt;}
.ws95{word-spacing:-10.065463pt;}
.ws73{word-spacing:-10.007281pt;}
.ws4c{word-spacing:-9.949099pt;}
.ws1a{word-spacing:-9.890917pt;}
.ws16{word-spacing:-9.832735pt;}
.ws77{word-spacing:-9.774554pt;}
.ws3{word-spacing:-9.716372pt;}
.ws25{word-spacing:-9.658190pt;}
.ws66{word-spacing:-9.600008pt;}
.ws1d{word-spacing:-9.541826pt;}
.ws21{word-spacing:-9.483644pt;}
.ws17{word-spacing:-9.425462pt;}
.ws22{word-spacing:-9.367281pt;}
.ws48{word-spacing:-9.309099pt;}
.ws1b{word-spacing:-9.250917pt;}
.ws52{word-spacing:-9.192735pt;}
.ws6{word-spacing:-9.139025pt;}
.wsae{word-spacing:-9.134553pt;}
.ws11{word-spacing:-9.085891pt;}
.ws55{word-spacing:-9.076371pt;}
.wsb5{word-spacing:-9.018189pt;}
.wsf{word-spacing:-8.979623pt;}
.ws19{word-spacing:-8.960007pt;}
.wsc{word-spacing:-8.926490pt;}
.ws9e{word-spacing:-8.901826pt;}
.ws5{word-spacing:-8.873356pt;}
.wsd{word-spacing:-8.820222pt;}
.ws5e{word-spacing:-8.785462pt;}
.wsa{word-spacing:-8.767088pt;}
.ws9c{word-spacing:-8.727280pt;}
.ws9d{word-spacing:-8.669098pt;}
.wsc9{word-spacing:-8.610916pt;}
.ws7e{word-spacing:-8.552734pt;}
.ws10{word-spacing:-8.501419pt;}
.ws81{word-spacing:-8.436371pt;}
.wsaa{word-spacing:-8.378189pt;}
.ws51{word-spacing:-8.203643pt;}
.ws53{word-spacing:-8.145461pt;}
.wsc3{word-spacing:-8.099200pt;}
.ws8f{word-spacing:-7.970916pt;}
.ws96{word-spacing:-7.796370pt;}
.wsa7{word-spacing:-7.761733pt;}
.wsca{word-spacing:-7.738188pt;}
.ws91{word-spacing:-7.330915pt;}
.ws78{word-spacing:-7.272733pt;}
.ws63{word-spacing:-7.156370pt;}
.wsa4{word-spacing:-7.062779pt;}
.wsc8{word-spacing:-6.923642pt;}
.ws92{word-spacing:-6.865460pt;}
.ws18{word-spacing:-6.807278pt;}
.wsbf{word-spacing:-6.749333pt;}
.ws98{word-spacing:-6.632733pt;}
.ws20{word-spacing:-6.574551pt;}
.ws93{word-spacing:-6.516369pt;}
.ws62{word-spacing:-6.400005pt;}
.ws75{word-spacing:-6.341823pt;}
.ws65{word-spacing:-6.109096pt;}
.ws68{word-spacing:-6.050914pt;}
.ws88{word-spacing:-5.992732pt;}
.ws49{word-spacing:-5.934550pt;}
.wscb{word-spacing:-5.585459pt;}
.wsad{word-spacing:-5.469095pt;}
.ws94{word-spacing:-5.352732pt;}
.ws7{word-spacing:-5.207119pt;}
.ws4a{word-spacing:-5.003641pt;}
.ws7d{word-spacing:-4.712731pt;}
.ws5c{word-spacing:-4.605174pt;}
.wsd0{word-spacing:-4.363640pt;}
.wse{word-spacing:-3.825638pt;}
.ws12{word-spacing:-3.241166pt;}
.wsac{word-spacing:-3.200003pt;}
.ws64{word-spacing:-2.850911pt;}
.ws7a{word-spacing:-2.443638pt;}
.wscd{word-spacing:-1.745456pt;}
.wsce{word-spacing:-0.640001pt;}
.ws3c{word-spacing:-0.058182pt;}
.wsa9{word-spacing:-0.047821pt;}
.ws69{word-spacing:-0.042507pt;}
.ws1e{word-spacing:0.000000pt;}
.ws6e{word-spacing:7.481267pt;}
.ws70{word-spacing:8.221493pt;}
.ws3e{word-spacing:9.658190pt;}
.ws41{word-spacing:10.065463pt;}
.ws6a{word-spacing:11.522817pt;}
.ws6b{word-spacing:11.528151pt;}
.ws57{word-spacing:12.858193pt;}
.ws61{word-spacing:14.545467pt;}
.wsb7{word-spacing:15.883650pt;}
.wsb8{word-spacing:15.941831pt;}
.ws2d{word-spacing:16.058195pt;}
.ws67{word-spacing:16.076885pt;}
.ws76{word-spacing:16.079290pt;}
.ws74{word-spacing:16.099670pt;}
.ws2a{word-spacing:16.116377pt;}
.ws3b{word-spacing:16.407286pt;}
.wsa1{word-spacing:16.814559pt;}
.wsd3{word-spacing:17.221833pt;}
.wsaf{word-spacing:17.338196pt;}
.wsb9{word-spacing:17.570924pt;}
.ws71{word-spacing:17.714826pt;}
.ws85{word-spacing:18.094561pt;}
.ws89{word-spacing:18.327288pt;}
.wsb0{word-spacing:18.909107pt;}
.ws1f{word-spacing:18.968790pt;}
.ws8a{word-spacing:19.025470pt;}
.ws8d{word-spacing:19.258198pt;}
.ws8e{word-spacing:19.316380pt;}
.wsd6{word-spacing:19.490925pt;}
.wsa2{word-spacing:19.607289pt;}
.wsbd{word-spacing:19.723653pt;}
.ws99{word-spacing:20.247290pt;}
.wsa0{word-spacing:20.363653pt;}
.wsd8{word-spacing:20.480017pt;}
.ws60{word-spacing:20.654563pt;}
.ws2{word-spacing:20.722347pt;}
.wsd4{word-spacing:20.770926pt;}
.ws44{word-spacing:20.796499pt;}
.ws8c{word-spacing:20.887290pt;}
.ws87{word-spacing:21.061836pt;}
.ws97{word-spacing:21.585473pt;}
.ws9a{word-spacing:21.643654pt;}
.ws4{word-spacing:22.225473pt;}
.ws4d{word-spacing:23.655356pt;}
.ws72{word-spacing:23.846639pt;}
.wsd1{word-spacing:24.610930pt;}
.ws1{word-spacing:24.866747pt;}
.ws45{word-spacing:26.022310pt;}
.ws24{word-spacing:28.615887pt;}
.ws84{word-spacing:29.556388pt;}
.ws7f{word-spacing:31.476390pt;}
.ws0{word-spacing:41.214800pt;}
.ws7b{word-spacing:70.978826pt;}
.ws15{word-spacing:86.000687pt;}
.ws7c{word-spacing:257.431487pt;}
.ws50{word-spacing:443.800480pt;}
.ws58{word-spacing:560.675376pt;}
.ws79{word-spacing:610.532123pt;}
.ws3f{word-spacing:885.686310pt;}
._1c{margin-left:-45.265492pt;}
._1b{margin-left:-38.400032pt;}
._15{margin-left:-31.709117pt;}
._1a{margin-left:-27.229114pt;}
._2d{margin-left:-15.710033pt;}
._29{margin-left:-12.919309pt;}
._25{margin-left:-5.993540pt;}
._2{margin-left:-4.756581pt;}
._f{margin-left:-3.406935pt;}
._0{margin-left:-2.065853pt;}
._3{margin-left:-1.058439pt;}
._6{width:1.262477pt;}
._1{width:2.153658pt;}
._16{width:3.258185pt;}
._13{width:4.305458pt;}
._14{width:7.098188pt;}
._27{width:8.057637pt;}
._1e{width:10.548442pt;}
._2f{width:12.097891pt;}
._22{width:13.836114pt;}
._8{width:16.337569pt;}
._12{width:17.408884pt;}
._b{width:18.656355pt;}
._e{width:19.880529pt;}
._9{width:21.472450pt;}
._2a{width:22.629405pt;}
._a{width:23.538303pt;}
._26{width:24.433043pt;}
._4{width:25.366364pt;}
._5{width:26.327691pt;}
._18{width:28.235730pt;}
._28{width:29.847298pt;}
._19{width:31.604713pt;}
._2c{width:32.669515pt;}
._7{width:34.264976pt;}
._d{width:35.200029pt;}
._2b{width:36.363667pt;}
._1d{width:37.294577pt;}
._c{width:39.212794pt;}
._2e{width:40.496000pt;}
._32{width:44.346572pt;}
._30{width:46.073988pt;}
._31{width:47.428237pt;}
._17{width:54.302812pt;}
._33{width:56.901866pt;}
._24{width:71.731200pt;}
._10{width:86.077200pt;}
._23{width:376.425507pt;}
._21{width:474.985589pt;}
._11{width:563.840470pt;}
._20{width:1221.002842pt;}
._1f{width:1307.010912pt;}
.fsc{font-size:17.385301pt;}
.fs11{font-size:21.597867pt;}
.fsb{font-size:21.731627pt;}
.fs12{font-size:22.600892pt;}
.fs9{font-size:23.757653pt;}
.fs13{font-size:25.917440pt;}
.fs10{font-size:26.997333pt;}
.fsa{font-size:28.251115pt;}
.fs8{font-size:29.697067pt;}
.fsd{font-size:31.046933pt;}
.fs6{font-size:31.880533pt;}
.fs7{font-size:32.396800pt;}
.fse{font-size:40.496000pt;}
.fs3{font-size:42.507200pt;}
.fsf{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y10d{bottom:14.916027pt;}
.y104{bottom:22.677760pt;}
.y144{bottom:23.126456pt;}
.yfb{bottom:27.402293pt;}
.y13b{bottom:27.850989pt;}
.y119{bottom:40.765973pt;}
.yfc{bottom:42.419560pt;}
.y13c{bottom:42.868256pt;}
.y10f{bottom:44.579347pt;}
.y14d{bottom:47.896509pt;}
.y11a{bottom:54.129653pt;}
.y27{bottom:54.637333pt;}
.yfd{bottom:57.470573pt;}
.y13d{bottom:57.919269pt;}
.y110{bottom:61.756400pt;}
.y11b{bottom:67.493333pt;}
.y14e{bottom:67.942164pt;}
.yfe{bottom:72.487840pt;}
.y14c{bottom:72.632951pt;}
.y13e{bottom:72.936671pt;}
.y10b{bottom:75.818636pt;}
.y10c{bottom:75.986019pt;}
.y111{bottom:78.933453pt;}
.y11c{bottom:80.857013pt;}
.y10a{bottom:86.955036pt;}
.yff{bottom:87.538853pt;}
.y13f{bottom:87.987684pt;}
.yc8{bottom:90.188000pt;}
.y11d{bottom:94.186947pt;}
.y26{bottom:94.488000pt;}
.y112{bottom:96.110507pt;}
.y109{bottom:98.091436pt;}
.y14b{bottom:99.259071pt;}
.y13a{bottom:99.766667pt;}
.y100{bottom:102.556120pt;}
.y140{bottom:103.004951pt;}
.y14a{bottom:106.008404pt;}
.y11e{bottom:107.550627pt;}
.y124{bottom:107.574249pt;}
.y14f{bottom:107.999457pt;}
.y108{bottom:109.227836pt;}
.y118{bottom:111.387623pt;}
.yc7{bottom:112.101333pt;}
.y149{bottom:112.757737pt;}
.y113{bottom:113.287560pt;}
.y154{bottom:114.333707pt;}
.y25{bottom:116.401333pt;}
.y101{bottom:117.573387pt;}
.y141{bottom:118.022217pt;}
.y123{bottom:118.710649pt;}
.y148{bottom:119.507071pt;}
.y107{bottom:120.364236pt;}
.y11f{bottom:120.914307pt;}
.yf9{bottom:121.680000pt;}
.y158{bottom:122.004324pt;}
.y153{bottom:122.432907pt;}
.y117{bottom:122.524023pt;}
.y147{bottom:126.256404pt;}
.y150{bottom:128.044977pt;}
.y157{bottom:128.753657pt;}
.y122{bottom:129.847049pt;}
.y114{bottom:130.464613pt;}
.y152{bottom:130.532107pt;}
.y106{bottom:131.500636pt;}
.y102{bottom:132.624400pt;}
.y146{bottom:133.005737pt;}
.y142{bottom:133.073231pt;}
.y116{bottom:133.660423pt;}
.yc6{bottom:134.014667pt;}
.y120{bottom:134.277987pt;}
.y156{bottom:135.502991pt;}
.y24{bottom:138.314667pt;}
.y151{bottom:139.441227pt;}
.y145{bottom:140.430004pt;}
.y121{bottom:141.725876pt;}
.y155{bottom:142.927257pt;}
.y105{bottom:143.379463pt;}
.yf8{bottom:143.593333pt;}
.y115{bottom:145.539249pt;}
.y103{bottom:147.641667pt;}
.y143{bottom:148.090497pt;}
.y5e{bottom:149.140000pt;}
.y185{bottom:152.300000pt;}
.y167{bottom:154.468000pt;}
.y23{bottom:160.229333pt;}
.yf7{bottom:162.172000pt;}
.y139{bottom:165.506667pt;}
.y5d{bottom:171.697333pt;}
.y184{bottom:174.213333pt;}
.y22{bottom:182.142667pt;}
.yf6{bottom:184.086667pt;}
.y8b{bottom:184.710667pt;}
.y8d{bottom:191.092000pt;}
.y8a{bottom:194.688000pt;}
.y21{bottom:204.056000pt;}
.y8c{bottom:204.528000pt;}
.yf5{bottom:206.000000pt;}
.ybf{bottom:209.992000pt;}
.y183{bottom:210.112000pt;}
.y166{bottom:210.538667pt;}
.yc2{bottom:211.802667pt;}
.yc5{bottom:218.184000pt;}
.y5c{bottom:218.818667pt;}
.y86{bottom:222.770667pt;}
.y20{bottom:225.969333pt;}
.yf3{bottom:227.913333pt;}
.yc1{bottom:228.024000pt;}
.y88{bottom:229.152000pt;}
.yc4{bottom:229.342667pt;}
.y138{bottom:231.248000pt;}
.yc0{bottom:231.620000pt;}
.y182{bottom:232.025333pt;}
.y165{bottom:232.452000pt;}
.yf4{bottom:233.192000pt;}
.yc3{bottom:233.214667pt;}
.y89{bottom:238.893333pt;}
.ybe{bottom:240.176000pt;}
.y5b{bottom:240.732000pt;}
.y87{bottom:242.588000pt;}
.y85{bottom:247.808000pt;}
.y1f{bottom:247.882667pt;}
.yf1{bottom:249.826667pt;}
.y164{bottom:254.365333pt;}
.yf2{bottom:255.105333pt;}
.y5a{bottom:259.049333pt;}
.y59{bottom:262.645333pt;}
.y82{bottom:262.856000pt;}
.ybd{bottom:266.004000pt;}
.y181{bottom:267.922667pt;}
.y84{bottom:269.238667pt;}
.y1e{bottom:269.796000pt;}
.yef{bottom:271.740000pt;}
.y163{bottom:276.280000pt;}
.yf0{bottom:277.018667pt;}
.y83{bottom:282.674667pt;}
.y81{bottom:283.909333pt;}
.y58{bottom:284.558667pt;}
.ybc{bottom:287.917333pt;}
.y180{bottom:289.837333pt;}
.y136{bottom:291.709333pt;}
.yee{bottom:293.653333pt;}
.y137{bottom:296.988000pt;}
.y162{bottom:298.193333pt;}
.y1d{bottom:306.110667pt;}
.y57{bottom:306.472000pt;}
.ybb{bottom:309.830667pt;}
.y135{bottom:313.622667pt;}
.y80{bottom:315.464000pt;}
.yed{bottom:315.566667pt;}
.y161{bottom:320.106667pt;}
.y17f{bottom:325.734667pt;}
.yba{bottom:331.744000pt;}
.y134{bottom:335.537333pt;}
.y7f{bottom:337.377333pt;}
.yeb{bottom:337.481333pt;}
.y53{bottom:339.829333pt;}
.y160{bottom:342.020000pt;}
.yec{bottom:342.758667pt;}
.y55{bottom:344.812000pt;}
.y17e{bottom:347.648000pt;}
.y56{bottom:351.193333pt;}
.y52{bottom:354.789333pt;}
.y1c{bottom:355.984000pt;}
.y132{bottom:357.450667pt;}
.y7e{bottom:359.290667pt;}
.yea{bottom:359.394667pt;}
.y133{bottom:362.729333pt;}
.y15f{bottom:363.933333pt;}
.yb7{bottom:364.212000pt;}
.y54{bottom:364.629333pt;}
.y1b{bottom:375.320000pt;}
.yb9{bottom:376.845333pt;}
.y131{bottom:379.364000pt;}
.yb4{bottom:380.441333pt;}
.y7c{bottom:381.204000pt;}
.ye8{bottom:381.308000pt;}
.y4e{bottom:383.438667pt;}
.y17d{bottom:383.546667pt;}
.y7d{bottom:384.881333pt;}
.y15e{bottom:385.846667pt;}
.ye9{bottom:386.586667pt;}
.y50{bottom:388.421333pt;}
.yb6{bottom:393.376000pt;}
.y1a{bottom:394.656000pt;}
.y51{bottom:394.804000pt;}
.yb5{bottom:397.361333pt;}
.yb8{bottom:398.246667pt;}
.y4d{bottom:398.400000pt;}
.y130{bottom:401.277333pt;}
.ye7{bottom:403.221333pt;}
.y17c{bottom:405.460000pt;}
.y15d{bottom:407.760000pt;}
.y4f{bottom:408.240000pt;}
.y19{bottom:413.990667pt;}
.y7a{bottom:414.466667pt;}
.y12f{bottom:423.190667pt;}
.y79{bottom:424.444000pt;}
.ye6{bottom:425.134667pt;}
.y49{bottom:427.048000pt;}
.yb3{bottom:428.481333pt;}
.y15c{bottom:429.674667pt;}
.y4b{bottom:432.032000pt;}
.y18{bottom:433.326667pt;}
.y7b{bottom:434.284000pt;}
.y4c{bottom:438.413333pt;}
.y17b{bottom:441.358667pt;}
.y48{bottom:442.009333pt;}
.y12d{bottom:445.104000pt;}
.ye5{bottom:447.048000pt;}
.y12e{bottom:450.382667pt;}
.yb1{bottom:450.394667pt;}
.y78{bottom:451.725333pt;}
.y4a{bottom:451.849333pt;}
.y17{bottom:452.661333pt;}
.yb2{bottom:455.673333pt;}
.y77{bottom:461.702667pt;}
.y17a{bottom:463.272000pt;}
.y12b{bottom:467.017333pt;}
.y15b{bottom:467.740000pt;}
.yb0{bottom:468.712000pt;}
.ye3{bottom:468.961333pt;}
.y16{bottom:471.997333pt;}
.y12c{bottom:472.296000pt;}
.yaf{bottom:472.308000pt;}
.ye4{bottom:474.240000pt;}
.y47{bottom:486.665333pt;}
.y12a{bottom:488.932000pt;}
.ye2{bottom:490.874667pt;}
.y15{bottom:491.332000pt;}
.yae{bottom:494.221333pt;}
.y179{bottom:499.170667pt;}
.y76{bottom:504.332000pt;}
.y46{bottom:508.578667pt;}
.y14{bottom:510.668000pt;}
.y129{bottom:510.845333pt;}
.yad{bottom:511.909333pt;}
.ye0{bottom:512.789333pt;}
.yac{bottom:516.136000pt;}
.ye1{bottom:518.066667pt;}
.y178{bottom:521.084000pt;}
.y15a{bottom:523.810667pt;}
.y74{bottom:526.245333pt;}
.y75{bottom:529.922667pt;}
.y13{bottom:530.004000pt;}
.y45{bottom:530.492000pt;}
.y128{bottom:532.758667pt;}
.y44{bottom:534.169333pt;}
.ydf{bottom:534.702667pt;}
.y177{bottom:542.997333pt;}
.y159{bottom:545.725333pt;}
.y72{bottom:548.158667pt;}
.y12{bottom:549.338667pt;}
.y73{bottom:551.836000pt;}
.y42{bottom:552.405333pt;}
.yab{bottom:553.149333pt;}
.y43{bottom:556.082667pt;}
.yde{bottom:556.616000pt;}
.yaa{bottom:559.530667pt;}
.ya9{bottom:563.126667pt;}
.y11{bottom:568.674667pt;}
.y40{bottom:569.302667pt;}
.y71{bottom:570.072000pt;}
.y3e{bottom:574.318667pt;}
.y3f{bottom:577.996000pt;}
.ydd{bottom:578.529333pt;}
.y176{bottom:578.896000pt;}
.y41{bottom:580.045333pt;}
.y10{bottom:588.009333pt;}
.y3d{bottom:591.216000pt;}
.y70{bottom:591.986667pt;}
.y127{bottom:592.344000pt;}
.ya8{bottom:593.372000pt;}
.y3b{bottom:596.232000pt;}
.ya7{bottom:599.753333pt;}
.y3a{bottom:599.909333pt;}
.ydb{bottom:600.442667pt;}
.y175{bottom:600.809333pt;}
.y6f{bottom:601.925333pt;}
.y3c{bottom:601.960000pt;}
.ya6{bottom:603.349333pt;}
.ydc{bottom:605.721333pt;}
.yf{bottom:607.345333pt;}
.y39{bottom:613.130667pt;}
.y6e{bottom:613.900000pt;}
.y37{bottom:618.145333pt;}
.y38{bottom:621.822667pt;}
.yda{bottom:622.356000pt;}
.y6d{bottom:623.838667pt;}
.ye{bottom:626.681333pt;}
.y126{bottom:627.496000pt;}
.y6c{bottom:635.813333pt;}
.y174{bottom:636.706667pt;}
.y36{bottom:640.060000pt;}
.yd9{bottom:644.269333pt;}
.y125{bottom:645.561333pt;}
.ya5{bottom:647.129333pt;}
.yd{bottom:647.681333pt;}
.y6b{bottom:657.726667pt;}
.y173{bottom:658.620000pt;}
.yd7{bottom:661.168000pt;}
.yd8{bottom:662.488000pt;}
.yd5{bottom:666.184000pt;}
.ya4{bottom:669.042667pt;}
.yd6{bottom:671.910667pt;}
.yc{bottom:676.321333pt;}
.y35{bottom:679.697333pt;}
.yd4{bottom:688.097333pt;}
.y69{bottom:690.640000pt;}
.ya3{bottom:690.956000pt;}
.y172{bottom:694.518667pt;}
.y68{bottom:700.617333pt;}
.yb{bottom:702.929333pt;}
.y34{bottom:705.596000pt;}
.y6a{bottom:710.457333pt;}
.ya2{bottom:712.869333pt;}
.y171{bottom:716.432000pt;}
.yd3{bottom:721.694667pt;}
.ya{bottom:724.842667pt;}
.y66{bottom:730.814667pt;}
.y65{bottom:730.862667pt;}
.y170{bottom:738.345333pt;}
.y64{bottom:740.840000pt;}
.yd2{bottom:741.512000pt;}
.y33{bottom:745.233333pt;}
.y9{bottom:746.756000pt;}
.y67{bottom:750.680000pt;}
.ya1{bottom:752.506667pt;}
.ya0{bottom:762.446667pt;}
.y32{bottom:767.146667pt;}
.y8{bottom:768.669333pt;}
.y16f{bottom:774.244000pt;}
.yd1{bottom:775.520000pt;}
.y63{bottom:783.810667pt;}
.y31{bottom:789.060000pt;}
.y9f{bottom:792.145333pt;}
.y16e{bottom:796.157333pt;}
.yd0{bottom:797.433333pt;}
.y7{bottom:797.856000pt;}
.y62{bottom:805.725333pt;}
.y30{bottom:810.973333pt;}
.y9e{bottom:814.058667pt;}
.y16d{bottom:818.070667pt;}
.ycf{bottom:819.346667pt;}
.y10e{bottom:833.242667pt;}
.y6{bottom:833.357333pt;}
.y61{bottom:838.112000pt;}
.y9d{bottom:846.870667pt;}
.y2f{bottom:848.721333pt;}
.yfa{bottom:851.308000pt;}
.yce{bottom:852.416000pt;}
.y16c{bottom:853.969333pt;}
.ycc{bottom:856.738667pt;}
.y5{bottom:857.476000pt;}
.y60{bottom:860.025333pt;}
.ycb{bottom:864.708000pt;}
.ycd{bottom:874.548000pt;}
.y16b{bottom:875.882667pt;}
.y4{bottom:881.596000pt;}
.y5f{bottom:881.938667pt;}
.y9c{bottom:894.212000pt;}
.y3{bottom:902.114667pt;}
.y2e{bottom:903.852000pt;}
.yca{bottom:911.306667pt;}
.y16a{bottom:911.781333pt;}
.y2d{bottom:925.765333pt;}
.y99{bottom:926.113333pt;}
.y9b{bottom:932.494667pt;}
.y169{bottom:933.694667pt;}
.y187{bottom:935.724000pt;}
.y98{bottom:936.090667pt;}
.y9a{bottom:945.930667pt;}
.y2c{bottom:947.678667pt;}
.yc9{bottom:951.396000pt;}
.y168{bottom:955.608000pt;}
.y186{bottom:957.637333pt;}
.y95{bottom:966.198667pt;}
.y2{bottom:968.913333pt;}
.y2b{bottom:969.592000pt;}
.y97{bottom:972.580000pt;}
.y94{bottom:982.321333pt;}
.y96{bottom:986.016000pt;}
.y93{bottom:991.237333pt;}
.y2a{bottom:991.506667pt;}
.y8f{bottom:1006.932000pt;}
.y91{bottom:1007.721333pt;}
.y90{bottom:1008.352000pt;}
.y1{bottom:1009.196000pt;}
.y29{bottom:1013.420000pt;}
.y92{bottom:1018.446667pt;}
.y8e{bottom:1027.500000pt;}
.y28{bottom:1066.022667pt;}
.h2e{height:2.125355pt;}
.h3f{height:15.053733pt;}
.h51{height:16.630357pt;}
.h4c{height:18.293393pt;}
.h4b{height:19.956429pt;}
.h4e{height:21.640354pt;}
.h3d{height:21.848701pt;}
.h49{height:22.521733pt;}
.h48{height:22.527067pt;}
.h2a{height:22.756400pt;}
.h4f{height:24.945536pt;}
.h52{height:26.802953pt;}
.h53{height:28.047707pt;}
.h4d{height:29.483248pt;}
.h12{height:30.392648pt;}
.h4{height:31.880400pt;}
.h34{height:32.109733pt;}
.h54{height:32.163543pt;}
.h50{height:35.865600pt;}
.h8{height:37.087439pt;}
.ha{height:38.043849pt;}
.h25{height:38.697733pt;}
.h7{height:39.850400pt;}
.h6{height:40.610943pt;}
.h5{height:43.636400pt;}
.h1b{height:44.632747pt;}
.hb{height:51.507315pt;}
.h22{height:52.989733pt;}
.h20{height:52.995067pt;}
.h9{height:53.559147pt;}
.h13{height:53.864021pt;}
.h3c{height:53.933218pt;}
.h3e{height:54.413981pt;}
.h10{height:54.787067pt;}
.hd{height:54.792400pt;}
.h39{height:55.901733pt;}
.h38{height:55.907067pt;}
.h41{height:58.020400pt;}
.hc{height:58.340400pt;}
.h11{height:58.345733pt;}
.h36{height:58.415067pt;}
.h42{height:59.124400pt;}
.h29{height:60.808021pt;}
.h1c{height:62.365355pt;}
.h30{height:67.379067pt;}
.h3{height:67.615733pt;}
.h2c{height:67.773733pt;}
.h16{height:68.797981pt;}
.h28{height:70.285733pt;}
.h35{height:70.291067pt;}
.h31{height:70.776648pt;}
.h44{height:71.229218pt;}
.h32{height:71.693733pt;}
.h2f{height:73.059067pt;}
.h2d{height:76.749355pt;}
.h2{height:77.140000pt;}
.h3b{height:78.306688pt;}
.he{height:78.404400pt;}
.hf{height:78.409733pt;}
.h33{height:78.717355pt;}
.h47{height:82.429355pt;}
.h1d{height:82.996400pt;}
.h21{height:83.391067pt;}
.h37{height:83.396400pt;}
.h23{height:83.545733pt;}
.h3a{height:92.690688pt;}
.h1a{height:94.323315pt;}
.h17{height:94.328648pt;}
.h15{height:95.811067pt;}
.h26{height:95.816400pt;}
.h43{height:96.754551pt;}
.h27{height:97.380400pt;}
.h24{height:102.280021pt;}
.h2b{height:106.739067pt;}
.h1f{height:118.216021pt;}
.h19{height:122.905733pt;}
.h18{height:122.911067pt;}
.h1e{height:123.097733pt;}
.h45{height:129.583067pt;}
.h14{height:132.264400pt;}
.h40{height:134.301981pt;}
.h46{height:143.416021pt;}
.h4a{height:170.083200pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:170.073600pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13e{left:4.818752pt;}
.x142{left:7.150272pt;}
.x13d{left:8.220224pt;}
.x16e{left:10.487872pt;}
.x13c{left:15.023168pt;}
.x16d{left:16.156992pt;}
.x13f{left:20.408832pt;}
.x172{left:24.654389pt;}
.x173{left:26.196059pt;}
.x16f{left:27.093669pt;}
.x170{left:28.407252pt;}
.x171{left:30.377035pt;}
.x14a{left:56.596715pt;}
.x149{left:58.041868pt;}
.x147{left:59.714731pt;}
.x144{left:61.159884pt;}
.x140{left:62.832747pt;}
.x141{left:64.277900pt;}
.x143{left:87.188231pt;}
.x137{left:92.786667pt;}
.x13{left:94.488000pt;}
.x9b{left:95.880000pt;}
.x2d{left:97.177333pt;}
.x11e{left:101.906667pt;}
.x49{left:105.861333pt;}
.x5{left:106.842667pt;}
.xba{left:108.404000pt;}
.x138{left:110.014667pt;}
.x2e{left:111.801333pt;}
.xbb{left:115.532000pt;}
.x18{left:117.070667pt;}
.x122{left:119.844000pt;}
.xaa{left:120.742667pt;}
.xa4{left:122.036000pt;}
.x139{left:123.202667pt;}
.x9c{left:124.125333pt;}
.x148{left:125.302667pt;}
.x2f{left:129.096000pt;}
.xf{left:130.852000pt;}
.x1{left:132.066667pt;}
.x5e{left:133.458667pt;}
.x158{left:134.458667pt;}
.x74{left:135.357333pt;}
.xb4{left:137.792000pt;}
.xcc{left:139.421333pt;}
.x11f{left:142.292000pt;}
.x44{left:143.828000pt;}
.x43{left:146.548000pt;}
.x86{left:149.148000pt;}
.xe{left:150.777333pt;}
.x83{left:151.961333pt;}
.x7e{left:152.892000pt;}
.xab{left:156.108000pt;}
.x45{left:159.574667pt;}
.xdd{left:160.802667pt;}
.x4{left:161.869333pt;}
.x21{left:164.510667pt;}
.x9d{left:165.730667pt;}
.xbc{left:167.545333pt;}
.x123{left:168.933333pt;}
.xf2{left:169.970667pt;}
.x5f{left:171.017333pt;}
.x114{left:171.976000pt;}
.x30{left:173.394667pt;}
.x7f{left:174.901333pt;}
.x75{left:176.042667pt;}
.x84{left:177.932000pt;}
.x4a{left:179.078667pt;}
.x6{left:180.717333pt;}
.x2{left:183.881333pt;}
.x6b{left:186.704000pt;}
.x47{left:188.010667pt;}
.x46{left:190.154667pt;}
.x4b{left:192.816000pt;}
.xac{left:193.786667pt;}
.x60{left:195.010667pt;}
.x120{left:195.921333pt;}
.x61{left:197.266667pt;}
.xc6{left:198.336000pt;}
.xd4{left:199.358667pt;}
.xf3{left:200.726667pt;}
.xe5{left:201.854667pt;}
.x115{left:203.285333pt;}
.x48{left:204.222667pt;}
.x12b{left:207.082667pt;}
.xe6{left:208.096000pt;}
.x4c{left:209.269333pt;}
.x6c{left:210.696000pt;}
.x105{left:212.097333pt;}
.x121{left:213.149333pt;}
.x9e{left:214.465333pt;}
.x6d{left:215.426667pt;}
.x14b{left:217.234667pt;}
.x19{left:219.289333pt;}
.x9f{left:220.236000pt;}
.x124{left:222.210667pt;}
.x106{left:225.942667pt;}
.x3{left:226.840000pt;}
.x159{left:229.013333pt;}
.xc7{left:230.670667pt;}
.x62{left:232.610667pt;}
.xae{left:234.382667pt;}
.xad{left:236.721333pt;}
.x116{left:237.916000pt;}
.x94{left:239.630667pt;}
.x7{left:241.296000pt;}
.x1a{left:244.497333pt;}
.x16c{left:248.024000pt;}
.x8d{left:248.994667pt;}
.x11d{left:250.949333pt;}
.x117{left:252.752000pt;}
.x107{left:254.297333pt;}
.xa0{left:256.070667pt;}
.xfe{left:257.797333pt;}
.x118{left:259.061333pt;}
.x13a{left:260.144000pt;}
.x1b{left:261.224000pt;}
.x162{left:262.278667pt;}
.xff{left:263.568000pt;}
.x14{left:266.694667pt;}
.x8e{left:268.210667pt;}
.x4d{left:270.470667pt;}
.xb5{left:271.458667pt;}
.xb0{left:272.525333pt;}
.x1c{left:274.024000pt;}
.x15{left:275.058667pt;}
.xbd{left:276.788000pt;}
.xd5{left:278.026667pt;}
.xa{left:279.032000pt;}
.x31{left:281.565333pt;}
.xb{left:282.864000pt;}
.xfa{left:284.036000pt;}
.x9{left:285.941333pt;}
.xb1{left:287.845333pt;}
.x1d{left:290.752000pt;}
.x10{left:291.932000pt;}
.x174{left:292.825333pt;}
.x4e{left:293.764000pt;}
.x32{left:294.936000pt;}
.x95{left:297.862667pt;}
.x4f{left:299.308000pt;}
.x25{left:301.522667pt;}
.xc{left:304.493333pt;}
.xc8{left:305.416000pt;}
.xaf{left:307.614667pt;}
.x22{left:308.796000pt;}
.x33{left:310.064000pt;}
.x15f{left:311.244000pt;}
.x87{left:312.266667pt;}
.xb6{left:313.164000pt;}
.x64{left:314.748000pt;}
.xbe{left:315.757333pt;}
.x88{left:317.814667pt;}
.xa1{left:318.885333pt;}
.x8f{left:320.005333pt;}
.x6e{left:321.357333pt;}
.x34{left:323.512000pt;}
.x14d{left:324.642667pt;}
.x10e{left:326.228000pt;}
.x152{left:327.769333pt;}
.x96{left:328.670667pt;}
.x97{left:330.628000pt;}
.xcd{left:332.009333pt;}
.xc9{left:333.177333pt;}
.x50{left:335.142667pt;}
.x14e{left:336.101333pt;}
.xee{left:338.406667pt;}
.x167{left:339.432000pt;}
.x89{left:341.028000pt;}
.xa5{left:342.169333pt;}
.xa6{left:343.561333pt;}
.x14c{left:346.270667pt;}
.x100{left:349.542667pt;}
.x8{left:352.068000pt;}
.xde{left:353.845333pt;}
.x5c{left:354.785333pt;}
.xef{left:356.276000pt;}
.x35{left:357.181333pt;}
.x12e{left:359.081333pt;}
.xca{left:360.649333pt;}
.x15a{left:362.144000pt;}
.xce{left:363.778667pt;}
.x109{left:365.817333pt;}
.xd{left:367.833333pt;}
.x14f{left:368.944000pt;}
.x36{left:370.324000pt;}
.x5d{left:371.513333pt;}
.x63{left:372.448000pt;}
.x160{left:373.437333pt;}
.x90{left:374.434667pt;}
.x153{left:375.370667pt;}
.x10a{left:377.540000pt;}
.x8a{left:379.249333pt;}
.x12f{left:380.226667pt;}
.x1e{left:382.405333pt;}
.x145{left:383.848000pt;}
.x38{left:384.773333pt;}
.x98{left:386.901333pt;}
.xed{left:389.197333pt;}
.xf0{left:390.400000pt;}
.x37{left:391.329333pt;}
.x8b{left:392.680000pt;}
.xec{left:393.585333pt;}
.xd6{left:395.382667pt;}
.xf1{left:396.642667pt;}
.x8c{left:398.229333pt;}
.x76{left:399.390667pt;}
.xa7{left:400.312000pt;}
.xa8{left:401.704000pt;}
.xbf{left:402.872000pt;}
.x154{left:403.768000pt;}
.x10b{left:405.226667pt;}
.xfb{left:406.257333pt;}
.x1f{left:409.588000pt;}
.x108{left:411.262667pt;}
.xe0{left:412.641333pt;}
.x65{left:414.269333pt;}
.xcf{left:415.588000pt;}
.xe2{left:416.614667pt;}
.x99{left:417.710667pt;}
.x9a{left:419.668000pt;}
.x6f{left:420.877333pt;}
.xdc{left:422.693333pt;}
.x77{left:424.582667pt;}
.xe3{left:425.953333pt;}
.xa9{left:427.860000pt;}
.x101{left:431.956000pt;}
.x78{left:433.401333pt;}
.xc0{left:435.206667pt;}
.xdf{left:436.844000pt;}
.x67{left:438.262667pt;}
.x66{left:439.489333pt;}
.xe4{left:442.204000pt;}
.x16{left:443.722667pt;}
.x11{left:444.962667pt;}
.x85{left:447.386667pt;}
.x15d{left:449.360000pt;}
.x20{left:450.726667pt;}
.x17{left:452.086667pt;}
.x12{left:453.652000pt;}
.xe7{left:455.406667pt;}
.x23{left:456.620000pt;}
.xb3{left:457.532000pt;}
.x39{left:459.068000pt;}
.xb2{left:461.016000pt;}
.x79{left:461.996000pt;}
.x161{left:464.022667pt;}
.x52{left:465.738667pt;}
.xda{left:466.956000pt;}
.x51{left:467.882667pt;}
.xc1{left:468.846667pt;}
.x80{left:470.470667pt;}
.x125{left:471.458667pt;}
.x68{left:472.661333pt;}
.x13b{left:474.557333pt;}
.x3a{left:476.441333pt;}
.xd8{left:477.618667pt;}
.xf4{left:479.085333pt;}
.x53{left:482.656000pt;}
.x81{left:485.189333pt;}
.x102{left:487.520000pt;}
.xcb{left:488.885333pt;}
.xdb{left:490.700000pt;}
.x10f{left:491.840000pt;}
.x3b{left:493.754667pt;}
.x146{left:495.365333pt;}
.xc2{left:496.669333pt;}
.x10c{left:497.629333pt;}
.x24{left:502.257333pt;}
.xf5{left:504.646667pt;}
.x15e{left:506.082667pt;}
.x11c{left:507.085333pt;}
.x71{left:509.313333pt;}
.x3c{left:511.049333pt;}
.x70{left:512.796000pt;}
.x82{left:515.412000pt;}
.x54{left:518.490667pt;}
.xa2{left:520.294667pt;}
.x126{left:521.262667pt;}
.x110{left:523.089333pt;}
.xd0{left:525.370667pt;}
.xc3{left:527.324000pt;}
.x103{left:528.480000pt;}
.x155{left:531.056000pt;}
.x150{left:532.846667pt;}
.x104{left:534.250667pt;}
.x130{left:535.850667pt;}
.x151{left:536.886667pt;}
.x164{left:538.630667pt;}
.x165{left:539.586667pt;}
.x55{left:543.856000pt;}
.x3d{left:545.833333pt;}
.x168{left:547.009333pt;}
.xd7{left:548.189333pt;}
.xf6{left:549.550667pt;}
.x131{left:550.977333pt;}
.x12c{left:552.401333pt;}
.xa3{left:554.136000pt;}
.x10d{left:556.432000pt;}
.x3e{left:558.510667pt;}
.x69{left:560.669333pt;}
.x91{left:562.106667pt;}
.x56{left:565.594667pt;}
.x12d{left:567.237333pt;}
.x132{left:569.417333pt;}
.x57{left:571.138667pt;}
.x40{left:572.960000pt;}
.xf7{left:574.081333pt;}
.xc4{left:575.114667pt;}
.x166{left:576.097333pt;}
.x127{left:577.770667pt;}
.xd9{left:578.704000pt;}
.x3f{left:580.417333pt;}
.x27{left:581.792000pt;}
.x26{left:584.037333pt;}
.x15b{left:585.917333pt;}
.x6a{left:587.364000pt;}
.x133{left:588.840000pt;}
.x169{left:589.846667pt;}
.xd1{left:592.082667pt;}
.x15c{left:593.149333pt;}
.xf8{left:594.929333pt;}
.x163{left:596.142667pt;}
.x28{left:597.408000pt;}
.x111{left:598.670667pt;}
.xb8{left:601.329333pt;}
.xb7{left:603.473333pt;}
.x72{left:605.065333pt;}
.x58{left:606.973333pt;}
.xf9{left:608.637333pt;}
.x29{left:612.536000pt;}
.x7a{left:614.140000pt;}
.x16a{left:615.268000pt;}
.x119{left:616.380000pt;}
.xb9{left:618.574667pt;}
.x112{left:619.836000pt;}
.xe8{left:620.744000pt;}
.x156{left:621.740000pt;}
.x92{left:623.437333pt;}
.x2a{left:625.982667pt;}
.x7b{left:628.420000pt;}
.x134{left:629.673333pt;}
.xd2{left:632.586667pt;}
.x7c{left:633.974667pt;}
.xfc{left:635.948000pt;}
.x59{left:637.162667pt;}
.xe9{left:638.388000pt;}
.xc5{left:639.480000pt;}
.x5a{left:642.706667pt;}
.x41{left:647.254667pt;}
.x7d{left:648.972000pt;}
.x157{left:649.886667pt;}
.x113{left:651.085333pt;}
.x93{left:653.672000pt;}
.xfd{left:655.024000pt;}
.x128{left:656.561333pt;}
.x16b{left:657.856000pt;}
.x2b{left:660.536000pt;}
.x135{left:661.582667pt;}
.x42{left:662.745333pt;}
.xe1{left:666.458667pt;}
.xea{left:667.854667pt;}
.x136{left:674.253333pt;}
.x2c{left:676.246667pt;}
.x5b{left:678.541333pt;}
.x129{left:680.700000pt;}
.x73{left:682.328000pt;}
.x12a{left:684.740000pt;}
.xeb{left:686.849333pt;}
.x11a{left:691.604000pt;}
.x11b{left:697.913333pt;}
.xd3{left:710.449333pt;}
}




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