
    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_a61b23f81a442732d37f8161.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_22fefbcf3a9935b8080169e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.907000;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_1544aa7f93315326056ac43b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7fb25dd46586dcbab562cf69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.846000;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_e5c765d2feadda5c2a820718.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_84944433f92e79152e66a09b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_89afa6172db553245ad90647.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.688000;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_dc2c91626517af68ab40b00d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.636000;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_e66388af16208b000c5d3b63.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_41337a510b26a6644dcf704d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.046000;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_701fb8f3329c835266ff7f8d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.780000;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_80cacd6ae9ffdbaae5b55854.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002000;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_6941fe4d0ec2cdde592de0aa.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.001000;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_b2a28104b5adcd4cf9a66930.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.918000;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_f34f77d2428df4e259910aae.woff2')format("woff");}.fff{font-family:fff;line-height:1.001000;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_a1110ee4c9266a4a5c76f771.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.430000;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_07f2b57107e4998234f031f1.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_18bdf37c0218905df2d3d1e0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.001000;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_ab84d1353688094e7cc8380d.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.002000;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_ce4bcc68476e4c650bead5c9.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5e08c30dc52c9de729b4c5eb.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.001000;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_f130a682b5b596ee886f5e53.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_ca4d1f121ecbe09170d8b8fb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.686000;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_33d310b49da5e75360a7f24a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.923000;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_bb8dd8a0ba47a60b2738d2f9.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.698000;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_72ce5d63757142c0ffcb5d42.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.924000;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);}
.v4{vertical-align:-21.690000px;}
.v5{vertical-align:-12.868074px;}
.v3{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:10.758000px;}
.va{vertical-align:14.694000px;}
.v8{vertical-align:16.878000px;}
.v2{vertical-align:23.754000px;}
.v6{vertical-align:26.034000px;}
.v7{vertical-align:29.616000px;}
.v1{vertical-align:31.242000px;}
.ls6{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.000440px;}
.ls3f{letter-spacing:0.001288px;}
.ls4e{letter-spacing:0.005898px;}
.ls40{letter-spacing:0.012712px;}
.ls37{letter-spacing:0.026423px;}
.ls0{letter-spacing:2.356366px;}
.ls44{letter-spacing:2.510592px;}
.ls43{letter-spacing:2.981971px;}
.ls3a{letter-spacing:2.984915px;}
.ls3{letter-spacing:2.987971px;}
.ls4{letter-spacing:2.990915px;}
.ls50{letter-spacing:2.991537px;}
.ls4f{letter-spacing:2.992053px;}
.ls5{letter-spacing:2.992894px;}
.ls24{letter-spacing:3.203207px;}
.ls56{letter-spacing:3.227904px;}
.ls1c{letter-spacing:3.586560px;}
.ls60{letter-spacing:3.765863px;}
.ls52{letter-spacing:4.447334px;}
.ls51{letter-spacing:4.519066px;}
.ls61{letter-spacing:4.722272px;}
.ls5c{letter-spacing:5.021150px;}
.ls28{letter-spacing:5.092915px;}
.lse{letter-spacing:5.164646px;}
.ls67{letter-spacing:5.200477px;}
.ls5a{letter-spacing:5.379804px;}
.ls6a{letter-spacing:5.439580px;}
.ls64{letter-spacing:5.499355px;}
.ls5d{letter-spacing:5.559131px;}
.ls65{letter-spacing:5.618906px;}
.ls13{letter-spacing:5.666765px;}
.ls6b{letter-spacing:5.738458px;}
.ls63{letter-spacing:5.798233px;}
.ls6e{letter-spacing:5.858009px;}
.ls6c{letter-spacing:5.917784px;}
.ls68{letter-spacing:6.037336px;}
.ls5f{letter-spacing:6.156887px;}
.ls62{letter-spacing:6.276438px;}
.ls31{letter-spacing:7.675238px;}
.ls8{letter-spacing:9.755443px;}
.ls4d{letter-spacing:11.046605px;}
.ls4c{letter-spacing:11.118336px;}
.ls10{letter-spacing:15.924326px;}
.ls2b{letter-spacing:15.996058px;}
.ls25{letter-spacing:17.066578px;}
.ls18{letter-spacing:17.072026px;}
.ls17{letter-spacing:17.143757px;}
.ls49{letter-spacing:17.861069px;}
.lsf{letter-spacing:17.932800px;}
.ls3d{letter-spacing:18.721843px;}
.ls3e{letter-spacing:18.793574px;}
.ls1e{letter-spacing:19.047724px;}
.ls27{letter-spacing:19.869542px;}
.ls32{letter-spacing:19.941274px;}
.ls41{letter-spacing:20.371661px;}
.ls19{letter-spacing:20.802048px;}
.ls23{letter-spacing:21.364339px;}
.ls1d{letter-spacing:21.450139px;}
.ls2{letter-spacing:21.534563px;}
.ls54{letter-spacing:21.806285px;}
.ls46{letter-spacing:22.164941px;}
.ls33{letter-spacing:22.308403px;}
.ls2a{letter-spacing:22.380134px;}
.ls53{letter-spacing:22.523597px;}
.ls1b{letter-spacing:22.667059px;}
.ls1a{letter-spacing:22.738790px;}
.ls2d{letter-spacing:22.910915px;}
.ls2e{letter-spacing:23.384371px;}
.ls11{letter-spacing:23.456102px;}
.ls26{letter-spacing:23.766754px;}
.ls21{letter-spacing:23.852555px;}
.ls4a{letter-spacing:24.101683px;}
.ls29{letter-spacing:25.034189px;}
.ls36{letter-spacing:25.105920px;}
.ls12{letter-spacing:25.464576px;}
.ls34{letter-spacing:25.902532px;}
.ls30{letter-spacing:26.390915px;}
.ls39{letter-spacing:26.396915px;}
.ls3b{letter-spacing:26.899200px;}
.ls3c{letter-spacing:26.970931px;}
.ls2f{letter-spacing:27.473050px;}
.ls9{letter-spacing:27.544781px;}
.lsa{letter-spacing:27.616512px;}
.ls1f{letter-spacing:28.056782px;}
.ls48{letter-spacing:28.333824px;}
.ls20{letter-spacing:28.828987px;}
.ls45{letter-spacing:30.844416px;}
.lsd{letter-spacing:31.131341px;}
.ls14{letter-spacing:32.207309px;}
.ls5e{letter-spacing:32.996131px;}
.lsb{letter-spacing:33.068083px;}
.ls57{letter-spacing:33.857126px;}
.ls5b{letter-spacing:34.908950px;}
.ls7{letter-spacing:35.148288px;}
.ls59{letter-spacing:35.267604px;}
.ls4b{letter-spacing:35.506944px;}
.ls1{letter-spacing:35.672757px;}
.ls58{letter-spacing:37.658880px;}
.ls22{letter-spacing:37.752245px;}
.ls42{letter-spacing:38.017536px;}
.ls16{letter-spacing:38.304461px;}
.ls47{letter-spacing:39.573813px;}
.ls15{letter-spacing:40.671590px;}
.lsc{letter-spacing:41.173709px;}
.ls6d{letter-spacing:44.951251px;}
.ls66{letter-spacing:45.011027px;}
.ls69{letter-spacing:45.788110px;}
.ls55{letter-spacing:152.070144px;}
.ls35{letter-spacing:716.777971px;}
.ls38{letter-spacing:849.297408px;}
.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;}
}
.ws55{word-spacing:-54.620635px;}
.ws17{word-spacing:-45.664082px;}
.ws5d{word-spacing:-41.999373px;}
.ws58{word-spacing:-40.377742px;}
.ws62{word-spacing:-40.341627px;}
.ws30{word-spacing:-35.112422px;}
.wsc8{word-spacing:-33.684972px;}
.wsc9{word-spacing:-23.355679px;}
.ws8f{word-spacing:-23.341332px;}
.ws84{word-spacing:-22.695752px;}
.ws7e{word-spacing:-22.050171px;}
.ws7b{word-spacing:-21.189396px;}
.ws34{word-spacing:-21.117665px;}
.ws86{word-spacing:-20.041697px;}
.ws81{word-spacing:-19.754772px;}
.ws6e{word-spacing:-19.510886px;}
.ws7f{word-spacing:-19.188096px;}
.ws52{word-spacing:-18.901171px;}
.wsc7{word-spacing:-18.829440px;}
.ws9c{word-spacing:-18.614246px;}
.ws9b{word-spacing:-18.540986px;}
.ws7a{word-spacing:-18.470784px;}
.ws36{word-spacing:-18.399053px;}
.ws5c{word-spacing:-18.232618px;}
.ws72{word-spacing:-18.183859px;}
.ws5e{word-spacing:-18.146818px;}
.ws8e{word-spacing:-18.112128px;}
.ws99{word-spacing:-18.040397px;}
.wsd9{word-spacing:-17.681741px;}
.ws7d{word-spacing:-17.602836px;}
.wsbc{word-spacing:-17.466547px;}
.ws85{word-spacing:-17.394816px;}
.ws80{word-spacing:-17.251354px;}
.wsaa{word-spacing:-16.957256px;}
.ws63{word-spacing:-16.885524px;}
.ws15{word-spacing:-16.820966px;}
.ws73{word-spacing:-16.749235px;}
.ws22{word-spacing:-16.534042px;}
.wsb1{word-spacing:-16.462310px;}
.wsa3{word-spacing:-16.455137px;}
.ws53{word-spacing:-16.079024px;}
.wsd6{word-spacing:-15.960192px;}
.ws20{word-spacing:-15.953019px;}
.ws1c{word-spacing:-15.829597px;}
.ws8a{word-spacing:-15.816730px;}
.ws66{word-spacing:-15.743520px;}
.wsa6{word-spacing:-15.673267px;}
.ws3b{word-spacing:-15.601536px;}
.ws4f{word-spacing:-15.379169px;}
.ws7c{word-spacing:-15.314611px;}
.wsb0{word-spacing:-15.199841px;}
.wsb6{word-spacing:-15.099418px;}
.wsa7{word-spacing:-14.812493px;}
.ws11{word-spacing:-14.674921px;}
.ws51{word-spacing:-14.453837px;}
.ws41{word-spacing:-14.095181px;}
.ws54{word-spacing:-14.028391px;}
.ws42{word-spacing:-14.023450px;}
.ws57{word-spacing:-13.942591px;}
.wsb7{word-spacing:-13.836948px;}
.ws21{word-spacing:-13.808256px;}
.ws1{word-spacing:-13.677667px;}
.ws75{word-spacing:-13.664794px;}
.ws31{word-spacing:-13.442427px;}
.ws50{word-spacing:-13.377869px;}
.wsc{word-spacing:-13.300375px;}
.ws23{word-spacing:-13.298964px;}
.ws4{word-spacing:-13.038556px;}
.ws28{word-spacing:-12.940308px;}
.ws3{word-spacing:-12.776738px;}
.ws16{word-spacing:-12.732288px;}
.ws35{word-spacing:-12.509921px;}
.ws1a{word-spacing:-12.445363px;}
.wsb9{word-spacing:-12.301901px;}
.ws46{word-spacing:-12.007803px;}
.ws1b{word-spacing:-11.728051px;}
.ws2a{word-spacing:-11.656320px;}
.ws1d{word-spacing:-11.584589px;}
.ws96{word-spacing:-11.362222px;}
.ws7{word-spacing:-11.336737px;}
.wsb8{word-spacing:-11.297664px;}
.wsba{word-spacing:-11.254625px;}
.ws29{word-spacing:-11.225933px;}
.ws5{word-spacing:-11.009464px;}
.wsa9{word-spacing:-10.824238px;}
.ws2b{word-spacing:-10.752507px;}
.wsad{word-spacing:-10.723814px;}
.wsa1{word-spacing:-10.716641px;}
.ws24{word-spacing:-10.680776px;}
.ws4a{word-spacing:-10.573179px;}
.ws98{word-spacing:-10.508621px;}
.wsa5{word-spacing:-10.149965px;}
.ws4d{word-spacing:-9.934771px;}
.ws95{word-spacing:-9.863040px;}
.ws6{word-spacing:-9.831281px;}
.ws9d{word-spacing:-9.719578px;}
.ws13{word-spacing:-9.700372px;}
.ws9f{word-spacing:-9.647846px;}
.ws2c{word-spacing:-9.640673px;}
.ws4b{word-spacing:-9.145728px;}
.ws32{word-spacing:-9.138555px;}
.wsa8{word-spacing:-9.002266px;}
.ws25{word-spacing:-8.858803px;}
.ws12{word-spacing:-8.784007px;}
.ws69{word-spacing:-8.715341px;}
.ws3d{word-spacing:-8.708168px;}
.ws94{word-spacing:-8.643610px;}
.ws8b{word-spacing:-8.571878px;}
.ws9a{word-spacing:-8.500147px;}
.wsb{word-spacing:-8.456734px;}
.wsc5{word-spacing:-8.392550px;}
.ws87{word-spacing:-8.141491px;}
.ws74{word-spacing:-7.926298px;}
.wsbd{word-spacing:-7.854566px;}
.wsc3{word-spacing:-7.603507px;}
.ws40{word-spacing:-7.567642px;}
.wsd4{word-spacing:-7.352448px;}
.wsbe{word-spacing:-7.165947px;}
.ws47{word-spacing:-6.706867px;}
.ws90{word-spacing:-6.563405px;}
.wsfe{word-spacing:-6.336214px;}
.ws26{word-spacing:-6.276480px;}
.wsa2{word-spacing:-6.269307px;}
.ws115{word-spacing:-6.097111px;}
.wsa4{word-spacing:-6.018248px;}
.ws19{word-spacing:-5.989555px;}
.wsae{word-spacing:-5.917824px;}
.ws10{word-spacing:-5.838550px;}
.ws27{word-spacing:-5.803054px;}
.ws120{word-spacing:-5.798233px;}
.wsaf{word-spacing:-5.702630px;}
.ws89{word-spacing:-5.659592px;}
.ws129{word-spacing:-5.618906px;}
.ws117{word-spacing:-5.559131px;}
.wsa0{word-spacing:-5.487437px;}
.ws110{word-spacing:-5.439580px;}
.ws5f{word-spacing:-5.272243px;}
.ws10f{word-spacing:-5.260253px;}
.ws8c{word-spacing:-5.200512px;}
.ws83{word-spacing:-5.128781px;}
.wsdf{word-spacing:-5.080926px;}
.ws8{word-spacing:-4.987641px;}
.ws3a{word-spacing:-4.985318px;}
.wsfd{word-spacing:-4.782048px;}
.ws18{word-spacing:-4.554931px;}
.wsab{word-spacing:-4.411469px;}
.ws9{word-spacing:-4.398549px;}
.wsac{word-spacing:-4.296699px;}
.ws5b{word-spacing:-4.290028px;}
.ws79{word-spacing:-4.052813px;}
.ws37{word-spacing:-3.973908px;}
.wsfc{word-spacing:-3.825638px;}
.wsb3{word-spacing:-3.722849px;}
.ws61{word-spacing:-3.586560px;}
.wsbb{word-spacing:-3.550694px;}
.wsc2{word-spacing:-3.514829px;}
.ws39{word-spacing:-3.407232px;}
.wsd0{word-spacing:-3.120307px;}
.wsa{word-spacing:-2.893093px;}
.ws88{word-spacing:-2.575150px;}
.ws2d{word-spacing:-2.395822px;}
.ws6a{word-spacing:-1.972608px;}
.wsd8{word-spacing:-1.900877px;}
.ws4e{word-spacing:-1.829146px;}
.ws64{word-spacing:-1.685683px;}
.ws68{word-spacing:-1.319854px;}
.ws67{word-spacing:-1.111834px;}
.ws43{word-spacing:-1.104660px;}
.ws48{word-spacing:-1.040102px;}
.ws45{word-spacing:-0.896640px;}
.ws65{word-spacing:-0.817736px;}
.ws82{word-spacing:-0.753178px;}
.ws3f{word-spacing:-0.746004px;}
.wsd{word-spacing:-0.471273px;}
.wsf{word-spacing:-0.405819px;}
.ws4c{word-spacing:-0.351483px;}
.ws97{word-spacing:-0.179328px;}
.wsb2{word-spacing:-0.136289px;}
.ws49{word-spacing:-0.107597px;}
.ws2{word-spacing:-0.086077px;}
.wsbf{word-spacing:-0.071731px;}
.wse{word-spacing:-0.065455px;}
.wsdb{word-spacing:-0.059776px;}
.ws56{word-spacing:-0.057200px;}
.ws78{word-spacing:-0.047821px;}
.ws1f{word-spacing:0.000000px;}
.ws3c{word-spacing:0.035866px;}
.ws60{word-spacing:0.358656px;}
.ws33{word-spacing:0.430387px;}
.ws59{word-spacing:0.514803px;}
.wsc6{word-spacing:1.506355px;}
.ws76{word-spacing:1.936742px;}
.wsc1{word-spacing:1.972608px;}
.wsb4{word-spacing:2.015647px;}
.wscd{word-spacing:3.012710px;}
.wscb{word-spacing:3.084442px;}
.ws11b{word-spacing:3.108331px;}
.ws9e{word-spacing:3.873485px;}
.wsd1{word-spacing:5.272243px;}
.ws2e{word-spacing:6.097152px;}
.ws38{word-spacing:7.503084px;}
.ws3e{word-spacing:7.531776px;}
.wsf5{word-spacing:8.249033px;}
.wsea{word-spacing:8.308808px;}
.ws128{word-spacing:8.428360px;}
.ws111{word-spacing:8.547911px;}
.wsf7{word-spacing:8.607686px;}
.ws10d{word-spacing:8.667462px;}
.wsf0{word-spacing:8.727238px;}
.wsf3{word-spacing:8.787013px;}
.wsf6{word-spacing:8.846789px;}
.wsf4{word-spacing:8.906564px;}
.ws12c{word-spacing:8.966340px;}
.wsfb{word-spacing:9.085891px;}
.ws11a{word-spacing:9.324994px;}
.wsf1{word-spacing:9.683647px;}
.wse2{word-spacing:11.417140px;}
.ws44{word-spacing:12.380805px;}
.wscf{word-spacing:12.481229px;}
.wscc{word-spacing:13.628928px;}
.ws13b{word-spacing:13.688612px;}
.wsd7{word-spacing:17.072026px;}
.wsd5{word-spacing:18.147994px;}
.wsce{word-spacing:18.506650px;}
.ws1e{word-spacing:19.845499px;}
.ws92{word-spacing:20.188250px;}
.ws8d{word-spacing:22.867701px;}
.wsc0{word-spacing:23.312640px;}
.wsb5{word-spacing:23.384371px;}
.ws77{word-spacing:24.281281px;}
.ws91{word-spacing:25.615030px;}
.ws131{word-spacing:32.099497px;}
.ws2f{word-spacing:32.287328px;}
.ws121{word-spacing:32.398375px;}
.ws10b{word-spacing:32.876580px;}
.wse5{word-spacing:32.960266px;}
.ws124{word-spacing:33.055907px;}
.ws127{word-spacing:33.295009px;}
.ws125{word-spacing:33.474336px;}
.ws138{word-spacing:33.952541px;}
.ws102{word-spacing:34.430746px;}
.ws133{word-spacing:34.490521px;}
.wsf9{word-spacing:34.574207px;}
.wse3{word-spacing:34.610072px;}
.ws101{word-spacing:34.908950px;}
.ws11f{word-spacing:35.028502px;}
.ws114{word-spacing:35.148053px;}
.wsef{word-spacing:35.650168px;}
.wse7{word-spacing:35.709943px;}
.ws12b{word-spacing:35.984911px;}
.wsdc{word-spacing:36.403340px;}
.ws106{word-spacing:36.702218px;}
.wsda{word-spacing:37.240199px;}
.wsde{word-spacing:37.419526px;}
.ws109{word-spacing:37.479301px;}
.ws13a{word-spacing:37.539077px;}
.wse1{word-spacing:37.598852px;}
.wse0{word-spacing:37.957506px;}
.wsdd{word-spacing:38.136833px;}
.ws126{word-spacing:38.495486px;}
.ws11d{word-spacing:42.799330px;}
.ws105{word-spacing:42.859105px;}
.ws0{word-spacing:43.763175px;}
.wse8{word-spacing:43.815515px;}
.wsee{word-spacing:43.875290px;}
.wsf2{word-spacing:44.473046px;}
.ws103{word-spacing:44.891476px;}
.ws10e{word-spacing:44.951251px;}
.wsec{word-spacing:45.130578px;}
.wsf8{word-spacing:45.429456px;}
.ws12d{word-spacing:45.489232px;}
.ws116{word-spacing:45.728334px;}
.wse6{word-spacing:45.967436px;}
.ws122{word-spacing:46.206539px;}
.wse4{word-spacing:46.445641px;}
.ws10c{word-spacing:46.505417px;}
.ws108{word-spacing:47.162948px;}
.ws139{word-spacing:47.222724px;}
.ws135{word-spacing:47.282500px;}
.ws107{word-spacing:47.461826px;}
.ws113{word-spacing:47.521602px;}
.ws130{word-spacing:48.179134px;}
.wsfa{word-spacing:48.298685px;}
.ws71{word-spacing:50.398341px;}
.ws14{word-spacing:55.726250px;}
.wsd2{word-spacing:132.487526px;}
.ws5a{word-spacing:162.272176px;}
.ws11e{word-spacing:182.518817px;}
.wse9{word-spacing:183.594778px;}
.wsed{word-spacing:184.192534px;}
.wseb{word-spacing:184.610963px;}
.ws118{word-spacing:185.447821px;}
.ws100{word-spacing:185.806475px;}
.wsff{word-spacing:185.926026px;}
.ws10a{word-spacing:186.045577px;}
.ws104{word-spacing:186.105353px;}
.ws112{word-spacing:186.224904px;}
.ws123{word-spacing:186.344455px;}
.ws6b{word-spacing:213.507917px;}
.ws6d{word-spacing:214.153498px;}
.ws6f{word-spacing:214.225229px;}
.ws6c{word-spacing:283.732762px;}
.ws12a{word-spacing:335.723680px;}
.ws119{word-spacing:336.680089px;}
.ws11c{word-spacing:336.799640px;}
.wsd3{word-spacing:340.651469px;}
.wsca{word-spacing:364.131671px;}
.ws70{word-spacing:381.150904px;}
.wsc4{word-spacing:424.541107px;}
.ws12f{word-spacing:484.804026px;}
.ws134{word-spacing:485.820211px;}
.ws12e{word-spacing:486.657070px;}
.ws132{word-spacing:487.135274px;}
.ws137{word-spacing:637.470908px;}
.ws136{word-spacing:637.829562px;}
.ws93{word-spacing:823.904563px;}
._3f{margin-left:-35.420873px;}
._40{margin-left:-28.032575px;}
._3c{margin-left:-11.723693px;}
._6f{margin-left:-9.296316px;}
._16{margin-left:-7.833025px;}
._14{margin-left:-6.671002px;}
._b{margin-left:-5.432732px;}
._13{margin-left:-4.038430px;}
._1{margin-left:-2.238007px;}
._6{margin-left:-1.218536px;}
._f{width:1.251709px;}
._0{width:2.324084px;}
._2{width:4.115568px;}
._3d{width:5.390606px;}
._57{width:6.755296px;}
._72{width:7.808074px;}
._1e{width:8.890338px;}
._73{width:10.805955px;}
._3e{width:12.366522px;}
._75{width:13.768219px;}
._4d{width:15.924326px;}
._39{width:17.011061px;}
._1a{width:18.320136px;}
._29{width:19.941274px;}
._38{width:21.489754px;}
._4{width:22.626669px;}
._41{width:23.958221px;}
._10{width:25.094213px;}
._9{width:27.171731px;}
._3{width:28.800024px;}
._7{width:30.592400px;}
._17{width:31.916798px;}
._e{width:33.459851px;}
._c{width:34.473952px;}
._19{width:36.382058px;}
._18{width:37.411408px;}
._d{width:38.728501px;}
._15{width:40.146133px;}
._76{width:42.167092px;}
._20{width:43.180214px;}
._71{width:44.804650px;}
._5{width:45.850501px;}
._70{width:47.186801px;}
._11{width:48.446345px;}
._74{width:49.671104px;}
._3b{width:50.803615px;}
._8{width:52.690953px;}
._5d{width:57.299009px;}
._a{width:60.701368px;}
._3a{width:64.199424px;}
._2a{width:70.153114px;}
._2d{width:71.731200px;}
._54{width:74.889935px;}
._2b{width:82.203955px;}
._43{width:84.355129px;}
._1b{width:89.016771px;}
._12{width:94.684920px;}
._5f{width:102.398856px;}
._25{width:109.617313px;}
._42{width:111.452500px;}
._46{width:114.781786px;}
._2c{width:124.094976px;}
._28{width:126.683044px;}
._47{width:130.180356px;}
._5b{width:132.298545px;}
._59{width:135.462446px;}
._45{width:139.961155px;}
._1f{width:142.298746px;}
._68{width:146.565880px;}
._69{width:151.318652px;}
._4b{width:154.649980px;}
._22{width:156.292817px;}
._48{width:159.620959px;}
._26{width:162.272176px;}
._63{width:165.459878px;}
._58{width:169.656147px;}
._55{width:171.320317px;}
._4c{width:176.585955px;}
._5a{width:178.864328px;}
._5c{width:193.361191px;}
._24{width:198.222162px;}
._1d{width:204.271549px;}
._49{width:206.043267px;}
._5e{width:225.549105px;}
._21{width:230.629854px;}
._66{width:234.788083px;}
._50{width:236.287265px;}
._60{width:248.818706px;}
._4e{width:257.168218px;}
._61{width:260.073331px;}
._1c{width:272.895366px;}
._51{width:283.773313px;}
._52{width:287.468951px;}
._23{width:290.363381px;}
._53{width:292.412436px;}
._4a{width:299.788785px;}
._6c{width:308.683453px;}
._27{width:311.359888px;}
._6e{width:323.890468px;}
._2e{width:346.389965px;}
._4f{width:354.404920px;}
._6d{width:355.514106px;}
._30{width:373.432627px;}
._37{width:376.517069px;}
._2f{width:381.466522px;}
._65{width:386.748512px;}
._62{width:388.814377px;}
._56{width:402.385908px;}
._31{width:408.509184px;}
._67{width:434.126976px;}
._33{width:443.657472px;}
._64{width:447.619608px;}
._6a{width:462.515536px;}
._32{width:498.244915px;}
._36{width:501.974938px;}
._6b{width:522.889837px;}
._34{width:533.393203px;}
._35{width:568.469760px;}
._44{width:688.864934px;}
.fc3{color:rgb(0,153,0);}
.fc4{color:rgb(148,0,209);}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs9{font-size:57.200132px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs6{font-size:71.731200px;}
.fs8{font-size:85.800558px;}
.fs1{font-size:86.077200px;}
.fs5{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y23{bottom:61.467000px;}
.y49{bottom:106.299000px;}
.y22{bottom:111.721500px;}
.y169{bottom:116.436000px;}
.y130{bottom:124.231500px;}
.y48{bottom:127.968000px;}
.y168{bottom:134.368500px;}
.y21{bottom:136.138500px;}
.yfc{bottom:141.298500px;}
.y12f{bottom:142.164000px;}
.y88{bottom:142.656000px;}
.y47{bottom:149.637000px;}
.y167{bottom:152.301000px;}
.y20{bottom:157.807500px;}
.y12e{bottom:160.098000px;}
.y68{bottom:161.763000px;}
.yfb{bottom:162.967500px;}
.y87{bottom:164.325000px;}
.y166{bottom:170.233500px;}
.y12d{bottom:178.030500px;}
.yfa{bottom:185.233500px;}
.y46{bottom:185.803500px;}
.ya7{bottom:186.631500px;}
.y165{bottom:188.167500px;}
.y1f{bottom:191.055000px;}
.y67{bottom:195.558000px;}
.y12c{bottom:195.963000px;}
.y86{bottom:197.572500px;}
.y164{bottom:206.100000px;}
.yf9{bottom:206.902500px;}
.y45{bottom:207.472500px;}
.ya6{bottom:208.300500px;}
.y12b{bottom:213.895500px;}
.y66{bottom:223.719000px;}
.y163{bottom:224.032500px;}
.y44{bottom:229.140000px;}
.yf8{bottom:229.168500px;}
.ya5{bottom:229.969500px;}
.y12a{bottom:231.828000px;}
.y1e{bottom:235.708500px;}
.y162{bottom:241.965000px;}
.y65{bottom:245.388000px;}
.y85{bottom:249.559500px;}
.y129{bottom:249.760500px;}
.y43{bottom:250.809000px;}
.yf7{bottom:251.436000px;}
.y161{bottom:259.897500px;}
.y128{bottom:267.694500px;}
.ya4{bottom:269.571000px;}
.y42{bottom:272.478000px;}
.yf6{bottom:273.105000px;}
.y160{bottom:277.830000px;}
.y64{bottom:278.635500px;}
.y127{bottom:285.627000px;}
.y84{bottom:289.161000px;}
.y1d{bottom:294.394500px;}
.yf5{bottom:295.371000px;}
.y15f{bottom:295.764000px;}
.y126{bottom:303.559500px;}
.y16a{bottom:305.476500px;}
.y41{bottom:308.644500px;}
.ya3{bottom:309.172500px;}
.y15e{bottom:313.696500px;}
.y1c{bottom:316.063500px;}
.yf4{bottom:317.637000px;}
.y125{bottom:321.492000px;}
.y63{bottom:323.935500px;}
.y83{bottom:328.762500px;}
.y40{bottom:330.313500px;}
.ya2{bottom:330.841500px;}
.y15d{bottom:331.629000px;}
.y1b{bottom:337.732500px;}
.y124{bottom:339.424500px;}
.yf3{bottom:339.904500px;}
.y15c{bottom:349.561500px;}
.y62{bottom:350.259000px;}
.y3f{bottom:351.982500px;}
.ya1{bottom:352.510500px;}
.y123{bottom:357.357000px;}
.y1a{bottom:359.400000px;}
.y82{bottom:360.144000px;}
.yf2{bottom:362.170500px;}
.y15b{bottom:367.494000px;}
.y3e{bottom:373.651500px;}
.ya0{bottom:374.179500px;}
.y122{bottom:375.291000px;}
.y19{bottom:381.069000px;}
.y61{bottom:384.055500px;}
.yf1{bottom:384.436500px;}
.y15a{bottom:385.426500px;}
.y121{bottom:393.223500px;}
.y3d{bottom:395.319000px;}
.y9f{bottom:395.847000px;}
.y18{bottom:402.738000px;}
.y159{bottom:403.360500px;}
.y81{bottom:403.482000px;}
.yf0{bottom:406.105500px;}
.yd3{bottom:409.516500px;}
.y120{bottom:411.156000px;}
.y9e{bottom:417.516000px;}
.y60{bottom:419.859000px;}
.y158{bottom:421.293000px;}
.y80{bottom:425.151000px;}
.yef{bottom:428.371500px;}
.y11f{bottom:429.088500px;}
.yd2{bottom:431.185500px;}
.y3c{bottom:431.485500px;}
.y9d{bottom:439.185000px;}
.y157{bottom:439.225500px;}
.y17{bottom:442.161000px;}
.y7f{bottom:446.818500px;}
.y11e{bottom:447.021000px;}
.y5f{bottom:449.599500px;}
.yee{bottom:450.639000px;}
.y3b{bottom:453.154500px;}
.y156{bottom:457.158000px;}
.y9c{bottom:460.854000px;}
.yd1{bottom:463.314000px;}
.y11d{bottom:464.953500px;}
.yed{bottom:472.905000px;}
.y3a{bottom:474.823500px;}
.y155{bottom:475.090500px;}
.y7e{bottom:480.066000px;}
.y9b{bottom:482.523000px;}
.y11c{bottom:482.887500px;}
.y5e{bottom:483.394500px;}
.yd0{bottom:484.983000px;}
.y154{bottom:493.023000px;}
.yec{bottom:494.574000px;}
.y11b{bottom:500.820000px;}
.y16{bottom:500.847000px;}
.ycf{bottom:506.652000px;}
.y39{bottom:510.097500px;}
.y153{bottom:510.957000px;}
.y9a{bottom:515.770500px;}
.yeb{bottom:516.840000px;}
.y5d{bottom:517.191000px;}
.y11a{bottom:518.752500px;}
.y15{bottom:521.170500px;}
.y7d{bottom:526.822500px;}
.y152{bottom:528.889500px;}
.y38{bottom:531.766500px;}
.y119{bottom:536.685000px;}
.yce{bottom:538.782000px;}
.yea{bottom:539.106000px;}
.y14{bottom:541.494000px;}
.y5c{bottom:545.350500px;}
.y151{bottom:546.822000px;}
.y7c{bottom:548.491500px;}
.y118{bottom:554.617500px;}
.ycd{bottom:560.449500px;}
.ye9{bottom:560.775000px;}
.y13{bottom:561.817500px;}
.y150{bottom:564.754500px;}
.y37{bottom:565.014000px;}
.y5b{bottom:567.019500px;}
.y99{bottom:567.756000px;}
.y7b{bottom:570.160500px;}
.y117{bottom:572.551500px;}
.ycc{bottom:582.118500px;}
.y12{bottom:582.142500px;}
.y14f{bottom:582.687000px;}
.ye8{bottom:583.042500px;}
.y98{bottom:589.425000px;}
.y116{bottom:590.484000px;}
.y5a{bottom:600.267000px;}
.y14e{bottom:600.619500px;}
.y11{bottom:602.466000px;}
.ye7{bottom:605.308500px;}
.y115{bottom:608.416500px;}
.y97{bottom:611.094000px;}
.ycb{bottom:614.248500px;}
.y36{bottom:616.770000px;}
.y14d{bottom:618.553500px;}
.y7a{bottom:619.849500px;}
.y10{bottom:622.789500px;}
.y114{bottom:626.349000px;}
.ye6{bottom:626.977500px;}
.yca{bottom:632.244000px;}
.y96{bottom:632.763000px;}
.y59{bottom:633.514500px;}
.yc9{bottom:635.917500px;}
.y14c{bottom:636.486000px;}
.y35{bottom:638.437500px;}
.y79{bottom:642.115500px;}
.yf{bottom:643.113000px;}
.y113{bottom:644.281500px;}
.ye5{bottom:649.243500px;}
.y14b{bottom:654.418500px;}
.y95{bottom:654.432000px;}
.yc8{bottom:657.586500px;}
.y34{bottom:660.106500px;}
.y112{bottom:662.214000px;}
.ye{bottom:663.436500px;}
.y78{bottom:663.784500px;}
.ye4{bottom:671.509500px;}
.y14a{bottom:672.351000px;}
.y94{bottom:676.099500px;}
.y58{bottom:678.168000px;}
.y111{bottom:680.148000px;}
.yd{bottom:683.761500px;}
.y77{bottom:685.452000px;}
.yc7{bottom:689.715000px;}
.y149{bottom:690.283500px;}
.ye3{bottom:693.178500px;}
.y33{bottom:696.273000px;}
.yb8{bottom:696.501000px;}
.y110{bottom:698.080500px;}
.yc{bottom:704.085000px;}
.y76{bottom:707.121000px;}
.y148{bottom:708.216000px;}
.y93{bottom:709.347000px;}
.yc6{bottom:711.384000px;}
.ye2{bottom:715.444500px;}
.y10f{bottom:716.013000px;}
.y32{bottom:717.942000px;}
.yb7{bottom:718.170000px;}
.yb{bottom:724.408500px;}
.y147{bottom:726.150000px;}
.y75{bottom:728.790000px;}
.y10e{bottom:733.945500px;}
.ye1{bottom:737.712000px;}
.yb6{bottom:739.839000px;}
.yc5{bottom:743.514000px;}
.y146{bottom:744.082500px;}
.ya{bottom:744.732000px;}
.y57{bottom:745.096066px;}
.y74{bottom:750.459000px;}
.y10d{bottom:751.878000px;}
.y92{bottom:754.000500px;}
.y31{bottom:754.108500px;}
.ye0{bottom:759.978000px;}
.yb5{bottom:761.506500px;}
.y145{bottom:762.015000px;}
.y9{bottom:765.055500px;}
.yc4{bottom:765.183000px;}
.y10c{bottom:769.810500px;}
.y56{bottom:771.731114px;}
.y73{bottom:772.128000px;}
.y144{bottom:779.947500px;}
.ydf{bottom:781.647000px;}
.yb4{bottom:783.175500px;}
.y8{bottom:786.105000px;}
.yc3{bottom:786.850500px;}
.y10b{bottom:787.744500px;}
.y30{bottom:790.275000px;}
.y72{bottom:793.797000px;}
.y143{bottom:797.880000px;}
.y55{bottom:798.364367px;}
.yde{bottom:803.913000px;}
.yb3{bottom:804.844500px;}
.y10a{bottom:805.677000px;}
.y2f{bottom:811.944000px;}
.y91{bottom:813.894000px;}
.y71{bottom:815.464500px;}
.y142{bottom:815.812500px;}
.yc2{bottom:818.980500px;}
.y109{bottom:823.609500px;}
.y54{bottom:824.997620px;}
.ydd{bottom:826.180500px;}
.yb2{bottom:826.513500px;}
.y141{bottom:833.746500px;}
.y90{bottom:835.563000px;}
.y70{bottom:837.133500px;}
.yc1{bottom:840.649500px;}
.y108{bottom:841.542000px;}
.ydc{bottom:848.446500px;}
.y2e{bottom:851.254500px;}
.y53{bottom:851.632668px;}
.y140{bottom:851.679000px;}
.y7{bottom:852.906000px;}
.y6f{bottom:858.802500px;}
.y107{bottom:859.474500px;}
.yc0{bottom:862.318500px;}
.yb1{bottom:865.936500px;}
.y13f{bottom:869.611500px;}
.ydb{bottom:870.115500px;}
.y8f{bottom:872.176500px;}
.y106{bottom:877.407000px;}
.y52{bottom:878.265921px;}
.y6e{bottom:881.068500px;}
.ybf{bottom:883.987500px;}
.y2d{bottom:884.502000px;}
.y13e{bottom:887.544000px;}
.yda{bottom:892.381500px;}
.y8e{bottom:893.845500px;}
.y6{bottom:894.844500px;}
.y105{bottom:895.341000px;}
.y51{bottom:904.899174px;}
.y13d{bottom:905.476500px;}
.y104{bottom:913.273500px;}
.yd9{bottom:914.647500px;}
.ybe{bottom:916.116000px;}
.y6d{bottom:918.279000px;}
.y5{bottom:921.744000px;}
.y13c{bottom:923.409000px;}
.yb0{bottom:925.830000px;}
.y8d{bottom:927.093000px;}
.y103{bottom:931.206000px;}
.y50{bottom:931.534222px;}
.y2c{bottom:936.258000px;}
.yd8{bottom:936.915000px;}
.ybd{bottom:937.785000px;}
.y13b{bottom:941.343000px;}
.yaf{bottom:947.499000px;}
.y4{bottom:948.642000px;}
.y102{bottom:949.138500px;}
.y2b{bottom:957.925500px;}
.y4f{bottom:958.167475px;}
.yd7{bottom:959.181000px;}
.y13a{bottom:959.275500px;}
.y6c{bottom:960.345000px;}
.yae{bottom:969.168000px;}
.ybc{bottom:969.915000px;}
.y8c{bottom:973.848000px;}
.y101{bottom:974.091000px;}
.y139{bottom:977.208000px;}
.yd6{bottom:981.447000px;}
.y6b{bottom:982.014000px;}
.y4e{bottom:984.800728px;}
.yad{bottom:990.835500px;}
.y2a{bottom:994.092000px;}
.y138{bottom:995.140500px;}
.y100{bottom:995.758500px;}
.y3{bottom:1001.874000px;}
.ybb{bottom:1002.043500px;}
.yd5{bottom:1003.714500px;}
.y8b{bottom:1010.461500px;}
.y4d{bottom:1011.435776px;}
.yac{bottom:1012.504500px;}
.y137{bottom:1013.073000px;}
.y6a{bottom:1015.261500px;}
.y29{bottom:1015.761000px;}
.yba{bottom:1023.712500px;}
.y2{bottom:1028.773500px;}
.y136{bottom:1031.005500px;}
.y8a{bottom:1032.130500px;}
.yab{bottom:1034.173500px;}
.yff{bottom:1035.181500px;}
.y28{bottom:1037.430000px;}
.yd4{bottom:1040.925000px;}
.yb9{bottom:1045.381500px;}
.y135{bottom:1048.939500px;}
.y4c{bottom:1051.737000px;}
.yaa{bottom:1055.842500px;}
.y27{bottom:1059.099000px;}
.y69{bottom:1062.018000px;}
.y1{bottom:1066.132500px;}
.y134{bottom:1066.872000px;}
.y89{bottom:1068.742500px;}
.ya9{bottom:1077.511500px;}
.y4b{bottom:1083.687000px;}
.y133{bottom:1084.804500px;}
.y26{bottom:1095.265500px;}
.ya8{bottom:1099.180500px;}
.yfe{bottom:1101.766500px;}
.y132{bottom:1102.737000px;}
.y4a{bottom:1105.354500px;}
.y25{bottom:1116.934500px;}
.y131{bottom:1120.669500px;}
.yfd{bottom:1123.434000px;}
.y24{bottom:1138.602000px;}
.hb{height:23.201476px;}
.h15{height:24.281011px;}
.h16{height:41.603818px;}
.h6{height:49.156405px;}
.h5{height:53.195710px;}
.hf{height:53.798400px;}
.h9{height:53.870131px;}
.hc{height:53.941862px;}
.h7{height:56.080726px;}
.h11{height:58.354726px;}
.h10{height:58.360726px;}
.h3{height:60.598349px;}
.h13{height:61.942726px;}
.he{height:64.436219px;}
.hd{height:64.522019px;}
.ha{height:64.643977px;}
.h14{height:68.564131px;}
.h12{height:70.344624px;}
.h4{height:76.133476px;}
.h8{height:77.675885px;}
.h2{height:87.030450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:82.393500px;}
.x1e{left:87.871500px;}
.x1d{left:93.349500px;}
.xb{left:106.299000px;}
.x18{left:115.077000px;}
.x11{left:117.738883px;}
.xc{left:126.489000px;}
.xf{left:127.762500px;}
.xe{left:132.639000px;}
.x20{left:137.128500px;}
.x19{left:142.386000px;}
.x1f{left:146.646000px;}
.xa{left:150.196500px;}
.x13{left:169.962000px;}
.x9{left:174.603000px;}
.x2{left:179.884500px;}
.x10{left:184.186500px;}
.x14{left:195.988500px;}
.x1{left:205.336500px;}
.x3{left:243.298500px;}
.x1a{left:254.437500px;}
.x12{left:262.915500px;}
.x23{left:279.229500px;}
.x1c{left:280.483500px;}
.x15{left:282.841500px;}
.x5{left:293.554500px;}
.x16{left:307.179000px;}
.x6{left:313.885500px;}
.x17{left:340.408500px;}
.x7{left:361.822500px;}
.x4{left:378.739500px;}
.x8{left:410.724000px;}
.x21{left:437.679000px;}
.xd{left:442.068000px;}
.x1b{left:554.131500px;}
@media print{
.v4{vertical-align:-19.280000pt;}
.v5{vertical-align:-11.438288pt;}
.v3{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:9.562667pt;}
.va{vertical-align:13.061333pt;}
.v8{vertical-align:15.002667pt;}
.v2{vertical-align:21.114667pt;}
.v6{vertical-align:23.141333pt;}
.v7{vertical-align:26.325333pt;}
.v1{vertical-align:27.770667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000391pt;}
.ls3f{letter-spacing:0.001145pt;}
.ls4e{letter-spacing:0.005243pt;}
.ls40{letter-spacing:0.011300pt;}
.ls37{letter-spacing:0.023487pt;}
.ls0{letter-spacing:2.094547pt;}
.ls44{letter-spacing:2.231637pt;}
.ls43{letter-spacing:2.650641pt;}
.ls3a{letter-spacing:2.653258pt;}
.ls3{letter-spacing:2.655975pt;}
.ls4{letter-spacing:2.658591pt;}
.ls50{letter-spacing:2.659144pt;}
.ls4f{letter-spacing:2.659603pt;}
.ls5{letter-spacing:2.660350pt;}
.ls24{letter-spacing:2.847295pt;}
.ls56{letter-spacing:2.869248pt;}
.ls1c{letter-spacing:3.188053pt;}
.ls60{letter-spacing:3.347434pt;}
.ls52{letter-spacing:3.953186pt;}
.ls51{letter-spacing:4.016947pt;}
.ls61{letter-spacing:4.197575pt;}
.ls5c{letter-spacing:4.463245pt;}
.ls28{letter-spacing:4.527036pt;}
.lse{letter-spacing:4.590797pt;}
.ls67{letter-spacing:4.622646pt;}
.ls5a{letter-spacing:4.782048pt;}
.ls6a{letter-spacing:4.835182pt;}
.ls64{letter-spacing:4.888316pt;}
.ls5d{letter-spacing:4.941450pt;}
.ls65{letter-spacing:4.994583pt;}
.ls13{letter-spacing:5.037124pt;}
.ls6b{letter-spacing:5.100851pt;}
.ls63{letter-spacing:5.153985pt;}
.ls6e{letter-spacing:5.207119pt;}
.ls6c{letter-spacing:5.260253pt;}
.ls68{letter-spacing:5.366521pt;}
.ls5f{letter-spacing:5.472788pt;}
.ls62{letter-spacing:5.579056pt;}
.ls31{letter-spacing:6.822434pt;}
.ls8{letter-spacing:8.671505pt;}
.ls4d{letter-spacing:9.819204pt;}
.ls4c{letter-spacing:9.882965pt;}
.ls10{letter-spacing:14.154957pt;}
.ls2b{letter-spacing:14.218718pt;}
.ls25{letter-spacing:15.170291pt;}
.ls18{letter-spacing:15.175134pt;}
.ls17{letter-spacing:15.238895pt;}
.ls49{letter-spacing:15.876506pt;}
.lsf{letter-spacing:15.940267pt;}
.ls3d{letter-spacing:16.641638pt;}
.ls3e{letter-spacing:16.705399pt;}
.ls1e{letter-spacing:16.931310pt;}
.ls27{letter-spacing:17.661815pt;}
.ls32{letter-spacing:17.725577pt;}
.ls41{letter-spacing:18.108143pt;}
.ls19{letter-spacing:18.490709pt;}
.ls23{letter-spacing:18.990523pt;}
.ls1d{letter-spacing:19.066791pt;}
.ls2{letter-spacing:19.141834pt;}
.ls54{letter-spacing:19.383364pt;}
.ls46{letter-spacing:19.702170pt;}
.ls33{letter-spacing:19.829692pt;}
.ls2a{letter-spacing:19.893453pt;}
.ls53{letter-spacing:20.020975pt;}
.ls1b{letter-spacing:20.148497pt;}
.ls1a{letter-spacing:20.212258pt;}
.ls2d{letter-spacing:20.365258pt;}
.ls2e{letter-spacing:20.786108pt;}
.ls11{letter-spacing:20.849869pt;}
.ls26{letter-spacing:21.126004pt;}
.ls21{letter-spacing:21.202271pt;}
.ls4a{letter-spacing:21.423718pt;}
.ls29{letter-spacing:22.252612pt;}
.ls36{letter-spacing:22.316373pt;}
.ls12{letter-spacing:22.635179pt;}
.ls34{letter-spacing:23.024473pt;}
.ls30{letter-spacing:23.458591pt;}
.ls39{letter-spacing:23.463925pt;}
.ls3b{letter-spacing:23.910400pt;}
.ls3c{letter-spacing:23.974161pt;}
.ls2f{letter-spacing:24.420489pt;}
.ls9{letter-spacing:24.484250pt;}
.lsa{letter-spacing:24.548011pt;}
.ls1f{letter-spacing:24.939362pt;}
.ls48{letter-spacing:25.185621pt;}
.ls20{letter-spacing:25.625767pt;}
.ls45{letter-spacing:27.417259pt;}
.lsd{letter-spacing:27.672303pt;}
.ls14{letter-spacing:28.628719pt;}
.ls5e{letter-spacing:29.329894pt;}
.lsb{letter-spacing:29.393852pt;}
.ls57{letter-spacing:30.095223pt;}
.ls5b{letter-spacing:31.030178pt;}
.ls7{letter-spacing:31.242923pt;}
.ls59{letter-spacing:31.348981pt;}
.ls4b{letter-spacing:31.561728pt;}
.ls1{letter-spacing:31.709117pt;}
.ls58{letter-spacing:33.474560pt;}
.ls22{letter-spacing:33.557551pt;}
.ls42{letter-spacing:33.793365pt;}
.ls16{letter-spacing:34.048410pt;}
.ls47{letter-spacing:35.176723pt;}
.ls15{letter-spacing:36.152525pt;}
.lsc{letter-spacing:36.598852pt;}
.ls6d{letter-spacing:39.956668pt;}
.ls66{letter-spacing:40.009802pt;}
.ls69{letter-spacing:40.700542pt;}
.ls55{letter-spacing:135.173461pt;}
.ls35{letter-spacing:637.135975pt;}
.ls38{letter-spacing:754.931029pt;}
.ws55{word-spacing:-48.551676pt;}
.ws17{word-spacing:-40.590295pt;}
.ws5d{word-spacing:-37.332776pt;}
.ws58{word-spacing:-35.891327pt;}
.ws62{word-spacing:-35.859224pt;}
.ws30{word-spacing:-31.211042pt;}
.wsc8{word-spacing:-29.942197pt;}
.wsc9{word-spacing:-20.760603pt;}
.ws8f{word-spacing:-20.747851pt;}
.ws84{word-spacing:-20.174001pt;}
.ws7e{word-spacing:-19.600152pt;}
.ws7b{word-spacing:-18.835019pt;}
.ws34{word-spacing:-18.771258pt;}
.ws86{word-spacing:-17.814842pt;}
.ws81{word-spacing:-17.559798pt;}
.ws6e{word-spacing:-17.343010pt;}
.ws7f{word-spacing:-17.056085pt;}
.ws52{word-spacing:-16.801041pt;}
.wsc7{word-spacing:-16.737280pt;}
.ws9c{word-spacing:-16.545997pt;}
.ws9b{word-spacing:-16.480876pt;}
.ws7a{word-spacing:-16.418475pt;}
.ws36{word-spacing:-16.354714pt;}
.ws5c{word-spacing:-16.206772pt;}
.ws72{word-spacing:-16.163430pt;}
.ws5e{word-spacing:-16.130505pt;}
.ws8e{word-spacing:-16.099669pt;}
.ws99{word-spacing:-16.035908pt;}
.wsd9{word-spacing:-15.717103pt;}
.ws7d{word-spacing:-15.646966pt;}
.wsbc{word-spacing:-15.525820pt;}
.ws85{word-spacing:-15.462059pt;}
.ws80{word-spacing:-15.334537pt;}
.wsaa{word-spacing:-15.073116pt;}
.ws63{word-spacing:-15.009355pt;}
.ws15{word-spacing:-14.951970pt;}
.ws73{word-spacing:-14.888209pt;}
.ws22{word-spacing:-14.696926pt;}
.wsb1{word-spacing:-14.633165pt;}
.wsa3{word-spacing:-14.626789pt;}
.ws53{word-spacing:-14.292466pt;}
.wsd6{word-spacing:-14.186837pt;}
.ws20{word-spacing:-14.180461pt;}
.ws1c{word-spacing:-14.070753pt;}
.ws8a{word-spacing:-14.059315pt;}
.ws66{word-spacing:-13.994240pt;}
.wsa6{word-spacing:-13.931793pt;}
.ws3b{word-spacing:-13.868032pt;}
.ws4f{word-spacing:-13.670373pt;}
.ws7c{word-spacing:-13.612988pt;}
.wsb0{word-spacing:-13.510970pt;}
.wsb6{word-spacing:-13.421705pt;}
.wsa7{word-spacing:-13.166660pt;}
.ws11{word-spacing:-13.044375pt;}
.ws51{word-spacing:-12.847855pt;}
.ws41{word-spacing:-12.529050pt;}
.ws54{word-spacing:-12.469681pt;}
.ws42{word-spacing:-12.465289pt;}
.ws57{word-spacing:-12.393414pt;}
.wsb7{word-spacing:-12.299510pt;}
.ws21{word-spacing:-12.274005pt;}
.ws1{word-spacing:-12.157926pt;}
.ws75{word-spacing:-12.146483pt;}
.ws31{word-spacing:-11.948824pt;}
.ws50{word-spacing:-11.891439pt;}
.wsc{word-spacing:-11.822555pt;}
.ws23{word-spacing:-11.821302pt;}
.ws4{word-spacing:-11.589828pt;}
.ws28{word-spacing:-11.502496pt;}
.ws3{word-spacing:-11.357100pt;}
.ws16{word-spacing:-11.317589pt;}
.ws35{word-spacing:-11.119930pt;}
.ws1a{word-spacing:-11.062545pt;}
.wsb9{word-spacing:-10.935023pt;}
.ws46{word-spacing:-10.673603pt;}
.ws1b{word-spacing:-10.424934pt;}
.ws2a{word-spacing:-10.361173pt;}
.ws1d{word-spacing:-10.297412pt;}
.ws96{word-spacing:-10.099753pt;}
.ws7{word-spacing:-10.077099pt;}
.wsb8{word-spacing:-10.042368pt;}
.wsba{word-spacing:-10.004111pt;}
.ws29{word-spacing:-9.978607pt;}
.ws5{word-spacing:-9.786190pt;}
.wsa9{word-spacing:-9.621545pt;}
.ws2b{word-spacing:-9.557784pt;}
.wsad{word-spacing:-9.532279pt;}
.wsa1{word-spacing:-9.525903pt;}
.ws24{word-spacing:-9.494023pt;}
.ws4a{word-spacing:-9.398381pt;}
.ws98{word-spacing:-9.340996pt;}
.wsa5{word-spacing:-9.022191pt;}
.ws4d{word-spacing:-8.830908pt;}
.ws95{word-spacing:-8.767147pt;}
.ws6{word-spacing:-8.738916pt;}
.ws9d{word-spacing:-8.639625pt;}
.ws13{word-spacing:-8.622553pt;}
.ws9f{word-spacing:-8.575863pt;}
.ws2c{word-spacing:-8.569487pt;}
.ws4b{word-spacing:-8.129536pt;}
.ws32{word-spacing:-8.123160pt;}
.wsa8{word-spacing:-8.002014pt;}
.ws25{word-spacing:-7.874492pt;}
.ws12{word-spacing:-7.808007pt;}
.ws69{word-spacing:-7.746970pt;}
.ws3d{word-spacing:-7.740593pt;}
.ws94{word-spacing:-7.683209pt;}
.ws8b{word-spacing:-7.619447pt;}
.ws9a{word-spacing:-7.555686pt;}
.wsb{word-spacing:-7.517097pt;}
.wsc5{word-spacing:-7.460045pt;}
.ws87{word-spacing:-7.236881pt;}
.ws74{word-spacing:-7.045598pt;}
.wsbd{word-spacing:-6.981837pt;}
.wsc3{word-spacing:-6.758673pt;}
.ws40{word-spacing:-6.726793pt;}
.wsd4{word-spacing:-6.535509pt;}
.wsbe{word-spacing:-6.369731pt;}
.ws47{word-spacing:-5.961660pt;}
.ws90{word-spacing:-5.834138pt;}
.wsfe{word-spacing:-5.632190pt;}
.ws26{word-spacing:-5.579093pt;}
.wsa2{word-spacing:-5.572717pt;}
.ws115{word-spacing:-5.419654pt;}
.wsa4{word-spacing:-5.349553pt;}
.ws19{word-spacing:-5.324049pt;}
.wsae{word-spacing:-5.260288pt;}
.ws10{word-spacing:-5.189823pt;}
.ws27{word-spacing:-5.158270pt;}
.ws120{word-spacing:-5.153985pt;}
.wsaf{word-spacing:-5.069005pt;}
.ws89{word-spacing:-5.030748pt;}
.ws129{word-spacing:-4.994583pt;}
.ws117{word-spacing:-4.941450pt;}
.wsa0{word-spacing:-4.877722pt;}
.ws110{word-spacing:-4.835182pt;}
.ws5f{word-spacing:-4.686438pt;}
.ws10f{word-spacing:-4.675780pt;}
.ws8c{word-spacing:-4.622677pt;}
.ws83{word-spacing:-4.558916pt;}
.wsdf{word-spacing:-4.516379pt;}
.ws8{word-spacing:-4.433458pt;}
.ws3a{word-spacing:-4.431394pt;}
.wsfd{word-spacing:-4.250709pt;}
.ws18{word-spacing:-4.048828pt;}
.wsab{word-spacing:-3.921306pt;}
.ws9{word-spacing:-3.909821pt;}
.wsac{word-spacing:-3.819288pt;}
.ws5b{word-spacing:-3.813358pt;}
.ws79{word-spacing:-3.602500pt;}
.ws37{word-spacing:-3.532363pt;}
.wsfc{word-spacing:-3.400567pt;}
.wsb3{word-spacing:-3.309199pt;}
.ws61{word-spacing:-3.188053pt;}
.wsbb{word-spacing:-3.156173pt;}
.wsc2{word-spacing:-3.124292pt;}
.ws39{word-spacing:-3.028651pt;}
.wsd0{word-spacing:-2.773606pt;}
.wsa{word-spacing:-2.571639pt;}
.ws88{word-spacing:-2.289022pt;}
.ws2d{word-spacing:-2.129620pt;}
.ws6a{word-spacing:-1.753429pt;}
.wsd8{word-spacing:-1.689668pt;}
.ws4e{word-spacing:-1.625907pt;}
.ws64{word-spacing:-1.498385pt;}
.ws68{word-spacing:-1.173204pt;}
.ws67{word-spacing:-0.988297pt;}
.ws43{word-spacing:-0.981920pt;}
.ws48{word-spacing:-0.924535pt;}
.ws45{word-spacing:-0.797013pt;}
.ws65{word-spacing:-0.726876pt;}
.ws82{word-spacing:-0.669491pt;}
.ws3f{word-spacing:-0.663115pt;}
.wsd{word-spacing:-0.418909pt;}
.wsf{word-spacing:-0.360728pt;}
.ws4c{word-spacing:-0.312429pt;}
.ws97{word-spacing:-0.159403pt;}
.wsb2{word-spacing:-0.121146pt;}
.ws49{word-spacing:-0.095642pt;}
.ws2{word-spacing:-0.076513pt;}
.wsbf{word-spacing:-0.063761pt;}
.wse{word-spacing:-0.058182pt;}
.wsdb{word-spacing:-0.053134pt;}
.ws56{word-spacing:-0.050845pt;}
.ws78{word-spacing:-0.042507pt;}
.ws1f{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.031881pt;}
.ws60{word-spacing:0.318805pt;}
.ws33{word-spacing:0.382566pt;}
.ws59{word-spacing:0.457603pt;}
.wsc6{word-spacing:1.338982pt;}
.ws76{word-spacing:1.721549pt;}
.wsc1{word-spacing:1.753429pt;}
.wsb4{word-spacing:1.791686pt;}
.wscd{word-spacing:2.677965pt;}
.wscb{word-spacing:2.741726pt;}
.ws11b{word-spacing:2.762961pt;}
.ws9e{word-spacing:3.443098pt;}
.wsd1{word-spacing:4.686438pt;}
.ws2e{word-spacing:5.419691pt;}
.ws38{word-spacing:6.669408pt;}
.ws3e{word-spacing:6.694912pt;}
.wsf5{word-spacing:7.332474pt;}
.wsea{word-spacing:7.385607pt;}
.ws128{word-spacing:7.491875pt;}
.ws111{word-spacing:7.598143pt;}
.wsf7{word-spacing:7.651277pt;}
.ws10d{word-spacing:7.704411pt;}
.wsf0{word-spacing:7.757545pt;}
.wsf3{word-spacing:7.810678pt;}
.wsf6{word-spacing:7.863812pt;}
.wsf4{word-spacing:7.916946pt;}
.ws12c{word-spacing:7.970080pt;}
.wsfb{word-spacing:8.076348pt;}
.ws11a{word-spacing:8.288883pt;}
.wsf1{word-spacing:8.607686pt;}
.wse2{word-spacing:10.148569pt;}
.ws44{word-spacing:11.005160pt;}
.wscf{word-spacing:11.094426pt;}
.wscc{word-spacing:12.114603pt;}
.ws13b{word-spacing:12.167655pt;}
.wsd7{word-spacing:15.175134pt;}
.wsd5{word-spacing:16.131550pt;}
.wsce{word-spacing:16.450355pt;}
.ws1e{word-spacing:17.640444pt;}
.ws92{word-spacing:17.945111pt;}
.ws8d{word-spacing:20.326846pt;}
.wsc0{word-spacing:20.722347pt;}
.wsb5{word-spacing:20.786108pt;}
.ws77{word-spacing:21.583361pt;}
.ws91{word-spacing:22.768915pt;}
.ws131{word-spacing:28.532886pt;}
.ws2f{word-spacing:28.699847pt;}
.ws121{word-spacing:28.798556pt;}
.ws10b{word-spacing:29.223627pt;}
.wse5{word-spacing:29.298014pt;}
.ws124{word-spacing:29.383028pt;}
.ws127{word-spacing:29.595564pt;}
.ws125{word-spacing:29.754965pt;}
.ws138{word-spacing:30.180036pt;}
.ws102{word-spacing:30.605107pt;}
.ws133{word-spacing:30.658241pt;}
.wsf9{word-spacing:30.732628pt;}
.wse3{word-spacing:30.764509pt;}
.ws101{word-spacing:31.030178pt;}
.ws11f{word-spacing:31.136446pt;}
.ws114{word-spacing:31.242714pt;}
.wsef{word-spacing:31.689038pt;}
.wse7{word-spacing:31.742172pt;}
.ws12b{word-spacing:31.986588pt;}
.wsdc{word-spacing:32.358525pt;}
.ws106{word-spacing:32.624194pt;}
.wsda{word-spacing:33.102399pt;}
.wsde{word-spacing:33.261801pt;}
.ws109{word-spacing:33.314934pt;}
.ws13a{word-spacing:33.368068pt;}
.wse1{word-spacing:33.421202pt;}
.wse0{word-spacing:33.740005pt;}
.wsdd{word-spacing:33.899407pt;}
.ws126{word-spacing:34.218210pt;}
.ws11d{word-spacing:38.043849pt;}
.ws105{word-spacing:38.096982pt;}
.ws0{word-spacing:38.900600pt;}
.wse8{word-spacing:38.947124pt;}
.wsee{word-spacing:39.000258pt;}
.wsf2{word-spacing:39.531597pt;}
.ws103{word-spacing:39.903534pt;}
.ws10e{word-spacing:39.956668pt;}
.wsec{word-spacing:40.116069pt;}
.wsf8{word-spacing:40.381739pt;}
.ws12d{word-spacing:40.434873pt;}
.ws116{word-spacing:40.647408pt;}
.wse6{word-spacing:40.859943pt;}
.ws122{word-spacing:41.072479pt;}
.wse4{word-spacing:41.285014pt;}
.ws10c{word-spacing:41.338148pt;}
.ws108{word-spacing:41.922621pt;}
.ws139{word-spacing:41.975755pt;}
.ws135{word-spacing:42.028889pt;}
.ws107{word-spacing:42.188290pt;}
.ws113{word-spacing:42.241424pt;}
.ws130{word-spacing:42.825897pt;}
.wsfa{word-spacing:42.932164pt;}
.ws71{word-spacing:44.798525pt;}
.ws14{word-spacing:49.534444pt;}
.wsd2{word-spacing:117.766690pt;}
.ws5a{word-spacing:144.241934pt;}
.ws11e{word-spacing:162.238948pt;}
.wse9{word-spacing:163.195358pt;}
.wsed{word-spacing:163.726697pt;}
.wseb{word-spacing:164.098634pt;}
.ws118{word-spacing:164.842508pt;}
.ws100{word-spacing:165.161311pt;}
.wsff{word-spacing:165.267579pt;}
.ws10a{word-spacing:165.373846pt;}
.ws104{word-spacing:165.426980pt;}
.ws112{word-spacing:165.533248pt;}
.ws123{word-spacing:165.639516pt;}
.ws6b{word-spacing:189.784815pt;}
.ws6d{word-spacing:190.358665pt;}
.ws6f{word-spacing:190.422426pt;}
.ws6c{word-spacing:252.206899pt;}
.ws12a{word-spacing:298.421049pt;}
.ws119{word-spacing:299.271190pt;}
.ws11c{word-spacing:299.377458pt;}
.wsd3{word-spacing:302.801306pt;}
.wsca{word-spacing:323.672596pt;}
.ws70{word-spacing:338.800804pt;}
.wsc4{word-spacing:377.369873pt;}
.ws12f{word-spacing:430.936912pt;}
.ws134{word-spacing:431.840188pt;}
.ws12e{word-spacing:432.584062pt;}
.ws132{word-spacing:433.009133pt;}
.ws137{word-spacing:566.640807pt;}
.ws136{word-spacing:566.959611pt;}
.ws93{word-spacing:732.359612pt;}
._3f{margin-left:-31.485220pt;}
._40{margin-left:-24.917844pt;}
._3c{margin-left:-10.421060pt;}
._6f{margin-left:-8.263392pt;}
._16{margin-left:-6.962689pt;}
._14{margin-left:-5.929779pt;}
._b{margin-left:-4.829095pt;}
._13{margin-left:-3.589715pt;}
._1{margin-left:-1.989340pt;}
._6{margin-left:-1.083143pt;}
._f{width:1.112630pt;}
._0{width:2.065853pt;}
._2{width:3.658283pt;}
._3d{width:4.791650pt;}
._57{width:6.004707pt;}
._72{width:6.940510pt;}
._1e{width:7.902523pt;}
._73{width:9.605294pt;}
._3e{width:10.992464pt;}
._75{width:12.238417pt;}
._4d{width:14.154957pt;}
._39{width:15.120943pt;}
._1a{width:16.284565pt;}
._29{width:17.725577pt;}
._38{width:19.102004pt;}
._4{width:20.112595pt;}
._41{width:21.296196pt;}
._10{width:22.305967pt;}
._9{width:24.152650pt;}
._3{width:25.600021pt;}
._7{width:27.193244pt;}
._17{width:28.370487pt;}
._e{width:29.742090pt;}
._c{width:30.643513pt;}
._19{width:32.339607pt;}
._18{width:33.254585pt;}
._d{width:34.425334pt;}
._15{width:35.685452pt;}
._76{width:37.481859pt;}
._20{width:38.382412pt;}
._71{width:39.826356pt;}
._5{width:40.756001pt;}
._70{width:41.943823pt;}
._11{width:43.063418pt;}
._74{width:44.152092pt;}
._3b{width:45.158769pt;}
._8{width:46.836403pt;}
._5d{width:50.932452pt;}
._a{width:53.956771pt;}
._3a{width:57.066155pt;}
._2a{width:62.358323pt;}
._2d{width:63.761067pt;}
._54{width:66.568831pt;}
._2b{width:73.070182pt;}
._43{width:74.982337pt;}
._1b{width:79.126019pt;}
._12{width:84.164373pt;}
._5f{width:91.021205pt;}
._25{width:97.437612pt;}
._42{width:99.068889pt;}
._46{width:102.028254pt;}
._2c{width:110.306645pt;}
._28{width:112.607150pt;}
._47{width:115.715872pt;}
._5b{width:117.598706pt;}
._59{width:120.411063pt;}
._45{width:124.409916pt;}
._1f{width:126.487774pt;}
._68{width:130.280783pt;}
._69{width:134.505469pt;}
._4b{width:137.466649pt;}
._22{width:138.926948pt;}
._48{width:141.885297pt;}
._26{width:144.241934pt;}
._63{width:147.075447pt;}
._58{width:150.805464pt;}
._55{width:152.284727pt;}
._4c{width:156.965294pt;}
._5a{width:158.990513pt;}
._5c{width:171.876614pt;}
._24{width:176.197477pt;}
._1d{width:181.574710pt;}
._49{width:183.149571pt;}
._5e{width:200.488093pt;}
._21{width:205.004315pt;}
._66{width:208.700518pt;}
._50{width:210.033125pt;}
._60{width:221.172183pt;}
._4e{width:228.593971pt;}
._61{width:231.176294pt;}
._1c{width:242.573659pt;}
._51{width:252.242945pt;}
._52{width:255.527957pt;}
._23{width:258.100783pt;}
._53{width:259.922165pt;}
._4a{width:266.478920pt;}
._6c{width:274.385292pt;}
._27{width:276.764345pt;}
._6e{width:287.902638pt;}
._2e{width:307.902191pt;}
._4f{width:315.026596pt;}
._6d{width:316.012538pt;}
._30{width:331.940113pt;}
._37{width:334.681839pt;}
._2f{width:339.081353pt;}
._65{width:343.776455pt;}
._62{width:345.612780pt;}
._56{width:357.676362pt;}
._31{width:363.119275pt;}
._67{width:385.890645pt;}
._33{width:394.362197pt;}
._64{width:397.884096pt;}
._6a{width:411.124921pt;}
._32{width:442.884369pt;}
._36{width:446.199945pt;}
._6b{width:464.790966pt;}
._34{width:474.127292pt;}
._35{width:505.306453pt;}
._44{width:612.324386pt;}
.fsa{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs9{font-size:50.844562pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs6{font-size:63.761067pt;}
.fs8{font-size:76.267162pt;}
.fs1{font-size:76.513067pt;}
.fs5{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:54.637333pt;}
.y49{bottom:94.488000pt;}
.y22{bottom:99.308000pt;}
.y169{bottom:103.498667pt;}
.y130{bottom:110.428000pt;}
.y48{bottom:113.749333pt;}
.y168{bottom:119.438667pt;}
.y21{bottom:121.012000pt;}
.yfc{bottom:125.598667pt;}
.y12f{bottom:126.368000pt;}
.y88{bottom:126.805333pt;}
.y47{bottom:133.010667pt;}
.y167{bottom:135.378667pt;}
.y20{bottom:140.273333pt;}
.y12e{bottom:142.309333pt;}
.y68{bottom:143.789333pt;}
.yfb{bottom:144.860000pt;}
.y87{bottom:146.066667pt;}
.y166{bottom:151.318667pt;}
.y12d{bottom:158.249333pt;}
.yfa{bottom:164.652000pt;}
.y46{bottom:165.158667pt;}
.ya7{bottom:165.894667pt;}
.y165{bottom:167.260000pt;}
.y1f{bottom:169.826667pt;}
.y67{bottom:173.829333pt;}
.y12c{bottom:174.189333pt;}
.y86{bottom:175.620000pt;}
.y164{bottom:183.200000pt;}
.yf9{bottom:183.913333pt;}
.y45{bottom:184.420000pt;}
.ya6{bottom:185.156000pt;}
.y12b{bottom:190.129333pt;}
.y66{bottom:198.861333pt;}
.y163{bottom:199.140000pt;}
.y44{bottom:203.680000pt;}
.yf8{bottom:203.705333pt;}
.ya5{bottom:204.417333pt;}
.y12a{bottom:206.069333pt;}
.y1e{bottom:209.518667pt;}
.y162{bottom:215.080000pt;}
.y65{bottom:218.122667pt;}
.y85{bottom:221.830667pt;}
.y129{bottom:222.009333pt;}
.y43{bottom:222.941333pt;}
.yf7{bottom:223.498667pt;}
.y161{bottom:231.020000pt;}
.y128{bottom:237.950667pt;}
.ya4{bottom:239.618667pt;}
.y42{bottom:242.202667pt;}
.yf6{bottom:242.760000pt;}
.y160{bottom:246.960000pt;}
.y64{bottom:247.676000pt;}
.y127{bottom:253.890667pt;}
.y84{bottom:257.032000pt;}
.y1d{bottom:261.684000pt;}
.yf5{bottom:262.552000pt;}
.y15f{bottom:262.901333pt;}
.y126{bottom:269.830667pt;}
.y16a{bottom:271.534667pt;}
.y41{bottom:274.350667pt;}
.ya3{bottom:274.820000pt;}
.y15e{bottom:278.841333pt;}
.y1c{bottom:280.945333pt;}
.yf4{bottom:282.344000pt;}
.y125{bottom:285.770667pt;}
.y63{bottom:287.942667pt;}
.y83{bottom:292.233333pt;}
.y40{bottom:293.612000pt;}
.ya2{bottom:294.081333pt;}
.y15d{bottom:294.781333pt;}
.y1b{bottom:300.206667pt;}
.y124{bottom:301.710667pt;}
.yf3{bottom:302.137333pt;}
.y15c{bottom:310.721333pt;}
.y62{bottom:311.341333pt;}
.y3f{bottom:312.873333pt;}
.ya1{bottom:313.342667pt;}
.y123{bottom:317.650667pt;}
.y1a{bottom:319.466667pt;}
.y82{bottom:320.128000pt;}
.yf2{bottom:321.929333pt;}
.y15b{bottom:326.661333pt;}
.y3e{bottom:332.134667pt;}
.ya0{bottom:332.604000pt;}
.y122{bottom:333.592000pt;}
.y19{bottom:338.728000pt;}
.y61{bottom:341.382667pt;}
.yf1{bottom:341.721333pt;}
.y15a{bottom:342.601333pt;}
.y121{bottom:349.532000pt;}
.y3d{bottom:351.394667pt;}
.y9f{bottom:351.864000pt;}
.y18{bottom:357.989333pt;}
.y159{bottom:358.542667pt;}
.y81{bottom:358.650667pt;}
.yf0{bottom:360.982667pt;}
.yd3{bottom:364.014667pt;}
.y120{bottom:365.472000pt;}
.y9e{bottom:371.125333pt;}
.y60{bottom:373.208000pt;}
.y158{bottom:374.482667pt;}
.y80{bottom:377.912000pt;}
.yef{bottom:380.774667pt;}
.y11f{bottom:381.412000pt;}
.yd2{bottom:383.276000pt;}
.y3c{bottom:383.542667pt;}
.y9d{bottom:390.386667pt;}
.y157{bottom:390.422667pt;}
.y17{bottom:393.032000pt;}
.y7f{bottom:397.172000pt;}
.y11e{bottom:397.352000pt;}
.y5f{bottom:399.644000pt;}
.yee{bottom:400.568000pt;}
.y3b{bottom:402.804000pt;}
.y156{bottom:406.362667pt;}
.y9c{bottom:409.648000pt;}
.yd1{bottom:411.834667pt;}
.y11d{bottom:413.292000pt;}
.yed{bottom:420.360000pt;}
.y3a{bottom:422.065333pt;}
.y155{bottom:422.302667pt;}
.y7e{bottom:426.725333pt;}
.y9b{bottom:428.909333pt;}
.y11c{bottom:429.233333pt;}
.y5e{bottom:429.684000pt;}
.yd0{bottom:431.096000pt;}
.y154{bottom:438.242667pt;}
.yec{bottom:439.621333pt;}
.y11b{bottom:445.173333pt;}
.y16{bottom:445.197333pt;}
.ycf{bottom:450.357333pt;}
.y39{bottom:453.420000pt;}
.y153{bottom:454.184000pt;}
.y9a{bottom:458.462667pt;}
.yeb{bottom:459.413333pt;}
.y5d{bottom:459.725333pt;}
.y11a{bottom:461.113333pt;}
.y15{bottom:463.262667pt;}
.y7d{bottom:468.286667pt;}
.y152{bottom:470.124000pt;}
.y38{bottom:472.681333pt;}
.y119{bottom:477.053333pt;}
.yce{bottom:478.917333pt;}
.yea{bottom:479.205333pt;}
.y14{bottom:481.328000pt;}
.y5c{bottom:484.756000pt;}
.y151{bottom:486.064000pt;}
.y7c{bottom:487.548000pt;}
.y118{bottom:492.993333pt;}
.ycd{bottom:498.177333pt;}
.ye9{bottom:498.466667pt;}
.y13{bottom:499.393333pt;}
.y150{bottom:502.004000pt;}
.y37{bottom:502.234667pt;}
.y5b{bottom:504.017333pt;}
.y99{bottom:504.672000pt;}
.y7b{bottom:506.809333pt;}
.y117{bottom:508.934667pt;}
.ycc{bottom:517.438667pt;}
.y12{bottom:517.460000pt;}
.y14f{bottom:517.944000pt;}
.ye8{bottom:518.260000pt;}
.y98{bottom:523.933333pt;}
.y116{bottom:524.874667pt;}
.y5a{bottom:533.570667pt;}
.y14e{bottom:533.884000pt;}
.y11{bottom:535.525333pt;}
.ye7{bottom:538.052000pt;}
.y115{bottom:540.814667pt;}
.y97{bottom:543.194667pt;}
.ycb{bottom:545.998667pt;}
.y36{bottom:548.240000pt;}
.y14d{bottom:549.825333pt;}
.y7a{bottom:550.977333pt;}
.y10{bottom:553.590667pt;}
.y114{bottom:556.754667pt;}
.ye6{bottom:557.313333pt;}
.yca{bottom:561.994667pt;}
.y96{bottom:562.456000pt;}
.y59{bottom:563.124000pt;}
.yc9{bottom:565.260000pt;}
.y14c{bottom:565.765333pt;}
.y35{bottom:567.500000pt;}
.y79{bottom:570.769333pt;}
.yf{bottom:571.656000pt;}
.y113{bottom:572.694667pt;}
.ye5{bottom:577.105333pt;}
.y14b{bottom:581.705333pt;}
.y95{bottom:581.717333pt;}
.yc8{bottom:584.521333pt;}
.y34{bottom:586.761333pt;}
.y112{bottom:588.634667pt;}
.ye{bottom:589.721333pt;}
.y78{bottom:590.030667pt;}
.ye4{bottom:596.897333pt;}
.y14a{bottom:597.645333pt;}
.y94{bottom:600.977333pt;}
.y58{bottom:602.816000pt;}
.y111{bottom:604.576000pt;}
.yd{bottom:607.788000pt;}
.y77{bottom:609.290667pt;}
.yc7{bottom:613.080000pt;}
.y149{bottom:613.585333pt;}
.ye3{bottom:616.158667pt;}
.y33{bottom:618.909333pt;}
.yb8{bottom:619.112000pt;}
.y110{bottom:620.516000pt;}
.yc{bottom:625.853333pt;}
.y76{bottom:628.552000pt;}
.y148{bottom:629.525333pt;}
.y93{bottom:630.530667pt;}
.yc6{bottom:632.341333pt;}
.ye2{bottom:635.950667pt;}
.y10f{bottom:636.456000pt;}
.y32{bottom:638.170667pt;}
.yb7{bottom:638.373333pt;}
.yb{bottom:643.918667pt;}
.y147{bottom:645.466667pt;}
.y75{bottom:647.813333pt;}
.y10e{bottom:652.396000pt;}
.ye1{bottom:655.744000pt;}
.yb6{bottom:657.634667pt;}
.yc5{bottom:660.901333pt;}
.y146{bottom:661.406667pt;}
.ya{bottom:661.984000pt;}
.y57{bottom:662.307615pt;}
.y74{bottom:667.074667pt;}
.y10d{bottom:668.336000pt;}
.y92{bottom:670.222667pt;}
.y31{bottom:670.318667pt;}
.ye0{bottom:675.536000pt;}
.yb5{bottom:676.894667pt;}
.y145{bottom:677.346667pt;}
.y9{bottom:680.049333pt;}
.yc4{bottom:680.162667pt;}
.y10c{bottom:684.276000pt;}
.y56{bottom:685.983212pt;}
.y73{bottom:686.336000pt;}
.y144{bottom:693.286667pt;}
.ydf{bottom:694.797333pt;}
.yb4{bottom:696.156000pt;}
.y8{bottom:698.760000pt;}
.yc3{bottom:699.422667pt;}
.y10b{bottom:700.217333pt;}
.y30{bottom:702.466667pt;}
.y72{bottom:705.597333pt;}
.y143{bottom:709.226667pt;}
.y55{bottom:709.657215pt;}
.yde{bottom:714.589333pt;}
.yb3{bottom:715.417333pt;}
.y10a{bottom:716.157333pt;}
.y2f{bottom:721.728000pt;}
.y91{bottom:723.461333pt;}
.y71{bottom:724.857333pt;}
.y142{bottom:725.166667pt;}
.yc2{bottom:727.982667pt;}
.y109{bottom:732.097333pt;}
.y54{bottom:733.331218pt;}
.ydd{bottom:734.382667pt;}
.yb2{bottom:734.678667pt;}
.y141{bottom:741.108000pt;}
.y90{bottom:742.722667pt;}
.y70{bottom:744.118667pt;}
.yc1{bottom:747.244000pt;}
.y108{bottom:748.037333pt;}
.ydc{bottom:754.174667pt;}
.y2e{bottom:756.670667pt;}
.y53{bottom:757.006816pt;}
.y140{bottom:757.048000pt;}
.y7{bottom:758.138667pt;}
.y6f{bottom:763.380000pt;}
.y107{bottom:763.977333pt;}
.yc0{bottom:766.505333pt;}
.yb1{bottom:769.721333pt;}
.y13f{bottom:772.988000pt;}
.ydb{bottom:773.436000pt;}
.y8f{bottom:775.268000pt;}
.y106{bottom:779.917333pt;}
.y52{bottom:780.680819pt;}
.y6e{bottom:783.172000pt;}
.ybf{bottom:785.766667pt;}
.y2d{bottom:786.224000pt;}
.y13e{bottom:788.928000pt;}
.yda{bottom:793.228000pt;}
.y8e{bottom:794.529333pt;}
.y6{bottom:795.417333pt;}
.y105{bottom:795.858667pt;}
.y51{bottom:804.354822pt;}
.y13d{bottom:804.868000pt;}
.y104{bottom:811.798667pt;}
.yd9{bottom:813.020000pt;}
.ybe{bottom:814.325333pt;}
.y6d{bottom:816.248000pt;}
.y5{bottom:819.328000pt;}
.y13c{bottom:820.808000pt;}
.yb0{bottom:822.960000pt;}
.y8d{bottom:824.082667pt;}
.y103{bottom:827.738667pt;}
.y50{bottom:828.030419pt;}
.y2c{bottom:832.229333pt;}
.yd8{bottom:832.813333pt;}
.ybd{bottom:833.586667pt;}
.y13b{bottom:836.749333pt;}
.yaf{bottom:842.221333pt;}
.y4{bottom:843.237333pt;}
.y102{bottom:843.678667pt;}
.y2b{bottom:851.489333pt;}
.y4f{bottom:851.704422pt;}
.yd7{bottom:852.605333pt;}
.y13a{bottom:852.689333pt;}
.y6c{bottom:853.640000pt;}
.yae{bottom:861.482667pt;}
.ybc{bottom:862.146667pt;}
.y8c{bottom:865.642667pt;}
.y101{bottom:865.858667pt;}
.y139{bottom:868.629333pt;}
.yd6{bottom:872.397333pt;}
.y6b{bottom:872.901333pt;}
.y4e{bottom:875.378425pt;}
.yad{bottom:880.742667pt;}
.y2a{bottom:883.637333pt;}
.y138{bottom:884.569333pt;}
.y100{bottom:885.118667pt;}
.y3{bottom:890.554667pt;}
.ybb{bottom:890.705333pt;}
.yd5{bottom:892.190667pt;}
.y8b{bottom:898.188000pt;}
.y4d{bottom:899.054023pt;}
.yac{bottom:900.004000pt;}
.y137{bottom:900.509333pt;}
.y6a{bottom:902.454667pt;}
.y29{bottom:902.898667pt;}
.yba{bottom:909.966667pt;}
.y2{bottom:914.465333pt;}
.y136{bottom:916.449333pt;}
.y8a{bottom:917.449333pt;}
.yab{bottom:919.265333pt;}
.yff{bottom:920.161333pt;}
.y28{bottom:922.160000pt;}
.yd4{bottom:925.266667pt;}
.yb9{bottom:929.228000pt;}
.y135{bottom:932.390667pt;}
.y4c{bottom:934.877333pt;}
.yaa{bottom:938.526667pt;}
.y27{bottom:941.421333pt;}
.y69{bottom:944.016000pt;}
.y1{bottom:947.673333pt;}
.y134{bottom:948.330667pt;}
.y89{bottom:949.993333pt;}
.ya9{bottom:957.788000pt;}
.y4b{bottom:963.277333pt;}
.y133{bottom:964.270667pt;}
.y26{bottom:973.569333pt;}
.ya8{bottom:977.049333pt;}
.yfe{bottom:979.348000pt;}
.y132{bottom:980.210667pt;}
.y4a{bottom:982.537333pt;}
.y25{bottom:992.830667pt;}
.y131{bottom:996.150667pt;}
.yfd{bottom:998.608000pt;}
.y24{bottom:1012.090667pt;}
.hb{height:20.623534pt;}
.h15{height:21.583121pt;}
.h16{height:36.981171pt;}
.h6{height:43.694582pt;}
.h5{height:47.285075pt;}
.hf{height:47.820800pt;}
.h9{height:47.884561pt;}
.hc{height:47.948322pt;}
.h7{height:49.849534pt;}
.h11{height:51.870867pt;}
.h10{height:51.876201pt;}
.h3{height:53.865199pt;}
.h13{height:55.060201pt;}
.he{height:57.276639pt;}
.hd{height:57.352906pt;}
.ha{height:57.461313pt;}
.h14{height:60.945894pt;}
.h12{height:62.528555pt;}
.h4{height:67.674201pt;}
.h8{height:69.045231pt;}
.h2{height:77.360400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:73.238667pt;}
.x1e{left:78.108000pt;}
.x1d{left:82.977333pt;}
.xb{left:94.488000pt;}
.x18{left:102.290667pt;}
.x11{left:104.656785pt;}
.xc{left:112.434667pt;}
.xf{left:113.566667pt;}
.xe{left:117.901333pt;}
.x20{left:121.892000pt;}
.x19{left:126.565333pt;}
.x1f{left:130.352000pt;}
.xa{left:133.508000pt;}
.x13{left:151.077333pt;}
.x9{left:155.202667pt;}
.x2{left:159.897333pt;}
.x10{left:163.721333pt;}
.x14{left:174.212000pt;}
.x1{left:182.521333pt;}
.x3{left:216.265333pt;}
.x1a{left:226.166667pt;}
.x12{left:233.702667pt;}
.x23{left:248.204000pt;}
.x1c{left:249.318667pt;}
.x15{left:251.414667pt;}
.x5{left:260.937333pt;}
.x16{left:273.048000pt;}
.x6{left:279.009333pt;}
.x17{left:302.585333pt;}
.x7{left:321.620000pt;}
.x4{left:336.657333pt;}
.x8{left:365.088000pt;}
.x21{left:389.048000pt;}
.xd{left:392.949333pt;}
.x1b{left:492.561333pt;}
}




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