
    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_ab8453019630c7287450f6da.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_b848ce5ef191642975da7536.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.131000;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_4d20b3e6916668afeec86ec3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.133000;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_15b00155e696da37a66489e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.147000;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_3a253374e1ed18c0c3d7177d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.483000;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_86fd7a315144f2f8653cdb9c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.139000;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_6b1243133b307acb44ee2dfb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.123000;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_fd689f9733a47c5f8aa65542.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.444000;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_631e7702b66dac13c5543391.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.483000;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_2f636810e4d47e118dd7971a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.132000;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_e8266c5a2f809f90a476f7fc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.723000;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_c8e405cfe164e20aa22fb967.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.628000;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_5857b9ea1d1f37abc576c5ca.woff2')format("woff");}.fff{font-family:fff;line-height:0.940000;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_1d618ac187ee086929b90f87.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.940000;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_0c6837d7d2809f3451df3d0e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.705000;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_e89b5c84b851c8a4a43682b9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.865000;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_24ee30b4004bacc30a6aed33.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.948000;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_424133519d5ac44672fb9fbd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.050000;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_5aaa55ded02576bea7b0d146.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.182000;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_0d49730f97da55b61df75fd7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.834000;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_a2599f516fcf9261d421d111.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_a0a88c554e3265b4beb25d31.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.713000;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_a6cec2e47d502db28c9d4807.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.870000;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_9d8a88f85f507f06f2c41159.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.834000;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_8091972ec50affdf5a5355ff.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_e3b0e9c6a16c28af764299fb.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.713000;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_bc97991f656afee62f02e14d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.870000;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_7499d3d6f229e456b0c39c9a.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.716000;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_8ba5462905fb875a8d330bef.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_ea345df3edb7276141d34367.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.940000;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_1d9fc83fd1fb44be4682defa.woff2')format("woff");}.ff21{font-family:ff21;line-height:2.172000;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_ed00f872b2709398abc19632.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.865000;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_bb30454442321b692b129f74.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.953000;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_ef2e53c9d241487bd74dbb42.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_812f72b7948b7b6495d01159.woff2')format("woff");}.ff25{font-family:ff25;line-height:3.732000;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_0b3bbc1f0e36bc25f697ab74.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.948000;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_034e14c7f931ae58ed8b5573.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.865000;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_721ef8839e07522ae0b37cfa.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.438000;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:ff29;src:url('chunks/assets/font_fd53ff294b4d4bdcb785018c.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.713000;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:ff2a;src:url('chunks/assets/font_e7c67612fdf07c6955769776.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.701000;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:ff2b;src:url('chunks/assets/font_3a58cb53cbe4347e31b48c6a.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.657000;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:ff2c;src:url('chunks/assets/font_4b4fd30963f37606a8fd9937.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.054000;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:ff2d;src:url('chunks/assets/font_ab3fd6b47dc53b939ddd1f81.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.713000;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:ff2e;src:url('chunks/assets/font_e7a34863c4ea47b6f803485c.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.877000;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:ff2f;src:url('chunks/assets/font_16166207d485630bb79f7c54.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.713000;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:ff30;src:url('chunks/assets/font_3ab7f67eb87fff6e0ce56c76.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.746000;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:ff31;src:url('chunks/assets/font_e35f2b24f5713aaa205ca492.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.824000;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:ff32;src:url('chunks/assets/font_d440ab96a552e2b01125de34.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.719000;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:ff33;src:url('chunks/assets/font_fd0b629c0f6436d9dd0d569a.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.258000;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:ff34;src:url('chunks/assets/font_b4d0ed5feae3edc687ccad0a.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.713000;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:ff35;src:url('chunks/assets/font_c66c38e3c9b7e03a8e644a24.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.400000;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:ff36;src:url('chunks/assets/font_1673e7dd1e2078f9cc78ba2d.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.870000;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:ff37;src:url('chunks/assets/font_c7ef031c0da4ed05d3cff216.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.940000;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:ff38;src:url('chunks/assets/font_55062d93cb22c30850467bab.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.772000;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:ff39;src:url('chunks/assets/font_954e0eb852e936a655d2da76.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.440000;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:ff3a;src:url('chunks/assets/font_c0b8281fcc60b973d1e46b59.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.824000;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:ff3b;src:url('chunks/assets/font_5db4e880f72d1a5fef42f223.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.724000;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:ff3c;src:url('chunks/assets/font_5aaa55ded02576bea7b0d146.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.182000;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:ff3d;src:url('chunks/assets/font_8f2ce29103d819cfbc4120a6.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.870000;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:ff3e;src:url('chunks/assets/font_a27c7c36dcb026067560dde4.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.940000;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:ff3f;src:url('chunks/assets/font_46e7f5addd5b0ee8c65d077d.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.258000;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:ff40;src:url('chunks/assets/font_ede5d0bb40a749a074176f3e.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.940000;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:ff41;src:url('chunks/assets/font_7ec78bd2da5d2e82f5c71d61.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.727000;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:ff42;src:url('chunks/assets/font_83143e73967989a4932dd7a8.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.865000;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:ff43;src:url('chunks/assets/font_992d53b087f5b821ef566162.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.824000;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:ff44;src:url('chunks/assets/font_c4a28e4c838a1ee148d58f31.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.853000;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:ff45;src:url('chunks/assets/font_d91d2f159f60d369827f2a26.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.940000;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:ff46;src:url('chunks/assets/font_c43b16861619ba68b7bfe385.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.772000;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:ff47;src:url('chunks/assets/font_f2495ce82dca6945c7e33c67.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.824000;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:ff48;src:url('chunks/assets/font_2f3e1312f89e44835a7a407c.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.400000;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:ff49;src:url('chunks/assets/font_ee123a38800b1370b76239d5.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vd{vertical-align:-23.345398px;}
.v4{vertical-align:-18.000000px;}
.v12{vertical-align:-16.799927px;}
.v5{vertical-align:-14.678363px;}
.v10{vertical-align:-11.981927px;}
.v6{vertical-align:-8.800781px;}
.vf{vertical-align:-6.695435px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.488000px;}
.ve{vertical-align:9.326696px;}
.vc{vertical-align:10.854040px;}
.v8{vertical-align:18.127562px;}
.v7{vertical-align:21.923400px;}
.v2{vertical-align:23.527230px;}
.v1{vertical-align:26.399780px;}
.v9{vertical-align:41.173860px;}
.v11{vertical-align:54.000000px;}
.vb{vertical-align:59.330785px;}
.va{vertical-align:80.715398px;}
.ls4e{letter-spacing:-0.882000px;}
.ls3{letter-spacing:-0.470400px;}
.ls36{letter-spacing:-0.329280px;}
.ls4d{letter-spacing:-0.294000px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000062px;}
.ls1{letter-spacing:0.000400px;}
.ls29{letter-spacing:0.001937px;}
.ls37{letter-spacing:0.006414px;}
.lse{letter-spacing:0.006948px;}
.ls2a{letter-spacing:0.010485px;}
.ls42{letter-spacing:0.011924px;}
.ls28{letter-spacing:0.012473px;}
.ls23{letter-spacing:0.014369px;}
.ls3b{letter-spacing:0.018024px;}
.ls38{letter-spacing:0.018727px;}
.ls1d{letter-spacing:0.019808px;}
.ls31{letter-spacing:0.020642px;}
.ls41{letter-spacing:0.020734px;}
.ls2f{letter-spacing:0.025387px;}
.ls34{letter-spacing:0.025478px;}
.ls27{letter-spacing:0.036254px;}
.ls45{letter-spacing:0.037643px;}
.ls3a{letter-spacing:0.049925px;}
.ls26{letter-spacing:0.058805px;}
.ls1e{letter-spacing:0.058820px;}
.ls24{letter-spacing:0.077780px;}
.ls30{letter-spacing:0.223512px;}
.ls21{letter-spacing:0.576240px;}
.ls1a{letter-spacing:0.625834px;}
.ls1c{letter-spacing:0.670536px;}
.ls4a{letter-spacing:0.705600px;}
.ls1b{letter-spacing:1.609286px;}
.ls11{letter-spacing:2.993844px;}
.ls10{letter-spacing:2.993935px;}
.ls12{letter-spacing:2.994027px;}
.ls22{letter-spacing:2.995061px;}
.ls18{letter-spacing:3.047954px;}
.ls1f{letter-spacing:3.528475px;}
.ls14{letter-spacing:3.528658px;}
.ls2e{letter-spacing:3.667686px;}
.lsc{letter-spacing:3.670154px;}
.ls7{letter-spacing:4.411485px;}
.ls33{letter-spacing:4.680550px;}
.ls44{letter-spacing:4.682931px;}
.ls13{letter-spacing:5.319586px;}
.ls2{letter-spacing:5.460000px;}
.ls17{letter-spacing:5.842324px;}
.ls39{letter-spacing:6.115200px;}
.ls19{letter-spacing:7.058376px;}
.ls20{letter-spacing:9.242223px;}
.ls4{letter-spacing:9.244695px;}
.ls8{letter-spacing:9.834670px;}
.ls3d{letter-spacing:9.852316px;}
.ls2c{letter-spacing:12.293338px;}
.ls6{letter-spacing:13.057996px;}
.lsb{letter-spacing:13.116815px;}
.ls2b{letter-spacing:15.979694px;}
.ls2d{letter-spacing:16.091805px;}
.ls43{letter-spacing:16.091896px;}
.ls40{letter-spacing:16.145180px;}
.ls15{letter-spacing:16.293085px;}
.ls9{letter-spacing:16.351904px;}
.ls47{letter-spacing:16.736194px;}
.lsa{letter-spacing:16.736286px;}
.lsf{letter-spacing:16.736377px;}
.ls3c{letter-spacing:17.234201px;}
.ls35{letter-spacing:17.639656px;}
.ls46{letter-spacing:17.639839px;}
.ls32{letter-spacing:17.747871px;}
.ls5{letter-spacing:20.116372px;}
.ls3f{letter-spacing:20.292831px;}
.ls16{letter-spacing:23.527920px;}
.lsd{letter-spacing:26.174811px;}
.ls3e{letter-spacing:68.583887px;}
.ls48{letter-spacing:294.000000px;}
.ls49{letter-spacing:414.960000px;}
.ls4c{letter-spacing:464.208000px;}
.ls4b{letter-spacing:489.744000px;}
.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;}
}
.ws1{word-spacing:-30.528000px;}
.ws6{word-spacing:-21.216000px;}
.ws8f{word-spacing:-19.580400px;}
.wsa0{word-spacing:-16.351904px;}
.wsa2{word-spacing:-14.523600px;}
.ws41{word-spacing:-13.818000px;}
.ws4{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.483600px;}
.ws5{word-spacing:-12.420000px;}
.ws85{word-spacing:-11.426400px;}
.ws8d{word-spacing:-11.348400px;}
.wsec{word-spacing:-11.178000px;}
.wsa9{word-spacing:-10.512000px;}
.ws74{word-spacing:-10.248840px;}
.ws7{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.wsa4{word-spacing:-9.911136px;}
.ws9{word-spacing:-9.855000px;}
.ws76{word-spacing:-9.672600px;}
.ws90{word-spacing:-9.343320px;}
.wseb{word-spacing:-9.315000px;}
.ws16{word-spacing:-9.198000px;}
.wsc5{word-spacing:-8.904000px;}
.wsaa{word-spacing:-7.358400px;}
.ws8{word-spacing:-6.898500px;}
.ws9e{word-spacing:-6.468000px;}
.wsc4{word-spacing:-6.232800px;}
.wsce{word-spacing:-4.512000px;}
.ws14{word-spacing:-4.368000px;}
.wsef{word-spacing:-2.250000px;}
.wsee{word-spacing:-2.016000px;}
.wse0{word-spacing:-0.823200px;}
.wsf{word-spacing:-0.705600px;}
.ws4b{word-spacing:-0.646800px;}
.ws4e{word-spacing:-0.588000px;}
.ws45{word-spacing:-0.529200px;}
.ws72{word-spacing:-0.470400px;}
.wsc{word-spacing:-0.411600px;}
.ws1e{word-spacing:-0.352800px;}
.ws2b{word-spacing:-0.294000px;}
.ws9b{word-spacing:-0.176400px;}
.ws96{word-spacing:-0.117600px;}
.ws75{word-spacing:-0.058820px;}
.ws80{word-spacing:-0.044702px;}
.ws0{word-spacing:0.000000px;}
.ws18{word-spacing:0.042000px;}
.ws9f{word-spacing:0.117600px;}
.ws39{word-spacing:0.352800px;}
.ws64{word-spacing:0.470400px;}
.ws6c{word-spacing:0.588000px;}
.ws71{word-spacing:0.823200px;}
.ws5c{word-spacing:0.882000px;}
.ws99{word-spacing:0.940800px;}
.ws58{word-spacing:0.999600px;}
.ws19{word-spacing:1.007400px;}
.ws2c{word-spacing:1.058400px;}
.ws36{word-spacing:1.176000px;}
.ws31{word-spacing:1.234800px;}
.ws70{word-spacing:1.293600px;}
.ws69{word-spacing:1.352400px;}
.ws6e{word-spacing:1.411200px;}
.ws1b{word-spacing:1.528800px;}
.ws42{word-spacing:1.587600px;}
.ws2d{word-spacing:1.646400px;}
.ws6d{word-spacing:1.764000px;}
.ws33{word-spacing:1.822800px;}
.ws25{word-spacing:1.881600px;}
.wse1{word-spacing:1.999200px;}
.ws2a{word-spacing:2.058000px;}
.ws27{word-spacing:2.116800px;}
.ws2e{word-spacing:2.234400px;}
.ws23{word-spacing:2.293200px;}
.ws97{word-spacing:2.352000px;}
.ws65{word-spacing:2.410800px;}
.wsb9{word-spacing:2.469600px;}
.ws5e{word-spacing:2.528400px;}
.ws6b{word-spacing:2.587200px;}
.ws21{word-spacing:2.646000px;}
.ws12{word-spacing:2.704800px;}
.ws83{word-spacing:2.763600px;}
.wsb2{word-spacing:2.822400px;}
.wse6{word-spacing:2.881200px;}
.ws47{word-spacing:2.940000px;}
.ws28{word-spacing:2.998800px;}
.wsb0{word-spacing:3.057600px;}
.ws84{word-spacing:3.116400px;}
.ws6f{word-spacing:3.175200px;}
.wsd9{word-spacing:3.234000px;}
.ws29{word-spacing:3.292800px;}
.wsdb{word-spacing:3.351600px;}
.ws68{word-spacing:3.410400px;}
.ws15{word-spacing:3.528000px;}
.ws5d{word-spacing:3.586800px;}
.ws22{word-spacing:3.704400px;}
.ws1c{word-spacing:3.763200px;}
.wscd{word-spacing:3.939600px;}
.ws1d{word-spacing:3.998400px;}
.wse{word-spacing:4.057200px;}
.ws38{word-spacing:4.116000px;}
.wse2{word-spacing:4.233600px;}
.ws3e{word-spacing:4.292400px;}
.ws4f{word-spacing:4.351200px;}
.ws49{word-spacing:4.410000px;}
.ws3b{word-spacing:4.468800px;}
.wsb4{word-spacing:4.527600px;}
.ws89{word-spacing:4.645200px;}
.ws56{word-spacing:4.704000px;}
.ws3d{word-spacing:4.762800px;}
.ws8b{word-spacing:4.821600px;}
.ws88{word-spacing:4.880400px;}
.ws87{word-spacing:4.939200px;}
.ws93{word-spacing:4.998000px;}
.ws6a{word-spacing:5.056800px;}
.ws43{word-spacing:5.115600px;}
.ws1a{word-spacing:5.174400px;}
.wsda{word-spacing:5.233200px;}
.ws61{word-spacing:5.292000px;}
.wse4{word-spacing:5.350800px;}
.wsba{word-spacing:5.409600px;}
.ws9a{word-spacing:5.468400px;}
.ws34{word-spacing:5.527200px;}
.ws37{word-spacing:5.586000px;}
.ws5f{word-spacing:5.644800px;}
.ws20{word-spacing:5.762400px;}
.ws44{word-spacing:5.821200px;}
.ws5b{word-spacing:5.880000px;}
.ws17{word-spacing:5.922000px;}
.wsdd{word-spacing:5.938800px;}
.ws7a{word-spacing:5.952555px;}
.ws91{word-spacing:5.953105px;}
.ws46{word-spacing:5.997600px;}
.ws7f{word-spacing:6.007304px;}
.wse3{word-spacing:6.056400px;}
.ws8c{word-spacing:6.115200px;}
.ws67{word-spacing:6.174000px;}
.wsed{word-spacing:6.232800px;}
.ws4c{word-spacing:6.291600px;}
.ws24{word-spacing:6.350400px;}
.ws94{word-spacing:6.409200px;}
.ws73{word-spacing:6.468000px;}
.ws50{word-spacing:6.526800px;}
.ws26{word-spacing:6.585600px;}
.ws1f{word-spacing:6.644400px;}
.ws13{word-spacing:6.703200px;}
.ws53{word-spacing:6.762000px;}
.wsb1{word-spacing:6.820800px;}
.ws62{word-spacing:6.879600px;}
.wse7{word-spacing:6.938400px;}
.ws51{word-spacing:6.997200px;}
.ws95{word-spacing:7.056000px;}
.wsea{word-spacing:7.114800px;}
.ws66{word-spacing:7.173600px;}
.wsb8{word-spacing:7.232400px;}
.ws57{word-spacing:7.291200px;}
.wse5{word-spacing:7.408800px;}
.wsd{word-spacing:7.526400px;}
.ws30{word-spacing:7.702800px;}
.ws2f{word-spacing:7.761600px;}
.wsdc{word-spacing:7.820400px;}
.wsdf{word-spacing:7.879200px;}
.ws9d{word-spacing:7.938000px;}
.wsb{word-spacing:8.055600px;}
.ws40{word-spacing:8.114400px;}
.ws3f{word-spacing:8.232000px;}
.ws4d{word-spacing:8.290800px;}
.ws59{word-spacing:8.349600px;}
.ws35{word-spacing:8.408400px;}
.ws10{word-spacing:8.526000px;}
.ws48{word-spacing:8.643600px;}
.ws3a{word-spacing:8.878800px;}
.ws98{word-spacing:9.114000px;}
.ws32{word-spacing:9.172800px;}
.ws9c{word-spacing:9.290400px;}
.wsb5{word-spacing:9.349200px;}
.wsb6{word-spacing:9.466800px;}
.ws63{word-spacing:9.525600px;}
.ws5a{word-spacing:9.584400px;}
.wsa3{word-spacing:9.746441px;}
.wsa5{word-spacing:9.752323px;}
.ws55{word-spacing:9.878400px;}
.wscb{word-spacing:10.231200px;}
.ws4a{word-spacing:10.466400px;}
.ws11{word-spacing:10.525200px;}
.wscc{word-spacing:10.584000px;}
.wsb7{word-spacing:10.701600px;}
.ws3c{word-spacing:10.819200px;}
.wsb3{word-spacing:11.818800px;}
.wsde{word-spacing:12.112800px;}
.ws60{word-spacing:12.171600px;}
.wse9{word-spacing:12.524400px;}
.ws54{word-spacing:12.583200px;}
.ws52{word-spacing:13.288800px;}
.ws8a{word-spacing:13.347600px;}
.ws77{word-spacing:13.752069px;}
.ws8e{word-spacing:14.700000px;}
.wse8{word-spacing:16.993200px;}
.ws82{word-spacing:17.592959px;}
.wsa{word-spacing:18.416400px;}
.ws7c{word-spacing:18.967781px;}
.ws7d{word-spacing:19.019511px;}
.ws79{word-spacing:19.021159px;}
.ws7e{word-spacing:19.021708px;}
.ws81{word-spacing:19.272014px;}
.wsa1{word-spacing:20.910188px;}
.wsa6{word-spacing:22.260569px;}
.ws78{word-spacing:22.260574px;}
.ws92{word-spacing:22.260658px;}
.ws7b{word-spacing:22.260661px;}
.ws86{word-spacing:22.873200px;}
.wsaf{word-spacing:50.164786px;}
.wsad{word-spacing:159.599986px;}
.wsab{word-spacing:182.208000px;}
.wsc7{word-spacing:187.488000px;}
.wsae{word-spacing:200.784000px;}
.wsc9{word-spacing:238.848000px;}
.wsd8{word-spacing:246.720000px;}
.wsac{word-spacing:247.824000px;}
.wsd6{word-spacing:248.448000px;}
.wsd7{word-spacing:248.544000px;}
.wsca{word-spacing:271.728000px;}
.wsc8{word-spacing:283.392000px;}
.wsa8{word-spacing:286.704000px;}
.wscf{word-spacing:345.120000px;}
.wsd5{word-spacing:352.559982px;}
.wsd3{word-spacing:354.287982px;}
.wsd4{word-spacing:364.848000px;}
.wsbb{word-spacing:381.983980px;}
.wsd2{word-spacing:389.231982px;}
.wsc6{word-spacing:393.456000px;}
.wsc3{word-spacing:401.376000px;}
.wsc1{word-spacing:403.104000px;}
.wsc2{word-spacing:403.200000px;}
.wsd1{word-spacing:406.752000px;}
.wsd0{word-spacing:410.879982px;}
.wsc0{word-spacing:414.768000px;}
.wsa7{word-spacing:418.656000px;}
.wsbc{word-spacing:440.304000px;}
.wsbf{word-spacing:448.416000px;}
.wsbd{word-spacing:450.144000px;}
.wsbe{word-spacing:450.240000px;}
._16{margin-left:-28.041619px;}
._13{margin-left:-26.581200px;}
._14{margin-left:-18.557063px;}
._17{margin-left:-16.155551px;}
._f{margin-left:-12.483600px;}
._10{margin-left:-11.212800px;}
._7{margin-left:-8.736000px;}
._4{margin-left:-7.185360px;}
._8{margin-left:-5.533080px;}
._5{margin-left:-4.094400px;}
._3{margin-left:-2.998800px;}
._0{margin-left:-1.742400px;}
._1{width:1.036800px;}
._2{width:2.293200px;}
._9{width:4.539600px;}
._d{width:6.001560px;}
._a{width:7.361976px;}
._12{width:8.702400px;}
._c{width:11.680200px;}
._15{width:14.582400px;}
._6{width:15.960000px;}
._e{width:18.416400px;}
._11{width:27.599999px;}
._b{width:30.900000px;}
._2a{width:235.262400px;}
._2c{width:264.288000px;}
._2b{width:281.616000px;}
._20{width:289.295996px;}
._1f{width:290.702392px;}
._2d{width:303.182382px;}
._18{width:306.302400px;}
._27{width:309.658800px;}
._19{width:322.511948px;}
._25{width:334.895992px;}
._1c{width:341.376000px;}
._1e{width:342.974400px;}
._34{width:348.979200px;}
._26{width:354.623988px;}
._23{width:362.112000px;}
._29{width:366.240000px;}
._32{width:367.920000px;}
._30{width:375.360000px;}
._1d{width:378.912000px;}
._28{width:391.199992px;}
._22{width:392.529600px;}
._35{width:400.848000px;}
._31{width:404.496000px;}
._1b{width:405.504000px;}
._24{width:411.811200px;}
._2f{width:453.216000px;}
._33{width:455.520000px;}
._2e{width:457.248000px;}
._21{width:458.736000px;}
._1a{width:785.506239px;}
._40{width:844.106315px;}
._3c{width:858.268711px;}
._3a{width:963.998311px;}
._47{width:1008.901111px;}
._4d{width:1024.313911px;}
._52{width:1093.521511px;}
._51{width:1138.675111px;}
._4b{width:1199.797115px;}
._3b{width:1207.089511px;}
._4a{width:1309.823911px;}
._4e{width:1320.613115px;}
._48{width:1325.999911px;}
._41{width:1389.599911px;}
._4c{width:1394.222311px;}
._49{width:1395.887911px;}
._43{width:1429.310311px;}
._45{width:1431.013115px;}
._3e{width:1489.641511px;}
._37{width:1492.127911px;}
._39{width:1493.173115px;}
._46{width:1521.205111px;}
._4f{width:1537.838311px;}
._50{width:1550.947111px;}
._36{width:1554.527911px;}
._53{width:1561.828800px;}
._42{width:1572.239911px;}
._44{width:1602.584311px;}
._3f{width:1621.544311px;}
._38{width:1673.006311px;}
._3d{width:1683.043111px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:29.400000px;}
.fsf{font-size:30.660000px;}
.fse{font-size:31.500000px;}
.fs16{font-size:33.600000px;}
.fs14{font-size:35.292000px;}
.fsa{font-size:41.160000px;}
.fs4{font-size:42.000000px;}
.fs10{font-size:43.800000px;}
.fs13{font-size:44.702399px;}
.fsd{font-size:45.000000px;}
.fs7{font-size:46.199999px;}
.fsc{font-size:48.000000px;}
.fs15{font-size:54.000000px;}
.fs11{font-size:55.199999px;}
.fs9{font-size:58.800000px;}
.fs12{font-size:58.819800px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:61.800000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y153{bottom:0.090775px;}
.y16e{bottom:2.099258px;}
.y134{bottom:2.295319px;}
.y132{bottom:2.309158px;}
.y105{bottom:2.644797px;}
.y198{bottom:2.656951px;}
.y193{bottom:2.657089px;}
.y162{bottom:2.703140px;}
.y15e{bottom:2.703300px;}
.y18b{bottom:2.704239px;}
.yf2{bottom:2.723690px;}
.yf7{bottom:2.728040px;}
.yfe{bottom:2.954224px;}
.yfb{bottom:2.954315px;}
.y148{bottom:2.955323px;}
.y14a{bottom:2.958817px;}
.yef{bottom:4.845005px;}
.y188{bottom:4.904434px;}
.y135{bottom:5.221604px;}
.y131{bottom:5.235443px;}
.yf3{bottom:7.155006px;}
.yf1{bottom:7.245002px;}
.y16a{bottom:7.327105px;}
.yf5{bottom:7.384048px;}
.y18a{bottom:8.279434px;}
.y169{bottom:10.709244px;}
.yf6{bottom:12.730202px;}
.y16c{bottom:16.675827px;}
.y155{bottom:18.220825px;}
.y14d{bottom:18.225449px;}
.y10c{bottom:20.770500px;}
.y19b{bottom:20.774094px;}
.y18e{bottom:20.774414px;}
.y101{bottom:20.774986px;}
.y164{bottom:20.819687px;}
.y158{bottom:20.820007px;}
.y10f{bottom:25.395012px;}
.y122{bottom:25.399200px;}
.y119{bottom:25.525955px;}
.y11f{bottom:25.844994px;}
.y109{bottom:27.484337px;}
.y152{bottom:32.193741px;}
.y15b{bottom:32.740952px;}
.y197{bottom:34.746460px;}
.y192{bottom:34.746597px;}
.y104{bottom:34.747787px;}
.y161{bottom:34.792647px;}
.y15d{bottom:34.792809px;}
.y151{bottom:36.594772px;}
.y11c{bottom:38.526009px;}
.y107{bottom:39.144306px;}
.y103{bottom:39.148796px;}
.y116{bottom:39.363304px;}
.y196{bottom:40.376266px;}
.y191{bottom:40.376404px;}
.y160{bottom:40.422455px;}
.y15c{bottom:40.422592px;}
.y114{bottom:46.126945px;}
.y111{bottom:51.976501px;}
.y5{bottom:66.525004px;}
.y47{bottom:84.801300px;}
.y1b4{bottom:93.985489px;}
.y46{bottom:96.802800px;}
.y4{bottom:97.125005px;}
.y225{bottom:100.651193px;}
.y145{bottom:100.660205px;}
.yd4{bottom:100.662003px;}
.yaf{bottom:100.961998px;}
.y84{bottom:108.720898px;}
.y45{bottom:108.804300px;}
.y1e8{bottom:112.008600px;}
.y185{bottom:113.992500px;}
.y1b3{bottom:115.212289px;}
.y24d{bottom:119.780112px;}
.y44{bottom:120.805800px;}
.y224{bottom:121.877993px;}
.yd3{bottom:121.883398px;}
.y144{bottom:121.885196px;}
.yf8{bottom:121.887005px;}
.yae{bottom:122.172744px;}
.y287{bottom:128.987869px;}
.y83{bottom:129.945900px;}
.y1e7{bottom:133.235400px;}
.y184{bottom:135.219300px;}
.y1b2{bottom:136.439089px;}
.y24c{bottom:137.924112px;}
.y21{bottom:139.264499px;}
.y286{bottom:142.487869px;}
.y223{bottom:143.104793px;}
.yd2{bottom:143.110198px;}
.yad{bottom:143.399544px;}
.y82{bottom:151.145723px;}
.y1e6{bottom:154.460403px;}
.y285{bottom:155.987869px;}
.y24b{bottom:156.068112px;}
.y183{bottom:156.446100px;}
.yf0{bottom:157.127998px;}
.y1b1{bottom:157.665889px;}
.y55{bottom:159.052197px;}
.yee{bottom:159.530994px;}
.y222{bottom:164.331593px;}
.y143{bottom:164.335200px;}
.yd1{bottom:164.336998px;}
.yed{bottom:164.343289px;}
.yf4{bottom:164.377350px;}
.yac{bottom:164.626344px;}
.y284{bottom:169.487869px;}
.y81{bottom:172.372523px;}
.y24a{bottom:174.212112px;}
.y54{bottom:175.432205px;}
.y1e5{bottom:175.676394px;}
.y182{bottom:177.672900px;}
.y1b0{bottom:178.892689px;}
.y283{bottom:182.987869px;}
.y221{bottom:185.558393px;}
.yd0{bottom:185.560203px;}
.yab{bottom:185.853144px;}
.y249{bottom:192.356112px;}
.y80{bottom:193.599323px;}
.y282{bottom:196.487869px;}
.y1e4{bottom:196.903194px;}
.y18{bottom:196.933500px;}
.y10e{bottom:197.899498px;}
.y181{bottom:198.894308px;}
.y1af{bottom:200.119489px;}
.y121{bottom:203.023198px;}
.y117{bottom:205.173454px;}
.y220{bottom:206.785193px;}
.ycf{bottom:206.787003px;}
.y142{bottom:206.787904px;}
.yaa{bottom:207.079944px;}
.y120{bottom:207.544510px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y281{bottom:209.987869px;}
.y248{bottom:210.500112px;}
.y113{bottom:212.854500px;}
.y7f{bottom:214.826123px;}
.y2f{bottom:217.472256px;}
.y1e3{bottom:218.129994px;}
.y10d{bottom:218.712158px;}
.y180{bottom:220.121108px;}
.y110{bottom:220.581000px;}
.y1ae{bottom:221.346289px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y11a{bottom:223.290000px;}
.y280{bottom:223.487869px;}
.yce{bottom:228.010207px;}
.y21f{bottom:228.011993px;}
.ya9{bottom:228.306744px;}
.y247{bottom:228.644112px;}
.y11e{bottom:231.758322px;}
.y112{bottom:233.617653px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y7e{bottom:236.052923px;}
.y11b{bottom:236.196442px;}
.y11d{bottom:236.290810px;}
.y27f{bottom:236.987869px;}
.y2e{bottom:238.699056px;}
.y1e2{bottom:239.356794px;}
.y157{bottom:240.349503px;}
.y17f{bottom:241.347908px;}
.y118{bottom:241.672963px;}
.y115{bottom:241.677292px;}
.y1ad{bottom:242.573089px;}
.y246{bottom:246.788112px;}
.y21e{bottom:249.235198px;}
.ycd{bottom:249.237007px;}
.ya8{bottom:249.533544px;}
.y27e{bottom:250.487869px;}
.y7d{bottom:257.279723px;}
.y156{bottom:258.687149px;}
.y15a{bottom:258.969292px;}
.y1d{bottom:259.918497px;}
.y2d{bottom:259.925856px;}
.y14{bottom:259.933500px;}
.y1e1{bottom:260.583594px;}
.y163{bottom:261.169189px;}
.y15f{bottom:261.169350px;}
.y159{bottom:261.169510px;}
.y17e{bottom:262.556685px;}
.y1ac{bottom:263.799889px;}
.y27d{bottom:263.987869px;}
.y245{bottom:264.932112px;}
.yec{bottom:270.124489px;}
.ycc{bottom:270.460189px;}
.y21d{bottom:270.461998px;}
.ya7{bottom:270.760344px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y27c{bottom:277.487869px;}
.y7c{bottom:278.506523px;}
.y2c{bottom:281.152656px;}
.y1e0{bottom:281.810394px;}
.y244{bottom:283.076112px;}
.y17d{bottom:283.783485px;}
.y1ab{bottom:285.019498px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y27b{bottom:290.987869px;}
.yeb{bottom:291.351021px;}
.ycb{bottom:291.686989px;}
.ya6{bottom:291.987144px;}
.y7b{bottom:299.733323px;}
.y243{bottom:301.220112px;}
.y2b{bottom:302.379456px;}
.y1df{bottom:303.035408px;}
.y27a{bottom:304.487869px;}
.y17c{bottom:305.010285px;}
.y1aa{bottom:306.246298px;}
.y141{bottom:310.095907px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y21c{bottom:312.908407px;}
.yca{bottom:312.912003px;}
.ya5{bottom:313.203021px;}
.y279{bottom:317.987869px;}
.y242{bottom:319.364112px;}
.y7a{bottom:320.960123px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y2a{bottom:323.602660px;}
.y1de{bottom:324.254994px;}
.y100{bottom:324.912003px;}
.y17b{bottom:326.237085px;}
.y1a9{bottom:327.473098px;}
.y106{bottom:327.556800px;}
.y140{bottom:331.322707px;}
.y278{bottom:331.487869px;}
.yc9{bottom:334.124393px;}
.y21b{bottom:334.135207px;}
.ya4{bottom:334.429821px;}
.y10b{bottom:335.246841px;}
.y241{bottom:337.508112px;}
.y10a{bottom:341.154959px;}
.y79{bottom:342.186923px;}
.yff{bottom:342.724640px;}
.y29{bottom:344.827650px;}
.y277{bottom:344.987869px;}
.y1dd{bottom:345.481794px;}
.y108{bottom:345.686850px;}
.y102{bottom:345.686989px;}
.y17a{bottom:347.463885px;}
.yf{bottom:348.133500px;}
.y1a8{bottom:348.699898px;}
.y13f{bottom:352.549507px;}
.y21a{bottom:355.362007px;}
.y240{bottom:355.652112px;}
.ya3{bottom:355.656621px;}
.y276{bottom:358.487869px;}
.y78{bottom:363.413723px;}
.yc8{bottom:364.729793px;}
.y28{bottom:366.054450px;}
.y1dc{bottom:366.708594px;}
.y179{bottom:368.690685px;}
.y275{bottom:371.987869px;}
.y13e{bottom:373.774498px;}
.y23f{bottom:373.796112px;}
.y219{bottom:376.581593px;}
.ya2{bottom:376.883421px;}
.y77{bottom:384.640523px;}
.y274{bottom:385.487869px;}
.yc7{bottom:385.956593px;}
.ye{bottom:386.785499px;}
.y27{bottom:387.279465px;}
.y1db{bottom:387.935394px;}
.y178{bottom:389.917485px;}
.y23e{bottom:391.940112px;}
.yea{bottom:394.133421px;}
.y13d{bottom:394.999512px;}
.y1c5{bottom:395.032657px;}
.y218{bottom:397.808393px;}
.ya1{bottom:398.110221px;}
.y273{bottom:398.987869px;}
.y76{bottom:405.867323px;}
.yc6{bottom:407.183393px;}
.y1c4{bottom:407.779657px;}
.yd{bottom:408.044999px;}
.y26{bottom:408.504456px;}
.y1da{bottom:409.156813px;}
.y23d{bottom:410.084112px;}
.y177{bottom:411.144285px;}
.y272{bottom:412.487869px;}
.ye9{bottom:415.360221px;}
.y13c{bottom:416.224503px;}
.y217{bottom:419.035193px;}
.ya0{bottom:419.337021px;}
.y1c3{bottom:424.726639px;}
.y271{bottom:425.987869px;}
.y75{bottom:427.094123px;}
.y23c{bottom:428.228112px;}
.yc5{bottom:428.410193px;}
.y1d9{bottom:430.383613px;}
.y176{bottom:432.371085px;}
.ye8{bottom:436.585212px;}
.y270{bottom:439.487869px;}
.y216{bottom:440.261993px;}
.y9f{bottom:440.549531px;}
.y1d3{bottom:441.850499px;}
.y23b{bottom:446.372112px;}
.y42{bottom:447.842102px;}
.y74{bottom:448.320923px;}
.yc4{bottom:449.636993px;}
.y1d8{bottom:451.610413px;}
.y26f{bottom:452.987869px;}
.y175{bottom:453.597885px;}
.y1d2{bottom:455.350499px;}
.ye7{bottom:457.810203px;}
.y215{bottom:461.485221px;}
.y9e{bottom:461.776331px;}
.y23a{bottom:464.516112px;}
.y26e{bottom:466.487869px;}
.y73{bottom:469.536914px;}
.y13b{bottom:469.776740px;}
.yc3{bottom:470.856621px;}
.y41{bottom:471.842102px;}
.y1d7{bottom:472.833594px;}
.y1d1{bottom:473.578499px;}
.y174{bottom:474.822922px;}
.ye6{bottom:479.037003px;}
.y26d{bottom:479.987869px;}
.y214{bottom:482.712021px;}
.y9d{bottom:483.003131px;}
.y1d0{bottom:487.078499px;}
.y40{bottom:489.842102px;}
.y72{bottom:490.763714px;}
.y13a{bottom:491.003540px;}
.y239{bottom:491.408112px;}
.y26c{bottom:493.487869px;}
.y1d6{bottom:494.060394px;}
.ye5{bottom:500.260184px;}
.yc2{bottom:501.462021px;}
.yc{bottom:502.864502px;}
.y213{bottom:503.919012px;}
.y9c{bottom:504.229931px;}
.y26b{bottom:506.987869px;}
.y71{bottom:511.990514px;}
.y3f{bottom:513.842102px;}
.y1cf{bottom:513.970499px;}
.y238{bottom:514.920593px;}
.y1d5{bottom:515.283622px;}
.y26a{bottom:520.487869px;}
.yb{bottom:520.864502px;}
.ye4{bottom:521.481603px;}
.yc1{bottom:522.683393px;}
.y14c{bottom:524.578491px;}
.y212{bottom:525.145812px;}
.y9b{bottom:525.456731px;}
.y3e{bottom:531.842102px;}
.y150{bottom:532.363815px;}
.y70{bottom:533.217314px;}
.y269{bottom:533.987869px;}
.y173{bottom:535.797913px;}
.y1d4{bottom:536.510422px;}
.y1ce{bottom:537.814499px;}
.ya{bottom:538.864499px;}
.y14b{bottom:541.116577px;}
.ye3{bottom:542.708403px;}
.y154{bottom:542.799316px;}
.y14e{bottom:542.803940px;}
.yc0{bottom:543.910193px;}
.y211{bottom:546.372612px;}
.y9a{bottom:546.683531px;}
.y268{bottom:547.487869px;}
.y3d{bottom:549.842102px;}
.y237{bottom:550.170593px;}
.y14f{bottom:553.097405px;}
.y6f{bottom:554.444114px;}
.y9{bottom:556.864499px;}
.y172{bottom:557.020187px;}
.y1cd{bottom:558.591017px;}
.y267{bottom:560.987869px;}
.ye2{bottom:563.935203px;}
.ybf{bottom:565.136993px;}
.y210{bottom:567.599412px;}
.y3c{bottom:567.842102px;}
.y99{bottom:567.910331px;}
.y266{bottom:574.487869px;}
.y6e{bottom:575.670914px;}
.y1cc{bottom:576.735017px;}
.ye1{bottom:585.162003px;}
.y3b{bottom:585.842102px;}
.ybe{bottom:586.361984px;}
.y265{bottom:587.987869px;}
.y20f{bottom:588.826212px;}
.y98{bottom:589.137131px;}
.y18d{bottom:590.585999px;}
.y236{bottom:592.395584px;}
.y139{bottom:592.521740px;}
.y199{bottom:593.242950px;}
.y194{bottom:593.243088px;}
.y1cb{bottom:594.879017px;}
.y1eb{bottom:595.593021px;}
.y6d{bottom:596.894095px;}
.y264{bottom:601.487869px;}
.y3a{bottom:603.842102px;}
.ye0{bottom:606.379803px;}
.ybd{bottom:607.587021px;}
.y1ea{bottom:608.340021px;}
.y18c{bottom:608.922913px;}
.y190{bottom:609.159622px;}
.y20e{bottom:610.053012px;}
.y97{bottom:610.362167px;}
.y235{bottom:610.395584px;}
.y19a{bottom:611.360092px;}
.y195{bottom:611.360229px;}
.y18f{bottom:611.360413px;}
.y1ca{bottom:613.023017px;}
.y138{bottom:613.748540px;}
.y263{bottom:614.987869px;}
.y6c{bottom:618.120895px;}
.y234{bottom:619.391880px;}
.y1e9{bottom:621.087021px;}
.y39{bottom:621.842102px;}
.ydf{bottom:627.606603px;}
.y262{bottom:628.487869px;}
.ybc{bottom:628.812012px;}
.y1c9{bottom:631.167017px;}
.y20d{bottom:631.279812px;}
.y137{bottom:634.975340px;}
.y6b{bottom:639.344123px;}
.y38{bottom:639.842102px;}
.y233{bottom:641.891880px;}
.y261{bottom:641.987869px;}
.y1fe{bottom:643.173018px;}
.y8{bottom:645.510000px;}
.yde{bottom:648.833403px;}
.y1c8{bottom:649.311017px;}
.y20c{bottom:652.506612px;}
.y232{bottom:655.391880px;}
.y260{bottom:655.487869px;}
.y136{bottom:656.202140px;}
.y1fd{bottom:656.673018px;}
.y37{bottom:657.842102px;}
.y171{bottom:660.331785px;}
.y6a{bottom:660.570923px;}
.y7{bottom:666.771000px;}
.y25f{bottom:668.987869px;}
.ydd{bottom:670.060203px;}
.y20b{bottom:673.733412px;}
.y1fc{bottom:674.901018px;}
.y130{bottom:675.160492px;}
.y36{bottom:675.842102px;}
.y1c7{bottom:676.083017px;}
.y133{bottom:677.428940px;}
.y12f{bottom:677.430131px;}
.y231{bottom:677.891880px;}
.y170{bottom:681.558585px;}
.y96{bottom:681.777868px;}
.ybb{bottom:681.790486px;}
.y69{bottom:681.792295px;}
.y25e{bottom:682.487869px;}
.y1fb{bottom:688.401018px;}
.y53{bottom:688.741974px;}
.ydc{bottom:691.287003px;}
.y230{bottom:691.391880px;}
.y35{bottom:693.842102px;}
.y20a{bottom:694.960212px;}
.y168{bottom:695.468994px;}
.y25d{bottom:695.987869px;}
.y12e{bottom:698.656931px;}
.y1c6{bottom:699.927017px;}
.y16b{bottom:700.602448px;}
.y52{bottom:702.241974px;}
.y16f{bottom:702.785385px;}
.y167{bottom:702.786031px;}
.y95{bottom:703.004668px;}
.yba{bottom:703.017286px;}
.y68{bottom:703.019095px;}
.y1fa{bottom:706.545018px;}
.y25c{bottom:709.487869px;}
.y16d{bottom:709.580246px;}
.y34{bottom:711.842102px;}
.ydb{bottom:712.513194px;}
.y22f{bottom:713.891880px;}
.y51{bottom:715.741974px;}
.y209{bottom:716.187012px;}
.y12d{bottom:719.883731px;}
.y1f9{bottom:720.045018px;}
.y25b{bottom:722.987869px;}
.y94{bottom:724.231468px;}
.y1c2{bottom:724.239761px;}
.yb9{bottom:724.244086px;}
.y67{bottom:724.245895px;}
.y6{bottom:726.298500px;}
.y22e{bottom:727.391880px;}
.y50{bottom:729.241974px;}
.y33{bottom:729.842102px;}
.y187{bottom:731.660980px;}
.yda{bottom:734.261993px;}
.y186{bottom:735.748032px;}
.y189{bottom:736.565414px;}
.y208{bottom:737.412003px;}
.y1f8{bottom:738.189018px;}
.y147{bottom:741.853500px;}
.y4f{bottom:742.741974px;}
.y146{bottom:744.141586px;}
.y149{bottom:744.808823px;}
.y93{bottom:745.458268px;}
.y66{bottom:745.467268px;}
.yb8{bottom:745.470886px;}
.y32{bottom:747.842102px;}
.y22d{bottom:749.891880px;}
.y1f7{bottom:751.689018px;}
.y3{bottom:752.599495px;}
.y4e{bottom:756.241974px;}
.y22c{bottom:763.391880px;}
.y31{bottom:765.842102px;}
.yb7{bottom:766.676068px;}
.y92{bottom:766.685068px;}
.y65{bottom:766.694068px;}
.y1b6{bottom:770.339975px;}
.y4d{bottom:774.241974px;}
.y12c{bottom:776.802131px;}
.y166{bottom:777.785431px;}
.y1f6{bottom:778.581018px;}
.yd9{bottom:782.444068px;}
.y1b5{bottom:783.086975px;}
.y4c{bottom:783.241974px;}
.y22b{bottom:785.891880px;}
.yb6{bottom:787.902868px;}
.y91{bottom:787.911868px;}
.y207{bottom:787.919105px;}
.y64{bottom:787.920868px;}
.y30{bottom:788.342102px;}
.y299{bottom:792.987579px;}
.y25a{bottom:795.213043px;}
.y4b{bottom:796.741974px;}
.y12b{bottom:798.028931px;}
.y165{bottom:799.010376px;}
.y22a{bottom:799.391880px;}
.y1f5{bottom:802.425018px;}
.yd8{bottom:803.670868px;}
.y1c1{bottom:804.847518px;}
.y298{bottom:806.487579px;}
.yb5{bottom:809.129668px;}
.y63{bottom:809.135141px;}
.y90{bottom:809.138668px;}
.y206{bottom:809.145905px;}
.y12a{bottom:819.244967px;}
.y1c0{bottom:823.075518px;}
.y1f4{bottom:823.219518px;}
.yd7{bottom:824.895308px;}
.yb4{bottom:830.356468px;}
.y62{bottom:830.361941px;}
.y8f{bottom:830.365468px;}
.y205{bottom:830.369086px;}
.y259{bottom:830.928781px;}
.y229{bottom:833.895630px;}
.y129{bottom:840.471767px;}
.y1bf{bottom:841.219518px;}
.y1f3{bottom:841.363518px;}
.y297{bottom:842.487579px;}
.yfd{bottom:846.871490px;}
.yfc{bottom:848.033569px;}
.y19e{bottom:848.339975px;}
.y258{bottom:849.156781px;}
.yb3{bottom:851.583268px;}
.y61{bottom:851.588741px;}
.y8e{bottom:851.592268px;}
.y204{bottom:851.595886px;}
.y25{bottom:854.679474px;}
.y296{bottom:855.987579px;}
.y1be{bottom:859.375518px;}
.y1f2{bottom:859.507518px;}
.y19d{bottom:861.086975px;}
.y128{bottom:861.698567px;}
.y257{bottom:867.300781px;}
.y295{bottom:869.487579px;}
.y228{bottom:871.395630px;}
.yb2{bottom:872.810068px;}
.y203{bottom:872.813686px;}
.y60{bottom:872.815541px;}
.y8d{bottom:872.819068px;}
.y1bd{bottom:877.519518px;}
.y1f1{bottom:877.651518px;}
.y2{bottom:879.369000px;}
.yfa{bottom:881.446472px;}
.yf9{bottom:882.608368px;}
.y127{bottom:882.925367px;}
.y294{bottom:882.987579px;}
.y1a7{bottom:883.574982px;}
.y256{bottom:885.444781px;}
.yb1{bottom:894.036868px;}
.y202{bottom:894.040486px;}
.y5f{bottom:894.042341px;}
.y8c{bottom:894.045868px;}
.y1bc{bottom:895.663518px;}
.y1f0{bottom:895.795518px;}
.y293{bottom:896.487579px;}
.y1a6{bottom:897.077982px;}
.y24{bottom:900.896406px;}
.y255{bottom:903.588781px;}
.y126{bottom:904.152167px;}
.y292{bottom:909.987579px;}
.y1bb{bottom:913.807518px;}
.y1ef{bottom:913.939518px;}
.y227{bottom:915.260141px;}
.y8b{bottom:915.263668px;}
.y201{bottom:915.267286px;}
.y5e{bottom:915.269141px;}
.yd6{bottom:915.270905px;}
.y1a5{bottom:915.305982px;}
.y254{bottom:921.732781px;}
.y291{bottom:923.487579px;}
.y125{bottom:925.378967px;}
.y1a4{bottom:928.805982px;}
.y1ba{bottom:931.951518px;}
.y1ee{bottom:932.083518px;}
.y226{bottom:936.486941px;}
.y8a{bottom:936.490468px;}
.y200{bottom:936.494086px;}
.y5d{bottom:936.495941px;}
.y290{bottom:936.987579px;}
.y253{bottom:939.876781px;}
.y23{bottom:939.884406px;}
.y124{bottom:946.603912px;}
.y1a3{bottom:946.949982px;}
.y1b9{bottom:950.107518px;}
.y1ed{bottom:950.227518px;}
.y28f{bottom:950.487579px;}
.yd5{bottom:957.713741px;}
.y89{bottom:957.717268px;}
.y5c{bottom:957.720886px;}
.y252{bottom:958.020781px;}
.y1a2{bottom:960.456037px;}
.y28e{bottom:963.987579px;}
.y1{bottom:966.726000px;}
.y123{bottom:967.828949px;}
.y1b8{bottom:968.251518px;}
.y1ec{bottom:968.371518px;}
.y251{bottom:976.164781px;}
.y28d{bottom:977.487579px;}
.y1a1{bottom:978.600037px;}
.y22{bottom:978.872406px;}
.y5b{bottom:978.940541px;}
.y88{bottom:978.944068px;}
.y1ff{bottom:978.945923px;}
.y28c{bottom:990.987579px;}
.y1a0{bottom:992.095518px;}
.y250{bottom:994.308781px;}
.y1b7{bottom:995.143518px;}
.y5a{bottom:1000.167341px;}
.y87{bottom:1000.170868px;}
.y28b{bottom:1004.487579px;}
.y24f{bottom:1012.452781px;}
.y28a{bottom:1017.987579px;}
.y19f{bottom:1018.987518px;}
.y59{bottom:1021.394141px;}
.yb0{bottom:1021.395905px;}
.y289{bottom:1031.487579px;}
.y48{bottom:1035.298370px;}
.y43{bottom:1035.750183px;}
.y24e{bottom:1038.912781px;}
.y58{bottom:1042.620941px;}
.y19c{bottom:1043.300079px;}
.y288{bottom:1044.987579px;}
.y4a{bottom:1112.297079px;}
.y56{bottom:1126.768616px;}
.y85{bottom:1126.768799px;}
.y49{bottom:1126.925079px;}
.y57{bottom:1127.296616px;}
.y86{bottom:1127.300079px;}
.h54{height:0.000000px;}
.h56{height:2.352792px;}
.h30{height:11.401500px;}
.h3b{height:13.349999px;}
.h49{height:15.000000px;}
.h4e{height:15.599999px;}
.h5e{height:19.200000px;}
.h32{height:20.099999px;}
.h53{height:21.351587px;}
.h59{height:25.050000px;}
.h31{height:25.880712px;}
.h6a{height:25.901400px;}
.h40{height:26.061499px;}
.h17{height:27.814500px;}
.h18{height:28.483140px;}
.h5b{height:29.995310px;}
.h62{height:30.799953px;}
.h34{height:31.291679px;}
.h38{height:31.649299px;}
.h45{height:31.738703px;}
.h7{height:32.130000px;}
.h5a{height:33.258585px;}
.h5f{height:34.291943px;}
.h64{height:37.002000px;}
.h13{height:37.086000px;}
.h4b{height:38.644609px;}
.h4a{height:38.997527px;}
.h60{height:39.350446px;}
.h4f{height:39.468086px;}
.h70{height:39.645000px;}
.h16{height:39.735000px;}
.h35{height:39.762185px;}
.h6f{height:40.005000px;}
.h57{height:40.526842px;}
.h19{height:40.690200px;}
.h3e{height:41.173860px;}
.h36{height:41.644418px;}
.h3c{height:41.762058px;}
.h58{height:41.938517px;}
.h46{height:41.997337px;}
.h15{height:42.288000px;}
.h68{height:42.384000px;}
.h66{height:42.402073px;}
.h65{height:42.672000px;}
.h14{height:43.392000px;}
.h37{height:43.761931px;}
.h52{height:44.099999px;}
.h44{height:45.145983px;}
.h3f{height:45.408886px;}
.h6{height:45.900000px;}
.h3d{height:46.650000px;}
.h55{height:47.699999px;}
.h3{height:48.195000px;}
.h63{height:48.438000px;}
.h2e{height:48.686399px;}
.h27{height:49.072799px;}
.h61{height:49.330004px;}
.h51{height:50.702668px;}
.h50{height:50.716644px;}
.h43{height:52.649998px;}
.h10{height:52.980000px;}
.h33{height:53.215079px;}
.h41{height:53.217467px;}
.h11{height:53.340000px;}
.h47{height:53.662104px;}
.h2{height:55.080000px;}
.hc{height:55.434600px;}
.hd{height:55.860000px;}
.h2d{height:55.861654px;}
.h1d{height:55.867054px;}
.hf{height:55.867145px;}
.h2a{height:55.867190px;}
.h39{height:55.867191px;}
.h4d{height:55.867192px;}
.h1e{height:55.867237px;}
.h6d{height:55.867420px;}
.h5c{height:55.870867px;}
.h6c{height:55.874107px;}
.h6b{height:55.874290px;}
.h4c{height:55.874382px;}
.h2b{height:55.874427px;}
.h1c{height:55.874473px;}
.h28{height:55.881454px;}
.h1a{height:55.881527px;}
.h69{height:55.881618px;}
.h2c{height:55.888580px;}
.h2f{height:55.888763px;}
.h21{height:55.888946px;}
.h24{height:55.895908px;}
.h1f{height:55.896000px;}
.h1b{height:55.903054px;}
.h23{height:55.909924px;}
.h29{height:55.910400px;}
.h25{height:55.917618px;}
.h5d{height:55.924855px;}
.h6e{height:55.932000px;}
.h22{height:55.932183px;}
.h26{height:55.939420px;}
.h20{height:55.960718px;}
.h3a{height:57.000000px;}
.h48{height:57.892134px;}
.he{height:62.629230px;}
.hb{height:67.194379px;}
.h12{height:69.966000px;}
.h5{height:78.030000px;}
.h67{height:96.384000px;}
.h42{height:112.007078px;}
.h4{height:119.055004px;}
.ha{height:126.864000px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:21.630000px;}
.w4{width:22.920000px;}
.wc{width:23.506499px;}
.wb{width:25.230000px;}
.w10{width:45.406500px;}
.w6{width:61.064999px;}
.we{width:138.105000px;}
.w7{width:203.115005px;}
.w9{width:240.928505px;}
.wd{width:271.620003px;}
.w11{width:300.344994px;}
.w8{width:330.059990px;}
.wa{width:346.125000px;}
.w12{width:368.714996px;}
.wf{width:422.880020px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x11{left:-1.611305px;}
.x0{left:0.000000px;}
.x3c{left:1.618492px;}
.x12{left:8.238836px;}
.x3f{left:10.722693px;}
.x3e{left:13.781322px;}
.x5a{left:35.181152px;}
.x59{left:37.017609px;}
.x5d{left:38.123406px;}
.x5e{left:41.782059px;}
.x16{left:48.357880px;}
.x18{left:55.715378px;}
.x1d{left:57.896256px;}
.x51{left:59.791489px;}
.x4c{left:68.471398px;}
.x1e{left:70.019395px;}
.x4b{left:74.344208px;}
.x41{left:78.013505px;}
.x20{left:81.129891px;}
.x5{left:84.933002px;}
.x1f{left:91.264210px;}
.x9{left:93.732302px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x62{left:111.354150px;}
.x63{left:112.663193px;}
.x24{left:116.716210px;}
.x64{left:124.718858px;}
.x4e{left:135.485711px;}
.x42{left:139.897340px;}
.x2c{left:146.587052px;}
.x43{left:151.444359px;}
.x2e{left:161.369706px;}
.x52{left:166.211700px;}
.xb{left:176.456703px;}
.x70{left:180.944698px;}
.x69{left:185.458795px;}
.x75{left:186.956703px;}
.xc{left:188.451903px;}
.x31{left:190.637833px;}
.xd{left:193.464603px;}
.x45{left:197.650178px;}
.x76{left:198.956703px;}
.x4{left:203.484001px;}
.x1b{left:206.457000px;}
.x66{left:213.643662px;}
.x67{left:214.993653px;}
.x4f{left:217.162056px;}
.xe{left:218.599503px;}
.x46{left:222.124137px;}
.x58{left:224.953789px;}
.x5c{left:226.220695px;}
.x29{left:228.020554px;}
.x1c{left:232.128891px;}
.x28{left:238.310990px;}
.xf{left:241.519958px;}
.x48{left:253.985871px;}
.x5f{left:255.556206px;}
.x4a{left:258.175209px;}
.x49{left:260.738345px;}
.x50{left:262.090050px;}
.x5b{left:264.243141px;}
.x3b{left:265.723503px;}
.x6{left:267.874054px;}
.x38{left:269.221207px;}
.x10{left:273.813011px;}
.x60{left:275.792702px;}
.x7{left:277.624489px;}
.x55{left:279.625352px;}
.x56{left:280.975205px;}
.x35{left:285.380997px;}
.x2b{left:289.877700px;}
.x21{left:290.921402px;}
.x13{left:295.442848px;}
.x4d{left:298.621353px;}
.x22{left:303.044403px;}
.x6f{left:304.702057px;}
.x2a{left:311.288406px;}
.x6a{left:315.802795px;}
.x23{left:317.381699px;}
.x61{left:320.193900px;}
.x25{left:322.862549px;}
.x26{left:330.887214px;}
.x65{left:341.017342px;}
.x3a{left:343.524766px;}
.x2d{left:366.530548px;}
.x2f{left:369.581543px;}
.x71{left:378.740723px;}
.x53{left:382.672508px;}
.x44{left:389.365036px;}
.x32{left:392.815200px;}
.x6b{left:395.854795px;}
.x27{left:400.352554px;}
.x30{left:402.951884px;}
.x54{left:421.106552px;}
.x33{left:425.053482px;}
.x34{left:442.171050px;}
.x68{left:443.361145px;}
.x47{left:445.714188px;}
.x3{left:454.959000px;}
.x72{left:475.316723px;}
.x6c{left:486.454795px;}
.x36{left:490.298721px;}
.x37{left:498.323341px;}
.x39{left:500.229086px;}
.x57{left:509.342834px;}
.x73{left:571.892723px;}
.x6d{left:577.054795px;}
.x3d{left:585.218994px;}
.x14{left:607.681503px;}
.x40{left:608.725204px;}
.x15{left:611.867249px;}
.x17{left:654.500702px;}
.x6e{left:667.654795px;}
.x19{left:668.747406px;}
.x8{left:694.929886px;}
.x1a{left:699.146988px;}
.x74{left:741.068390px;}
.xa{left:747.224258px;}
@media print{
.vd{vertical-align:-20.751465pt;}
.v4{vertical-align:-16.000000pt;}
.v12{vertical-align:-14.933268pt;}
.v5{vertical-align:-13.047434pt;}
.v10{vertical-align:-10.650602pt;}
.v6{vertical-align:-7.822917pt;}
.vf{vertical-align:-5.951497pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.322667pt;}
.ve{vertical-align:8.290396pt;}
.vc{vertical-align:9.648035pt;}
.v8{vertical-align:16.113389pt;}
.v7{vertical-align:19.487467pt;}
.v2{vertical-align:20.913093pt;}
.v1{vertical-align:23.466471pt;}
.v9{vertical-align:36.598987pt;}
.v11{vertical-align:48.000000pt;}
.vb{vertical-align:52.738476pt;}
.va{vertical-align:71.747021pt;}
.ls4e{letter-spacing:-0.784000pt;}
.ls3{letter-spacing:-0.418133pt;}
.ls36{letter-spacing:-0.292693pt;}
.ls4d{letter-spacing:-0.261333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000055pt;}
.ls1{letter-spacing:0.000355pt;}
.ls29{letter-spacing:0.001722pt;}
.ls37{letter-spacing:0.005701pt;}
.lse{letter-spacing:0.006176pt;}
.ls2a{letter-spacing:0.009320pt;}
.ls42{letter-spacing:0.010599pt;}
.ls28{letter-spacing:0.011087pt;}
.ls23{letter-spacing:0.012773pt;}
.ls3b{letter-spacing:0.016021pt;}
.ls38{letter-spacing:0.016647pt;}
.ls1d{letter-spacing:0.017607pt;}
.ls31{letter-spacing:0.018348pt;}
.ls41{letter-spacing:0.018430pt;}
.ls2f{letter-spacing:0.022566pt;}
.ls34{letter-spacing:0.022647pt;}
.ls27{letter-spacing:0.032225pt;}
.ls45{letter-spacing:0.033460pt;}
.ls3a{letter-spacing:0.044377pt;}
.ls26{letter-spacing:0.052271pt;}
.ls1e{letter-spacing:0.052284pt;}
.ls24{letter-spacing:0.069138pt;}
.ls30{letter-spacing:0.198677pt;}
.ls21{letter-spacing:0.512213pt;}
.ls1a{letter-spacing:0.556297pt;}
.ls1c{letter-spacing:0.596032pt;}
.ls4a{letter-spacing:0.627200pt;}
.ls1b{letter-spacing:1.430477pt;}
.ls11{letter-spacing:2.661195pt;}
.ls10{letter-spacing:2.661276pt;}
.ls12{letter-spacing:2.661357pt;}
.ls22{letter-spacing:2.662276pt;}
.ls18{letter-spacing:2.709293pt;}
.ls1f{letter-spacing:3.136422pt;}
.ls14{letter-spacing:3.136585pt;}
.ls2e{letter-spacing:3.260166pt;}
.lsc{letter-spacing:3.262359pt;}
.ls7{letter-spacing:3.921320pt;}
.ls33{letter-spacing:4.160489pt;}
.ls44{letter-spacing:4.162605pt;}
.ls13{letter-spacing:4.728520pt;}
.ls2{letter-spacing:4.853333pt;}
.ls17{letter-spacing:5.193177pt;}
.ls39{letter-spacing:5.435733pt;}
.ls19{letter-spacing:6.274112pt;}
.ls20{letter-spacing:8.215310pt;}
.ls4{letter-spacing:8.217507pt;}
.ls8{letter-spacing:8.741929pt;}
.ls3d{letter-spacing:8.757615pt;}
.ls2c{letter-spacing:10.927412pt;}
.ls6{letter-spacing:11.607107pt;}
.lsb{letter-spacing:11.659391pt;}
.ls2b{letter-spacing:14.204173pt;}
.ls2d{letter-spacing:14.303827pt;}
.ls43{letter-spacing:14.303908pt;}
.ls40{letter-spacing:14.351271pt;}
.ls15{letter-spacing:14.482742pt;}
.ls9{letter-spacing:14.535026pt;}
.ls47{letter-spacing:14.876617pt;}
.lsa{letter-spacing:14.876699pt;}
.lsf{letter-spacing:14.876780pt;}
.ls3c{letter-spacing:15.319290pt;}
.ls35{letter-spacing:15.679694pt;}
.ls46{letter-spacing:15.679857pt;}
.ls32{letter-spacing:15.775885pt;}
.ls5{letter-spacing:17.881219pt;}
.ls3f{letter-spacing:18.038072pt;}
.ls16{letter-spacing:20.913707pt;}
.lsd{letter-spacing:23.266499pt;}
.ls3e{letter-spacing:60.963455pt;}
.ls48{letter-spacing:261.333333pt;}
.ls49{letter-spacing:368.853333pt;}
.ls4c{letter-spacing:412.629333pt;}
.ls4b{letter-spacing:435.328000pt;}
.ws1{word-spacing:-27.136000pt;}
.ws6{word-spacing:-18.858667pt;}
.ws8f{word-spacing:-17.404800pt;}
.wsa0{word-spacing:-14.535026pt;}
.wsa2{word-spacing:-12.909867pt;}
.ws41{word-spacing:-12.282667pt;}
.ws4{word-spacing:-11.680000pt;}
.ws3{word-spacing:-11.096533pt;}
.ws5{word-spacing:-11.040000pt;}
.ws85{word-spacing:-10.156800pt;}
.ws8d{word-spacing:-10.087467pt;}
.wsec{word-spacing:-9.936000pt;}
.wsa9{word-spacing:-9.344000pt;}
.ws74{word-spacing:-9.110080pt;}
.ws7{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.wsa4{word-spacing:-8.809899pt;}
.ws9{word-spacing:-8.760000pt;}
.ws76{word-spacing:-8.597867pt;}
.ws90{word-spacing:-8.305173pt;}
.wseb{word-spacing:-8.280000pt;}
.ws16{word-spacing:-8.176000pt;}
.wsc5{word-spacing:-7.914667pt;}
.wsaa{word-spacing:-6.540800pt;}
.ws8{word-spacing:-6.132000pt;}
.ws9e{word-spacing:-5.749333pt;}
.wsc4{word-spacing:-5.540267pt;}
.wsce{word-spacing:-4.010667pt;}
.ws14{word-spacing:-3.882667pt;}
.wsef{word-spacing:-2.000000pt;}
.wsee{word-spacing:-1.792000pt;}
.wse0{word-spacing:-0.731733pt;}
.wsf{word-spacing:-0.627200pt;}
.ws4b{word-spacing:-0.574933pt;}
.ws4e{word-spacing:-0.522667pt;}
.ws45{word-spacing:-0.470400pt;}
.ws72{word-spacing:-0.418133pt;}
.wsc{word-spacing:-0.365867pt;}
.ws1e{word-spacing:-0.313600pt;}
.ws2b{word-spacing:-0.261333pt;}
.ws9b{word-spacing:-0.156800pt;}
.ws96{word-spacing:-0.104533pt;}
.ws75{word-spacing:-0.052284pt;}
.ws80{word-spacing:-0.039735pt;}
.ws0{word-spacing:0.000000pt;}
.ws18{word-spacing:0.037333pt;}
.ws9f{word-spacing:0.104533pt;}
.ws39{word-spacing:0.313600pt;}
.ws64{word-spacing:0.418133pt;}
.ws6c{word-spacing:0.522667pt;}
.ws71{word-spacing:0.731733pt;}
.ws5c{word-spacing:0.784000pt;}
.ws99{word-spacing:0.836267pt;}
.ws58{word-spacing:0.888533pt;}
.ws19{word-spacing:0.895467pt;}
.ws2c{word-spacing:0.940800pt;}
.ws36{word-spacing:1.045333pt;}
.ws31{word-spacing:1.097600pt;}
.ws70{word-spacing:1.149867pt;}
.ws69{word-spacing:1.202133pt;}
.ws6e{word-spacing:1.254400pt;}
.ws1b{word-spacing:1.358933pt;}
.ws42{word-spacing:1.411200pt;}
.ws2d{word-spacing:1.463467pt;}
.ws6d{word-spacing:1.568000pt;}
.ws33{word-spacing:1.620267pt;}
.ws25{word-spacing:1.672533pt;}
.wse1{word-spacing:1.777067pt;}
.ws2a{word-spacing:1.829333pt;}
.ws27{word-spacing:1.881600pt;}
.ws2e{word-spacing:1.986133pt;}
.ws23{word-spacing:2.038400pt;}
.ws97{word-spacing:2.090667pt;}
.ws65{word-spacing:2.142933pt;}
.wsb9{word-spacing:2.195200pt;}
.ws5e{word-spacing:2.247467pt;}
.ws6b{word-spacing:2.299733pt;}
.ws21{word-spacing:2.352000pt;}
.ws12{word-spacing:2.404267pt;}
.ws83{word-spacing:2.456533pt;}
.wsb2{word-spacing:2.508800pt;}
.wse6{word-spacing:2.561067pt;}
.ws47{word-spacing:2.613333pt;}
.ws28{word-spacing:2.665600pt;}
.wsb0{word-spacing:2.717867pt;}
.ws84{word-spacing:2.770133pt;}
.ws6f{word-spacing:2.822400pt;}
.wsd9{word-spacing:2.874667pt;}
.ws29{word-spacing:2.926933pt;}
.wsdb{word-spacing:2.979200pt;}
.ws68{word-spacing:3.031467pt;}
.ws15{word-spacing:3.136000pt;}
.ws5d{word-spacing:3.188267pt;}
.ws22{word-spacing:3.292800pt;}
.ws1c{word-spacing:3.345067pt;}
.wscd{word-spacing:3.501867pt;}
.ws1d{word-spacing:3.554133pt;}
.wse{word-spacing:3.606400pt;}
.ws38{word-spacing:3.658667pt;}
.wse2{word-spacing:3.763200pt;}
.ws3e{word-spacing:3.815467pt;}
.ws4f{word-spacing:3.867733pt;}
.ws49{word-spacing:3.920000pt;}
.ws3b{word-spacing:3.972267pt;}
.wsb4{word-spacing:4.024533pt;}
.ws89{word-spacing:4.129067pt;}
.ws56{word-spacing:4.181333pt;}
.ws3d{word-spacing:4.233600pt;}
.ws8b{word-spacing:4.285867pt;}
.ws88{word-spacing:4.338133pt;}
.ws87{word-spacing:4.390400pt;}
.ws93{word-spacing:4.442667pt;}
.ws6a{word-spacing:4.494933pt;}
.ws43{word-spacing:4.547200pt;}
.ws1a{word-spacing:4.599467pt;}
.wsda{word-spacing:4.651733pt;}
.ws61{word-spacing:4.704000pt;}
.wse4{word-spacing:4.756267pt;}
.wsba{word-spacing:4.808533pt;}
.ws9a{word-spacing:4.860800pt;}
.ws34{word-spacing:4.913067pt;}
.ws37{word-spacing:4.965333pt;}
.ws5f{word-spacing:5.017600pt;}
.ws20{word-spacing:5.122133pt;}
.ws44{word-spacing:5.174400pt;}
.ws5b{word-spacing:5.226667pt;}
.ws17{word-spacing:5.264000pt;}
.wsdd{word-spacing:5.278933pt;}
.ws7a{word-spacing:5.291160pt;}
.ws91{word-spacing:5.291648pt;}
.ws46{word-spacing:5.331200pt;}
.ws7f{word-spacing:5.339826pt;}
.wse3{word-spacing:5.383467pt;}
.ws8c{word-spacing:5.435733pt;}
.ws67{word-spacing:5.488000pt;}
.wsed{word-spacing:5.540267pt;}
.ws4c{word-spacing:5.592533pt;}
.ws24{word-spacing:5.644800pt;}
.ws94{word-spacing:5.697067pt;}
.ws73{word-spacing:5.749333pt;}
.ws50{word-spacing:5.801600pt;}
.ws26{word-spacing:5.853867pt;}
.ws1f{word-spacing:5.906133pt;}
.ws13{word-spacing:5.958400pt;}
.ws53{word-spacing:6.010667pt;}
.wsb1{word-spacing:6.062933pt;}
.ws62{word-spacing:6.115200pt;}
.wse7{word-spacing:6.167467pt;}
.ws51{word-spacing:6.219733pt;}
.ws95{word-spacing:6.272000pt;}
.wsea{word-spacing:6.324267pt;}
.ws66{word-spacing:6.376533pt;}
.wsb8{word-spacing:6.428800pt;}
.ws57{word-spacing:6.481067pt;}
.wse5{word-spacing:6.585600pt;}
.wsd{word-spacing:6.690133pt;}
.ws30{word-spacing:6.846933pt;}
.ws2f{word-spacing:6.899200pt;}
.wsdc{word-spacing:6.951467pt;}
.wsdf{word-spacing:7.003733pt;}
.ws9d{word-spacing:7.056000pt;}
.wsb{word-spacing:7.160533pt;}
.ws40{word-spacing:7.212800pt;}
.ws3f{word-spacing:7.317333pt;}
.ws4d{word-spacing:7.369600pt;}
.ws59{word-spacing:7.421867pt;}
.ws35{word-spacing:7.474133pt;}
.ws10{word-spacing:7.578667pt;}
.ws48{word-spacing:7.683200pt;}
.ws3a{word-spacing:7.892267pt;}
.ws98{word-spacing:8.101333pt;}
.ws32{word-spacing:8.153600pt;}
.ws9c{word-spacing:8.258133pt;}
.wsb5{word-spacing:8.310400pt;}
.wsb6{word-spacing:8.414933pt;}
.ws63{word-spacing:8.467200pt;}
.ws5a{word-spacing:8.519467pt;}
.wsa3{word-spacing:8.663503pt;}
.wsa5{word-spacing:8.668732pt;}
.ws55{word-spacing:8.780800pt;}
.wscb{word-spacing:9.094400pt;}
.ws4a{word-spacing:9.303467pt;}
.ws11{word-spacing:9.355733pt;}
.wscc{word-spacing:9.408000pt;}
.wsb7{word-spacing:9.512533pt;}
.ws3c{word-spacing:9.617067pt;}
.wsb3{word-spacing:10.505600pt;}
.wsde{word-spacing:10.766933pt;}
.ws60{word-spacing:10.819200pt;}
.wse9{word-spacing:11.132800pt;}
.ws54{word-spacing:11.185067pt;}
.ws52{word-spacing:11.812267pt;}
.ws8a{word-spacing:11.864533pt;}
.ws77{word-spacing:12.224062pt;}
.ws8e{word-spacing:13.066667pt;}
.wse8{word-spacing:15.105067pt;}
.ws82{word-spacing:15.638186pt;}
.wsa{word-spacing:16.370133pt;}
.ws7c{word-spacing:16.860250pt;}
.ws7d{word-spacing:16.906232pt;}
.ws79{word-spacing:16.907697pt;}
.ws7e{word-spacing:16.908185pt;}
.ws81{word-spacing:17.130679pt;}
.wsa1{word-spacing:18.586834pt;}
.wsa6{word-spacing:19.787173pt;}
.ws78{word-spacing:19.787177pt;}
.ws92{word-spacing:19.787252pt;}
.ws7b{word-spacing:19.787254pt;}
.ws86{word-spacing:20.331733pt;}
.wsaf{word-spacing:44.590921pt;}
.wsad{word-spacing:141.866654pt;}
.wsab{word-spacing:161.962667pt;}
.wsc7{word-spacing:166.656000pt;}
.wsae{word-spacing:178.474667pt;}
.wsc9{word-spacing:212.309333pt;}
.wsd8{word-spacing:219.306667pt;}
.wsac{word-spacing:220.288000pt;}
.wsd6{word-spacing:220.842667pt;}
.wsd7{word-spacing:220.928000pt;}
.wsca{word-spacing:241.536000pt;}
.wsc8{word-spacing:251.904000pt;}
.wsa8{word-spacing:254.848000pt;}
.wscf{word-spacing:306.773333pt;}
.wsd5{word-spacing:313.386651pt;}
.wsd3{word-spacing:314.922651pt;}
.wsd4{word-spacing:324.309333pt;}
.wsbb{word-spacing:339.541315pt;}
.wsd2{word-spacing:345.983984pt;}
.wsc6{word-spacing:349.738667pt;}
.wsc3{word-spacing:356.778667pt;}
.wsc1{word-spacing:358.314667pt;}
.wsc2{word-spacing:358.400000pt;}
.wsd1{word-spacing:361.557333pt;}
.wsd0{word-spacing:365.226651pt;}
.wsc0{word-spacing:368.682667pt;}
.wsa7{word-spacing:372.138667pt;}
.wsbc{word-spacing:391.381333pt;}
.wsbf{word-spacing:398.592000pt;}
.wsbd{word-spacing:400.128000pt;}
.wsbe{word-spacing:400.213333pt;}
._16{margin-left:-24.925883pt;}
._13{margin-left:-23.627733pt;}
._14{margin-left:-16.495167pt;}
._17{margin-left:-14.360489pt;}
._f{margin-left:-11.096533pt;}
._10{margin-left:-9.966933pt;}
._7{margin-left:-7.765333pt;}
._4{margin-left:-6.386987pt;}
._8{margin-left:-4.918293pt;}
._5{margin-left:-3.639467pt;}
._3{margin-left:-2.665600pt;}
._0{margin-left:-1.548800pt;}
._1{width:0.921600pt;}
._2{width:2.038400pt;}
._9{width:4.035200pt;}
._d{width:5.334720pt;}
._a{width:6.543978pt;}
._12{width:7.735467pt;}
._c{width:10.382400pt;}
._15{width:12.962133pt;}
._6{width:14.186667pt;}
._e{width:16.370133pt;}
._11{width:24.533333pt;}
._b{width:27.466667pt;}
._2a{width:209.122133pt;}
._2c{width:234.922667pt;}
._2b{width:250.325333pt;}
._20{width:257.151996pt;}
._1f{width:258.402126pt;}
._2d{width:269.495451pt;}
._18{width:272.268800pt;}
._27{width:275.252267pt;}
._19{width:286.677287pt;}
._25{width:297.685326pt;}
._1c{width:303.445333pt;}
._1e{width:304.866133pt;}
._34{width:310.203733pt;}
._26{width:315.221323pt;}
._23{width:321.877333pt;}
._29{width:325.546667pt;}
._32{width:327.040000pt;}
._30{width:333.653333pt;}
._1d{width:336.810667pt;}
._28{width:347.733326pt;}
._22{width:348.915200pt;}
._35{width:356.309333pt;}
._31{width:359.552000pt;}
._1b{width:360.448000pt;}
._24{width:366.054400pt;}
._2f{width:402.858667pt;}
._33{width:404.906667pt;}
._2e{width:406.442667pt;}
._21{width:407.765333pt;}
._1a{width:698.227768pt;}
._40{width:750.316724pt;}
._3c{width:762.905521pt;}
._3a{width:856.887387pt;}
._47{width:896.800987pt;}
._4d{width:910.501254pt;}
._52{width:972.019121pt;}
._51{width:1012.155654pt;}
._4b{width:1066.486324pt;}
._3b{width:1072.968454pt;}
._4a{width:1164.287921pt;}
._4e{width:1173.878324pt;}
._48{width:1178.666587pt;}
._41{width:1235.199921pt;}
._4c{width:1239.308721pt;}
._49{width:1240.789254pt;}
._43{width:1270.498054pt;}
._45{width:1272.011658pt;}
._3e{width:1324.125787pt;}
._37{width:1326.335921pt;}
._39{width:1327.264991pt;}
._46{width:1352.182321pt;}
._4f{width:1366.967387pt;}
._50{width:1378.619654pt;}
._36{width:1381.802587pt;}
._53{width:1388.292267pt;}
._42{width:1397.546587pt;}
._44{width:1424.519387pt;}
._3f{width:1441.372721pt;}
._38{width:1487.116721pt;}
._3d{width:1496.038321pt;}
.fs17{font-size:26.133333pt;}
.fsf{font-size:27.253333pt;}
.fse{font-size:28.000000pt;}
.fs16{font-size:29.866667pt;}
.fs14{font-size:31.370667pt;}
.fsa{font-size:36.586667pt;}
.fs4{font-size:37.333333pt;}
.fs10{font-size:38.933333pt;}
.fs13{font-size:39.735466pt;}
.fsd{font-size:40.000000pt;}
.fs7{font-size:41.066666pt;}
.fsc{font-size:42.666667pt;}
.fs15{font-size:48.000000pt;}
.fs11{font-size:49.066666pt;}
.fs9{font-size:52.266667pt;}
.fs12{font-size:52.284267pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:54.933333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y153{bottom:0.080688pt;}
.y16e{bottom:1.866007pt;}
.y134{bottom:2.040283pt;}
.y132{bottom:2.052585pt;}
.y105{bottom:2.350931pt;}
.y198{bottom:2.361735pt;}
.y193{bottom:2.361857pt;}
.y162{bottom:2.402791pt;}
.y15e{bottom:2.402934pt;}
.y18b{bottom:2.403768pt;}
.yf2{bottom:2.421058pt;}
.yf7{bottom:2.424924pt;}
.yfe{bottom:2.625977pt;}
.yfb{bottom:2.626058pt;}
.y148{bottom:2.626953pt;}
.y14a{bottom:2.630059pt;}
.yef{bottom:4.306671pt;}
.y188{bottom:4.359497pt;}
.y135{bottom:4.641425pt;}
.y131{bottom:4.653727pt;}
.yf3{bottom:6.360006pt;}
.yf1{bottom:6.440001pt;}
.y16a{bottom:6.512982pt;}
.yf5{bottom:6.563599pt;}
.y18a{bottom:7.359497pt;}
.y169{bottom:9.519328pt;}
.yf6{bottom:11.315735pt;}
.y16c{bottom:14.822957pt;}
.y155{bottom:16.196289pt;}
.y14d{bottom:16.200399pt;}
.y10c{bottom:18.462667pt;}
.y19b{bottom:18.465861pt;}
.y18e{bottom:18.466146pt;}
.y101{bottom:18.466654pt;}
.y164{bottom:18.506388pt;}
.y158{bottom:18.506673pt;}
.y10f{bottom:22.573344pt;}
.y122{bottom:22.577067pt;}
.y119{bottom:22.689738pt;}
.y11f{bottom:22.973328pt;}
.y109{bottom:24.430522pt;}
.y152{bottom:28.616659pt;}
.y15b{bottom:29.103068pt;}
.y197{bottom:30.885742pt;}
.y192{bottom:30.885864pt;}
.y104{bottom:30.886922pt;}
.y161{bottom:30.926798pt;}
.y15d{bottom:30.926941pt;}
.y151{bottom:32.528687pt;}
.y11c{bottom:34.245341pt;}
.y107{bottom:34.794939pt;}
.y103{bottom:34.798930pt;}
.y116{bottom:34.989604pt;}
.y196{bottom:35.890015pt;}
.y191{bottom:35.890137pt;}
.y160{bottom:35.931071pt;}
.y15c{bottom:35.931193pt;}
.y114{bottom:41.001729pt;}
.y111{bottom:46.201335pt;}
.y5{bottom:59.133337pt;}
.y47{bottom:75.378933pt;}
.y1b4{bottom:83.542657pt;}
.y46{bottom:86.046933pt;}
.y4{bottom:86.333337pt;}
.y225{bottom:89.467727pt;}
.y145{bottom:89.475738pt;}
.yd4{bottom:89.477336pt;}
.yaf{bottom:89.743998pt;}
.y84{bottom:96.640798pt;}
.y45{bottom:96.714933pt;}
.y1e8{bottom:99.563200pt;}
.y185{bottom:101.326667pt;}
.y1b3{bottom:102.410923pt;}
.y24d{bottom:106.471210pt;}
.y44{bottom:107.382933pt;}
.y224{bottom:108.335994pt;}
.yd3{bottom:108.340798pt;}
.y144{bottom:108.342396pt;}
.yf8{bottom:108.344004pt;}
.yae{bottom:108.597995pt;}
.y287{bottom:114.655884pt;}
.y83{bottom:115.507467pt;}
.y1e7{bottom:118.431467pt;}
.y184{bottom:120.194933pt;}
.y1b2{bottom:121.279190pt;}
.y24c{bottom:122.599210pt;}
.y21{bottom:123.790666pt;}
.y286{bottom:126.655884pt;}
.y223{bottom:127.204261pt;}
.yd2{bottom:127.209065pt;}
.yad{bottom:127.466262pt;}
.y82{bottom:134.351754pt;}
.y1e6{bottom:137.298136pt;}
.y285{bottom:138.655884pt;}
.y24b{bottom:138.727210pt;}
.y183{bottom:139.063200pt;}
.yf0{bottom:139.669332pt;}
.y1b1{bottom:140.147457pt;}
.y55{bottom:141.379730pt;}
.yee{bottom:141.805328pt;}
.y222{bottom:146.072527pt;}
.y143{bottom:146.075733pt;}
.yd1{bottom:146.077332pt;}
.yed{bottom:146.082923pt;}
.yf4{bottom:146.113200pt;}
.yac{bottom:146.334528pt;}
.y284{bottom:150.655884pt;}
.y81{bottom:153.220020pt;}
.y24a{bottom:154.855210pt;}
.y54{bottom:155.939738pt;}
.y1e5{bottom:156.156795pt;}
.y182{bottom:157.931467pt;}
.y1b0{bottom:159.015723pt;}
.y283{bottom:162.655884pt;}
.y221{bottom:164.940794pt;}
.yd0{bottom:164.942402pt;}
.yab{bottom:165.202795pt;}
.y249{bottom:170.983210pt;}
.y80{bottom:172.088287pt;}
.y282{bottom:174.655884pt;}
.y1e4{bottom:175.025062pt;}
.y18{bottom:175.052000pt;}
.y10e{bottom:175.910665pt;}
.y181{bottom:176.794940pt;}
.y1af{bottom:177.883990pt;}
.y121{bottom:180.465065pt;}
.y117{bottom:182.376404pt;}
.y220{bottom:183.809061pt;}
.ycf{bottom:183.810669pt;}
.y142{bottom:183.811471pt;}
.yaa{bottom:184.071062pt;}
.y120{bottom:184.484009pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y281{bottom:186.655884pt;}
.y248{bottom:187.111210pt;}
.y113{bottom:189.204000pt;}
.y7f{bottom:190.956554pt;}
.y2f{bottom:193.308672pt;}
.y1e3{bottom:193.893328pt;}
.y10d{bottom:194.410807pt;}
.y180{bottom:195.663207pt;}
.y110{bottom:196.072000pt;}
.y1ae{bottom:196.752257pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y11a{bottom:198.480000pt;}
.y280{bottom:198.655884pt;}
.yce{bottom:202.675740pt;}
.y21f{bottom:202.677327pt;}
.ya9{bottom:202.939328pt;}
.y247{bottom:203.239210pt;}
.y11e{bottom:206.007398pt;}
.y112{bottom:207.660136pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y7e{bottom:209.824820pt;}
.y11b{bottom:209.952393pt;}
.y11d{bottom:210.036275pt;}
.y27f{bottom:210.655884pt;}
.y2e{bottom:212.176938pt;}
.y1e2{bottom:212.761595pt;}
.y157{bottom:213.644002pt;}
.y17f{bottom:214.531474pt;}
.y118{bottom:214.820412pt;}
.y115{bottom:214.824259pt;}
.y1ad{bottom:215.620523pt;}
.y246{bottom:219.367210pt;}
.y21e{bottom:221.542398pt;}
.ycd{bottom:221.544006pt;}
.ya8{bottom:221.807595pt;}
.y27e{bottom:222.655884pt;}
.y7d{bottom:228.693087pt;}
.y156{bottom:229.944132pt;}
.y15a{bottom:230.194926pt;}
.y1d{bottom:231.038664pt;}
.y2d{bottom:231.045205pt;}
.y14{bottom:231.052000pt;}
.y1e1{bottom:231.629862pt;}
.y163{bottom:232.150391pt;}
.y15f{bottom:232.150533pt;}
.y159{bottom:232.150675pt;}
.y17e{bottom:233.383720pt;}
.y1ac{bottom:234.488790pt;}
.y27d{bottom:234.655884pt;}
.y245{bottom:235.495210pt;}
.yec{bottom:240.110657pt;}
.ycc{bottom:240.409057pt;}
.y21d{bottom:240.410665pt;}
.ya7{bottom:240.675862pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y27c{bottom:246.655884pt;}
.y7c{bottom:247.561354pt;}
.y2c{bottom:249.913472pt;}
.y1e0{bottom:250.498128pt;}
.y244{bottom:251.623210pt;}
.y17d{bottom:252.251987pt;}
.y1ab{bottom:253.350665pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y27b{bottom:258.655884pt;}
.yeb{bottom:258.978685pt;}
.ycb{bottom:259.277323pt;}
.ya6{bottom:259.544128pt;}
.y7b{bottom:266.429620pt;}
.y243{bottom:267.751210pt;}
.y2b{bottom:268.781738pt;}
.y1df{bottom:269.364807pt;}
.y27a{bottom:270.655884pt;}
.y17c{bottom:271.120253pt;}
.y1aa{bottom:272.218931pt;}
.y141{bottom:275.640806pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y21c{bottom:278.140806pt;}
.yca{bottom:278.144002pt;}
.ya5{bottom:278.402685pt;}
.y279{bottom:282.655884pt;}
.y242{bottom:283.879210pt;}
.y7a{bottom:285.297887pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y2a{bottom:287.646809pt;}
.y1de{bottom:288.226662pt;}
.y100{bottom:288.810669pt;}
.y17b{bottom:289.988520pt;}
.y1a9{bottom:291.087198pt;}
.y106{bottom:291.161600pt;}
.y140{bottom:294.509073pt;}
.y278{bottom:294.655884pt;}
.yc9{bottom:296.999461pt;}
.y21b{bottom:297.009073pt;}
.ya4{bottom:297.270952pt;}
.y10b{bottom:297.997192pt;}
.y241{bottom:300.007210pt;}
.y10a{bottom:303.248853pt;}
.y79{bottom:304.166154pt;}
.yff{bottom:304.644124pt;}
.y29{bottom:306.513467pt;}
.y277{bottom:306.655884pt;}
.y1dd{bottom:307.094928pt;}
.y108{bottom:307.277200pt;}
.y102{bottom:307.277323pt;}
.y17a{bottom:308.856787pt;}
.yf{bottom:309.452000pt;}
.y1a8{bottom:309.955465pt;}
.y13f{bottom:313.377340pt;}
.y21a{bottom:315.877340pt;}
.y240{bottom:316.135210pt;}
.ya3{bottom:316.139219pt;}
.y276{bottom:318.655884pt;}
.y78{bottom:323.034420pt;}
.yc8{bottom:324.204261pt;}
.y28{bottom:325.381733pt;}
.y1dc{bottom:325.963195pt;}
.y179{bottom:327.725053pt;}
.y275{bottom:330.655884pt;}
.y13e{bottom:332.243998pt;}
.y23f{bottom:332.263210pt;}
.y219{bottom:334.739194pt;}
.ya2{bottom:335.007485pt;}
.y77{bottom:341.902687pt;}
.y274{bottom:342.655884pt;}
.yc7{bottom:343.072527pt;}
.ye{bottom:343.809333pt;}
.y27{bottom:344.248413pt;}
.y1db{bottom:344.831462pt;}
.y178{bottom:346.593320pt;}
.y23e{bottom:348.391210pt;}
.yea{bottom:350.340819pt;}
.y13d{bottom:351.110677pt;}
.y1c5{bottom:351.140140pt;}
.y218{bottom:353.607461pt;}
.ya1{bottom:353.875752pt;}
.y273{bottom:354.655884pt;}
.y76{bottom:360.770954pt;}
.yc6{bottom:361.940794pt;}
.y1c4{bottom:362.470806pt;}
.yd{bottom:362.706666pt;}
.y26{bottom:363.115072pt;}
.y1da{bottom:363.694945pt;}
.y23d{bottom:364.519210pt;}
.y177{bottom:365.461587pt;}
.y272{bottom:366.655884pt;}
.ye9{bottom:369.209085pt;}
.y13c{bottom:369.977336pt;}
.y217{bottom:372.475727pt;}
.ya0{bottom:372.744019pt;}
.y1c3{bottom:377.534790pt;}
.y271{bottom:378.655884pt;}
.y75{bottom:379.639220pt;}
.y23c{bottom:380.647210pt;}
.yc5{bottom:380.809061pt;}
.y1d9{bottom:382.563211pt;}
.y176{bottom:384.329853pt;}
.ye8{bottom:388.075744pt;}
.y270{bottom:390.655884pt;}
.y216{bottom:391.343994pt;}
.y9f{bottom:391.599583pt;}
.y1d3{bottom:392.755999pt;}
.y23b{bottom:396.775210pt;}
.y42{bottom:398.081868pt;}
.y74{bottom:398.507487pt;}
.yc4{bottom:399.677327pt;}
.y1d8{bottom:401.431478pt;}
.y26f{bottom:402.655884pt;}
.y175{bottom:403.198120pt;}
.y1d2{bottom:404.755999pt;}
.ye7{bottom:406.942402pt;}
.y215{bottom:410.209085pt;}
.y9e{bottom:410.467850pt;}
.y23a{bottom:412.903210pt;}
.y26e{bottom:414.655884pt;}
.y73{bottom:417.366146pt;}
.y13b{bottom:417.579324pt;}
.yc3{bottom:418.539219pt;}
.y41{bottom:419.415202pt;}
.y1d7{bottom:420.296528pt;}
.y1d1{bottom:420.958666pt;}
.y174{bottom:422.064819pt;}
.ye6{bottom:425.810669pt;}
.y26d{bottom:426.655884pt;}
.y214{bottom:429.077352pt;}
.y9d{bottom:429.336116pt;}
.y1d0{bottom:432.958666pt;}
.y40{bottom:435.415202pt;}
.y72{bottom:436.234412pt;}
.y13a{bottom:436.447591pt;}
.y239{bottom:436.807210pt;}
.y26c{bottom:438.655884pt;}
.y1d6{bottom:439.164795pt;}
.ye5{bottom:444.675719pt;}
.yc2{bottom:445.744019pt;}
.yc{bottom:446.990669pt;}
.y213{bottom:447.928010pt;}
.y9c{bottom:448.204383pt;}
.y26b{bottom:450.655884pt;}
.y71{bottom:455.102679pt;}
.y3f{bottom:456.748535pt;}
.y1cf{bottom:456.862666pt;}
.y238{bottom:457.707194pt;}
.y1d5{bottom:458.029886pt;}
.y26a{bottom:462.655884pt;}
.yb{bottom:462.990669pt;}
.ye4{bottom:463.539202pt;}
.yc1{bottom:464.607461pt;}
.y14c{bottom:466.291992pt;}
.y212{bottom:466.796277pt;}
.y9b{bottom:467.072650pt;}
.y3e{bottom:472.748535pt;}
.y150{bottom:473.212280pt;}
.y70{bottom:473.970946pt;}
.y269{bottom:474.655884pt;}
.y173{bottom:476.264811pt;}
.y1d4{bottom:476.898153pt;}
.y1ce{bottom:478.057332pt;}
.ya{bottom:478.990666pt;}
.y14b{bottom:480.992513pt;}
.ye3{bottom:482.407469pt;}
.y154{bottom:482.488281pt;}
.y14e{bottom:482.492391pt;}
.yc0{bottom:483.475727pt;}
.y211{bottom:485.664544pt;}
.y9a{bottom:485.940916pt;}
.y268{bottom:486.655884pt;}
.y3d{bottom:488.748535pt;}
.y237{bottom:489.040527pt;}
.y14f{bottom:491.642138pt;}
.y6f{bottom:492.839212pt;}
.y9{bottom:494.990666pt;}
.y172{bottom:495.129055pt;}
.y1cd{bottom:496.525349pt;}
.y267{bottom:498.655884pt;}
.ye2{bottom:501.275736pt;}
.ybf{bottom:502.343994pt;}
.y210{bottom:504.532810pt;}
.y3c{bottom:504.748535pt;}
.y99{bottom:504.809183pt;}
.y266{bottom:510.655884pt;}
.y6e{bottom:511.707479pt;}
.y1cc{bottom:512.653349pt;}
.ye1{bottom:520.144002pt;}
.y3b{bottom:520.748535pt;}
.ybe{bottom:521.210653pt;}
.y265{bottom:522.655884pt;}
.y20f{bottom:523.401077pt;}
.y98{bottom:523.677450pt;}
.y18d{bottom:524.965332pt;}
.y236{bottom:526.573853pt;}
.y139{bottom:526.685991pt;}
.y199{bottom:527.327067pt;}
.y194{bottom:527.327189pt;}
.y1cb{bottom:528.781349pt;}
.y1eb{bottom:529.416019pt;}
.y6d{bottom:530.572529pt;}
.y264{bottom:534.655884pt;}
.y3a{bottom:536.748535pt;}
.ye0{bottom:539.004269pt;}
.ybd{bottom:540.077352pt;}
.y1ea{bottom:540.746685pt;}
.y18c{bottom:541.264811pt;}
.y190{bottom:541.475220pt;}
.y20e{bottom:542.269344pt;}
.y97{bottom:542.544149pt;}
.y235{bottom:542.573853pt;}
.y19a{bottom:543.431193pt;}
.y195{bottom:543.431315pt;}
.y18f{bottom:543.431478pt;}
.y1ca{bottom:544.909349pt;}
.y138{bottom:545.554258pt;}
.y263{bottom:546.655884pt;}
.y6c{bottom:549.440796pt;}
.y234{bottom:550.570560pt;}
.y1e9{bottom:552.077352pt;}
.y39{bottom:552.748535pt;}
.ydf{bottom:557.872536pt;}
.y262{bottom:558.655884pt;}
.ybc{bottom:558.944010pt;}
.y1c9{bottom:561.037349pt;}
.y20d{bottom:561.137610pt;}
.y137{bottom:564.422524pt;}
.y6b{bottom:568.305887pt;}
.y38{bottom:568.748535pt;}
.y233{bottom:570.570560pt;}
.y261{bottom:570.655884pt;}
.y1fe{bottom:571.709350pt;}
.y8{bottom:573.786667pt;}
.yde{bottom:576.740802pt;}
.y1c8{bottom:577.165349pt;}
.y20c{bottom:580.005877pt;}
.y232{bottom:582.570560pt;}
.y260{bottom:582.655884pt;}
.y136{bottom:583.290791pt;}
.y1fd{bottom:583.709350pt;}
.y37{bottom:584.748535pt;}
.y171{bottom:586.961587pt;}
.y6a{bottom:587.174154pt;}
.y7{bottom:592.685334pt;}
.y25f{bottom:594.655884pt;}
.ydd{bottom:595.609069pt;}
.y20b{bottom:598.874144pt;}
.y1fc{bottom:599.912016pt;}
.y130{bottom:600.142660pt;}
.y36{bottom:600.748535pt;}
.y1c7{bottom:600.962682pt;}
.y133{bottom:602.159058pt;}
.y12f{bottom:602.160116pt;}
.y231{bottom:602.570560pt;}
.y170{bottom:605.829853pt;}
.y96{bottom:606.024771pt;}
.ybb{bottom:606.035988pt;}
.y69{bottom:606.037596pt;}
.y25e{bottom:606.655884pt;}
.y1fb{bottom:611.912016pt;}
.y53{bottom:612.215088pt;}
.ydc{bottom:614.477336pt;}
.y230{bottom:614.570560pt;}
.y35{bottom:616.748535pt;}
.y20a{bottom:617.742410pt;}
.y168{bottom:618.194661pt;}
.y25d{bottom:618.655884pt;}
.y12e{bottom:621.028383pt;}
.y1c6{bottom:622.157349pt;}
.y16b{bottom:622.757731pt;}
.y52{bottom:624.215088pt;}
.y16f{bottom:624.698120pt;}
.y167{bottom:624.698694pt;}
.y95{bottom:624.893038pt;}
.yba{bottom:624.904254pt;}
.y68{bottom:624.905863pt;}
.y1fa{bottom:628.040016pt;}
.y25c{bottom:630.655884pt;}
.y16d{bottom:630.737996pt;}
.y34{bottom:632.748535pt;}
.ydb{bottom:633.345061pt;}
.y22f{bottom:634.570560pt;}
.y51{bottom:636.215088pt;}
.y209{bottom:636.610677pt;}
.y12d{bottom:639.896649pt;}
.y1f9{bottom:640.040016pt;}
.y25b{bottom:642.655884pt;}
.y94{bottom:643.761305pt;}
.y1c2{bottom:643.768677pt;}
.yb9{bottom:643.772521pt;}
.y67{bottom:643.774129pt;}
.y6{bottom:645.598667pt;}
.y22e{bottom:646.570560pt;}
.y50{bottom:648.215088pt;}
.y33{bottom:648.748535pt;}
.y187{bottom:650.365316pt;}
.yda{bottom:652.677327pt;}
.y186{bottom:653.998250pt;}
.y189{bottom:654.724813pt;}
.y208{bottom:655.477336pt;}
.y1f8{bottom:656.168016pt;}
.y147{bottom:659.425333pt;}
.y4f{bottom:660.215088pt;}
.y146{bottom:661.459188pt;}
.y149{bottom:662.052287pt;}
.y93{bottom:662.629571pt;}
.y66{bottom:662.637571pt;}
.yb8{bottom:662.640788pt;}
.y32{bottom:664.748535pt;}
.y22d{bottom:666.570560pt;}
.y1f7{bottom:668.168016pt;}
.y3{bottom:668.977329pt;}
.y4e{bottom:672.215088pt;}
.y22c{bottom:678.570560pt;}
.y31{bottom:680.748535pt;}
.yb7{bottom:681.489838pt;}
.y92{bottom:681.497838pt;}
.y65{bottom:681.505838pt;}
.y1b6{bottom:684.746645pt;}
.y4d{bottom:688.215088pt;}
.y12c{bottom:690.490783pt;}
.y166{bottom:691.364827pt;}
.y1f6{bottom:692.072016pt;}
.yd9{bottom:695.505838pt;}
.y1b5{bottom:696.077311pt;}
.y4c{bottom:696.215088pt;}
.y22b{bottom:698.570560pt;}
.yb6{bottom:700.358105pt;}
.y91{bottom:700.366105pt;}
.y207{bottom:700.372537pt;}
.y64{bottom:700.374105pt;}
.y30{bottom:700.748535pt;}
.y299{bottom:704.877848pt;}
.y25a{bottom:706.856038pt;}
.y4b{bottom:708.215088pt;}
.y12b{bottom:709.359049pt;}
.y165{bottom:710.231445pt;}
.y22a{bottom:710.570560pt;}
.y1f5{bottom:713.266683pt;}
.yd8{bottom:714.374105pt;}
.y1c1{bottom:715.420016pt;}
.y298{bottom:716.877848pt;}
.yb5{bottom:719.226371pt;}
.y63{bottom:719.231237pt;}
.y90{bottom:719.234371pt;}
.y206{bottom:719.240804pt;}
.y12a{bottom:728.217749pt;}
.y1c0{bottom:731.622683pt;}
.y1f4{bottom:731.750683pt;}
.yd7{bottom:733.240274pt;}
.yb4{bottom:738.094638pt;}
.y62{bottom:738.099503pt;}
.y8f{bottom:738.102638pt;}
.y205{bottom:738.105854pt;}
.y259{bottom:738.603361pt;}
.y229{bottom:741.240560pt;}
.y129{bottom:747.086015pt;}
.y1bf{bottom:747.750683pt;}
.y1f3{bottom:747.878683pt;}
.y297{bottom:748.877848pt;}
.yfd{bottom:752.774658pt;}
.yfc{bottom:753.807617pt;}
.y19e{bottom:754.079978pt;}
.y258{bottom:754.806027pt;}
.yb3{bottom:756.962905pt;}
.y61{bottom:756.967770pt;}
.y8e{bottom:756.970905pt;}
.y204{bottom:756.974121pt;}
.y25{bottom:759.715088pt;}
.y296{bottom:760.877848pt;}
.y1be{bottom:763.889350pt;}
.y1f2{bottom:764.006683pt;}
.y19d{bottom:765.410645pt;}
.y128{bottom:765.954282pt;}
.y257{bottom:770.934027pt;}
.y295{bottom:772.877848pt;}
.y228{bottom:774.573893pt;}
.yb2{bottom:775.831171pt;}
.y203{bottom:775.834388pt;}
.y60{bottom:775.836037pt;}
.y8d{bottom:775.839171pt;}
.y1bd{bottom:780.017350pt;}
.y1f1{bottom:780.134683pt;}
.y2{bottom:781.661334pt;}
.yfa{bottom:783.507975pt;}
.yf9{bottom:784.540771pt;}
.y127{bottom:784.822549pt;}
.y294{bottom:784.877848pt;}
.y1a7{bottom:785.399984pt;}
.y256{bottom:787.062027pt;}
.yb1{bottom:794.699438pt;}
.y202{bottom:794.702654pt;}
.y5f{bottom:794.704303pt;}
.y8c{bottom:794.707438pt;}
.y1bc{bottom:796.145350pt;}
.y1f0{bottom:796.262683pt;}
.y293{bottom:796.877848pt;}
.y1a6{bottom:797.402650pt;}
.y24{bottom:800.796805pt;}
.y255{bottom:803.190027pt;}
.y126{bottom:803.690815pt;}
.y292{bottom:808.877848pt;}
.y1bb{bottom:812.273350pt;}
.y1ef{bottom:812.390683pt;}
.y227{bottom:813.564570pt;}
.y8b{bottom:813.567705pt;}
.y201{bottom:813.570921pt;}
.y5e{bottom:813.572570pt;}
.yd6{bottom:813.574137pt;}
.y1a5{bottom:813.605317pt;}
.y254{bottom:819.318027pt;}
.y291{bottom:820.877848pt;}
.y125{bottom:822.559082pt;}
.y1a4{bottom:825.605317pt;}
.y1ba{bottom:828.401350pt;}
.y1ee{bottom:828.518683pt;}
.y226{bottom:832.432837pt;}
.y8a{bottom:832.435971pt;}
.y200{bottom:832.439188pt;}
.y5d{bottom:832.440837pt;}
.y290{bottom:832.877848pt;}
.y253{bottom:835.446027pt;}
.y23{bottom:835.452805pt;}
.y124{bottom:841.425700pt;}
.y1a3{bottom:841.733317pt;}
.y1b9{bottom:844.540016pt;}
.y1ed{bottom:844.646683pt;}
.y28f{bottom:844.877848pt;}
.yd5{bottom:851.301103pt;}
.y89{bottom:851.304238pt;}
.y5c{bottom:851.307454pt;}
.y252{bottom:851.574027pt;}
.y1a2{bottom:853.738699pt;}
.y28e{bottom:856.877848pt;}
.y1{bottom:859.312000pt;}
.y123{bottom:860.292399pt;}
.y1b8{bottom:860.668016pt;}
.y1ec{bottom:860.774683pt;}
.y251{bottom:867.702027pt;}
.y28d{bottom:868.877848pt;}
.y1a1{bottom:869.866699pt;}
.y22{bottom:870.108805pt;}
.y5b{bottom:870.169370pt;}
.y88{bottom:870.172505pt;}
.y1ff{bottom:870.174154pt;}
.y28c{bottom:880.877848pt;}
.y1a0{bottom:881.862683pt;}
.y250{bottom:883.830027pt;}
.y1b7{bottom:884.572016pt;}
.y5a{bottom:889.037637pt;}
.y87{bottom:889.040771pt;}
.y28b{bottom:892.877848pt;}
.y24f{bottom:899.958027pt;}
.y28a{bottom:904.877848pt;}
.y19f{bottom:905.766683pt;}
.y59{bottom:907.905903pt;}
.yb0{bottom:907.907471pt;}
.y289{bottom:916.877848pt;}
.y48{bottom:920.265218pt;}
.y43{bottom:920.666829pt;}
.y24e{bottom:923.478027pt;}
.y58{bottom:926.774170pt;}
.y19c{bottom:927.377848pt;}
.y288{bottom:928.877848pt;}
.y4a{bottom:988.708515pt;}
.y56{bottom:1001.572103pt;}
.y85{bottom:1001.572266pt;}
.y49{bottom:1001.711182pt;}
.y57{bottom:1002.041436pt;}
.y86{bottom:1002.044515pt;}
.h54{height:0.000000pt;}
.h56{height:2.091371pt;}
.h30{height:10.134666pt;}
.h3b{height:11.866666pt;}
.h49{height:13.333333pt;}
.h4e{height:13.866666pt;}
.h5e{height:17.066667pt;}
.h32{height:17.866666pt;}
.h53{height:18.979189pt;}
.h59{height:22.266667pt;}
.h31{height:23.005077pt;}
.h6a{height:23.023467pt;}
.h40{height:23.165777pt;}
.h17{height:24.724000pt;}
.h18{height:25.318347pt;}
.h5b{height:26.662498pt;}
.h62{height:27.377736pt;}
.h34{height:27.814826pt;}
.h38{height:28.132710pt;}
.h45{height:28.212181pt;}
.h7{height:28.560000pt;}
.h5a{height:29.563187pt;}
.h5f{height:30.481727pt;}
.h64{height:32.890667pt;}
.h13{height:32.965333pt;}
.h4b{height:34.350763pt;}
.h4a{height:34.664469pt;}
.h60{height:34.978174pt;}
.h4f{height:35.082743pt;}
.h70{height:35.240000pt;}
.h16{height:35.320000pt;}
.h35{height:35.344164pt;}
.h6f{height:35.560000pt;}
.h57{height:36.023860pt;}
.h19{height:36.169067pt;}
.h3e{height:36.598987pt;}
.h36{height:37.017261pt;}
.h3c{height:37.121829pt;}
.h58{height:37.278682pt;}
.h46{height:37.330966pt;}
.h15{height:37.589333pt;}
.h68{height:37.674667pt;}
.h66{height:37.690732pt;}
.h65{height:37.930667pt;}
.h14{height:38.570667pt;}
.h37{height:38.899494pt;}
.h52{height:39.199999pt;}
.h44{height:40.129763pt;}
.h3f{height:40.363454pt;}
.h6{height:40.800000pt;}
.h3d{height:41.466667pt;}
.h55{height:42.399999pt;}
.h3{height:42.840000pt;}
.h63{height:43.056000pt;}
.h2e{height:43.276799pt;}
.h27{height:43.620266pt;}
.h61{height:43.848892pt;}
.h51{height:45.069038pt;}
.h50{height:45.081461pt;}
.h43{height:46.799998pt;}
.h10{height:47.093333pt;}
.h33{height:47.302293pt;}
.h41{height:47.304415pt;}
.h11{height:47.413333pt;}
.h47{height:47.699648pt;}
.h2{height:48.960000pt;}
.hc{height:49.275200pt;}
.hd{height:49.653333pt;}
.h2d{height:49.654803pt;}
.h1d{height:49.659603pt;}
.hf{height:49.659685pt;}
.h2a{height:49.659724pt;}
.h39{height:49.659725pt;}
.h4d{height:49.659726pt;}
.h1e{height:49.659766pt;}
.h6d{height:49.659929pt;}
.h5c{height:49.662992pt;}
.h6c{height:49.665873pt;}
.h6b{height:49.666035pt;}
.h4c{height:49.666117pt;}
.h2b{height:49.666158pt;}
.h1c{height:49.666198pt;}
.h28{height:49.672403pt;}
.h1a{height:49.672468pt;}
.h69{height:49.672550pt;}
.h2c{height:49.678738pt;}
.h2f{height:49.678901pt;}
.h21{height:49.679064pt;}
.h24{height:49.685252pt;}
.h1f{height:49.685333pt;}
.h1b{height:49.691603pt;}
.h23{height:49.697710pt;}
.h29{height:49.698133pt;}
.h25{height:49.704550pt;}
.h5d{height:49.710983pt;}
.h6e{height:49.717333pt;}
.h22{height:49.717496pt;}
.h26{height:49.723929pt;}
.h20{height:49.742860pt;}
.h3a{height:50.666667pt;}
.h48{height:51.459674pt;}
.he{height:55.670426pt;}
.hb{height:59.728337pt;}
.h12{height:62.192000pt;}
.h5{height:69.360000pt;}
.h67{height:85.674667pt;}
.h42{height:99.561847pt;}
.h4{height:105.826671pt;}
.ha{height:112.768000pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:19.226667pt;}
.w4{width:20.373333pt;}
.wc{width:20.894666pt;}
.wb{width:22.426666pt;}
.w10{width:40.361333pt;}
.w6{width:54.279999pt;}
.we{width:122.760000pt;}
.w7{width:180.546672pt;}
.w9{width:214.158671pt;}
.wd{width:241.440002pt;}
.w11{width:266.973328pt;}
.w8{width:293.386658pt;}
.wa{width:307.666667pt;}
.w12{width:327.746663pt;}
.wf{width:375.893351pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x11{left:-1.432271pt;}
.x0{left:0.000000pt;}
.x3c{left:1.438660pt;}
.x12{left:7.323410pt;}
.x3f{left:9.531283pt;}
.x3e{left:12.250064pt;}
.x5a{left:31.272135pt;}
.x59{left:32.904541pt;}
.x5d{left:33.887472pt;}
.x5e{left:37.139608pt;}
.x16{left:42.984782pt;}
.x18{left:49.524780pt;}
.x1d{left:51.463339pt;}
.x51{left:53.147991pt;}
.x4c{left:60.863465pt;}
.x1e{left:62.239462pt;}
.x4b{left:66.083741pt;}
.x41{left:69.345338pt;}
.x20{left:72.115459pt;}
.x5{left:75.496002pt;}
.x1f{left:81.123742pt;}
.x9{left:83.317602pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x62{left:98.981466pt;}
.x63{left:100.145061pt;}
.x24{left:103.747742pt;}
.x64{left:110.861207pt;}
.x4e{left:120.431743pt;}
.x42{left:124.353191pt;}
.x2c{left:130.299602pt;}
.x43{left:134.617208pt;}
.x2e{left:143.439739pt;}
.x52{left:147.743733pt;}
.xb{left:156.850403pt;}
.x70{left:160.839732pt;}
.x69{left:164.852262pt;}
.x75{left:166.183736pt;}
.xc{left:167.512803pt;}
.x31{left:169.455852pt;}
.xd{left:171.968536pt;}
.x45{left:175.689047pt;}
.x76{left:176.850403pt;}
.x4{left:180.874667pt;}
.x1b{left:183.517333pt;}
.x66{left:189.905478pt;}
.x67{left:191.105469pt;}
.x4f{left:193.032939pt;}
.xe{left:194.310669pt;}
.x46{left:197.443677pt;}
.x58{left:199.958923pt;}
.x5c{left:201.085063pt;}
.x29{left:202.684937pt;}
.x1c{left:206.336792pt;}
.x28{left:211.831991pt;}
.xf{left:214.684408pt;}
.x48{left:225.765219pt;}
.x5f{left:227.161072pt;}
.x4a{left:229.489075pt;}
.x49{left:231.767418pt;}
.x50{left:232.968933pt;}
.x5b{left:234.882792pt;}
.x3b{left:236.198669pt;}
.x6{left:238.110270pt;}
.x38{left:239.307740pt;}
.x10{left:243.389343pt;}
.x60{left:245.149068pt;}
.x7{left:246.777323pt;}
.x55{left:248.555868pt;}
.x56{left:249.755738pt;}
.x35{left:253.671998pt;}
.x2b{left:257.669067pt;}
.x21{left:258.596802pt;}
.x13{left:262.615865pt;}
.x4d{left:265.441203pt;}
.x22{left:269.372803pt;}
.x6f{left:270.846273pt;}
.x2a{left:276.700806pt;}
.x6a{left:280.713596pt;}
.x23{left:282.117065pt;}
.x61{left:284.616800pt;}
.x25{left:286.988932pt;}
.x26{left:294.121968pt;}
.x65{left:303.126526pt;}
.x3a{left:305.355347pt;}
.x2d{left:325.804932pt;}
.x2f{left:328.516927pt;}
.x71{left:336.658420pt;}
.x53{left:340.153341pt;}
.x44{left:346.102254pt;}
.x32{left:349.169067pt;}
.x6b{left:351.870929pt;}
.x27{left:355.868937pt;}
.x30{left:358.179452pt;}
.x54{left:374.316935pt;}
.x33{left:377.825317pt;}
.x34{left:393.040933pt;}
.x68{left:394.098796pt;}
.x47{left:396.190389pt;}
.x3{left:404.408000pt;}
.x72{left:422.503754pt;}
.x6c{left:432.404262pt;}
.x36{left:435.821086pt;}
.x37{left:442.954081pt;}
.x39{left:444.648076pt;}
.x57{left:452.749186pt;}
.x73{left:508.349087pt;}
.x6d{left:512.937596pt;}
.x3d{left:520.194661pt;}
.x14{left:540.161336pt;}
.x40{left:541.089071pt;}
.x15{left:543.881999pt;}
.x17{left:581.778402pt;}
.x6e{left:593.470929pt;}
.x19{left:594.442139pt;}
.x8{left:617.715454pt;}
.x1a{left:621.463989pt;}
.x74{left:658.727458pt;}
.xa{left:664.199341pt;}
}




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