
    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_0c485143233f443bc6aaafd0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.073500;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_1e54fbcb748a78aab516224e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.081500;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_e6e7d4d89402bd9df163be99.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.073500;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_4b73bb3a85b7c86f9fd507f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_acd8f78067b1c3805c7e1bd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923500;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_d5e3e9ddcd536a345e3309f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073500;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_bc090b2d500507600a0eef9a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.073500;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_98f18031d22bfedfe970c6e3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_78b6a0672d179a18010f9431.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.073500;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_ba607199b8538a9f644c0ee8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958000;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_e2a86b0256c8137003fae58c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_29c2592e09312d8508fcb8eb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.142000;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_316965f417922da0f3574c7f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003000;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_76c081d4b499fbf40e7b76ff.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.948500;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_b7f48f450bec313c1d73e735.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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_316965f417922da0f3574c7f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.003000;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_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_5df8805786d740338a0b2acc.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;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_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_d542d85ff08d62becbe6d1fc.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.142000;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_316965f417922da0f3574c7f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.003000;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_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_d542d85ff08d62becbe6d1fc.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.142000;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_316965f417922da0f3574c7f.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.003000;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_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_50840d64959f1ad6ccae66d1.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.142000;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_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_316965f417922da0f3574c7f.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.003000;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_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_316965f417922da0f3574c7f.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.003000;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_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_316965f417922da0f3574c7f.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.003000;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_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_d542d85ff08d62becbe6d1fc.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.142000;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_316965f417922da0f3574c7f.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.003000;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_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_6383e5cb2366714685c9648d.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.073500;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_53159a98199c2f8b25b035cf.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.958000;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_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_752f3fad7ce8bc8671a8ce89.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.073500;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_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_355a9bda8311201992e296ed.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.142000;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_316965f417922da0f3574c7f.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.003000;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_3649908f2a3e05be0c89cf65.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.073500;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_e2a86b0256c8137003fae58c.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_8860612b5c9d1db6c7cebb2d.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.910500;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_a66acac02e82d87b6683f3f2.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.690918;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_fde45a6cc228a2b588563cae.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.073500;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_f360fc3f9bd33f5d4e6e5599.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.073500;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;}
.m4{transform:matrix(0.000000,-0.249900,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249900,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249900,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249911,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249911,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249911,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250025,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250025,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250025,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.250039,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250039,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250039,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-ms-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-webkit-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);}
.m3{transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-29.442000px;}
.vb{vertical-align:-24.187200px;}
.v8{vertical-align:-20.250000px;}
.vc{vertical-align:-16.100400px;}
.v5{vertical-align:-14.812800px;}
.v3{vertical-align:-13.500000px;}
.ve{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:1.043400px;}
.vf{vertical-align:7.426200px;}
.v7{vertical-align:12.375000px;}
.va{vertical-align:19.200000px;}
.v4{vertical-align:21.600000px;}
.v1{vertical-align:25.500000px;}
.v6{vertical-align:35.046000px;}
.v2{vertical-align:51.000000px;}
.ls6e{letter-spacing:-2.154768px;}
.ls2d{letter-spacing:-0.972000px;}
.ls52{letter-spacing:-0.960000px;}
.ls2f{letter-spacing:-0.810000px;}
.ls30{letter-spacing:-0.702000px;}
.ls4a{letter-spacing:-0.546000px;}
.ls25{letter-spacing:-0.540000px;}
.ls3a{letter-spacing:-0.486000px;}
.ls2e{letter-spacing:-0.432000px;}
.ls3b{letter-spacing:-0.375746px;}
.ls42{letter-spacing:-0.281810px;}
.ls1e{letter-spacing:-0.270000px;}
.ls53{letter-spacing:-0.240000px;}
.ls28{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.162000px;}
.ls27{letter-spacing:-0.108000px;}
.ls38{letter-spacing:-0.062624px;}
.ls8{letter-spacing:0.000000px;}
.ls6a{letter-spacing:0.013488px;}
.ls61{letter-spacing:0.014088px;}
.ls4d{letter-spacing:0.023400px;}
.ls5d{letter-spacing:0.023640px;}
.ls67{letter-spacing:0.024000px;}
.ls4b{letter-spacing:0.025312px;}
.ls37{letter-spacing:0.026400px;}
.ls10{letter-spacing:0.027000px;}
.ls5c{letter-spacing:0.041400px;}
.ls3{letter-spacing:0.054000px;}
.ls5e{letter-spacing:0.068400px;}
.ls6d{letter-spacing:0.081000px;}
.ls3c{letter-spacing:0.093937px;}
.lsc{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.135000px;}
.ls11{letter-spacing:0.162000px;}
.ls50{letter-spacing:0.189000px;}
.lse{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.243000px;}
.ls5{letter-spacing:0.270000px;}
.ls1f{letter-spacing:0.297000px;}
.ls41{letter-spacing:0.319800px;}
.lsb{letter-spacing:0.324000px;}
.ls1d{letter-spacing:0.351000px;}
.ls4{letter-spacing:0.378000px;}
.ls72{letter-spacing:0.405000px;}
.ls2b{letter-spacing:0.410874px;}
.ls9{letter-spacing:0.432000px;}
.ls4f{letter-spacing:0.459000px;}
.ls0{letter-spacing:0.486000px;}
.ls4e{letter-spacing:0.513000px;}
.ls14{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.567000px;}
.ls1c{letter-spacing:0.594000px;}
.ls73{letter-spacing:0.621000px;}
.ls2{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.675000px;}
.ls2a{letter-spacing:0.677400px;}
.ls6{letter-spacing:0.702000px;}
.ls2c{letter-spacing:0.703800px;}
.ls64{letter-spacing:0.729000px;}
.lsf{letter-spacing:0.756000px;}
.ls13{letter-spacing:0.810000px;}
.ls40{letter-spacing:0.844800px;}
.ls24{letter-spacing:0.864000px;}
.ls20{letter-spacing:0.918000px;}
.ls7{letter-spacing:0.972000px;}
.ls71{letter-spacing:0.999000px;}
.ls54{letter-spacing:1.026000px;}
.ls6f{letter-spacing:1.080000px;}
.ls39{letter-spacing:1.134000px;}
.ls29{letter-spacing:1.188000px;}
.ls21{letter-spacing:1.242000px;}
.ls23{letter-spacing:1.296000px;}
.ls3e{letter-spacing:1.309800px;}
.ls62{letter-spacing:1.350000px;}
.ls22{letter-spacing:1.458000px;}
.ls70{letter-spacing:1.512000px;}
.ls63{letter-spacing:1.566000px;}
.ls59{letter-spacing:11.610000px;}
.ls48{letter-spacing:19.664062px;}
.ls47{letter-spacing:21.167047px;}
.ls45{letter-spacing:21.492000px;}
.ls35{letter-spacing:49.319892px;}
.ls36{letter-spacing:57.207389px;}
.ls4c{letter-spacing:64.631724px;}
.ls32{letter-spacing:70.848000px;}
.ls33{letter-spacing:71.215271px;}
.ls51{letter-spacing:72.506400px;}
.ls34{letter-spacing:78.593622px;}
.ls44{letter-spacing:86.886000px;}
.ls43{letter-spacing:101.034000px;}
.ls5a{letter-spacing:104.598000px;}
.ls3d{letter-spacing:104.976000px;}
.ls66{letter-spacing:107.330175px;}
.ls49{letter-spacing:111.348000px;}
.ls58{letter-spacing:116.046000px;}
.ls65{letter-spacing:122.193523px;}
.ls6c{letter-spacing:138.100530px;}
.ls60{letter-spacing:149.266680px;}
.ls6b{letter-spacing:153.186900px;}
.ls68{letter-spacing:154.538280px;}
.ls69{letter-spacing:157.341480px;}
.ls46{letter-spacing:168.480000px;}
.ls19{letter-spacing:169.601400px;}
.ls1a{letter-spacing:171.303000px;}
.ls15{letter-spacing:171.727800px;}
.ls17{letter-spacing:171.728400px;}
.ls5f{letter-spacing:189.803880px;}
.ls56{letter-spacing:190.709134px;}
.ls55{letter-spacing:191.687497px;}
.ls5b{letter-spacing:198.558000px;}
.ls16{letter-spacing:201.917400px;}
.ls1b{letter-spacing:202.342200px;}
.ls18{letter-spacing:202.342800px;}
.ls57{letter-spacing:205.940339px;}
.ls3f{letter-spacing:212.276724px;}
.ls31{letter-spacing:254.317688px;}
.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;}
}
.ws86{word-spacing:-254.317688px;}
.wsde{word-spacing:-205.940339px;}
.wsdf{word-spacing:-198.558000px;}
.wsa4{word-spacing:-168.480000px;}
.wsd7{word-spacing:-116.100000px;}
.wsa9{word-spacing:-111.348000px;}
.ws97{word-spacing:-104.976000px;}
.wsd9{word-spacing:-104.652000px;}
.ws9f{word-spacing:-101.034000px;}
.wsa2{word-spacing:-86.886000px;}
.wsc5{word-spacing:-81.770400px;}
.ws88{word-spacing:-78.593622px;}
.ws87{word-spacing:-71.215271px;}
.ws82{word-spacing:-70.902000px;}
.ws8c{word-spacing:-57.207389px;}
.ws8b{word-spacing:-49.319892px;}
.wsff{word-spacing:-30.618000px;}
.wse2{word-spacing:-26.352000px;}
.wsa3{word-spacing:-21.492000px;}
.wsa7{word-spacing:-21.167047px;}
.wsa5{word-spacing:-19.664062px;}
.wsd8{word-spacing:-11.664000px;}
.ws118{word-spacing:-11.610000px;}
.ws110{word-spacing:-11.340000px;}
.wsee{word-spacing:-11.232000px;}
.wsac{word-spacing:-11.016000px;}
.ws95{word-spacing:-10.962000px;}
.wsb3{word-spacing:-10.854000px;}
.wsb2{word-spacing:-10.800000px;}
.ws7f{word-spacing:-10.692000px;}
.ws0{word-spacing:-10.422000px;}
.wsb4{word-spacing:-9.612000px;}
.ws49{word-spacing:-9.264000px;}
.wsda{word-spacing:-8.106926px;}
.wsad{word-spacing:-8.106000px;}
.ws100{word-spacing:-8.104726px;}
.wsc7{word-spacing:-7.010400px;}
.ws8d{word-spacing:-6.076026px;}
.wsb9{word-spacing:-5.400912px;}
.ws119{word-spacing:-3.780000px;}
.ws10f{word-spacing:-3.246144px;}
.ws7e{word-spacing:-2.916000px;}
.ws85{word-spacing:-2.700000px;}
.ws3a{word-spacing:-2.538000px;}
.ws109{word-spacing:-2.430000px;}
.ws66{word-spacing:-2.106000px;}
.wsa{word-spacing:-2.052000px;}
.ws33{word-spacing:-1.998000px;}
.wsb8{word-spacing:-1.944000px;}
.ws64{word-spacing:-1.890000px;}
.ws23{word-spacing:-1.836000px;}
.ws38{word-spacing:-1.728000px;}
.wsf7{word-spacing:-1.674000px;}
.wsb7{word-spacing:-1.620000px;}
.ws13{word-spacing:-1.566000px;}
.ws4{word-spacing:-1.512000px;}
.ws6f{word-spacing:-1.458000px;}
.ws61{word-spacing:-1.404000px;}
.wsc{word-spacing:-1.350000px;}
.ws67{word-spacing:-1.296000px;}
.ws6e{word-spacing:-1.242000px;}
.ws83{word-spacing:-1.188000px;}
.ws57{word-spacing:-1.134000px;}
.ws79{word-spacing:-1.080000px;}
.ws27{word-spacing:-1.026000px;}
.ws12{word-spacing:-0.972000px;}
.ws2f{word-spacing:-0.918000px;}
.wsd1{word-spacing:-0.864000px;}
.ws2e{word-spacing:-0.810000px;}
.ws29{word-spacing:-0.756000px;}
.wse{word-spacing:-0.702000px;}
.ws3e{word-spacing:-0.648000px;}
.ws5c{word-spacing:-0.594000px;}
.ws5{word-spacing:-0.540000px;}
.ws28{word-spacing:-0.486000px;}
.ws2a{word-spacing:-0.432000px;}
.ws5f{word-spacing:-0.378000px;}
.ws19{word-spacing:-0.324000px;}
.ws2b{word-spacing:-0.270000px;}
.wsb{word-spacing:-0.216000px;}
.ws31{word-spacing:-0.162000px;}
.ws93{word-spacing:-0.125249px;}
.ws24{word-spacing:-0.108000px;}
.wsa8{word-spacing:-0.093937px;}
.ws60{word-spacing:-0.054000px;}
.wsbb{word-spacing:-0.050624px;}
.wsba{word-spacing:-0.048000px;}
.ws9c{word-spacing:-0.031312px;}
.ws1c{word-spacing:-0.027000px;}
.ws1{word-spacing:0.000000px;}
.ws8e{word-spacing:0.031312px;}
.wsbd{word-spacing:0.054000px;}
.ws113{word-spacing:0.108000px;}
.ws17{word-spacing:0.162000px;}
.ws98{word-spacing:0.216000px;}
.wsca{word-spacing:0.240000px;}
.ws62{word-spacing:0.270000px;}
.ws9e{word-spacing:0.281810px;}
.ws59{word-spacing:0.324000px;}
.ws96{word-spacing:0.375746px;}
.ws11d{word-spacing:0.378000px;}
.ws7b{word-spacing:0.432000px;}
.ws7{word-spacing:0.486000px;}
.ws3f{word-spacing:0.540000px;}
.wsb1{word-spacing:0.546000px;}
.ws65{word-spacing:0.594000px;}
.ws40{word-spacing:0.648000px;}
.ws18{word-spacing:0.702000px;}
.ws7c{word-spacing:0.756000px;}
.ws16{word-spacing:0.810000px;}
.ws92{word-spacing:0.864000px;}
.ws21{word-spacing:0.918000px;}
.wsc9{word-spacing:0.960000px;}
.ws30{word-spacing:0.972000px;}
.ws5d{word-spacing:1.080000px;}
.ws68{word-spacing:1.134000px;}
.ws41{word-spacing:1.188000px;}
.ws1a{word-spacing:1.242000px;}
.ws39{word-spacing:1.296000px;}
.ws6d{word-spacing:1.350000px;}
.ws6a{word-spacing:1.404000px;}
.ws6c{word-spacing:1.458000px;}
.ws74{word-spacing:1.512000px;}
.ws63{word-spacing:1.566000px;}
.wsc2{word-spacing:1.620000px;}
.ws77{word-spacing:1.674000px;}
.ws22{word-spacing:1.728000px;}
.ws3b{word-spacing:1.836000px;}
.ws15{word-spacing:1.890000px;}
.ws14{word-spacing:1.944000px;}
.ws1b{word-spacing:1.998000px;}
.ws8f{word-spacing:2.052000px;}
.ws2d{word-spacing:2.106000px;}
.wsbf{word-spacing:2.160000px;}
.wsc3{word-spacing:2.214000px;}
.ws72{word-spacing:2.268000px;}
.ws5e{word-spacing:2.322000px;}
.ws1f{word-spacing:2.376000px;}
.ws6{word-spacing:2.430000px;}
.ws1d{word-spacing:2.484000px;}
.ws70{word-spacing:2.538000px;}
.ws120{word-spacing:2.592000px;}
.ws3c{word-spacing:2.646000px;}
.wsbe{word-spacing:2.700000px;}
.ws3d{word-spacing:2.754000px;}
.ws34{word-spacing:2.808000px;}
.wsb5{word-spacing:2.862000px;}
.ws56{word-spacing:2.916000px;}
.ws73{word-spacing:2.970000px;}
.ws7d{word-spacing:3.024000px;}
.ws36{word-spacing:3.078000px;}
.wsd{word-spacing:3.132000px;}
.ws71{word-spacing:3.186000px;}
.ws20{word-spacing:3.240000px;}
.ws2c{word-spacing:3.294000px;}
.ws55{word-spacing:3.348000px;}
.ws8{word-spacing:3.402000px;}
.ws2{word-spacing:3.456000px;}
.wsab{word-spacing:3.510000px;}
.ws10{word-spacing:3.564000px;}
.ws75{word-spacing:3.618000px;}
.ws35{word-spacing:3.672000px;}
.ws37{word-spacing:3.726000px;}
.wsbc{word-spacing:3.780000px;}
.wsb6{word-spacing:3.834000px;}
.ws11{word-spacing:3.888000px;}
.wsc1{word-spacing:3.942000px;}
.ws25{word-spacing:3.996000px;}
.ws26{word-spacing:4.050000px;}
.ws10e{word-spacing:4.104000px;}
.ws5a{word-spacing:4.158000px;}
.ws3{word-spacing:4.212000px;}
.wsaf{word-spacing:4.266000px;}
.ws42{word-spacing:4.320000px;}
.ws76{word-spacing:4.374000px;}
.ws69{word-spacing:4.428000px;}
.wsf6{word-spacing:4.482000px;}
.ws90{word-spacing:4.536000px;}
.ws11b{word-spacing:4.590000px;}
.ws84{word-spacing:4.644000px;}
.ws1e{word-spacing:4.698000px;}
.wsb0{word-spacing:4.752000px;}
.wsc0{word-spacing:4.860000px;}
.ws7a{word-spacing:4.914000px;}
.ws11c{word-spacing:5.022000px;}
.ws5b{word-spacing:5.076000px;}
.ws91{word-spacing:5.184000px;}
.ws6b{word-spacing:5.346000px;}
.ws9{word-spacing:5.454000px;}
.ws117{word-spacing:5.508000px;}
.ws8a{word-spacing:5.562000px;}
.ws32{word-spacing:5.670000px;}
.ws58{word-spacing:5.778000px;}
.ws112{word-spacing:5.886000px;}
.ws111{word-spacing:5.940000px;}
.ws116{word-spacing:6.048000px;}
.wse9{word-spacing:6.156000px;}
.ws11e{word-spacing:6.696000px;}
.ws78{word-spacing:6.966000px;}
.wsa1{word-spacing:7.236000px;}
.ws115{word-spacing:7.992000px;}
.ws11a{word-spacing:8.154000px;}
.wsf{word-spacing:8.262000px;}
.wsce{word-spacing:8.424000px;}
.ws114{word-spacing:8.802000px;}
.ws80{word-spacing:9.666000px;}
.ws11f{word-spacing:9.936000px;}
.ws9b{word-spacing:23.045779px;}
.wsc6{word-spacing:39.836400px;}
.ws48{word-spacing:46.459200px;}
.ws44{word-spacing:48.160200px;}
.ws45{word-spacing:48.585600px;}
.wsc8{word-spacing:63.242400px;}
.wsef{word-spacing:65.643398px;}
.ws46{word-spacing:78.774600px;}
.ws47{word-spacing:79.200000px;}
.wsf0{word-spacing:80.874609px;}
.wsf4{word-spacing:84.722665px;}
.ws9a{word-spacing:86.292000px;}
.wsf1{word-spacing:88.758957px;}
.ws94{word-spacing:89.262000px;}
.wsfd{word-spacing:89.923800px;}
.ws54{word-spacing:90.104400px;}
.wsf2{word-spacing:90.563467px;}
.wsf3{word-spacing:92.246155px;}
.wsf5{word-spacing:92.522803px;}
.wscf{word-spacing:94.053600px;}
.ws9d{word-spacing:95.094000px;}
.ws101{word-spacing:95.490605px;}
.wsea{word-spacing:98.526000px;}
.wsfb{word-spacing:99.885000px;}
.wscb{word-spacing:102.557400px;}
.wse4{word-spacing:107.310600px;}
.ws102{word-spacing:113.318207px;}
.ws105{word-spacing:115.219236px;}
.ws106{word-spacing:116.484835px;}
.ws107{word-spacing:117.960466px;}
.ws108{word-spacing:118.459145px;}
.ws104{word-spacing:119.763150px;}
.ws103{word-spacing:128.764406px;}
.wsfa{word-spacing:132.965400px;}
.wse3{word-spacing:136.367400px;}
.wscc{word-spacing:137.766000px;}
.wse1{word-spacing:140.709600px;}
.ws10b{word-spacing:142.946400px;}
.wsd0{word-spacing:144.144000px;}
.wscd{word-spacing:151.685400px;}
.wse5{word-spacing:152.472600px;}
.wsf8{word-spacing:154.868064px;}
.ws4c{word-spacing:159.762000px;}
.ws43{word-spacing:160.229400px;}
.wsd5{word-spacing:160.277426px;}
.ws4d{word-spacing:160.337400px;}
.ws4e{word-spacing:160.914000px;}
.ws52{word-spacing:161.463000px;}
.ws51{word-spacing:161.887800px;}
.ws50{word-spacing:161.888400px;}
.ws4a{word-spacing:162.464400px;}
.wse0{word-spacing:162.551664px;}
.wsd4{word-spacing:167.437485px;}
.wsdb{word-spacing:168.753362px;}
.wsd3{word-spacing:178.031060px;}
.wsdc{word-spacing:187.641873px;}
.wsd6{word-spacing:189.486000px;}
.wsdd{word-spacing:189.563150px;}
.wsf9{word-spacing:190.479600px;}
.ws53{word-spacing:192.076800px;}
.ws4b{word-spacing:193.078800px;}
.wsfe{word-spacing:204.399600px;}
.wse6{word-spacing:208.741200px;}
.wsfc{word-spacing:218.320200px;}
.ws10c{word-spacing:220.515000px;}
.ws81{word-spacing:237.870000px;}
.wsae{word-spacing:240.534000px;}
.ws10d{word-spacing:245.871000px;}
.wseb{word-spacing:248.692800px;}
.ws4f{word-spacing:248.968200px;}
.wsed{word-spacing:272.153400px;}
.wse7{word-spacing:296.241000px;}
.wsec{word-spacing:298.595400px;}
.wsc4{word-spacing:307.318200px;}
.wsd2{word-spacing:373.004778px;}
.ws10a{word-spacing:384.681600px;}
.wse8{word-spacing:425.985000px;}
.wsa6{word-spacing:1316.520000px;}
.wsaa{word-spacing:1340.496000px;}
.ws99{word-spacing:1352.538000px;}
.wsa0{word-spacing:1358.532000px;}
.ws89{word-spacing:1442.502000px;}
._4e{margin-left:-284.040000px;}
._4c{margin-left:-203.634000px;}
._4d{margin-left:-93.202200px;}
._31{margin-left:-72.506400px;}
._4b{margin-left:-63.936000px;}
._26{margin-left:-27.836546px;}
._38{margin-left:-20.769600px;}
._6b{margin-left:-19.160400px;}
._58{margin-left:-16.757400px;}
._9{margin-left:-15.705000px;}
._b{margin-left:-13.591800px;}
._f{margin-left:-11.503800px;}
._5{margin-left:-10.422000px;}
._25{margin-left:-9.381000px;}
._12{margin-left:-7.074000px;}
._4{margin-left:-5.686200px;}
._a{margin-left:-4.320000px;}
._3{margin-left:-3.288600px;}
._2{margin-left:-1.279800px;}
._8{width:1.582200px;}
._7{width:2.791800px;}
._6{width:4.136400px;}
._24{width:5.248800px;}
._c{width:6.274800px;}
._11{width:7.462800px;}
._d{width:8.964000px;}
._71{width:10.173600px;}
._72{width:11.755800px;}
._e{width:12.862800px;}
._0{width:14.736000px;}
._10{width:16.578000px;}
._6e{width:18.397800px;}
._6c{width:19.980000px;}
._6f{width:22.788000px;}
._70{width:23.868000px;}
._6d{width:26.767800px;}
._36{width:34.490400px;}
._37{width:53.497800px;}
._32{width:54.915000px;}
._33{width:58.587000px;}
._52{width:76.850400px;}
._22{width:87.206400px;}
._23{width:99.867600px;}
._59{width:104.351068px;}
._5e{width:109.136400px;}
._21{width:111.256200px;}
._5d{width:113.108400px;}
._16{width:114.255000px;}
._1c{width:118.654200px;}
._1b{width:125.246400px;}
._1e{width:129.159000px;}
._39{width:133.266600px;}
._5a{width:134.716200px;}
._20{width:136.966800px;}
._53{width:138.117600px;}
._44{width:139.644000px;}
._5f{width:141.550800px;}
._54{width:144.402000px;}
._14{width:147.158400px;}
._5b{width:152.197800px;}
._5c{width:155.458200px;}
._55{width:159.409200px;}
._35{width:162.190200px;}
._1{width:165.717600px;}
._1d{width:169.149000px;}
._17{width:170.727000px;}
._18{width:171.727800px;}
._19{width:173.031600px;}
._3d{width:180.304200px;}
._47{width:182.430600px;}
._1f{width:183.471000px;}
._3c{width:186.328800px;}
._34{width:194.110800px;}
._4a{width:195.185400px;}
._48{width:196.350000px;}
._3e{width:200.248200px;}
._15{width:201.917400px;}
._1a{width:203.494200px;}
._3f{width:208.144800px;}
._49{width:210.270000px;}
._46{width:214.320000px;}
._40{width:215.483400px;}
._50{width:218.661281px;}
._13{width:223.431000px;}
._51{width:224.728144px;}
._62{width:226.154400px;}
._3b{width:229.202400px;}
._45{width:237.705600px;}
._69{width:241.038600px;}
._41{width:243.121800px;}
._67{width:245.023800px;}
._3a{width:246.209400px;}
._43{width:257.041800px;}
._2c{width:259.992600px;}
._2e{width:268.752600px;}
._42{width:274.050000px;}
._4f{width:305.603224px;}
._6a{width:326.479800px;}
._60{width:334.036774px;}
._64{width:338.899200px;}
._63{width:348.727200px;}
._68{width:392.335800px;}
._30{width:401.465400px;}
._56{width:403.333800px;}
._61{width:413.605800px;}
._66{width:420.175800px;}
._2b{width:442.962600px;}
._2d{width:447.690600px;}
._65{width:472.980600px;}
._57{width:544.713000px;}
._2f{width:563.037600px;}
._2a{width:592.966800px;}
._27{width:618.468000px;}
._29{width:621.921000px;}
._28{width:833.976600px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,170);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:25.312200px;}
.fs9{font-size:27.984000px;}
.fs5{font-size:31.312200px;}
.fs7{font-size:31.482000px;}
.fsd{font-size:41.993400px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:42.000600px;}
.fsc{font-size:42.004800px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:55.291359px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs8{font-size:81.000000px;}
.y0{bottom:0.000000px;}
.y89{bottom:0.796200px;}
.y8d{bottom:0.797100px;}
.ya2{bottom:1.307400px;}
.y99{bottom:1.307850px;}
.yb0{bottom:1.308300px;}
.ybc{bottom:1.308450px;}
.y164{bottom:1.810200px;}
.y1af{bottom:2.574900px;}
.y197{bottom:2.841750px;}
.y175{bottom:3.490800px;}
.y185{bottom:4.498650px;}
.ya8{bottom:4.498800px;}
.y88{bottom:4.499400px;}
.y8c{bottom:4.500150px;}
.y8f{bottom:4.500300px;}
.y92{bottom:6.000150px;}
.yaa{bottom:6.000300px;}
.y166{bottom:10.271550px;}
.y167{bottom:10.336350px;}
.y186{bottom:10.549350px;}
.y90{bottom:10.550850px;}
.ya1{bottom:11.999400px;}
.y98{bottom:11.999850px;}
.ybb{bottom:12.000450px;}
.yad{bottom:12.001350px;}
.y178{bottom:15.291000px;}
.y199{bottom:15.897750px;}
.y1b1{bottom:16.798950px;}
.y165{bottom:17.106900px;}
.y16f{bottom:20.341650px;}
.y16e{bottom:20.350929px;}
.yb6{bottom:26.767050px;}
.y182{bottom:27.097371px;}
.y1a4{bottom:27.569400px;}
.y1b7{bottom:29.822400px;}
.yaf{bottom:29.860800px;}
.yb3{bottom:35.907600px;}
.y16d{bottom:39.849707px;}
.y1{bottom:41.948700px;}
.y1a3{bottom:47.340900px;}
.y181{bottom:47.352161px;}
.y198{bottom:58.689600px;}
.y16c{bottom:59.348486px;}
.y1b6{bottom:62.067900px;}
.y1a2{bottom:67.112400px;}
.y17f{bottom:67.579264px;}
.y180{bottom:67.606950px;}
.y8b{bottom:71.610000px;}
.y112{bottom:74.272650px;}
.y4e{bottom:76.110150px;}
.y19{bottom:76.110300px;}
.y6a{bottom:76.505100px;}
.y176{bottom:77.948850px;}
.y16b{bottom:78.847264px;}
.y124{bottom:82.175250px;}
.y1b0{bottom:83.328300px;}
.y1a0{bottom:86.868750px;}
.y1a1{bottom:86.883900px;}
.y111{bottom:87.022650px;}
.y17e{bottom:87.834053px;}
.y183{bottom:88.860150px;}
.y105{bottom:88.860300px;}
.y4d{bottom:94.110150px;}
.y18{bottom:94.110300px;}
.y1b5{bottom:94.313400px;}
.y16a{bottom:98.346043px;}
.y69{bottom:98.512050px;}
.y110{bottom:101.422650px;}
.y123{bottom:101.912250px;}
.y106{bottom:103.260150px;}
.y104{bottom:103.260300px;}
.y19f{bottom:106.640250px;}
.y9d{bottom:107.610000px;}
.y17d{bottom:108.088843px;}
.y4c{bottom:112.110150px;}
.y17{bottom:112.110300px;}
.y169{bottom:117.844821px;}
.y68{bottom:119.864850px;}
.y122{bottom:121.649400px;}
.y19e{bottom:126.411750px;}
.y1b4{bottom:126.558900px;}
.y195{bottom:126.789000px;}
.y174{bottom:127.077000px;}
.y17c{bottom:128.343632px;}
.y87{bottom:128.403000px;}
.y4b{bottom:130.110150px;}
.y16{bottom:130.110300px;}
.y67{bottom:132.614850px;}
.y8a{bottom:132.902400px;}
.y103{bottom:133.000650px;}
.y121{bottom:134.399400px;}
.y155{bottom:134.471250px;}
.y168{bottom:137.343600px;}
.y102{bottom:143.500650px;}
.y86{bottom:144.510300px;}
.y19d{bottom:146.183250px;}
.y97{bottom:146.650500px;}
.y163{bottom:147.750600px;}
.y4a{bottom:148.110150px;}
.y15{bottom:148.110300px;}
.y17b{bottom:148.598421px;}
.yd7{bottom:152.152650px;}
.y154{bottom:152.635050px;}
.y66{bottom:153.967650px;}
.y101{bottom:154.000650px;}
.y120{bottom:154.136400px;}
.y9a{bottom:154.947300px;}
.y9c{bottom:158.650350px;}
.y1b3{bottom:158.804400px;}
.yd6{bottom:162.652650px;}
.y9b{bottom:163.714716px;}
.y100{bottom:164.500650px;}
.y19c{bottom:165.954750px;}
.y6c{bottom:166.024500px;}
.y49{bottom:166.110150px;}
.y14{bottom:166.110300px;}
.y65{bottom:166.717650px;}
.y17a{bottom:168.853211px;}
.y153{bottom:170.798850px;}
.y11f{bottom:173.873550px;}
.yff{bottom:175.000650px;}
.y48{bottom:184.110150px;}
.y13{bottom:184.110300px;}
.yfe{bottom:185.500650px;}
.y19b{bottom:185.726250px;}
.y64{bottom:188.070600px;}
.y152{bottom:188.962800px;}
.y179{bottom:189.108000px;}
.y81{bottom:189.321000px;}
.y75{bottom:189.546000px;}
.y1b2{bottom:191.049900px;}
.y11e{bottom:193.610550px;}
.yfd{bottom:196.000650px;}
.yc2{bottom:196.110000px;}
.y63{bottom:200.820600px;}
.y1ae{bottom:202.001550px;}
.y47{bottom:202.110150px;}
.y12{bottom:202.110300px;}
.y177{bottom:202.313400px;}
.yea{bottom:203.256150px;}
.y19a{bottom:205.497750px;}
.y151{bottom:207.126600px;}
.y11d{bottom:213.347700px;}
.ye9{bottom:213.756150px;}
.yfc{bottom:213.861150px;}
.y10f{bottom:214.027500px;}
.y96{bottom:214.110000px;}
.y196{bottom:217.213350px;}
.y46{bottom:220.110150px;}
.y11{bottom:220.110300px;}
.y62{bottom:222.173400px;}
.yfb{bottom:224.361150px;}
.y74{bottom:224.910000px;}
.y150{bottom:225.290400px;}
.y10e{bottom:226.777500px;}
.y80{bottom:227.235450px;}
.ye6{bottom:228.813150px;}
.yda{bottom:230.262150px;}
.yc6{bottom:232.572150px;}
.y118{bottom:232.860300px;}
.y11c{bottom:233.084700px;}
.yc1{bottom:233.610000px;}
.yfa{bottom:234.861150px;}
.y45{bottom:238.110150px;}
.y10{bottom:238.110300px;}
.yd9{bottom:240.762150px;}
.y10d{bottom:241.177500px;}
.yc5{bottom:243.072150px;}
.y14f{bottom:243.454350px;}
.y61{bottom:243.526200px;}
.yf9{bottom:245.361150px;}
.yde{bottom:246.841650px;}
.y117{bottom:247.260300px;}
.y95{bottom:250.110000px;}
.y1b8{bottom:250.860300px;}
.yd8{bottom:251.262150px;}
.y11b{bottom:252.821850px;}
.yc4{bottom:253.572150px;}
.ye5{bottom:253.708650px;}
.y44{bottom:256.110150px;}
.yf{bottom:256.110300px;}
.y60{bottom:256.276200px;}
.ydd{bottom:257.341650px;}
.y14e{bottom:261.618150px;}
.y73{bottom:261.628500px;}
.yba{bottom:263.154000px;}
.y7f{bottom:263.427300px;}
.yc3{bottom:264.072150px;}
.ye4{bottom:264.208650px;}
.ye8{bottom:270.214650px;}
.ybd{bottom:271.451250px;}
.y1ad{bottom:272.119500px;}
.y11a{bottom:272.558850px;}
.y43{bottom:274.110150px;}
.ye{bottom:274.110300px;}
.ye3{bottom:274.708650px;}
.yc0{bottom:275.154300px;}
.ybf{bottom:275.154450px;}
.y5f{bottom:277.629000px;}
.y14d{bottom:279.781950px;}
.ybe{bottom:280.218666px;}
.ye7{bottom:280.714650px;}
.y190{bottom:280.769100px;}
.y94{bottom:287.610000px;}
.y42{bottom:292.110150px;}
.yd{bottom:292.110300px;}
.y119{bottom:292.848750px;}
.ye2{bottom:294.700650px;}
.y14c{bottom:297.945900px;}
.y5e{bottom:298.981800px;}
.y18f{bottom:301.059000px;}
.y7a{bottom:301.319250px;}
.yd2{bottom:303.552150px;}
.yb9{bottom:304.110000px;}
.ye1{bottom:305.200650px;}
.y18e{bottom:307.434000px;}
.y41{bottom:310.110150px;}
.yc{bottom:310.110300px;}
.y5d{bottom:311.731800px;}
.yd5{bottom:312.823650px;}
.yd1{bottom:314.052150px;}
.y14b{bottom:316.109700px;}
.y93{bottom:322.110000px;}
.yd4{bottom:323.323650px;}
.yd0{bottom:324.552150px;}
.ycb{bottom:324.898650px;}
.y40{bottom:328.110150px;}
.yb{bottom:328.110300px;}
.y79{bottom:331.191000px;}
.y5c{bottom:333.084600px;}
.yd3{bottom:333.823650px;}
.y18d{bottom:334.098750px;}
.y14a{bottom:334.273500px;}
.yca{bottom:335.398650px;}
.yf8{bottom:338.160150px;}
.y10c{bottom:341.598150px;}
.y5b{bottom:345.834600px;}
.yc9{bottom:345.898650px;}
.y52{bottom:346.110150px;}
.ya{bottom:346.110300px;}
.y18c{bottom:346.848750px;}
.yf7{bottom:348.660150px;}
.y149{bottom:352.437300px;}
.y10b{bottom:354.348150px;}
.y5a{bottom:358.584600px;}
.yf6{bottom:359.160150px;}
.y78{bottom:360.489450px;}
.yec{bottom:360.661650px;}
.y3f{bottom:364.110150px;}
.y9{bottom:364.110300px;}
.y72{bottom:367.248000px;}
.ycf{bottom:368.295150px;}
.y10a{bottom:368.748300px;}
.yf5{bottom:369.660150px;}
.y148{bottom:370.601250px;}
.yc8{bottom:371.161650px;}
.y1d5{bottom:372.877350px;}
.yb8{bottom:377.610000px;}
.yce{bottom:378.795150px;}
.y59{bottom:379.937550px;}
.yf4{bottom:380.160150px;}
.yc7{bottom:381.661650px;}
.y3e{bottom:382.110150px;}
.y8{bottom:382.110300px;}
.y1d4{bottom:385.627350px;}
.y7c{bottom:386.788500px;}
.y147{bottom:388.765050px;}
.yeb{bottom:392.161650px;}
.y91{bottom:394.110000px;}
.y7b{bottom:397.288500px;}
.y1d3{bottom:398.377350px;}
.y51{bottom:400.110150px;}
.y7{bottom:400.110300px;}
.y58{bottom:401.290350px;}
.ycd{bottom:401.884650px;}
.y146{bottom:406.928850px;}
.y115{bottom:408.360000px;}
.ycc{bottom:412.384650px;}
.y114{bottom:412.860300px;}
.y57{bottom:414.040350px;}
.y50{bottom:418.110150px;}
.y6{bottom:418.110300px;}
.y116{bottom:418.907100px;}
.y83{bottom:420.380250px;}
.y1d2{bottom:421.643700px;}
.yf3{bottom:422.884650px;}
.y145{bottom:425.092800px;}
.y113{bottom:428.760300px;}
.y82{bottom:430.880250px;}
.yb7{bottom:431.610000px;}
.ye0{bottom:433.374150px;}
.yf2{bottom:433.384650px;}
.y1d1{bottom:434.393700px;}
.y56{bottom:435.393150px;}
.y3d{bottom:436.110150px;}
.y5{bottom:436.110300px;}
.y144{bottom:443.256600px;}
.ydf{bottom:443.874150px;}
.yf1{bottom:443.884650px;}
.ydc{bottom:451.612650px;}
.y172{bottom:452.403000px;}
.y3c{bottom:454.110150px;}
.y4{bottom:454.110300px;}
.yf0{bottom:454.384650px;}
.y55{bottom:456.745950px;}
.y173{bottom:456.902400px;}
.y1d0{bottom:457.659900px;}
.y143{bottom:461.420400px;}
.ydb{bottom:462.112650px;}
.y54{bottom:463.120950px;}
.yef{bottom:464.884650px;}
.y71{bottom:465.570000px;}
.y7e{bottom:465.863700px;}
.yac{bottom:465.877500px;}
.y1cf{bottom:470.409900px;}
.y3b{bottom:472.110150px;}
.y3{bottom:472.110300px;}
.yb1{bottom:474.175650px;}
.yee{bottom:475.384650px;}
.yae{bottom:477.878850px;}
.y142{bottom:479.584350px;}
.yb5{bottom:482.941350px;}
.y1ce{bottom:483.159900px;}
.y8e{bottom:485.610000px;}
.yed{bottom:485.884650px;}
.y3a{bottom:490.110150px;}
.y2{bottom:490.110300px;}
.y53{bottom:490.848750px;}
.yb2{bottom:492.031432px;}
.yb4{bottom:492.035100px;}
.y141{bottom:497.748150px;}
.y70{bottom:504.315000px;}
.y7d{bottom:505.136100px;}
.y1cd{bottom:506.426100px;}
.y39{bottom:508.110150px;}
.y4f{bottom:508.110300px;}
.y6d{bottom:508.575750px;}
.y134{bottom:515.211600px;}
.y140{bottom:515.911950px;}
.y1cc{bottom:519.176100px;}
.y38{bottom:526.110150px;}
.y2b{bottom:526.110300px;}
.y1cb{bottom:531.926100px;}
.y13f{bottom:534.075900px;}
.y133{bottom:536.011650px;}
.yab{bottom:539.610000px;}
.y85{bottom:542.518950px;}
.y37{bottom:544.110150px;}
.y1d{bottom:544.110300px;}
.y1ca{bottom:544.676100px;}
.y6f{bottom:548.362500px;}
.y132{bottom:548.761650px;}
.y161{bottom:550.859850px;}
.y13e{bottom:552.239700px;}
.y84{bottom:553.018950px;}
.y1c1{bottom:553.309950px;}
.y171{bottom:556.860150px;}
.y36{bottom:562.110150px;}
.y1c{bottom:562.110300px;}
.y1c9{bottom:567.942300px;}
.y160{bottom:569.448900px;}
.y131{bottom:569.561700px;}
.y13d{bottom:570.403500px;}
.y170{bottom:571.260150px;}
.ya9{bottom:574.110000px;}
.y35{bottom:580.110150px;}
.y1b{bottom:580.110300px;}
.y1c8{bottom:580.692300px;}
.y1c0{bottom:580.828050px;}
.y1bf{bottom:587.203050px;}
.y77{bottom:588.037500px;}
.y15f{bottom:588.037950px;}
.y13c{bottom:588.567450px;}
.y130{bottom:590.361750px;}
.y1c7{bottom:593.442300px;}
.y162{bottom:596.787000px;}
.y34{bottom:598.110150px;}
.y1a{bottom:598.110300px;}
.y12f{bottom:603.111750px;}
.y15e{bottom:606.627000px;}
.y13b{bottom:606.731250px;}
.y18b{bottom:606.741600px;}
.y1ac{bottom:607.125600px;}
.ya7{bottom:611.611500px;}
.y33{bottom:616.110150px;}
.y2a{bottom:616.110300px;}
.y1c6{bottom:616.708500px;}
.y76{bottom:617.175450px;}
.y6e{bottom:617.190000px;}
.y1be{bottom:618.119850px;}
.y12e{bottom:623.911800px;}
.y13a{bottom:624.895050px;}
.y15d{bottom:625.216050px;}
.y189{bottom:627.858150px;}
.y1c5{bottom:629.458500px;}
.y1ab{bottom:630.519300px;}
.y188{bottom:630.858150px;}
.y1bd{bottom:630.869850px;}
.y18a{bottom:631.624650px;}
.y32{bottom:634.110150px;}
.y29{bottom:634.110300px;}
.y12d{bottom:636.661800px;}
.y194{bottom:639.388350px;}
.y1c2{bottom:642.208500px;}
.y139{bottom:643.059000px;}
.ya0{bottom:643.281000px;}
.y15c{bottom:643.805100px;}
.y6b{bottom:645.622650px;}
.y137{bottom:649.434000px;}
.ya3{bottom:651.577200px;}
.y31{bottom:652.110150px;}
.y28{bottom:652.110300px;}
.y187{bottom:652.848750px;}
.y1aa{bottom:653.913000px;}
.y1c4{bottom:654.958500px;}
.ya6{bottom:655.280250px;}
.ya5{bottom:655.280400px;}
.y136{bottom:655.809000px;}
.y12c{bottom:657.461850px;}
.y193{bottom:658.402650px;}
.ya4{bottom:660.344616px;}
.y109{bottom:660.632700px;}
.y15b{bottom:662.394150px;}
.y192{bottom:664.777650px;}
.y1c3{bottom:667.708500px;}
.y138{bottom:668.559000px;}
.y30{bottom:670.110150px;}
.y27{bottom:670.110300px;}
.y12b{bottom:670.211850px;}
.y108{bottom:673.382700px;}
.y20{bottom:673.906200px;}
.y1a9{bottom:677.306850px;}
.y1bc{bottom:680.538000px;}
.y15a{bottom:680.983200px;}
.y107{bottom:687.782700px;}
.y2f{bottom:688.110150px;}
.y26{bottom:688.110300px;}
.y135{bottom:688.848750px;}
.y12a{bottom:691.011900px;}
.y191{bottom:691.442400px;}
.y128{bottom:695.037000px;}
.y1f{bottom:697.306200px;}
.y159{bottom:699.572250px;}
.y9f{bottom:700.110000px;}
.y1a8{bottom:700.700700px;}
.y157{bottom:705.947250px;}
.y2e{bottom:706.110150px;}
.y25{bottom:706.110300px;}
.y127{bottom:707.787000px;}
.y1bb{bottom:708.056100px;}
.y129{bottom:711.812100px;}
.y156{bottom:712.322250px;}
.y184{bottom:719.611500px;}
.y1a6{bottom:721.094400px;}
.y1a5{bottom:724.094400px;}
.y2d{bottom:724.110150px;}
.y24{bottom:724.110300px;}
.y1a7{bottom:724.860900px;}
.y158{bottom:725.072250px;}
.y1ba{bottom:732.597900px;}
.y126{bottom:732.612150px;}
.y1e{bottom:733.462200px;}
.y9e{bottom:736.110000px;}
.y2c{bottom:742.110150px;}
.y23{bottom:742.110300px;}
.y1b9{bottom:745.347900px;}
.y125{bottom:745.362150px;}
.y22{bottom:790.091850px;}
.y21{bottom:802.091850px;}
.h11{height:16.500000px;}
.h20{height:16.501500px;}
.h1d{height:18.000000px;}
.h1a{height:18.001500px;}
.h27{height:22.553170px;}
.h13{height:23.139716px;}
.h16{height:25.676004px;}
.h24{height:27.864000px;}
.h1b{height:27.899170px;}
.h22{height:28.995097px;}
.h1e{height:31.500000px;}
.h31{height:32.507812px;}
.h10{height:32.571000px;}
.h28{height:33.328125px;}
.h26{height:35.472000px;}
.h37{height:35.664000px;}
.hd{height:36.768000px;}
.h38{height:36.792000px;}
.hc{height:37.224000px;}
.h35{height:37.416119px;}
.he{height:37.422000px;}
.h2a{height:37.422535px;}
.h2b{height:37.426277px;}
.h1c{height:37.494141px;}
.h2e{height:37.894135px;}
.h2c{height:38.067535px;}
.h17{height:38.390778px;}
.h36{height:38.495400px;}
.h12{height:39.906000px;}
.h5{height:41.877000px;}
.h2{height:42.768000px;}
.h8{height:43.248000px;}
.h21{height:43.501500px;}
.h25{height:44.133744px;}
.h18{height:44.280000px;}
.h2f{height:44.413584px;}
.h34{height:44.848200px;}
.h30{height:47.664000px;}
.h4{height:48.114000px;}
.h3{height:48.654000px;}
.h19{height:49.650462px;}
.h14{height:50.004000px;}
.h15{height:51.199799px;}
.h6{height:64.872000px;}
.h9{height:68.748000px;}
.h7{height:70.278000px;}
.h1f{height:74.952000px;}
.h23{height:75.006000px;}
.hb{height:93.768000px;}
.ha{height:94.248000px;}
.h29{height:158.040000px;}
.h2d{height:211.342500px;}
.h33{height:212.740500px;}
.h32{height:229.320000px;}
.hf{height:516.186000px;}
.h0{height:850.393500px;}
.h1{height:850.500000px;}
.wf{width:15.000000px;}
.wb{width:19.501500px;}
.w11{width:21.000000px;}
.wc{width:22.500000px;}
.w6{width:23.998500px;}
.w9{width:24.000000px;}
.w8{width:25.500000px;}
.w7{width:27.000000px;}
.w12{width:28.500000px;}
.w4{width:31.500000px;}
.w5{width:34.500000px;}
.w3{width:75.000000px;}
.wd{width:96.000000px;}
.wa{width:97.500000px;}
.w10{width:100.501500px;}
.we{width:106.500000px;}
.w14{width:457.200000px;}
.w15{width:479.160000px;}
.w2{width:486.304500px;}
.w13{width:488.880000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x44{left:-1.031250px;}
.x0{left:0.000000px;}
.x24{left:4.665000px;}
.x33{left:6.468600px;}
.x39{left:7.921050px;}
.x3d{left:9.610588px;}
.x34{left:12.046650px;}
.x3a{left:13.780500px;}
.xc3{left:14.913300px;}
.xaf{left:20.713950px;}
.x35{left:21.796800px;}
.xc2{left:24.671550px;}
.xb3{left:26.062746px;}
.x36{left:29.718600px;}
.xb2{left:32.309700px;}
.xb0{left:35.114805px;}
.x52{left:38.715900px;}
.x4a{left:39.984900px;}
.xbc{left:41.194136px;}
.x63{left:42.239400px;}
.x5a{left:59.390550px;}
.x53{left:61.640550px;}
.x1{left:63.779550px;}
.x23{left:65.116500px;}
.x66{left:66.421800px;}
.xb{left:68.031450px;}
.x67{left:69.275850px;}
.x16{left:70.844250px;}
.x1d{left:72.032400px;}
.x1b{left:73.676400px;}
.x1f{left:74.726250px;}
.x20{left:76.562250px;}
.x15{left:78.926250px;}
.x17{left:80.432400px;}
.xcd{left:81.943950px;}
.x1e{left:83.642250px;}
.x2{left:85.039350px;}
.x1c{left:88.664100px;}
.x96{left:90.051300px;}
.x59{left:92.164350px;}
.x5c{left:93.749850px;}
.xc4{left:94.891350px;}
.x14{left:96.973950px;}
.x13{left:97.994100px;}
.x18{left:99.181950px;}
.x6{left:102.784650px;}
.x5{left:104.826900px;}
.x1a{left:106.693800px;}
.x92{left:109.001250px;}
.xa{left:110.486400px;}
.x4c{left:111.664350px;}
.x65{left:113.117400px;}
.x5e{left:115.273800px;}
.xcf{left:117.309450px;}
.x60{left:118.891800px;}
.x21{left:121.353600px;}
.xae{left:122.522850px;}
.x4e{left:124.064550px;}
.x55{left:125.235150px;}
.x5d{left:127.273800px;}
.x32{left:129.296850px;}
.xbb{left:130.430550px;}
.x3c{left:131.778000px;}
.x94{left:132.796350px;}
.x5f{left:133.929900px;}
.x4b{left:136.738741px;}
.x64{left:138.194758px;}
.x3{left:140.314950px;}
.x8c{left:141.704400px;}
.x2c{left:144.388950px;}
.x80{left:147.920850px;}
.x5b{left:149.256335px;}
.x46{left:151.636500px;}
.x81{left:153.044850px;}
.x91{left:157.260900px;}
.xb4{left:158.500500px;}
.x37{left:160.039350px;}
.x4f{left:161.097000px;}
.x56{left:163.540500px;}
.x25{left:166.815600px;}
.x38{left:167.931000px;}
.x78{left:170.201850px;}
.x2e{left:172.549050px;}
.x79{left:173.971350px;}
.x2f{left:175.951200px;}
.x47{left:177.136050px;}
.x29{left:178.543950px;}
.xa1{left:179.736900px;}
.x54{left:181.039350px;}
.x4d{left:182.539350px;}
.x26{left:184.265700px;}
.x57{left:186.040500px;}
.x83{left:187.505850px;}
.x31{left:193.905750px;}
.x8e{left:195.222600px;}
.x82{left:196.283850px;}
.x3b{left:199.430250px;}
.xc{left:201.321150px;}
.x8f{left:202.434600px;}
.x43{left:205.351500px;}
.x7b{left:207.812850px;}
.xc5{left:210.265350px;}
.x19{left:211.919850px;}
.x89{left:218.431200px;}
.x3e{left:220.183200px;}
.x8{left:221.825550px;}
.xb1{left:223.807200px;}
.x2b{left:225.331800px;}
.x30{left:226.991700px;}
.x3f{left:229.243500px;}
.x8d{left:231.348750px;}
.x45{left:232.351500px;}
.xc1{left:233.849100px;}
.x2a{left:234.907950px;}
.x28{left:236.077950px;}
.xa2{left:237.402600px;}
.x27{left:241.978950px;}
.x6f{left:243.722850px;}
.x68{left:248.920350px;}
.xd{left:250.962900px;}
.x40{left:253.326450px;}
.x22{left:256.253850px;}
.x4{left:260.055300px;}
.xc8{left:266.220150px;}
.xc7{left:267.387000px;}
.x69{left:272.261850px;}
.x2d{left:275.300550px;}
.x6b{left:276.755850px;}
.x6c{left:278.614350px;}
.x8a{left:282.597150px;}
.x85{left:286.436850px;}
.x6d{left:288.547350px;}
.xb8{left:291.739800px;}
.x6a{left:292.862850px;}
.x84{left:295.036350px;}
.x7{left:297.828000px;}
.xe{left:300.710850px;}
.xb6{left:302.790900px;}
.x76{left:304.675350px;}
.x77{left:306.050850px;}
.x48{left:307.633500px;}
.xce{left:309.677550px;}
.xa3{left:314.283300px;}
.x98{left:315.346200px;}
.xa4{left:320.583450px;}
.x99{left:321.646350px;}
.x97{left:323.008200px;}
.xba{left:327.154950px;}
.x49{left:331.634400px;}
.x8b{left:337.798500px;}
.x95{left:340.186050px;}
.xf{left:350.458950px;}
.x71{left:363.380850px;}
.x70{left:368.494350px;}
.x7a{left:370.478850px;}
.x72{left:371.591850px;}
.xca{left:372.761100px;}
.xa6{left:373.810800px;}
.xc9{left:377.321100px;}
.x9b{left:379.657200px;}
.xa5{left:380.932800px;}
.x9a{left:386.779200px;}
.x90{left:388.666500px;}
.x9{left:391.922400px;}
.x7d{left:397.421850px;}
.x88{left:400.130850px;}
.x7f{left:402.304350px;}
.x7c{left:405.475350px;}
.x10{left:407.754150px;}
.x7e{left:410.116350px;}
.x87{left:412.279350px;}
.x86{left:413.455350px;}
.x93{left:416.469900px;}
.xbd{left:417.515250px;}
.xb9{left:419.464350px;}
.x58{left:422.148000px;}
.xc6{left:429.239100px;}
.xa7{left:432.417300px;}
.xb7{left:435.267150px;}
.x6e{left:437.500350px;}
.x9c{left:439.326750px;}
.x61{left:440.350500px;}
.xa8{left:444.279150px;}
.x50{left:448.569000px;}
.xbf{left:449.580300px;}
.x9d{left:451.188600px;}
.x41{left:452.938500px;}
.x62{left:455.351400px;}
.xc0{left:457.110900px;}
.x11{left:465.155850px;}
.x73{left:466.805850px;}
.x51{left:471.134550px;}
.xac{left:475.040850px;}
.x42{left:476.938050px;}
.x74{left:478.880850px;}
.xad{left:483.298650px;}
.x75{left:484.918350px;}
.xcc{left:489.729300px;}
.xcb{left:491.574300px;}
.xd0{left:494.133300px;}
.xa9{left:495.133800px;}
.xaa{left:496.628100px;}
.x9e{left:498.322800px;}
.x9f{left:499.816950px;}
.xab{left:506.995800px;}
.xa0{left:510.184650px;}
.x12{left:514.372350px;}
.xb5{left:518.685600px;}
.xbe{left:524.461350px;}
@media print{
.v9{vertical-align:-26.170667pt;}
.vb{vertical-align:-21.499733pt;}
.v8{vertical-align:-18.000000pt;}
.vc{vertical-align:-14.311467pt;}
.v5{vertical-align:-13.166933pt;}
.v3{vertical-align:-12.000000pt;}
.ve{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:0.927467pt;}
.vf{vertical-align:6.601067pt;}
.v7{vertical-align:11.000000pt;}
.va{vertical-align:17.066667pt;}
.v4{vertical-align:19.200000pt;}
.v1{vertical-align:22.666667pt;}
.v6{vertical-align:31.152000pt;}
.v2{vertical-align:45.333333pt;}
.ls6e{letter-spacing:-1.915349pt;}
.ls2d{letter-spacing:-0.864000pt;}
.ls52{letter-spacing:-0.853333pt;}
.ls2f{letter-spacing:-0.720000pt;}
.ls30{letter-spacing:-0.624000pt;}
.ls4a{letter-spacing:-0.485333pt;}
.ls25{letter-spacing:-0.480000pt;}
.ls3a{letter-spacing:-0.432000pt;}
.ls2e{letter-spacing:-0.384000pt;}
.ls3b{letter-spacing:-0.333997pt;}
.ls42{letter-spacing:-0.250498pt;}
.ls1e{letter-spacing:-0.240000pt;}
.ls53{letter-spacing:-0.213333pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.144000pt;}
.ls27{letter-spacing:-0.096000pt;}
.ls38{letter-spacing:-0.055666pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6a{letter-spacing:0.011989pt;}
.ls61{letter-spacing:0.012523pt;}
.ls4d{letter-spacing:0.020800pt;}
.ls5d{letter-spacing:0.021013pt;}
.ls67{letter-spacing:0.021333pt;}
.ls4b{letter-spacing:0.022500pt;}
.ls37{letter-spacing:0.023467pt;}
.ls10{letter-spacing:0.024000pt;}
.ls5c{letter-spacing:0.036800pt;}
.ls3{letter-spacing:0.048000pt;}
.ls5e{letter-spacing:0.060800pt;}
.ls6d{letter-spacing:0.072000pt;}
.ls3c{letter-spacing:0.083499pt;}
.lsc{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.120000pt;}
.ls11{letter-spacing:0.144000pt;}
.ls50{letter-spacing:0.168000pt;}
.lse{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.216000pt;}
.ls5{letter-spacing:0.240000pt;}
.ls1f{letter-spacing:0.264000pt;}
.ls41{letter-spacing:0.284267pt;}
.lsb{letter-spacing:0.288000pt;}
.ls1d{letter-spacing:0.312000pt;}
.ls4{letter-spacing:0.336000pt;}
.ls72{letter-spacing:0.360000pt;}
.ls2b{letter-spacing:0.365221pt;}
.ls9{letter-spacing:0.384000pt;}
.ls4f{letter-spacing:0.408000pt;}
.ls0{letter-spacing:0.432000pt;}
.ls4e{letter-spacing:0.456000pt;}
.ls14{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.504000pt;}
.ls1c{letter-spacing:0.528000pt;}
.ls73{letter-spacing:0.552000pt;}
.ls2{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.600000pt;}
.ls2a{letter-spacing:0.602133pt;}
.ls6{letter-spacing:0.624000pt;}
.ls2c{letter-spacing:0.625600pt;}
.ls64{letter-spacing:0.648000pt;}
.lsf{letter-spacing:0.672000pt;}
.ls13{letter-spacing:0.720000pt;}
.ls40{letter-spacing:0.750933pt;}
.ls24{letter-spacing:0.768000pt;}
.ls20{letter-spacing:0.816000pt;}
.ls7{letter-spacing:0.864000pt;}
.ls71{letter-spacing:0.888000pt;}
.ls54{letter-spacing:0.912000pt;}
.ls6f{letter-spacing:0.960000pt;}
.ls39{letter-spacing:1.008000pt;}
.ls29{letter-spacing:1.056000pt;}
.ls21{letter-spacing:1.104000pt;}
.ls23{letter-spacing:1.152000pt;}
.ls3e{letter-spacing:1.164267pt;}
.ls62{letter-spacing:1.200000pt;}
.ls22{letter-spacing:1.296000pt;}
.ls70{letter-spacing:1.344000pt;}
.ls63{letter-spacing:1.392000pt;}
.ls59{letter-spacing:10.320000pt;}
.ls48{letter-spacing:17.479166pt;}
.ls47{letter-spacing:18.815153pt;}
.ls45{letter-spacing:19.104000pt;}
.ls35{letter-spacing:43.839904pt;}
.ls36{letter-spacing:50.851013pt;}
.ls4c{letter-spacing:57.450421pt;}
.ls32{letter-spacing:62.976000pt;}
.ls33{letter-spacing:63.302463pt;}
.ls51{letter-spacing:64.450133pt;}
.ls34{letter-spacing:69.860997pt;}
.ls44{letter-spacing:77.232000pt;}
.ls43{letter-spacing:89.808000pt;}
.ls5a{letter-spacing:92.976000pt;}
.ls3d{letter-spacing:93.312000pt;}
.ls66{letter-spacing:95.404600pt;}
.ls49{letter-spacing:98.976000pt;}
.ls58{letter-spacing:103.152000pt;}
.ls65{letter-spacing:108.616465pt;}
.ls6c{letter-spacing:122.756026pt;}
.ls60{letter-spacing:132.681493pt;}
.ls6b{letter-spacing:136.166134pt;}
.ls68{letter-spacing:137.367360pt;}
.ls69{letter-spacing:139.859093pt;}
.ls46{letter-spacing:149.760000pt;}
.ls19{letter-spacing:150.756800pt;}
.ls1a{letter-spacing:152.269333pt;}
.ls15{letter-spacing:152.646933pt;}
.ls17{letter-spacing:152.647467pt;}
.ls5f{letter-spacing:168.714560pt;}
.ls56{letter-spacing:169.519230pt;}
.ls55{letter-spacing:170.388886pt;}
.ls5b{letter-spacing:176.496000pt;}
.ls16{letter-spacing:179.482133pt;}
.ls1b{letter-spacing:179.859733pt;}
.ls18{letter-spacing:179.860267pt;}
.ls57{letter-spacing:183.058079pt;}
.ls3f{letter-spacing:188.690421pt;}
.ls31{letter-spacing:226.060167pt;}
.ws86{word-spacing:-226.060167pt;}
.wsde{word-spacing:-183.058079pt;}
.wsdf{word-spacing:-176.496000pt;}
.wsa4{word-spacing:-149.760000pt;}
.wsd7{word-spacing:-103.200000pt;}
.wsa9{word-spacing:-98.976000pt;}
.ws97{word-spacing:-93.312000pt;}
.wsd9{word-spacing:-93.024000pt;}
.ws9f{word-spacing:-89.808000pt;}
.wsa2{word-spacing:-77.232000pt;}
.wsc5{word-spacing:-72.684800pt;}
.ws88{word-spacing:-69.860997pt;}
.ws87{word-spacing:-63.302463pt;}
.ws82{word-spacing:-63.024000pt;}
.ws8c{word-spacing:-50.851013pt;}
.ws8b{word-spacing:-43.839904pt;}
.wsff{word-spacing:-27.216000pt;}
.wse2{word-spacing:-23.424000pt;}
.wsa3{word-spacing:-19.104000pt;}
.wsa7{word-spacing:-18.815153pt;}
.wsa5{word-spacing:-17.479166pt;}
.wsd8{word-spacing:-10.368000pt;}
.ws118{word-spacing:-10.320000pt;}
.ws110{word-spacing:-10.080000pt;}
.wsee{word-spacing:-9.984000pt;}
.wsac{word-spacing:-9.792000pt;}
.ws95{word-spacing:-9.744000pt;}
.wsb3{word-spacing:-9.648000pt;}
.wsb2{word-spacing:-9.600000pt;}
.ws7f{word-spacing:-9.504000pt;}
.ws0{word-spacing:-9.264000pt;}
.wsb4{word-spacing:-8.544000pt;}
.ws49{word-spacing:-8.234667pt;}
.wsda{word-spacing:-7.206157pt;}
.wsad{word-spacing:-7.205333pt;}
.ws100{word-spacing:-7.204201pt;}
.wsc7{word-spacing:-6.231467pt;}
.ws8d{word-spacing:-5.400912pt;}
.wsb9{word-spacing:-4.800811pt;}
.ws119{word-spacing:-3.360000pt;}
.ws10f{word-spacing:-2.885461pt;}
.ws7e{word-spacing:-2.592000pt;}
.ws85{word-spacing:-2.400000pt;}
.ws3a{word-spacing:-2.256000pt;}
.ws109{word-spacing:-2.160000pt;}
.ws66{word-spacing:-1.872000pt;}
.wsa{word-spacing:-1.824000pt;}
.ws33{word-spacing:-1.776000pt;}
.wsb8{word-spacing:-1.728000pt;}
.ws64{word-spacing:-1.680000pt;}
.ws23{word-spacing:-1.632000pt;}
.ws38{word-spacing:-1.536000pt;}
.wsf7{word-spacing:-1.488000pt;}
.wsb7{word-spacing:-1.440000pt;}
.ws13{word-spacing:-1.392000pt;}
.ws4{word-spacing:-1.344000pt;}
.ws6f{word-spacing:-1.296000pt;}
.ws61{word-spacing:-1.248000pt;}
.wsc{word-spacing:-1.200000pt;}
.ws67{word-spacing:-1.152000pt;}
.ws6e{word-spacing:-1.104000pt;}
.ws83{word-spacing:-1.056000pt;}
.ws57{word-spacing:-1.008000pt;}
.ws79{word-spacing:-0.960000pt;}
.ws27{word-spacing:-0.912000pt;}
.ws12{word-spacing:-0.864000pt;}
.ws2f{word-spacing:-0.816000pt;}
.wsd1{word-spacing:-0.768000pt;}
.ws2e{word-spacing:-0.720000pt;}
.ws29{word-spacing:-0.672000pt;}
.wse{word-spacing:-0.624000pt;}
.ws3e{word-spacing:-0.576000pt;}
.ws5c{word-spacing:-0.528000pt;}
.ws5{word-spacing:-0.480000pt;}
.ws28{word-spacing:-0.432000pt;}
.ws2a{word-spacing:-0.384000pt;}
.ws5f{word-spacing:-0.336000pt;}
.ws19{word-spacing:-0.288000pt;}
.ws2b{word-spacing:-0.240000pt;}
.wsb{word-spacing:-0.192000pt;}
.ws31{word-spacing:-0.144000pt;}
.ws93{word-spacing:-0.111332pt;}
.ws24{word-spacing:-0.096000pt;}
.wsa8{word-spacing:-0.083499pt;}
.ws60{word-spacing:-0.048000pt;}
.wsbb{word-spacing:-0.044999pt;}
.wsba{word-spacing:-0.042667pt;}
.ws9c{word-spacing:-0.027833pt;}
.ws1c{word-spacing:-0.024000pt;}
.ws1{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.027833pt;}
.wsbd{word-spacing:0.048000pt;}
.ws113{word-spacing:0.096000pt;}
.ws17{word-spacing:0.144000pt;}
.ws98{word-spacing:0.192000pt;}
.wsca{word-spacing:0.213333pt;}
.ws62{word-spacing:0.240000pt;}
.ws9e{word-spacing:0.250498pt;}
.ws59{word-spacing:0.288000pt;}
.ws96{word-spacing:0.333997pt;}
.ws11d{word-spacing:0.336000pt;}
.ws7b{word-spacing:0.384000pt;}
.ws7{word-spacing:0.432000pt;}
.ws3f{word-spacing:0.480000pt;}
.wsb1{word-spacing:0.485333pt;}
.ws65{word-spacing:0.528000pt;}
.ws40{word-spacing:0.576000pt;}
.ws18{word-spacing:0.624000pt;}
.ws7c{word-spacing:0.672000pt;}
.ws16{word-spacing:0.720000pt;}
.ws92{word-spacing:0.768000pt;}
.ws21{word-spacing:0.816000pt;}
.wsc9{word-spacing:0.853333pt;}
.ws30{word-spacing:0.864000pt;}
.ws5d{word-spacing:0.960000pt;}
.ws68{word-spacing:1.008000pt;}
.ws41{word-spacing:1.056000pt;}
.ws1a{word-spacing:1.104000pt;}
.ws39{word-spacing:1.152000pt;}
.ws6d{word-spacing:1.200000pt;}
.ws6a{word-spacing:1.248000pt;}
.ws6c{word-spacing:1.296000pt;}
.ws74{word-spacing:1.344000pt;}
.ws63{word-spacing:1.392000pt;}
.wsc2{word-spacing:1.440000pt;}
.ws77{word-spacing:1.488000pt;}
.ws22{word-spacing:1.536000pt;}
.ws3b{word-spacing:1.632000pt;}
.ws15{word-spacing:1.680000pt;}
.ws14{word-spacing:1.728000pt;}
.ws1b{word-spacing:1.776000pt;}
.ws8f{word-spacing:1.824000pt;}
.ws2d{word-spacing:1.872000pt;}
.wsbf{word-spacing:1.920000pt;}
.wsc3{word-spacing:1.968000pt;}
.ws72{word-spacing:2.016000pt;}
.ws5e{word-spacing:2.064000pt;}
.ws1f{word-spacing:2.112000pt;}
.ws6{word-spacing:2.160000pt;}
.ws1d{word-spacing:2.208000pt;}
.ws70{word-spacing:2.256000pt;}
.ws120{word-spacing:2.304000pt;}
.ws3c{word-spacing:2.352000pt;}
.wsbe{word-spacing:2.400000pt;}
.ws3d{word-spacing:2.448000pt;}
.ws34{word-spacing:2.496000pt;}
.wsb5{word-spacing:2.544000pt;}
.ws56{word-spacing:2.592000pt;}
.ws73{word-spacing:2.640000pt;}
.ws7d{word-spacing:2.688000pt;}
.ws36{word-spacing:2.736000pt;}
.wsd{word-spacing:2.784000pt;}
.ws71{word-spacing:2.832000pt;}
.ws20{word-spacing:2.880000pt;}
.ws2c{word-spacing:2.928000pt;}
.ws55{word-spacing:2.976000pt;}
.ws8{word-spacing:3.024000pt;}
.ws2{word-spacing:3.072000pt;}
.wsab{word-spacing:3.120000pt;}
.ws10{word-spacing:3.168000pt;}
.ws75{word-spacing:3.216000pt;}
.ws35{word-spacing:3.264000pt;}
.ws37{word-spacing:3.312000pt;}
.wsbc{word-spacing:3.360000pt;}
.wsb6{word-spacing:3.408000pt;}
.ws11{word-spacing:3.456000pt;}
.wsc1{word-spacing:3.504000pt;}
.ws25{word-spacing:3.552000pt;}
.ws26{word-spacing:3.600000pt;}
.ws10e{word-spacing:3.648000pt;}
.ws5a{word-spacing:3.696000pt;}
.ws3{word-spacing:3.744000pt;}
.wsaf{word-spacing:3.792000pt;}
.ws42{word-spacing:3.840000pt;}
.ws76{word-spacing:3.888000pt;}
.ws69{word-spacing:3.936000pt;}
.wsf6{word-spacing:3.984000pt;}
.ws90{word-spacing:4.032000pt;}
.ws11b{word-spacing:4.080000pt;}
.ws84{word-spacing:4.128000pt;}
.ws1e{word-spacing:4.176000pt;}
.wsb0{word-spacing:4.224000pt;}
.wsc0{word-spacing:4.320000pt;}
.ws7a{word-spacing:4.368000pt;}
.ws11c{word-spacing:4.464000pt;}
.ws5b{word-spacing:4.512000pt;}
.ws91{word-spacing:4.608000pt;}
.ws6b{word-spacing:4.752000pt;}
.ws9{word-spacing:4.848000pt;}
.ws117{word-spacing:4.896000pt;}
.ws8a{word-spacing:4.944000pt;}
.ws32{word-spacing:5.040000pt;}
.ws58{word-spacing:5.136000pt;}
.ws112{word-spacing:5.232000pt;}
.ws111{word-spacing:5.280000pt;}
.ws116{word-spacing:5.376000pt;}
.wse9{word-spacing:5.472000pt;}
.ws11e{word-spacing:5.952000pt;}
.ws78{word-spacing:6.192000pt;}
.wsa1{word-spacing:6.432000pt;}
.ws115{word-spacing:7.104000pt;}
.ws11a{word-spacing:7.248000pt;}
.wsf{word-spacing:7.344000pt;}
.wsce{word-spacing:7.488000pt;}
.ws114{word-spacing:7.824000pt;}
.ws80{word-spacing:8.592000pt;}
.ws11f{word-spacing:8.832000pt;}
.ws9b{word-spacing:20.485137pt;}
.wsc6{word-spacing:35.410133pt;}
.ws48{word-spacing:41.297067pt;}
.ws44{word-spacing:42.809067pt;}
.ws45{word-spacing:43.187200pt;}
.wsc8{word-spacing:56.215467pt;}
.wsef{word-spacing:58.349687pt;}
.ws46{word-spacing:70.021867pt;}
.ws47{word-spacing:70.400000pt;}
.wsf0{word-spacing:71.888541pt;}
.wsf4{word-spacing:75.309036pt;}
.ws9a{word-spacing:76.704000pt;}
.wsf1{word-spacing:78.896851pt;}
.ws94{word-spacing:79.344000pt;}
.wsfd{word-spacing:79.932267pt;}
.ws54{word-spacing:80.092800pt;}
.wsf2{word-spacing:80.500859pt;}
.wsf3{word-spacing:81.996582pt;}
.wsf5{word-spacing:82.242491pt;}
.wscf{word-spacing:83.603200pt;}
.ws9d{word-spacing:84.528000pt;}
.ws101{word-spacing:84.880538pt;}
.wsea{word-spacing:87.578667pt;}
.wsfb{word-spacing:88.786667pt;}
.wscb{word-spacing:91.162133pt;}
.wse4{word-spacing:95.387200pt;}
.ws102{word-spacing:100.727295pt;}
.ws105{word-spacing:102.417098pt;}
.ws106{word-spacing:103.542075pt;}
.ws107{word-spacing:104.853748pt;}
.ws108{word-spacing:105.297018pt;}
.ws104{word-spacing:106.456133pt;}
.ws103{word-spacing:114.457250pt;}
.wsfa{word-spacing:118.191467pt;}
.wse3{word-spacing:121.215467pt;}
.wscc{word-spacing:122.458667pt;}
.wse1{word-spacing:125.075200pt;}
.ws10b{word-spacing:127.063467pt;}
.wsd0{word-spacing:128.128000pt;}
.wscd{word-spacing:134.831467pt;}
.wse5{word-spacing:135.531200pt;}
.wsf8{word-spacing:137.660501pt;}
.ws4c{word-spacing:142.010667pt;}
.ws43{word-spacing:142.426133pt;}
.wsd5{word-spacing:142.468823pt;}
.ws4d{word-spacing:142.522133pt;}
.ws4e{word-spacing:143.034667pt;}
.ws52{word-spacing:143.522667pt;}
.ws51{word-spacing:143.900267pt;}
.ws50{word-spacing:143.900800pt;}
.ws4a{word-spacing:144.412800pt;}
.wse0{word-spacing:144.490368pt;}
.wsd4{word-spacing:148.833320pt;}
.wsdb{word-spacing:150.002988pt;}
.wsd3{word-spacing:158.249831pt;}
.wsdc{word-spacing:166.792776pt;}
.wsd6{word-spacing:168.432000pt;}
.wsdd{word-spacing:168.500577pt;}
.wsf9{word-spacing:169.315200pt;}
.ws53{word-spacing:170.734933pt;}
.ws4b{word-spacing:171.625600pt;}
.wsfe{word-spacing:181.688533pt;}
.wse6{word-spacing:185.547733pt;}
.wsfc{word-spacing:194.062400pt;}
.ws10c{word-spacing:196.013333pt;}
.ws81{word-spacing:211.440000pt;}
.wsae{word-spacing:213.808000pt;}
.ws10d{word-spacing:218.552000pt;}
.wseb{word-spacing:221.060267pt;}
.ws4f{word-spacing:221.305067pt;}
.wsed{word-spacing:241.914133pt;}
.wse7{word-spacing:263.325333pt;}
.wsec{word-spacing:265.418133pt;}
.wsc4{word-spacing:273.171733pt;}
.wsd2{word-spacing:331.559802pt;}
.ws10a{word-spacing:341.939200pt;}
.wse8{word-spacing:378.653333pt;}
.wsa6{word-spacing:1170.240000pt;}
.wsaa{word-spacing:1191.552000pt;}
.ws99{word-spacing:1202.256000pt;}
.wsa0{word-spacing:1207.584000pt;}
.ws89{word-spacing:1282.224000pt;}
._4e{margin-left:-252.480000pt;}
._4c{margin-left:-181.008000pt;}
._4d{margin-left:-82.846400pt;}
._31{margin-left:-64.450133pt;}
._4b{margin-left:-56.832000pt;}
._26{margin-left:-24.743596pt;}
._38{margin-left:-18.461867pt;}
._6b{margin-left:-17.031467pt;}
._58{margin-left:-14.895467pt;}
._9{margin-left:-13.960000pt;}
._b{margin-left:-12.081600pt;}
._f{margin-left:-10.225600pt;}
._5{margin-left:-9.264000pt;}
._25{margin-left:-8.338667pt;}
._12{margin-left:-6.288000pt;}
._4{margin-left:-5.054400pt;}
._a{margin-left:-3.840000pt;}
._3{margin-left:-2.923200pt;}
._2{margin-left:-1.137600pt;}
._8{width:1.406400pt;}
._7{width:2.481600pt;}
._6{width:3.676800pt;}
._24{width:4.665600pt;}
._c{width:5.577600pt;}
._11{width:6.633600pt;}
._d{width:7.968000pt;}
._71{width:9.043200pt;}
._72{width:10.449600pt;}
._e{width:11.433600pt;}
._0{width:13.098667pt;}
._10{width:14.736000pt;}
._6e{width:16.353600pt;}
._6c{width:17.760000pt;}
._6f{width:20.256000pt;}
._70{width:21.216000pt;}
._6d{width:23.793600pt;}
._36{width:30.658133pt;}
._37{width:47.553600pt;}
._32{width:48.813333pt;}
._33{width:52.077333pt;}
._52{width:68.311467pt;}
._22{width:77.516800pt;}
._23{width:88.771200pt;}
._59{width:92.756505pt;}
._5e{width:97.010133pt;}
._21{width:98.894400pt;}
._5d{width:100.540800pt;}
._16{width:101.560000pt;}
._1c{width:105.470400pt;}
._1b{width:111.330133pt;}
._1e{width:114.808000pt;}
._39{width:118.459200pt;}
._5a{width:119.747733pt;}
._20{width:121.748267pt;}
._53{width:122.771200pt;}
._44{width:124.128000pt;}
._5f{width:125.822933pt;}
._54{width:128.357333pt;}
._14{width:130.807467pt;}
._5b{width:135.286933pt;}
._5c{width:138.185067pt;}
._55{width:141.697067pt;}
._35{width:144.169067pt;}
._1{width:147.304533pt;}
._1d{width:150.354667pt;}
._17{width:151.757333pt;}
._18{width:152.646933pt;}
._19{width:153.805867pt;}
._3d{width:160.270400pt;}
._47{width:162.160533pt;}
._1f{width:163.085333pt;}
._3c{width:165.625600pt;}
._34{width:172.542933pt;}
._4a{width:173.498133pt;}
._48{width:174.533333pt;}
._3e{width:177.998400pt;}
._15{width:179.482133pt;}
._1a{width:180.883733pt;}
._3f{width:185.017600pt;}
._49{width:186.906667pt;}
._46{width:190.506667pt;}
._40{width:191.540800pt;}
._50{width:194.365583pt;}
._13{width:198.605333pt;}
._51{width:199.758350pt;}
._62{width:201.026133pt;}
._3b{width:203.735467pt;}
._45{width:211.293867pt;}
._69{width:214.256533pt;}
._41{width:216.108267pt;}
._67{width:217.798933pt;}
._3a{width:218.852800pt;}
._43{width:228.481600pt;}
._2c{width:231.104533pt;}
._2e{width:238.891200pt;}
._42{width:243.600000pt;}
._4f{width:271.647310pt;}
._6a{width:290.204267pt;}
._60{width:296.921577pt;}
._64{width:301.243733pt;}
._63{width:309.979733pt;}
._68{width:348.742933pt;}
._30{width:356.858133pt;}
._56{width:358.518933pt;}
._61{width:367.649600pt;}
._66{width:373.489600pt;}
._2b{width:393.744533pt;}
._2d{width:397.947200pt;}
._65{width:420.427200pt;}
._57{width:484.189333pt;}
._2f{width:500.477867pt;}
._2a{width:527.081600pt;}
._27{width:549.749333pt;}
._29{width:552.818667pt;}
._28{width:741.312533pt;}
.fsa{font-size:22.499733pt;}
.fs9{font-size:24.874667pt;}
.fs5{font-size:27.833067pt;}
.fs7{font-size:27.984000pt;}
.fsd{font-size:37.327467pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:37.333867pt;}
.fsc{font-size:37.337600pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:49.147875pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs8{font-size:72.000000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:0.707733pt;}
.y8d{bottom:0.708533pt;}
.ya2{bottom:1.162133pt;}
.y99{bottom:1.162533pt;}
.yb0{bottom:1.162933pt;}
.ybc{bottom:1.163067pt;}
.y164{bottom:1.609067pt;}
.y1af{bottom:2.288800pt;}
.y197{bottom:2.526000pt;}
.y175{bottom:3.102933pt;}
.y185{bottom:3.998800pt;}
.ya8{bottom:3.998933pt;}
.y88{bottom:3.999467pt;}
.y8c{bottom:4.000133pt;}
.y8f{bottom:4.000267pt;}
.y92{bottom:5.333467pt;}
.yaa{bottom:5.333600pt;}
.y166{bottom:9.130267pt;}
.y167{bottom:9.187867pt;}
.y186{bottom:9.377200pt;}
.y90{bottom:9.378534pt;}
.ya1{bottom:10.666133pt;}
.y98{bottom:10.666533pt;}
.ybb{bottom:10.667067pt;}
.yad{bottom:10.667867pt;}
.y178{bottom:13.592000pt;}
.y199{bottom:14.131333pt;}
.y1b1{bottom:14.932400pt;}
.y165{bottom:15.206133pt;}
.y16f{bottom:18.081467pt;}
.y16e{bottom:18.089714pt;}
.yb6{bottom:23.792933pt;}
.y182{bottom:24.086552pt;}
.y1a4{bottom:24.506133pt;}
.y1b7{bottom:26.508800pt;}
.yaf{bottom:26.542933pt;}
.yb3{bottom:31.917867pt;}
.y16d{bottom:35.421962pt;}
.y1{bottom:37.287733pt;}
.y1a3{bottom:42.080800pt;}
.y181{bottom:42.090809pt;}
.y198{bottom:52.168533pt;}
.y16c{bottom:52.754210pt;}
.y1b6{bottom:55.171467pt;}
.y1a2{bottom:59.655467pt;}
.y17f{bottom:60.070457pt;}
.y180{bottom:60.095067pt;}
.y8b{bottom:63.653333pt;}
.y112{bottom:66.020133pt;}
.y4e{bottom:67.653467pt;}
.y19{bottom:67.653600pt;}
.y6a{bottom:68.004533pt;}
.y176{bottom:69.287867pt;}
.y16b{bottom:70.086457pt;}
.y124{bottom:73.044667pt;}
.y1b0{bottom:74.069600pt;}
.y1a0{bottom:77.216667pt;}
.y1a1{bottom:77.230133pt;}
.y111{bottom:77.353467pt;}
.y17e{bottom:78.074714pt;}
.y183{bottom:78.986800pt;}
.y105{bottom:78.986933pt;}
.y4d{bottom:83.653467pt;}
.y18{bottom:83.653600pt;}
.y1b5{bottom:83.834133pt;}
.y16a{bottom:87.418705pt;}
.y69{bottom:87.566267pt;}
.y110{bottom:90.153467pt;}
.y123{bottom:90.588667pt;}
.y106{bottom:91.786800pt;}
.y104{bottom:91.786933pt;}
.y19f{bottom:94.791333pt;}
.y9d{bottom:95.653333pt;}
.y17d{bottom:96.078971pt;}
.y4c{bottom:99.653467pt;}
.y17{bottom:99.653600pt;}
.y169{bottom:104.750952pt;}
.y68{bottom:106.546533pt;}
.y122{bottom:108.132800pt;}
.y19e{bottom:112.366000pt;}
.y1b4{bottom:112.496800pt;}
.y195{bottom:112.701333pt;}
.y174{bottom:112.957333pt;}
.y17c{bottom:114.083228pt;}
.y87{bottom:114.136000pt;}
.y4b{bottom:115.653467pt;}
.y16{bottom:115.653600pt;}
.y67{bottom:117.879867pt;}
.y8a{bottom:118.135467pt;}
.y103{bottom:118.222800pt;}
.y121{bottom:119.466133pt;}
.y155{bottom:119.530000pt;}
.y168{bottom:122.083200pt;}
.y102{bottom:127.556133pt;}
.y86{bottom:128.453600pt;}
.y19d{bottom:129.940667pt;}
.y97{bottom:130.356000pt;}
.y163{bottom:131.333867pt;}
.y4a{bottom:131.653467pt;}
.y15{bottom:131.653600pt;}
.y17b{bottom:132.087486pt;}
.yd7{bottom:135.246800pt;}
.y154{bottom:135.675600pt;}
.y66{bottom:136.860133pt;}
.y101{bottom:136.889467pt;}
.y120{bottom:137.010133pt;}
.y9a{bottom:137.730933pt;}
.y9c{bottom:141.022533pt;}
.y1b3{bottom:141.159467pt;}
.yd6{bottom:144.580133pt;}
.y9b{bottom:145.524192pt;}
.y100{bottom:146.222800pt;}
.y19c{bottom:147.515333pt;}
.y6c{bottom:147.577333pt;}
.y49{bottom:147.653467pt;}
.y14{bottom:147.653600pt;}
.y65{bottom:148.193467pt;}
.y17a{bottom:150.091743pt;}
.y153{bottom:151.821200pt;}
.y11f{bottom:154.554267pt;}
.yff{bottom:155.556133pt;}
.y48{bottom:163.653467pt;}
.y13{bottom:163.653600pt;}
.yfe{bottom:164.889467pt;}
.y19b{bottom:165.090000pt;}
.y64{bottom:167.173867pt;}
.y152{bottom:167.966933pt;}
.y179{bottom:168.096000pt;}
.y81{bottom:168.285333pt;}
.y75{bottom:168.485333pt;}
.y1b2{bottom:169.822133pt;}
.y11e{bottom:172.098267pt;}
.yfd{bottom:174.222800pt;}
.yc2{bottom:174.320000pt;}
.y63{bottom:178.507200pt;}
.y1ae{bottom:179.556933pt;}
.y47{bottom:179.653467pt;}
.y12{bottom:179.653600pt;}
.y177{bottom:179.834133pt;}
.yea{bottom:180.672133pt;}
.y19a{bottom:182.664667pt;}
.y151{bottom:184.112533pt;}
.y11d{bottom:189.642400pt;}
.ye9{bottom:190.005467pt;}
.yfc{bottom:190.098800pt;}
.y10f{bottom:190.246667pt;}
.y96{bottom:190.320000pt;}
.y196{bottom:193.078533pt;}
.y46{bottom:195.653467pt;}
.y11{bottom:195.653600pt;}
.y62{bottom:197.487467pt;}
.yfb{bottom:199.432133pt;}
.y74{bottom:199.920000pt;}
.y150{bottom:200.258133pt;}
.y10e{bottom:201.580000pt;}
.y80{bottom:201.987067pt;}
.ye6{bottom:203.389467pt;}
.yda{bottom:204.677467pt;}
.yc6{bottom:206.730800pt;}
.y118{bottom:206.986933pt;}
.y11c{bottom:207.186400pt;}
.yc1{bottom:207.653333pt;}
.yfa{bottom:208.765467pt;}
.y45{bottom:211.653467pt;}
.y10{bottom:211.653600pt;}
.yd9{bottom:214.010800pt;}
.y10d{bottom:214.380000pt;}
.yc5{bottom:216.064133pt;}
.y14f{bottom:216.403867pt;}
.y61{bottom:216.467733pt;}
.yf9{bottom:218.098800pt;}
.yde{bottom:219.414800pt;}
.y117{bottom:219.786933pt;}
.y95{bottom:222.320000pt;}
.y1b8{bottom:222.986933pt;}
.yd8{bottom:223.344133pt;}
.y11b{bottom:224.730533pt;}
.yc4{bottom:225.397467pt;}
.ye5{bottom:225.518800pt;}
.y44{bottom:227.653467pt;}
.yf{bottom:227.653600pt;}
.y60{bottom:227.801067pt;}
.ydd{bottom:228.748133pt;}
.y14e{bottom:232.549467pt;}
.y73{bottom:232.558667pt;}
.yba{bottom:233.914667pt;}
.y7f{bottom:234.157600pt;}
.yc3{bottom:234.730800pt;}
.ye4{bottom:234.852133pt;}
.ye8{bottom:240.190800pt;}
.ybd{bottom:241.290000pt;}
.y1ad{bottom:241.884000pt;}
.y11a{bottom:242.274533pt;}
.y43{bottom:243.653467pt;}
.ye{bottom:243.653600pt;}
.ye3{bottom:244.185467pt;}
.yc0{bottom:244.581600pt;}
.ybf{bottom:244.581733pt;}
.y5f{bottom:246.781333pt;}
.y14d{bottom:248.695067pt;}
.ybe{bottom:249.083259pt;}
.ye7{bottom:249.524133pt;}
.y190{bottom:249.572533pt;}
.y94{bottom:255.653333pt;}
.y42{bottom:259.653467pt;}
.yd{bottom:259.653600pt;}
.y119{bottom:260.310000pt;}
.ye2{bottom:261.956133pt;}
.y14c{bottom:264.840800pt;}
.y5e{bottom:265.761600pt;}
.y18f{bottom:267.608000pt;}
.y7a{bottom:267.839333pt;}
.yd2{bottom:269.824133pt;}
.yb9{bottom:270.320000pt;}
.ye1{bottom:271.289467pt;}
.y18e{bottom:273.274667pt;}
.y41{bottom:275.653467pt;}
.yc{bottom:275.653600pt;}
.y5d{bottom:277.094933pt;}
.yd5{bottom:278.065467pt;}
.yd1{bottom:279.157467pt;}
.y14b{bottom:280.986400pt;}
.y93{bottom:286.320000pt;}
.yd4{bottom:287.398800pt;}
.yd0{bottom:288.490800pt;}
.ycb{bottom:288.798800pt;}
.y40{bottom:291.653467pt;}
.yb{bottom:291.653600pt;}
.y79{bottom:294.392000pt;}
.y5c{bottom:296.075200pt;}
.yd3{bottom:296.732133pt;}
.y18d{bottom:296.976667pt;}
.y14a{bottom:297.132000pt;}
.yca{bottom:298.132133pt;}
.yf8{bottom:300.586800pt;}
.y10c{bottom:303.642800pt;}
.y5b{bottom:307.408533pt;}
.yc9{bottom:307.465467pt;}
.y52{bottom:307.653467pt;}
.ya{bottom:307.653600pt;}
.y18c{bottom:308.310000pt;}
.yf7{bottom:309.920133pt;}
.y149{bottom:313.277600pt;}
.y10b{bottom:314.976133pt;}
.y5a{bottom:318.741867pt;}
.yf6{bottom:319.253467pt;}
.y78{bottom:320.435067pt;}
.yec{bottom:320.588133pt;}
.y3f{bottom:323.653467pt;}
.y9{bottom:323.653600pt;}
.y72{bottom:326.442667pt;}
.ycf{bottom:327.373467pt;}
.y10a{bottom:327.776267pt;}
.yf5{bottom:328.586800pt;}
.y148{bottom:329.423333pt;}
.yc8{bottom:329.921467pt;}
.y1d5{bottom:331.446533pt;}
.yb8{bottom:335.653333pt;}
.yce{bottom:336.706800pt;}
.y59{bottom:337.722267pt;}
.yf4{bottom:337.920133pt;}
.yc7{bottom:339.254800pt;}
.y3e{bottom:339.653467pt;}
.y8{bottom:339.653600pt;}
.y1d4{bottom:342.779867pt;}
.y7c{bottom:343.812000pt;}
.y147{bottom:345.568933pt;}
.yeb{bottom:348.588133pt;}
.y91{bottom:350.320000pt;}
.y7b{bottom:353.145333pt;}
.y1d3{bottom:354.113200pt;}
.y51{bottom:355.653467pt;}
.y7{bottom:355.653600pt;}
.y58{bottom:356.702533pt;}
.ycd{bottom:357.230800pt;}
.y146{bottom:361.714533pt;}
.y115{bottom:362.986667pt;}
.ycc{bottom:366.564133pt;}
.y114{bottom:366.986933pt;}
.y57{bottom:368.035867pt;}
.y50{bottom:371.653467pt;}
.y6{bottom:371.653600pt;}
.y116{bottom:372.361867pt;}
.y83{bottom:373.671333pt;}
.y1d2{bottom:374.794400pt;}
.yf3{bottom:375.897467pt;}
.y145{bottom:377.860267pt;}
.y113{bottom:381.120267pt;}
.y82{bottom:383.004667pt;}
.yb7{bottom:383.653333pt;}
.ye0{bottom:385.221467pt;}
.yf2{bottom:385.230800pt;}
.y1d1{bottom:386.127733pt;}
.y56{bottom:387.016133pt;}
.y3d{bottom:387.653467pt;}
.y5{bottom:387.653600pt;}
.y144{bottom:394.005867pt;}
.ydf{bottom:394.554800pt;}
.yf1{bottom:394.564133pt;}
.ydc{bottom:401.433467pt;}
.y172{bottom:402.136000pt;}
.y3c{bottom:403.653467pt;}
.y4{bottom:403.653600pt;}
.yf0{bottom:403.897467pt;}
.y55{bottom:405.996400pt;}
.y173{bottom:406.135467pt;}
.y1d0{bottom:406.808800pt;}
.y143{bottom:410.151467pt;}
.ydb{bottom:410.766800pt;}
.y54{bottom:411.663067pt;}
.yef{bottom:413.230800pt;}
.y71{bottom:413.840000pt;}
.y7e{bottom:414.101067pt;}
.yac{bottom:414.113333pt;}
.y1cf{bottom:418.142133pt;}
.y3b{bottom:419.653467pt;}
.y3{bottom:419.653600pt;}
.yb1{bottom:421.489467pt;}
.yee{bottom:422.564133pt;}
.yae{bottom:424.781200pt;}
.y142{bottom:426.297200pt;}
.yb5{bottom:429.281200pt;}
.y1ce{bottom:429.475467pt;}
.y8e{bottom:431.653333pt;}
.yed{bottom:431.897467pt;}
.y3a{bottom:435.653467pt;}
.y2{bottom:435.653600pt;}
.y53{bottom:436.310000pt;}
.yb2{bottom:437.361273pt;}
.yb4{bottom:437.364533pt;}
.y141{bottom:442.442800pt;}
.y70{bottom:448.280000pt;}
.y7d{bottom:449.009867pt;}
.y1cd{bottom:450.156533pt;}
.y39{bottom:451.653467pt;}
.y4f{bottom:451.653600pt;}
.y6d{bottom:452.067333pt;}
.y134{bottom:457.965867pt;}
.y140{bottom:458.588400pt;}
.y1cc{bottom:461.489867pt;}
.y38{bottom:467.653467pt;}
.y2b{bottom:467.653600pt;}
.y1cb{bottom:472.823200pt;}
.y13f{bottom:474.734133pt;}
.y133{bottom:476.454800pt;}
.yab{bottom:479.653333pt;}
.y85{bottom:482.239067pt;}
.y37{bottom:483.653467pt;}
.y1d{bottom:483.653600pt;}
.y1ca{bottom:484.156533pt;}
.y6f{bottom:487.433333pt;}
.y132{bottom:487.788133pt;}
.y161{bottom:489.653200pt;}
.y13e{bottom:490.879733pt;}
.y84{bottom:491.572400pt;}
.y1c1{bottom:491.831067pt;}
.y171{bottom:494.986800pt;}
.y36{bottom:499.653467pt;}
.y1c{bottom:499.653600pt;}
.y1c9{bottom:504.837600pt;}
.y160{bottom:506.176800pt;}
.y131{bottom:506.277067pt;}
.y13d{bottom:507.025333pt;}
.y170{bottom:507.786800pt;}
.ya9{bottom:510.320000pt;}
.y35{bottom:515.653467pt;}
.y1b{bottom:515.653600pt;}
.y1c8{bottom:516.170933pt;}
.y1c0{bottom:516.291600pt;}
.y1bf{bottom:521.958267pt;}
.y77{bottom:522.700000pt;}
.y15f{bottom:522.700400pt;}
.y13c{bottom:523.171067pt;}
.y130{bottom:524.766000pt;}
.y1c7{bottom:527.504267pt;}
.y162{bottom:530.477333pt;}
.y34{bottom:531.653467pt;}
.y1a{bottom:531.653600pt;}
.y12f{bottom:536.099333pt;}
.y15e{bottom:539.224000pt;}
.y13b{bottom:539.316667pt;}
.y18b{bottom:539.325867pt;}
.y1ac{bottom:539.667200pt;}
.ya7{bottom:543.654667pt;}
.y33{bottom:547.653467pt;}
.y2a{bottom:547.653600pt;}
.y1c6{bottom:548.185333pt;}
.y76{bottom:548.600400pt;}
.y6e{bottom:548.613333pt;}
.y1be{bottom:549.439867pt;}
.y12e{bottom:554.588267pt;}
.y13a{bottom:555.462267pt;}
.y15d{bottom:555.747600pt;}
.y189{bottom:558.096133pt;}
.y1c5{bottom:559.518667pt;}
.y1ab{bottom:560.461600pt;}
.y188{bottom:560.762800pt;}
.y1bd{bottom:560.773200pt;}
.y18a{bottom:561.444133pt;}
.y32{bottom:563.653467pt;}
.y29{bottom:563.653600pt;}
.y12d{bottom:565.921600pt;}
.y194{bottom:568.345200pt;}
.y1c2{bottom:570.852000pt;}
.y139{bottom:571.608000pt;}
.ya0{bottom:571.805333pt;}
.y15c{bottom:572.271200pt;}
.y6b{bottom:573.886800pt;}
.y137{bottom:577.274667pt;}
.ya3{bottom:579.179733pt;}
.y31{bottom:579.653467pt;}
.y28{bottom:579.653600pt;}
.y187{bottom:580.310000pt;}
.y1aa{bottom:581.256000pt;}
.y1c4{bottom:582.185333pt;}
.ya6{bottom:582.471333pt;}
.ya5{bottom:582.471467pt;}
.y136{bottom:582.941333pt;}
.y12c{bottom:584.410533pt;}
.y193{bottom:585.246800pt;}
.ya4{bottom:586.972992pt;}
.y109{bottom:587.229067pt;}
.y15b{bottom:588.794800pt;}
.y192{bottom:590.913467pt;}
.y1c3{bottom:593.518667pt;}
.y138{bottom:594.274667pt;}
.y30{bottom:595.653467pt;}
.y27{bottom:595.653600pt;}
.y12b{bottom:595.743867pt;}
.y108{bottom:598.562400pt;}
.y20{bottom:599.027733pt;}
.y1a9{bottom:602.050533pt;}
.y1bc{bottom:604.922667pt;}
.y15a{bottom:605.318400pt;}
.y107{bottom:611.362400pt;}
.y2f{bottom:611.653467pt;}
.y26{bottom:611.653600pt;}
.y135{bottom:612.310000pt;}
.y12a{bottom:614.232800pt;}
.y191{bottom:614.615467pt;}
.y128{bottom:617.810667pt;}
.y1f{bottom:619.827733pt;}
.y159{bottom:621.842000pt;}
.y9f{bottom:622.320000pt;}
.y1a8{bottom:622.845067pt;}
.y157{bottom:627.508667pt;}
.y2e{bottom:627.653467pt;}
.y25{bottom:627.653600pt;}
.y127{bottom:629.144000pt;}
.y1bb{bottom:629.383200pt;}
.y129{bottom:632.721867pt;}
.y156{bottom:633.175333pt;}
.y184{bottom:639.654667pt;}
.y1a6{bottom:640.972800pt;}
.y1a5{bottom:643.639467pt;}
.y2d{bottom:643.653467pt;}
.y24{bottom:643.653600pt;}
.y1a7{bottom:644.320800pt;}
.y158{bottom:644.508667pt;}
.y1ba{bottom:651.198133pt;}
.y126{bottom:651.210800pt;}
.y1e{bottom:651.966400pt;}
.y9e{bottom:654.320000pt;}
.y2c{bottom:659.653467pt;}
.y23{bottom:659.653600pt;}
.y1b9{bottom:662.531467pt;}
.y125{bottom:662.544133pt;}
.y22{bottom:702.303867pt;}
.y21{bottom:712.970533pt;}
.h11{height:14.666667pt;}
.h20{height:14.668000pt;}
.h1d{height:16.000000pt;}
.h1a{height:16.001333pt;}
.h27{height:20.047262pt;}
.h13{height:20.568636pt;}
.h16{height:22.823115pt;}
.h24{height:24.768000pt;}
.h1b{height:24.799262pt;}
.h22{height:25.773420pt;}
.h1e{height:28.000000pt;}
.h31{height:28.895833pt;}
.h10{height:28.952000pt;}
.h28{height:29.625000pt;}
.h26{height:31.530667pt;}
.h37{height:31.701333pt;}
.hd{height:32.682667pt;}
.h38{height:32.704000pt;}
.hc{height:33.088000pt;}
.h35{height:33.258773pt;}
.he{height:33.264000pt;}
.h2a{height:33.264475pt;}
.h2b{height:33.267802pt;}
.h1c{height:33.328125pt;}
.h2e{height:33.683675pt;}
.h2c{height:33.837809pt;}
.h17{height:34.125136pt;}
.h36{height:34.218133pt;}
.h12{height:35.472000pt;}
.h5{height:37.224000pt;}
.h2{height:38.016000pt;}
.h8{height:38.442667pt;}
.h21{height:38.668000pt;}
.h25{height:39.229995pt;}
.h18{height:39.360000pt;}
.h2f{height:39.478741pt;}
.h34{height:39.865067pt;}
.h30{height:42.368000pt;}
.h4{height:42.768000pt;}
.h3{height:43.248000pt;}
.h19{height:44.133744pt;}
.h14{height:44.448000pt;}
.h15{height:45.510932pt;}
.h6{height:57.664000pt;}
.h9{height:61.109333pt;}
.h7{height:62.469333pt;}
.h1f{height:66.624000pt;}
.h23{height:66.672000pt;}
.hb{height:83.349333pt;}
.ha{height:83.776000pt;}
.h29{height:140.480000pt;}
.h2d{height:187.860000pt;}
.h33{height:189.102667pt;}
.h32{height:203.840000pt;}
.hf{height:458.832000pt;}
.h0{height:755.905333pt;}
.h1{height:756.000000pt;}
.wf{width:13.333333pt;}
.wb{width:17.334667pt;}
.w11{width:18.666667pt;}
.wc{width:20.000000pt;}
.w6{width:21.332000pt;}
.w9{width:21.333333pt;}
.w8{width:22.666667pt;}
.w7{width:24.000000pt;}
.w12{width:25.333333pt;}
.w4{width:28.000000pt;}
.w5{width:30.666667pt;}
.w3{width:66.666667pt;}
.wd{width:85.333333pt;}
.wa{width:86.666667pt;}
.w10{width:89.334667pt;}
.we{width:94.666667pt;}
.w14{width:406.400000pt;}
.w15{width:425.920000pt;}
.w2{width:432.270667pt;}
.w13{width:434.560000pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x44{left:-0.916667pt;}
.x0{left:0.000000pt;}
.x24{left:4.146667pt;}
.x33{left:5.749867pt;}
.x39{left:7.040933pt;}
.x3d{left:8.542745pt;}
.x34{left:10.708133pt;}
.x3a{left:12.249333pt;}
.xc3{left:13.256267pt;}
.xaf{left:18.412400pt;}
.x35{left:19.374933pt;}
.xc2{left:21.930267pt;}
.xb3{left:23.166885pt;}
.x36{left:26.416533pt;}
.xb2{left:28.719733pt;}
.xb0{left:31.213160pt;}
.x52{left:34.414133pt;}
.x4a{left:35.542133pt;}
.xbc{left:36.617010pt;}
.x63{left:37.546133pt;}
.x5a{left:52.791600pt;}
.x53{left:54.791600pt;}
.x1{left:56.692933pt;}
.x23{left:57.881333pt;}
.x66{left:59.041600pt;}
.xb{left:60.472400pt;}
.x67{left:61.578533pt;}
.x16{left:62.972667pt;}
.x1d{left:64.028800pt;}
.x1b{left:65.490133pt;}
.x1f{left:66.423333pt;}
.x20{left:68.055333pt;}
.x15{left:70.156667pt;}
.x17{left:71.495467pt;}
.xcd{left:72.839067pt;}
.x1e{left:74.348667pt;}
.x2{left:75.590533pt;}
.x1c{left:78.812533pt;}
.x96{left:80.045600pt;}
.x59{left:81.923867pt;}
.x5c{left:83.333200pt;}
.xc4{left:84.347867pt;}
.x14{left:86.199067pt;}
.x13{left:87.105867pt;}
.x18{left:88.161733pt;}
.x6{left:91.364133pt;}
.x5{left:93.179467pt;}
.x1a{left:94.838933pt;}
.x92{left:96.890000pt;}
.xa{left:98.210133pt;}
.x4c{left:99.257200pt;}
.x65{left:100.548800pt;}
.x5e{left:102.465600pt;}
.xcf{left:104.275067pt;}
.x60{left:105.681600pt;}
.x21{left:107.869867pt;}
.xae{left:108.909200pt;}
.x4e{left:110.279600pt;}
.x55{left:111.320133pt;}
.x5d{left:113.132267pt;}
.x32{left:114.930533pt;}
.xbb{left:115.938267pt;}
.x3c{left:117.136000pt;}
.x94{left:118.041200pt;}
.x5f{left:119.048800pt;}
.x4b{left:121.545548pt;}
.x64{left:122.839785pt;}
.x3{left:124.724400pt;}
.x8c{left:125.959467pt;}
.x2c{left:128.345733pt;}
.x80{left:131.485200pt;}
.x5b{left:132.672297pt;}
.x46{left:134.788000pt;}
.x81{left:136.039867pt;}
.x91{left:139.787467pt;}
.xb4{left:140.889333pt;}
.x37{left:142.257200pt;}
.x4f{left:143.197333pt;}
.x56{left:145.369333pt;}
.x25{left:148.280533pt;}
.x38{left:149.272000pt;}
.x78{left:151.290533pt;}
.x2e{left:153.376933pt;}
.x79{left:154.641200pt;}
.x2f{left:156.401067pt;}
.x47{left:157.454267pt;}
.x29{left:158.705733pt;}
.xa1{left:159.766133pt;}
.x54{left:160.923867pt;}
.x4d{left:162.257200pt;}
.x26{left:163.791733pt;}
.x57{left:165.369333pt;}
.x83{left:166.671867pt;}
.x31{left:172.360667pt;}
.x8e{left:173.531200pt;}
.x82{left:174.474533pt;}
.x3b{left:177.271333pt;}
.xc{left:178.952133pt;}
.x8f{left:179.941867pt;}
.x43{left:182.534667pt;}
.x7b{left:184.722533pt;}
.xc5{left:186.902533pt;}
.x19{left:188.373200pt;}
.x89{left:194.161067pt;}
.x3e{left:195.718400pt;}
.x8{left:197.178267pt;}
.xb1{left:198.939733pt;}
.x2b{left:200.294933pt;}
.x30{left:201.770400pt;}
.x3f{left:203.772000pt;}
.x8d{left:205.643333pt;}
.x45{left:206.534667pt;}
.xc1{left:207.865867pt;}
.x2a{left:208.807067pt;}
.x28{left:209.847067pt;}
.xa2{left:211.024533pt;}
.x27{left:215.092400pt;}
.x6f{left:216.642533pt;}
.x68{left:221.262533pt;}
.xd{left:223.078133pt;}
.x40{left:225.179067pt;}
.x22{left:227.781200pt;}
.x4{left:231.160267pt;}
.xc8{left:236.640133pt;}
.xc7{left:237.677333pt;}
.x69{left:242.010533pt;}
.x2d{left:244.711600pt;}
.x6b{left:246.005200pt;}
.x6c{left:247.657200pt;}
.x8a{left:251.197467pt;}
.x85{left:254.610533pt;}
.x6d{left:256.486533pt;}
.xb8{left:259.324267pt;}
.x6a{left:260.322533pt;}
.x84{left:262.254533pt;}
.x7{left:264.736000pt;}
.xe{left:267.298533pt;}
.xb6{left:269.147467pt;}
.x76{left:270.822533pt;}
.x77{left:272.045200pt;}
.x48{left:273.452000pt;}
.xce{left:275.268933pt;}
.xa3{left:279.362933pt;}
.x98{left:280.307733pt;}
.xa4{left:284.963067pt;}
.x99{left:285.907867pt;}
.x97{left:287.118400pt;}
.xba{left:290.804400pt;}
.x49{left:294.786133pt;}
.x8b{left:300.265333pt;}
.x95{left:302.387600pt;}
.xf{left:311.519067pt;}
.x71{left:323.005200pt;}
.x70{left:327.550533pt;}
.x7a{left:329.314533pt;}
.x72{left:330.303867pt;}
.xca{left:331.343200pt;}
.xa6{left:332.276267pt;}
.xc9{left:335.396533pt;}
.x9b{left:337.473067pt;}
.xa5{left:338.606933pt;}
.x9a{left:343.803733pt;}
.x90{left:345.481333pt;}
.x9{left:348.375467pt;}
.x7d{left:353.263867pt;}
.x88{left:355.671867pt;}
.x7f{left:357.603867pt;}
.x7c{left:360.422533pt;}
.x10{left:362.448133pt;}
.x7e{left:364.547867pt;}
.x87{left:366.470533pt;}
.x86{left:367.515867pt;}
.x93{left:370.195467pt;}
.xbd{left:371.124667pt;}
.xb9{left:372.857200pt;}
.x58{left:375.242667pt;}
.xc6{left:381.545867pt;}
.xa7{left:384.370933pt;}
.xb7{left:386.904133pt;}
.x6e{left:388.889200pt;}
.x9c{left:390.512667pt;}
.x61{left:391.422667pt;}
.xa8{left:394.914800pt;}
.x50{left:398.728000pt;}
.xbf{left:399.626933pt;}
.x9d{left:401.056533pt;}
.x41{left:402.612000pt;}
.x62{left:404.756800pt;}
.xc0{left:406.320800pt;}
.x11{left:413.471867pt;}
.x73{left:414.938533pt;}
.x51{left:418.786267pt;}
.xac{left:422.258533pt;}
.x42{left:423.944933pt;}
.x74{left:425.671867pt;}
.xad{left:429.598800pt;}
.x75{left:431.038533pt;}
.xcc{left:435.314933pt;}
.xcb{left:436.954933pt;}
.xd0{left:439.229600pt;}
.xa9{left:440.118933pt;}
.xaa{left:441.447200pt;}
.x9e{left:442.953600pt;}
.x9f{left:444.281733pt;}
.xab{left:450.662933pt;}
.xa0{left:453.497467pt;}
.x12{left:457.219867pt;}
.xb5{left:461.053867pt;}
.xbe{left:466.187867pt;}
}




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