
    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_4a2172c0af34cc1485427214.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.892000;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_694dcad7957882067c127641.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ade6e42d40984c267b5435a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_678b365cef3df1343a89a777.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.421000;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_c2668d5822e3fab26fe0a5d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.151000;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_4724a965f49415787cc499f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_673fe8c49f0b0680284419ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6f151561a78cb30e4e227b87.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a39776912fd877f3839a98fa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;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_4b3ddc7254572839bc7888ba.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.552000;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_a90882ff2d9191ecd4969c87.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_e8d21a47db73d59be5ab0cab.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3c81c788571490f37c8cbe07.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.174316;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_cc724985b4713fea1c338141.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.006348;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_712ecc8f722aded7869abdb4.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a281931ae23408e0115d56cc.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.174316;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_cc724985b4713fea1c338141.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.006348;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_712ecc8f722aded7869abdb4.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a281931ae23408e0115d56cc.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.174316;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_8ede1b1dbc4c6be39baaa9e1.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.006348;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_7768d71d90920018dccfa631.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_786dbb5f0b7a3b05913904a1.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.174316;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_8ede1b1dbc4c6be39baaa9e1.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.006348;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_7768d71d90920018dccfa631.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_786dbb5f0b7a3b05913904a1.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.174316;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_3dd3c69d5c21f9291c0af61b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.006348;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_77ea56c864fd28f92e651113.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_abc715c3116a080011bb6e47.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.174316;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_55ceb981577174117e8e2f9e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.006348;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_9a7c7afc865a8b1589835035.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_ac8d3e5a6e6601b381c305aa.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.174316;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_061fbe54508f46025486c3ea.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.006348;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_cf9f4368729c925c75a5e4ad.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_5e7995730e588884293e0df6.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.174316;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_b3348cabb5e1a5923733d54d.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.714355;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_061fbe54508f46025486c3ea.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.006348;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_542f14de9c2340c66cd2eef9.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_794a5b0375f8b57e372714a8.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.174316;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_3b618c53bb7c8b86406b4e57.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.714355;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_ce3f580705c0820d255f6309.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.883000;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_618940e00e2cf17fafa148e1.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.869000;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-4.320000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.436400px;}
.v1{vertical-align:39.060000px;}
.ls4d{letter-spacing:-0.426852px;}
.ls21{letter-spacing:-0.312624px;}
.ls5d{letter-spacing:-0.216432px;}
.ls57{letter-spacing:-0.198396px;}
.ls2a{letter-spacing:-0.174348px;}
.ls6e{letter-spacing:-0.168336px;}
.ls4a{letter-spacing:-0.156312px;}
.ls56{letter-spacing:-0.138276px;}
.ls3b{letter-spacing:-0.135000px;}
.ls5e{letter-spacing:-0.132264px;}
.ls3f{letter-spacing:-0.126252px;}
.ls38{letter-spacing:-0.120240px;}
.ls44{letter-spacing:-0.114228px;}
.ls6d{letter-spacing:-0.108216px;}
.ls55{letter-spacing:-0.102204px;}
.ls47{letter-spacing:-0.096192px;}
.ls18{letter-spacing:-0.090972px;}
.ls24{letter-spacing:-0.090180px;}
.ls34{letter-spacing:-0.086184px;}
.ls45{letter-spacing:-0.084168px;}
.ls20{letter-spacing:-0.081000px;}
.ls46{letter-spacing:-0.078156px;}
.ls6f{letter-spacing:-0.075600px;}
.ls4c{letter-spacing:-0.072144px;}
.ls1c{letter-spacing:-0.070200px;}
.ls58{letter-spacing:-0.066132px;}
.ls37{letter-spacing:-0.060120px;}
.ls5f{letter-spacing:-0.054108px;}
.ls3a{letter-spacing:-0.054000px;}
.ls1d{letter-spacing:-0.048600px;}
.ls4e{letter-spacing:-0.048096px;}
.ls27{letter-spacing:-0.042084px;}
.ls28{letter-spacing:-0.036072px;}
.ls3c{letter-spacing:-0.032400px;}
.ls23{letter-spacing:-0.030060px;}
.ls1e{letter-spacing:-0.027000px;}
.ls22{letter-spacing:-0.024048px;}
.ls1a{letter-spacing:-0.021600px;}
.ls29{letter-spacing:-0.018036px;}
.ls39{letter-spacing:-0.016200px;}
.ls19{letter-spacing:-0.014364px;}
.ls26{letter-spacing:-0.012024px;}
.ls36{letter-spacing:-0.010800px;}
.ls25{letter-spacing:-0.006012px;}
.ls49{letter-spacing:-0.005400px;}
.ls35{letter-spacing:-0.004788px;}
.ls6{letter-spacing:0.000000px;}
.ls63{letter-spacing:0.000124px;}
.ls40{letter-spacing:0.000500px;}
.ls5c{letter-spacing:0.000846px;}
.ls6c{letter-spacing:0.001890px;}
.ls78{letter-spacing:0.001988px;}
.ls51{letter-spacing:0.001996px;}
.ls6b{letter-spacing:0.002467px;}
.ls5{letter-spacing:0.003488px;}
.ls70{letter-spacing:0.003494px;}
.ls3{letter-spacing:0.004088px;}
.ls73{letter-spacing:0.004097px;}
.ls71{letter-spacing:0.004435px;}
.ls7b{letter-spacing:0.004800px;}
.lsc{letter-spacing:0.005400px;}
.ls30{letter-spacing:0.006012px;}
.ls43{letter-spacing:0.010800px;}
.ls13{letter-spacing:0.012024px;}
.lsd{letter-spacing:0.016200px;}
.ls14{letter-spacing:0.018036px;}
.ls42{letter-spacing:0.021600px;}
.ls11{letter-spacing:0.024048px;}
.ls2e{letter-spacing:0.027000px;}
.ls41{letter-spacing:0.030060px;}
.ls2d{letter-spacing:0.032400px;}
.ls12{letter-spacing:0.036072px;}
.ls5a{letter-spacing:0.037800px;}
.ls52{letter-spacing:0.042084px;}
.lse{letter-spacing:0.043200px;}
.ls10{letter-spacing:0.048096px;}
.ls64{letter-spacing:0.048600px;}
.ls9{letter-spacing:0.052668px;}
.ls2f{letter-spacing:0.054108px;}
.ls2b{letter-spacing:0.057456px;}
.ls1b{letter-spacing:0.059400px;}
.lsf{letter-spacing:0.060120px;}
.ls4b{letter-spacing:0.066132px;}
.ls31{letter-spacing:0.070200px;}
.ls15{letter-spacing:0.072144px;}
.ls16{letter-spacing:0.078156px;}
.ls48{letter-spacing:0.084168px;}
.ls54{letter-spacing:0.090180px;}
.ls5b{letter-spacing:0.102204px;}
.ls3d{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.113400px;}
.ls69{letter-spacing:0.124200px;}
.ls67{letter-spacing:0.140400px;}
.ls65{letter-spacing:0.145800px;}
.ls3e{letter-spacing:0.150300px;}
.lsb{letter-spacing:0.172368px;}
.ls53{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.181944px;}
.ls2c{letter-spacing:0.191520px;}
.ls7d{letter-spacing:0.524565px;}
.ls7e{letter-spacing:0.530097px;}
.ls7c{letter-spacing:0.530447px;}
.ls7f{letter-spacing:0.536050px;}
.ls72{letter-spacing:0.537859px;}
.ls74{letter-spacing:0.545660px;}
.ls50{letter-spacing:0.594403px;}
.ls62{letter-spacing:0.598403px;}
.ls61{letter-spacing:0.607080px;}
.ls7{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls4{letter-spacing:11.954850px;}
.ls33{letter-spacing:12.988462px;}
.ls6a{letter-spacing:13.318213px;}
.ls77{letter-spacing:13.448400px;}
.ls76{letter-spacing:13.454400px;}
.ls75{letter-spacing:14.115106px;}
.ls8{letter-spacing:14.346144px;}
.ls32{letter-spacing:14.817245px;}
.ls79{letter-spacing:14.826871px;}
.ls80{letter-spacing:14.881288px;}
.ls4f{letter-spacing:14.946124px;}
.ls7a{letter-spacing:15.515106px;}
.ls60{letter-spacing:15.868200px;}
.ls59{letter-spacing:18.351109px;}
.ls17{letter-spacing:18.963065px;}
.ls0{letter-spacing:29.889187px;}
.ls1{letter-spacing:32.009510px;}
.ls68{letter-spacing:1201.456800px;}
.ls66{letter-spacing:1223.305200px;}
.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;}
}
.ws0{word-spacing:-28.532313px;}
.ws8{word-spacing:-17.394700px;}
.ws1ae{word-spacing:-15.655334px;}
.ws13c{word-spacing:-14.957856px;}
.wsc3{word-spacing:-14.951844px;}
.ws67{word-spacing:-14.943900px;}
.ws1f{word-spacing:-13.915795px;}
.ws33{word-spacing:-13.613400px;}
.ws13b{word-spacing:-13.500000px;}
.ws64{word-spacing:-13.483800px;}
.ws34{word-spacing:-13.473000px;}
.ws38{word-spacing:-13.449600px;}
.ws63{word-spacing:-13.446000px;}
.ws32{word-spacing:-13.429800px;}
.ws62{word-spacing:-12.161520px;}
.ws31{word-spacing:-12.151944px;}
.ws1d{word-spacing:-11.955150px;}
.ws5{word-spacing:-4.363619px;}
.ws18c{word-spacing:-3.883752px;}
.ws18e{word-spacing:-3.523032px;}
.ws18d{word-spacing:-3.468924px;}
.ws8c{word-spacing:-3.204396px;}
.ws174{word-spacing:-3.174336px;}
.ws1a{word-spacing:-3.168107px;}
.ws16f{word-spacing:-3.162312px;}
.ws128{word-spacing:-3.156300px;}
.ws8b{word-spacing:-3.120228px;}
.ws11a{word-spacing:-3.108204px;}
.ws10{word-spacing:-3.048556px;}
.ws133{word-spacing:-2.929004px;}
.ws74{word-spacing:-2.843676px;}
.ws19e{word-spacing:-2.825640px;}
.ws115{word-spacing:-2.801592px;}
.ws44{word-spacing:-2.759400px;}
.wsc8{word-spacing:-2.749678px;}
.wsa0{word-spacing:-2.727000px;}
.wsa2{word-spacing:-2.721600px;}
.ws46{word-spacing:-2.716200px;}
.ws45{word-spacing:-2.705400px;}
.wsa1{word-spacing:-2.700000px;}
.ws114{word-spacing:-2.699388px;}
.wsc2{word-spacing:-2.689902px;}
.ws43{word-spacing:-2.678400px;}
.ws47{word-spacing:-2.651400px;}
.ws19{word-spacing:-2.630126px;}
.ws1d0{word-spacing:-2.474726px;}
.ws3e{word-spacing:-2.450800px;}
.ws144{word-spacing:-2.440872px;}
.ws143{word-spacing:-2.416824px;}
.wsd0{word-spacing:-2.386764px;}
.ws194{word-spacing:-2.338668px;}
.ws3b{word-spacing:-2.331248px;}
.ws193{word-spacing:-2.296584px;}
.ws1c4{word-spacing:-2.205734px;}
.ws185{word-spacing:-2.122236px;}
.ws56{word-spacing:-2.104200px;}
.ws16e{word-spacing:-2.080152px;}
.ws110{word-spacing:-2.074140px;}
.wsd1{word-spacing:-2.056104px;}
.wsc0{word-spacing:-2.032370px;}
.wsf5{word-spacing:-2.020032px;}
.wsf4{word-spacing:-1.995984px;}
.wsfc{word-spacing:-1.936742px;}
.ws8f{word-spacing:-1.912819px;}
.ws4{word-spacing:-1.908367px;}
.ws169{word-spacing:-1.761516px;}
.wsad{word-spacing:-1.743480px;}
.wsba{word-spacing:-1.731456px;}
.wsfd{word-spacing:-1.721549px;}
.wsb8{word-spacing:-1.719432px;}
.ws10f{word-spacing:-1.701396px;}
.ws16a{word-spacing:-1.671336px;}
.ws68{word-spacing:-1.667750px;}
.ws4f{word-spacing:-1.617228px;}
.ws1a4{word-spacing:-1.613941px;}
.ws100{word-spacing:-1.494390px;}
.ws69{word-spacing:-1.452557px;}
.wsc1{word-spacing:-1.374839px;}
.ws4e{word-spacing:-1.328652px;}
.ws3{word-spacing:-1.322630px;}
.wsb9{word-spacing:-1.304604px;}
.ws171{word-spacing:-1.280556px;}
.ws7f{word-spacing:-1.269000px;}
.ws3d{word-spacing:-1.255288px;}
.ws80{word-spacing:-1.252800px;}
.ws81{word-spacing:-1.236600px;}
.ws15c{word-spacing:-1.232460px;}
.ws134{word-spacing:-1.135736px;}
.wsc7{word-spacing:-1.075961px;}
.ws14b{word-spacing:-1.040076px;}
.ws19c{word-spacing:-0.997992px;}
.ws8d{word-spacing:-0.979956px;}
.ws94{word-spacing:-0.968371px;}
.ws13{word-spacing:-0.956410px;}
.ws166{word-spacing:-0.931860px;}
.ws14c{word-spacing:-0.901800px;}
.ws167{word-spacing:-0.895788px;}
.ws8e{word-spacing:-0.859716px;}
.ws6c{word-spacing:-0.753178px;}
.ws2d{word-spacing:-0.717307px;}
.ws95{word-spacing:-0.699379px;}
.wscf{word-spacing:-0.661320px;}
.ws13a{word-spacing:-0.657532px;}
.wsf1{word-spacing:-0.637272px;}
.ws199{word-spacing:-0.625248px;}
.wsf0{word-spacing:-0.601200px;}
.ws30{word-spacing:-0.597756px;}
.ws19a{word-spacing:-0.595188px;}
.ws19b{word-spacing:-0.583164px;}
.ws13e{word-spacing:-0.537984px;}
.ws25{word-spacing:-0.537980px;}
.ws6a{word-spacing:-0.486749px;}
.ws6b{word-spacing:-0.484186px;}
.ws86{word-spacing:-0.414828px;}
.wsec{word-spacing:-0.360720px;}
.wsd{word-spacing:-0.358654px;}
.ws4d{word-spacing:-0.330660px;}
.ws6{word-spacing:-0.298878px;}
.wsa9{word-spacing:-0.276552px;}
.ws1bc{word-spacing:-0.268992px;}
.ws72{word-spacing:-0.240480px;}
.ws17{word-spacing:-0.239102px;}
.ws1bb{word-spacing:-0.215194px;}
.ws106{word-spacing:-0.198396px;}
.wsc{word-spacing:-0.179327px;}
.ws1b7{word-spacing:-0.161395px;}
.wsa8{word-spacing:-0.144288px;}
.ws40{word-spacing:-0.143640px;}
.wsb{word-spacing:-0.119551px;}
.wsaa{word-spacing:-0.114228px;}
.ws13d{word-spacing:-0.108000px;}
.ws37{word-spacing:-0.107597px;}
.ws6e{word-spacing:-0.081396px;}
.ws41{word-spacing:-0.076608px;}
.ws20{word-spacing:-0.059776px;}
.ws1aa{word-spacing:-0.053798px;}
.ws1b4{word-spacing:-0.024826px;}
.ws1b6{word-spacing:-0.007824px;}
.ws1b5{word-spacing:-0.001824px;}
.ws1c{word-spacing:-0.001225px;}
.ws1{word-spacing:0.000000px;}
.wsbf{word-spacing:0.001200px;}
.ws181{word-spacing:0.018036px;}
.wsac{word-spacing:0.024048px;}
.wsdb{word-spacing:0.030060px;}
.ws4c{word-spacing:0.042084px;}
.ws19d{word-spacing:0.048096px;}
.ws90{word-spacing:0.053798px;}
.ws24{word-spacing:0.059776px;}
.ws7e{word-spacing:0.072144px;}
.ws10e{word-spacing:0.078156px;}
.wsd6{word-spacing:0.084168px;}
.ws17d{word-spacing:0.090180px;}
.ws165{word-spacing:0.096192px;}
.ws1b1{word-spacing:0.107597px;}
.wsce{word-spacing:0.108216px;}
.ws84{word-spacing:0.113400px;}
.ws61{word-spacing:0.114228px;}
.wsf{word-spacing:0.119551px;}
.ws122{word-spacing:0.126252px;}
.ws9a{word-spacing:0.132264px;}
.ws4b{word-spacing:0.135000px;}
.wsb3{word-spacing:0.138276px;}
.ws152{word-spacing:0.140400px;}
.wsab{word-spacing:0.150300px;}
.ws6f{word-spacing:0.151200px;}
.ws70{word-spacing:0.156600px;}
.ws1b2{word-spacing:0.161395px;}
.ws151{word-spacing:0.162000px;}
.wsa3{word-spacing:0.167400px;}
.ws14{word-spacing:0.179327px;}
.wsa7{word-spacing:0.183600px;}
.ws71{word-spacing:0.194400px;}
.wsb4{word-spacing:0.204408px;}
.ws85{word-spacing:0.216000px;}
.wsd5{word-spacing:0.228456px;}
.ws12{word-spacing:0.239102px;}
.ws91{word-spacing:0.268992px;}
.ws66{word-spacing:0.298878px;}
.ws1af{word-spacing:0.322790px;}
.ws22{word-spacing:0.358654px;}
.wseb{word-spacing:0.360720px;}
.ws5c{word-spacing:0.378756px;}
.ws192{word-spacing:0.390780px;}
.ws198{word-spacing:0.414828px;}
.ws29{word-spacing:0.418429px;}
.ws1a1{word-spacing:0.432864px;}
.ws15e{word-spacing:0.456912px;}
.ws15f{word-spacing:0.480960px;}
.ws1b3{word-spacing:0.484186px;}
.ws5b{word-spacing:0.486972px;}
.ws140{word-spacing:0.537980px;}
.wsfe{word-spacing:0.597756px;}
.ws125{word-spacing:0.715428px;}
.ws17c{word-spacing:0.727452px;}
.ws124{word-spacing:0.733464px;}
.ws77{word-spacing:0.745488px;}
.ws18f{word-spacing:0.775548px;}
.ws78{word-spacing:0.811620px;}
.ws89{word-spacing:0.817632px;}
.ws8a{word-spacing:0.829656px;}
.ws79{word-spacing:0.841680px;}
.ws183{word-spacing:0.847692px;}
.ws17e{word-spacing:0.869400px;}
.ws184{word-spacing:0.871740px;}
.ws17f{word-spacing:0.891000px;}
.ws132{word-spacing:0.956410px;}
.ws1c1{word-spacing:0.968371px;}
.ws180{word-spacing:0.982800px;}
.ws27{word-spacing:1.016185px;}
.ws1b8{word-spacing:1.022170px;}
.ws113{word-spacing:1.106208px;}
.ws101{word-spacing:1.135736px;}
.ws10d{word-spacing:1.136268px;}
.ws18a{word-spacing:1.142280px;}
.ws75{word-spacing:1.154304px;}
.ws170{word-spacing:1.178352px;}
.ws1ab{word-spacing:1.183565px;}
.ws18b{word-spacing:1.190376px;}
.ws18{word-spacing:1.195512px;}
.ws119{word-spacing:1.208412px;}
.ws13f{word-spacing:1.237363px;}
.ws96{word-spacing:1.255288px;}
.ws142{word-spacing:1.274544px;}
.ws23{word-spacing:1.315063px;}
.ws118{word-spacing:1.394784px;}
.ws1ba{word-spacing:1.398758px;}
.ws135{word-spacing:1.434614px;}
.wscd{word-spacing:1.484964px;}
.ws52{word-spacing:1.503000px;}
.ws158{word-spacing:1.515024px;}
.ws130{word-spacing:1.521036px;}
.ws53{word-spacing:1.533060px;}
.ws109{word-spacing:1.545084px;}
.ws141{word-spacing:1.551096px;}
.wsbe{word-spacing:1.554166px;}
.ws1c7{word-spacing:1.560154px;}
.ws131{word-spacing:1.593180px;}
.ws9b{word-spacing:1.611216px;}
.ws1b0{word-spacing:1.613952px;}
.ws9c{word-spacing:1.647288px;}
.ws10a{word-spacing:1.659312px;}
.wsc6{word-spacing:1.775347px;}
.wsbd{word-spacing:1.793268px;}
.ws196{word-spacing:1.821636px;}
.wsed{word-spacing:1.863720px;}
.ws16b{word-spacing:1.887768px;}
.wse9{word-spacing:1.899792px;}
.wse4{word-spacing:1.911816px;}
.wse8{word-spacing:1.917828px;}
.ws16c{word-spacing:1.923840px;}
.wse5{word-spacing:1.959912px;}
.ws164{word-spacing:1.977948px;}
.ws1c0{word-spacing:2.044339px;}
.ws102{word-spacing:2.092146px;}
.ws160{word-spacing:2.200392px;}
.ws7c{word-spacing:2.206404px;}
.ws121{word-spacing:2.218428px;}
.wsd4{word-spacing:2.230452px;}
.ws2b{word-spacing:2.271473px;}
.ws9d{word-spacing:2.326644px;}
.ws2c{word-spacing:2.331248px;}
.ws9e{word-spacing:2.344680px;}
.wscc{word-spacing:2.350692px;}
.wsd3{word-spacing:2.368728px;}
.ws7b{word-spacing:2.374740px;}
.ws136{word-spacing:2.450800px;}
.wse1{word-spacing:2.543076px;}
.ws182{word-spacing:2.549088px;}
.ws12d{word-spacing:2.561112px;}
.ws139{word-spacing:2.570351px;}
.ws97{word-spacing:2.585160px;}
.ws107{word-spacing:2.591172px;}
.ws11b{word-spacing:2.597184px;}
.wse0{word-spacing:2.615220px;}
.ws120{word-spacing:2.621232px;}
.ws5d{word-spacing:2.627244px;}
.ws161{word-spacing:2.699388px;}
.ws12c{word-spacing:2.747484px;}
.ws108{word-spacing:2.753496px;}
.wsf9{word-spacing:2.809453px;}
.wsf8{word-spacing:2.869229px;}
.ws3f{word-spacing:2.929004px;}
.ws117{word-spacing:2.963916px;}
.ws162{word-spacing:2.969928px;}
.ws116{word-spacing:2.993976px;}
.ws163{word-spacing:3.006000px;}
.ws1c3{word-spacing:3.012710px;}
.ws2e{word-spacing:3.048556px;}
.ws138{word-spacing:3.108331px;}
.ws1a7{word-spacing:3.168107px;}
.ws28{word-spacing:3.227882px;}
.ws17a{word-spacing:3.318624px;}
.ws1ce{word-spacing:3.389299px;}
.wsbb{word-spacing:3.407209px;}
.ws177{word-spacing:3.408804px;}
.ws17b{word-spacing:3.414816px;}
.ws83{word-spacing:3.429000px;}
.ws82{word-spacing:3.439800px;}
.wsfb{word-spacing:3.466985px;}
.ws15d{word-spacing:3.643272px;}
.wsf7{word-spacing:3.646312px;}
.ws7d{word-spacing:3.661308px;}
.ws11e{word-spacing:3.703392px;}
.ws11f{word-spacing:3.709404px;}
.wsb2{word-spacing:3.739464px;}
.wsbc{word-spacing:3.765863px;}
.ws7{word-spacing:3.825638px;}
.ws1b{word-spacing:3.885414px;}
.ws5e{word-spacing:3.973932px;}
.ws3c{word-spacing:4.004965px;}
.ws149{word-spacing:4.046076px;}
.wse{word-spacing:4.064741px;}
.ws14a{word-spacing:4.070124px;}
.wsb1{word-spacing:4.118220px;}
.ws1c6{word-spacing:4.142477px;}
.ws1a6{word-spacing:4.244068px;}
.ws5f{word-spacing:4.370724px;}
.wsb5{word-spacing:4.418820px;}
.wsd9{word-spacing:4.465800px;}
.wsda{word-spacing:4.476600px;}
.ws39{word-spacing:4.483170px;}
.ws11{word-spacing:4.542946px;}
.ws36{word-spacing:4.572864px;}
.wsff{word-spacing:4.602721px;}
.ws1c8{word-spacing:4.626662px;}
.ws188{word-spacing:4.719420px;}
.ws1ad{word-spacing:4.734259px;}
.ws189{word-spacing:4.749480px;}
.ws7a{word-spacing:4.761504px;}
.wsde{word-spacing:4.767516px;}
.wsb7{word-spacing:4.791564px;}
.wsdf{word-spacing:4.809600px;}
.wsb6{word-spacing:4.863708px;}
.ws35{word-spacing:4.949453px;}
.ws1c5{word-spacing:5.057050px;}
.ws11c{word-spacing:5.080140px;}
.ws76{word-spacing:5.086152px;}
.ws195{word-spacing:5.122224px;}
.ws147{word-spacing:5.158296px;}
.ws11d{word-spacing:5.176332px;}
.ws148{word-spacing:5.236452px;}
.ws1bd{word-spacing:5.378986px;}
.ws2a{word-spacing:5.379804px;}
.ws2{word-spacing:5.379840px;}
.ws1be{word-spacing:5.433638px;}
.wsc9{word-spacing:5.439580px;}
.ws88{word-spacing:5.470920px;}
.ws145{word-spacing:5.476932px;}
.ws178{word-spacing:5.506992px;}
.ws146{word-spacing:5.531040px;}
.ws179{word-spacing:5.621220px;}
.wse2{word-spacing:5.777532px;}
.ws3a{word-spacing:5.798233px;}
.ws173{word-spacing:5.849676px;}
.ws137{word-spacing:5.858009px;}
.wse3{word-spacing:5.861700px;}
.ws154{word-spacing:5.873724px;}
.ws103{word-spacing:5.907600px;}
.ws92{word-spacing:5.917784px;}
.ws105{word-spacing:5.918400px;}
.ws104{word-spacing:5.934600px;}
.ws15{word-spacing:5.977560px;}
.ws172{word-spacing:5.987952px;}
.ws153{word-spacing:6.024024px;}
.ws1a5{word-spacing:6.037336px;}
.ws26{word-spacing:6.097111px;}
.ws16d{word-spacing:6.180336px;}
.ws186{word-spacing:6.204384px;}
.ws9{word-spacing:6.216662px;}
.ws129{word-spacing:6.228432px;}
.ws12a{word-spacing:6.246468px;}
.ws187{word-spacing:6.252480px;}
.ws197{word-spacing:6.270516px;}
.ws12b{word-spacing:6.288552px;}
.ws1c9{word-spacing:6.455808px;}
.wsf6{word-spacing:6.510996px;}
.ws1a3{word-spacing:6.515540px;}
.wsef{word-spacing:6.541056px;}
.ws1a9{word-spacing:6.563405px;}
.ws21{word-spacing:6.575316px;}
.wsee{word-spacing:6.589152px;}
.ws168{word-spacing:6.595164px;}
.ws60{word-spacing:6.745464px;}
.wsae{word-spacing:6.859692px;}
.wsa{word-spacing:6.874194px;}
.ws127{word-spacing:6.907788px;}
.ws1a8{word-spacing:6.939994px;}
.ws126{word-spacing:6.949872px;}
.ws10b{word-spacing:6.961896px;}
.ws10c{word-spacing:6.973920px;}
.ws12e{word-spacing:6.985944px;}
.ws93{word-spacing:6.993745px;}
.ws12f{word-spacing:7.058088px;}
.ws159{word-spacing:7.310592px;}
.ws15b{word-spacing:7.316604px;}
.wsb0{word-spacing:7.364700px;}
.ws15a{word-spacing:7.370712px;}
.wsaf{word-spacing:7.412796px;}
.ws6d{word-spacing:7.471950px;}
.ws50{word-spacing:7.671312px;}
.wsfa{word-spacing:7.830604px;}
.ws51{word-spacing:7.959888px;}
.ws1a2{word-spacing:7.977924px;}
.wsc5{word-spacing:8.069760px;}
.ws123{word-spacing:8.104176px;}
.ws16{word-spacing:8.368584px;}
.wscb{word-spacing:8.428824px;}
.wsca{word-spacing:8.488944px;}
.wsc4{word-spacing:8.500147px;}
.ws19f{word-spacing:8.717400px;}
.ws1b9{word-spacing:8.930534px;}
.ws1a0{word-spacing:9.054072px;}
.ws42{word-spacing:9.097200px;}
.ws111{word-spacing:9.102168px;}
.ws14f{word-spacing:9.120600px;}
.ws112{word-spacing:9.126216px;}
.ws150{word-spacing:9.142200px;}
.ws14d{word-spacing:9.153000px;}
.ws14e{word-spacing:9.174600px;}
.ws1c2{word-spacing:9.307123px;}
.ws5a{word-spacing:9.793548px;}
.ws49{word-spacing:9.919800px;}
.ws48{word-spacing:9.925200px;}
.ws4a{word-spacing:9.946800px;}
.ws155{word-spacing:10.130220px;}
.ws87{word-spacing:10.142244px;}
.wsea{word-spacing:10.148256px;}
.ws65{word-spacing:10.341179px;}
.ws1bf{word-spacing:10.598285px;}
.ws9f{word-spacing:10.857672px;}
.wsdd{word-spacing:10.911780px;}
.wsdc{word-spacing:11.086128px;}
.ws175{word-spacing:11.296548px;}
.ws176{word-spacing:11.380716px;}
.wsd2{word-spacing:12.288528px;}
.ws1ac{word-spacing:12.588826px;}
.ws55{word-spacing:12.643236px;}
.wse7{word-spacing:12.673296px;}
.ws54{word-spacing:12.703356px;}
.wsd8{word-spacing:12.738600px;}
.wsd7{word-spacing:12.754800px;}
.wse6{word-spacing:12.757464px;}
.ws73{word-spacing:12.763476px;}
.ws1cc{word-spacing:13.718592px;}
.ws157{word-spacing:13.773492px;}
.ws156{word-spacing:14.152248px;}
.wsa6{word-spacing:14.175000px;}
.wsa5{word-spacing:14.212800px;}
.wsa4{word-spacing:14.239800px;}
.ws2f{word-spacing:14.346144px;}
.ws59{word-spacing:14.476896px;}
.ws58{word-spacing:14.531004px;}
.ws99{word-spacing:15.589116px;}
.ws98{word-spacing:15.685308px;}
.ws190{word-spacing:19.172268px;}
.ws191{word-spacing:19.304532px;}
.ws1cd{word-spacing:19.690214px;}
.wsf2{word-spacing:19.887696px;}
.wsf3{word-spacing:19.893708px;}
.ws1ca{word-spacing:21.196570px;}
.ws57{word-spacing:22.003920px;}
.ws1cf{word-spacing:48.418560px;}
.ws1cb{word-spacing:49.225536px;}
.ws1e{word-spacing:929.871567px;}
._1{margin-left:-7.711052px;}
._0{margin-left:-5.917824px;}
._2{margin-left:-4.423394px;}
._1b{margin-left:-3.347434px;}
._6{margin-left:-2.293512px;}
._4{margin-left:-1.052117px;}
._7{width:1.091170px;}
._21{width:2.108952px;}
._15{width:3.350667px;}
._3{width:12.427430px;}
._d{width:14.069306px;}
._12{width:15.437958px;}
._e{width:16.737210px;}
._5{width:18.829440px;}
._8{width:19.851685px;}
._b{width:21.780358px;}
._9{width:23.671138px;}
._c{width:25.769627px;}
._17{width:26.779469px;}
._1a{width:29.050942px;}
._10{width:31.119244px;}
._18{width:32.289107px;}
._a{width:33.653663px;}
._14{width:34.837418px;}
._11{width:37.598852px;}
._16{width:38.756628px;}
._1d{width:40.719271px;}
._19{width:44.987183px;}
._20{width:77.567438px;}
._1f{width:82.795738px;}
._1e{width:88.767360px;}
._13{width:1622.715938px;}
._1c{width:1998.854700px;}
._f{width:2022.764700px;}
.fc4{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(74,73,130);}
.fs6{font-size:41.936104px;}
.fs7{font-size:45.429600px;}
.fs5{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs4{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fsa{font-size:72.000000px;}
.fs3{font-size:81.772800px;}
.fs2{font-size:107.596800px;}
.fsd{font-size:108.000000px;}
.fs0{font-size:114.129254px;}
.ya2{bottom:-793.048929px;}
.ya1{bottom:-772.799010px;}
.ya0{bottom:-752.549091px;}
.y9f{bottom:-732.299172px;}
.y9e{bottom:-712.049253px;}
.y9d{bottom:-682.889550px;}
.y9c{bottom:-645.090450px;}
.y163{bottom:-638.738607px;}
.y9b{bottom:-625.560000px;}
.y162{bottom:-618.488688px;}
.y9a{bottom:-606.029550px;}
.y161{bottom:-598.238769px;}
.y1ed{bottom:-588.122769px;}
.y99{bottom:-581.639550px;}
.y160{bottom:-578.079030px;}
.y1ec{bottom:-567.872850px;}
.y15f{bottom:-557.829111px;}
.y1eb{bottom:-547.713111px;}
.y15e{bottom:-537.579192px;}
.y1ea{bottom:-527.463192px;}
.y15d{bottom:-517.329273px;}
.y1e9{bottom:-507.213273px;}
.y1bd{bottom:-499.074390px;}
.y15c{bottom:-497.079354px;}
.y1e8{bottom:-486.963354px;}
.y1bc{bottom:-478.824471px;}
.y15b{bottom:-476.829435px;}
.y1e7{bottom:-466.713435px;}
.y133{bottom:-466.161696px;}
.y1bb{bottom:-458.664732px;}
.y15a{bottom:-456.579516px;}
.y1e6{bottom:-446.463516px;}
.y132{bottom:-445.911777px;}
.ye6{bottom:-441.466686px;}
.y1ba{bottom:-438.414813px;}
.y159{bottom:-436.419777px;}
.y1e5{bottom:-426.213597px;}
.y131{bottom:-425.661858px;}
.ye5{bottom:-421.216767px;}
.y1b9{bottom:-418.164894px;}
.y158{bottom:-416.169858px;}
.y1e4{bottom:-406.053858px;}
.y130{bottom:-405.411939px;}
.y76{bottom:-403.088448px;}
.ye4{bottom:-400.966848px;}
.y1b8{bottom:-397.914975px;}
.y157{bottom:-395.919939px;}
.y1e3{bottom:-385.803939px;}
.y12f{bottom:-385.162020px;}
.y75{bottom:-382.838529px;}
.ye3{bottom:-380.716929px;}
.y1b7{bottom:-377.665056px;}
.y156{bottom:-375.670020px;}
.y1e2{bottom:-365.554020px;}
.y12e{bottom:-364.912101px;}
.y74{bottom:-362.588610px;}
.ye2{bottom:-360.467010px;}
.y1b6{bottom:-357.415137px;}
.y155{bottom:-355.420101px;}
.y1e1{bottom:-345.304101px;}
.y12d{bottom:-344.662182px;}
.y73{bottom:-342.338691px;}
.ye1{bottom:-340.307271px;}
.y1b5{bottom:-337.165218px;}
.y154{bottom:-335.170182px;}
.y1e0{bottom:-325.054182px;}
.y12c{bottom:-324.502443px;}
.y72{bottom:-322.088772px;}
.ye0{bottom:-320.057352px;}
.y1b4{bottom:-317.005479px;}
.y153{bottom:-314.920263px;}
.y1df{bottom:-304.804263px;}
.y12b{bottom:-304.252524px;}
.y71{bottom:-301.838853px;}
.ydf{bottom:-299.807433px;}
.y1b3{bottom:-296.755560px;}
.y152{bottom:-294.760524px;}
.y1de{bottom:-284.644524px;}
.y12a{bottom:-284.002605px;}
.y70{bottom:-281.588934px;}
.y1b2{bottom:-276.505641px;}
.y151{bottom:-274.510605px;}
.yde{bottom:-270.557550px;}
.y98{bottom:-270.058344px;}
.y1dd{bottom:-264.394605px;}
.y129{bottom:-263.752686px;}
.y6f{bottom:-261.339015px;}
.y1b1{bottom:-256.255722px;}
.y150{bottom:-254.260686px;}
.y97{bottom:-249.808425px;}
.y104{bottom:-247.446186px;}
.y1dc{bottom:-244.144686px;}
.y128{bottom:-243.502767px;}
.y6e{bottom:-241.179276px;}
.y1b0{bottom:-236.005803px;}
.y14f{bottom:-234.010767px;}
.ydd{bottom:-232.848000px;}
.y96{bottom:-229.558506px;}
.y103{bottom:-227.196267px;}
.y1db{bottom:-223.894767px;}
.y127{bottom:-223.252848px;}
.y6d{bottom:-220.929357px;}
.y1af{bottom:-215.755884px;}
.y14e{bottom:-213.760848px;}
.ydc{bottom:-213.317550px;}
.y95{bottom:-209.308587px;}
.y102{bottom:-206.946348px;}
.y1da{bottom:-203.644848px;}
.y126{bottom:-203.093109px;}
.yc8{bottom:-202.402929px;}
.y6c{bottom:-200.679438px;}
.y1ae{bottom:-195.505965px;}
.y14d{bottom:-193.510929px;}
.y94{bottom:-189.148848px;}
.ydb{bottom:-188.837550px;}
.y101{bottom:-186.696429px;}
.y1d9{bottom:-183.394929px;}
.y125{bottom:-182.843190px;}
.yc7{bottom:-182.153010px;}
.y6b{bottom:-180.429519px;}
.y1ad{bottom:-175.346226px;}
.y14c{bottom:-173.261010px;}
.y93{bottom:-168.898929px;}
.y100{bottom:-166.446510px;}
.y1d8{bottom:-163.145010px;}
.y124{bottom:-162.593271px;}
.yc6{bottom:-161.903091px;}
.y6a{bottom:-160.179600px;}
.y1ac{bottom:-155.096307px;}
.y14b{bottom:-153.101271px;}
.y92{bottom:-148.649010px;}
.yff{bottom:-146.286771px;}
.y1d7{bottom:-142.985271px;}
.y123{bottom:-142.343352px;}
.yc5{bottom:-141.653172px;}
.y1ab{bottom:-134.846388px;}
.y14a{bottom:-132.851352px;}
.y69{bottom:-130.929717px;}
.y91{bottom:-128.399091px;}
.yfe{bottom:-126.036852px;}
.y1d6{bottom:-122.735352px;}
.y122{bottom:-122.093433px;}
.yc4{bottom:-121.403253px;}
.y1aa{bottom:-114.596469px;}
.y149{bottom:-112.601433px;}
.y90{bottom:-108.149172px;}
.yfd{bottom:-105.786933px;}
.y1d5{bottom:-102.485433px;}
.y1a9{bottom:-94.346550px;}
.y121{bottom:-92.843550px;}
.y68{bottom:-92.770050px;}
.yc3{bottom:-92.243550px;}
.y8f{bottom:-87.899253px;}
.y148{bottom:-83.351550px;}
.yfc{bottom:-76.537050px;}
.y1d4{bottom:-73.235550px;}
.y8e{bottom:-58.739550px;}
.y1a8{bottom:-56.637450px;}
.y120{bottom:-55.134450px;}
.y67{bottom:-54.970950px;}
.yc2{bottom:-54.444450px;}
.y147{bottom:-45.642000px;}
.yfb{bottom:-38.827500px;}
.y1a7{bottom:-37.107000px;}
.yda{bottom:-36.287550px;}
.y11f{bottom:-35.604000px;}
.y66{bottom:-35.440500px;}
.y1d3{bottom:-35.436000px;}
.yc1{bottom:-34.914000px;}
.y146{bottom:-26.111550px;}
.y8d{bottom:-20.939550px;}
.yfa{bottom:-19.297050px;}
.y1a6{bottom:-17.576550px;}
.yd9{bottom:-16.757550px;}
.y11e{bottom:-16.073550px;}
.y65{bottom:-15.910050px;}
.y1d2{bottom:-15.905550px;}
.yc0{bottom:-15.383550px;}
.y145{bottom:-1.631550px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.739201px;}
.yf{bottom:3.425340px;}
.y8c{bottom:3.540450px;}
.yf9{bottom:5.182950px;}
.y1a5{bottom:6.904683px;}
.yd8{bottom:7.632450px;}
.y1ef{bottom:7.650600px;}
.y11d{bottom:8.406450px;}
.y64{bottom:8.479950px;}
.y1d1{bottom:8.484450px;}
.ybf{bottom:9.006450px;}
.ye{bottom:14.151273px;}
.y2{bottom:30.271042px;}
.y33{bottom:63.780000px;}
.y32{bottom:116.035500px;}
.yce{bottom:117.000000px;}
.y141{bottom:118.269000px;}
.y224{bottom:118.774500px;}
.y200{bottom:119.023500px;}
.y109{bottom:120.126000px;}
.y177{bottom:120.909000px;}
.y10a{bottom:125.550000px;}
.y1bf{bottom:133.983450px;}
.y256{bottom:134.203500px;}
.y31{bottom:136.299000px;}
.ycd{bottom:137.265000px;}
.y223{bottom:138.142500px;}
.y140{bottom:138.532500px;}
.y1ff{bottom:139.287000px;}
.y108{bottom:140.389500px;}
.y176{bottom:141.172500px;}
.y1f0{bottom:149.604450px;}
.y255{bottom:153.570000px;}
.y30{bottom:156.562500px;}
.y222{bottom:157.509000px;}
.yf8{bottom:157.732950px;}
.y13f{bottom:158.796000px;}
.y1fe{bottom:159.552000px;}
.y175{bottom:161.437500px;}
.y19a{bottom:163.650000px;}
.ycc{bottom:166.495500px;}
.y107{bottom:169.620000px;}
.y254{bottom:172.938000px;}
.y2f{bottom:176.827500px;}
.y221{bottom:176.877000px;}
.yf7{bottom:177.262950px;}
.y13e{bottom:179.061000px;}
.y1fd{bottom:179.815500px;}
.y174{bottom:181.701000px;}
.y199{bottom:183.913500px;}
.y220{bottom:196.245000px;}
.y2e{bottom:197.091000px;}
.ycb{bottom:198.118500px;}
.y13d{bottom:199.324500px;}
.y1fc{bottom:200.079000px;}
.y106{bottom:201.243000px;}
.yf6{bottom:201.652950px;}
.y173{bottom:201.964500px;}
.y198{bottom:204.178500px;}
.y253{bottom:205.794000px;}
.y21f{bottom:215.611500px;}
.yca{bottom:217.350000px;}
.y2d{bottom:217.356000px;}
.y61{bottom:217.927500px;}
.y13c{bottom:219.589500px;}
.y1d0{bottom:220.165701px;}
.y1fb{bottom:220.344000px;}
.y105{bottom:220.476000px;}
.y89{bottom:222.181500px;}
.y172{bottom:222.229500px;}
.y197{bottom:224.442000px;}
.y252{bottom:225.162000px;}
.y21e{bottom:234.979500px;}
.yc9{bottom:236.583000px;}
.y2c{bottom:237.619500px;}
.y60{bottom:238.191000px;}
.y13b{bottom:239.853000px;}
.y1cf{bottom:240.415620px;}
.y1fa{bottom:240.607500px;}
.y88{bottom:242.445000px;}
.y171{bottom:242.493000px;}
.yed{bottom:242.905500px;}
.y251{bottom:244.528500px;}
.y196{bottom:244.707000px;}
.y21d{bottom:254.346000px;}
.y2b{bottom:257.883000px;}
.y5f{bottom:258.454500px;}
.yb0{bottom:259.012500px;}
.y13a{bottom:260.116500px;}
.y1ce{bottom:260.665539px;}
.y1f9{bottom:260.872500px;}
.y86{bottom:262.708500px;}
.y170{bottom:262.758000px;}
.y250{bottom:263.896500px;}
.y195{bottom:264.970500px;}
.y87{bottom:268.134000px;}
.y21c{bottom:273.714000px;}
.y2a{bottom:278.148000px;}
.y5e{bottom:278.719500px;}
.y139{bottom:280.381500px;}
.y1cd{bottom:280.825278px;}
.y1f8{bottom:281.136000px;}
.y85{bottom:282.973500px;}
.y16f{bottom:283.021500px;}
.y24f{bottom:283.264500px;}
.y194{bottom:285.234000px;}
.y21b{bottom:293.082000px;}
.y8b{bottom:293.790450px;}
.y28{bottom:298.411500px;}
.y5d{bottom:298.983000px;}
.y138{bottom:300.645000px;}
.y1cc{bottom:301.075197px;}
.y1f7{bottom:301.399500px;}
.y24e{bottom:302.631000px;}
.y84{bottom:303.237000px;}
.y16e{bottom:303.285000px;}
.y29{bottom:303.837000px;}
.y193{bottom:305.499000px;}
.y21a{bottom:312.448500px;}
.y27{bottom:318.676500px;}
.y5c{bottom:319.248000px;}
.ybe{bottom:320.587656px;}
.y1cb{bottom:321.325116px;}
.y1f5{bottom:321.664500px;}
.y24d{bottom:321.999000px;}
.y83{bottom:323.502000px;}
.y16d{bottom:323.550000px;}
.y192{bottom:325.762500px;}
.y1f6{bottom:327.088500px;}
.y1be{bottom:328.113450px;}
.y137{bottom:329.875500px;}
.y219{bottom:331.816500px;}
.y26{bottom:338.940000px;}
.y5b{bottom:339.511500px;}
.ybd{bottom:340.837575px;}
.y24c{bottom:341.367000px;}
.y1ca{bottom:341.575035px;}
.y1f4{bottom:341.928000px;}
.y82{bottom:343.765500px;}
.y16c{bottom:343.813500px;}
.y190{bottom:346.027500px;}
.y218{bottom:351.183000px;}
.y191{bottom:351.451500px;}
.y5a{bottom:359.775000px;}
.y24b{bottom:360.733500px;}
.ybc{bottom:361.087494px;}
.y136{bottom:361.498500px;}
.y1c9{bottom:361.824954px;}
.y81{bottom:364.029000px;}
.y16b{bottom:364.078500px;}
.y18f{bottom:366.291000px;}
.y25{bottom:368.170500px;}
.y217{bottom:370.551000px;}
.y1f3{bottom:371.158500px;}
.y59{bottom:380.040000px;}
.y24a{bottom:380.101500px;}
.y135{bottom:380.731500px;}
.ybb{bottom:381.337413px;}
.y1c8{bottom:382.074873px;}
.y80{bottom:384.294000px;}
.y16a{bottom:384.342000px;}
.y18e{bottom:386.554500px;}
.y216{bottom:389.919000px;}
.y1a4{bottom:398.944197px;}
.y249{bottom:399.468000px;}
.y134{bottom:399.964500px;}
.y58{bottom:400.303500px;}
.yba{bottom:401.497152px;}
.y1c7{bottom:402.324792px;}
.y1f2{bottom:402.781500px;}
.y7f{bottom:404.557500px;}
.y169{bottom:404.605500px;}
.y11c{bottom:405.306855px;}
.y18d{bottom:406.819500px;}
.y215{bottom:409.285500px;}
.yec{bottom:411.172500px;}
.y248{bottom:418.836000px;}
.y1a3{bottom:419.194116px;}
.y57{bottom:420.568500px;}
.yb9{bottom:421.747071px;}
.y1f1{bottom:422.014500px;}
.y112{bottom:422.394000px;}
.y1c6{bottom:422.484531px;}
.y7e{bottom:424.822500px;}
.y168{bottom:424.870500px;}
.y11b{bottom:425.556774px;}
.y18c{bottom:427.083000px;}
.y214{bottom:428.653500px;}
.yeb{bottom:431.437500px;}
.y144{bottom:438.018450px;}
.y247{bottom:438.204000px;}
.y1a2{bottom:439.444035px;}
.yb8{bottom:441.996990px;}
.y1c5{bottom:442.734450px;}
.y1c3{bottom:444.444000px;}
.y24{bottom:444.586500px;}
.y7d{bottom:445.086000px;}
.y167{bottom:445.134000px;}
.y11a{bottom:445.806693px;}
.y18b{bottom:447.348000px;}
.y213{bottom:448.020000px;}
.y56{bottom:449.799000px;}
.yea{bottom:451.701000px;}
.y246{bottom:457.570500px;}
.y1a1{bottom:459.693954px;}
.yb7{bottom:462.246909px;}
.y23{bottom:464.850000px;}
.y7c{bottom:465.349500px;}
.y166{bottom:465.399000px;}
.y119{bottom:466.056612px;}
.y212{bottom:467.388000px;}
.y18a{bottom:467.611500px;}
.ye9{bottom:471.966000px;}
.yd7{bottom:476.713116px;}
.y245{bottom:476.938500px;}
.y1a0{bottom:479.943873px;}
.y1c4{bottom:480.084450px;}
.yb6{bottom:482.496828px;}
.y55{bottom:484.618500px;}
.y118{bottom:486.306531px;}
.y211{bottom:486.756000px;}
.y189{bottom:487.875000px;}
.y7b{bottom:494.580000px;}
.y165{bottom:494.628000px;}
.y244{bottom:496.305000px;}
.yd6{bottom:496.963035px;}
.y19f{bottom:500.193792px;}
.yb5{bottom:502.746747px;}
.y22{bottom:503.047500px;}
.y54{bottom:504.882000px;}
.y210{bottom:506.122500px;}
.y117{bottom:506.556873px;}
.ye8{bottom:506.965500px;}
.y188{bottom:508.140000px;}
.y243{bottom:515.673000px;}
.yd5{bottom:517.212954px;}
.y19e{bottom:520.353531px;}
.y63{bottom:523.009950px;}
.y21{bottom:523.311000px;}
.y52{bottom:525.145500px;}
.y20f{bottom:525.490500px;}
.ye7{bottom:526.198500px;}
.y164{bottom:526.252500px;}
.y116{bottom:526.806792px;}
.y186{bottom:528.403500px;}
.y7a{bottom:529.399500px;}
.y53{bottom:530.571000px;}
.yb4{bottom:531.906450px;}
.y187{bottom:533.829000px;}
.y242{bottom:535.041000px;}
.yd4{bottom:537.462873px;}
.y19d{bottom:540.603450px;}
.y20{bottom:543.576000px;}
.y20e{bottom:544.857000px;}
.y51{bottom:545.410500px;}
.y115{bottom:546.966531px;}
.ycf{bottom:548.628000px;}
.y185{bottom:548.667000px;}
.y143{bottom:548.680500px;}
.y241{bottom:554.407500px;}
.yd3{bottom:557.712792px;}
.y79{bottom:561.022500px;}
.y1f{bottom:563.839500px;}
.y20d{bottom:564.225000px;}
.y50{bottom:565.674000px;}
.y114{bottom:567.216450px;}
.y184{bottom:568.932000px;}
.yb3{bottom:569.706450px;}
.y240{bottom:573.775500px;}
.yd2{bottom:577.872531px;}
.y19c{bottom:577.953450px;}
.y78{bottom:580.255500px;}
.y20c{bottom:583.593000px;}
.y1e{bottom:584.103000px;}
.y4f{bottom:585.939000px;}
.yaf{bottom:588.910500px;}
.y183{bottom:589.195500px;}
.y1ee{bottom:590.088000px;}
.y23f{bottom:593.142000px;}
.yb2{bottom:594.186450px;}
.yd1{bottom:598.122450px;}
.y77{bottom:599.488500px;}
.y20b{bottom:602.959500px;}
.y1d{bottom:604.368000px;}
.y113{bottom:604.566450px;}
.y4e{bottom:606.202500px;}
.yae{bottom:609.175500px;}
.y182{bottom:609.460500px;}
.y23e{bottom:612.510000px;}
.y62{bottom:621.918000px;}
.y20a{bottom:622.327500px;}
.y1c{bottom:624.631500px;}
.y4d{bottom:626.466000px;}
.yac{bottom:629.439000px;}
.y181{bottom:629.724000px;}
.y23d{bottom:631.878000px;}
.yad{bottom:634.864500px;}
.yd0{bottom:635.472450px;}
.y1a{bottom:644.896500px;}
.y4c{bottom:646.731000px;}
.yab{bottom:649.702500px;}
.y180{bottom:649.987500px;}
.y1b{bottom:650.320500px;}
.y209{bottom:650.661000px;}
.y23c{bottom:651.244500px;}
.y19{bottom:665.160000px;}
.y4b{bottom:666.994500px;}
.yaa{bottom:669.967500px;}
.y17f{bottom:670.252500px;}
.y23b{bottom:670.612500px;}
.yf5{bottom:670.733616px;}
.y18{bottom:685.423500px;}
.y1c2{bottom:685.504500px;}
.y4a{bottom:687.258000px;}
.y23a{bottom:689.979000px;}
.y208{bottom:690.112500px;}
.ya9{bottom:690.231000px;}
.y17e{bottom:690.516000px;}
.yf4{bottom:690.983535px;}
.y1c1{bottom:704.737500px;}
.y17{bottom:705.688500px;}
.y49{bottom:707.523000px;}
.y239{bottom:709.347000px;}
.ya8{bottom:710.496000px;}
.y17d{bottom:710.781000px;}
.yf3{bottom:711.233454px;}
.y207{bottom:714.277500px;}
.y1c0{bottom:723.970500px;}
.y15{bottom:725.952000px;}
.y48{bottom:727.786500px;}
.y238{bottom:728.715000px;}
.y206{bottom:729.475500px;}
.ya7{bottom:730.759500px;}
.y17c{bottom:731.044500px;}
.y16{bottom:731.377500px;}
.yf2{bottom:731.483373px;}
.y14{bottom:746.217000px;}
.y19b{bottom:746.400000px;}
.y47{bottom:748.051500px;}
.y237{bottom:748.081500px;}
.ya6{bottom:751.023000px;}
.y17b{bottom:751.308000px;}
.yf1{bottom:751.733292px;}
.y205{bottom:753.640500px;}
.y13{bottom:766.480500px;}
.y236{bottom:767.449500px;}
.y46{bottom:768.315000px;}
.y204{bottom:768.838500px;}
.ya5{bottom:771.288000px;}
.y17a{bottom:771.573000px;}
.yf0{bottom:771.893031px;}
.y203{bottom:784.036500px;}
.y12{bottom:786.744000px;}
.y235{bottom:786.816000px;}
.y45{bottom:788.578500px;}
.y179{bottom:791.836500px;}
.yef{bottom:792.142950px;}
.y202{bottom:799.234500px;}
.ya4{bottom:800.518500px;}
.y234{bottom:806.184000px;}
.y11{bottom:807.009000px;}
.y44{bottom:808.843500px;}
.y178{bottom:812.101500px;}
.y233{bottom:825.552000px;}
.y10{bottom:827.272500px;}
.y43{bottom:829.107000px;}
.yee{bottom:829.492950px;}
.ya3{bottom:832.141500px;}
.y111{bottom:832.365000px;}
.y232{bottom:844.918500px;}
.y42{bottom:849.372000px;}
.y110{bottom:852.628500px;}
.y8a{bottom:854.571000px;}
.yd{bottom:862.705464px;}
.yc{bottom:863.472000px;}
.y231{bottom:864.286500px;}
.y41{bottom:869.635500px;}
.y10f{bottom:872.893500px;}
.y230{bottom:883.653000px;}
.yb1{bottom:884.436450px;}
.y40{bottom:889.899000px;}
.y10e{bottom:893.157000px;}
.yb{bottom:902.478000px;}
.y22f{bottom:903.021000px;}
.y10d{bottom:913.422000px;}
.y3f{bottom:919.129500px;}
.ya{bottom:920.634000px;}
.y22e{bottom:922.389000px;}
.y10c{bottom:933.685500px;}
.y9{bottom:938.791500px;}
.y22d{bottom:941.755500px;}
.y3e{bottom:953.949000px;}
.y22c{bottom:961.123500px;}
.y8{bottom:965.914500px;}
.y3d{bottom:974.214000px;}
.y22b{bottom:980.490000px;}
.y3c{bottom:994.477500px;}
.y22a{bottom:999.858000px;}
.y10b{bottom:999.903000px;}
.y7{bottom:1010.451000px;}
.y3b{bottom:1014.742500px;}
.y229{bottom:1019.226000px;}
.y142{bottom:1020.166500px;}
.y39{bottom:1035.006000px;}
.y228{bottom:1038.592500px;}
.y3a{bottom:1040.430000px;}
.y6{bottom:1040.848500px;}
.y38{bottom:1055.269500px;}
.y227{bottom:1057.960500px;}
.y5{bottom:1071.244500px;}
.y37{bottom:1075.534500px;}
.y226{bottom:1077.327000px;}
.y36{bottom:1095.798000px;}
.y225{bottom:1096.695000px;}
.y4{bottom:1100.145000px;}
.y201{bottom:1101.223500px;}
.y35{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y34{bottom:1168.366500px;}
.hd{height:24.849991px;}
.h9{height:25.508090px;}
.h1e{height:32.697253px;}
.hb{height:33.112997px;}
.h23{height:33.570000px;}
.ha{height:34.199443px;}
.h25{height:37.927872px;}
.h16{height:38.896243px;}
.he{height:41.508281px;}
.h10{height:42.760020px;}
.h7{height:43.217759px;}
.h14{height:43.622227px;}
.h4{height:43.875290px;}
.h13{height:43.886426px;}
.h8{height:46.697011px;}
.h12{height:48.225586px;}
.h2{height:50.931027px;}
.hc{height:51.885221px;}
.h1d{height:52.558594px;}
.h15{height:53.691152px;}
.h11{height:64.300781px;}
.h24{height:75.726562px;}
.h3{height:77.379634px;}
.h5{height:77.792486px;}
.h6{height:82.154266px;}
.h21{height:96.451172px;}
.h20{height:97.887572px;}
.h1a{height:148.519500px;}
.h22{height:206.898000px;}
.h17{height:276.436500px;}
.h18{height:307.341000px;}
.h1f{height:384.607500px;}
.h1b{height:386.323500px;}
.h1c{height:423.240000px;}
.h19{height:462.730500px;}
.hf{height:509.089500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wd{width:19.980000px;}
.w3{width:75.364879px;}
.w2{width:207.609956px;}
.w5{width:567.468000px;}
.w8{width:602.665350px;}
.w7{width:645.589800px;}
.wc{width:668.769300px;}
.wb{width:669.628350px;}
.w4{width:671.344800px;}
.w6{width:674.779800px;}
.wa{width:677.354250px;}
.w9{width:679.071750px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x37{left:-49.132500px;}
.x48{left:-30.246150px;}
.x3a{left:-17.272606px;}
.x45{left:-8.783700px;}
.x0{left:0.000000px;}
.x49{left:1.614444px;}
.x2e{left:4.093800px;}
.x50{left:7.527750px;}
.x61{left:16.465350px;}
.x62{left:17.544912px;}
.x46{left:23.076894px;}
.x6{left:29.274117px;}
.x30{left:35.953800px;}
.x52{left:39.387750px;}
.x39{left:49.057500px;}
.x2{left:58.054042px;}
.x3f{left:102.283800px;}
.x1{left:114.802500px;}
.x4{left:122.110500px;}
.x3{left:123.307500px;}
.x69{left:132.667500px;}
.x34{left:137.667000px;}
.xa{left:145.476000px;}
.xd{left:146.692500px;}
.x35{left:148.096500px;}
.xb{left:155.881500px;}
.x36{left:162.723000px;}
.x1a{left:174.045000px;}
.x70{left:181.728000px;}
.x7{left:188.382000px;}
.xc{left:202.051500px;}
.x40{left:203.901000px;}
.x4f{left:205.678500px;}
.x31{left:209.403000px;}
.x53{left:212.961000px;}
.x3b{left:214.125000px;}
.x54{left:237.037500px;}
.x55{left:248.410500px;}
.x73{left:251.667000px;}
.x56{left:253.486500px;}
.x6f{left:261.663000px;}
.x74{left:267.238500px;}
.x57{left:268.431000px;}
.x4c{left:280.558500px;}
.x4d{left:295.501500px;}
.x4b{left:325.536000px;}
.x1b{left:336.057000px;}
.x6a{left:347.803800px;}
.x1c{left:351.000000px;}
.x5b{left:363.087000px;}
.x59{left:367.359000px;}
.x5c{left:377.476500px;}
.x5a{left:380.737500px;}
.x5f{left:398.289000px;}
.x60{left:409.032000px;}
.x63{left:419.094000px;}
.x64{left:429.558000px;}
.x8{left:436.105500px;}
.x9{left:446.427000px;}
.x68{left:447.694500px;}
.x41{left:489.850500px;}
.x17{left:503.716500px;}
.x18{left:511.188000px;}
.x65{left:513.393000px;}
.x66{left:522.363000px;}
.xf{left:536.746500px;}
.x10{left:544.218000px;}
.x29{left:545.439000px;}
.x21{left:552.772500px;}
.x2a{left:555.849000px;}
.x38{left:563.767500px;}
.x22{left:567.717000px;}
.x1d{left:587.622000px;}
.x23{left:589.780500px;}
.x4a{left:591.743850px;}
.x6d{left:593.763000px;}
.x1e{left:602.566500px;}
.x24{left:604.725000px;}
.x6e{left:608.707500px;}
.x25{left:612.346500px;}
.x3e{left:616.993800px;}
.x67{left:621.898500px;}
.x26{left:627.291000px;}
.x27{left:631.642500px;}
.x47{left:638.226300px;}
.x32{left:641.199000px;}
.x28{left:646.585500px;}
.x5d{left:653.301000px;}
.x33{left:661.374000px;}
.x5e{left:663.729000px;}
.x2f{left:665.323650px;}
.x58{left:671.277600px;}
.x51{left:673.797750px;}
.x44{left:675.816000px;}
.x1f{left:679.738500px;}
.x42{left:689.937000px;}
.x11{left:692.281500px;}
.x20{left:694.683000px;}
.x3d{left:696.891000px;}
.x12{left:699.754500px;}
.x5{left:701.339982px;}
.x6b{left:704.781000px;}
.x19{left:706.371000px;}
.x3c{left:708.472500px;}
.x6c{left:715.245000px;}
.x2b{left:720.550500px;}
.x2c{left:724.278000px;}
.x13{left:725.977500px;}
.x71{left:728.715000px;}
.x4e{left:731.754000px;}
.x14{left:733.449000px;}
.x2d{left:739.222500px;}
.x15{left:740.772000px;}
.x43{left:743.176500px;}
.x16{left:748.243500px;}
.x72{left:755.614500px;}
.xe{left:771.423000px;}
@media print{
.v3{vertical-align:-3.840000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.276800pt;}
.v1{vertical-align:34.720000pt;}
.ls4d{letter-spacing:-0.379424pt;}
.ls21{letter-spacing:-0.277888pt;}
.ls5d{letter-spacing:-0.192384pt;}
.ls57{letter-spacing:-0.176352pt;}
.ls2a{letter-spacing:-0.154976pt;}
.ls6e{letter-spacing:-0.149632pt;}
.ls4a{letter-spacing:-0.138944pt;}
.ls56{letter-spacing:-0.122912pt;}
.ls3b{letter-spacing:-0.120000pt;}
.ls5e{letter-spacing:-0.117568pt;}
.ls3f{letter-spacing:-0.112224pt;}
.ls38{letter-spacing:-0.106880pt;}
.ls44{letter-spacing:-0.101536pt;}
.ls6d{letter-spacing:-0.096192pt;}
.ls55{letter-spacing:-0.090848pt;}
.ls47{letter-spacing:-0.085504pt;}
.ls18{letter-spacing:-0.080864pt;}
.ls24{letter-spacing:-0.080160pt;}
.ls34{letter-spacing:-0.076608pt;}
.ls45{letter-spacing:-0.074816pt;}
.ls20{letter-spacing:-0.072000pt;}
.ls46{letter-spacing:-0.069472pt;}
.ls6f{letter-spacing:-0.067200pt;}
.ls4c{letter-spacing:-0.064128pt;}
.ls1c{letter-spacing:-0.062400pt;}
.ls58{letter-spacing:-0.058784pt;}
.ls37{letter-spacing:-0.053440pt;}
.ls5f{letter-spacing:-0.048096pt;}
.ls3a{letter-spacing:-0.048000pt;}
.ls1d{letter-spacing:-0.043200pt;}
.ls4e{letter-spacing:-0.042752pt;}
.ls27{letter-spacing:-0.037408pt;}
.ls28{letter-spacing:-0.032064pt;}
.ls3c{letter-spacing:-0.028800pt;}
.ls23{letter-spacing:-0.026720pt;}
.ls1e{letter-spacing:-0.024000pt;}
.ls22{letter-spacing:-0.021376pt;}
.ls1a{letter-spacing:-0.019200pt;}
.ls29{letter-spacing:-0.016032pt;}
.ls39{letter-spacing:-0.014400pt;}
.ls19{letter-spacing:-0.012768pt;}
.ls26{letter-spacing:-0.010688pt;}
.ls36{letter-spacing:-0.009600pt;}
.ls25{letter-spacing:-0.005344pt;}
.ls49{letter-spacing:-0.004800pt;}
.ls35{letter-spacing:-0.004256pt;}
.ls6{letter-spacing:0.000000pt;}
.ls63{letter-spacing:0.000110pt;}
.ls40{letter-spacing:0.000444pt;}
.ls5c{letter-spacing:0.000752pt;}
.ls6c{letter-spacing:0.001680pt;}
.ls78{letter-spacing:0.001767pt;}
.ls51{letter-spacing:0.001774pt;}
.ls6b{letter-spacing:0.002193pt;}
.ls5{letter-spacing:0.003100pt;}
.ls70{letter-spacing:0.003106pt;}
.ls3{letter-spacing:0.003633pt;}
.ls73{letter-spacing:0.003642pt;}
.ls71{letter-spacing:0.003942pt;}
.ls7b{letter-spacing:0.004267pt;}
.lsc{letter-spacing:0.004800pt;}
.ls30{letter-spacing:0.005344pt;}
.ls43{letter-spacing:0.009600pt;}
.ls13{letter-spacing:0.010688pt;}
.lsd{letter-spacing:0.014400pt;}
.ls14{letter-spacing:0.016032pt;}
.ls42{letter-spacing:0.019200pt;}
.ls11{letter-spacing:0.021376pt;}
.ls2e{letter-spacing:0.024000pt;}
.ls41{letter-spacing:0.026720pt;}
.ls2d{letter-spacing:0.028800pt;}
.ls12{letter-spacing:0.032064pt;}
.ls5a{letter-spacing:0.033600pt;}
.ls52{letter-spacing:0.037408pt;}
.lse{letter-spacing:0.038400pt;}
.ls10{letter-spacing:0.042752pt;}
.ls64{letter-spacing:0.043200pt;}
.ls9{letter-spacing:0.046816pt;}
.ls2f{letter-spacing:0.048096pt;}
.ls2b{letter-spacing:0.051072pt;}
.ls1b{letter-spacing:0.052800pt;}
.lsf{letter-spacing:0.053440pt;}
.ls4b{letter-spacing:0.058784pt;}
.ls31{letter-spacing:0.062400pt;}
.ls15{letter-spacing:0.064128pt;}
.ls16{letter-spacing:0.069472pt;}
.ls48{letter-spacing:0.074816pt;}
.ls54{letter-spacing:0.080160pt;}
.ls5b{letter-spacing:0.090848pt;}
.ls3d{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.100800pt;}
.ls69{letter-spacing:0.110400pt;}
.ls67{letter-spacing:0.124800pt;}
.ls65{letter-spacing:0.129600pt;}
.ls3e{letter-spacing:0.133600pt;}
.lsb{letter-spacing:0.153216pt;}
.ls53{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.161728pt;}
.ls2c{letter-spacing:0.170240pt;}
.ls7d{letter-spacing:0.466280pt;}
.ls7e{letter-spacing:0.471198pt;}
.ls7c{letter-spacing:0.471509pt;}
.ls7f{letter-spacing:0.476489pt;}
.ls72{letter-spacing:0.478097pt;}
.ls74{letter-spacing:0.485031pt;}
.ls50{letter-spacing:0.528358pt;}
.ls62{letter-spacing:0.531914pt;}
.ls61{letter-spacing:0.539627pt;}
.ls7{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls4{letter-spacing:10.626533pt;}
.ls33{letter-spacing:11.545300pt;}
.ls6a{letter-spacing:11.838412pt;}
.ls77{letter-spacing:11.954133pt;}
.ls76{letter-spacing:11.959467pt;}
.ls75{letter-spacing:12.546761pt;}
.ls8{letter-spacing:12.752128pt;}
.ls32{letter-spacing:13.170885pt;}
.ls79{letter-spacing:13.179441pt;}
.ls80{letter-spacing:13.227811pt;}
.ls4f{letter-spacing:13.285443pt;}
.ls7a{letter-spacing:13.791205pt;}
.ls60{letter-spacing:14.105067pt;}
.ls59{letter-spacing:16.312097pt;}
.ls17{letter-spacing:16.856058pt;}
.ls0{letter-spacing:26.568166pt;}
.ls1{letter-spacing:28.452898pt;}
.ls68{letter-spacing:1067.961600pt;}
.ls66{letter-spacing:1087.382400pt;}
.ws0{word-spacing:-25.362056pt;}
.ws8{word-spacing:-15.461955pt;}
.ws1ae{word-spacing:-13.915853pt;}
.ws13c{word-spacing:-13.295872pt;}
.wsc3{word-spacing:-13.290528pt;}
.ws67{word-spacing:-13.283467pt;}
.ws1f{word-spacing:-12.369595pt;}
.ws33{word-spacing:-12.100800pt;}
.ws13b{word-spacing:-12.000000pt;}
.ws64{word-spacing:-11.985600pt;}
.ws34{word-spacing:-11.976000pt;}
.ws38{word-spacing:-11.955200pt;}
.ws63{word-spacing:-11.952000pt;}
.ws32{word-spacing:-11.937600pt;}
.ws62{word-spacing:-10.810240pt;}
.ws31{word-spacing:-10.801728pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws5{word-spacing:-3.878772pt;}
.ws18c{word-spacing:-3.452224pt;}
.ws18e{word-spacing:-3.131584pt;}
.ws18d{word-spacing:-3.083488pt;}
.ws8c{word-spacing:-2.848352pt;}
.ws174{word-spacing:-2.821632pt;}
.ws1a{word-spacing:-2.816095pt;}
.ws16f{word-spacing:-2.810944pt;}
.ws128{word-spacing:-2.805600pt;}
.ws8b{word-spacing:-2.773536pt;}
.ws11a{word-spacing:-2.762848pt;}
.ws10{word-spacing:-2.709827pt;}
.ws133{word-spacing:-2.603559pt;}
.ws74{word-spacing:-2.527712pt;}
.ws19e{word-spacing:-2.511680pt;}
.ws115{word-spacing:-2.490304pt;}
.ws44{word-spacing:-2.452800pt;}
.wsc8{word-spacing:-2.444158pt;}
.wsa0{word-spacing:-2.424000pt;}
.wsa2{word-spacing:-2.419200pt;}
.ws46{word-spacing:-2.414400pt;}
.ws45{word-spacing:-2.404800pt;}
.wsa1{word-spacing:-2.400000pt;}
.ws114{word-spacing:-2.399456pt;}
.wsc2{word-spacing:-2.391024pt;}
.ws43{word-spacing:-2.380800pt;}
.ws47{word-spacing:-2.356800pt;}
.ws19{word-spacing:-2.337890pt;}
.ws1d0{word-spacing:-2.199757pt;}
.ws3e{word-spacing:-2.178489pt;}
.ws144{word-spacing:-2.169664pt;}
.ws143{word-spacing:-2.148288pt;}
.wsd0{word-spacing:-2.121568pt;}
.ws194{word-spacing:-2.078816pt;}
.ws3b{word-spacing:-2.072221pt;}
.ws193{word-spacing:-2.041408pt;}
.ws1c4{word-spacing:-1.960653pt;}
.ws185{word-spacing:-1.886432pt;}
.ws56{word-spacing:-1.870400pt;}
.ws16e{word-spacing:-1.849024pt;}
.ws110{word-spacing:-1.843680pt;}
.wsd1{word-spacing:-1.827648pt;}
.wsc0{word-spacing:-1.806551pt;}
.wsf5{word-spacing:-1.795584pt;}
.wsf4{word-spacing:-1.774208pt;}
.wsfc{word-spacing:-1.721549pt;}
.ws8f{word-spacing:-1.700284pt;}
.ws4{word-spacing:-1.696326pt;}
.ws169{word-spacing:-1.565792pt;}
.wsad{word-spacing:-1.549760pt;}
.wsba{word-spacing:-1.539072pt;}
.wsfd{word-spacing:-1.530266pt;}
.wsb8{word-spacing:-1.528384pt;}
.ws10f{word-spacing:-1.512352pt;}
.ws16a{word-spacing:-1.485632pt;}
.ws68{word-spacing:-1.482445pt;}
.ws4f{word-spacing:-1.437536pt;}
.ws1a4{word-spacing:-1.434614pt;}
.ws100{word-spacing:-1.328347pt;}
.ws69{word-spacing:-1.291162pt;}
.wsc1{word-spacing:-1.222079pt;}
.ws4e{word-spacing:-1.181024pt;}
.ws3{word-spacing:-1.175671pt;}
.wsb9{word-spacing:-1.159648pt;}
.ws171{word-spacing:-1.138272pt;}
.ws7f{word-spacing:-1.128000pt;}
.ws3d{word-spacing:-1.115811pt;}
.ws80{word-spacing:-1.113600pt;}
.ws81{word-spacing:-1.099200pt;}
.ws15c{word-spacing:-1.095520pt;}
.ws134{word-spacing:-1.009543pt;}
.wsc7{word-spacing:-0.956410pt;}
.ws14b{word-spacing:-0.924512pt;}
.ws19c{word-spacing:-0.887104pt;}
.ws8d{word-spacing:-0.871072pt;}
.ws94{word-spacing:-0.860774pt;}
.ws13{word-spacing:-0.850142pt;}
.ws166{word-spacing:-0.828320pt;}
.ws14c{word-spacing:-0.801600pt;}
.ws167{word-spacing:-0.796256pt;}
.ws8e{word-spacing:-0.764192pt;}
.ws6c{word-spacing:-0.669491pt;}
.ws2d{word-spacing:-0.637606pt;}
.ws95{word-spacing:-0.621670pt;}
.wscf{word-spacing:-0.587840pt;}
.ws13a{word-spacing:-0.584473pt;}
.wsf1{word-spacing:-0.566464pt;}
.ws199{word-spacing:-0.555776pt;}
.wsf0{word-spacing:-0.534400pt;}
.ws30{word-spacing:-0.531339pt;}
.ws19a{word-spacing:-0.529056pt;}
.ws19b{word-spacing:-0.518368pt;}
.ws13e{word-spacing:-0.478208pt;}
.ws25{word-spacing:-0.478205pt;}
.ws6a{word-spacing:-0.432666pt;}
.ws6b{word-spacing:-0.430387pt;}
.ws86{word-spacing:-0.368736pt;}
.wsec{word-spacing:-0.320640pt;}
.wsd{word-spacing:-0.318803pt;}
.ws4d{word-spacing:-0.293920pt;}
.ws6{word-spacing:-0.265669pt;}
.wsa9{word-spacing:-0.245824pt;}
.ws1bc{word-spacing:-0.239104pt;}
.ws72{word-spacing:-0.213760pt;}
.ws17{word-spacing:-0.212535pt;}
.ws1bb{word-spacing:-0.191283pt;}
.ws106{word-spacing:-0.176352pt;}
.wsc{word-spacing:-0.159402pt;}
.ws1b7{word-spacing:-0.143462pt;}
.wsa8{word-spacing:-0.128256pt;}
.ws40{word-spacing:-0.127680pt;}
.wsb{word-spacing:-0.106268pt;}
.wsaa{word-spacing:-0.101536pt;}
.ws13d{word-spacing:-0.096000pt;}
.ws37{word-spacing:-0.095642pt;}
.ws6e{word-spacing:-0.072352pt;}
.ws41{word-spacing:-0.068096pt;}
.ws20{word-spacing:-0.053134pt;}
.ws1aa{word-spacing:-0.047821pt;}
.ws1b4{word-spacing:-0.022067pt;}
.ws1b6{word-spacing:-0.006955pt;}
.ws1b5{word-spacing:-0.001621pt;}
.ws1c{word-spacing:-0.001089pt;}
.ws1{word-spacing:0.000000pt;}
.wsbf{word-spacing:0.001067pt;}
.ws181{word-spacing:0.016032pt;}
.wsac{word-spacing:0.021376pt;}
.wsdb{word-spacing:0.026720pt;}
.ws4c{word-spacing:0.037408pt;}
.ws19d{word-spacing:0.042752pt;}
.ws90{word-spacing:0.047821pt;}
.ws24{word-spacing:0.053134pt;}
.ws7e{word-spacing:0.064128pt;}
.ws10e{word-spacing:0.069472pt;}
.wsd6{word-spacing:0.074816pt;}
.ws17d{word-spacing:0.080160pt;}
.ws165{word-spacing:0.085504pt;}
.ws1b1{word-spacing:0.095642pt;}
.wsce{word-spacing:0.096192pt;}
.ws84{word-spacing:0.100800pt;}
.ws61{word-spacing:0.101536pt;}
.wsf{word-spacing:0.106268pt;}
.ws122{word-spacing:0.112224pt;}
.ws9a{word-spacing:0.117568pt;}
.ws4b{word-spacing:0.120000pt;}
.wsb3{word-spacing:0.122912pt;}
.ws152{word-spacing:0.124800pt;}
.wsab{word-spacing:0.133600pt;}
.ws6f{word-spacing:0.134400pt;}
.ws70{word-spacing:0.139200pt;}
.ws1b2{word-spacing:0.143462pt;}
.ws151{word-spacing:0.144000pt;}
.wsa3{word-spacing:0.148800pt;}
.ws14{word-spacing:0.159402pt;}
.wsa7{word-spacing:0.163200pt;}
.ws71{word-spacing:0.172800pt;}
.wsb4{word-spacing:0.181696pt;}
.ws85{word-spacing:0.192000pt;}
.wsd5{word-spacing:0.203072pt;}
.ws12{word-spacing:0.212535pt;}
.ws91{word-spacing:0.239104pt;}
.ws66{word-spacing:0.265669pt;}
.ws1af{word-spacing:0.286925pt;}
.ws22{word-spacing:0.318803pt;}
.wseb{word-spacing:0.320640pt;}
.ws5c{word-spacing:0.336672pt;}
.ws192{word-spacing:0.347360pt;}
.ws198{word-spacing:0.368736pt;}
.ws29{word-spacing:0.371937pt;}
.ws1a1{word-spacing:0.384768pt;}
.ws15e{word-spacing:0.406144pt;}
.ws15f{word-spacing:0.427520pt;}
.ws1b3{word-spacing:0.430387pt;}
.ws5b{word-spacing:0.432864pt;}
.ws140{word-spacing:0.478205pt;}
.wsfe{word-spacing:0.531339pt;}
.ws125{word-spacing:0.635936pt;}
.ws17c{word-spacing:0.646624pt;}
.ws124{word-spacing:0.651968pt;}
.ws77{word-spacing:0.662656pt;}
.ws18f{word-spacing:0.689376pt;}
.ws78{word-spacing:0.721440pt;}
.ws89{word-spacing:0.726784pt;}
.ws8a{word-spacing:0.737472pt;}
.ws79{word-spacing:0.748160pt;}
.ws183{word-spacing:0.753504pt;}
.ws17e{word-spacing:0.772800pt;}
.ws184{word-spacing:0.774880pt;}
.ws17f{word-spacing:0.792000pt;}
.ws132{word-spacing:0.850142pt;}
.ws1c1{word-spacing:0.860774pt;}
.ws180{word-spacing:0.873600pt;}
.ws27{word-spacing:0.903276pt;}
.ws1b8{word-spacing:0.908595pt;}
.ws113{word-spacing:0.983296pt;}
.ws101{word-spacing:1.009543pt;}
.ws10d{word-spacing:1.010016pt;}
.ws18a{word-spacing:1.015360pt;}
.ws75{word-spacing:1.026048pt;}
.ws170{word-spacing:1.047424pt;}
.ws1ab{word-spacing:1.052058pt;}
.ws18b{word-spacing:1.058112pt;}
.ws18{word-spacing:1.062677pt;}
.ws119{word-spacing:1.074144pt;}
.ws13f{word-spacing:1.099878pt;}
.ws96{word-spacing:1.115811pt;}
.ws142{word-spacing:1.132928pt;}
.ws23{word-spacing:1.168945pt;}
.ws118{word-spacing:1.239808pt;}
.ws1ba{word-spacing:1.243341pt;}
.ws135{word-spacing:1.275213pt;}
.wscd{word-spacing:1.319968pt;}
.ws52{word-spacing:1.336000pt;}
.ws158{word-spacing:1.346688pt;}
.ws130{word-spacing:1.352032pt;}
.ws53{word-spacing:1.362720pt;}
.ws109{word-spacing:1.373408pt;}
.ws141{word-spacing:1.378752pt;}
.wsbe{word-spacing:1.381481pt;}
.ws1c7{word-spacing:1.386803pt;}
.ws131{word-spacing:1.416160pt;}
.ws9b{word-spacing:1.432192pt;}
.ws1b0{word-spacing:1.434624pt;}
.ws9c{word-spacing:1.464256pt;}
.ws10a{word-spacing:1.474944pt;}
.wsc6{word-spacing:1.578086pt;}
.wsbd{word-spacing:1.594016pt;}
.ws196{word-spacing:1.619232pt;}
.wsed{word-spacing:1.656640pt;}
.ws16b{word-spacing:1.678016pt;}
.wse9{word-spacing:1.688704pt;}
.wse4{word-spacing:1.699392pt;}
.wse8{word-spacing:1.704736pt;}
.ws16c{word-spacing:1.710080pt;}
.wse5{word-spacing:1.742144pt;}
.ws164{word-spacing:1.758176pt;}
.ws1c0{word-spacing:1.817190pt;}
.ws102{word-spacing:1.859685pt;}
.ws160{word-spacing:1.955904pt;}
.ws7c{word-spacing:1.961248pt;}
.ws121{word-spacing:1.971936pt;}
.wsd4{word-spacing:1.982624pt;}
.ws2b{word-spacing:2.019087pt;}
.ws9d{word-spacing:2.068128pt;}
.ws2c{word-spacing:2.072221pt;}
.ws9e{word-spacing:2.084160pt;}
.wscc{word-spacing:2.089504pt;}
.wsd3{word-spacing:2.105536pt;}
.ws7b{word-spacing:2.110880pt;}
.ws136{word-spacing:2.178489pt;}
.wse1{word-spacing:2.260512pt;}
.ws182{word-spacing:2.265856pt;}
.ws12d{word-spacing:2.276544pt;}
.ws139{word-spacing:2.284756pt;}
.ws97{word-spacing:2.297920pt;}
.ws107{word-spacing:2.303264pt;}
.ws11b{word-spacing:2.308608pt;}
.wse0{word-spacing:2.324640pt;}
.ws120{word-spacing:2.329984pt;}
.ws5d{word-spacing:2.335328pt;}
.ws161{word-spacing:2.399456pt;}
.ws12c{word-spacing:2.442208pt;}
.ws108{word-spacing:2.447552pt;}
.wsf9{word-spacing:2.497292pt;}
.wsf8{word-spacing:2.550426pt;}
.ws3f{word-spacing:2.603559pt;}
.ws117{word-spacing:2.634592pt;}
.ws162{word-spacing:2.639936pt;}
.ws116{word-spacing:2.661312pt;}
.ws163{word-spacing:2.672000pt;}
.ws1c3{word-spacing:2.677965pt;}
.ws2e{word-spacing:2.709827pt;}
.ws138{word-spacing:2.762961pt;}
.ws1a7{word-spacing:2.816095pt;}
.ws28{word-spacing:2.869229pt;}
.ws17a{word-spacing:2.949888pt;}
.ws1ce{word-spacing:3.012710pt;}
.wsbb{word-spacing:3.028630pt;}
.ws177{word-spacing:3.030048pt;}
.ws17b{word-spacing:3.035392pt;}
.ws83{word-spacing:3.048000pt;}
.ws82{word-spacing:3.057600pt;}
.wsfb{word-spacing:3.081764pt;}
.ws15d{word-spacing:3.238464pt;}
.wsf7{word-spacing:3.241166pt;}
.ws7d{word-spacing:3.254496pt;}
.ws11e{word-spacing:3.291904pt;}
.ws11f{word-spacing:3.297248pt;}
.wsb2{word-spacing:3.323968pt;}
.wsbc{word-spacing:3.347434pt;}
.ws7{word-spacing:3.400567pt;}
.ws1b{word-spacing:3.453701pt;}
.ws5e{word-spacing:3.532384pt;}
.ws3c{word-spacing:3.559969pt;}
.ws149{word-spacing:3.596512pt;}
.wse{word-spacing:3.613103pt;}
.ws14a{word-spacing:3.617888pt;}
.wsb1{word-spacing:3.660640pt;}
.ws1c6{word-spacing:3.682202pt;}
.ws1a6{word-spacing:3.772505pt;}
.ws5f{word-spacing:3.885088pt;}
.wsb5{word-spacing:3.927840pt;}
.wsd9{word-spacing:3.969600pt;}
.wsda{word-spacing:3.979200pt;}
.ws39{word-spacing:3.985040pt;}
.ws11{word-spacing:4.038174pt;}
.ws36{word-spacing:4.064768pt;}
.wsff{word-spacing:4.091308pt;}
.ws1c8{word-spacing:4.112589pt;}
.ws188{word-spacing:4.195040pt;}
.ws1ad{word-spacing:4.208230pt;}
.ws189{word-spacing:4.221760pt;}
.ws7a{word-spacing:4.232448pt;}
.wsde{word-spacing:4.237792pt;}
.wsb7{word-spacing:4.259168pt;}
.wsdf{word-spacing:4.275200pt;}
.wsb6{word-spacing:4.323296pt;}
.ws35{word-spacing:4.399514pt;}
.ws1c5{word-spacing:4.495155pt;}
.ws11c{word-spacing:4.515680pt;}
.ws76{word-spacing:4.521024pt;}
.ws195{word-spacing:4.553088pt;}
.ws147{word-spacing:4.585152pt;}
.ws11d{word-spacing:4.601184pt;}
.ws148{word-spacing:4.654624pt;}
.ws1bd{word-spacing:4.781321pt;}
.ws2a{word-spacing:4.782048pt;}
.ws2{word-spacing:4.782080pt;}
.ws1be{word-spacing:4.829901pt;}
.wsc9{word-spacing:4.835182pt;}
.ws88{word-spacing:4.863040pt;}
.ws145{word-spacing:4.868384pt;}
.ws178{word-spacing:4.895104pt;}
.ws146{word-spacing:4.916480pt;}
.ws179{word-spacing:4.996640pt;}
.wse2{word-spacing:5.135584pt;}
.ws3a{word-spacing:5.153985pt;}
.ws173{word-spacing:5.199712pt;}
.ws137{word-spacing:5.207119pt;}
.wse3{word-spacing:5.210400pt;}
.ws154{word-spacing:5.221088pt;}
.ws103{word-spacing:5.251200pt;}
.ws92{word-spacing:5.260253pt;}
.ws105{word-spacing:5.260800pt;}
.ws104{word-spacing:5.275200pt;}
.ws15{word-spacing:5.313387pt;}
.ws172{word-spacing:5.322624pt;}
.ws153{word-spacing:5.354688pt;}
.ws1a5{word-spacing:5.366521pt;}
.ws26{word-spacing:5.419654pt;}
.ws16d{word-spacing:5.493632pt;}
.ws186{word-spacing:5.515008pt;}
.ws9{word-spacing:5.525922pt;}
.ws129{word-spacing:5.536384pt;}
.ws12a{word-spacing:5.552416pt;}
.ws187{word-spacing:5.557760pt;}
.ws197{word-spacing:5.573792pt;}
.ws12b{word-spacing:5.589824pt;}
.ws1c9{word-spacing:5.738496pt;}
.wsf6{word-spacing:5.787552pt;}
.ws1a3{word-spacing:5.791591pt;}
.wsef{word-spacing:5.814272pt;}
.ws1a9{word-spacing:5.834138pt;}
.ws21{word-spacing:5.844725pt;}
.wsee{word-spacing:5.857024pt;}
.ws168{word-spacing:5.862368pt;}
.ws60{word-spacing:5.995968pt;}
.wsae{word-spacing:6.097504pt;}
.wsa{word-spacing:6.110395pt;}
.ws127{word-spacing:6.140256pt;}
.ws1a8{word-spacing:6.168883pt;}
.ws126{word-spacing:6.177664pt;}
.ws10b{word-spacing:6.188352pt;}
.ws10c{word-spacing:6.199040pt;}
.ws12e{word-spacing:6.209728pt;}
.ws93{word-spacing:6.216662pt;}
.ws12f{word-spacing:6.273856pt;}
.ws159{word-spacing:6.498304pt;}
.ws15b{word-spacing:6.503648pt;}
.wsb0{word-spacing:6.546400pt;}
.ws15a{word-spacing:6.551744pt;}
.wsaf{word-spacing:6.589152pt;}
.ws6d{word-spacing:6.641733pt;}
.ws50{word-spacing:6.818944pt;}
.wsfa{word-spacing:6.960537pt;}
.ws51{word-spacing:7.075456pt;}
.ws1a2{word-spacing:7.091488pt;}
.wsc5{word-spacing:7.173120pt;}
.ws123{word-spacing:7.203712pt;}
.ws16{word-spacing:7.438741pt;}
.wscb{word-spacing:7.492288pt;}
.wsca{word-spacing:7.545728pt;}
.wsc4{word-spacing:7.555686pt;}
.ws19f{word-spacing:7.748800pt;}
.ws1b9{word-spacing:7.938253pt;}
.ws1a0{word-spacing:8.048064pt;}
.ws42{word-spacing:8.086400pt;}
.ws111{word-spacing:8.090816pt;}
.ws14f{word-spacing:8.107200pt;}
.ws112{word-spacing:8.112192pt;}
.ws150{word-spacing:8.126400pt;}
.ws14d{word-spacing:8.136000pt;}
.ws14e{word-spacing:8.155200pt;}
.ws1c2{word-spacing:8.272998pt;}
.ws5a{word-spacing:8.705376pt;}
.ws49{word-spacing:8.817600pt;}
.ws48{word-spacing:8.822400pt;}
.ws4a{word-spacing:8.841600pt;}
.ws155{word-spacing:9.004640pt;}
.ws87{word-spacing:9.015328pt;}
.wsea{word-spacing:9.020672pt;}
.ws65{word-spacing:9.192159pt;}
.ws1bf{word-spacing:9.420698pt;}
.ws9f{word-spacing:9.651264pt;}
.wsdd{word-spacing:9.699360pt;}
.wsdc{word-spacing:9.854336pt;}
.ws175{word-spacing:10.041376pt;}
.ws176{word-spacing:10.116192pt;}
.wsd2{word-spacing:10.923136pt;}
.ws1ac{word-spacing:11.190067pt;}
.ws55{word-spacing:11.238432pt;}
.wse7{word-spacing:11.265152pt;}
.ws54{word-spacing:11.291872pt;}
.wsd8{word-spacing:11.323200pt;}
.wsd7{word-spacing:11.337600pt;}
.wse6{word-spacing:11.339968pt;}
.ws73{word-spacing:11.345312pt;}
.ws1cc{word-spacing:12.194304pt;}
.ws157{word-spacing:12.243104pt;}
.ws156{word-spacing:12.579776pt;}
.wsa6{word-spacing:12.600000pt;}
.wsa5{word-spacing:12.633600pt;}
.wsa4{word-spacing:12.657600pt;}
.ws2f{word-spacing:12.752128pt;}
.ws59{word-spacing:12.868352pt;}
.ws58{word-spacing:12.916448pt;}
.ws99{word-spacing:13.856992pt;}
.ws98{word-spacing:13.942496pt;}
.ws190{word-spacing:17.042016pt;}
.ws191{word-spacing:17.159584pt;}
.ws1cd{word-spacing:17.502413pt;}
.wsf2{word-spacing:17.677952pt;}
.wsf3{word-spacing:17.683296pt;}
.ws1ca{word-spacing:18.841395pt;}
.ws57{word-spacing:19.559040pt;}
.ws1cf{word-spacing:43.038720pt;}
.ws1cb{word-spacing:43.756032pt;}
.ws1e{word-spacing:826.552504pt;}
._1{margin-left:-6.854269pt;}
._0{margin-left:-5.260288pt;}
._2{margin-left:-3.931906pt;}
._1b{margin-left:-2.975497pt;}
._6{margin-left:-2.038678pt;}
._4{margin-left:-0.935215pt;}
._7{width:0.969929pt;}
._21{width:1.874624pt;}
._15{width:2.978371pt;}
._3{width:11.046605pt;}
._d{width:12.506049pt;}
._12{width:13.722630pt;}
._e{width:14.877520pt;}
._5{width:16.737280pt;}
._8{width:17.645943pt;}
._b{width:19.360318pt;}
._9{width:21.041011pt;}
._c{width:22.906335pt;}
._17{width:23.803972pt;}
._1a{width:25.823059pt;}
._10{width:27.661550pt;}
._18{width:28.701429pt;}
._a{width:29.914367pt;}
._14{width:30.966594pt;}
._11{width:33.421202pt;}
._16{width:34.450336pt;}
._1d{width:36.194908pt;}
._19{width:39.988607pt;}
._20{width:68.948834pt;}
._1f{width:73.596211pt;}
._1e{width:78.904320pt;}
._13{width:1442.414167pt;}
._1c{width:1776.759733pt;}
._f{width:1798.013067pt;}
.fs6{font-size:37.276537pt;}
.fs7{font-size:40.381867pt;}
.fs5{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs4{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fsa{font-size:64.000000pt;}
.fs3{font-size:72.686933pt;}
.fs2{font-size:95.641600pt;}
.fsd{font-size:96.000000pt;}
.fs0{font-size:101.448225pt;}
.ya2{bottom:-704.932381pt;}
.ya1{bottom:-686.932453pt;}
.ya0{bottom:-668.932525pt;}
.y9f{bottom:-650.932597pt;}
.y9e{bottom:-632.932669pt;}
.y9d{bottom:-607.012933pt;}
.y9c{bottom:-573.413733pt;}
.y163{bottom:-567.767651pt;}
.y9b{bottom:-556.053333pt;}
.y162{bottom:-549.767723pt;}
.y9a{bottom:-538.692933pt;}
.y161{bottom:-531.767795pt;}
.y1ed{bottom:-522.775795pt;}
.y99{bottom:-517.012933pt;}
.y160{bottom:-513.848027pt;}
.y1ec{bottom:-504.775867pt;}
.y15f{bottom:-495.848099pt;}
.y1eb{bottom:-486.856099pt;}
.y15e{bottom:-477.848171pt;}
.y1ea{bottom:-468.856171pt;}
.y15d{bottom:-459.848243pt;}
.y1e9{bottom:-450.856243pt;}
.y1bd{bottom:-443.621680pt;}
.y15c{bottom:-441.848315pt;}
.y1e8{bottom:-432.856315pt;}
.y1bc{bottom:-425.621752pt;}
.y15b{bottom:-423.848387pt;}
.y1e7{bottom:-414.856387pt;}
.y133{bottom:-414.365952pt;}
.y1bb{bottom:-407.701984pt;}
.y15a{bottom:-405.848459pt;}
.y1e6{bottom:-396.856459pt;}
.y132{bottom:-396.366024pt;}
.ye6{bottom:-392.414832pt;}
.y1ba{bottom:-389.702056pt;}
.y159{bottom:-387.928691pt;}
.y1e5{bottom:-378.856531pt;}
.y131{bottom:-378.366096pt;}
.ye5{bottom:-374.414904pt;}
.y1b9{bottom:-371.702128pt;}
.y158{bottom:-369.928763pt;}
.y1e4{bottom:-360.936763pt;}
.y130{bottom:-360.366168pt;}
.y76{bottom:-358.300843pt;}
.ye4{bottom:-356.414976pt;}
.y1b8{bottom:-353.702200pt;}
.y157{bottom:-351.928835pt;}
.y1e3{bottom:-342.936835pt;}
.y12f{bottom:-342.366240pt;}
.y75{bottom:-340.300915pt;}
.ye3{bottom:-338.415048pt;}
.y1b7{bottom:-335.702272pt;}
.y156{bottom:-333.928907pt;}
.y1e2{bottom:-324.936907pt;}
.y12e{bottom:-324.366312pt;}
.y74{bottom:-322.300987pt;}
.ye2{bottom:-320.415120pt;}
.y1b6{bottom:-317.702344pt;}
.y155{bottom:-315.928979pt;}
.y1e1{bottom:-306.936979pt;}
.y12d{bottom:-306.366384pt;}
.y73{bottom:-304.301059pt;}
.ye1{bottom:-302.495352pt;}
.y1b5{bottom:-299.702416pt;}
.y154{bottom:-297.929051pt;}
.y1e0{bottom:-288.937051pt;}
.y12c{bottom:-288.446616pt;}
.y72{bottom:-286.301131pt;}
.ye0{bottom:-284.495424pt;}
.y1b4{bottom:-281.782648pt;}
.y153{bottom:-279.929123pt;}
.y1df{bottom:-270.937123pt;}
.y12b{bottom:-270.446688pt;}
.y71{bottom:-268.301203pt;}
.ydf{bottom:-266.495496pt;}
.y1b3{bottom:-263.782720pt;}
.y152{bottom:-262.009355pt;}
.y1de{bottom:-253.017355pt;}
.y12a{bottom:-252.446760pt;}
.y70{bottom:-250.301275pt;}
.y1b2{bottom:-245.782792pt;}
.y151{bottom:-244.009427pt;}
.yde{bottom:-240.495600pt;}
.y98{bottom:-240.051861pt;}
.y1dd{bottom:-235.017427pt;}
.y129{bottom:-234.446832pt;}
.y6f{bottom:-232.301347pt;}
.y1b1{bottom:-227.782864pt;}
.y150{bottom:-226.009499pt;}
.y97{bottom:-222.051933pt;}
.y104{bottom:-219.952165pt;}
.y1dc{bottom:-217.017499pt;}
.y128{bottom:-216.446904pt;}
.y6e{bottom:-214.381579pt;}
.y1b0{bottom:-209.782936pt;}
.y14f{bottom:-208.009571pt;}
.ydd{bottom:-206.976000pt;}
.y96{bottom:-204.052005pt;}
.y103{bottom:-201.952237pt;}
.y1db{bottom:-199.017571pt;}
.y127{bottom:-198.446976pt;}
.y6d{bottom:-196.381651pt;}
.y1af{bottom:-191.783008pt;}
.y14e{bottom:-190.009643pt;}
.ydc{bottom:-189.615600pt;}
.y95{bottom:-186.052077pt;}
.y102{bottom:-183.952309pt;}
.y1da{bottom:-181.017643pt;}
.y126{bottom:-180.527208pt;}
.yc8{bottom:-179.913715pt;}
.y6c{bottom:-178.381723pt;}
.y1ae{bottom:-173.783080pt;}
.y14d{bottom:-172.009715pt;}
.y94{bottom:-168.132309pt;}
.ydb{bottom:-167.855600pt;}
.y101{bottom:-165.952381pt;}
.y1d9{bottom:-163.017715pt;}
.y125{bottom:-162.527280pt;}
.yc7{bottom:-161.913787pt;}
.y6b{bottom:-160.381795pt;}
.y1ad{bottom:-155.863312pt;}
.y14c{bottom:-154.009787pt;}
.y93{bottom:-150.132381pt;}
.y100{bottom:-147.952453pt;}
.y1d8{bottom:-145.017787pt;}
.y124{bottom:-144.527352pt;}
.yc6{bottom:-143.913859pt;}
.y6a{bottom:-142.381867pt;}
.y1ac{bottom:-137.863384pt;}
.y14b{bottom:-136.090019pt;}
.y92{bottom:-132.132453pt;}
.yff{bottom:-130.032685pt;}
.y1d7{bottom:-127.098019pt;}
.y123{bottom:-126.527424pt;}
.yc5{bottom:-125.913931pt;}
.y1ab{bottom:-119.863456pt;}
.y14a{bottom:-118.090091pt;}
.y69{bottom:-116.381971pt;}
.y91{bottom:-114.132525pt;}
.yfe{bottom:-112.032757pt;}
.y1d6{bottom:-109.098091pt;}
.y122{bottom:-108.527496pt;}
.yc4{bottom:-107.914003pt;}
.y1aa{bottom:-101.863528pt;}
.y149{bottom:-100.090163pt;}
.y90{bottom:-96.132597pt;}
.yfd{bottom:-94.032829pt;}
.y1d5{bottom:-91.098163pt;}
.y1a9{bottom:-83.863600pt;}
.y121{bottom:-82.527600pt;}
.y68{bottom:-82.462267pt;}
.yc3{bottom:-81.994267pt;}
.y8f{bottom:-78.132669pt;}
.y148{bottom:-74.090267pt;}
.yfc{bottom:-68.032933pt;}
.y1d4{bottom:-65.098267pt;}
.y8e{bottom:-52.212933pt;}
.y1a8{bottom:-50.344400pt;}
.y120{bottom:-49.008400pt;}
.y67{bottom:-48.863067pt;}
.yc2{bottom:-48.395067pt;}
.y147{bottom:-40.570667pt;}
.yfb{bottom:-34.513333pt;}
.y1a7{bottom:-32.984000pt;}
.yda{bottom:-32.255600pt;}
.y11f{bottom:-31.648000pt;}
.y66{bottom:-31.502667pt;}
.y1d3{bottom:-31.498667pt;}
.yc1{bottom:-31.034667pt;}
.y146{bottom:-23.210267pt;}
.y8d{bottom:-18.612933pt;}
.yfa{bottom:-17.152933pt;}
.y1a6{bottom:-15.623600pt;}
.yd9{bottom:-14.895600pt;}
.y11e{bottom:-14.287600pt;}
.y65{bottom:-14.142267pt;}
.y1d2{bottom:-14.138267pt;}
.yc0{bottom:-13.674267pt;}
.y145{bottom:-1.450267pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.545957pt;}
.yf{bottom:3.044747pt;}
.y8c{bottom:3.147067pt;}
.yf9{bottom:4.607067pt;}
.y1a5{bottom:6.137496pt;}
.yd8{bottom:6.784400pt;}
.y1ef{bottom:6.800533pt;}
.y11d{bottom:7.472400pt;}
.y64{bottom:7.537733pt;}
.y1d1{bottom:7.541733pt;}
.ybf{bottom:8.005733pt;}
.ye{bottom:12.578910pt;}
.y2{bottom:26.907593pt;}
.y33{bottom:56.693333pt;}
.y32{bottom:103.142667pt;}
.yce{bottom:104.000000pt;}
.y141{bottom:105.128000pt;}
.y224{bottom:105.577333pt;}
.y200{bottom:105.798667pt;}
.y109{bottom:106.778667pt;}
.y177{bottom:107.474667pt;}
.y10a{bottom:111.600000pt;}
.y1bf{bottom:119.096400pt;}
.y256{bottom:119.292000pt;}
.y31{bottom:121.154667pt;}
.ycd{bottom:122.013333pt;}
.y223{bottom:122.793333pt;}
.y140{bottom:123.140000pt;}
.y1ff{bottom:123.810667pt;}
.y108{bottom:124.790667pt;}
.y176{bottom:125.486667pt;}
.y1f0{bottom:132.981733pt;}
.y255{bottom:136.506667pt;}
.y30{bottom:139.166667pt;}
.y222{bottom:140.008000pt;}
.yf8{bottom:140.207067pt;}
.y13f{bottom:141.152000pt;}
.y1fe{bottom:141.824000pt;}
.y175{bottom:143.500000pt;}
.y19a{bottom:145.466667pt;}
.ycc{bottom:147.996000pt;}
.y107{bottom:150.773333pt;}
.y254{bottom:153.722667pt;}
.y2f{bottom:157.180000pt;}
.y221{bottom:157.224000pt;}
.yf7{bottom:157.567067pt;}
.y13e{bottom:159.165333pt;}
.y1fd{bottom:159.836000pt;}
.y174{bottom:161.512000pt;}
.y199{bottom:163.478667pt;}
.y220{bottom:174.440000pt;}
.y2e{bottom:175.192000pt;}
.ycb{bottom:176.105333pt;}
.y13d{bottom:177.177333pt;}
.y1fc{bottom:177.848000pt;}
.y106{bottom:178.882667pt;}
.yf6{bottom:179.247067pt;}
.y173{bottom:179.524000pt;}
.y198{bottom:181.492000pt;}
.y253{bottom:182.928000pt;}
.y21f{bottom:191.654667pt;}
.yca{bottom:193.200000pt;}
.y2d{bottom:193.205333pt;}
.y61{bottom:193.713333pt;}
.y13c{bottom:195.190667pt;}
.y1d0{bottom:195.702845pt;}
.y1fb{bottom:195.861333pt;}
.y105{bottom:195.978667pt;}
.y89{bottom:197.494667pt;}
.y172{bottom:197.537333pt;}
.y197{bottom:199.504000pt;}
.y252{bottom:200.144000pt;}
.y21e{bottom:208.870667pt;}
.yc9{bottom:210.296000pt;}
.y2c{bottom:211.217333pt;}
.y60{bottom:211.725333pt;}
.y13b{bottom:213.202667pt;}
.y1cf{bottom:213.702773pt;}
.y1fa{bottom:213.873333pt;}
.y88{bottom:215.506667pt;}
.y171{bottom:215.549333pt;}
.yed{bottom:215.916000pt;}
.y251{bottom:217.358667pt;}
.y196{bottom:217.517333pt;}
.y21d{bottom:226.085333pt;}
.y2b{bottom:229.229333pt;}
.y5f{bottom:229.737333pt;}
.yb0{bottom:230.233333pt;}
.y13a{bottom:231.214667pt;}
.y1ce{bottom:231.702701pt;}
.y1f9{bottom:231.886667pt;}
.y86{bottom:233.518667pt;}
.y170{bottom:233.562667pt;}
.y250{bottom:234.574667pt;}
.y195{bottom:235.529333pt;}
.y87{bottom:238.341333pt;}
.y21c{bottom:243.301333pt;}
.y2a{bottom:247.242667pt;}
.y5e{bottom:247.750667pt;}
.y139{bottom:249.228000pt;}
.y1cd{bottom:249.622469pt;}
.y1f8{bottom:249.898667pt;}
.y85{bottom:251.532000pt;}
.y16f{bottom:251.574667pt;}
.y24f{bottom:251.790667pt;}
.y194{bottom:253.541333pt;}
.y21b{bottom:260.517333pt;}
.y8b{bottom:261.147067pt;}
.y28{bottom:265.254667pt;}
.y5d{bottom:265.762667pt;}
.y138{bottom:267.240000pt;}
.y1cc{bottom:267.622397pt;}
.y1f7{bottom:267.910667pt;}
.y24e{bottom:269.005333pt;}
.y84{bottom:269.544000pt;}
.y16e{bottom:269.586667pt;}
.y29{bottom:270.077333pt;}
.y193{bottom:271.554667pt;}
.y21a{bottom:277.732000pt;}
.y27{bottom:283.268000pt;}
.y5c{bottom:283.776000pt;}
.ybe{bottom:284.966805pt;}
.y1cb{bottom:285.622325pt;}
.y1f5{bottom:285.924000pt;}
.y24d{bottom:286.221333pt;}
.y83{bottom:287.557333pt;}
.y16d{bottom:287.600000pt;}
.y192{bottom:289.566667pt;}
.y1f6{bottom:290.745333pt;}
.y1be{bottom:291.656400pt;}
.y137{bottom:293.222667pt;}
.y219{bottom:294.948000pt;}
.y26{bottom:301.280000pt;}
.y5b{bottom:301.788000pt;}
.ybd{bottom:302.966733pt;}
.y24c{bottom:303.437333pt;}
.y1ca{bottom:303.622253pt;}
.y1f4{bottom:303.936000pt;}
.y82{bottom:305.569333pt;}
.y16c{bottom:305.612000pt;}
.y190{bottom:307.580000pt;}
.y218{bottom:312.162667pt;}
.y191{bottom:312.401333pt;}
.y5a{bottom:319.800000pt;}
.y24b{bottom:320.652000pt;}
.ybc{bottom:320.966661pt;}
.y136{bottom:321.332000pt;}
.y1c9{bottom:321.622181pt;}
.y81{bottom:323.581333pt;}
.y16b{bottom:323.625333pt;}
.y18f{bottom:325.592000pt;}
.y25{bottom:327.262667pt;}
.y217{bottom:329.378667pt;}
.y1f3{bottom:329.918667pt;}
.y59{bottom:337.813333pt;}
.y24a{bottom:337.868000pt;}
.y135{bottom:338.428000pt;}
.ybb{bottom:338.966589pt;}
.y1c8{bottom:339.622109pt;}
.y80{bottom:341.594667pt;}
.y16a{bottom:341.637333pt;}
.y18e{bottom:343.604000pt;}
.y216{bottom:346.594667pt;}
.y1a4{bottom:354.617064pt;}
.y249{bottom:355.082667pt;}
.y134{bottom:355.524000pt;}
.y58{bottom:355.825333pt;}
.yba{bottom:356.886357pt;}
.y1c7{bottom:357.622037pt;}
.y1f2{bottom:358.028000pt;}
.y7f{bottom:359.606667pt;}
.y169{bottom:359.649333pt;}
.y11c{bottom:360.272760pt;}
.y18d{bottom:361.617333pt;}
.y215{bottom:363.809333pt;}
.yec{bottom:365.486667pt;}
.y248{bottom:372.298667pt;}
.y1a3{bottom:372.616992pt;}
.y57{bottom:373.838667pt;}
.yb9{bottom:374.886285pt;}
.y1f1{bottom:375.124000pt;}
.y112{bottom:375.461333pt;}
.y1c6{bottom:375.541805pt;}
.y7e{bottom:377.620000pt;}
.y168{bottom:377.662667pt;}
.y11b{bottom:378.272688pt;}
.y18c{bottom:379.629333pt;}
.y214{bottom:381.025333pt;}
.yeb{bottom:383.500000pt;}
.y144{bottom:389.349733pt;}
.y247{bottom:389.514667pt;}
.y1a2{bottom:390.616920pt;}
.yb8{bottom:392.886213pt;}
.y1c5{bottom:393.541733pt;}
.y1c3{bottom:395.061333pt;}
.y24{bottom:395.188000pt;}
.y7d{bottom:395.632000pt;}
.y167{bottom:395.674667pt;}
.y11a{bottom:396.272616pt;}
.y18b{bottom:397.642667pt;}
.y213{bottom:398.240000pt;}
.y56{bottom:399.821333pt;}
.yea{bottom:401.512000pt;}
.y246{bottom:406.729333pt;}
.y1a1{bottom:408.616848pt;}
.yb7{bottom:410.886141pt;}
.y23{bottom:413.200000pt;}
.y7c{bottom:413.644000pt;}
.y166{bottom:413.688000pt;}
.y119{bottom:414.272544pt;}
.y212{bottom:415.456000pt;}
.y18a{bottom:415.654667pt;}
.ye9{bottom:419.525333pt;}
.yd7{bottom:423.744992pt;}
.y245{bottom:423.945333pt;}
.y1a0{bottom:426.616776pt;}
.y1c4{bottom:426.741733pt;}
.yb6{bottom:428.886069pt;}
.y55{bottom:430.772000pt;}
.y118{bottom:432.272472pt;}
.y211{bottom:432.672000pt;}
.y189{bottom:433.666667pt;}
.y7b{bottom:439.626667pt;}
.y165{bottom:439.669333pt;}
.y244{bottom:441.160000pt;}
.yd6{bottom:441.744920pt;}
.y19f{bottom:444.616704pt;}
.yb5{bottom:446.885997pt;}
.y22{bottom:447.153333pt;}
.y54{bottom:448.784000pt;}
.y210{bottom:449.886667pt;}
.y117{bottom:450.272776pt;}
.ye8{bottom:450.636000pt;}
.y188{bottom:451.680000pt;}
.y243{bottom:458.376000pt;}
.yd5{bottom:459.744848pt;}
.y19e{bottom:462.536472pt;}
.y63{bottom:464.897733pt;}
.y21{bottom:465.165333pt;}
.y52{bottom:466.796000pt;}
.y20f{bottom:467.102667pt;}
.ye7{bottom:467.732000pt;}
.y164{bottom:467.780000pt;}
.y116{bottom:468.272704pt;}
.y186{bottom:469.692000pt;}
.y7a{bottom:470.577333pt;}
.y53{bottom:471.618667pt;}
.yb4{bottom:472.805733pt;}
.y187{bottom:474.514667pt;}
.y242{bottom:475.592000pt;}
.yd4{bottom:477.744776pt;}
.y19d{bottom:480.536400pt;}
.y20{bottom:483.178667pt;}
.y20e{bottom:484.317333pt;}
.y51{bottom:484.809333pt;}
.y115{bottom:486.192472pt;}
.ycf{bottom:487.669333pt;}
.y185{bottom:487.704000pt;}
.y143{bottom:487.716000pt;}
.y241{bottom:492.806667pt;}
.yd3{bottom:495.744704pt;}
.y79{bottom:498.686667pt;}
.y1f{bottom:501.190667pt;}
.y20d{bottom:501.533333pt;}
.y50{bottom:502.821333pt;}
.y114{bottom:504.192400pt;}
.y184{bottom:505.717333pt;}
.yb3{bottom:506.405733pt;}
.y240{bottom:510.022667pt;}
.yd2{bottom:513.664472pt;}
.y19c{bottom:513.736400pt;}
.y78{bottom:515.782667pt;}
.y20c{bottom:518.749333pt;}
.y1e{bottom:519.202667pt;}
.y4f{bottom:520.834667pt;}
.yaf{bottom:523.476000pt;}
.y183{bottom:523.729333pt;}
.y1ee{bottom:524.522667pt;}
.y23f{bottom:527.237333pt;}
.yb2{bottom:528.165733pt;}
.yd1{bottom:531.664400pt;}
.y77{bottom:532.878667pt;}
.y20b{bottom:535.964000pt;}
.y1d{bottom:537.216000pt;}
.y113{bottom:537.392400pt;}
.y4e{bottom:538.846667pt;}
.yae{bottom:541.489333pt;}
.y182{bottom:541.742667pt;}
.y23e{bottom:544.453333pt;}
.y62{bottom:552.816000pt;}
.y20a{bottom:553.180000pt;}
.y1c{bottom:555.228000pt;}
.y4d{bottom:556.858667pt;}
.yac{bottom:559.501333pt;}
.y181{bottom:559.754667pt;}
.y23d{bottom:561.669333pt;}
.yad{bottom:564.324000pt;}
.yd0{bottom:564.864400pt;}
.y1a{bottom:573.241333pt;}
.y4c{bottom:574.872000pt;}
.yab{bottom:577.513333pt;}
.y180{bottom:577.766667pt;}
.y1b{bottom:578.062667pt;}
.y209{bottom:578.365333pt;}
.y23c{bottom:578.884000pt;}
.y19{bottom:591.253333pt;}
.y4b{bottom:592.884000pt;}
.yaa{bottom:595.526667pt;}
.y17f{bottom:595.780000pt;}
.y23b{bottom:596.100000pt;}
.yf5{bottom:596.207659pt;}
.y18{bottom:609.265333pt;}
.y1c2{bottom:609.337333pt;}
.y4a{bottom:610.896000pt;}
.y23a{bottom:613.314667pt;}
.y208{bottom:613.433333pt;}
.ya9{bottom:613.538667pt;}
.y17e{bottom:613.792000pt;}
.yf4{bottom:614.207587pt;}
.y1c1{bottom:626.433333pt;}
.y17{bottom:627.278667pt;}
.y49{bottom:628.909333pt;}
.y239{bottom:630.530667pt;}
.ya8{bottom:631.552000pt;}
.y17d{bottom:631.805333pt;}
.yf3{bottom:632.207515pt;}
.y207{bottom:634.913333pt;}
.y1c0{bottom:643.529333pt;}
.y15{bottom:645.290667pt;}
.y48{bottom:646.921333pt;}
.y238{bottom:647.746667pt;}
.y206{bottom:648.422667pt;}
.ya7{bottom:649.564000pt;}
.y17c{bottom:649.817333pt;}
.y16{bottom:650.113333pt;}
.yf2{bottom:650.207443pt;}
.y14{bottom:663.304000pt;}
.y19b{bottom:663.466667pt;}
.y47{bottom:664.934667pt;}
.y237{bottom:664.961333pt;}
.ya6{bottom:667.576000pt;}
.y17b{bottom:667.829333pt;}
.yf1{bottom:668.207371pt;}
.y205{bottom:669.902667pt;}
.y13{bottom:681.316000pt;}
.y236{bottom:682.177333pt;}
.y46{bottom:682.946667pt;}
.y204{bottom:683.412000pt;}
.ya5{bottom:685.589333pt;}
.y17a{bottom:685.842667pt;}
.yf0{bottom:686.127139pt;}
.y203{bottom:696.921333pt;}
.y12{bottom:699.328000pt;}
.y235{bottom:699.392000pt;}
.y45{bottom:700.958667pt;}
.y179{bottom:703.854667pt;}
.yef{bottom:704.127067pt;}
.y202{bottom:710.430667pt;}
.ya4{bottom:711.572000pt;}
.y234{bottom:716.608000pt;}
.y11{bottom:717.341333pt;}
.y44{bottom:718.972000pt;}
.y178{bottom:721.868000pt;}
.y233{bottom:733.824000pt;}
.y10{bottom:735.353333pt;}
.y43{bottom:736.984000pt;}
.yee{bottom:737.327067pt;}
.ya3{bottom:739.681333pt;}
.y111{bottom:739.880000pt;}
.y232{bottom:751.038667pt;}
.y42{bottom:754.997333pt;}
.y110{bottom:757.892000pt;}
.y8a{bottom:759.618667pt;}
.yd{bottom:766.849301pt;}
.yc{bottom:767.530667pt;}
.y231{bottom:768.254667pt;}
.y41{bottom:773.009333pt;}
.y10f{bottom:775.905333pt;}
.y230{bottom:785.469333pt;}
.yb1{bottom:786.165733pt;}
.y40{bottom:791.021333pt;}
.y10e{bottom:793.917333pt;}
.yb{bottom:802.202667pt;}
.y22f{bottom:802.685333pt;}
.y10d{bottom:811.930667pt;}
.y3f{bottom:817.004000pt;}
.ya{bottom:818.341333pt;}
.y22e{bottom:819.901333pt;}
.y10c{bottom:829.942667pt;}
.y9{bottom:834.481333pt;}
.y22d{bottom:837.116000pt;}
.y3e{bottom:847.954667pt;}
.y22c{bottom:854.332000pt;}
.y8{bottom:858.590667pt;}
.y3d{bottom:865.968000pt;}
.y22b{bottom:871.546667pt;}
.y3c{bottom:883.980000pt;}
.y22a{bottom:888.762667pt;}
.y10b{bottom:888.802667pt;}
.y7{bottom:898.178667pt;}
.y3b{bottom:901.993333pt;}
.y229{bottom:905.978667pt;}
.y142{bottom:906.814667pt;}
.y39{bottom:920.005333pt;}
.y228{bottom:923.193333pt;}
.y3a{bottom:924.826667pt;}
.y6{bottom:925.198667pt;}
.y38{bottom:938.017333pt;}
.y227{bottom:940.409333pt;}
.y5{bottom:952.217333pt;}
.y37{bottom:956.030667pt;}
.y226{bottom:957.624000pt;}
.y36{bottom:974.042667pt;}
.y225{bottom:974.840000pt;}
.y4{bottom:977.906667pt;}
.y201{bottom:978.865333pt;}
.y35{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y34{bottom:1038.548000pt;}
.hd{height:22.088881pt;}
.h9{height:22.673858pt;}
.h1e{height:29.064225pt;}
.hb{height:29.433775pt;}
.h23{height:29.840000pt;}
.ha{height:30.399505pt;}
.h25{height:33.713664pt;}
.h16{height:34.574438pt;}
.he{height:36.896250pt;}
.h10{height:38.008906pt;}
.h7{height:38.415786pt;}
.h14{height:38.775312pt;}
.h4{height:39.000258pt;}
.h13{height:39.010156pt;}
.h8{height:41.508454pt;}
.h12{height:42.867188pt;}
.h2{height:45.272024pt;}
.hc{height:46.120196pt;}
.h1d{height:46.718750pt;}
.h15{height:47.725469pt;}
.h11{height:57.156250pt;}
.h24{height:67.312500pt;}
.h3{height:68.781897pt;}
.h5{height:69.148877pt;}
.h6{height:73.026014pt;}
.h21{height:85.734375pt;}
.h20{height:87.011175pt;}
.h1a{height:132.017333pt;}
.h22{height:183.909333pt;}
.h17{height:245.721333pt;}
.h18{height:273.192000pt;}
.h1f{height:341.873333pt;}
.h1b{height:343.398667pt;}
.h1c{height:376.213333pt;}
.h19{height:411.316000pt;}
.hf{height:452.524000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wd{width:17.760000pt;}
.w3{width:66.991004pt;}
.w2{width:184.542183pt;}
.w5{width:504.416000pt;}
.w8{width:535.702533pt;}
.w7{width:573.857600pt;}
.wc{width:594.461600pt;}
.wb{width:595.225200pt;}
.w4{width:596.750933pt;}
.w6{width:599.804267pt;}
.wa{width:602.092667pt;}
.w9{width:603.619333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x37{left:-43.673333pt;}
.x48{left:-26.885467pt;}
.x3a{left:-15.353427pt;}
.x45{left:-7.807733pt;}
.x0{left:0.000000pt;}
.x49{left:1.435061pt;}
.x2e{left:3.638933pt;}
.x50{left:6.691333pt;}
.x61{left:14.635867pt;}
.x62{left:15.595477pt;}
.x46{left:20.512795pt;}
.x6{left:26.021437pt;}
.x30{left:31.958933pt;}
.x52{left:35.011333pt;}
.x39{left:43.606667pt;}
.x2{left:51.603593pt;}
.x3f{left:90.918933pt;}
.x1{left:102.046667pt;}
.x4{left:108.542667pt;}
.x3{left:109.606667pt;}
.x69{left:117.926667pt;}
.x34{left:122.370667pt;}
.xa{left:129.312000pt;}
.xd{left:130.393333pt;}
.x35{left:131.641333pt;}
.xb{left:138.561333pt;}
.x36{left:144.642667pt;}
.x1a{left:154.706667pt;}
.x70{left:161.536000pt;}
.x7{left:167.450667pt;}
.xc{left:179.601333pt;}
.x40{left:181.245333pt;}
.x4f{left:182.825333pt;}
.x31{left:186.136000pt;}
.x53{left:189.298667pt;}
.x3b{left:190.333333pt;}
.x54{left:210.700000pt;}
.x55{left:220.809333pt;}
.x73{left:223.704000pt;}
.x56{left:225.321333pt;}
.x6f{left:232.589333pt;}
.x74{left:237.545333pt;}
.x57{left:238.605333pt;}
.x4c{left:249.385333pt;}
.x4d{left:262.668000pt;}
.x4b{left:289.365333pt;}
.x1b{left:298.717333pt;}
.x6a{left:309.158933pt;}
.x1c{left:312.000000pt;}
.x5b{left:322.744000pt;}
.x59{left:326.541333pt;}
.x5c{left:335.534667pt;}
.x5a{left:338.433333pt;}
.x5f{left:354.034667pt;}
.x60{left:363.584000pt;}
.x63{left:372.528000pt;}
.x64{left:381.829333pt;}
.x8{left:387.649333pt;}
.x9{left:396.824000pt;}
.x68{left:397.950667pt;}
.x41{left:435.422667pt;}
.x17{left:447.748000pt;}
.x18{left:454.389333pt;}
.x65{left:456.349333pt;}
.x66{left:464.322667pt;}
.xf{left:477.108000pt;}
.x10{left:483.749333pt;}
.x29{left:484.834667pt;}
.x21{left:491.353333pt;}
.x2a{left:494.088000pt;}
.x38{left:501.126667pt;}
.x22{left:504.637333pt;}
.x1d{left:522.330667pt;}
.x23{left:524.249333pt;}
.x4a{left:525.994533pt;}
.x6d{left:527.789333pt;}
.x1e{left:535.614667pt;}
.x24{left:537.533333pt;}
.x6e{left:541.073333pt;}
.x25{left:544.308000pt;}
.x3e{left:548.438933pt;}
.x67{left:552.798667pt;}
.x26{left:557.592000pt;}
.x27{left:561.460000pt;}
.x47{left:567.312267pt;}
.x32{left:569.954667pt;}
.x28{left:574.742667pt;}
.x5d{left:580.712000pt;}
.x33{left:587.888000pt;}
.x5e{left:589.981333pt;}
.x2f{left:591.398800pt;}
.x58{left:596.691200pt;}
.x51{left:598.931333pt;}
.x44{left:600.725333pt;}
.x1f{left:604.212000pt;}
.x42{left:613.277333pt;}
.x11{left:615.361333pt;}
.x20{left:617.496000pt;}
.x3d{left:619.458667pt;}
.x12{left:622.004000pt;}
.x5{left:623.413317pt;}
.x6b{left:626.472000pt;}
.x19{left:627.885333pt;}
.x3c{left:629.753333pt;}
.x6c{left:635.773333pt;}
.x2b{left:640.489333pt;}
.x2c{left:643.802667pt;}
.x13{left:645.313333pt;}
.x71{left:647.746667pt;}
.x4e{left:650.448000pt;}
.x14{left:651.954667pt;}
.x2d{left:657.086667pt;}
.x15{left:658.464000pt;}
.x43{left:660.601333pt;}
.x16{left:665.105333pt;}
.x72{left:671.657333pt;}
.xe{left:685.709333pt;}
}




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