
    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_48524c8e6687ff32feb7f068.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_dc26c4cedb9757c4c2a12454.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933000;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_8ad1bd05dc77663fcb358877.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_b94cc2682f57a0b2222fb751.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_edac7ce9614d8f5315dc578b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.169000;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_5c768e9335a391f90a06cbd5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.930000;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_7c795673bb7902251f7292c0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906000;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_fa35a35ad010b6eb16f32c8b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.917000;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_0519fa3faf75b9195fa7a8a2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.899000;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_2010b33be2d8a7a659e97c2a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.730581;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_68a98452100ac04ed69afd67.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5bcf28265fd1cf89feb7c7c7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2b3596c6b791733372d4ecfa.woff2')format("woff");}.fff{font-family:fff;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1bac04e20913af655d139716.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_66f092352148049ed5474824.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.704000;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_f36699d2a90e6afd57461ca3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_e4a9f49144e22b79af63da1e.woff2')format("woff");}.ff13{font-family:ff13;line-height:2.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_1619530f6f2fa6172e7eff89.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_00cef3047082f1b89031791c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.906000;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_681aaf1b6ef343a4d566d36f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.930000;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);}
.v7{vertical-align:-21.089520px;}
.v3{vertical-align:-17.334000px;}
.v5{vertical-align:-8.902080px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.911600px;}
.v8{vertical-align:9.085920px;}
.v4{vertical-align:11.955120px;}
.vc{vertical-align:17.405700px;}
.v1{vertical-align:21.708000px;}
.va{vertical-align:41.902740px;}
.v6{vertical-align:44.831700px;}
.v9{vertical-align:83.924940px;}
.vb{vertical-align:126.365640px;}
.ls17{letter-spacing:-0.023910px;}
.ls16{letter-spacing:-0.017933px;}
.ls37{letter-spacing:-0.014346px;}
.lse{letter-spacing:-0.011955px;}
.ls10{letter-spacing:-0.009564px;}
.lsc{letter-spacing:-0.007771px;}
.lsd{letter-spacing:-0.005978px;}
.lsf{letter-spacing:-0.004782px;}
.ls0{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.000001px;}
.ls68{letter-spacing:0.000008px;}
.ls1d{letter-spacing:0.000017px;}
.ls2e{letter-spacing:0.000041px;}
.ls6{letter-spacing:0.004782px;}
.ls13{letter-spacing:0.005978px;}
.ls1c{letter-spacing:0.006575px;}
.lsa{letter-spacing:0.009564px;}
.ls1a{letter-spacing:0.011955px;}
.ls11{letter-spacing:0.013151px;}
.ls36{letter-spacing:0.017933px;}
.ls19{letter-spacing:0.023910px;}
.ls38{letter-spacing:0.346680px;}
.ls43{letter-spacing:1.135714px;}
.ls4e{letter-spacing:1.135774px;}
.ls47{letter-spacing:1.183534px;}
.ls6a{letter-spacing:1.195508px;}
.ls53{letter-spacing:1.195534px;}
.ls71{letter-spacing:1.195568px;}
.ls55{letter-spacing:1.609645px;}
.ls49{letter-spacing:1.625065px;}
.ls5b{letter-spacing:1.634965px;}
.ls58{letter-spacing:2.331240px;}
.ls78{letter-spacing:2.958466px;}
.ls77{letter-spacing:3.012466px;}
.ls79{letter-spacing:3.220200px;}
.ls35{letter-spacing:3.526757px;}
.ls64{letter-spacing:3.765848px;}
.ls6b{letter-spacing:3.765908px;}
.ls48{letter-spacing:4.303838px;}
.ls3b{letter-spacing:4.465237px;}
.ls32{letter-spacing:4.542960px;}
.ls4a{letter-spacing:4.663200px;}
.ls4f{letter-spacing:4.717200px;}
.ls54{letter-spacing:4.841825px;}
.ls2b{letter-spacing:5.790576px;}
.lsb{letter-spacing:6.001485px;}
.ls46{letter-spacing:7.173090px;}
.ls28{letter-spacing:7.412170px;}
.ls27{letter-spacing:7.471961px;}
.ls3e{letter-spacing:7.770865px;}
.ls39{letter-spacing:8.667480px;}
.ls33{letter-spacing:11.311942px;}
.ls3d{letter-spacing:11.959932px;}
.ls1b{letter-spacing:12.253980px;}
.ls4{letter-spacing:12.373523px;}
.ls2{letter-spacing:12.433343px;}
.ls12{letter-spacing:12.588780px;}
.ls18{letter-spacing:12.654495px;}
.ls34{letter-spacing:13.004093px;}
.ls4d{letter-spacing:13.270152px;}
.ls4c{letter-spacing:13.270230px;}
.ls51{letter-spacing:13.329990px;}
.ls24{letter-spacing:13.867901px;}
.ls60{letter-spacing:14.286368px;}
.ls30{letter-spacing:14.645009px;}
.ls7{letter-spacing:14.943883px;}
.ls14{letter-spacing:14.943900px;}
.ls23{letter-spacing:15.063461px;}
.ls5a{letter-spacing:15.123214px;}
.ls72{letter-spacing:15.673162px;}
.ls2f{letter-spacing:15.721001px;}
.ls75{letter-spacing:15.726960px;}
.ls63{letter-spacing:16.139408px;}
.ls73{letter-spacing:16.139468px;}
.ls29{letter-spacing:16.557809px;}
.ls44{letter-spacing:16.557841px;}
.ls45{letter-spacing:16.617612px;}
.ls2a{letter-spacing:16.617616px;}
.ls21{letter-spacing:16.796921px;}
.ls6f{letter-spacing:16.856708px;}
.ls2d{letter-spacing:17.454461px;}
.ls62{letter-spacing:17.633820px;}
.ls2c{letter-spacing:17.803178px;}
.ls3a{letter-spacing:17.872896px;}
.ls5c{letter-spacing:17.893200px;}
.ls20{letter-spacing:18.649997px;}
.ls1f{letter-spacing:18.650009px;}
.ls61{letter-spacing:18.709748px;}
.ls59{letter-spacing:18.829320px;}
.ls6e{letter-spacing:19.367288px;}
.ls70{letter-spacing:19.486808px;}
.ls5e{letter-spacing:19.785694px;}
.ls57{letter-spacing:20.084614px;}
.ls25{letter-spacing:20.144357px;}
.ls52{letter-spacing:20.443272px;}
.ls66{letter-spacing:20.861700px;}
.ls65{letter-spacing:20.921460px;}
.ls41{letter-spacing:21.339840px;}
.ls40{letter-spacing:21.580200px;}
.ls74{letter-spacing:21.758340px;}
.ls31{letter-spacing:22.038571px;}
.ls1e{letter-spacing:22.236516px;}
.ls6d{letter-spacing:22.415828px;}
.ls69{letter-spacing:22.654920px;}
.ls3c{letter-spacing:23.013600px;}
.ls5f{letter-spacing:23.372225px;}
.ls67{letter-spacing:23.790728px;}
.ls6c{letter-spacing:24.265200px;}
.ls5d{letter-spacing:24.448234px;}
.ls3f{letter-spacing:25.777200px;}
.ls3{letter-spacing:25.977734px;}
.ls1{letter-spacing:26.031734px;}
.ls5{letter-spacing:26.085734px;}
.ls15{letter-spacing:27.616320px;}
.ls8{letter-spacing:28.417669px;}
.ls76{letter-spacing:28.883641px;}
.ls26{letter-spacing:31.501710px;}
.ls22{letter-spacing:31.681092px;}
.ls9{letter-spacing:64.726200px;}
.ls56{letter-spacing:75.496598px;}
.ls50{letter-spacing:94.266098px;}
.ls4b{letter-spacing:100.960958px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws73{word-spacing:-19.905275px;}
.ws151{word-spacing:-15.786736px;}
.ws153{word-spacing:-15.732938px;}
.ws3b{word-spacing:-12.714270px;}
.wsc6{word-spacing:-12.007753px;}
.ws84{word-spacing:-10.000458px;}
.ws88{word-spacing:-9.372720px;}
.wsa9{word-spacing:-4.525013px;}
.ws21{word-spacing:-0.076512px;}
.ws111{word-spacing:-0.065753px;}
.ws27{word-spacing:-0.059776px;}
.ws15{word-spacing:-0.053798px;}
.ws1de{word-spacing:-0.052603px;}
.ws18{word-spacing:-0.047821px;}
.ws1c{word-spacing:-0.043039px;}
.ws39{word-spacing:-0.035865px;}
.ws8{word-spacing:-0.019128px;}
.ws0{word-spacing:0.000000px;}
.ws1ce{word-spacing:6.737922px;}
.ws1e6{word-spacing:6.843128px;}
.ws1cf{word-spacing:6.862256px;}
.ws1db{word-spacing:7.144397px;}
.ws168{word-spacing:7.192239px;}
.ws169{word-spacing:7.823450px;}
.ws205{word-spacing:8.086464px;}
.ws204{word-spacing:8.335131px;}
.wsb0{word-spacing:8.392494px;}
.wsaf{word-spacing:8.404449px;}
.ws90{word-spacing:8.565843px;}
.ws8f{word-spacing:8.625619px;}
.ws15a{word-spacing:8.685395px;}
.ws1eb{word-spacing:8.732053px;}
.ws131{word-spacing:8.900587px;}
.ws1ea{word-spacing:9.057221px;}
.ws186{word-spacing:9.105039px;}
.ws1cd{word-spacing:9.114606px;}
.ws1cc{word-spacing:9.124170px;}
.ws1cb{word-spacing:9.133735px;}
.ws86{word-spacing:9.176773px;}
.ws1ca{word-spacing:9.191119px;}
.ws1d0{word-spacing:9.305889px;}
.ws148{word-spacing:9.444545px;}
.ws16b{word-spacing:9.501953px;}
.ws1da{word-spacing:9.544992px;}
.ws1a8{word-spacing:9.546136px;}
.ws1a9{word-spacing:9.552141px;}
.ws1f8{word-spacing:9.717146px;}
.ws1c6{word-spacing:9.831915px;}
.wse5{word-spacing:9.928727px;}
.ws1c5{word-spacing:9.965813px;}
.ws1b0{word-spacing:9.982525px;}
.ws209{word-spacing:10.037543px;}
.wsbb{word-spacing:10.131964px;}
.ws10f{word-spacing:10.227605px;}
.ws135{word-spacing:10.239560px;}
.wse6{word-spacing:10.251515px;}
.ws9f{word-spacing:10.281403px;}
.ws1e4{word-spacing:10.310121px;}
.ws9e{word-spacing:10.353134px;}
.ws113{word-spacing:10.353135px;}
.ws13a{word-spacing:10.359111px;}
.ws112{word-spacing:10.377045px;}
.ws206{word-spacing:10.420108px;}
.ws1c1{word-spacing:10.439237px;}
.wsf6{word-spacing:10.534878px;}
.ws1ad{word-spacing:10.681900px;}
.ws17c{word-spacing:10.735698px;}
.ws1fd{word-spacing:10.740507px;}
.wsd8{word-spacing:10.777541px;}
.ws17d{word-spacing:10.885137px;}
.ws1d1{word-spacing:10.903097px;}
.ws126{word-spacing:10.950890px;}
.ws128{word-spacing:10.956867px;}
.ws1ff{word-spacing:10.989174px;}
.ws133{word-spacing:11.010666px;}
.wsd7{word-spacing:11.064464px;}
.ws18c{word-spacing:11.130217px;}
.ws141{word-spacing:11.154127px;}
.ws67{word-spacing:11.166082px;}
.ws185{word-spacing:11.172060px;}
.ws9b{word-spacing:11.201947px;}
.ws121{word-spacing:11.213903px;}
.ws11c{word-spacing:11.219880px;}
.ws176{word-spacing:11.267701px;}
.ws1fb{word-spacing:11.280879px;}
.ws1af{word-spacing:11.375297px;}
.ws13f{word-spacing:11.387252px;}
.ws19c{word-spacing:11.488870px;}
.ws13c{word-spacing:11.494848px;}
.ws15e{word-spacing:11.548646px;}
.ws198{word-spacing:11.602444px;}
.ws1f1{word-spacing:11.629970px;}
.ws10d{word-spacing:11.638309px;}
.ws201{word-spacing:11.649099px;}
.ws122{word-spacing:11.698085px;}
.wsa6{word-spacing:11.710040px;}
.ws19a{word-spacing:11.763838px;}
.ws1e5{word-spacing:11.797340px;}
.ws161{word-spacing:11.805681px;}
.ws1dd{word-spacing:11.806912px;}
.ws1f2{word-spacing:11.811688px;}
.wsaa{word-spacing:11.823614px;}
.ws200{word-spacing:11.826085px;}
.ws1fe{word-spacing:11.830850px;}
.ws167{word-spacing:11.835598px;}
.ws19{word-spacing:11.845163px;}
.ws160{word-spacing:11.847524px;}
.ws207{word-spacing:11.854727px;}
.wsa8{word-spacing:11.859479px;}
.ws1e{word-spacing:11.864291px;}
.ws87{word-spacing:11.873855px;}
.ws16c{word-spacing:11.883419px;}
.ws1e9{word-spacing:11.888201px;}
.ws1d9{word-spacing:11.892983px;}
.ws17{word-spacing:11.897765px;}
.ws1ac{word-spacing:11.901322px;}
.ws171{word-spacing:11.902547px;}
.ws1a{word-spacing:11.907329px;}
.ws1d7{word-spacing:11.912112px;}
.wsa7{word-spacing:11.913277px;}
.ws1b{word-spacing:11.921676px;}
.ws1e3{word-spacing:11.926458px;}
.wsc5{word-spacing:11.931240px;}
.ws20{word-spacing:11.936022px;}
.wsf7{word-spacing:11.940804px;}
.ws16d{word-spacing:11.945586px;}
.ws1d{word-spacing:11.950368px;}
.ws1f{word-spacing:11.959932px;}
.ws1f3{word-spacing:11.974278px;}
.ws54{word-spacing:11.979030px;}
.ws1f6{word-spacing:11.983842px;}
.ws78{word-spacing:12.026851px;}
.ws77{word-spacing:12.032828px;}
.ws61{word-spacing:12.074671px;}
.ws192{word-spacing:12.086626px;}
.ws191{word-spacing:12.140424px;}
.ws23{word-spacing:12.242043px;}
.ws155{word-spacing:12.248020px;}
.ws19f{word-spacing:12.295841px;}
.wsa{word-spacing:12.301818px;}
.ws5{word-spacing:12.337684px;}
.wsf{word-spacing:12.343661px;}
.ws184{word-spacing:12.457235px;}
.wsdf{word-spacing:12.487123px;}
.ws1a3{word-spacing:12.499078px;}
.ws1a4{word-spacing:12.505056px;}
.wsed{word-spacing:12.564831px;}
.ws3a{word-spacing:12.582764px;}
.ws37{word-spacing:12.600696px;}
.wsf1{word-spacing:12.618629px;}
.ws15d{word-spacing:12.630584px;}
.wsee{word-spacing:12.642539px;}
.ws127{word-spacing:12.678402px;}
.ws38{word-spacing:12.684382px;}
.ws15c{word-spacing:12.708293px;}
.ws20a{word-spacing:12.710716px;}
.ws8d{word-spacing:12.738180px;}
.ws96{word-spacing:12.750135px;}
.ws95{word-spacing:12.791978px;}
.ws101{word-spacing:12.833821px;}
.ws1e8{word-spacing:12.911562px;}
.ws1d5{word-spacing:12.935472px;}
.ws1ed{word-spacing:12.954600px;}
.ws1d4{word-spacing:13.011986px;}
.ws116{word-spacing:13.043036px;}
.ws50{word-spacing:13.049013px;}
.wsb1{word-spacing:13.084927px;}
.ws1b2{word-spacing:13.104653px;}
.ws41{word-spacing:13.108789px;}
.wse4{word-spacing:13.114767px;}
.ws1ee{word-spacing:13.117191px;}
.ws40{word-spacing:13.144654px;}
.ws3f{word-spacing:13.156610px;}
.ws154{word-spacing:13.157255px;}
.ws63{word-spacing:13.163831px;}
.ws117{word-spacing:13.168565px;}
.ws9a{word-spacing:13.318004px;}
.wscc{word-spacing:13.329959px;}
.ws92{word-spacing:13.371802px;}
.ws175{word-spacing:13.383757px;}
.ws1a5{word-spacing:13.425600px;}
.ws91{word-spacing:13.437555px;}
.ws132{word-spacing:13.479398px;}
.ws3c{word-spacing:13.557090px;}
.ws97{word-spacing:13.598949px;}
.ws94{word-spacing:13.646769px;}
.ws3e{word-spacing:13.664702px;}
.ws3d{word-spacing:13.670680px;}
.ws15f{word-spacing:13.706545px;}
.ws93{word-spacing:13.718500px;}
.ws9d{word-spacing:13.748388px;}
.ws76{word-spacing:13.802186px;}
.wsab{word-spacing:13.820119px;}
.wsad{word-spacing:13.855984px;}
.ws64{word-spacing:13.867939px;}
.ws1e1{word-spacing:13.872756px;}
.ws165{word-spacing:13.906230px;}
.wsc9{word-spacing:13.909782px;}
.wsd2{word-spacing:13.915760px;}
.wsac{word-spacing:13.921737px;}
.ws1a7{word-spacing:13.927715px;}
.ws166{word-spacing:13.939705px;}
.ws19b{word-spacing:13.963580px;}
.ws164{word-spacing:13.977990px;}
.ws13d{word-spacing:14.011401px;}
.ws197{word-spacing:14.017378px;}
.wsd5{word-spacing:14.023356px;}
.wsd3{word-spacing:14.035311px;}
.ws190{word-spacing:14.130952px;}
.ws110{word-spacing:14.184750px;}
.ws157{word-spacing:14.196705px;}
.ws208{word-spacing:14.197936px;}
.ws10b{word-spacing:14.238548px;}
.wsf0{word-spacing:14.304301px;}
.ws43{word-spacing:14.346144px;}
.ws107{word-spacing:14.393964px;}
.ws4c{word-spacing:14.423852px;}
.ws5d{word-spacing:14.447763px;}
.ws17e{word-spacing:14.465695px;}
.ws4b{word-spacing:14.507538px;}
.ws1bd{word-spacing:14.527898px;}
.ws20b{word-spacing:14.532680px;}
.ws1c7{word-spacing:14.590065px;}
.ws62{word-spacing:14.615134px;}
.ws82{word-spacing:14.621112px;}
.ws81{word-spacing:14.627089px;}
.ws1bc{word-spacing:14.628322px;}
.ws30{word-spacing:14.639044px;}
.ws1bb{word-spacing:14.652232px;}
.ws2c{word-spacing:14.656977px;}
.ws48{word-spacing:14.668932px;}
.ws2e{word-spacing:14.716720px;}
.ws18d{word-spacing:14.734685px;}
.ws79{word-spacing:14.764573px;}
.ws42{word-spacing:14.776528px;}
.ws5a{word-spacing:14.788483px;}
.ws2{word-spacing:14.811221px;}
.ws5b{word-spacing:14.824349px;}
.ws108{word-spacing:14.842281px;}
.ws56{word-spacing:14.872169px;}
.ws85{word-spacing:14.878147px;}
.ws1{word-spacing:14.881159px;}
.ws11{word-spacing:14.884124px;}
.ws45{word-spacing:14.890102px;}
.wsb2{word-spacing:14.896080px;}
.wsf2{word-spacing:14.908035px;}
.ws13{word-spacing:14.914012px;}
.ws102{word-spacing:14.925967px;}
.ws44{word-spacing:14.931945px;}
.ws66{word-spacing:14.937922px;}
.wsc4{word-spacing:14.943900px;}
.ws1f9{word-spacing:14.943937px;}
.ws4d{word-spacing:14.949878px;}
.ws139{word-spacing:14.955855px;}
.ws145{word-spacing:14.961833px;}
.ws14{word-spacing:14.967804px;}
.ws16{word-spacing:14.967810px;}
.wsf3{word-spacing:14.979799px;}
.ws159{word-spacing:14.991720px;}
.ws13b{word-spacing:15.003676px;}
.ws72{word-spacing:15.015631px;}
.ws71{word-spacing:15.021601px;}
.ws75{word-spacing:15.039541px;}
.ws74{word-spacing:15.045519px;}
.ws19d{word-spacing:15.057474px;}
.ws1c8{word-spacing:15.063489px;}
.wsde{word-spacing:15.075456px;}
.ws1b5{word-spacing:15.111272px;}
.ws124{word-spacing:15.165070px;}
.ws173{word-spacing:15.226079px;}
.ws59{word-spacing:15.260711px;}
.ws36{word-spacing:15.302554px;}
.wsef{word-spacing:15.326464px;}
.ws57{word-spacing:15.332441px;}
.ws35{word-spacing:15.368307px;}
.ws1fa{word-spacing:15.407798px;}
.wsba{word-spacing:15.416127px;}
.ws12f{word-spacing:15.434060px;}
.ws178{word-spacing:15.475903px;}
.ws58{word-spacing:15.499813px;}
.ws142{word-spacing:15.541656px;}
.ws14e{word-spacing:15.583499px;}
.ws1fc{word-spacing:15.584733px;}
.wsc8{word-spacing:15.589476px;}
.ws7e{word-spacing:15.613387px;}
.ws1c2{word-spacing:15.613426px;}
.ws152{word-spacing:15.631319px;}
.ws1c4{word-spacing:15.646900px;}
.wse2{word-spacing:15.655230px;}
.ws1c3{word-spacing:15.656464px;}
.ws1a2{word-spacing:15.709028px;}
.ws1dc{word-spacing:15.709067px;}
.wse0{word-spacing:15.738915px;}
.ws7f{word-spacing:15.750871px;}
.ws14f{word-spacing:15.756848px;}
.ws18f{word-spacing:15.774781px;}
.ws1d2{word-spacing:15.828618px;}
.ws1be{word-spacing:15.895567px;}
.ws120{word-spacing:15.912265px;}
.ws16a{word-spacing:15.948170px;}
.ws1ae{word-spacing:15.966063px;}
.wsd6{word-spacing:15.978018px;}
.ws1d3{word-spacing:15.991208px;}
.wsbd{word-spacing:16.001928px;}
.wsd1{word-spacing:16.013883px;}
.ws4e{word-spacing:16.019861px;}
.ws11f{word-spacing:16.025838px;}
.ws1d8{word-spacing:16.048594px;}
.wsd0{word-spacing:16.067681px;}
.ws1b6{word-spacing:16.073659px;}
.ws1d6{word-spacing:16.077286px;}
.ws196{word-spacing:16.085614px;}
.wsdd{word-spacing:16.139412px;}
.ws1e7{word-spacing:16.139452px;}
.wsdc{word-spacing:16.151319px;}
.wsdb{word-spacing:16.181255px;}
.ws6d{word-spacing:16.193210px;}
.ws1f5{word-spacing:16.215966px;}
.ws24{word-spacing:16.223071px;}
.ws28{word-spacing:16.223098px;}
.ws14b{word-spacing:16.235053px;}
.ws6c{word-spacing:16.241031px;}
.ws202{word-spacing:16.249439px;}
.ws1c9{word-spacing:16.259004px;}
.wsb3{word-spacing:16.288851px;}
.wsc2{word-spacing:16.294829px;}
.ws26{word-spacing:16.300806px;}
.ws34{word-spacing:16.348627px;}
.wsda{word-spacing:16.354604px;}
.ws1b1{word-spacing:16.396447px;}
.ws51{word-spacing:16.462200px;}
.ws1a6{word-spacing:16.504043px;}
.ws129{word-spacing:16.515998px;}
.ws203{word-spacing:16.550710px;}
.wsb{word-spacing:16.557841px;}
.ws69{word-spacing:16.665437px;}
.ws11e{word-spacing:16.677392px;}
.ws68{word-spacing:16.731190px;}
.ws99{word-spacing:16.814876px;}
.ws25{word-spacing:16.814900px;}
.ws1b4{word-spacing:16.826831px;}
.ws98{word-spacing:16.838787px;}
.ws11d{word-spacing:16.880629px;}
.ws1bf{word-spacing:16.981095px;}
.ws10e{word-spacing:16.988226px;}
.wsb7{word-spacing:17.000181px;}
.wsc{word-spacing:17.036046px;}
.wsb8{word-spacing:17.042024px;}
.wsae{word-spacing:17.048001px;}
.ws1b7{word-spacing:17.053979px;}
.ws32{word-spacing:17.107777px;}
.ws17a{word-spacing:17.137665px;}
.ws17b{word-spacing:17.155597px;}
.wscd{word-spacing:17.161575px;}
.ws6b{word-spacing:17.191463px;}
.ws6a{word-spacing:17.203418px;}
.ws1f7{word-spacing:17.210633px;}
.ws8c{word-spacing:17.257216px;}
.ws140{word-spacing:17.316991px;}
.ws8b{word-spacing:17.382744px;}
.ws7d{word-spacing:17.418610px;}
.ws7a{word-spacing:17.424587px;}
.ws7c{word-spacing:17.430565px;}
.ws7b{word-spacing:17.478385px;}
.ws147{word-spacing:17.544139px;}
.wsd4{word-spacing:17.562083px;}
.wsf9{word-spacing:17.597937px;}
.ws18e{word-spacing:17.651735px;}
.ws1f4{word-spacing:17.707968px;}
.wsa2{word-spacing:17.747376px;}
.ws134{word-spacing:17.753353px;}
.ws174{word-spacing:17.759331px;}
.ws33{word-spacing:17.777250px;}
.ws2a{word-spacing:17.795196px;}
.ws13e{word-spacing:17.801174px;}
.wsbe{word-spacing:17.813129px;}
.ws125{word-spacing:17.914747px;}
.ws177{word-spacing:17.974523px;}
.ws1df{word-spacing:17.994891px;}
.ws1a1{word-spacing:18.022343px;}
.ws1f0{word-spacing:18.047494px;}
.wsb5{word-spacing:18.070164px;}
.wsb6{word-spacing:18.088097px;}
.ws2f{word-spacing:18.135903px;}
.ws10{word-spacing:18.135917px;}
.wsb9{word-spacing:18.165805px;}
.ws2d{word-spacing:18.189720px;}
.ws180{word-spacing:18.231558px;}
.ws2b{word-spacing:18.237536px;}
.ws53{word-spacing:18.243513px;}
.ws17f{word-spacing:18.291334px;}
.ws182{word-spacing:18.351109px;}
.wse1{word-spacing:18.416862px;}
.ws1a0{word-spacing:18.446750px;}
.ws4f{word-spacing:18.452728px;}
.ws199{word-spacing:18.458705px;}
.ws189{word-spacing:18.512503px;}
.ws144{word-spacing:18.554346px;}
.ws11b{word-spacing:18.560324px;}
.ws11a{word-spacing:18.566301px;}
.ws1b9{word-spacing:18.573555px;}
.ws1ba{word-spacing:18.597431px;}
.ws6e{word-spacing:18.608144px;}
.ws70{word-spacing:18.620099px;}
.ws6f{word-spacing:18.661900px;}
.ws18b{word-spacing:18.667920px;}
.wsfd{word-spacing:18.673897px;}
.wsa0{word-spacing:18.751606px;}
.ws104{word-spacing:18.775516px;}
.wsa1{word-spacing:18.781494px;}
.wsa5{word-spacing:18.811381px;}
.wsa4{word-spacing:18.823336px;}
.ws115{word-spacing:18.829314px;}
.wsb4{word-spacing:18.883112px;}
.ws1e0{word-spacing:18.884354px;}
.ws114{word-spacing:18.901024px;}
.ws156{word-spacing:18.907022px;}
.ws12e{word-spacing:18.924955px;}
.ws52{word-spacing:18.948865px;}
.wsbc{word-spacing:19.044506px;}
.wsf8{word-spacing:19.123458px;}
.ws163{word-spacing:19.217855px;}
.ws106{word-spacing:19.325451px;}
.ws105{word-spacing:19.385227px;}
.ws12d{word-spacing:19.409137px;}
.ws12b{word-spacing:19.421092px;}
.ws183{word-spacing:19.433048px;}
.ws12c{word-spacing:19.450980px;}
.ws4a{word-spacing:19.480868px;}
.ws179{word-spacing:19.636285px;}
.ws22{word-spacing:19.791773px;}
.ws7{word-spacing:19.857454px;}
.ws12a{word-spacing:19.863432px;}
.ws3{word-spacing:19.869409px;}
.wscb{word-spacing:19.893320px;}
.wsca{word-spacing:19.899297px;}
.ws4{word-spacing:19.911252px;}
.ws100{word-spacing:19.917230px;}
.ws6{word-spacing:19.988961px;}
.wse7{word-spacing:20.186220px;}
.ws47{word-spacing:20.240018px;}
.ws150{word-spacing:20.240059px;}
.ws8e{word-spacing:20.347614px;}
.wsf5{word-spacing:20.401412px;}
.ws5e{word-spacing:20.556829px;}
.ws5f{word-spacing:20.568784px;}
.ws60{word-spacing:20.664425px;}
.wsf4{word-spacing:20.676380px;}
.wsce{word-spacing:20.742124px;}
.ws9c{word-spacing:20.783976px;}
.wsfe{word-spacing:20.831797px;}
.ws136{word-spacing:20.837817px;}
.wsc0{word-spacing:20.861684px;}
.ws83{word-spacing:20.879617px;}
.ws146{word-spacing:20.891572px;}
.ws130{word-spacing:20.933415px;}
.wscf{word-spacing:20.945370px;}
.wsa3{word-spacing:21.041011px;}
.wse8{word-spacing:21.106764px;}
.ws55{word-spacing:21.214360px;}
.ws143{word-spacing:21.262181px;}
.ws14d{word-spacing:21.268158px;}
.ws1aa{word-spacing:21.298046px;}
.ws29{word-spacing:21.304024px;}
.wsfb{word-spacing:21.310001px;}
.wsfa{word-spacing:21.351844px;}
.ws1ab{word-spacing:21.375755px;}
.ws14a{word-spacing:21.423575px;}
.ws149{word-spacing:21.441508px;}
.ws9{word-spacing:21.465418px;}
.ws123{word-spacing:21.525194px;}
.ws181{word-spacing:21.686588px;}
.wsfc{word-spacing:21.752341px;}
.ws162{word-spacing:21.800110px;}
.ws89{word-spacing:21.859937px;}
.wsff{word-spacing:21.913735px;}
.wse3{word-spacing:22.338142px;}
.wsd9{word-spacing:22.403895px;}
.ws46{word-spacing:22.565289px;}
.ws10c{word-spacing:22.613109px;}
.ws138{word-spacing:22.631042px;}
.ws137{word-spacing:22.648975px;}
.ws1e2{word-spacing:22.676529px;}
.wsea{word-spacing:22.768526px;}
.wse9{word-spacing:22.780481px;}
.wsc3{word-spacing:22.935898px;}
.ws65{word-spacing:23.031539px;}
.ws15b{word-spacing:23.049471px;}
.wsc1{word-spacing:23.103269px;}
.ws119{word-spacing:23.139135px;}
.ws118{word-spacing:23.204888px;}
.ws19e{word-spacing:23.264664px;}
.ws8a{word-spacing:23.318462px;}
.wse{word-spacing:23.473878px;}
.ws49{word-spacing:23.521699px;}
.ws18a{word-spacing:23.754823px;}
.ws1c0{word-spacing:23.852941px;}
.wsec{word-spacing:23.862420px;}
.wseb{word-spacing:24.352606px;}
.wsd{word-spacing:24.507996px;}
.ws194{word-spacing:25.631777px;}
.ws193{word-spacing:25.685575px;}
.ws195{word-spacing:25.691553px;}
.ws1b3{word-spacing:26.343107px;}
.ws14c{word-spacing:27.209860px;}
.ws1ec{word-spacing:27.578140px;}
.ws10a{word-spacing:28.758041px;}
.ws80{word-spacing:29.541100px;}
.wsc7{word-spacing:29.828002px;}
.ws109{word-spacing:29.834027px;}
.ws5c{word-spacing:29.839980px;}
.ws1b8{word-spacing:29.840045px;}
.ws103{word-spacing:29.899773px;}
.ws12{word-spacing:29.935636px;}
.wsbf{word-spacing:30.174723px;}
.ws158{word-spacing:30.288297px;}
.ws31{word-spacing:33.635730px;}
.ws1ef{word-spacing:38.801634px;}
.ws170{word-spacing:135.657478px;}
.ws16f{word-spacing:135.667042px;}
.ws16e{word-spacing:141.410296px;}
.ws172{word-spacing:159.577342px;}
.ws187{word-spacing:458.838661px;}
.ws188{word-spacing:470.492541px;}
._14{margin-left:-2026.794780px;}
._1a{margin-left:-17.272801px;}
._20{margin-left:-15.206940px;}
._19{margin-left:-13.404062px;}
._7{margin-left:-12.218215px;}
._18{margin-left:-11.204311px;}
._4{margin-left:-7.579546px;}
._6{margin-left:-6.192370px;}
._2{margin-left:-4.698362px;}
._3{margin-left:-3.472962px;}
._5{margin-left:-2.151922px;}
._1{margin-left:-1.004230px;}
._d{width:1.835157px;}
._c{width:3.089988px;}
._21{width:4.507099px;}
._e{width:7.017655px;}
._f{width:8.249066px;}
._16{width:11.052508px;}
._10{width:12.284268px;}
._1c{width:13.706545px;}
._8{width:14.740694px;}
._a{width:15.972040px;}
._9{width:17.519846px;}
._1f{width:18.877134px;}
._0{width:19.910870px;}
._1b{width:21.244248px;}
._22{width:22.816347px;}
._17{width:24.077601px;}
._1e{width:27.670125px;}
._13{width:28.926704px;}
._11{width:29.989402px;}
._1d{width:31.244656px;}
._12{width:32.685340px;}
._15{width:36.104441px;}
._38{width:40.044971px;}
._2e{width:135.686168px;}
._25{width:137.109666px;}
._24{width:139.320531px;}
._32{width:161.669172px;}
._2f{width:164.261048px;}
._2a{width:167.520344px;}
._30{width:185.792598px;}
._31{width:191.435426px;}
._26{width:196.792515px;}
._33{width:209.712462px;}
._2c{width:227.382171px;}
._2d{width:236.853024px;}
._28{width:239.389900px;}
._23{width:271.226471px;}
._29{width:277.455160px;}
._2b{width:404.002773px;}
._27{width:406.762021px;}
._35{width:458.475229px;}
._36{width:517.362703px;}
._37{width:647.505276px;}
._34{width:979.933140px;}
._b{width:1002.647640px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(19,20,19);}
.fc1{color:rgb(19,20,19);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:40.647600px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:45.429600px;}
.fsc{font-size:47.820000px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:65.753400px;}
.fs9{font-size:69.340200px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:77.708400px;}
.fsb{font-size:89.664000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:53.050465px;}
.y71{bottom:53.050500px;}
.yb8{bottom:53.050558px;}
.y1ac{bottom:53.050650px;}
.y43{bottom:53.050665px;}
.y6{bottom:66.525004px;}
.yd7{bottom:91.928385px;}
.y70{bottom:93.194190px;}
.y11f{bottom:93.213285px;}
.y190{bottom:93.228465px;}
.y169{bottom:93.256515px;}
.yf6{bottom:93.359835px;}
.y13d{bottom:93.401430px;}
.y42{bottom:93.401445px;}
.y1d4{bottom:95.323920px;}
.y8d{bottom:95.751115px;}
.yb7{bottom:95.994208px;}
.y5{bottom:97.125005px;}
.yae{bottom:106.946775px;}
.y1d3{bottom:109.525455px;}
.yd6{bottom:110.466000px;}
.y6f{bottom:111.126870px;}
.y11e{bottom:111.145965px;}
.y18f{bottom:111.161145px;}
.y168{bottom:111.189195px;}
.yf5{bottom:111.292515px;}
.y13c{bottom:111.937650px;}
.y41{bottom:111.937665px;}
.y1ab{bottom:114.352875px;}
.y1d2{bottom:123.713820px;}
.yd5{bottom:124.127280px;}
.yad{bottom:124.894395px;}
.y6e{bottom:129.074505px;}
.y11d{bottom:129.093585px;}
.y18e{bottom:129.108765px;}
.y167{bottom:129.136830px;}
.yf4{bottom:129.240135px;}
.y1aa{bottom:132.285555px;}
.y40{bottom:133.672665px;}
.y209{bottom:136.606425px;}
.y1d1{bottom:137.915340px;}
.y22{bottom:139.264499px;}
.yd4{bottom:142.663500px;}
.yac{bottom:142.827075px;}
.y13b{bottom:144.003705px;}
.y6d{bottom:147.007185px;}
.y11c{bottom:147.026265px;}
.y18d{bottom:147.041445px;}
.y166{bottom:147.069510px;}
.yf3{bottom:147.172815px;}
.y1a9{bottom:150.218235px;}
.y208{bottom:150.807945px;}
.y1d0{bottom:152.103720px;}
.y3f{bottom:158.021250px;}
.yab{bottom:160.759755px;}
.y13a{bottom:161.936385px;}
.y6c{bottom:164.939865px;}
.y11b{bottom:164.958945px;}
.y18c{bottom:164.974125px;}
.y165{bottom:165.002190px;}
.yf2{bottom:165.105495px;}
.y1cf{bottom:166.305240px;}
.yd3{bottom:168.082335px;}
.y1a8{bottom:168.165855px;}
.y3e{bottom:172.212015px;}
.yaa{bottom:178.707375px;}
.y139{bottom:179.869065px;}
.y1ce{bottom:180.506760px;}
.y6b{bottom:182.887485px;}
.y18b{bottom:182.921745px;}
.y164{bottom:182.949810px;}
.yf1{bottom:183.053130px;}
.yd2{bottom:186.015015px;}
.y1a7{bottom:186.098535px;}
.y207{bottom:190.551645px;}
.y3d{bottom:193.803015px;}
.y1cd{bottom:194.695140px;}
.ya9{bottom:196.640055px;}
.y19{bottom:196.933500px;}
.y138{bottom:197.816685px;}
.y18a{bottom:200.854425px;}
.y163{bottom:200.882490px;}
.y11a{bottom:200.958795px;}
.yf0{bottom:200.985810px;}
.yd1{bottom:203.947695px;}
.y1a6{bottom:204.031215px;}
.y206{bottom:204.753165px;}
.y3c{bottom:208.005735px;}
.y1cc{bottom:208.896660px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.ya8{bottom:214.572735px;}
.y137{bottom:215.749365px;}
.y189{bottom:218.787105px;}
.y162{bottom:218.815170px;}
.y205{bottom:218.941545px;}
.y1a5{bottom:221.978850px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y1cb{bottom:223.098180px;}
.y3b{bottom:229.572825px;}
.ya7{bottom:232.520355px;}
.y204{bottom:233.143065px;}
.y136{bottom:233.682045px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y6a{bottom:236.685525px;}
.y188{bottom:236.734725px;}
.y161{bottom:236.762790px;}
.yef{bottom:236.851170px;}
.y1ca{bottom:237.286545px;}
.yd0{bottom:239.813055px;}
.y1a4{bottom:239.911530px;}
.y119{bottom:242.816655px;}
.y3a{bottom:243.775545px;}
.y203{bottom:247.344585px;}
.ya6{bottom:250.453035px;}
.y1c9{bottom:251.488080px;}
.y135{bottom:251.629680px;}
.y69{bottom:254.618205px;}
.y187{bottom:254.667405px;}
.y160{bottom:254.695470px;}
.yee{bottom:254.783850px;}
.ycf{bottom:257.760675px;}
.y1a3{bottom:257.859150px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y118{bottom:260.749335px;}
.y202{bottom:261.532950px;}
.y39{bottom:265.342635px;}
.y1c8{bottom:265.676445px;}
.ya5{bottom:268.385715px;}
.y134{bottom:269.562360px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y68{bottom:272.565825px;}
.y186{bottom:272.615040px;}
.y15f{bottom:272.643090px;}
.yed{bottom:272.731470px;}
.yce{bottom:275.693355px;}
.y201{bottom:275.734485px;}
.y117{bottom:278.682015px;}
.y38{bottom:279.545355px;}
.y1c7{bottom:279.877965px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.ya4{bottom:286.333350px;}
.y133{bottom:287.495040px;}
.y200{bottom:289.936005px;}
.y67{bottom:290.498505px;}
.y185{bottom:290.547720px;}
.y15e{bottom:290.575770px;}
.yec{bottom:290.647380px;}
.ycd{bottom:293.626035px;}
.y1a2{bottom:293.715000px;}
.y1c6{bottom:294.079485px;}
.y116{bottom:296.629650px;}
.y37{bottom:301.112445px;}
.y1ff{bottom:304.124370px;}
.ya3{bottom:304.266030px;}
.y132{bottom:305.442660px;}
.y66{bottom:308.431185px;}
.y184{bottom:308.480400px;}
.y15d{bottom:308.508450px;}
.yeb{bottom:308.580060px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.ycc{bottom:311.573670px;}
.y115{bottom:314.562330px;}
.y36{bottom:314.837265px;}
.y1fe{bottom:318.325890px;}
.ya2{bottom:322.213650px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y131{bottom:323.375340px;}
.y1c5{bottom:326.209515px;}
.y65{bottom:326.378805px;}
.y183{bottom:326.428020px;}
.y15c{bottom:326.456085px;}
.yea{bottom:326.527680px;}
.ycb{bottom:329.506350px;}
.y114{bottom:332.495010px;}
.y1fd{bottom:332.514270px;}
.y8c{bottom:340.136820px;}
.y130{bottom:341.308020px;}
.y64{bottom:344.311485px;}
.y182{bottom:344.360700px;}
.y15b{bottom:344.388765px;}
.y1a1{bottom:345.638130px;}
.y1fc{bottom:346.715790px;}
.yca{bottom:347.439030px;}
.y10{bottom:348.133500px;}
.y113{bottom:350.442630px;}
.y8b{bottom:352.791000px;}
.y8a{bottom:358.063380px;}
.ya1{bottom:358.069650px;}
.y1fb{bottom:360.917310px;}
.y63{bottom:362.244165px;}
.y181{bottom:362.293380px;}
.y15a{bottom:362.321445px;}
.ye9{bottom:362.497650px;}
.y1a0{bottom:363.585765px;}
.yc9{bottom:365.320485px;}
.y112{bottom:368.375310px;}
.ye8{bottom:372.992970px;}
.y1fa{bottom:375.105690px;}
.y89{bottom:375.995670px;}
.y12f{bottom:377.307870px;}
.y1c4{bottom:378.213915px;}
.y62{bottom:380.191800px;}
.y180{bottom:380.241000px;}
.y159{bottom:380.269065px;}
.y19f{bottom:381.518445px;}
.yc8{bottom:383.253165px;}
.y111{bottom:386.307990px;}
.yf{bottom:386.785499px;}
.y1f9{bottom:389.307210px;}
.y1c3{bottom:392.402280px;}
.y88{bottom:393.928350px;}
.y61{bottom:398.124480px;}
.y17f{bottom:398.173680px;}
.y158{bottom:398.201745px;}
.y19e{bottom:399.466065px;}
.yc7{bottom:401.185845px;}
.y1f8{bottom:403.495575px;}
.y1c2{bottom:406.603800px;}
.ye{bottom:408.044999px;}
.ya0{bottom:409.949235px;}
.y110{bottom:410.098680px;}
.y87{bottom:411.861030px;}
.y60{bottom:416.057160px;}
.y17e{bottom:416.106360px;}
.y157{bottom:416.134425px;}
.y19d{bottom:417.398745px;}
.y1f7{bottom:417.697110px;}
.ye7{bottom:419.065020px;}
.yc6{bottom:419.133465px;}
.y12e{bottom:419.165745px;}
.y1c1{bottom:420.805320px;}
.y9f{bottom:427.896870px;}
.y10f{bottom:428.031360px;}
.y86{bottom:429.755595px;}
.y1f6{bottom:431.898630px;}
.y5f{bottom:434.004780px;}
.y17d{bottom:434.053980px;}
.y156{bottom:434.082045px;}
.y1c0{bottom:434.993700px;}
.y19c{bottom:435.331425px;}
.ye6{bottom:436.997700px;}
.yc5{bottom:437.066145px;}
.y12d{bottom:437.098425px;}
.y9e{bottom:445.829550px;}
.y10e{bottom:445.964040px;}
.y1f5{bottom:446.086995px;}
.y85{bottom:447.688275px;}
.y1bf{bottom:449.195220px;}
.y35{bottom:450.092520px;}
.y5e{bottom:451.937460px;}
.y17c{bottom:451.986660px;}
.y155{bottom:452.014725px;}
.y19b{bottom:453.279045px;}
.ye5{bottom:454.930380px;}
.yc4{bottom:454.998825px;}
.y12c{bottom:455.031105px;}
.y1f4{bottom:460.288515px;}
.y1be{bottom:463.383600px;}
.y9d{bottom:463.777170px;}
.y10d{bottom:463.911660px;}
.y84{bottom:465.620955px;}
.y34{bottom:468.040140px;}
.y5d{bottom:469.870140px;}
.y17b{bottom:469.919340px;}
.y154{bottom:469.947405px;}
.y19a{bottom:471.211725px;}
.ye4{bottom:472.878000px;}
.yc3{bottom:472.946445px;}
.y1f3{bottom:474.476895px;}
.y1bd{bottom:477.585120px;}
.y12b{bottom:481.332360px;}
.y9c{bottom:481.709850px;}
.y10c{bottom:481.844340px;}
.y83{bottom:483.568575px;}
.y5c{bottom:487.817760px;}
.y17a{bottom:487.866975px;}
.y153{bottom:487.895025px;}
.y1f2{bottom:488.678415px;}
.y199{bottom:489.144405px;}
.ye3{bottom:490.810680px;}
.yc2{bottom:490.879125px;}
.y12a{bottom:499.265040px;}
.y9b{bottom:499.642530px;}
.y82{bottom:501.501255px;}
.yd{bottom:502.864502px;}
.y1f1{bottom:502.879935px;}
.y33{bottom:503.890560px;}
.y1bc{bottom:504.630060px;}
.y10b{bottom:505.620090px;}
.y5b{bottom:505.750440px;}
.y179{bottom:505.799655px;}
.y152{bottom:505.827705px;}
.y198{bottom:507.092025px;}
.ye2{bottom:508.743360px;}
.yc1{bottom:508.811805px;}
.y1f0{bottom:517.068315px;}
.y129{bottom:517.197720px;}
.y9a{bottom:517.590150px;}
.y81{bottom:519.433935px;}
.yc{bottom:520.864502px;}
.y32{bottom:521.838180px;}
.y10a{bottom:523.552770px;}
.y5a{bottom:523.683120px;}
.y178{bottom:523.732335px;}
.y151{bottom:523.760385px;}
.y197{bottom:525.024705px;}
.ye1{bottom:526.690980px;}
.yc0{bottom:526.759440px;}
.y1ef{bottom:531.269835px;}
.y1bb{bottom:533.023545px;}
.y128{bottom:535.145340px;}
.y99{bottom:535.522830px;}
.y80{bottom:537.381555px;}
.yb{bottom:538.864499px;}
.y31{bottom:539.770860px;}
.y109{bottom:541.500390px;}
.y59{bottom:541.630740px;}
.y177{bottom:541.679955px;}
.y150{bottom:541.708020px;}
.y196{bottom:542.957385px;}
.ye0{bottom:544.623660px;}
.y1ee{bottom:545.471355px;}
.y98{bottom:553.455510px;}
.y7f{bottom:555.314235px;}
.ya{bottom:556.864499px;}
.y30{bottom:557.703540px;}
.y108{bottom:559.433070px;}
.y58{bottom:559.563420px;}
.y176{bottom:559.612635px;}
.ybf{bottom:559.636020px;}
.y14f{bottom:559.640700px;}
.y1ed{bottom:559.659735px;}
.y195{bottom:560.905020px;}
.y1ba{bottom:561.417015px;}
.y127{bottom:561.431670px;}
.ydf{bottom:562.571295px;}
.y97{bottom:571.403130px;}
.y7e{bottom:573.246915px;}
.y1ec{bottom:573.861255px;}
.y2f{bottom:575.651175px;}
.y107{bottom:577.365750px;}
.y57{bottom:577.496100px;}
.y175{bottom:577.545315px;}
.ybe{bottom:577.568700px;}
.y14e{bottom:577.573380px;}
.y194{bottom:578.837700px;}
.y126{bottom:579.364350px;}
.y1eb{bottom:588.049620px;}
.y96{bottom:589.335810px;}
.y1b9{bottom:589.810500px;}
.y2e{bottom:593.583855px;}
.y106{bottom:595.313370px;}
.y56{bottom:595.443735px;}
.y174{bottom:595.492935px;}
.ybd{bottom:595.516320px;}
.y14d{bottom:595.521000px;}
.y193{bottom:596.770380px;}
.y125{bottom:597.311970px;}
.yde{bottom:598.421700px;}
.y1ea{bottom:602.251140px;}
.y95{bottom:607.268490px;}
.y7d{bottom:609.246780px;}
.y2d{bottom:611.516535px;}
.y105{bottom:613.246050px;}
.y55{bottom:613.376415px;}
.y173{bottom:613.425615px;}
.ybc{bottom:613.449000px;}
.y192{bottom:614.718000px;}
.y124{bottom:615.244650px;}
.ydd{bottom:616.369335px;}
.y1e9{bottom:616.452675px;}
.y94{bottom:625.216125px;}
.y2c{bottom:629.464155px;}
.y1e8{bottom:630.641040px;}
.y104{bottom:631.178730px;}
.y54{bottom:631.324035px;}
.ydc{bottom:634.302015px;}
.y1b8{bottom:636.142500px;}
.y1e7{bottom:644.842560px;}
.y9{bottom:645.510000px;}
.y14c{bottom:646.631280px;}
.y2b{bottom:647.396835px;}
.y103{bottom:649.126365px;}
.ybb{bottom:649.245915px;}
.y53{bottom:649.256715px;}
.y172{bottom:649.425465px;}
.y7c{bottom:651.104640px;}
.y123{bottom:651.114000px;}
.ydb{bottom:652.234695px;}
.y1e6{bottom:659.030940px;}
.y93{bottom:661.201035px;}
.y14b{bottom:665.167500px;}
.y2a{bottom:665.329515px;}
.y8{bottom:666.771000px;}
.y102{bottom:667.059045px;}
.yba{bottom:667.178595px;}
.y52{bottom:667.189395px;}
.y7b{bottom:669.037320px;}
.yda{bottom:670.182315px;}
.y1e5{bottom:673.232460px;}
.y1b7{bottom:673.362525px;}
.yb6{bottom:679.029105px;}
.y191{bottom:682.893150px;}
.y101{bottom:685.006665px;}
.y14a{bottom:685.053915px;}
.yb9{bottom:685.126215px;}
.y51{bottom:685.137015px;}
.y7a{bottom:686.970000px;}
.y1e4{bottom:687.433980px;}
.y1b6{bottom:687.565245px;}
.yd9{bottom:688.114995px;}
.y171{bottom:691.268385px;}
.yb5{bottom:696.961785px;}
.y1e3{bottom:701.622345px;}
.y100{bottom:702.939345px;}
.y92{bottom:703.058895px;}
.y50{bottom:703.069695px;}
.y122{bottom:703.100520px;}
.y149{bottom:703.727850px;}
.yd8{bottom:706.047675px;}
.y170{bottom:709.216020px;}
.y45{bottom:713.875635px;}
.yb4{bottom:714.894465px;}
.y1b5{bottom:715.803300px;}
.y1e2{bottom:715.823880px;}
.yff{bottom:720.872025px;}
.y91{bottom:720.991575px;}
.y4f{bottom:721.002375px;}
.y121{bottom:721.033200px;}
.y148{bottom:722.413755px;}
.y79{bottom:722.839500px;}
.y7{bottom:726.298500px;}
.y16f{bottom:727.148700px;}
.y29{bottom:728.064015px;}
.y1b4{bottom:729.994065px;}
.y1e1{bottom:730.012245px;}
.yb3{bottom:732.842085px;}
.yfe{bottom:738.819645px;}
.y90{bottom:738.939195px;}
.y4e{bottom:738.949995px;}
.y120{bottom:738.980820px;}
.y147{bottom:741.099660px;}
.y1b3{bottom:744.196785px;}
.y1e0{bottom:744.213765px;}
.y16e{bottom:745.096320px;}
.yb2{bottom:750.774765px;}
.y4{bottom:752.599495px;}
.yfd{bottom:756.752325px;}
.y8f{bottom:756.871875px;}
.y4d{bottom:756.882675px;}
.y1b2{bottom:758.399505px;}
.y1df{bottom:758.415285px;}
.y146{bottom:759.773595px;}
.y28{bottom:762.618045px;}
.y16d{bottom:763.029000px;}
.yb1{bottom:768.722385px;}
.y1b1{bottom:772.590270px;}
.y1de{bottom:772.603665px;}
.yfc{bottom:774.685005px;}
.y78{bottom:774.804555px;}
.y4c{bottom:774.815355px;}
.y145{bottom:778.459500px;}
.y27{bottom:780.565665px;}
.yb0{bottom:786.655065px;}
.y1b0{bottom:786.792990px;}
.y1dd{bottom:786.805185px;}
.yfb{bottom:792.632625px;}
.y77{bottom:792.752175px;}
.y4b{bottom:792.762990px;}
.y1dc{bottom:801.006705px;}
.y144{bottom:805.348515px;}
.yfa{bottom:810.565305px;}
.y76{bottom:810.684855px;}
.y4a{bottom:810.695670px;}
.y1af{bottom:815.186475px;}
.y1db{bottom:815.195085px;}
.y143{bottom:819.551235px;}
.yaf{bottom:822.654930px;}
.y26{bottom:823.168575px;}
.yf9{bottom:828.497985px;}
.y75{bottom:828.617535px;}
.y49{bottom:828.628350px;}
.y1ae{bottom:829.389180px;}
.y1da{bottom:829.396605px;}
.y16c{bottom:830.756595px;}
.y142{bottom:833.742000px;}
.y1ad{bottom:843.579945px;}
.y1d9{bottom:843.584970px;}
.y25{bottom:845.568015px;}
.yf8{bottom:846.445620px;}
.y74{bottom:846.565170px;}
.y48{bottom:846.575970px;}
.y16b{bottom:849.442500px;}
.y141{bottom:857.782665px;}
.y1d8{bottom:857.786505px;}
.yf7{bottom:864.378300px;}
.y73{bottom:864.497850px;}
.y47{bottom:864.508650px;}
.y140{bottom:871.985385px;}
.y1d7{bottom:871.988025px;}
.y16a{bottom:876.334500px;}
.y3{bottom:879.369000px;}
.y72{bottom:882.430530px;}
.y13f{bottom:886.171575px;}
.y1d6{bottom:886.176390px;}
.y24{bottom:900.027165px;}
.y13e{bottom:900.377850px;}
.y1d5{bottom:900.377910px;}
.y46{bottom:900.378150px;}
.y23{bottom:925.492050px;}
.y44{bottom:938.685000px;}
.y2{bottom:945.126001px;}
.y1{bottom:966.726000px;}
.h14{height:27.965549px;}
.h7{height:32.130000px;}
.h13{height:32.900573px;}
.h16{height:34.191300px;}
.ha{height:34.191729px;}
.hb{height:34.478653px;}
.h10{height:41.125613px;}
.h1d{height:41.186933px;}
.h26{height:41.192693px;}
.h19{height:42.082022px;}
.h18{height:42.739554px;}
.hf{height:43.098208px;}
.h11{height:43.994842px;}
.h28{height:45.371249px;}
.h6{height:45.900000px;}
.h17{height:47.408201px;}
.h1e{height:47.581378px;}
.h3{height:48.195000px;}
.h27{height:53.130665px;}
.h22{height:53.174225px;}
.h21{height:53.253905px;}
.hd{height:54.462742px;}
.he{height:54.487222px;}
.h15{height:54.657439px;}
.h2{height:55.080000px;}
.h1c{height:55.301806px;}
.hc{height:55.561506px;}
.h1a{height:55.949962px;}
.h1b{height:56.009722px;}
.h20{height:56.547682px;}
.h1f{height:62.239613px;}
.h12{height:62.336840px;}
.h5{height:78.030000px;}
.h25{height:82.849006px;}
.h23{height:86.674618px;}
.h4{height:119.055004px;}
.h24{height:129.115318px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:76.113000px;}
.x17{left:77.263680px;}
.x6{left:79.528500px;}
.x1d{left:82.782000px;}
.xa{left:84.122925px;}
.x9{left:93.104220px;}
.x18{left:94.269840px;}
.x7{left:97.375500px;}
.xb{left:98.498955px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x14{left:120.317055px;}
.xe{left:156.047925px;}
.x4{left:203.484001px;}
.x1b{left:213.650490px;}
.x1a{left:230.614845px;}
.x10{left:260.934180px;}
.x15{left:264.330000px;}
.xf{left:267.838260px;}
.x11{left:370.753620px;}
.x16{left:390.973500px;}
.x19{left:402.637500px;}
.xc{left:423.095415px;}
.x3{left:454.959000px;}
.xd{left:483.304380px;}
.x1c{left:499.620000px;}
.x12{left:505.305000px;}
.x8{left:522.490500px;}
.x13{left:534.192210px;}
@media print{
.v7{vertical-align:-18.746240pt;}
.v3{vertical-align:-15.408000pt;}
.v5{vertical-align:-7.912960pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.699200pt;}
.v8{vertical-align:8.076373pt;}
.v4{vertical-align:10.626773pt;}
.vc{vertical-align:15.471733pt;}
.v1{vertical-align:19.296000pt;}
.va{vertical-align:37.246880pt;}
.v6{vertical-align:39.850400pt;}
.v9{vertical-align:74.599947pt;}
.vb{vertical-align:112.325013pt;}
.ls17{letter-spacing:-0.021254pt;}
.ls16{letter-spacing:-0.015940pt;}
.ls37{letter-spacing:-0.012752pt;}
.lse{letter-spacing:-0.010627pt;}
.ls10{letter-spacing:-0.008501pt;}
.lsc{letter-spacing:-0.006907pt;}
.lsd{letter-spacing:-0.005313pt;}
.lsf{letter-spacing:-0.004251pt;}
.ls0{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.000001pt;}
.ls68{letter-spacing:0.000007pt;}
.ls1d{letter-spacing:0.000015pt;}
.ls2e{letter-spacing:0.000036pt;}
.ls6{letter-spacing:0.004251pt;}
.ls13{letter-spacing:0.005313pt;}
.ls1c{letter-spacing:0.005845pt;}
.lsa{letter-spacing:0.008501pt;}
.ls1a{letter-spacing:0.010627pt;}
.ls11{letter-spacing:0.011689pt;}
.ls36{letter-spacing:0.015940pt;}
.ls19{letter-spacing:0.021254pt;}
.ls38{letter-spacing:0.308160pt;}
.ls43{letter-spacing:1.009523pt;}
.ls4e{letter-spacing:1.009577pt;}
.ls47{letter-spacing:1.052030pt;}
.ls6a{letter-spacing:1.062674pt;}
.ls53{letter-spacing:1.062697pt;}
.ls71{letter-spacing:1.062727pt;}
.ls55{letter-spacing:1.430796pt;}
.ls49{letter-spacing:1.444502pt;}
.ls5b{letter-spacing:1.453302pt;}
.ls58{letter-spacing:2.072213pt;}
.ls78{letter-spacing:2.629747pt;}
.ls77{letter-spacing:2.677747pt;}
.ls79{letter-spacing:2.862400pt;}
.ls35{letter-spacing:3.134895pt;}
.ls64{letter-spacing:3.347421pt;}
.ls6b{letter-spacing:3.347474pt;}
.ls48{letter-spacing:3.825634pt;}
.ls3b{letter-spacing:3.969100pt;}
.ls32{letter-spacing:4.038187pt;}
.ls4a{letter-spacing:4.145067pt;}
.ls4f{letter-spacing:4.193067pt;}
.ls54{letter-spacing:4.303844pt;}
.ls2b{letter-spacing:5.147179pt;}
.lsb{letter-spacing:5.334654pt;}
.ls46{letter-spacing:6.376080pt;}
.ls28{letter-spacing:6.588595pt;}
.ls27{letter-spacing:6.641743pt;}
.ls3e{letter-spacing:6.907436pt;}
.ls39{letter-spacing:7.704427pt;}
.ls33{letter-spacing:10.055059pt;}
.ls3d{letter-spacing:10.631051pt;}
.ls1b{letter-spacing:10.892427pt;}
.ls4{letter-spacing:10.998687pt;}
.ls2{letter-spacing:11.051860pt;}
.ls12{letter-spacing:11.190027pt;}
.ls18{letter-spacing:11.248440pt;}
.ls34{letter-spacing:11.559194pt;}
.ls4d{letter-spacing:11.795691pt;}
.ls4c{letter-spacing:11.795760pt;}
.ls51{letter-spacing:11.848880pt;}
.ls24{letter-spacing:12.327023pt;}
.ls60{letter-spacing:12.698994pt;}
.ls30{letter-spacing:13.017786pt;}
.ls7{letter-spacing:13.283452pt;}
.ls14{letter-spacing:13.283467pt;}
.ls23{letter-spacing:13.389743pt;}
.ls5a{letter-spacing:13.442857pt;}
.ls72{letter-spacing:13.931700pt;}
.ls2f{letter-spacing:13.974223pt;}
.ls75{letter-spacing:13.979520pt;}
.ls63{letter-spacing:14.346141pt;}
.ls73{letter-spacing:14.346194pt;}
.ls29{letter-spacing:14.718052pt;}
.ls44{letter-spacing:14.718081pt;}
.ls45{letter-spacing:14.771211pt;}
.ls2a{letter-spacing:14.771214pt;}
.ls21{letter-spacing:14.930596pt;}
.ls6f{letter-spacing:14.983741pt;}
.ls2d{letter-spacing:15.515076pt;}
.ls62{letter-spacing:15.674507pt;}
.ls2c{letter-spacing:15.825047pt;}
.ls3a{letter-spacing:15.887019pt;}
.ls5c{letter-spacing:15.905067pt;}
.ls20{letter-spacing:16.577775pt;}
.ls1f{letter-spacing:16.577786pt;}
.ls61{letter-spacing:16.630887pt;}
.ls59{letter-spacing:16.737173pt;}
.ls6e{letter-spacing:17.215367pt;}
.ls70{letter-spacing:17.321607pt;}
.ls5e{letter-spacing:17.587283pt;}
.ls57{letter-spacing:17.852990pt;}
.ls25{letter-spacing:17.906095pt;}
.ls52{letter-spacing:18.171797pt;}
.ls66{letter-spacing:18.543733pt;}
.ls65{letter-spacing:18.596853pt;}
.ls41{letter-spacing:18.968747pt;}
.ls40{letter-spacing:19.182400pt;}
.ls74{letter-spacing:19.340747pt;}
.ls31{letter-spacing:19.589841pt;}
.ls1e{letter-spacing:19.765792pt;}
.ls6d{letter-spacing:19.925181pt;}
.ls69{letter-spacing:20.137707pt;}
.ls3c{letter-spacing:20.456533pt;}
.ls5f{letter-spacing:20.775311pt;}
.ls67{letter-spacing:21.147314pt;}
.ls6c{letter-spacing:21.569067pt;}
.ls5d{letter-spacing:21.731763pt;}
.ls3f{letter-spacing:22.913067pt;}
.ls3{letter-spacing:23.091319pt;}
.ls1{letter-spacing:23.139319pt;}
.ls5{letter-spacing:23.187319pt;}
.ls15{letter-spacing:24.547840pt;}
.ls8{letter-spacing:25.260150pt;}
.ls76{letter-spacing:25.674348pt;}
.ls26{letter-spacing:28.001520pt;}
.ls22{letter-spacing:28.160971pt;}
.ls9{letter-spacing:57.534400pt;}
.ls56{letter-spacing:67.108087pt;}
.ls50{letter-spacing:83.792087pt;}
.ls4b{letter-spacing:89.743074pt;}
.ws73{word-spacing:-17.693578pt;}
.ws151{word-spacing:-14.032654pt;}
.ws153{word-spacing:-13.984834pt;}
.ws3b{word-spacing:-11.301573pt;}
.wsc6{word-spacing:-10.673558pt;}
.ws84{word-spacing:-8.889296pt;}
.ws88{word-spacing:-8.331307pt;}
.wsa9{word-spacing:-4.022234pt;}
.ws21{word-spacing:-0.068011pt;}
.ws111{word-spacing:-0.058447pt;}
.ws27{word-spacing:-0.053134pt;}
.ws15{word-spacing:-0.047820pt;}
.ws1de{word-spacing:-0.046758pt;}
.ws18{word-spacing:-0.042507pt;}
.ws1c{word-spacing:-0.038256pt;}
.ws39{word-spacing:-0.031880pt;}
.ws8{word-spacing:-0.017003pt;}
.ws0{word-spacing:0.000000pt;}
.ws1ce{word-spacing:5.989264pt;}
.ws1e6{word-spacing:6.082781pt;}
.ws1cf{word-spacing:6.099783pt;}
.ws1db{word-spacing:6.350575pt;}
.ws168{word-spacing:6.393102pt;}
.ws169{word-spacing:6.954178pt;}
.ws205{word-spacing:7.187968pt;}
.ws204{word-spacing:7.409005pt;}
.wsb0{word-spacing:7.459995pt;}
.wsaf{word-spacing:7.470622pt;}
.ws90{word-spacing:7.614083pt;}
.ws8f{word-spacing:7.667217pt;}
.ws15a{word-spacing:7.720351pt;}
.ws1eb{word-spacing:7.761825pt;}
.ws131{word-spacing:7.911633pt;}
.ws1ea{word-spacing:8.050863pt;}
.ws186{word-spacing:8.093368pt;}
.ws1cd{word-spacing:8.101872pt;}
.ws1cc{word-spacing:8.110374pt;}
.ws1cb{word-spacing:8.118875pt;}
.ws86{word-spacing:8.157132pt;}
.ws1ca{word-spacing:8.169884pt;}
.ws1d0{word-spacing:8.271902pt;}
.ws148{word-spacing:8.395151pt;}
.ws16b{word-spacing:8.446181pt;}
.ws1da{word-spacing:8.484438pt;}
.ws1a8{word-spacing:8.485454pt;}
.ws1a9{word-spacing:8.490792pt;}
.ws1f8{word-spacing:8.637463pt;}
.ws1c6{word-spacing:8.739480pt;}
.wse5{word-spacing:8.825535pt;}
.ws1c5{word-spacing:8.858500pt;}
.ws1b0{word-spacing:8.873356pt;}
.ws209{word-spacing:8.922261pt;}
.wsbb{word-spacing:9.006190pt;}
.ws10f{word-spacing:9.091205pt;}
.ws135{word-spacing:9.101831pt;}
.wse6{word-spacing:9.112458pt;}
.ws9f{word-spacing:9.139025pt;}
.ws1e4{word-spacing:9.164552pt;}
.ws9e{word-spacing:9.202786pt;}
.ws113{word-spacing:9.202787pt;}
.ws13a{word-spacing:9.208099pt;}
.ws112{word-spacing:9.224040pt;}
.ws206{word-spacing:9.262318pt;}
.ws1c1{word-spacing:9.279322pt;}
.wsf6{word-spacing:9.364336pt;}
.ws1ad{word-spacing:9.495022pt;}
.ws17c{word-spacing:9.542842pt;}
.ws1fd{word-spacing:9.547117pt;}
.wsd8{word-spacing:9.580036pt;}
.ws17d{word-spacing:9.675677pt;}
.ws1d1{word-spacing:9.691642pt;}
.ws126{word-spacing:9.734124pt;}
.ws128{word-spacing:9.739438pt;}
.ws1ff{word-spacing:9.768155pt;}
.ws133{word-spacing:9.787258pt;}
.wsd7{word-spacing:9.835079pt;}
.ws18c{word-spacing:9.893526pt;}
.ws141{word-spacing:9.914780pt;}
.ws67{word-spacing:9.925406pt;}
.ws185{word-spacing:9.930720pt;}
.ws9b{word-spacing:9.957287pt;}
.ws121{word-spacing:9.967913pt;}
.ws11c{word-spacing:9.973227pt;}
.ws176{word-spacing:10.015734pt;}
.ws1fb{word-spacing:10.027448pt;}
.ws1af{word-spacing:10.111375pt;}
.ws13f{word-spacing:10.122002pt;}
.ws19c{word-spacing:10.212329pt;}
.ws13c{word-spacing:10.217643pt;}
.ws15e{word-spacing:10.265463pt;}
.ws198{word-spacing:10.313284pt;}
.ws1f1{word-spacing:10.337751pt;}
.ws10d{word-spacing:10.345164pt;}
.ws201{word-spacing:10.354754pt;}
.ws122{word-spacing:10.398298pt;}
.wsa6{word-spacing:10.408924pt;}
.ws19a{word-spacing:10.456745pt;}
.ws1e5{word-spacing:10.486525pt;}
.ws161{word-spacing:10.493939pt;}
.ws1dd{word-spacing:10.495033pt;}
.ws1f2{word-spacing:10.499278pt;}
.wsaa{word-spacing:10.509879pt;}
.ws200{word-spacing:10.512075pt;}
.ws1fe{word-spacing:10.516311pt;}
.ws167{word-spacing:10.520532pt;}
.ws19{word-spacing:10.529033pt;}
.ws160{word-spacing:10.531132pt;}
.ws207{word-spacing:10.537535pt;}
.wsa8{word-spacing:10.541759pt;}
.ws1e{word-spacing:10.546036pt;}
.ws87{word-spacing:10.554538pt;}
.ws16c{word-spacing:10.563039pt;}
.ws1e9{word-spacing:10.567290pt;}
.ws1d9{word-spacing:10.571541pt;}
.ws17{word-spacing:10.575791pt;}
.ws1ac{word-spacing:10.578953pt;}
.ws171{word-spacing:10.580042pt;}
.ws1a{word-spacing:10.584293pt;}
.ws1d7{word-spacing:10.588544pt;}
.wsa7{word-spacing:10.589580pt;}
.ws1b{word-spacing:10.597045pt;}
.ws1e3{word-spacing:10.601296pt;}
.wsc5{word-spacing:10.605546pt;}
.ws20{word-spacing:10.609797pt;}
.wsf7{word-spacing:10.614048pt;}
.ws16d{word-spacing:10.618299pt;}
.ws1d{word-spacing:10.622549pt;}
.ws1f{word-spacing:10.631051pt;}
.ws1f3{word-spacing:10.643802pt;}
.ws54{word-spacing:10.648027pt;}
.ws1f6{word-spacing:10.652304pt;}
.ws78{word-spacing:10.690534pt;}
.ws77{word-spacing:10.695847pt;}
.ws61{word-spacing:10.733041pt;}
.ws192{word-spacing:10.743668pt;}
.ws191{word-spacing:10.791488pt;}
.ws23{word-spacing:10.881816pt;}
.ws155{word-spacing:10.887129pt;}
.ws19f{word-spacing:10.929636pt;}
.wsa{word-spacing:10.934950pt;}
.ws5{word-spacing:10.966830pt;}
.wsf{word-spacing:10.972143pt;}
.ws184{word-spacing:11.073098pt;}
.wsdf{word-spacing:11.099665pt;}
.ws1a3{word-spacing:11.110292pt;}
.ws1a4{word-spacing:11.115605pt;}
.wsed{word-spacing:11.168739pt;}
.ws3a{word-spacing:11.184679pt;}
.ws37{word-spacing:11.200619pt;}
.wsf1{word-spacing:11.216559pt;}
.ws15d{word-spacing:11.227186pt;}
.wsee{word-spacing:11.237813pt;}
.ws127{word-spacing:11.269691pt;}
.ws38{word-spacing:11.275007pt;}
.ws15c{word-spacing:11.296260pt;}
.ws20a{word-spacing:11.298414pt;}
.ws8d{word-spacing:11.322827pt;}
.ws96{word-spacing:11.333454pt;}
.ws95{word-spacing:11.370647pt;}
.ws101{word-spacing:11.407841pt;}
.ws1e8{word-spacing:11.476944pt;}
.ws1d5{word-spacing:11.498197pt;}
.ws1ed{word-spacing:11.515200pt;}
.ws1d4{word-spacing:11.566210pt;}
.ws116{word-spacing:11.593810pt;}
.ws50{word-spacing:11.599123pt;}
.wsb1{word-spacing:11.631046pt;}
.ws1b2{word-spacing:11.648580pt;}
.ws41{word-spacing:11.652257pt;}
.wse4{word-spacing:11.657570pt;}
.ws1ee{word-spacing:11.659725pt;}
.ws40{word-spacing:11.684137pt;}
.ws3f{word-spacing:11.694764pt;}
.ws154{word-spacing:11.695338pt;}
.ws63{word-spacing:11.701183pt;}
.ws117{word-spacing:11.705391pt;}
.ws9a{word-spacing:11.838225pt;}
.wscc{word-spacing:11.848852pt;}
.ws92{word-spacing:11.886046pt;}
.ws175{word-spacing:11.896673pt;}
.ws1a5{word-spacing:11.933866pt;}
.ws91{word-spacing:11.944493pt;}
.ws132{word-spacing:11.981687pt;}
.ws3c{word-spacing:12.050747pt;}
.ws97{word-spacing:12.087955pt;}
.ws94{word-spacing:12.130462pt;}
.ws3e{word-spacing:12.146402pt;}
.ws3d{word-spacing:12.151715pt;}
.ws15f{word-spacing:12.183596pt;}
.ws93{word-spacing:12.194222pt;}
.ws9d{word-spacing:12.220789pt;}
.ws76{word-spacing:12.268610pt;}
.wsab{word-spacing:12.284550pt;}
.wsad{word-spacing:12.316430pt;}
.ws64{word-spacing:12.327057pt;}
.ws1e1{word-spacing:12.331339pt;}
.ws165{word-spacing:12.361094pt;}
.wsc9{word-spacing:12.364251pt;}
.wsd2{word-spacing:12.369564pt;}
.wsac{word-spacing:12.374878pt;}
.ws1a7{word-spacing:12.380191pt;}
.ws166{word-spacing:12.390849pt;}
.ws19b{word-spacing:12.412071pt;}
.ws164{word-spacing:12.424880pt;}
.ws13d{word-spacing:12.454578pt;}
.ws197{word-spacing:12.459892pt;}
.wsd5{word-spacing:12.465205pt;}
.wsd3{word-spacing:12.475832pt;}
.ws190{word-spacing:12.560846pt;}
.ws110{word-spacing:12.608667pt;}
.ws157{word-spacing:12.619293pt;}
.ws208{word-spacing:12.620387pt;}
.ws10b{word-spacing:12.656487pt;}
.wsf0{word-spacing:12.714934pt;}
.ws43{word-spacing:12.752128pt;}
.ws107{word-spacing:12.794635pt;}
.ws4c{word-spacing:12.821202pt;}
.ws5d{word-spacing:12.842456pt;}
.ws17e{word-spacing:12.858396pt;}
.ws4b{word-spacing:12.895589pt;}
.ws1bd{word-spacing:12.913687pt;}
.ws20b{word-spacing:12.917938pt;}
.ws1c7{word-spacing:12.968947pt;}
.ws62{word-spacing:12.991230pt;}
.ws82{word-spacing:12.996544pt;}
.ws81{word-spacing:13.001857pt;}
.ws1bc{word-spacing:13.002952pt;}
.ws30{word-spacing:13.012484pt;}
.ws1bb{word-spacing:13.024206pt;}
.ws2c{word-spacing:13.028424pt;}
.ws48{word-spacing:13.039051pt;}
.ws2e{word-spacing:13.081529pt;}
.ws18d{word-spacing:13.097498pt;}
.ws79{word-spacing:13.124065pt;}
.ws42{word-spacing:13.134692pt;}
.ws5a{word-spacing:13.145319pt;}
.ws2{word-spacing:13.165530pt;}
.ws5b{word-spacing:13.177199pt;}
.ws108{word-spacing:13.193139pt;}
.ws56{word-spacing:13.219706pt;}
.ws85{word-spacing:13.225019pt;}
.ws1{word-spacing:13.227697pt;}
.ws11{word-spacing:13.230333pt;}
.ws45{word-spacing:13.235646pt;}
.wsb2{word-spacing:13.240960pt;}
.wsf2{word-spacing:13.251586pt;}
.ws13{word-spacing:13.256900pt;}
.ws102{word-spacing:13.267527pt;}
.ws44{word-spacing:13.272840pt;}
.ws66{word-spacing:13.278153pt;}
.wsc4{word-spacing:13.283467pt;}
.ws1f9{word-spacing:13.283500pt;}
.ws4d{word-spacing:13.288780pt;}
.ws139{word-spacing:13.294093pt;}
.ws145{word-spacing:13.299407pt;}
.ws14{word-spacing:13.304715pt;}
.ws16{word-spacing:13.304720pt;}
.wsf3{word-spacing:13.315377pt;}
.ws159{word-spacing:13.325974pt;}
.ws13b{word-spacing:13.336601pt;}
.ws72{word-spacing:13.347227pt;}
.ws71{word-spacing:13.352534pt;}
.ws75{word-spacing:13.368481pt;}
.ws74{word-spacing:13.373794pt;}
.ws19d{word-spacing:13.384421pt;}
.ws1c8{word-spacing:13.389768pt;}
.wsde{word-spacing:13.400405pt;}
.ws1b5{word-spacing:13.432241pt;}
.ws124{word-spacing:13.480062pt;}
.ws173{word-spacing:13.534292pt;}
.ws59{word-spacing:13.565076pt;}
.ws36{word-spacing:13.602270pt;}
.wsef{word-spacing:13.623523pt;}
.ws57{word-spacing:13.628837pt;}
.ws35{word-spacing:13.660717pt;}
.ws1fa{word-spacing:13.695820pt;}
.wsba{word-spacing:13.703224pt;}
.ws12f{word-spacing:13.719164pt;}
.ws178{word-spacing:13.756358pt;}
.ws58{word-spacing:13.777612pt;}
.ws142{word-spacing:13.814805pt;}
.ws14e{word-spacing:13.851999pt;}
.ws1fc{word-spacing:13.853096pt;}
.wsc8{word-spacing:13.857312pt;}
.ws7e{word-spacing:13.878566pt;}
.ws1c2{word-spacing:13.878601pt;}
.ws152{word-spacing:13.894506pt;}
.ws1c4{word-spacing:13.908356pt;}
.wse2{word-spacing:13.915760pt;}
.ws1c3{word-spacing:13.916857pt;}
.ws1a2{word-spacing:13.963580pt;}
.ws1dc{word-spacing:13.963615pt;}
.wse0{word-spacing:13.990147pt;}
.ws7f{word-spacing:14.000774pt;}
.ws14f{word-spacing:14.006087pt;}
.ws18f{word-spacing:14.022027pt;}
.ws1d2{word-spacing:14.069883pt;}
.ws1be{word-spacing:14.129393pt;}
.ws120{word-spacing:14.144235pt;}
.ws16a{word-spacing:14.176151pt;}
.ws1ae{word-spacing:14.192056pt;}
.wsd6{word-spacing:14.202683pt;}
.ws1d3{word-spacing:14.214407pt;}
.wsbd{word-spacing:14.223936pt;}
.wsd1{word-spacing:14.234563pt;}
.ws4e{word-spacing:14.239876pt;}
.ws11f{word-spacing:14.245190pt;}
.ws1d8{word-spacing:14.265417pt;}
.wsd0{word-spacing:14.282383pt;}
.ws1b6{word-spacing:14.287697pt;}
.ws1d6{word-spacing:14.290921pt;}
.ws196{word-spacing:14.298324pt;}
.wsdd{word-spacing:14.346144pt;}
.ws1e7{word-spacing:14.346180pt;}
.wsdc{word-spacing:14.356728pt;}
.wsdb{word-spacing:14.383338pt;}
.ws6d{word-spacing:14.393964pt;}
.ws1f5{word-spacing:14.414192pt;}
.ws24{word-spacing:14.420508pt;}
.ws28{word-spacing:14.420531pt;}
.ws14b{word-spacing:14.431158pt;}
.ws6c{word-spacing:14.436472pt;}
.ws202{word-spacing:14.443946pt;}
.ws1c9{word-spacing:14.452448pt;}
.wsb3{word-spacing:14.478979pt;}
.wsc2{word-spacing:14.484292pt;}
.ws26{word-spacing:14.489605pt;}
.ws34{word-spacing:14.532113pt;}
.wsda{word-spacing:14.537426pt;}
.ws1b1{word-spacing:14.574620pt;}
.ws51{word-spacing:14.633067pt;}
.ws1a6{word-spacing:14.670261pt;}
.ws129{word-spacing:14.680887pt;}
.ws203{word-spacing:14.711742pt;}
.wsb{word-spacing:14.718081pt;}
.ws69{word-spacing:14.813722pt;}
.ws11e{word-spacing:14.824349pt;}
.ws68{word-spacing:14.872169pt;}
.ws99{word-spacing:14.946557pt;}
.ws25{word-spacing:14.946577pt;}
.ws1b4{word-spacing:14.957183pt;}
.ws98{word-spacing:14.967810pt;}
.ws11d{word-spacing:15.005004pt;}
.ws1bf{word-spacing:15.094307pt;}
.ws10e{word-spacing:15.100645pt;}
.wsb7{word-spacing:15.111272pt;}
.wsc{word-spacing:15.143152pt;}
.wsb8{word-spacing:15.148465pt;}
.wsae{word-spacing:15.153779pt;}
.ws1b7{word-spacing:15.159092pt;}
.ws32{word-spacing:15.206913pt;}
.ws17a{word-spacing:15.233480pt;}
.ws17b{word-spacing:15.249420pt;}
.wscd{word-spacing:15.254733pt;}
.ws6b{word-spacing:15.281300pt;}
.ws6a{word-spacing:15.291927pt;}
.ws1f7{word-spacing:15.298341pt;}
.ws8c{word-spacing:15.339747pt;}
.ws140{word-spacing:15.392881pt;}
.ws8b{word-spacing:15.451328pt;}
.ws7d{word-spacing:15.483209pt;}
.ws7a{word-spacing:15.488522pt;}
.ws7c{word-spacing:15.493835pt;}
.ws7b{word-spacing:15.536343pt;}
.ws147{word-spacing:15.594790pt;}
.wsd4{word-spacing:15.610741pt;}
.wsf9{word-spacing:15.642610pt;}
.ws18e{word-spacing:15.690431pt;}
.ws1f4{word-spacing:15.740416pt;}
.wsa2{word-spacing:15.775445pt;}
.ws134{word-spacing:15.780758pt;}
.ws174{word-spacing:15.786072pt;}
.ws33{word-spacing:15.802000pt;}
.ws2a{word-spacing:15.817952pt;}
.ws13e{word-spacing:15.823265pt;}
.wsbe{word-spacing:15.833892pt;}
.ws125{word-spacing:15.924220pt;}
.ws177{word-spacing:15.977354pt;}
.ws1df{word-spacing:15.995459pt;}
.ws1a1{word-spacing:16.019861pt;}
.ws1f0{word-spacing:16.042217pt;}
.wsb5{word-spacing:16.062368pt;}
.wsb6{word-spacing:16.078308pt;}
.ws2f{word-spacing:16.120802pt;}
.ws10{word-spacing:16.120815pt;}
.wsb9{word-spacing:16.147382pt;}
.ws2d{word-spacing:16.168640pt;}
.ws180{word-spacing:16.205829pt;}
.ws2b{word-spacing:16.211143pt;}
.ws53{word-spacing:16.216456pt;}
.ws17f{word-spacing:16.258963pt;}
.ws182{word-spacing:16.312097pt;}
.wse1{word-spacing:16.370544pt;}
.ws1a0{word-spacing:16.397111pt;}
.ws4f{word-spacing:16.402425pt;}
.ws199{word-spacing:16.407738pt;}
.ws189{word-spacing:16.455559pt;}
.ws144{word-spacing:16.492752pt;}
.ws11b{word-spacing:16.498066pt;}
.ws11a{word-spacing:16.503379pt;}
.ws1b9{word-spacing:16.509826pt;}
.ws1ba{word-spacing:16.531050pt;}
.ws6e{word-spacing:16.540573pt;}
.ws70{word-spacing:16.551199pt;}
.ws6f{word-spacing:16.588356pt;}
.ws18b{word-spacing:16.593707pt;}
.wsfd{word-spacing:16.599020pt;}
.wsa0{word-spacing:16.668094pt;}
.ws104{word-spacing:16.689348pt;}
.wsa1{word-spacing:16.694661pt;}
.wsa5{word-spacing:16.721228pt;}
.wsa4{word-spacing:16.731855pt;}
.ws115{word-spacing:16.737168pt;}
.wsb4{word-spacing:16.784988pt;}
.ws1e0{word-spacing:16.786093pt;}
.ws114{word-spacing:16.800911pt;}
.ws156{word-spacing:16.806242pt;}
.ws12e{word-spacing:16.822182pt;}
.ws52{word-spacing:16.843436pt;}
.wsbc{word-spacing:16.928450pt;}
.wsf8{word-spacing:16.998629pt;}
.ws163{word-spacing:17.082538pt;}
.ws106{word-spacing:17.178179pt;}
.ws105{word-spacing:17.231313pt;}
.ws12d{word-spacing:17.252567pt;}
.ws12b{word-spacing:17.263193pt;}
.ws183{word-spacing:17.273820pt;}
.ws12c{word-spacing:17.289760pt;}
.ws4a{word-spacing:17.316327pt;}
.ws179{word-spacing:17.454475pt;}
.ws22{word-spacing:17.592687pt;}
.ws7{word-spacing:17.651071pt;}
.ws12a{word-spacing:17.656384pt;}
.ws3{word-spacing:17.661697pt;}
.wscb{word-spacing:17.682951pt;}
.wsca{word-spacing:17.688264pt;}
.ws4{word-spacing:17.698891pt;}
.ws100{word-spacing:17.704204pt;}
.ws6{word-spacing:17.767965pt;}
.wse7{word-spacing:17.943307pt;}
.ws47{word-spacing:17.991127pt;}
.ws150{word-spacing:17.991164pt;}
.ws8e{word-spacing:18.086768pt;}
.wsf5{word-spacing:18.134589pt;}
.ws5e{word-spacing:18.272737pt;}
.ws5f{word-spacing:18.283364pt;}
.ws60{word-spacing:18.368378pt;}
.wsf4{word-spacing:18.379004pt;}
.wsce{word-spacing:18.437443pt;}
.ws9c{word-spacing:18.474645pt;}
.wsfe{word-spacing:18.517153pt;}
.ws136{word-spacing:18.522504pt;}
.wsc0{word-spacing:18.543719pt;}
.ws83{word-spacing:18.559660pt;}
.ws146{word-spacing:18.570286pt;}
.ws130{word-spacing:18.607480pt;}
.wscf{word-spacing:18.618107pt;}
.wsa3{word-spacing:18.703121pt;}
.wse8{word-spacing:18.761568pt;}
.ws55{word-spacing:18.857209pt;}
.ws143{word-spacing:18.899716pt;}
.ws14d{word-spacing:18.905030pt;}
.ws1aa{word-spacing:18.931597pt;}
.ws29{word-spacing:18.936910pt;}
.wsfb{word-spacing:18.942223pt;}
.wsfa{word-spacing:18.979417pt;}
.ws1ab{word-spacing:19.000671pt;}
.ws14a{word-spacing:19.043178pt;}
.ws149{word-spacing:19.059118pt;}
.ws9{word-spacing:19.080372pt;}
.ws123{word-spacing:19.133505pt;}
.ws181{word-spacing:19.276967pt;}
.wsfc{word-spacing:19.335414pt;}
.ws162{word-spacing:19.377875pt;}
.ws89{word-spacing:19.431055pt;}
.wsff{word-spacing:19.478876pt;}
.wse3{word-spacing:19.856126pt;}
.wsd9{word-spacing:19.914573pt;}
.ws46{word-spacing:20.058035pt;}
.ws10c{word-spacing:20.100542pt;}
.ws138{word-spacing:20.116482pt;}
.ws137{word-spacing:20.132422pt;}
.ws1e2{word-spacing:20.156915pt;}
.wsea{word-spacing:20.238690pt;}
.wse9{word-spacing:20.249317pt;}
.wsc3{word-spacing:20.387465pt;}
.ws65{word-spacing:20.472479pt;}
.ws15b{word-spacing:20.488419pt;}
.wsc1{word-spacing:20.536239pt;}
.ws119{word-spacing:20.568120pt;}
.ws118{word-spacing:20.626567pt;}
.ws19e{word-spacing:20.679701pt;}
.ws8a{word-spacing:20.727521pt;}
.wse{word-spacing:20.865669pt;}
.ws49{word-spacing:20.908177pt;}
.ws18a{word-spacing:21.115399pt;}
.ws1c0{word-spacing:21.202614pt;}
.wsec{word-spacing:21.211040pt;}
.wseb{word-spacing:21.646761pt;}
.wsd{word-spacing:21.784885pt;}
.ws194{word-spacing:22.783802pt;}
.ws193{word-spacing:22.831623pt;}
.ws195{word-spacing:22.836936pt;}
.ws1b3{word-spacing:23.416095pt;}
.ws14c{word-spacing:24.186543pt;}
.ws1ec{word-spacing:24.513903pt;}
.ws10a{word-spacing:25.562703pt;}
.ws80{word-spacing:26.258756pt;}
.wsc7{word-spacing:26.513779pt;}
.ws109{word-spacing:26.519135pt;}
.ws5c{word-spacing:26.524426pt;}
.ws1b8{word-spacing:26.524484pt;}
.ws103{word-spacing:26.577576pt;}
.ws12{word-spacing:26.609454pt;}
.wsbf{word-spacing:26.821976pt;}
.ws158{word-spacing:26.922930pt;}
.ws31{word-spacing:29.898427pt;}
.ws1ef{word-spacing:34.490342pt;}
.ws170{word-spacing:120.584425pt;}
.ws16f{word-spacing:120.592926pt;}
.ws16e{word-spacing:125.698041pt;}
.ws172{word-spacing:141.846526pt;}
.ws187{word-spacing:407.856588pt;}
.ws188{word-spacing:418.215592pt;}
._14{margin-left:-1801.595360pt;}
._1a{margin-left:-15.353601pt;}
._20{margin-left:-13.517280pt;}
._19{margin-left:-11.914722pt;}
._7{margin-left:-10.860636pt;}
._18{margin-left:-9.959388pt;}
._4{margin-left:-6.737374pt;}
._6{margin-left:-5.504329pt;}
._2{margin-left:-4.176322pt;}
._3{margin-left:-3.087078pt;}
._5{margin-left:-1.912819pt;}
._1{margin-left:-0.892649pt;}
._d{width:1.631250pt;}
._c{width:2.746656pt;}
._21{width:4.006311pt;}
._e{width:6.237916pt;}
._f{width:7.332503pt;}
._16{width:9.824452pt;}
._10{width:10.919349pt;}
._1c{width:12.183596pt;}
._8{width:13.102839pt;}
._a{width:14.197369pt;}
._9{width:15.573197pt;}
._1f{width:16.779675pt;}
._0{width:17.698551pt;}
._1b{width:18.883776pt;}
._22{width:20.281197pt;}
._17{width:21.402312pt;}
._1e{width:24.595667pt;}
._13{width:25.712626pt;}
._11{width:26.657246pt;}
._1d{width:27.773027pt;}
._12{width:29.053636pt;}
._15{width:32.092836pt;}
._38{width:35.595530pt;}
._2e{width:120.609927pt;}
._25{width:121.875258pt;}
._24{width:123.840472pt;}
._32{width:143.705930pt;}
._2f{width:146.009821pt;}
._2a{width:148.906972pt;}
._30{width:165.148976pt;}
._31{width:170.164823pt;}
._26{width:174.926680pt;}
._33{width:186.411077pt;}
._2c{width:202.117485pt;}
._2d{width:210.536021pt;}
._28{width:212.791022pt;}
._23{width:241.090196pt;}
._29{width:246.626809pt;}
._2b{width:359.113576pt;}
._27{width:361.566241pt;}
._35{width:407.533537pt;}
._36{width:459.877958pt;}
._37{width:575.560245pt;}
._34{width:871.051680pt;}
._b{width:891.242347pt;}
.fsa{font-size:36.131200pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:40.381867pt;}
.fsc{font-size:42.506667pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.447467pt;}
.fs9{font-size:61.635733pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.074133pt;}
.fsb{font-size:79.701333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:47.155969pt;}
.y71{bottom:47.156000pt;}
.yb8{bottom:47.156052pt;}
.y1ac{bottom:47.156133pt;}
.y43{bottom:47.156147pt;}
.y6{bottom:59.133337pt;}
.yd7{bottom:81.714120pt;}
.y70{bottom:82.839280pt;}
.y11f{bottom:82.856253pt;}
.y190{bottom:82.869747pt;}
.y169{bottom:82.894680pt;}
.yf6{bottom:82.986520pt;}
.y13d{bottom:83.023493pt;}
.y42{bottom:83.023507pt;}
.y1d4{bottom:84.732373pt;}
.y8d{bottom:85.112102pt;}
.yb7{bottom:85.328185pt;}
.y5{bottom:86.333337pt;}
.yae{bottom:95.063800pt;}
.y1d3{bottom:97.355960pt;}
.yd6{bottom:98.192000pt;}
.y6f{bottom:98.779440pt;}
.y11e{bottom:98.796413pt;}
.y18f{bottom:98.809907pt;}
.y168{bottom:98.834840pt;}
.yf5{bottom:98.926680pt;}
.y13c{bottom:99.500133pt;}
.y41{bottom:99.500147pt;}
.y1ab{bottom:101.647000pt;}
.y1d2{bottom:109.967840pt;}
.yd5{bottom:110.335360pt;}
.yad{bottom:111.017240pt;}
.y6e{bottom:114.732893pt;}
.y11d{bottom:114.749853pt;}
.y18e{bottom:114.763347pt;}
.y167{bottom:114.788293pt;}
.yf4{bottom:114.880120pt;}
.y1aa{bottom:117.587160pt;}
.y40{bottom:118.820147pt;}
.y209{bottom:121.427933pt;}
.y1d1{bottom:122.591413pt;}
.y22{bottom:123.790666pt;}
.yd4{bottom:126.812000pt;}
.yac{bottom:126.957400pt;}
.y13b{bottom:128.003293pt;}
.y6d{bottom:130.673053pt;}
.y11c{bottom:130.690013pt;}
.y18d{bottom:130.703507pt;}
.y166{bottom:130.728453pt;}
.yf3{bottom:130.820280pt;}
.y1a9{bottom:133.527320pt;}
.y208{bottom:134.051507pt;}
.y1d0{bottom:135.203307pt;}
.y3f{bottom:140.463333pt;}
.yab{bottom:142.897560pt;}
.y13a{bottom:143.943453pt;}
.y6c{bottom:146.613213pt;}
.y11b{bottom:146.630173pt;}
.y18c{bottom:146.643667pt;}
.y165{bottom:146.668613pt;}
.yf2{bottom:146.760440pt;}
.y1cf{bottom:147.826880pt;}
.yd3{bottom:149.406520pt;}
.y1a8{bottom:149.480760pt;}
.y3e{bottom:153.077347pt;}
.yaa{bottom:158.851000pt;}
.y139{bottom:159.883613pt;}
.y1ce{bottom:160.450453pt;}
.y6b{bottom:162.566653pt;}
.y18b{bottom:162.597107pt;}
.y164{bottom:162.622053pt;}
.yf1{bottom:162.713893pt;}
.yd2{bottom:165.346680pt;}
.y1a7{bottom:165.420920pt;}
.y207{bottom:169.379240pt;}
.y3d{bottom:172.269347pt;}
.y1cd{bottom:173.062347pt;}
.ya9{bottom:174.791160pt;}
.y19{bottom:175.052000pt;}
.y138{bottom:175.837053pt;}
.y18a{bottom:178.537267pt;}
.y163{bottom:178.562213pt;}
.y11a{bottom:178.630040pt;}
.yf0{bottom:178.654053pt;}
.yd1{bottom:181.286840pt;}
.y1a6{bottom:181.361080pt;}
.y206{bottom:182.002813pt;}
.y3c{bottom:184.893987pt;}
.y1cc{bottom:185.685920pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.ya8{bottom:190.731320pt;}
.y137{bottom:191.777213pt;}
.y189{bottom:194.477427pt;}
.y162{bottom:194.502373pt;}
.y205{bottom:194.614707pt;}
.y1a5{bottom:197.314533pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y1cb{bottom:198.309493pt;}
.y3b{bottom:204.064733pt;}
.ya7{bottom:206.684760pt;}
.y204{bottom:207.238280pt;}
.y136{bottom:207.717373pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y6a{bottom:210.387133pt;}
.y188{bottom:210.430867pt;}
.y161{bottom:210.455813pt;}
.yef{bottom:210.534373pt;}
.y1ca{bottom:210.921373pt;}
.yd0{bottom:213.167160pt;}
.y1a4{bottom:213.254693pt;}
.y119{bottom:215.837027pt;}
.y3a{bottom:216.689373pt;}
.y203{bottom:219.861853pt;}
.ya6{bottom:222.624920pt;}
.y1c9{bottom:223.544960pt;}
.y135{bottom:223.670827pt;}
.y69{bottom:226.327293pt;}
.y187{bottom:226.371027pt;}
.y160{bottom:226.395973pt;}
.yee{bottom:226.474533pt;}
.ycf{bottom:229.120600pt;}
.y1a3{bottom:229.208133pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y118{bottom:231.777187pt;}
.y202{bottom:232.473733pt;}
.y39{bottom:235.860120pt;}
.y1c8{bottom:236.156840pt;}
.ya5{bottom:238.565080pt;}
.y134{bottom:239.610987pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y68{bottom:242.280733pt;}
.y186{bottom:242.324480pt;}
.y15f{bottom:242.349413pt;}
.yed{bottom:242.427973pt;}
.yce{bottom:245.060760pt;}
.y201{bottom:245.097320pt;}
.y117{bottom:247.717347pt;}
.y38{bottom:248.484760pt;}
.y1c7{bottom:248.780413pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.ya4{bottom:254.518533pt;}
.y133{bottom:255.551147pt;}
.y200{bottom:257.720893pt;}
.y67{bottom:258.220893pt;}
.y185{bottom:258.264640pt;}
.y15e{bottom:258.289573pt;}
.yec{bottom:258.353227pt;}
.ycd{bottom:261.000920pt;}
.y1a2{bottom:261.080000pt;}
.y1c6{bottom:261.403987pt;}
.y116{bottom:263.670800pt;}
.y37{bottom:267.655507pt;}
.y1ff{bottom:270.332773pt;}
.ya3{bottom:270.458693pt;}
.y132{bottom:271.504587pt;}
.y66{bottom:274.161053pt;}
.y184{bottom:274.204800pt;}
.y15d{bottom:274.229733pt;}
.yeb{bottom:274.293387pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.ycc{bottom:276.954373pt;}
.y115{bottom:279.610960pt;}
.y36{bottom:279.855347pt;}
.y1fe{bottom:282.956347pt;}
.ya2{bottom:286.412133pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y131{bottom:287.444747pt;}
.y1c5{bottom:289.964013pt;}
.y65{bottom:290.114493pt;}
.y183{bottom:290.158240pt;}
.y15c{bottom:290.183187pt;}
.yea{bottom:290.246827pt;}
.ycb{bottom:292.894533pt;}
.y114{bottom:295.551120pt;}
.y1fd{bottom:295.568240pt;}
.y8c{bottom:302.343840pt;}
.y130{bottom:303.384907pt;}
.y64{bottom:306.054653pt;}
.y182{bottom:306.098400pt;}
.y15b{bottom:306.123347pt;}
.y1a1{bottom:307.233893pt;}
.y1fc{bottom:308.191813pt;}
.yca{bottom:308.834693pt;}
.y10{bottom:309.452000pt;}
.y113{bottom:311.504560pt;}
.y8b{bottom:313.592000pt;}
.y8a{bottom:318.278560pt;}
.ya1{bottom:318.284133pt;}
.y1fb{bottom:320.815387pt;}
.y63{bottom:321.994813pt;}
.y181{bottom:322.038560pt;}
.y15a{bottom:322.063507pt;}
.ye9{bottom:322.220133pt;}
.y1a0{bottom:323.187347pt;}
.yc9{bottom:324.729320pt;}
.y112{bottom:327.444720pt;}
.ye8{bottom:331.549307pt;}
.y1fa{bottom:333.427280pt;}
.y89{bottom:334.218373pt;}
.y12f{bottom:335.384773pt;}
.y1c4{bottom:336.190147pt;}
.y62{bottom:337.948267pt;}
.y180{bottom:337.992000pt;}
.y159{bottom:338.016947pt;}
.y19f{bottom:339.127507pt;}
.yc8{bottom:340.669480pt;}
.y111{bottom:343.384880pt;}
.yf{bottom:343.809333pt;}
.y1f9{bottom:346.050853pt;}
.y1c3{bottom:348.802027pt;}
.y88{bottom:350.158533pt;}
.y61{bottom:353.888427pt;}
.y17f{bottom:353.932160pt;}
.y158{bottom:353.957107pt;}
.y19e{bottom:355.080947pt;}
.yc7{bottom:356.609640pt;}
.y1f8{bottom:358.662733pt;}
.y1c2{bottom:361.425600pt;}
.ye{bottom:362.706666pt;}
.ya0{bottom:364.399320pt;}
.y110{bottom:364.532160pt;}
.y87{bottom:366.098693pt;}
.y60{bottom:369.828587pt;}
.y17e{bottom:369.872320pt;}
.y157{bottom:369.897267pt;}
.y19d{bottom:371.021107pt;}
.y1f7{bottom:371.286320pt;}
.ye7{bottom:372.502240pt;}
.yc6{bottom:372.563080pt;}
.y12e{bottom:372.591773pt;}
.y1c1{bottom:374.049173pt;}
.y9f{bottom:380.352773pt;}
.y10f{bottom:380.472320pt;}
.y86{bottom:382.004973pt;}
.y1f6{bottom:383.909893pt;}
.y5f{bottom:385.782027pt;}
.y17d{bottom:385.825760pt;}
.y156{bottom:385.850707pt;}
.y1c0{bottom:386.661067pt;}
.y19c{bottom:386.961267pt;}
.ye6{bottom:388.442400pt;}
.yc5{bottom:388.503240pt;}
.y12d{bottom:388.531933pt;}
.y9e{bottom:396.292933pt;}
.y10e{bottom:396.412480pt;}
.y1f5{bottom:396.521773pt;}
.y85{bottom:397.945133pt;}
.y1bf{bottom:399.284640pt;}
.y35{bottom:400.082240pt;}
.y5e{bottom:401.722187pt;}
.y17c{bottom:401.765920pt;}
.y155{bottom:401.790867pt;}
.y19b{bottom:402.914707pt;}
.ye5{bottom:404.382560pt;}
.yc4{bottom:404.443400pt;}
.y12c{bottom:404.472093pt;}
.y1f4{bottom:409.145347pt;}
.y1be{bottom:411.896533pt;}
.y9d{bottom:412.246373pt;}
.y10d{bottom:412.365920pt;}
.y84{bottom:413.885293pt;}
.y34{bottom:416.035680pt;}
.y5d{bottom:417.662347pt;}
.y17b{bottom:417.706080pt;}
.y154{bottom:417.731027pt;}
.y19a{bottom:418.854867pt;}
.ye4{bottom:420.336000pt;}
.yc3{bottom:420.396840pt;}
.y1f3{bottom:421.757240pt;}
.y1bd{bottom:424.520107pt;}
.y12b{bottom:427.850987pt;}
.y9c{bottom:428.186533pt;}
.y10c{bottom:428.306080pt;}
.y83{bottom:429.838733pt;}
.y5c{bottom:433.615787pt;}
.y17a{bottom:433.659533pt;}
.y153{bottom:433.684467pt;}
.y1f2{bottom:434.380813pt;}
.y199{bottom:434.795027pt;}
.ye3{bottom:436.276160pt;}
.yc2{bottom:436.337000pt;}
.y12a{bottom:443.791147pt;}
.y9b{bottom:444.126693pt;}
.y82{bottom:445.778893pt;}
.yd{bottom:446.990669pt;}
.y1f1{bottom:447.004387pt;}
.y33{bottom:447.902720pt;}
.y1bc{bottom:448.560053pt;}
.y10b{bottom:449.440080pt;}
.y5b{bottom:449.555947pt;}
.y179{bottom:449.599693pt;}
.y152{bottom:449.624627pt;}
.y198{bottom:450.748467pt;}
.ye2{bottom:452.216320pt;}
.yc1{bottom:452.277160pt;}
.y1f0{bottom:459.616280pt;}
.y129{bottom:459.731307pt;}
.y9a{bottom:460.080133pt;}
.y81{bottom:461.719053pt;}
.yc{bottom:462.990669pt;}
.y32{bottom:463.856160pt;}
.y10a{bottom:465.380240pt;}
.y5a{bottom:465.496107pt;}
.y178{bottom:465.539853pt;}
.y151{bottom:465.564787pt;}
.y197{bottom:466.688627pt;}
.ye1{bottom:468.169760pt;}
.yc0{bottom:468.230613pt;}
.y1ef{bottom:472.239853pt;}
.y1bb{bottom:473.798707pt;}
.y128{bottom:475.684747pt;}
.y99{bottom:476.020293pt;}
.y80{bottom:477.672493pt;}
.yb{bottom:478.990666pt;}
.y31{bottom:479.796320pt;}
.y109{bottom:481.333680pt;}
.y59{bottom:481.449547pt;}
.y177{bottom:481.493293pt;}
.y150{bottom:481.518240pt;}
.y196{bottom:482.628787pt;}
.ye0{bottom:484.109920pt;}
.y1ee{bottom:484.863427pt;}
.y98{bottom:491.960453pt;}
.y7f{bottom:493.612653pt;}
.ya{bottom:494.990666pt;}
.y30{bottom:495.736480pt;}
.y108{bottom:497.273840pt;}
.y58{bottom:497.389707pt;}
.y176{bottom:497.433453pt;}
.ybf{bottom:497.454240pt;}
.y14f{bottom:497.458400pt;}
.y1ed{bottom:497.475320pt;}
.y195{bottom:498.582240pt;}
.y1ba{bottom:499.037347pt;}
.y127{bottom:499.050373pt;}
.ydf{bottom:500.063373pt;}
.y97{bottom:507.913893pt;}
.y7e{bottom:509.552813pt;}
.y1ec{bottom:510.098893pt;}
.y2f{bottom:511.689933pt;}
.y107{bottom:513.214000pt;}
.y57{bottom:513.329867pt;}
.y175{bottom:513.373613pt;}
.ybe{bottom:513.394400pt;}
.y14e{bottom:513.398560pt;}
.y194{bottom:514.522400pt;}
.y126{bottom:514.990533pt;}
.y1eb{bottom:522.710773pt;}
.y96{bottom:523.854053pt;}
.y1b9{bottom:524.276000pt;}
.y2e{bottom:527.630093pt;}
.y106{bottom:529.167440pt;}
.y56{bottom:529.283320pt;}
.y174{bottom:529.327053pt;}
.ybd{bottom:529.347840pt;}
.y14d{bottom:529.352000pt;}
.y193{bottom:530.462560pt;}
.y125{bottom:530.943973pt;}
.yde{bottom:531.930400pt;}
.y1ea{bottom:535.334347pt;}
.y95{bottom:539.794213pt;}
.y7d{bottom:541.552693pt;}
.y2d{bottom:543.570253pt;}
.y105{bottom:545.107600pt;}
.y55{bottom:545.223480pt;}
.y173{bottom:545.267213pt;}
.ybc{bottom:545.288000pt;}
.y192{bottom:546.416000pt;}
.y124{bottom:546.884133pt;}
.ydd{bottom:547.883853pt;}
.y1e9{bottom:547.957933pt;}
.y94{bottom:555.747667pt;}
.y2c{bottom:559.523693pt;}
.y1e8{bottom:560.569813pt;}
.y104{bottom:561.047760pt;}
.y54{bottom:561.176920pt;}
.ydc{bottom:563.824013pt;}
.y1b8{bottom:565.460000pt;}
.y1e7{bottom:573.193387pt;}
.y9{bottom:573.786667pt;}
.y14c{bottom:574.783360pt;}
.y2b{bottom:575.463853pt;}
.y103{bottom:577.001213pt;}
.ybb{bottom:577.107480pt;}
.y53{bottom:577.117080pt;}
.y172{bottom:577.267080pt;}
.y7c{bottom:578.759680pt;}
.y123{bottom:578.768000pt;}
.ydb{bottom:579.764173pt;}
.y1e6{bottom:585.805280pt;}
.y93{bottom:587.734253pt;}
.y14b{bottom:591.260000pt;}
.y2a{bottom:591.404013pt;}
.y8{bottom:592.685334pt;}
.y102{bottom:592.941373pt;}
.yba{bottom:593.047640pt;}
.y52{bottom:593.057240pt;}
.y7b{bottom:594.699840pt;}
.yda{bottom:595.717613pt;}
.y1e5{bottom:598.428853pt;}
.y1b7{bottom:598.544467pt;}
.yb6{bottom:603.581427pt;}
.y191{bottom:607.016133pt;}
.y101{bottom:608.894813pt;}
.y14a{bottom:608.936813pt;}
.yb9{bottom:609.001080pt;}
.y51{bottom:609.010680pt;}
.y7a{bottom:610.640000pt;}
.y1e4{bottom:611.052427pt;}
.y1b6{bottom:611.169107pt;}
.yd9{bottom:611.657773pt;}
.y171{bottom:614.460787pt;}
.yb5{bottom:619.521587pt;}
.y1e3{bottom:623.664307pt;}
.y100{bottom:624.834973pt;}
.y92{bottom:624.941240pt;}
.y50{bottom:624.950840pt;}
.y122{bottom:624.978240pt;}
.y149{bottom:625.535867pt;}
.yd8{bottom:627.597933pt;}
.y170{bottom:630.414240pt;}
.y45{bottom:634.556120pt;}
.yb4{bottom:635.461747pt;}
.y1b5{bottom:636.269600pt;}
.y1e2{bottom:636.287893pt;}
.yff{bottom:640.775133pt;}
.y91{bottom:640.881400pt;}
.y4f{bottom:640.891000pt;}
.y121{bottom:640.918400pt;}
.y148{bottom:642.145560pt;}
.y79{bottom:642.524000pt;}
.y7{bottom:645.598667pt;}
.y16f{bottom:646.354400pt;}
.y29{bottom:647.168013pt;}
.y1b4{bottom:648.883613pt;}
.y1e1{bottom:648.899773pt;}
.yb3{bottom:651.415187pt;}
.yfe{bottom:656.728573pt;}
.y90{bottom:656.834840pt;}
.y4e{bottom:656.844440pt;}
.y120{bottom:656.871840pt;}
.y147{bottom:658.755253pt;}
.y1b3{bottom:661.508253pt;}
.y1e0{bottom:661.523347pt;}
.y16e{bottom:662.307840pt;}
.yb2{bottom:667.355347pt;}
.y4{bottom:668.977329pt;}
.yfd{bottom:672.668733pt;}
.y8f{bottom:672.775000pt;}
.y4d{bottom:672.784600pt;}
.y1b2{bottom:674.132893pt;}
.y1df{bottom:674.146920pt;}
.y146{bottom:675.354307pt;}
.y28{bottom:677.882707pt;}
.y16d{bottom:678.248000pt;}
.yb1{bottom:683.308787pt;}
.y1b1{bottom:686.746907pt;}
.y1de{bottom:686.758813pt;}
.yfc{bottom:688.608893pt;}
.y78{bottom:688.715160pt;}
.y4c{bottom:688.724760pt;}
.y145{bottom:691.964000pt;}
.y27{bottom:693.836147pt;}
.yb0{bottom:699.248947pt;}
.y1b0{bottom:699.371547pt;}
.y1dd{bottom:699.382387pt;}
.yfb{bottom:704.562333pt;}
.y77{bottom:704.668600pt;}
.y4b{bottom:704.678213pt;}
.y1dc{bottom:712.005960pt;}
.y144{bottom:715.865347pt;}
.yfa{bottom:720.502493pt;}
.y76{bottom:720.608760pt;}
.y4a{bottom:720.618373pt;}
.y1af{bottom:724.610200pt;}
.y1db{bottom:724.617853pt;}
.y143{bottom:728.489987pt;}
.yaf{bottom:731.248827pt;}
.y26{bottom:731.705400pt;}
.yf9{bottom:736.442653pt;}
.y75{bottom:736.548920pt;}
.y49{bottom:736.558533pt;}
.y1ae{bottom:737.234827pt;}
.y1da{bottom:737.241427pt;}
.y16c{bottom:738.450307pt;}
.y142{bottom:741.104000pt;}
.y1ad{bottom:749.848840pt;}
.y1d9{bottom:749.853307pt;}
.y25{bottom:751.616013pt;}
.yf8{bottom:752.396107pt;}
.y74{bottom:752.502373pt;}
.y48{bottom:752.511973pt;}
.y16b{bottom:755.060000pt;}
.y141{bottom:762.473480pt;}
.y1d8{bottom:762.476893pt;}
.yf7{bottom:768.336267pt;}
.y73{bottom:768.442533pt;}
.y47{bottom:768.452133pt;}
.y140{bottom:775.098120pt;}
.y1d7{bottom:775.100467pt;}
.y16a{bottom:778.964000pt;}
.y3{bottom:781.661334pt;}
.y72{bottom:784.382693pt;}
.y13f{bottom:787.708067pt;}
.y1d6{bottom:787.712347pt;}
.y24{bottom:800.024147pt;}
.y13e{bottom:800.335867pt;}
.y1d5{bottom:800.335920pt;}
.y46{bottom:800.336133pt;}
.y23{bottom:822.659600pt;}
.y44{bottom:834.386667pt;}
.y2{bottom:840.112001pt;}
.y1{bottom:859.312000pt;}
.h14{height:24.858266pt;}
.h7{height:28.560000pt;}
.h13{height:29.244954pt;}
.h16{height:30.392267pt;}
.ha{height:30.392648pt;}
.hb{height:30.647691pt;}
.h10{height:36.556100pt;}
.h1d{height:36.610607pt;}
.h26{height:36.615727pt;}
.h19{height:37.406242pt;}
.h18{height:37.990715pt;}
.hf{height:38.309518pt;}
.h11{height:39.106526pt;}
.h28{height:40.329999pt;}
.h6{height:40.800000pt;}
.h17{height:42.140623pt;}
.h1e{height:42.294558pt;}
.h3{height:42.840000pt;}
.h27{height:47.227258pt;}
.h22{height:47.265978pt;}
.h21{height:47.336804pt;}
.hd{height:48.411326pt;}
.he{height:48.433086pt;}
.h15{height:48.584390pt;}
.h2{height:48.960000pt;}
.h1c{height:49.157161pt;}
.hc{height:49.388005pt;}
.h1a{height:49.733299pt;}
.h1b{height:49.786419pt;}
.h20{height:50.264606pt;}
.h1f{height:55.324100pt;}
.h12{height:55.410524pt;}
.h5{height:69.360000pt;}
.h25{height:73.643561pt;}
.h23{height:77.044105pt;}
.h4{height:105.826671pt;}
.h24{height:114.769171pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:67.656000pt;}
.x17{left:68.678827pt;}
.x6{left:70.692000pt;}
.x1d{left:73.584000pt;}
.xa{left:74.775933pt;}
.x9{left:82.759307pt;}
.x18{left:83.795413pt;}
.x7{left:86.556000pt;}
.xb{left:87.554627pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x14{left:106.948493pt;}
.xe{left:138.709267pt;}
.x4{left:180.874667pt;}
.x1b{left:189.911547pt;}
.x1a{left:204.990973pt;}
.x10{left:231.941493pt;}
.x15{left:234.960000pt;}
.xf{left:238.078453pt;}
.x11{left:329.558773pt;}
.x16{left:347.532000pt;}
.x19{left:357.900000pt;}
.xc{left:376.084813pt;}
.x3{left:404.408000pt;}
.xd{left:429.603893pt;}
.x1c{left:444.106667pt;}
.x12{left:449.160000pt;}
.x8{left:464.436000pt;}
.x13{left:474.837520pt;}
}




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