
    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_1c2ec6f8f8066bd158ae7999.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_a716ccaa81028a24543dc17b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_f2ac6fd816761fe24c02773a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_bac8d4acffd3e49fe444a736.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_3639612c2b97c425be490879.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_c016e10639aeacfa4bf0cc18.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946289;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_684c20768e1a87521da8f676.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958496;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_8c9172f5a898fa0d1c1bc562.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.665784;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_d16aa84495e6c5f2d4411e51.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.068000;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_e9eff8fa5527cd16a10aa85c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_402d499d0a16cd96717ab103.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6a540e0bc55bcb06e78e2d2f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.934000;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_6d0a0c3fe9001b9e8c566fa4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958496;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_b0ab5a4ad169f1ef39b1806a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958496;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_a716ccaa81028a24543dc17b.woff2')format("woff");}.fff{font-family:fff;line-height:0.958496;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_f2ac6fd816761fe24c02773a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958496;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_a2a29f41af7753ce44aafc8e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958496;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_d93c9e2a07d0c57bdd831216.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.878000;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_b0ab5a4ad169f1ef39b1806a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958496;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_a716ccaa81028a24543dc17b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958496;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_f2ac6fd816761fe24c02773a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958496;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_a2a29f41af7753ce44aafc8e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958496;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_a716ccaa81028a24543dc17b.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.958496;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_f2ac6fd816761fe24c02773a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958496;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_a2a29f41af7753ce44aafc8e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.958496;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_687e08457d7c39e1a40b7be4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.958496;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_e3402386b4095be411b12e8a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.958496;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_d35e82c9ffb5ca33c065be80.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.958496;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_f7e96179408b1edb2e6988d3.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_8c80555cd078ff629c7c1176.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.878000;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_8c80555cd078ff629c7c1176.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.878000;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_8c80555cd078ff629c7c1176.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.878000;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_8c80555cd078ff629c7c1176.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.878000;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_8c80555cd078ff629c7c1176.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.878000;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_8c80555cd078ff629c7c1176.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.878000;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_8c80555cd078ff629c7c1176.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.878000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400000px;}
.va{vertical-align:-18.360000px;}
.v5{vertical-align:-17.340000px;}
.vc{vertical-align:-13.824000px;}
.v3{vertical-align:-10.884000px;}
.vb{vertical-align:-8.388000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:10.800000px;}
.v6{vertical-align:17.316000px;}
.v4{vertical-align:18.318000px;}
.v1{vertical-align:20.400000px;}
.v9{vertical-align:22.512000px;}
.v8{vertical-align:34.860000px;}
.ls1a{letter-spacing:-4.080000px;}
.ls128{letter-spacing:-1.755000px;}
.ls123{letter-spacing:-1.485000px;}
.ls86{letter-spacing:-1.404000px;}
.lsa7{letter-spacing:-1.296000px;}
.ls12c{letter-spacing:-1.215000px;}
.lsd0{letter-spacing:-1.188000px;}
.ls122{letter-spacing:-1.170000px;}
.lsac{letter-spacing:-1.134000px;}
.ls127{letter-spacing:-1.035000px;}
.ls11f{letter-spacing:-0.990000px;}
.ls4a{letter-spacing:-0.972000px;}
.ls57{letter-spacing:-0.966000px;}
.lsd2{letter-spacing:-0.918000px;}
.lsee{letter-spacing:-0.864000px;}
.ls11c{letter-spacing:-0.855000px;}
.lsd1{letter-spacing:-0.842400px;}
.ls21{letter-spacing:-0.816000px;}
.lscd{letter-spacing:-0.810000px;}
.ls125{letter-spacing:-0.720000px;}
.lsa8{letter-spacing:-0.648000px;}
.ls84{letter-spacing:-0.594000px;}
.ls24{letter-spacing:-0.561000px;}
.ls4d{letter-spacing:-0.540000px;}
.ls4c{letter-spacing:-0.486000px;}
.ls11d{letter-spacing:-0.450000px;}
.ls83{letter-spacing:-0.432000px;}
.lsaa{letter-spacing:-0.378000px;}
.lsce{letter-spacing:-0.324000px;}
.ls120{letter-spacing:-0.315000px;}
.ls11a{letter-spacing:-0.280800px;}
.ls1f{letter-spacing:-0.270000px;}
.ls56{letter-spacing:-0.216000px;}
.lscf{letter-spacing:-0.210600px;}
.ls11e{letter-spacing:-0.180000px;}
.ls4b{letter-spacing:-0.162000px;}
.ls23{letter-spacing:-0.153000px;}
.ls118{letter-spacing:-0.140400px;}
.ls11b{letter-spacing:-0.135000px;}
.lsef{letter-spacing:-0.120000px;}
.ls1b{letter-spacing:-0.108000px;}
.lsa9{letter-spacing:-0.105300px;}
.ls126{letter-spacing:-0.090000px;}
.ls1c{letter-spacing:-0.070200px;}
.ls85{letter-spacing:-0.054000px;}
.ls88{letter-spacing:-0.035100px;}
.ls19{letter-spacing:0.000000px;}
.ls7b{letter-spacing:0.000300px;}
.ls64{letter-spacing:0.005400px;}
.lsf7{letter-spacing:0.006600px;}
.ls114{letter-spacing:0.009000px;}
.lsf8{letter-spacing:0.009600px;}
.ls61{letter-spacing:0.010800px;}
.ls6{letter-spacing:0.011700px;}
.ls4{letter-spacing:0.012300px;}
.ls2{letter-spacing:0.013200px;}
.ls3{letter-spacing:0.013800px;}
.ls5{letter-spacing:0.020400px;}
.lsec{letter-spacing:0.027000px;}
.ls107{letter-spacing:0.031800px;}
.lsab{letter-spacing:0.035100px;}
.ls75{letter-spacing:0.035400px;}
.ls41{letter-spacing:0.036000px;}
.lsc0{letter-spacing:0.037800px;}
.ls6e{letter-spacing:0.041400px;}
.ls121{letter-spacing:0.045000px;}
.ls94{letter-spacing:0.045900px;}
.lsf0{letter-spacing:0.048600px;}
.ls5a{letter-spacing:0.052650px;}
.ls58{letter-spacing:0.052800px;}
.ls14{letter-spacing:0.054000px;}
.lsc1{letter-spacing:0.058800px;}
.ls43{letter-spacing:0.059400px;}
.lse3{letter-spacing:0.060000px;}
.ls37{letter-spacing:0.065400px;}
.ls92{letter-spacing:0.070200px;}
.ls8c{letter-spacing:0.074400px;}
.ls60{letter-spacing:0.075600px;}
.lsd3{letter-spacing:0.081000px;}
.ls59{letter-spacing:0.082200px;}
.ls108{letter-spacing:0.086400px;}
.ls115{letter-spacing:0.090000px;}
.ls44{letter-spacing:0.091800px;}
.ls8b{letter-spacing:0.093000px;}
.lsbf{letter-spacing:0.093900px;}
.lsbd{letter-spacing:0.094200px;}
.lseb{letter-spacing:0.094800px;}
.ls38{letter-spacing:0.102600px;}
.lsf2{letter-spacing:0.103800px;}
.lse4{letter-spacing:0.105300px;}
.lsed{letter-spacing:0.106200px;}
.ls42{letter-spacing:0.108000px;}
.lsbe{letter-spacing:0.111600px;}
.lsd4{letter-spacing:0.113400px;}
.ls109{letter-spacing:0.117000px;}
.lse0{letter-spacing:0.129600px;}
.lsff{letter-spacing:0.134700px;}
.ls73{letter-spacing:0.135000px;}
.lsbc{letter-spacing:0.138600px;}
.lsf1{letter-spacing:0.139200px;}
.lsc4{letter-spacing:0.139800px;}
.ls5d{letter-spacing:0.140400px;}
.lsf5{letter-spacing:0.141300px;}
.ls100{letter-spacing:0.147600px;}
.ls5b{letter-spacing:0.149400px;}
.lsf6{letter-spacing:0.151200px;}
.lsbb{letter-spacing:0.153000px;}
.ls3a{letter-spacing:0.156600px;}
.lsb{letter-spacing:0.162000px;}
.ls5e{letter-spacing:0.167400px;}
.ls8d{letter-spacing:0.171600px;}
.lsba{letter-spacing:0.172800px;}
.lse1{letter-spacing:0.175500px;}
.lsde{letter-spacing:0.178200px;}
.lsc9{letter-spacing:0.178800px;}
.ls8f{letter-spacing:0.194400px;}
.ls106{letter-spacing:0.197400px;}
.ls2f{letter-spacing:0.205200px;}
.lsae{letter-spacing:0.208200px;}
.ls74{letter-spacing:0.210000px;}
.ls8{letter-spacing:0.210600px;}
.ls16{letter-spacing:0.212400px;}
.ls80{letter-spacing:0.213000px;}
.lsb8{letter-spacing:0.214200px;}
.ls3f{letter-spacing:0.216000px;}
.lsc8{letter-spacing:0.219000px;}
.ls77{letter-spacing:0.219900px;}
.ls78{letter-spacing:0.220200px;}
.ls29{letter-spacing:0.224400px;}
.ls2a{letter-spacing:0.225000px;}
.ls81{letter-spacing:0.226800px;}
.lsc7{letter-spacing:0.227700px;}
.ls5c{letter-spacing:0.232200px;}
.ls28{letter-spacing:0.233400px;}
.ls5f{letter-spacing:0.243000px;}
.ls46{letter-spacing:0.245700px;}
.ls67{letter-spacing:0.253800px;}
.ls3b{letter-spacing:0.259200px;}
.lsfb{letter-spacing:0.264600px;}
.ls7{letter-spacing:0.270000px;}
.ls103{letter-spacing:0.272700px;}
.ls68{letter-spacing:0.275400px;}
.lsdd{letter-spacing:0.277200px;}
.ls90{letter-spacing:0.279000px;}
.ls104{letter-spacing:0.279600px;}
.ls13{letter-spacing:0.280800px;}
.ls36{letter-spacing:0.285600px;}
.ls2d{letter-spacing:0.286200px;}
.ls30{letter-spacing:0.291600px;}
.lsdf{letter-spacing:0.297000px;}
.lsfe{letter-spacing:0.297600px;}
.lsb7{letter-spacing:0.300600px;}
.ls12{letter-spacing:0.302400px;}
.lsaf{letter-spacing:0.303600px;}
.ls35{letter-spacing:0.304800px;}
.lsc5{letter-spacing:0.306600px;}
.lsfd{letter-spacing:0.307200px;}
.lsb6{letter-spacing:0.307800px;}
.ls6d{letter-spacing:0.314400px;}
.ls47{letter-spacing:0.315900px;}
.lsb9{letter-spacing:0.318600px;}
.lsd9{letter-spacing:0.321000px;}
.ls39{letter-spacing:0.323400px;}
.ls9{letter-spacing:0.324000px;}
.ls3c{letter-spacing:0.329400px;}
.ls3d{letter-spacing:0.331800px;}
.ls4e{letter-spacing:0.334800px;}
.lsc3{letter-spacing:0.337800px;}
.ls2e{letter-spacing:0.340200px;}
.ls8e{letter-spacing:0.345600px;}
.lsc{letter-spacing:0.351000px;}
.ls69{letter-spacing:0.356400px;}
.ls129{letter-spacing:0.360000px;}
.ls6a{letter-spacing:0.361800px;}
.ls89{letter-spacing:0.367200px;}
.ls66{letter-spacing:0.372600px;}
.ls26{letter-spacing:0.378000px;}
.ls27{letter-spacing:0.380400px;}
.lsc6{letter-spacing:0.381000px;}
.lsdc{letter-spacing:0.382800px;}
.lsfc{letter-spacing:0.383400px;}
.lscc{letter-spacing:0.386100px;}
.lsb4{letter-spacing:0.387000px;}
.ls6b{letter-spacing:0.388800px;}
.ls91{letter-spacing:0.389400px;}
.lsfa{letter-spacing:0.391200px;}
.ls6c{letter-spacing:0.399600px;}
.ls105{letter-spacing:0.405000px;}
.lsf3{letter-spacing:0.415800px;}
.lsa{letter-spacing:0.421200px;}
.ls32{letter-spacing:0.424800px;}
.ls33{letter-spacing:0.425400px;}
.lsb3{letter-spacing:0.426000px;}
.ls34{letter-spacing:0.432000px;}
.ls72{letter-spacing:0.437400px;}
.ls17{letter-spacing:0.440250px;}
.ls112{letter-spacing:0.450000px;}
.lsf4{letter-spacing:0.450600px;}
.lse6{letter-spacing:0.456600px;}
.ls76{letter-spacing:0.468600px;}
.ls40{letter-spacing:0.475200px;}
.ls2b{letter-spacing:0.486000px;}
.lse2{letter-spacing:0.491400px;}
.lsd7{letter-spacing:0.494400px;}
.lsd8{letter-spacing:0.495000px;}
.ls65{letter-spacing:0.496800px;}
.ls31{letter-spacing:0.499200px;}
.ls102{letter-spacing:0.503400px;}
.ls63{letter-spacing:0.513000px;}
.ls101{letter-spacing:0.514200px;}
.ls15{letter-spacing:0.540000px;}
.ls110{letter-spacing:0.547800px;}
.ls10f{letter-spacing:0.554100px;}
.ls93{letter-spacing:0.558600px;}
.ls119{letter-spacing:0.561600px;}
.ls10c{letter-spacing:0.567000px;}
.ls10d{letter-spacing:0.568800px;}
.lsdb{letter-spacing:0.577800px;}
.ls124{letter-spacing:0.585000px;}
.ls87{letter-spacing:0.594000px;}
.lsb2{letter-spacing:0.594600px;}
.ls10e{letter-spacing:0.596700px;}
.ls7d{letter-spacing:0.610200px;}
.lsd6{letter-spacing:0.615600px;}
.lsd5{letter-spacing:0.621000px;}
.lsda{letter-spacing:0.626400px;}
.lsf9{letter-spacing:0.627600px;}
.ls10b{letter-spacing:0.631800px;}
.ls1d{letter-spacing:0.648000px;}
.ls10a{letter-spacing:0.658800px;}
.ls62{letter-spacing:0.669600px;}
.ls79{letter-spacing:0.672000px;}
.ls7e{letter-spacing:0.680400px;}
.lse5{letter-spacing:0.699600px;}
.ls7c{letter-spacing:0.702000px;}
.lse7{letter-spacing:0.702600px;}
.ls22{letter-spacing:0.714000px;}
.ls116{letter-spacing:0.720000px;}
.ls7f{letter-spacing:0.723600px;}
.lsc2{letter-spacing:0.745200px;}
.ls71{letter-spacing:0.756000px;}
.ls117{letter-spacing:0.760320px;}
.ls111{letter-spacing:0.765000px;}
.lse8{letter-spacing:0.780000px;}
.ls7a{letter-spacing:0.786000px;}
.lsca{letter-spacing:0.793800px;}
.lsad{letter-spacing:0.799200px;}
.ls113{letter-spacing:0.814500px;}
.ls3e{letter-spacing:0.815400px;}
.ls82{letter-spacing:0.820800px;}
.ls1e{letter-spacing:0.864000px;}
.ls8a{letter-spacing:0.880200px;}
.lsb5{letter-spacing:0.888000px;}
.ls2c{letter-spacing:0.918000px;}
.ls18{letter-spacing:0.960000px;}
.ls48{letter-spacing:0.972000px;}
.ls20{letter-spacing:1.026000px;}
.lse9{letter-spacing:1.080000px;}
.ls6f{letter-spacing:1.161000px;}
.lsea{letter-spacing:1.182600px;}
.ls70{letter-spacing:1.204200px;}
.ls49{letter-spacing:1.242000px;}
.lsb1{letter-spacing:1.269000px;}
.lscb{letter-spacing:1.296000px;}
.lsb0{letter-spacing:1.350000px;}
.lsd{letter-spacing:1.458000px;}
.lsf{letter-spacing:1.566000px;}
.lse{letter-spacing:1.663200px;}
.ls10{letter-spacing:1.668600px;}
.ls12a{letter-spacing:1.674000px;}
.ls12d{letter-spacing:1.728000px;}
.ls11{letter-spacing:1.938600px;}
.ls0{letter-spacing:2.592000px;}
.ls25{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls12b{letter-spacing:6.120000px;}
.ls45{letter-spacing:14.742000px;}
.ls9e{letter-spacing:103.511400px;}
.ls9c{letter-spacing:107.039400px;}
.ls9a{letter-spacing:107.040000px;}
.ls9b{letter-spacing:113.592000px;}
.ls9f{letter-spacing:120.244200px;}
.lsa0{letter-spacing:120.244800px;}
.ls9d{letter-spacing:162.223200px;}
.lsa1{letter-spacing:168.775200px;}
.ls53{letter-spacing:176.862000px;}
.ls50{letter-spacing:186.690000px;}
.lsa4{letter-spacing:204.498000px;}
.lsa5{letter-spacing:208.026000px;}
.lsa3{letter-spacing:209.874000px;}
.ls54{letter-spacing:221.970000px;}
.ls99{letter-spacing:227.934000px;}
.ls96{letter-spacing:229.782000px;}
.ls97{letter-spacing:234.486000px;}
.ls95{letter-spacing:237.888000px;}
.ls98{letter-spacing:239.862000px;}
.ls51{letter-spacing:241.878000px;}
.ls55{letter-spacing:270.774000px;}
.lsa6{letter-spacing:624.801600px;}
.lsa2{letter-spacing:938.865600px;}
.ls52{letter-spacing:1031.184000px;}
.ls4f{letter-spacing:2600.178000px;}
.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;}
}
.ws7a{word-spacing:-191.814000px;}
.ws3{word-spacing:-32.136000px;}
.ws2{word-spacing:-15.067500px;}
.wsa9{word-spacing:-13.596000px;}
.ws92{word-spacing:-12.852000px;}
.ws38{word-spacing:-12.798000px;}
.ws8e{word-spacing:-12.744000px;}
.ws7{word-spacing:-12.690000px;}
.wsa6{word-spacing:-12.636000px;}
.ws62{word-spacing:-12.582000px;}
.ws3a{word-spacing:-12.474000px;}
.ws8{word-spacing:-12.420000px;}
.ws35{word-spacing:-12.366000px;}
.ws4{word-spacing:-12.360000px;}
.ws94{word-spacing:-12.312000px;}
.wsa4{word-spacing:-12.267072px;}
.wsf{word-spacing:-12.258000px;}
.ws5e{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.wsa5{word-spacing:-12.159936px;}
.ws8f{word-spacing:-12.150000px;}
.wse{word-spacing:-12.096000px;}
.ws60{word-spacing:-12.042000px;}
.ws5c{word-spacing:-11.934000px;}
.ws95{word-spacing:-11.880000px;}
.ws39{word-spacing:-11.826000px;}
.ws5f{word-spacing:-11.772000px;}
.ws32{word-spacing:-11.718000px;}
.ws77{word-spacing:-11.610000px;}
.ws6{word-spacing:-11.124000px;}
.ws3e{word-spacing:-10.854000px;}
.wsad{word-spacing:-10.485000px;}
.wsab{word-spacing:-10.305000px;}
.wsac{word-spacing:-10.215000px;}
.ws13{word-spacing:-9.360000px;}
.wsaa{word-spacing:-9.315000px;}
.wsae{word-spacing:-8.820000px;}
.wsa7{word-spacing:-8.529300px;}
.ws93{word-spacing:-8.459100px;}
.wsc{word-spacing:-8.388900px;}
.ws88{word-spacing:-8.353800px;}
.wsd{word-spacing:-8.318700px;}
.ws34{word-spacing:-8.283600px;}
.ws5{word-spacing:-8.280000px;}
.ws36{word-spacing:-8.248500px;}
.ws33{word-spacing:-8.213400px;}
.ws9{word-spacing:-8.178300px;}
.ws90{word-spacing:-8.143200px;}
.ws5d{word-spacing:-8.108100px;}
.ws91{word-spacing:-8.073000px;}
.ws75{word-spacing:-8.037900px;}
.ws5b{word-spacing:-8.020350px;}
.ws78{word-spacing:-8.002800px;}
.wsb{word-spacing:-7.967700px;}
.ws63{word-spacing:-7.932600px;}
.wsa{word-spacing:-7.897500px;}
.ws76{word-spacing:-7.862400px;}
.wsa3{word-spacing:-7.827300px;}
.ws16{word-spacing:-7.800000px;}
.ws89{word-spacing:-7.757100px;}
.wsa8{word-spacing:-7.686900px;}
.ws58{word-spacing:-7.616700px;}
.ws8a{word-spacing:-7.125300px;}
.ws10{word-spacing:-6.630000px;}
.wsc7{word-spacing:-6.120000px;}
.ws3f{word-spacing:-5.508000px;}
.ws14{word-spacing:-5.340000px;}
.ws8d{word-spacing:-4.482000px;}
.ws59{word-spacing:-4.284000px;}
.wscf{word-spacing:-3.960000px;}
.ws15{word-spacing:-3.840000px;}
.ws18{word-spacing:-3.600000px;}
.ws12{word-spacing:-3.276000px;}
.ws31{word-spacing:-2.760000px;}
.ws1{word-spacing:-2.640000px;}
.wsa0{word-spacing:-2.268000px;}
.wsce{word-spacing:-2.160000px;}
.wsb0{word-spacing:-1.998000px;}
.ws8c{word-spacing:-1.944000px;}
.ws72{word-spacing:-1.890000px;}
.ws1f{word-spacing:-1.836000px;}
.ws40{word-spacing:-1.782000px;}
.ws96{word-spacing:-1.674000px;}
.ws2c{word-spacing:-1.632000px;}
.ws64{word-spacing:-1.620000px;}
.wsb4{word-spacing:-1.575000px;}
.wsb3{word-spacing:-1.530000px;}
.wsb1{word-spacing:-1.512000px;}
.ws43{word-spacing:-1.458000px;}
.ws6e{word-spacing:-1.404000px;}
.ws2a{word-spacing:-1.386000px;}
.ws70{word-spacing:-1.350000px;}
.ws6c{word-spacing:-1.296000px;}
.ws17{word-spacing:-1.260000px;}
.ws20{word-spacing:-1.242000px;}
.ws29{word-spacing:-1.188000px;}
.ws19{word-spacing:-1.134000px;}
.ws97{word-spacing:-1.080000px;}
.wsb2{word-spacing:-1.035000px;}
.ws9e{word-spacing:-1.026000px;}
.ws74{word-spacing:-0.972000px;}
.ws5a{word-spacing:-0.966000px;}
.ws25{word-spacing:-0.864000px;}
.wsb5{word-spacing:-0.855000px;}
.ws6f{word-spacing:-0.810000px;}
.ws9a{word-spacing:-0.780000px;}
.wsc5{word-spacing:-0.765000px;}
.wsaf{word-spacing:-0.760320px;}
.wsb7{word-spacing:-0.720000px;}
.ws2d{word-spacing:-0.714000px;}
.ws41{word-spacing:-0.702000px;}
.ws3d{word-spacing:-0.648000px;}
.ws22{word-spacing:-0.594000px;}
.wsc9{word-spacing:-0.585000px;}
.ws1b{word-spacing:-0.540000px;}
.wscb{word-spacing:-0.495000px;}
.ws23{word-spacing:-0.486000px;}
.ws6b{word-spacing:-0.432000px;}
.wsbf{word-spacing:-0.405000px;}
.ws1e{word-spacing:-0.378000px;}
.wsc0{word-spacing:-0.360000px;}
.ws1d{word-spacing:-0.324000px;}
.wsc3{word-spacing:-0.315000px;}
.ws27{word-spacing:-0.270000px;}
.ws42{word-spacing:-0.216000px;}
.ws3c{word-spacing:-0.162000px;}
.ws65{word-spacing:-0.108000px;}
.ws2f{word-spacing:-0.102000px;}
.wsca{word-spacing:-0.090000px;}
.ws98{word-spacing:-0.060000px;}
.ws37{word-spacing:-0.054000px;}
.wsa1{word-spacing:-0.053568px;}
.ws61{word-spacing:-0.035100px;}
.ws11{word-spacing:0.000000px;}
.wsbd{word-spacing:0.045000px;}
.ws1c{word-spacing:0.054000px;}
.wsc8{word-spacing:0.090000px;}
.ws24{word-spacing:0.108000px;}
.ws9f{word-spacing:0.120000px;}
.wsb6{word-spacing:0.135000px;}
.ws2e{word-spacing:0.153000px;}
.ws1a{word-spacing:0.162000px;}
.wsb8{word-spacing:0.180000px;}
.ws66{word-spacing:0.216000px;}
.ws67{word-spacing:0.270000px;}
.ws6a{word-spacing:0.324000px;}
.wsbe{word-spacing:0.360000px;}
.ws87{word-spacing:0.378000px;}
.wsc1{word-spacing:0.405000px;}
.ws21{word-spacing:0.432000px;}
.ws71{word-spacing:0.486000px;}
.ws6d{word-spacing:0.540000px;}
.ws30{word-spacing:0.561000px;}
.ws73{word-spacing:0.594000px;}
.ws69{word-spacing:0.648000px;}
.ws9b{word-spacing:0.702000px;}
.wsc2{word-spacing:0.855000px;}
.ws26{word-spacing:0.864000px;}
.wsb9{word-spacing:0.900000px;}
.wsbb{word-spacing:0.990000px;}
.ws99{word-spacing:1.026000px;}
.wsc6{word-spacing:1.035000px;}
.ws3b{word-spacing:1.134000px;}
.wsbc{word-spacing:1.170000px;}
.ws68{word-spacing:1.242000px;}
.ws2b{word-spacing:1.404000px;}
.ws9c{word-spacing:1.512000px;}
.ws9d{word-spacing:1.566000px;}
.wsc4{word-spacing:1.575000px;}
.wsba{word-spacing:1.620000px;}
.ws8b{word-spacing:2.052000px;}
.ws28{word-spacing:2.484000px;}
.wscd{word-spacing:4.266000px;}
.wscc{word-spacing:4.320000px;}
.wsa2{word-spacing:22.927104px;}
.ws86{word-spacing:107.730000px;}
.ws80{word-spacing:118.524000px;}
.ws56{word-spacing:170.478000px;}
.ws50{word-spacing:181.272000px;}
.ws7e{word-spacing:194.712000px;}
.ws7c{word-spacing:198.240000px;}
.ws7b{word-spacing:200.088000px;}
.ws4f{word-spacing:202.104000px;}
.ws57{word-spacing:203.028000px;}
.ws7f{word-spacing:204.792000px;}
.ws7d{word-spacing:210.168000px;}
.ws4d{word-spacing:212.184000px;}
.ws4e{word-spacing:216.846000px;}
.ws79{word-spacing:244.398000px;}
.ws47{word-spacing:251.496000px;}
.ws4b{word-spacing:259.308000px;}
.ws49{word-spacing:260.988000px;}
.ws44{word-spacing:276.570000px;}
.ws45{word-spacing:359.898000px;}
.ws84{word-spacing:386.778000px;}
.ws48{word-spacing:516.978000px;}
.ws54{word-spacing:550.620000px;}
.ws46{word-spacing:611.478000px;}
.ws85{word-spacing:625.506000px;}
.ws83{word-spacing:645.666000px;}
.ws55{word-spacing:920.472000px;}
.ws53{word-spacing:940.632000px;}
.ws81{word-spacing:1412.922000px;}
.ws51{word-spacing:1864.254000px;}
.ws82{word-spacing:2050.440000px;}
.ws4a{word-spacing:2486.064000px;}
.ws52{word-spacing:2509.626000px;}
.ws4c{word-spacing:2552.760000px;}
._55{margin-left:-237.804000px;}
._6c{margin-left:-89.779968px;}
._6b{margin-left:-53.085888px;}
._53{margin-left:-12.582000px;}
._d{margin-left:-10.951200px;}
._1{margin-left:-9.859200px;}
._6d{margin-left:-8.569800px;}
._6{margin-left:-6.915000px;}
._8{margin-left:-5.667000px;}
._b{margin-left:-4.596300px;}
._3{margin-left:-3.432000px;}
._0{margin-left:-1.776000px;}
._9{width:1.003800px;}
._5{width:2.509800px;}
._4{width:4.045800px;}
._2{width:5.460000px;}
._7{width:7.322400px;}
._54{width:10.314000px;}
._c{width:12.310800px;}
._6a{width:46.726200px;}
._a{width:48.736800px;}
._3c{width:54.894000px;}
._23{width:61.278000px;}
._26{width:83.874000px;}
._2f{width:87.612000px;}
._34{width:91.308000px;}
._48{width:93.366000px;}
._5a{width:100.002000px;}
._15{width:101.388000px;}
._3d{width:102.690000px;}
._1f{width:105.882000px;}
._63{width:107.058000px;}
._43{width:108.150000px;}
._59{width:109.746000px;}
._4d{width:111.678000px;}
._5e{width:113.476800px;}
._58{width:115.080000px;}
._61{width:118.188000px;}
._56{width:119.826000px;}
._13{width:121.170000px;}
._64{width:123.270000px;}
._33{width:125.706000px;}
._65{width:128.646000px;}
._5b{width:130.872000px;}
._27{width:131.922000px;}
._20{width:133.308000px;}
._35{width:136.416000px;}
._22{width:140.784000px;}
._62{width:144.060000px;}
._32{width:146.496000px;}
._3f{width:149.898000px;}
._14{width:151.158000px;}
._1a{width:152.292000px;}
._29{width:155.820000px;}
._19{width:160.482000px;}
._46{width:161.574000px;}
._57{width:163.800000px;}
._42{width:165.186000px;}
._5f{width:166.866000px;}
._66{width:168.919200px;}
._60{width:170.604000px;}
._17{width:171.654000px;}
._5d{width:174.678000px;}
._40{width:176.358000px;}
._21{width:181.314000px;}
._5c{width:186.060000px;}
._25{width:189.462000px;}
._18{width:191.604000px;}
._24{width:195.300000px;}
._1b{width:200.298000px;}
._47{width:201.684000px;}
._1e{width:205.338000px;}
._39{width:208.530000px;}
._1c{width:210.168000px;}
._3b{width:220.458000px;}
._10{width:222.012000px;}
._28{width:235.284000px;}
._44{width:239.610000px;}
._38{width:245.028000px;}
._2e{width:250.278000px;}
._3a{width:254.268000px;}
._41{width:255.360000px;}
._36{width:267.624000px;}
._52{width:268.884000px;}
._11{width:270.018000px;}
._f{width:279.006000px;}
._2b{width:280.308000px;}
._31{width:288.960000px;}
._1d{width:290.640000px;}
._49{width:295.818000px;}
._37{width:299.292000px;}
._12{width:323.988000px;}
._e{width:339.066000px;}
._30{width:425.124000px;}
._51{width:443.268000px;}
._3e{width:501.144000px;}
._45{width:540.414000px;}
._50{width:578.802000px;}
._69{width:617.736000px;}
._68{width:628.446000px;}
._4f{width:639.156000px;}
._2a{width:670.278000px;}
._67{width:890.484000px;}
._4b{width:945.882000px;}
._4c{width:951.678000px;}
._2d{width:970.284000px;}
._16{width:984.900000px;}
._4e{width:1049.286000px;}
._2c{width:1069.278000px;}
._4a{width:1129.810200px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsc{font-size:27.300000px;}
.fs8{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fse{font-size:38.016000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fsf{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fsd{font-size:53.568000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fs7{font-size:66.000000px;}
.fsa{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y180{bottom:1.296150px;}
.y185{bottom:4.751250px;}
.y19c{bottom:4.751400px;}
.y173{bottom:4.752600px;}
.y18b{bottom:4.752750px;}
.y186{bottom:10.799250px;}
.y19d{bottom:10.799400px;}
.y174{bottom:10.800600px;}
.y18c{bottom:10.800750px;}
.y197{bottom:10.800900px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y2e{bottom:68.313900px;}
.y1c4{bottom:70.893750px;}
.y16e{bottom:72.297000px;}
.yd8{bottom:72.544800px;}
.y12e{bottom:76.654800px;}
.y59{bottom:78.050100px;}
.y4e{bottom:83.091300px;}
.y2d{bottom:83.307900px;}
.y1c3{bottom:83.640000px;}
.ycd{bottom:83.796300px;}
.y10a{bottom:87.156300px;}
.y16d{bottom:87.295500px;}
.yd7{bottom:87.544800px;}
.y12d{bottom:91.654800px;}
.y58{bottom:93.048600px;}
.y1c2{bottom:96.386250px;}
.y4d{bottom:98.089800px;}
.ycc{bottom:98.794800px;}
.y16c{bottom:102.294000px;}
.yd6{bottom:102.547800px;}
.y2c{bottom:102.636900px;}
.y12c{bottom:106.654800px;}
.y57{bottom:108.047100px;}
.y1c1{bottom:109.132500px;}
.y4c{bottom:113.094300px;}
.y2b{bottom:113.307900px;}
.ycb{bottom:113.793300px;}
.y16b{bottom:117.298500px;}
.yd5{bottom:117.546300px;}
.y12b{bottom:121.654800px;}
.y1c0{bottom:121.878750px;}
.y56{bottom:123.045600px;}
.y4b{bottom:128.092800px;}
.yca{bottom:128.796300px;}
.y16a{bottom:132.297000px;}
.yd4{bottom:132.544800px;}
.y2a{bottom:132.636900px;}
.y1bf{bottom:134.625000px;}
.y12a{bottom:136.654800px;}
.y55{bottom:138.044100px;}
.y4a{bottom:143.091300px;}
.yc9{bottom:143.794800px;}
.y169{bottom:147.295500px;}
.y1be{bottom:147.371250px;}
.yd3{bottom:147.544800px;}
.y129{bottom:151.654800px;}
.y54{bottom:153.042600px;}
.y49{bottom:158.089800px;}
.yc8{bottom:158.797800px;}
.y1bd{bottom:160.117500px;}
.y168{bottom:162.294000px;}
.yd2{bottom:162.544800px;}
.y128{bottom:166.656300px;}
.y53{bottom:168.041100px;}
.y1bc{bottom:172.863750px;}
.y48{bottom:173.089800px;}
.yc7{bottom:173.796300px;}
.y167{bottom:177.298500px;}
.yd1{bottom:177.544800px;}
.y29{bottom:177.687300px;}
.y127{bottom:181.654800px;}
.y52{bottom:183.039600px;}
.y1bb{bottom:185.610000px;}
.y47{bottom:188.089800px;}
.yc6{bottom:188.794800px;}
.y166{bottom:192.297000px;}
.yd0{bottom:192.546300px;}
.y28{bottom:192.685800px;}
.y126{bottom:196.657800px;}
.y51{bottom:198.038100px;}
.y1ba{bottom:198.356250px;}
.y46{bottom:203.094300px;}
.yc5{bottom:203.797800px;}
.y165{bottom:207.295500px;}
.ycf{bottom:207.544800px;}
.y27{bottom:207.684300px;}
.y1b9{bottom:211.102500px;}
.y125{bottom:211.656300px;}
.y50{bottom:213.036600px;}
.y45{bottom:218.092800px;}
.yc4{bottom:218.796300px;}
.y164{bottom:222.294000px;}
.yce{bottom:222.543300px;}
.y26{bottom:222.684300px;}
.y1b8{bottom:223.848750px;}
.y124{bottom:226.654800px;}
.y44{bottom:233.091300px;}
.yc3{bottom:233.794800px;}
.y1b7{bottom:236.595000px;}
.y163{bottom:237.298500px;}
.y123{bottom:241.654800px;}
.y43{bottom:248.089800px;}
.yc2{bottom:248.800800px;}
.y1b6{bottom:249.341250px;}
.y25{bottom:249.696300px;}
.y162{bottom:252.297000px;}
.y122{bottom:256.657800px;}
.y1b5{bottom:262.087500px;}
.y42{bottom:263.091300px;}
.yc1{bottom:263.799300px;}
.y24{bottom:264.694800px;}
.y89{bottom:266.043300px;}
.y161{bottom:267.295500px;}
.y121{bottom:271.656300px;}
.y1b4{bottom:274.833750px;}
.y105{bottom:277.293300px;}
.y41{bottom:278.089800px;}
.yc0{bottom:278.797800px;}
.y23{bottom:279.693300px;}
.y160{bottom:282.294000px;}
.y120{bottom:286.654800px;}
.y1b3{bottom:287.580000px;}
.y40{bottom:293.089800px;}
.ybf{bottom:293.796300px;}
.y22{bottom:294.691800px;}
.y88{bottom:296.110800px;}
.y15f{bottom:297.292500px;}
.y1b2{bottom:300.326250px;}
.y11f{bottom:301.656300px;}
.y104{bottom:307.480800px;}
.y3f{bottom:308.089800px;}
.ybe{bottom:308.794800px;}
.y21{bottom:309.690300px;}
.y1b1{bottom:313.072500px;}
.y87{bottom:313.551300px;}
.y11e{bottom:316.654800px;}
.y3e{bottom:323.089800px;}
.ybd{bottom:323.794800px;}
.y20{bottom:324.688800px;}
.y103{bottom:324.906300px;}
.y15e{bottom:325.425750px;}
.y1b0{bottom:325.818750px;}
.y86{bottom:330.991800px;}
.y11d{bottom:331.654800px;}
.y3d{bottom:338.089800px;}
.y1af{bottom:338.565000px;}
.ybc{bottom:338.806800px;}
.y1f{bottom:339.687300px;}
.y15d{bottom:340.424250px;}
.y102{bottom:342.346800px;}
.y11c{bottom:346.656300px;}
.y85{bottom:348.432300px;}
.y1ae{bottom:351.311250px;}
.y3c{bottom:353.097300px;}
.ybb{bottom:353.805300px;}
.y1e{bottom:354.685800px;}
.y15c{bottom:355.422750px;}
.y101{bottom:359.787300px;}
.y11b{bottom:361.654800px;}
.y1ad{bottom:364.057500px;}
.y84{bottom:365.872800px;}
.y3b{bottom:368.095800px;}
.yba{bottom:368.803800px;}
.y1d{bottom:369.688800px;}
.y15b{bottom:370.421250px;}
.y11a{bottom:376.654800px;}
.y1ac{bottom:376.807500px;}
.y100{bottom:377.227800px;}
.y3a{bottom:383.094300px;}
.y83{bottom:383.313300px;}
.yb9{bottom:383.802300px;}
.y1c{bottom:384.687300px;}
.y119{bottom:391.654800px;}
.yff{bottom:394.668300px;}
.y39{bottom:398.092800px;}
.y15a{bottom:398.559000px;}
.yb8{bottom:398.800800px;}
.y1b{bottom:399.685800px;}
.y82{bottom:400.753800px;}
.y118{bottom:406.654800px;}
.y1ab{bottom:409.810500px;}
.yfe{bottom:412.102800px;}
.y109{bottom:412.485150px;}
.y38{bottom:413.091300px;}
.y159{bottom:413.557500px;}
.yb7{bottom:413.799300px;}
.y1a{bottom:414.685800px;}
.y81{bottom:418.194300px;}
.y117{bottom:421.657800px;}
.y1ee{bottom:424.302300px;}
.y1aa{bottom:424.809000px;}
.y108{bottom:427.483650px;}
.y37{bottom:428.089800px;}
.y158{bottom:428.556000px;}
.yb6{bottom:428.797800px;}
.yfd{bottom:429.543300px;}
.y19{bottom:429.685800px;}
.y80{bottom:435.634800px;}
.y116{bottom:436.656300px;}
.y1ed{bottom:439.300800px;}
.y1a9{bottom:439.810500px;}
.y107{bottom:442.482150px;}
.y36{bottom:443.089800px;}
.y157{bottom:443.554500px;}
.yb5{bottom:443.796300px;}
.y18{bottom:444.685800px;}
.yfc{bottom:446.977800px;}
.y115{bottom:451.654800px;}
.y7f{bottom:453.075300px;}
.y1ec{bottom:454.299300px;}
.y1a8{bottom:454.809000px;}
.y35{bottom:458.089800px;}
.y156{bottom:458.553000px;}
.yb4{bottom:458.794800px;}
.y17{bottom:459.694800px;}
.yfb{bottom:464.418300px;}
.y114{bottom:466.656300px;}
.y1eb{bottom:469.297800px;}
.y1a7{bottom:469.812000px;}
.y7e{bottom:470.515800px;}
.y34{bottom:473.088300px;}
.y155{bottom:473.551500px;}
.yb3{bottom:473.794800px;}
.y16{bottom:474.693300px;}
.y113{bottom:481.654800px;}
.yfa{bottom:481.852800px;}
.y1ea{bottom:484.296300px;}
.y1a6{bottom:484.810500px;}
.y7d{bottom:487.956300px;}
.y154{bottom:488.551500px;}
.yb2{bottom:488.794800px;}
.y15{bottom:489.691800px;}
.y112{bottom:496.656300px;}
.yf9{bottom:499.293300px;}
.y1e9{bottom:499.294800px;}
.y1a5{bottom:499.809000px;}
.y153{bottom:503.551500px;}
.yb1{bottom:503.794800px;}
.y14{bottom:504.690300px;}
.y7c{bottom:505.396800px;}
.y111{bottom:511.654800px;}
.y1e8{bottom:514.293300px;}
.y1a4{bottom:514.809000px;}
.yf8{bottom:516.727800px;}
.y152{bottom:518.554500px;}
.yb0{bottom:518.797800px;}
.y7b{bottom:522.837300px;}
.y110{bottom:526.656300px;}
.y4f{bottom:527.683950px;}
.y1a3{bottom:529.807500px;}
.y151{bottom:533.553000px;}
.yaf{bottom:533.796300px;}
.yf7{bottom:534.168300px;}
.y1e7{bottom:536.047800px;}
.y7a{bottom:540.277800px;}
.y10f{bottom:541.654800px;}
.y150{bottom:548.551500px;}
.yae{bottom:548.794800px;}
.y1e6{bottom:551.046300px;}
.yf6{bottom:551.602800px;}
.y13{bottom:551.940300px;}
.y10d{bottom:556.654800px;}
.y79{bottom:557.718300px;}
.y1a2{bottom:557.937600px;}
.y10e{bottom:561.243300px;}
.y14f{bottom:563.550000px;}
.yad{bottom:563.796300px;}
.y12{bottom:568.437300px;}
.yf5{bottom:569.043300px;}
.y10b{bottom:571.653300px;}
.y1e5{bottom:572.794800px;}
.y1a1{bottom:572.937600px;}
.y78{bottom:575.158800px;}
.y10c{bottom:576.243300px;}
.y14e{bottom:578.550000px;}
.yac{bottom:578.794800px;}
.y11{bottom:584.955300px;}
.yf4{bottom:586.480800px;}
.y1a0{bottom:587.936100px;}
.y77{bottom:592.599300px;}
.yab{bottom:593.796300px;}
.y1e4{bottom:594.543300px;}
.y10{bottom:601.452300px;}
.yf3{bottom:603.918300px;}
.y14d{bottom:608.676150px;}
.yaa{bottom:608.794800px;}
.y1e3{bottom:609.543300px;}
.y76{bottom:610.039800px;}
.y19f{bottom:616.066350px;}
.yf{bottom:617.949300px;}
.yf2{bottom:621.355800px;}
.y14c{bottom:623.674650px;}
.ya9{bottom:623.803800px;}
.y75{bottom:627.480300px;}
.y12f{bottom:627.598950px;}
.y19e{bottom:631.066350px;}
.ye{bottom:634.446300px;}
.y14b{bottom:638.673150px;}
.yf1{bottom:638.793300px;}
.ya8{bottom:638.802300px;}
.y19b{bottom:641.065500px;}
.y1e2{bottom:642.547800px;}
.y74{bottom:644.920800px;}
.y19a{bottom:646.064850px;}
.yd{bottom:650.943300px;}
.y14a{bottom:653.673150px;}
.ya7{bottom:653.800800px;}
.yf0{bottom:656.230800px;}
.y1e1{bottom:657.546300px;}
.y199{bottom:662.266350px;}
.y73{bottom:662.361300px;}
.yc{bottom:667.440300px;}
.y149{bottom:668.674650px;}
.ya6{bottom:668.799300px;}
.y1e0{bottom:672.544800px;}
.yef{bottom:673.665300px;}
.y198{bottom:677.266350px;}
.y72{bottom:679.801800px;}
.y148{bottom:683.673150px;}
.ya5{bottom:683.797800px;}
.yb{bottom:683.937300px;}
.y196{bottom:687.264000px;}
.y1df{bottom:687.543300px;}
.yee{bottom:691.105800px;}
.y195{bottom:692.264850px;}
.y71{bottom:697.242300px;}
.y147{bottom:698.673150px;}
.ya4{bottom:698.796300px;}
.ya{bottom:700.434300px;}
.y1de{bottom:702.543300px;}
.y70{bottom:702.859800px;}
.y194{bottom:708.466350px;}
.yed{bottom:708.543300px;}
.y146{bottom:713.671650px;}
.ya3{bottom:713.794800px;}
.y193{bottom:723.466350px;}
.y6f{bottom:725.917800px;}
.yec{bottom:725.977800px;}
.ya2{bottom:728.794800px;}
.y9{bottom:730.434300px;}
.y191{bottom:733.464000px;}
.y1dd{bottom:735.561300px;}
.y106{bottom:735.879750px;}
.y190{bottom:738.464700px;}
.y192{bottom:738.464850px;}
.y6e{bottom:743.358300px;}
.yeb{bottom:743.418300px;}
.ya1{bottom:743.799300px;}
.y145{bottom:743.808300px;}
.y8{bottom:748.434300px;}
.y1dc{bottom:750.559800px;}
.y18f{bottom:754.666350px;}
.y31{bottom:757.050000px;}
.ya0{bottom:758.797800px;}
.y144{bottom:758.806800px;}
.y6d{bottom:760.798800px;}
.yea{bottom:760.855800px;}
.y1db{bottom:765.558300px;}
.y18e{bottom:769.666350px;}
.y9f{bottom:773.796300px;}
.y143{bottom:773.805300px;}
.y30{bottom:778.050000px;}
.y6c{bottom:778.239300px;}
.ye9{bottom:778.290300px;}
.y18a{bottom:779.664000px;}
.y1da{bottom:780.556800px;}
.y7{bottom:781.416300px;}
.y189{bottom:784.664700px;}
.y18d{bottom:784.664850px;}
.y9e{bottom:788.794800px;}
.y142{bottom:788.803800px;}
.y1d9{bottom:795.555300px;}
.y6b{bottom:795.679800px;}
.ye8{bottom:795.730800px;}
.y2f{bottom:799.050000px;}
.y188{bottom:800.866200px;}
.y9d{bottom:803.794800px;}
.y141{bottom:803.802300px;}
.y1d8{bottom:810.553800px;}
.y6a{bottom:813.120300px;}
.ye7{bottom:813.165300px;}
.y187{bottom:815.866200px;}
.y9c{bottom:818.794800px;}
.y140{bottom:818.800800px;}
.y1d7{bottom:825.552300px;}
.y184{bottom:825.865500px;}
.y6{bottom:826.422300px;}
.y69{bottom:830.560800px;}
.ye6{bottom:830.599800px;}
.y183{bottom:830.864700px;}
.y13f{bottom:833.799300px;}
.y9b{bottom:833.800800px;}
.y1d6{bottom:840.550800px;}
.y182{bottom:847.066200px;}
.y68{bottom:848.001300px;}
.ye5{bottom:848.040300px;}
.y13e{bottom:848.797800px;}
.y9a{bottom:848.799300px;}
.y1d5{bottom:855.549300px;}
.y67{bottom:856.726800px;}
.y181{bottom:862.066200px;}
.y13d{bottom:863.796300px;}
.y99{bottom:863.797800px;}
.ye4{bottom:865.480800px;}
.y1d4{bottom:870.547800px;}
.y5{bottom:871.428300px;}
.y17f{bottom:876.064500px;}
.y17e{bottom:877.064700px;}
.y13c{bottom:878.794800px;}
.y98{bottom:878.796300px;}
.y66{bottom:882.882300px;}
.ye3{bottom:882.918300px;}
.y1d3{bottom:885.546300px;}
.y65{bottom:891.607800px;}
.y17d{bottom:893.266200px;}
.y97{bottom:893.794800px;}
.y13b{bottom:893.799300px;}
.ye2{bottom:900.343800px;}
.y1d2{bottom:900.544800px;}
.y17c{bottom:908.266200px;}
.y13a{bottom:908.797800px;}
.y96{bottom:908.808300px;}
.y1d1{bottom:915.543300px;}
.y4{bottom:916.434300px;}
.y64{bottom:917.763300px;}
.ye1{bottom:917.784300px;}
.y17a{bottom:918.264000px;}
.y17b{bottom:923.264700px;}
.y179{bottom:923.266050px;}
.y139{bottom:923.796300px;}
.y95{bottom:923.806800px;}
.y32{bottom:926.409600px;}
.y1d0{bottom:930.543300px;}
.y63{bottom:935.203800px;}
.ye0{bottom:935.224800px;}
.y138{bottom:938.794800px;}
.y94{bottom:938.805300px;}
.y178{bottom:939.466050px;}
.y62{bottom:952.644300px;}
.ydf{bottom:952.665300px;}
.y137{bottom:953.794800px;}
.y93{bottom:953.803800px;}
.y177{bottom:954.466050px;}
.y1cf{bottom:963.580800px;}
.y136{bottom:968.794800px;}
.y92{bottom:968.802300px;}
.y176{bottom:969.466050px;}
.y61{bottom:970.084800px;}
.yde{bottom:970.105800px;}
.y1ce{bottom:976.327050px;}
.y60{bottom:978.810300px;}
.y172{bottom:979.464000px;}
.y91{bottom:983.800800px;}
.y175{bottom:984.464550px;}
.y171{bottom:984.466050px;}
.ydd{bottom:987.534300px;}
.y135{bottom:988.383300px;}
.y1cd{bottom:989.073300px;}
.y134{bottom:998.794800px;}
.y90{bottom:998.799300px;}
.y170{bottom:1000.666050px;}
.y1cc{bottom:1001.819550px;}
.y5f{bottom:1004.965800px;}
.ydc{bottom:1004.974800px;}
.y133{bottom:1013.796300px;}
.y8f{bottom:1013.797800px;}
.y1cb{bottom:1014.565800px;}
.y16f{bottom:1015.664550px;}
.y5e{bottom:1022.406300px;}
.ydb{bottom:1022.415300px;}
.y1ca{bottom:1027.312050px;}
.y132{bottom:1028.794800px;}
.y8e{bottom:1028.796300px;}
.y5d{bottom:1039.846800px;}
.yda{bottom:1039.855800px;}
.y1c9{bottom:1040.058300px;}
.y8d{bottom:1043.794800px;}
.y131{bottom:1043.796300px;}
.y1c8{bottom:1052.804550px;}
.y5c{bottom:1057.287300px;}
.yd9{bottom:1057.293300px;}
.y130{bottom:1058.794800px;}
.y8c{bottom:1058.796300px;}
.y1c7{bottom:1065.550800px;}
.y8b{bottom:1073.794800px;}
.y5b{bottom:1074.727800px;}
.y1c6{bottom:1078.297050px;}
.y8a{bottom:1088.793300px;}
.y1c5{bottom:1091.043300px;}
.y5a{bottom:1092.168300px;}
.y33{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.h27{height:11.232000px;}
.h24{height:17.712000px;}
.hd{height:23.842749px;}
.h22{height:28.466100px;}
.h13{height:29.988000px;}
.h26{height:30.830976px;}
.h14{height:34.062000px;}
.h20{height:34.074000px;}
.h1f{height:34.086000px;}
.h1d{height:34.098000px;}
.h1e{height:34.110000px;}
.h3{height:34.523438px;}
.h29{height:36.495000px;}
.hf{height:36.681152px;}
.h21{height:38.556000px;}
.h7{height:38.838867px;}
.he{height:41.158749px;}
.h2{height:43.154297px;}
.h25{height:43.443648px;}
.h8{height:43.794000px;}
.h4{height:44.233154px;}
.h11{height:44.262900px;}
.h28{height:44.292300px;}
.h23{height:44.292900px;}
.h1c{height:44.298900px;}
.h18{height:46.766100px;}
.h1b{height:46.772100px;}
.h9{height:46.784100px;}
.h19{height:46.796100px;}
.h1a{height:46.802100px;}
.hb{height:46.808100px;}
.h12{height:46.814100px;}
.ha{height:46.820100px;}
.h17{height:46.826100px;}
.hc{height:47.469727px;}
.h6{height:48.450293px;}
.h16{height:56.574000px;}
.h15{height:68.922000px;}
.h10{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w3{width:22.032000px;}
.w2{width:24.624000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:3.023850px;}
.x22{left:12.528000px;}
.x1d{left:15.119850px;}
.x2{left:61.191450px;}
.x6{left:100.349550px;}
.x8{left:118.025850px;}
.x7{left:140.952750px;}
.xa{left:169.769850px;}
.xb{left:193.415850px;}
.x4{left:233.456400px;}
.x12{left:234.838650px;}
.x14{left:238.143900px;}
.x2e{left:239.475900px;}
.x5{left:251.462100px;}
.xc{left:259.807350px;}
.x18{left:300.627600px;}
.x17{left:365.347650px;}
.x10{left:368.660850px;}
.x16{left:430.067850px;}
.x1f{left:457.230000px;}
.x1b{left:465.160500px;}
.x20{left:481.813050px;}
.x1e{left:489.769350px;}
.x2a{left:536.278500px;}
.x2b{left:560.939850px;}
.x2c{left:568.564500px;}
.x28{left:578.455500px;}
.x21{left:582.391500px;}
.x3{left:584.586600px;}
.x2d{left:593.313300px;}
.x11{left:601.907850px;}
.x29{left:603.181650px;}
.x23{left:604.541700px;}
.x26{left:606.115500px;}
.x1a{left:609.818250px;}
.x27{left:630.827850px;}
.x24{left:651.475500px;}
.x25{left:676.153800px;}
.xf{left:747.217350px;}
.xd{left:756.089850px;}
.xe{left:764.573850px;}
.x9{left:773.131350px;}
.x15{left:781.260600px;}
.x19{left:813.154650px;}
.x2f{left:816.003600px;}
.x13{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v2{vertical-align:-18.133333pt;}
.va{vertical-align:-16.320000pt;}
.v5{vertical-align:-15.413333pt;}
.vc{vertical-align:-12.288000pt;}
.v3{vertical-align:-9.674667pt;}
.vb{vertical-align:-7.456000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:9.600000pt;}
.v6{vertical-align:15.392000pt;}
.v4{vertical-align:16.282667pt;}
.v1{vertical-align:18.133333pt;}
.v9{vertical-align:20.010667pt;}
.v8{vertical-align:30.986667pt;}
.ls1a{letter-spacing:-3.626667pt;}
.ls128{letter-spacing:-1.560000pt;}
.ls123{letter-spacing:-1.320000pt;}
.ls86{letter-spacing:-1.248000pt;}
.lsa7{letter-spacing:-1.152000pt;}
.ls12c{letter-spacing:-1.080000pt;}
.lsd0{letter-spacing:-1.056000pt;}
.ls122{letter-spacing:-1.040000pt;}
.lsac{letter-spacing:-1.008000pt;}
.ls127{letter-spacing:-0.920000pt;}
.ls11f{letter-spacing:-0.880000pt;}
.ls4a{letter-spacing:-0.864000pt;}
.ls57{letter-spacing:-0.858667pt;}
.lsd2{letter-spacing:-0.816000pt;}
.lsee{letter-spacing:-0.768000pt;}
.ls11c{letter-spacing:-0.760000pt;}
.lsd1{letter-spacing:-0.748800pt;}
.ls21{letter-spacing:-0.725333pt;}
.lscd{letter-spacing:-0.720000pt;}
.ls125{letter-spacing:-0.640000pt;}
.lsa8{letter-spacing:-0.576000pt;}
.ls84{letter-spacing:-0.528000pt;}
.ls24{letter-spacing:-0.498667pt;}
.ls4d{letter-spacing:-0.480000pt;}
.ls4c{letter-spacing:-0.432000pt;}
.ls11d{letter-spacing:-0.400000pt;}
.ls83{letter-spacing:-0.384000pt;}
.lsaa{letter-spacing:-0.336000pt;}
.lsce{letter-spacing:-0.288000pt;}
.ls120{letter-spacing:-0.280000pt;}
.ls11a{letter-spacing:-0.249600pt;}
.ls1f{letter-spacing:-0.240000pt;}
.ls56{letter-spacing:-0.192000pt;}
.lscf{letter-spacing:-0.187200pt;}
.ls11e{letter-spacing:-0.160000pt;}
.ls4b{letter-spacing:-0.144000pt;}
.ls23{letter-spacing:-0.136000pt;}
.ls118{letter-spacing:-0.124800pt;}
.ls11b{letter-spacing:-0.120000pt;}
.lsef{letter-spacing:-0.106667pt;}
.ls1b{letter-spacing:-0.096000pt;}
.lsa9{letter-spacing:-0.093600pt;}
.ls126{letter-spacing:-0.080000pt;}
.ls1c{letter-spacing:-0.062400pt;}
.ls85{letter-spacing:-0.048000pt;}
.ls88{letter-spacing:-0.031200pt;}
.ls19{letter-spacing:0.000000pt;}
.ls7b{letter-spacing:0.000267pt;}
.ls64{letter-spacing:0.004800pt;}
.lsf7{letter-spacing:0.005867pt;}
.ls114{letter-spacing:0.008000pt;}
.lsf8{letter-spacing:0.008533pt;}
.ls61{letter-spacing:0.009600pt;}
.ls6{letter-spacing:0.010400pt;}
.ls4{letter-spacing:0.010933pt;}
.ls2{letter-spacing:0.011733pt;}
.ls3{letter-spacing:0.012267pt;}
.ls5{letter-spacing:0.018133pt;}
.lsec{letter-spacing:0.024000pt;}
.ls107{letter-spacing:0.028267pt;}
.lsab{letter-spacing:0.031200pt;}
.ls75{letter-spacing:0.031467pt;}
.ls41{letter-spacing:0.032000pt;}
.lsc0{letter-spacing:0.033600pt;}
.ls6e{letter-spacing:0.036800pt;}
.ls121{letter-spacing:0.040000pt;}
.ls94{letter-spacing:0.040800pt;}
.lsf0{letter-spacing:0.043200pt;}
.ls5a{letter-spacing:0.046800pt;}
.ls58{letter-spacing:0.046933pt;}
.ls14{letter-spacing:0.048000pt;}
.lsc1{letter-spacing:0.052267pt;}
.ls43{letter-spacing:0.052800pt;}
.lse3{letter-spacing:0.053333pt;}
.ls37{letter-spacing:0.058133pt;}
.ls92{letter-spacing:0.062400pt;}
.ls8c{letter-spacing:0.066133pt;}
.ls60{letter-spacing:0.067200pt;}
.lsd3{letter-spacing:0.072000pt;}
.ls59{letter-spacing:0.073067pt;}
.ls108{letter-spacing:0.076800pt;}
.ls115{letter-spacing:0.080000pt;}
.ls44{letter-spacing:0.081600pt;}
.ls8b{letter-spacing:0.082667pt;}
.lsbf{letter-spacing:0.083467pt;}
.lsbd{letter-spacing:0.083733pt;}
.lseb{letter-spacing:0.084267pt;}
.ls38{letter-spacing:0.091200pt;}
.lsf2{letter-spacing:0.092267pt;}
.lse4{letter-spacing:0.093600pt;}
.lsed{letter-spacing:0.094400pt;}
.ls42{letter-spacing:0.096000pt;}
.lsbe{letter-spacing:0.099200pt;}
.lsd4{letter-spacing:0.100800pt;}
.ls109{letter-spacing:0.104000pt;}
.lse0{letter-spacing:0.115200pt;}
.lsff{letter-spacing:0.119733pt;}
.ls73{letter-spacing:0.120000pt;}
.lsbc{letter-spacing:0.123200pt;}
.lsf1{letter-spacing:0.123733pt;}
.lsc4{letter-spacing:0.124267pt;}
.ls5d{letter-spacing:0.124800pt;}
.lsf5{letter-spacing:0.125600pt;}
.ls100{letter-spacing:0.131200pt;}
.ls5b{letter-spacing:0.132800pt;}
.lsf6{letter-spacing:0.134400pt;}
.lsbb{letter-spacing:0.136000pt;}
.ls3a{letter-spacing:0.139200pt;}
.lsb{letter-spacing:0.144000pt;}
.ls5e{letter-spacing:0.148800pt;}
.ls8d{letter-spacing:0.152533pt;}
.lsba{letter-spacing:0.153600pt;}
.lse1{letter-spacing:0.156000pt;}
.lsde{letter-spacing:0.158400pt;}
.lsc9{letter-spacing:0.158933pt;}
.ls8f{letter-spacing:0.172800pt;}
.ls106{letter-spacing:0.175467pt;}
.ls2f{letter-spacing:0.182400pt;}
.lsae{letter-spacing:0.185067pt;}
.ls74{letter-spacing:0.186667pt;}
.ls8{letter-spacing:0.187200pt;}
.ls16{letter-spacing:0.188800pt;}
.ls80{letter-spacing:0.189333pt;}
.lsb8{letter-spacing:0.190400pt;}
.ls3f{letter-spacing:0.192000pt;}
.lsc8{letter-spacing:0.194667pt;}
.ls77{letter-spacing:0.195467pt;}
.ls78{letter-spacing:0.195733pt;}
.ls29{letter-spacing:0.199467pt;}
.ls2a{letter-spacing:0.200000pt;}
.ls81{letter-spacing:0.201600pt;}
.lsc7{letter-spacing:0.202400pt;}
.ls5c{letter-spacing:0.206400pt;}
.ls28{letter-spacing:0.207467pt;}
.ls5f{letter-spacing:0.216000pt;}
.ls46{letter-spacing:0.218400pt;}
.ls67{letter-spacing:0.225600pt;}
.ls3b{letter-spacing:0.230400pt;}
.lsfb{letter-spacing:0.235200pt;}
.ls7{letter-spacing:0.240000pt;}
.ls103{letter-spacing:0.242400pt;}
.ls68{letter-spacing:0.244800pt;}
.lsdd{letter-spacing:0.246400pt;}
.ls90{letter-spacing:0.248000pt;}
.ls104{letter-spacing:0.248533pt;}
.ls13{letter-spacing:0.249600pt;}
.ls36{letter-spacing:0.253867pt;}
.ls2d{letter-spacing:0.254400pt;}
.ls30{letter-spacing:0.259200pt;}
.lsdf{letter-spacing:0.264000pt;}
.lsfe{letter-spacing:0.264533pt;}
.lsb7{letter-spacing:0.267200pt;}
.ls12{letter-spacing:0.268800pt;}
.lsaf{letter-spacing:0.269867pt;}
.ls35{letter-spacing:0.270933pt;}
.lsc5{letter-spacing:0.272533pt;}
.lsfd{letter-spacing:0.273067pt;}
.lsb6{letter-spacing:0.273600pt;}
.ls6d{letter-spacing:0.279467pt;}
.ls47{letter-spacing:0.280800pt;}
.lsb9{letter-spacing:0.283200pt;}
.lsd9{letter-spacing:0.285333pt;}
.ls39{letter-spacing:0.287467pt;}
.ls9{letter-spacing:0.288000pt;}
.ls3c{letter-spacing:0.292800pt;}
.ls3d{letter-spacing:0.294933pt;}
.ls4e{letter-spacing:0.297600pt;}
.lsc3{letter-spacing:0.300267pt;}
.ls2e{letter-spacing:0.302400pt;}
.ls8e{letter-spacing:0.307200pt;}
.lsc{letter-spacing:0.312000pt;}
.ls69{letter-spacing:0.316800pt;}
.ls129{letter-spacing:0.320000pt;}
.ls6a{letter-spacing:0.321600pt;}
.ls89{letter-spacing:0.326400pt;}
.ls66{letter-spacing:0.331200pt;}
.ls26{letter-spacing:0.336000pt;}
.ls27{letter-spacing:0.338133pt;}
.lsc6{letter-spacing:0.338667pt;}
.lsdc{letter-spacing:0.340267pt;}
.lsfc{letter-spacing:0.340800pt;}
.lscc{letter-spacing:0.343200pt;}
.lsb4{letter-spacing:0.344000pt;}
.ls6b{letter-spacing:0.345600pt;}
.ls91{letter-spacing:0.346133pt;}
.lsfa{letter-spacing:0.347733pt;}
.ls6c{letter-spacing:0.355200pt;}
.ls105{letter-spacing:0.360000pt;}
.lsf3{letter-spacing:0.369600pt;}
.lsa{letter-spacing:0.374400pt;}
.ls32{letter-spacing:0.377600pt;}
.ls33{letter-spacing:0.378133pt;}
.lsb3{letter-spacing:0.378667pt;}
.ls34{letter-spacing:0.384000pt;}
.ls72{letter-spacing:0.388800pt;}
.ls17{letter-spacing:0.391333pt;}
.ls112{letter-spacing:0.400000pt;}
.lsf4{letter-spacing:0.400533pt;}
.lse6{letter-spacing:0.405867pt;}
.ls76{letter-spacing:0.416533pt;}
.ls40{letter-spacing:0.422400pt;}
.ls2b{letter-spacing:0.432000pt;}
.lse2{letter-spacing:0.436800pt;}
.lsd7{letter-spacing:0.439467pt;}
.lsd8{letter-spacing:0.440000pt;}
.ls65{letter-spacing:0.441600pt;}
.ls31{letter-spacing:0.443733pt;}
.ls102{letter-spacing:0.447467pt;}
.ls63{letter-spacing:0.456000pt;}
.ls101{letter-spacing:0.457067pt;}
.ls15{letter-spacing:0.480000pt;}
.ls110{letter-spacing:0.486933pt;}
.ls10f{letter-spacing:0.492533pt;}
.ls93{letter-spacing:0.496533pt;}
.ls119{letter-spacing:0.499200pt;}
.ls10c{letter-spacing:0.504000pt;}
.ls10d{letter-spacing:0.505600pt;}
.lsdb{letter-spacing:0.513600pt;}
.ls124{letter-spacing:0.520000pt;}
.ls87{letter-spacing:0.528000pt;}
.lsb2{letter-spacing:0.528533pt;}
.ls10e{letter-spacing:0.530400pt;}
.ls7d{letter-spacing:0.542400pt;}
.lsd6{letter-spacing:0.547200pt;}
.lsd5{letter-spacing:0.552000pt;}
.lsda{letter-spacing:0.556800pt;}
.lsf9{letter-spacing:0.557867pt;}
.ls10b{letter-spacing:0.561600pt;}
.ls1d{letter-spacing:0.576000pt;}
.ls10a{letter-spacing:0.585600pt;}
.ls62{letter-spacing:0.595200pt;}
.ls79{letter-spacing:0.597333pt;}
.ls7e{letter-spacing:0.604800pt;}
.lse5{letter-spacing:0.621867pt;}
.ls7c{letter-spacing:0.624000pt;}
.lse7{letter-spacing:0.624533pt;}
.ls22{letter-spacing:0.634667pt;}
.ls116{letter-spacing:0.640000pt;}
.ls7f{letter-spacing:0.643200pt;}
.lsc2{letter-spacing:0.662400pt;}
.ls71{letter-spacing:0.672000pt;}
.ls117{letter-spacing:0.675840pt;}
.ls111{letter-spacing:0.680000pt;}
.lse8{letter-spacing:0.693333pt;}
.ls7a{letter-spacing:0.698667pt;}
.lsca{letter-spacing:0.705600pt;}
.lsad{letter-spacing:0.710400pt;}
.ls113{letter-spacing:0.724000pt;}
.ls3e{letter-spacing:0.724800pt;}
.ls82{letter-spacing:0.729600pt;}
.ls1e{letter-spacing:0.768000pt;}
.ls8a{letter-spacing:0.782400pt;}
.lsb5{letter-spacing:0.789333pt;}
.ls2c{letter-spacing:0.816000pt;}
.ls18{letter-spacing:0.853333pt;}
.ls48{letter-spacing:0.864000pt;}
.ls20{letter-spacing:0.912000pt;}
.lse9{letter-spacing:0.960000pt;}
.ls6f{letter-spacing:1.032000pt;}
.lsea{letter-spacing:1.051200pt;}
.ls70{letter-spacing:1.070400pt;}
.ls49{letter-spacing:1.104000pt;}
.lsb1{letter-spacing:1.128000pt;}
.lscb{letter-spacing:1.152000pt;}
.lsb0{letter-spacing:1.200000pt;}
.lsd{letter-spacing:1.296000pt;}
.lsf{letter-spacing:1.392000pt;}
.lse{letter-spacing:1.478400pt;}
.ls10{letter-spacing:1.483200pt;}
.ls12a{letter-spacing:1.488000pt;}
.ls12d{letter-spacing:1.536000pt;}
.ls11{letter-spacing:1.723200pt;}
.ls0{letter-spacing:2.304000pt;}
.ls25{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls12b{letter-spacing:5.440000pt;}
.ls45{letter-spacing:13.104000pt;}
.ls9e{letter-spacing:92.010133pt;}
.ls9c{letter-spacing:95.146133pt;}
.ls9a{letter-spacing:95.146667pt;}
.ls9b{letter-spacing:100.970667pt;}
.ls9f{letter-spacing:106.883733pt;}
.lsa0{letter-spacing:106.884267pt;}
.ls9d{letter-spacing:144.198400pt;}
.lsa1{letter-spacing:150.022400pt;}
.ls53{letter-spacing:157.210667pt;}
.ls50{letter-spacing:165.946667pt;}
.lsa4{letter-spacing:181.776000pt;}
.lsa5{letter-spacing:184.912000pt;}
.lsa3{letter-spacing:186.554667pt;}
.ls54{letter-spacing:197.306667pt;}
.ls99{letter-spacing:202.608000pt;}
.ls96{letter-spacing:204.250667pt;}
.ls97{letter-spacing:208.432000pt;}
.ls95{letter-spacing:211.456000pt;}
.ls98{letter-spacing:213.210667pt;}
.ls51{letter-spacing:215.002667pt;}
.ls55{letter-spacing:240.688000pt;}
.lsa6{letter-spacing:555.379200pt;}
.lsa2{letter-spacing:834.547200pt;}
.ls52{letter-spacing:916.608000pt;}
.ls4f{letter-spacing:2311.269333pt;}
.ws7a{word-spacing:-170.501333pt;}
.ws3{word-spacing:-28.565333pt;}
.ws2{word-spacing:-13.393333pt;}
.wsa9{word-spacing:-12.085333pt;}
.ws92{word-spacing:-11.424000pt;}
.ws38{word-spacing:-11.376000pt;}
.ws8e{word-spacing:-11.328000pt;}
.ws7{word-spacing:-11.280000pt;}
.wsa6{word-spacing:-11.232000pt;}
.ws62{word-spacing:-11.184000pt;}
.ws3a{word-spacing:-11.088000pt;}
.ws8{word-spacing:-11.040000pt;}
.ws35{word-spacing:-10.992000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws94{word-spacing:-10.944000pt;}
.wsa4{word-spacing:-10.904064pt;}
.wsf{word-spacing:-10.896000pt;}
.ws5e{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.wsa5{word-spacing:-10.808832pt;}
.ws8f{word-spacing:-10.800000pt;}
.wse{word-spacing:-10.752000pt;}
.ws60{word-spacing:-10.704000pt;}
.ws5c{word-spacing:-10.608000pt;}
.ws95{word-spacing:-10.560000pt;}
.ws39{word-spacing:-10.512000pt;}
.ws5f{word-spacing:-10.464000pt;}
.ws32{word-spacing:-10.416000pt;}
.ws77{word-spacing:-10.320000pt;}
.ws6{word-spacing:-9.888000pt;}
.ws3e{word-spacing:-9.648000pt;}
.wsad{word-spacing:-9.320000pt;}
.wsab{word-spacing:-9.160000pt;}
.wsac{word-spacing:-9.080000pt;}
.ws13{word-spacing:-8.320000pt;}
.wsaa{word-spacing:-8.280000pt;}
.wsae{word-spacing:-7.840000pt;}
.wsa7{word-spacing:-7.581600pt;}
.ws93{word-spacing:-7.519200pt;}
.wsc{word-spacing:-7.456800pt;}
.ws88{word-spacing:-7.425600pt;}
.wsd{word-spacing:-7.394400pt;}
.ws34{word-spacing:-7.363200pt;}
.ws5{word-spacing:-7.360000pt;}
.ws36{word-spacing:-7.332000pt;}
.ws33{word-spacing:-7.300800pt;}
.ws9{word-spacing:-7.269600pt;}
.ws90{word-spacing:-7.238400pt;}
.ws5d{word-spacing:-7.207200pt;}
.ws91{word-spacing:-7.176000pt;}
.ws75{word-spacing:-7.144800pt;}
.ws5b{word-spacing:-7.129200pt;}
.ws78{word-spacing:-7.113600pt;}
.wsb{word-spacing:-7.082400pt;}
.ws63{word-spacing:-7.051200pt;}
.wsa{word-spacing:-7.020000pt;}
.ws76{word-spacing:-6.988800pt;}
.wsa3{word-spacing:-6.957600pt;}
.ws16{word-spacing:-6.933333pt;}
.ws89{word-spacing:-6.895200pt;}
.wsa8{word-spacing:-6.832800pt;}
.ws58{word-spacing:-6.770400pt;}
.ws8a{word-spacing:-6.333600pt;}
.ws10{word-spacing:-5.893333pt;}
.wsc7{word-spacing:-5.440000pt;}
.ws3f{word-spacing:-4.896000pt;}
.ws14{word-spacing:-4.746667pt;}
.ws8d{word-spacing:-3.984000pt;}
.ws59{word-spacing:-3.808000pt;}
.wscf{word-spacing:-3.520000pt;}
.ws15{word-spacing:-3.413333pt;}
.ws18{word-spacing:-3.200000pt;}
.ws12{word-spacing:-2.912000pt;}
.ws31{word-spacing:-2.453333pt;}
.ws1{word-spacing:-2.346667pt;}
.wsa0{word-spacing:-2.016000pt;}
.wsce{word-spacing:-1.920000pt;}
.wsb0{word-spacing:-1.776000pt;}
.ws8c{word-spacing:-1.728000pt;}
.ws72{word-spacing:-1.680000pt;}
.ws1f{word-spacing:-1.632000pt;}
.ws40{word-spacing:-1.584000pt;}
.ws96{word-spacing:-1.488000pt;}
.ws2c{word-spacing:-1.450667pt;}
.ws64{word-spacing:-1.440000pt;}
.wsb4{word-spacing:-1.400000pt;}
.wsb3{word-spacing:-1.360000pt;}
.wsb1{word-spacing:-1.344000pt;}
.ws43{word-spacing:-1.296000pt;}
.ws6e{word-spacing:-1.248000pt;}
.ws2a{word-spacing:-1.232000pt;}
.ws70{word-spacing:-1.200000pt;}
.ws6c{word-spacing:-1.152000pt;}
.ws17{word-spacing:-1.120000pt;}
.ws20{word-spacing:-1.104000pt;}
.ws29{word-spacing:-1.056000pt;}
.ws19{word-spacing:-1.008000pt;}
.ws97{word-spacing:-0.960000pt;}
.wsb2{word-spacing:-0.920000pt;}
.ws9e{word-spacing:-0.912000pt;}
.ws74{word-spacing:-0.864000pt;}
.ws5a{word-spacing:-0.858667pt;}
.ws25{word-spacing:-0.768000pt;}
.wsb5{word-spacing:-0.760000pt;}
.ws6f{word-spacing:-0.720000pt;}
.ws9a{word-spacing:-0.693333pt;}
.wsc5{word-spacing:-0.680000pt;}
.wsaf{word-spacing:-0.675840pt;}
.wsb7{word-spacing:-0.640000pt;}
.ws2d{word-spacing:-0.634667pt;}
.ws41{word-spacing:-0.624000pt;}
.ws3d{word-spacing:-0.576000pt;}
.ws22{word-spacing:-0.528000pt;}
.wsc9{word-spacing:-0.520000pt;}
.ws1b{word-spacing:-0.480000pt;}
.wscb{word-spacing:-0.440000pt;}
.ws23{word-spacing:-0.432000pt;}
.ws6b{word-spacing:-0.384000pt;}
.wsbf{word-spacing:-0.360000pt;}
.ws1e{word-spacing:-0.336000pt;}
.wsc0{word-spacing:-0.320000pt;}
.ws1d{word-spacing:-0.288000pt;}
.wsc3{word-spacing:-0.280000pt;}
.ws27{word-spacing:-0.240000pt;}
.ws42{word-spacing:-0.192000pt;}
.ws3c{word-spacing:-0.144000pt;}
.ws65{word-spacing:-0.096000pt;}
.ws2f{word-spacing:-0.090667pt;}
.wsca{word-spacing:-0.080000pt;}
.ws98{word-spacing:-0.053333pt;}
.ws37{word-spacing:-0.048000pt;}
.wsa1{word-spacing:-0.047616pt;}
.ws61{word-spacing:-0.031200pt;}
.ws11{word-spacing:0.000000pt;}
.wsbd{word-spacing:0.040000pt;}
.ws1c{word-spacing:0.048000pt;}
.wsc8{word-spacing:0.080000pt;}
.ws24{word-spacing:0.096000pt;}
.ws9f{word-spacing:0.106667pt;}
.wsb6{word-spacing:0.120000pt;}
.ws2e{word-spacing:0.136000pt;}
.ws1a{word-spacing:0.144000pt;}
.wsb8{word-spacing:0.160000pt;}
.ws66{word-spacing:0.192000pt;}
.ws67{word-spacing:0.240000pt;}
.ws6a{word-spacing:0.288000pt;}
.wsbe{word-spacing:0.320000pt;}
.ws87{word-spacing:0.336000pt;}
.wsc1{word-spacing:0.360000pt;}
.ws21{word-spacing:0.384000pt;}
.ws71{word-spacing:0.432000pt;}
.ws6d{word-spacing:0.480000pt;}
.ws30{word-spacing:0.498667pt;}
.ws73{word-spacing:0.528000pt;}
.ws69{word-spacing:0.576000pt;}
.ws9b{word-spacing:0.624000pt;}
.wsc2{word-spacing:0.760000pt;}
.ws26{word-spacing:0.768000pt;}
.wsb9{word-spacing:0.800000pt;}
.wsbb{word-spacing:0.880000pt;}
.ws99{word-spacing:0.912000pt;}
.wsc6{word-spacing:0.920000pt;}
.ws3b{word-spacing:1.008000pt;}
.wsbc{word-spacing:1.040000pt;}
.ws68{word-spacing:1.104000pt;}
.ws2b{word-spacing:1.248000pt;}
.ws9c{word-spacing:1.344000pt;}
.ws9d{word-spacing:1.392000pt;}
.wsc4{word-spacing:1.400000pt;}
.wsba{word-spacing:1.440000pt;}
.ws8b{word-spacing:1.824000pt;}
.ws28{word-spacing:2.208000pt;}
.wscd{word-spacing:3.792000pt;}
.wscc{word-spacing:3.840000pt;}
.wsa2{word-spacing:20.379648pt;}
.ws86{word-spacing:95.760000pt;}
.ws80{word-spacing:105.354667pt;}
.ws56{word-spacing:151.536000pt;}
.ws50{word-spacing:161.130667pt;}
.ws7e{word-spacing:173.077333pt;}
.ws7c{word-spacing:176.213333pt;}
.ws7b{word-spacing:177.856000pt;}
.ws4f{word-spacing:179.648000pt;}
.ws57{word-spacing:180.469333pt;}
.ws7f{word-spacing:182.037333pt;}
.ws7d{word-spacing:186.816000pt;}
.ws4d{word-spacing:188.608000pt;}
.ws4e{word-spacing:192.752000pt;}
.ws79{word-spacing:217.242667pt;}
.ws47{word-spacing:223.552000pt;}
.ws4b{word-spacing:230.496000pt;}
.ws49{word-spacing:231.989333pt;}
.ws44{word-spacing:245.840000pt;}
.ws45{word-spacing:319.909333pt;}
.ws84{word-spacing:343.802667pt;}
.ws48{word-spacing:459.536000pt;}
.ws54{word-spacing:489.440000pt;}
.ws46{word-spacing:543.536000pt;}
.ws85{word-spacing:556.005333pt;}
.ws83{word-spacing:573.925333pt;}
.ws55{word-spacing:818.197333pt;}
.ws53{word-spacing:836.117333pt;}
.ws81{word-spacing:1255.930667pt;}
.ws51{word-spacing:1657.114667pt;}
.ws82{word-spacing:1822.613333pt;}
.ws4a{word-spacing:2209.834667pt;}
.ws52{word-spacing:2230.778667pt;}
.ws4c{word-spacing:2269.120000pt;}
._55{margin-left:-211.381333pt;}
._6c{margin-left:-79.804416pt;}
._6b{margin-left:-47.187456pt;}
._53{margin-left:-11.184000pt;}
._d{margin-left:-9.734400pt;}
._1{margin-left:-8.763733pt;}
._6d{margin-left:-7.617600pt;}
._6{margin-left:-6.146667pt;}
._8{margin-left:-5.037333pt;}
._b{margin-left:-4.085600pt;}
._3{margin-left:-3.050667pt;}
._0{margin-left:-1.578667pt;}
._9{width:0.892267pt;}
._5{width:2.230933pt;}
._4{width:3.596267pt;}
._2{width:4.853333pt;}
._7{width:6.508800pt;}
._54{width:9.168000pt;}
._c{width:10.942933pt;}
._6a{width:41.534400pt;}
._a{width:43.321600pt;}
._3c{width:48.794667pt;}
._23{width:54.469333pt;}
._26{width:74.554667pt;}
._2f{width:77.877333pt;}
._34{width:81.162667pt;}
._48{width:82.992000pt;}
._5a{width:88.890667pt;}
._15{width:90.122667pt;}
._3d{width:91.280000pt;}
._1f{width:94.117333pt;}
._63{width:95.162667pt;}
._43{width:96.133333pt;}
._59{width:97.552000pt;}
._4d{width:99.269333pt;}
._5e{width:100.868267pt;}
._58{width:102.293333pt;}
._61{width:105.056000pt;}
._56{width:106.512000pt;}
._13{width:107.706667pt;}
._64{width:109.573333pt;}
._33{width:111.738667pt;}
._65{width:114.352000pt;}
._5b{width:116.330667pt;}
._27{width:117.264000pt;}
._20{width:118.496000pt;}
._35{width:121.258667pt;}
._22{width:125.141333pt;}
._62{width:128.053333pt;}
._32{width:130.218667pt;}
._3f{width:133.242667pt;}
._14{width:134.362667pt;}
._1a{width:135.370667pt;}
._29{width:138.506667pt;}
._19{width:142.650667pt;}
._46{width:143.621333pt;}
._57{width:145.600000pt;}
._42{width:146.832000pt;}
._5f{width:148.325333pt;}
._66{width:150.150400pt;}
._60{width:151.648000pt;}
._17{width:152.581333pt;}
._5d{width:155.269333pt;}
._40{width:156.762667pt;}
._21{width:161.168000pt;}
._5c{width:165.386667pt;}
._25{width:168.410667pt;}
._18{width:170.314667pt;}
._24{width:173.600000pt;}
._1b{width:178.042667pt;}
._47{width:179.274667pt;}
._1e{width:182.522667pt;}
._39{width:185.360000pt;}
._1c{width:186.816000pt;}
._3b{width:195.962667pt;}
._10{width:197.344000pt;}
._28{width:209.141333pt;}
._44{width:212.986667pt;}
._38{width:217.802667pt;}
._2e{width:222.469333pt;}
._3a{width:226.016000pt;}
._41{width:226.986667pt;}
._36{width:237.888000pt;}
._52{width:239.008000pt;}
._11{width:240.016000pt;}
._f{width:248.005333pt;}
._2b{width:249.162667pt;}
._31{width:256.853333pt;}
._1d{width:258.346667pt;}
._49{width:262.949333pt;}
._37{width:266.037333pt;}
._12{width:287.989333pt;}
._e{width:301.392000pt;}
._30{width:377.888000pt;}
._51{width:394.016000pt;}
._3e{width:445.461333pt;}
._45{width:480.368000pt;}
._50{width:514.490667pt;}
._69{width:549.098667pt;}
._68{width:558.618667pt;}
._4f{width:568.138667pt;}
._2a{width:595.802667pt;}
._67{width:791.541333pt;}
._4b{width:840.784000pt;}
._4c{width:845.936000pt;}
._2d{width:862.474667pt;}
._16{width:875.466667pt;}
._4e{width:932.698667pt;}
._2c{width:950.469333pt;}
._4a{width:1004.275733pt;}
.fsc{font-size:24.266667pt;}
.fs8{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fse{font-size:33.792000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fsf{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fsd{font-size:47.616000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fs7{font-size:58.666667pt;}
.fsa{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y180{bottom:1.152133pt;}
.y185{bottom:4.223333pt;}
.y19c{bottom:4.223467pt;}
.y173{bottom:4.224533pt;}
.y18b{bottom:4.224667pt;}
.y186{bottom:9.599333pt;}
.y19d{bottom:9.599467pt;}
.y174{bottom:9.600533pt;}
.y18c{bottom:9.600667pt;}
.y197{bottom:9.600800pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y2e{bottom:60.723467pt;}
.y1c4{bottom:63.016667pt;}
.y16e{bottom:64.264000pt;}
.yd8{bottom:64.484267pt;}
.y12e{bottom:68.137600pt;}
.y59{bottom:69.377867pt;}
.y4e{bottom:73.858933pt;}
.y2d{bottom:74.051467pt;}
.y1c3{bottom:74.346667pt;}
.ycd{bottom:74.485600pt;}
.y10a{bottom:77.472267pt;}
.y16d{bottom:77.596000pt;}
.yd7{bottom:77.817600pt;}
.y12d{bottom:81.470933pt;}
.y58{bottom:82.709867pt;}
.y1c2{bottom:85.676667pt;}
.y4d{bottom:87.190933pt;}
.ycc{bottom:87.817600pt;}
.y16c{bottom:90.928000pt;}
.yd6{bottom:91.153600pt;}
.y2c{bottom:91.232800pt;}
.y12c{bottom:94.804267pt;}
.y57{bottom:96.041867pt;}
.y1c1{bottom:97.006667pt;}
.y4c{bottom:100.528267pt;}
.y2b{bottom:100.718133pt;}
.ycb{bottom:101.149600pt;}
.y16b{bottom:104.265333pt;}
.yd5{bottom:104.485600pt;}
.y12b{bottom:108.137600pt;}
.y1c0{bottom:108.336667pt;}
.y56{bottom:109.373867pt;}
.y4b{bottom:113.860267pt;}
.yca{bottom:114.485600pt;}
.y16a{bottom:117.597333pt;}
.yd4{bottom:117.817600pt;}
.y2a{bottom:117.899467pt;}
.y1bf{bottom:119.666667pt;}
.y12a{bottom:121.470933pt;}
.y55{bottom:122.705867pt;}
.y4a{bottom:127.192267pt;}
.yc9{bottom:127.817600pt;}
.y169{bottom:130.929333pt;}
.y1be{bottom:130.996667pt;}
.yd3{bottom:131.150933pt;}
.y129{bottom:134.804267pt;}
.y54{bottom:136.037867pt;}
.y49{bottom:140.524267pt;}
.yc8{bottom:141.153600pt;}
.y1bd{bottom:142.326667pt;}
.y168{bottom:144.261333pt;}
.yd2{bottom:144.484267pt;}
.y128{bottom:148.138933pt;}
.y53{bottom:149.369867pt;}
.y1bc{bottom:153.656667pt;}
.y48{bottom:153.857600pt;}
.yc7{bottom:154.485600pt;}
.y167{bottom:157.598667pt;}
.yd1{bottom:157.817600pt;}
.y29{bottom:157.944267pt;}
.y127{bottom:161.470933pt;}
.y52{bottom:162.701867pt;}
.y1bb{bottom:164.986667pt;}
.y47{bottom:167.190933pt;}
.yc6{bottom:167.817600pt;}
.y166{bottom:170.930667pt;}
.yd0{bottom:171.152267pt;}
.y28{bottom:171.276267pt;}
.y126{bottom:174.806933pt;}
.y51{bottom:176.033867pt;}
.y1ba{bottom:176.316667pt;}
.y46{bottom:180.528267pt;}
.yc5{bottom:181.153600pt;}
.y165{bottom:184.262667pt;}
.ycf{bottom:184.484267pt;}
.y27{bottom:184.608267pt;}
.y1b9{bottom:187.646667pt;}
.y125{bottom:188.138933pt;}
.y50{bottom:189.365867pt;}
.y45{bottom:193.860267pt;}
.yc4{bottom:194.485600pt;}
.y164{bottom:197.594667pt;}
.yce{bottom:197.816267pt;}
.y26{bottom:197.941600pt;}
.y1b8{bottom:198.976667pt;}
.y124{bottom:201.470933pt;}
.y44{bottom:207.192267pt;}
.yc3{bottom:207.817600pt;}
.y1b7{bottom:210.306667pt;}
.y163{bottom:210.932000pt;}
.y123{bottom:214.804267pt;}
.y43{bottom:220.524267pt;}
.yc2{bottom:221.156267pt;}
.y1b6{bottom:221.636667pt;}
.y25{bottom:221.952267pt;}
.y162{bottom:224.264000pt;}
.y122{bottom:228.140267pt;}
.y1b5{bottom:232.966667pt;}
.y42{bottom:233.858933pt;}
.yc1{bottom:234.488267pt;}
.y24{bottom:235.284267pt;}
.y89{bottom:236.482933pt;}
.y161{bottom:237.596000pt;}
.y121{bottom:241.472267pt;}
.y1b4{bottom:244.296667pt;}
.y105{bottom:246.482933pt;}
.y41{bottom:247.190933pt;}
.yc0{bottom:247.820267pt;}
.y23{bottom:248.616267pt;}
.y160{bottom:250.928000pt;}
.y120{bottom:254.804267pt;}
.y1b3{bottom:255.626667pt;}
.y40{bottom:260.524267pt;}
.ybf{bottom:261.152267pt;}
.y22{bottom:261.948267pt;}
.y88{bottom:263.209600pt;}
.y15f{bottom:264.260000pt;}
.y1b2{bottom:266.956667pt;}
.y11f{bottom:268.138933pt;}
.y104{bottom:273.316267pt;}
.y3f{bottom:273.857600pt;}
.ybe{bottom:274.484267pt;}
.y21{bottom:275.280267pt;}
.y1b1{bottom:278.286667pt;}
.y87{bottom:278.712267pt;}
.y11e{bottom:281.470933pt;}
.y3e{bottom:287.190933pt;}
.ybd{bottom:287.817600pt;}
.y20{bottom:288.612267pt;}
.y103{bottom:288.805600pt;}
.y15e{bottom:289.267333pt;}
.y1b0{bottom:289.616667pt;}
.y86{bottom:294.214933pt;}
.y11d{bottom:294.804267pt;}
.y3d{bottom:300.524267pt;}
.y1af{bottom:300.946667pt;}
.ybc{bottom:301.161600pt;}
.y1f{bottom:301.944267pt;}
.y15d{bottom:302.599333pt;}
.y102{bottom:304.308267pt;}
.y11c{bottom:308.138933pt;}
.y85{bottom:309.717600pt;}
.y1ae{bottom:312.276667pt;}
.y3c{bottom:313.864267pt;}
.ybb{bottom:314.493600pt;}
.y1e{bottom:315.276267pt;}
.y15c{bottom:315.931333pt;}
.y101{bottom:319.810933pt;}
.y11b{bottom:321.470933pt;}
.y1ad{bottom:323.606667pt;}
.y84{bottom:325.220267pt;}
.y3b{bottom:327.196267pt;}
.yba{bottom:327.825600pt;}
.y1d{bottom:328.612267pt;}
.y15b{bottom:329.263333pt;}
.y11a{bottom:334.804267pt;}
.y1ac{bottom:334.940000pt;}
.y100{bottom:335.313600pt;}
.y3a{bottom:340.528267pt;}
.y83{bottom:340.722933pt;}
.yb9{bottom:341.157600pt;}
.y1c{bottom:341.944267pt;}
.y119{bottom:348.137600pt;}
.yff{bottom:350.816267pt;}
.y39{bottom:353.860267pt;}
.y15a{bottom:354.274667pt;}
.yb8{bottom:354.489600pt;}
.y1b{bottom:355.276267pt;}
.y82{bottom:356.225600pt;}
.y118{bottom:361.470933pt;}
.y1ab{bottom:364.276000pt;}
.yfe{bottom:366.313600pt;}
.y109{bottom:366.653467pt;}
.y38{bottom:367.192267pt;}
.y159{bottom:367.606667pt;}
.yb7{bottom:367.821600pt;}
.y1a{bottom:368.609600pt;}
.y81{bottom:371.728267pt;}
.y117{bottom:374.806933pt;}
.y1ee{bottom:377.157600pt;}
.y1aa{bottom:377.608000pt;}
.y108{bottom:379.985467pt;}
.y37{bottom:380.524267pt;}
.y158{bottom:380.938667pt;}
.yb6{bottom:381.153600pt;}
.yfd{bottom:381.816267pt;}
.y19{bottom:381.942933pt;}
.y80{bottom:387.230933pt;}
.y116{bottom:388.138933pt;}
.y1ed{bottom:390.489600pt;}
.y1a9{bottom:390.942667pt;}
.y107{bottom:393.317467pt;}
.y36{bottom:393.857600pt;}
.y157{bottom:394.270667pt;}
.yb5{bottom:394.485600pt;}
.y18{bottom:395.276267pt;}
.yfc{bottom:397.313600pt;}
.y115{bottom:401.470933pt;}
.y7f{bottom:402.733600pt;}
.y1ec{bottom:403.821600pt;}
.y1a8{bottom:404.274667pt;}
.y35{bottom:407.190933pt;}
.y156{bottom:407.602667pt;}
.yb4{bottom:407.817600pt;}
.y17{bottom:408.617600pt;}
.yfb{bottom:412.816267pt;}
.y114{bottom:414.805600pt;}
.y1eb{bottom:417.153600pt;}
.y1a7{bottom:417.610667pt;}
.y7e{bottom:418.236267pt;}
.y34{bottom:420.522933pt;}
.y155{bottom:420.934667pt;}
.yb3{bottom:421.150933pt;}
.y16{bottom:421.949600pt;}
.y113{bottom:428.137600pt;}
.yfa{bottom:428.313600pt;}
.y1ea{bottom:430.485600pt;}
.y1a6{bottom:430.942667pt;}
.y7d{bottom:433.738933pt;}
.y154{bottom:434.268000pt;}
.yb2{bottom:434.484267pt;}
.y15{bottom:435.281600pt;}
.y112{bottom:441.472267pt;}
.yf9{bottom:443.816267pt;}
.y1e9{bottom:443.817600pt;}
.y1a5{bottom:444.274667pt;}
.y153{bottom:447.601333pt;}
.yb1{bottom:447.817600pt;}
.y14{bottom:448.613600pt;}
.y7c{bottom:449.241600pt;}
.y111{bottom:454.804267pt;}
.y1e8{bottom:457.149600pt;}
.y1a4{bottom:457.608000pt;}
.yf8{bottom:459.313600pt;}
.y152{bottom:460.937333pt;}
.yb0{bottom:461.153600pt;}
.y7b{bottom:464.744267pt;}
.y110{bottom:468.138933pt;}
.y4f{bottom:469.052400pt;}
.y1a3{bottom:470.940000pt;}
.y151{bottom:474.269333pt;}
.yaf{bottom:474.485600pt;}
.yf7{bottom:474.816267pt;}
.y1e7{bottom:476.486933pt;}
.y7a{bottom:480.246933pt;}
.y10f{bottom:481.470933pt;}
.y150{bottom:487.601333pt;}
.yae{bottom:487.817600pt;}
.y1e6{bottom:489.818933pt;}
.yf6{bottom:490.313600pt;}
.y13{bottom:490.613600pt;}
.y10d{bottom:494.804267pt;}
.y79{bottom:495.749600pt;}
.y1a2{bottom:495.944533pt;}
.y10e{bottom:498.882933pt;}
.y14f{bottom:500.933333pt;}
.yad{bottom:501.152267pt;}
.y12{bottom:505.277600pt;}
.yf5{bottom:505.816267pt;}
.y10b{bottom:508.136267pt;}
.y1e5{bottom:509.150933pt;}
.y1a1{bottom:509.277867pt;}
.y78{bottom:511.252267pt;}
.y10c{bottom:512.216267pt;}
.y14e{bottom:514.266667pt;}
.yac{bottom:514.484267pt;}
.y11{bottom:519.960267pt;}
.yf4{bottom:521.316267pt;}
.y1a0{bottom:522.609867pt;}
.y77{bottom:526.754933pt;}
.yab{bottom:527.818933pt;}
.y1e4{bottom:528.482933pt;}
.y10{bottom:534.624267pt;}
.yf3{bottom:536.816267pt;}
.y14d{bottom:541.045467pt;}
.yaa{bottom:541.150933pt;}
.y1e3{bottom:541.816267pt;}
.y76{bottom:542.257600pt;}
.y19f{bottom:547.614533pt;}
.yf{bottom:549.288267pt;}
.yf2{bottom:552.316267pt;}
.y14c{bottom:554.377467pt;}
.ya9{bottom:554.492267pt;}
.y75{bottom:557.760267pt;}
.y12f{bottom:557.865733pt;}
.y19e{bottom:560.947867pt;}
.ye{bottom:563.952267pt;}
.y14b{bottom:567.709467pt;}
.yf1{bottom:567.816267pt;}
.ya8{bottom:567.824267pt;}
.y19b{bottom:569.836000pt;}
.y1e2{bottom:571.153600pt;}
.y74{bottom:573.262933pt;}
.y19a{bottom:574.279867pt;}
.yd{bottom:578.616267pt;}
.y14a{bottom:581.042800pt;}
.ya7{bottom:581.156267pt;}
.yf0{bottom:583.316267pt;}
.y1e1{bottom:584.485600pt;}
.y199{bottom:588.681200pt;}
.y73{bottom:588.765600pt;}
.yc{bottom:593.280267pt;}
.y149{bottom:594.377467pt;}
.ya6{bottom:594.488267pt;}
.y1e0{bottom:597.817600pt;}
.yef{bottom:598.813600pt;}
.y198{bottom:602.014533pt;}
.y72{bottom:604.268267pt;}
.y148{bottom:607.709467pt;}
.ya5{bottom:607.820267pt;}
.yb{bottom:607.944267pt;}
.y196{bottom:610.901333pt;}
.y1df{bottom:611.149600pt;}
.yee{bottom:614.316267pt;}
.y195{bottom:615.346533pt;}
.y71{bottom:619.770933pt;}
.y147{bottom:621.042800pt;}
.ya4{bottom:621.152267pt;}
.ya{bottom:622.608267pt;}
.y1de{bottom:624.482933pt;}
.y70{bottom:624.764267pt;}
.y194{bottom:629.747867pt;}
.yed{bottom:629.816267pt;}
.y146{bottom:634.374800pt;}
.ya3{bottom:634.484267pt;}
.y193{bottom:643.081200pt;}
.y6f{bottom:645.260267pt;}
.yec{bottom:645.313600pt;}
.ya2{bottom:647.817600pt;}
.y9{bottom:649.274933pt;}
.y191{bottom:651.968000pt;}
.y1dd{bottom:653.832267pt;}
.y106{bottom:654.115333pt;}
.y190{bottom:656.413067pt;}
.y192{bottom:656.413200pt;}
.y6e{bottom:660.762933pt;}
.yeb{bottom:660.816267pt;}
.ya1{bottom:661.154933pt;}
.y145{bottom:661.162933pt;}
.y8{bottom:665.274933pt;}
.y1dc{bottom:667.164267pt;}
.y18f{bottom:670.814533pt;}
.y31{bottom:672.933333pt;}
.ya0{bottom:674.486933pt;}
.y144{bottom:674.494933pt;}
.y6d{bottom:676.265600pt;}
.yea{bottom:676.316267pt;}
.y1db{bottom:680.496267pt;}
.y18e{bottom:684.147867pt;}
.y9f{bottom:687.818933pt;}
.y143{bottom:687.826933pt;}
.y30{bottom:691.600000pt;}
.y6c{bottom:691.768267pt;}
.ye9{bottom:691.813600pt;}
.y18a{bottom:693.034667pt;}
.y1da{bottom:693.828267pt;}
.y7{bottom:694.592267pt;}
.y189{bottom:697.479733pt;}
.y18d{bottom:697.479867pt;}
.y9e{bottom:701.150933pt;}
.y142{bottom:701.158933pt;}
.y1d9{bottom:707.160267pt;}
.y6b{bottom:707.270933pt;}
.ye8{bottom:707.316267pt;}
.y2f{bottom:710.266667pt;}
.y188{bottom:711.881067pt;}
.y9d{bottom:714.484267pt;}
.y141{bottom:714.490933pt;}
.y1d8{bottom:720.492267pt;}
.y6a{bottom:722.773600pt;}
.ye7{bottom:722.813600pt;}
.y187{bottom:725.214400pt;}
.y9c{bottom:727.817600pt;}
.y140{bottom:727.822933pt;}
.y1d7{bottom:733.824267pt;}
.y184{bottom:734.102667pt;}
.y6{bottom:734.597600pt;}
.y69{bottom:738.276267pt;}
.ye6{bottom:738.310933pt;}
.y183{bottom:738.546400pt;}
.y13f{bottom:741.154933pt;}
.y9b{bottom:741.156267pt;}
.y1d6{bottom:747.156267pt;}
.y182{bottom:752.947733pt;}
.y68{bottom:753.778933pt;}
.ye5{bottom:753.813600pt;}
.y13e{bottom:754.486933pt;}
.y9a{bottom:754.488267pt;}
.y1d5{bottom:760.488267pt;}
.y67{bottom:761.534933pt;}
.y181{bottom:766.281067pt;}
.y13d{bottom:767.818933pt;}
.y99{bottom:767.820267pt;}
.ye4{bottom:769.316267pt;}
.y1d4{bottom:773.820267pt;}
.y5{bottom:774.602933pt;}
.y17f{bottom:778.724000pt;}
.y17e{bottom:779.613067pt;}
.y13c{bottom:781.150933pt;}
.y98{bottom:781.152267pt;}
.y66{bottom:784.784267pt;}
.ye3{bottom:784.816267pt;}
.y1d3{bottom:787.152267pt;}
.y65{bottom:792.540267pt;}
.y17d{bottom:794.014400pt;}
.y97{bottom:794.484267pt;}
.y13b{bottom:794.488267pt;}
.ye2{bottom:800.305600pt;}
.y1d2{bottom:800.484267pt;}
.y17c{bottom:807.347733pt;}
.y13a{bottom:807.820267pt;}
.y96{bottom:807.829600pt;}
.y1d1{bottom:813.816267pt;}
.y4{bottom:814.608267pt;}
.y64{bottom:815.789600pt;}
.ye1{bottom:815.808267pt;}
.y17a{bottom:816.234667pt;}
.y17b{bottom:820.679733pt;}
.y179{bottom:820.680933pt;}
.y139{bottom:821.152267pt;}
.y95{bottom:821.161600pt;}
.y32{bottom:823.475200pt;}
.y1d0{bottom:827.149600pt;}
.y63{bottom:831.292267pt;}
.ye0{bottom:831.310933pt;}
.y138{bottom:834.484267pt;}
.y94{bottom:834.493600pt;}
.y178{bottom:835.080933pt;}
.y62{bottom:846.794933pt;}
.ydf{bottom:846.813600pt;}
.y137{bottom:847.817600pt;}
.y93{bottom:847.825600pt;}
.y177{bottom:848.414267pt;}
.y1cf{bottom:856.516267pt;}
.y136{bottom:861.150933pt;}
.y92{bottom:861.157600pt;}
.y176{bottom:861.747600pt;}
.y61{bottom:862.297600pt;}
.yde{bottom:862.316267pt;}
.y1ce{bottom:867.846267pt;}
.y60{bottom:870.053600pt;}
.y172{bottom:870.634667pt;}
.y91{bottom:874.489600pt;}
.y175{bottom:875.079600pt;}
.y171{bottom:875.080933pt;}
.ydd{bottom:877.808267pt;}
.y135{bottom:878.562933pt;}
.y1cd{bottom:879.176267pt;}
.y134{bottom:887.817600pt;}
.y90{bottom:887.821600pt;}
.y170{bottom:889.480933pt;}
.y1cc{bottom:890.506267pt;}
.y5f{bottom:893.302933pt;}
.ydc{bottom:893.310933pt;}
.y133{bottom:901.152267pt;}
.y8f{bottom:901.153600pt;}
.y1cb{bottom:901.836267pt;}
.y16f{bottom:902.812933pt;}
.y5e{bottom:908.805600pt;}
.ydb{bottom:908.813600pt;}
.y1ca{bottom:913.166267pt;}
.y132{bottom:914.484267pt;}
.y8e{bottom:914.485600pt;}
.y5d{bottom:924.308267pt;}
.yda{bottom:924.316267pt;}
.y1c9{bottom:924.496267pt;}
.y8d{bottom:927.817600pt;}
.y131{bottom:927.818933pt;}
.y1c8{bottom:935.826267pt;}
.y5c{bottom:939.810933pt;}
.yd9{bottom:939.816267pt;}
.y130{bottom:941.150933pt;}
.y8c{bottom:941.152267pt;}
.y1c7{bottom:947.156267pt;}
.y8b{bottom:954.484267pt;}
.y5b{bottom:955.313600pt;}
.y1c6{bottom:958.486267pt;}
.y8a{bottom:967.816267pt;}
.y1c5{bottom:969.816267pt;}
.y5a{bottom:970.816267pt;}
.y33{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.h27{height:9.984000pt;}
.h24{height:15.744000pt;}
.hd{height:21.193555pt;}
.h22{height:25.303200pt;}
.h13{height:26.656000pt;}
.h26{height:27.405312pt;}
.h14{height:30.277333pt;}
.h20{height:30.288000pt;}
.h1f{height:30.298667pt;}
.h1d{height:30.309333pt;}
.h1e{height:30.320000pt;}
.h3{height:30.687500pt;}
.h29{height:32.440000pt;}
.hf{height:32.605469pt;}
.h21{height:34.272000pt;}
.h7{height:34.523438pt;}
.he{height:36.585555pt;}
.h2{height:38.359375pt;}
.h25{height:38.616576pt;}
.h8{height:38.928000pt;}
.h4{height:39.318359pt;}
.h11{height:39.344800pt;}
.h28{height:39.370933pt;}
.h23{height:39.371467pt;}
.h1c{height:39.376800pt;}
.h18{height:41.569867pt;}
.h1b{height:41.575200pt;}
.h9{height:41.585867pt;}
.h19{height:41.596533pt;}
.h1a{height:41.601867pt;}
.hb{height:41.607200pt;}
.h12{height:41.612533pt;}
.ha{height:41.617867pt;}
.h17{height:41.623200pt;}
.hc{height:42.195312pt;}
.h6{height:43.066927pt;}
.h16{height:50.288000pt;}
.h15{height:61.264000pt;}
.h10{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w3{width:19.584000pt;}
.w2{width:21.888000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:2.687867pt;}
.x22{left:11.136000pt;}
.x1d{left:13.439867pt;}
.x2{left:54.392400pt;}
.x6{left:89.199600pt;}
.x8{left:104.911867pt;}
.x7{left:125.291333pt;}
.xa{left:150.906533pt;}
.xb{left:171.925200pt;}
.x4{left:207.516800pt;}
.x12{left:208.745467pt;}
.x14{left:211.683467pt;}
.x2e{left:212.867467pt;}
.x5{left:223.521867pt;}
.xc{left:230.939867pt;}
.x18{left:267.224533pt;}
.x17{left:324.753467pt;}
.x10{left:327.698533pt;}
.x16{left:382.282533pt;}
.x1f{left:406.426667pt;}
.x1b{left:413.476000pt;}
.x20{left:428.278267pt;}
.x1e{left:435.350533pt;}
.x2a{left:476.692000pt;}
.x2b{left:498.613200pt;}
.x2c{left:505.390667pt;}
.x28{left:514.182667pt;}
.x21{left:517.681333pt;}
.x3{left:519.632533pt;}
.x2d{left:527.389600pt;}
.x11{left:535.029200pt;}
.x29{left:536.161467pt;}
.x23{left:537.370400pt;}
.x26{left:538.769333pt;}
.x1a{left:542.060667pt;}
.x27{left:560.735867pt;}
.x24{left:579.089333pt;}
.x25{left:601.025600pt;}
.xf{left:664.193200pt;}
.xd{left:672.079867pt;}
.xe{left:679.621200pt;}
.x9{left:687.227867pt;}
.x15{left:694.453867pt;}
.x19{left:722.804133pt;}
.x2f{left:725.336533pt;}
.x13{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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