
    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_996d3c6a0470f1b1ab4a7864.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064471;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_a1e844ed25b41a86291bf779.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065000;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_dad59999f953f824e6aed255.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064471;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_2bbf2499dfa42b593510bb04.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.846000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_78d374ef46e514053ff84db5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_24a0a6a5e831d768275aa713.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064471;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_6b0bd754535bb7f2081d25a4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.081000;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_5c3377b9c19cfe8a440dfeb9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984000;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_84521422a3b9614e41bb4ff5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064471;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_0118b478c79e90a9d2e17507.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.259000;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_944520ba6094a5b460e51a63.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.410000;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_e45f57a7d7d9ba14ff4c3c94.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919000;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_f86d4bd1a38aaf4805c39994.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.065000;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_9c2adca00b83647a8199fe48.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.864000;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_896fcec5989c5c0221c0d339.woff2')format("woff");}.fff{font-family:fff;line-height:0.690000;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_dbf426288563c315b118d84f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.649000;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);}
.v2{vertical-align:-19.530000px;}
.v3{vertical-align:-9.816000px;}
.v4{vertical-align:-7.176000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.822000px;}
.v1{vertical-align:23.760000px;}
.ls1{letter-spacing:0.000000px;}
.ls81{letter-spacing:0.001609px;}
.ls51{letter-spacing:0.001618px;}
.ls5a{letter-spacing:0.003779px;}
.ls68{letter-spacing:0.004883px;}
.ls12{letter-spacing:1.288300px;}
.ls20{letter-spacing:1.294300px;}
.ls18{letter-spacing:1.434098px;}
.ls23{letter-spacing:1.679341px;}
.ls89{letter-spacing:1.771611px;}
.ls1a{letter-spacing:2.128082px;}
.ls16{letter-spacing:2.134082px;}
.lsf{letter-spacing:2.313751px;}
.ls1e{letter-spacing:2.319751px;}
.ls2d{letter-spacing:2.914853px;}
.ls2b{letter-spacing:2.920853px;}
.ls19{letter-spacing:2.985326px;}
.ls45{letter-spacing:2.986524px;}
.ls70{letter-spacing:2.986986px;}
.ls21{letter-spacing:2.987341px;}
.ls4b{letter-spacing:2.987533px;}
.ls8d{letter-spacing:2.987534px;}
.ls4a{letter-spacing:2.989574px;}
.ls7{letter-spacing:2.989696px;}
.lsc{letter-spacing:2.991348px;}
.ls75{letter-spacing:2.991547px;}
.ls2e{letter-spacing:2.993341px;}
.ls85{letter-spacing:4.514706px;}
.ls15{letter-spacing:4.522082px;}
.ls60{letter-spacing:5.435939px;}
.ls6a{letter-spacing:5.853757px;}
.ls29{letter-spacing:6.190853px;}
.lsa8{letter-spacing:6.659372px;}
.ls0{letter-spacing:7.568266px;}
.ls38{letter-spacing:8.166494px;}
.ls3a{letter-spacing:8.172494px;}
.lsd{letter-spacing:8.637398px;}
.ls55{letter-spacing:8.718502px;}
.ls50{letter-spacing:8.905019px;}
.lse{letter-spacing:8.911019px;}
.ls8{letter-spacing:9.081398px;}
.ls3d{letter-spacing:9.611980px;}
.lsa9{letter-spacing:9.647980px;}
.ls25{letter-spacing:9.689963px;}
.ls1d{letter-spacing:9.695963px;}
.ls47{letter-spacing:9.969398px;}
.ls64{letter-spacing:10.075536px;}
.ls5d{letter-spacing:10.081536px;}
.ls78{letter-spacing:10.491791px;}
.ls7c{letter-spacing:10.611791px;}
.ls5f{letter-spacing:10.750280px;}
.ls6f{letter-spacing:10.756280px;}
.ls35{letter-spacing:10.757980px;}
.ls37{letter-spacing:10.763428px;}
.ls56{letter-spacing:10.918883px;}
.ls2a{letter-spacing:11.101618px;}
.ls4c{letter-spacing:11.261549px;}
.ls7d{letter-spacing:11.267437px;}
.ls72{letter-spacing:11.345980px;}
.ls31{letter-spacing:11.357980px;}
.ls33{letter-spacing:11.363428px;}
.ls17{letter-spacing:11.594841px;}
.ls4e{letter-spacing:11.610413px;}
.ls59{letter-spacing:11.689618px;}
.ls58{letter-spacing:11.691779px;}
.ls43{letter-spacing:11.741980px;}
.ls4{letter-spacing:12.461980px;}
.ls92{letter-spacing:12.639791px;}
.ls48{letter-spacing:12.727616px;}
.ls44{letter-spacing:12.851980px;}
.ls61{letter-spacing:12.903805px;}
.ls40{letter-spacing:12.985615px;}
.ls6e{letter-spacing:13.155805px;}
.ls46{letter-spacing:13.729616px;}
.lsb{letter-spacing:13.805980px;}
.ls9{letter-spacing:13.811980px;}
.ls2c{letter-spacing:14.093341px;}
.ls5e{letter-spacing:14.211805px;}
.ls42{letter-spacing:14.365616px;}
.ls14{letter-spacing:14.542874px;}
.ls5c{letter-spacing:14.653618px;}
.ls63{letter-spacing:14.655791px;}
.ls3b{letter-spacing:14.735980px;}
.ls41{letter-spacing:14.851615px;}
.ls69{letter-spacing:15.045805px;}
.ls2f{letter-spacing:15.329980px;}
.ls1f{letter-spacing:15.413341px;}
.ls8a{letter-spacing:15.623428px;}
.ls86{letter-spacing:15.640350px;}
.ls28{letter-spacing:15.877602px;}
.ls87{letter-spacing:15.919618px;}
.ls49{letter-spacing:15.973616px;}
.ls4d{letter-spacing:16.105373px;}
.ls6d{letter-spacing:16.140318px;}
.ls53{letter-spacing:16.237618px;}
.ls65{letter-spacing:16.359805px;}
.ls67{letter-spacing:16.371779px;}
.ls6c{letter-spacing:16.371791px;}
.ls6b{letter-spacing:16.372883px;}
.ls3c{letter-spacing:16.565980px;}
.ls6{letter-spacing:16.786943px;}
.lsa{letter-spacing:16.798524px;}
.ls1c{letter-spacing:16.799341px;}
.ls26{letter-spacing:16.805341px;}
.ls84{letter-spacing:16.834874px;}
.ls36{letter-spacing:16.948853px;}
.lsaa{letter-spacing:17.123980px;}
.ls80{letter-spacing:17.422874px;}
.ls13{letter-spacing:17.537341px;}
.ls32{letter-spacing:17.548853px;}
.ls88{letter-spacing:17.554874px;}
.ls5{letter-spacing:18.563980px;}
.ls8b{letter-spacing:19.105019px;}
.ls82{letter-spacing:19.129611px;}
.ls34{letter-spacing:19.530494px;}
.ls54{letter-spacing:19.632502px;}
.ls57{letter-spacing:19.638502px;}
.ls77{letter-spacing:19.645019px;}
.ls3e{letter-spacing:19.781980px;}
.ls3f{letter-spacing:19.883980px;}
.ls7a{letter-spacing:20.059019px;}
.ls62{letter-spacing:20.505757px;}
.ls9b{letter-spacing:20.688502px;}
.ls9d{letter-spacing:20.791019px;}
.ls76{letter-spacing:20.815536px;}
.ls39{letter-spacing:20.926853px;}
.ls79{letter-spacing:21.235536px;}
.ls30{letter-spacing:21.527980px;}
.lsa2{letter-spacing:21.757019px;}
.ls10{letter-spacing:21.785341px;}
.ls7f{letter-spacing:21.878706px;}
.ls9c{letter-spacing:21.955536px;}
.ls1b{letter-spacing:22.459019px;}
.ls7e{letter-spacing:22.485751px;}
.ls5b{letter-spacing:22.501057px;}
.ls8c{letter-spacing:22.723019px;}
.ls73{letter-spacing:22.735019px;}
.ls98{letter-spacing:22.764502px;}
.lsa1{letter-spacing:22.933536px;}
.ls97{letter-spacing:22.957019px;}
.lsa5{letter-spacing:23.099372px;}
.ls27{letter-spacing:23.549341px;}
.ls74{letter-spacing:23.911536px;}
.ls24{letter-spacing:24.627751px;}
.ls93{letter-spacing:24.823019px;}
.ls52{letter-spacing:24.960502px;}
.lsa6{letter-spacing:25.158502px;}
.lsa7{letter-spacing:25.351019px;}
.ls7b{letter-spacing:25.719751px;}
.ls22{letter-spacing:25.749751px;}
.lsa3{letter-spacing:25.932502px;}
.lsa4{letter-spacing:26.119019px;}
.ls8e{letter-spacing:26.419019px;}
.ls96{letter-spacing:26.772502px;}
.ls95{letter-spacing:26.959019px;}
.ls66{letter-spacing:27.124280px;}
.ls91{letter-spacing:27.227341px;}
.ls11{letter-spacing:27.261751px;}
.ls8f{letter-spacing:27.595536px;}
.ls4f{letter-spacing:29.286502px;}
.ls99{letter-spacing:29.754502px;}
.ls71{letter-spacing:29.935536px;}
.ls9a{letter-spacing:29.947019px;}
.ls83{letter-spacing:31.047751px;}
.ls9e{letter-spacing:32.075434px;}
.ls2{letter-spacing:32.727805px;}
.ls3{letter-spacing:32.729428px;}
.ls94{letter-spacing:32.729434px;}
.lsa0{letter-spacing:34.447019px;}
.ls9f{letter-spacing:35.617536px;}
.ls90{letter-spacing:49.431805px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws84{word-spacing:-63.098234px;}
.ws76{word-spacing:-46.099058px;}
.wsf3{word-spacing:-43.038600px;}
.ws1b{word-spacing:-32.727300px;}
.ws5e{word-spacing:-26.899200px;}
.ws3d{word-spacing:-25.220620px;}
.ws27{word-spacing:-22.254564px;}
.ws65{word-spacing:-22.189109px;}
.wsd5{word-spacing:-22.169576px;}
.wsd6{word-spacing:-22.154841px;}
.ws98{word-spacing:-22.123655px;}
.ws10{word-spacing:-21.992746px;}
.wse9{word-spacing:-21.979361px;}
.ws64{word-spacing:-21.927291px;}
.ws50{word-spacing:-21.861836px;}
.ws8d{word-spacing:-21.796382px;}
.ws73{word-spacing:-21.730927px;}
.ws12{word-spacing:-21.665473px;}
.ws8b{word-spacing:-21.600018px;}
.ws88{word-spacing:-21.534563px;}
.ws13{word-spacing:-21.469109px;}
.ws5a{word-spacing:-21.403654px;}
.ws99{word-spacing:-21.338200px;}
.ws7{word-spacing:-21.207290px;}
.ws30{word-spacing:-21.141836px;}
.ws3f{word-spacing:-21.076381px;}
.ws72{word-spacing:-21.017242px;}
.wsac{word-spacing:-21.010927px;}
.wsc5{word-spacing:-20.945472px;}
.wsa4{word-spacing:-20.880017px;}
.wsec{word-spacing:-20.878585px;}
.wsf0{word-spacing:-20.822816px;}
.wsf1{word-spacing:-20.814563px;}
.ws5f{word-spacing:-20.749108px;}
.wsb9{word-spacing:-20.618199px;}
.wsef{word-spacing:-20.553593px;}
.ws7d{word-spacing:-20.552744px;}
.ws79{word-spacing:-20.488066px;}
.wsf2{word-spacing:-20.487290px;}
.ws1c{word-spacing:-20.421835px;}
.ws39{word-spacing:-20.356381px;}
.ws7c{word-spacing:-20.303099px;}
.ws4d{word-spacing:-20.290926px;}
.wsdf{word-spacing:-20.277505px;}
.ws81{word-spacing:-20.225621px;}
.ws2b{word-spacing:-20.225471px;}
.ws7e{word-spacing:-20.160017px;}
.ws8{word-spacing:-20.094562px;}
.wsd1{word-spacing:-20.091265px;}
.ws3b{word-spacing:-20.029108px;}
.ws3c{word-spacing:-19.898198px;}
.ws38{word-spacing:-19.832744px;}
.ws4b{word-spacing:-19.767289px;}
.ws37{word-spacing:-19.701835px;}
.ws62{word-spacing:-19.636380px;}
.wse0{word-spacing:-19.577162px;}
.ws55{word-spacing:-19.570925px;}
.wscf{word-spacing:-19.570639px;}
.ws87{word-spacing:-19.505471px;}
.ws86{word-spacing:-19.440016px;}
.ws97{word-spacing:-19.374562px;}
.wsda{word-spacing:-19.367044px;}
.wsad{word-spacing:-19.309107px;}
.wsa8{word-spacing:-19.243652px;}
.ws78{word-spacing:-19.178198px;}
.ws44{word-spacing:-19.112743px;}
.ws43{word-spacing:-19.056729px;}
.ws42{word-spacing:-19.047289px;}
.ws41{word-spacing:-18.981834px;}
.ws92{word-spacing:-18.918107px;}
.ws1{word-spacing:-18.916379px;}
.wsb2{word-spacing:-18.850925px;}
.wsa2{word-spacing:-18.785470px;}
.wsc1{word-spacing:-18.724705px;}
.wsa{word-spacing:-18.720016px;}
.wsdb{word-spacing:-18.654561px;}
.ws4c{word-spacing:-18.589106px;}
.ws26{word-spacing:-18.523652px;}
.wse{word-spacing:-18.458197px;}
.ws31{word-spacing:-18.392743px;}
.wsa7{word-spacing:-18.329959px;}
.ws40{word-spacing:-18.327288px;}
.ws6b{word-spacing:-18.291456px;}
.ws8e{word-spacing:-18.261833px;}
.ws6c{word-spacing:-18.237658px;}
.ws4{word-spacing:-18.196379px;}
.wsf{word-spacing:-18.130610px;}
.ws6e{word-spacing:-18.073186px;}
.wsc0{word-spacing:-18.072236px;}
.ws6f{word-spacing:-18.065470px;}
.wsd{word-spacing:-18.000015px;}
.ws29{word-spacing:-17.934560px;}
.wsa0{word-spacing:-17.869106px;}
.ws5d{word-spacing:-17.807270px;}
.ws69{word-spacing:-17.803651px;}
.ws9a{word-spacing:-17.738197px;}
.ws35{word-spacing:-17.672742px;}
.wsb{word-spacing:-17.607287px;}
.ws2c{word-spacing:-17.541833px;}
.wsb6{word-spacing:-17.538278px;}
.ws60{word-spacing:-17.476378px;}
.wse6{word-spacing:-17.458605px;}
.ws90{word-spacing:-17.410924px;}
.ws56{word-spacing:-17.345469px;}
.wsc7{word-spacing:-17.280014px;}
.ws2{word-spacing:-17.275148px;}
.ws25{word-spacing:-17.214560px;}
.wsf8{word-spacing:-17.149105px;}
.wscb{word-spacing:-17.107891px;}
.ws2f{word-spacing:-17.083651px;}
.ws2a{word-spacing:-17.018196px;}
.wsc2{word-spacing:-17.009010px;}
.wsc3{word-spacing:-17.003258px;}
.wsab{word-spacing:-16.952741px;}
.wsae{word-spacing:-16.946496px;}
.ws34{word-spacing:-16.887287px;}
.ws3e{word-spacing:-16.821832px;}
.wsaf{word-spacing:-16.756378px;}
.ws22{word-spacing:-16.690923px;}
.ws47{word-spacing:-16.641998px;}
.ws48{word-spacing:-16.625468px;}
.ws80{word-spacing:-16.560014px;}
.wsc4{word-spacing:-16.546053px;}
.wsbf{word-spacing:-16.494559px;}
.ws5b{word-spacing:-16.429105px;}
.wsd7{word-spacing:-16.416776px;}
.ws28{word-spacing:-16.363650px;}
.ws5c{word-spacing:-16.298195px;}
.ws91{word-spacing:-16.232741px;}
.wsc{word-spacing:-16.167286px;}
.wsd4{word-spacing:-16.101832px;}
.ws24{word-spacing:-16.036377px;}
.ws9f{word-spacing:-15.947108px;}
.wse2{word-spacing:-15.894825px;}
.ws59{word-spacing:-15.840013px;}
.ws58{word-spacing:-15.774559px;}
.wsf6{word-spacing:-15.709104px;}
.ws5{word-spacing:-15.643649px;}
.ws36{word-spacing:-15.578195px;}
.wsca{word-spacing:-15.547738px;}
.ws95{word-spacing:-15.512740px;}
.ws7f{word-spacing:-15.447286px;}
.wsa6{word-spacing:-15.381831px;}
.ws68{word-spacing:-15.316376px;}
.wse1{word-spacing:-15.250922px;}
.ws75{word-spacing:-15.215200px;}
.ws3{word-spacing:-15.202058px;}
.ws8f{word-spacing:-15.185467px;}
.wsd3{word-spacing:-15.120013px;}
.wsd2{word-spacing:-15.101563px;}
.ws1d{word-spacing:-15.054558px;}
.ws93{word-spacing:-15.017002px;}
.ws57{word-spacing:-14.989103px;}
.wsf4{word-spacing:-14.923649px;}
.wsd0{word-spacing:-14.858194px;}
.ws9d{word-spacing:-14.792740px;}
.ws23{word-spacing:-14.727285px;}
.wse8{word-spacing:-14.661830px;}
.ws7a{word-spacing:-14.596376px;}
.ws32{word-spacing:-14.530921px;}
.ws51{word-spacing:-14.465467px;}
.wsce{word-spacing:-14.400012px;}
.wsb0{word-spacing:-14.334557px;}
.ws2e{word-spacing:-14.269103px;}
.ws67{word-spacing:-14.203648px;}
.ws4e{word-spacing:-14.138194px;}
.wsba{word-spacing:-14.106792px;}
.ws20{word-spacing:-14.072739px;}
.wsc9{word-spacing:-14.041382px;}
.wsb3{word-spacing:-14.007284px;}
.ws74{word-spacing:-13.941830px;}
.wsb1{word-spacing:-13.876375px;}
.ws9{word-spacing:-13.810921px;}
.ws9b{word-spacing:-13.680011px;}
.wsea{word-spacing:-13.626282px;}
.ws85{word-spacing:-13.614557px;}
.ws1a{word-spacing:-13.549102px;}
.ws21{word-spacing:-13.483648px;}
.wse5{word-spacing:-13.476772px;}
.wsa1{word-spacing:-13.451108px;}
.ws33{word-spacing:-13.418193px;}
.wsb7{word-spacing:-13.288205px;}
.ws3a{word-spacing:-13.287284px;}
.wsb4{word-spacing:-13.262397px;}
.wsb5{word-spacing:-13.221829px;}
.ws49{word-spacing:-13.156375px;}
.ws89{word-spacing:-13.090920px;}
.ws6{word-spacing:-12.960011px;}
.ws54{word-spacing:-12.894556px;}
.ws9e{word-spacing:-12.829102px;}
.wsa9{word-spacing:-12.763647px;}
.ws61{word-spacing:-12.698192px;}
.ws7b{word-spacing:-12.567283px;}
.ws71{word-spacing:-12.501829px;}
.wsa5{word-spacing:-12.436374px;}
.wsbe{word-spacing:-12.193619px;}
.ws52{word-spacing:-12.174556px;}
.ws83{word-spacing:-12.161548px;}
.wsbc{word-spacing:-12.159361px;}
.ws9c{word-spacing:-12.043646px;}
.ws1e{word-spacing:-11.781828px;}
.wseb{word-spacing:-11.716373px;}
.ws66{word-spacing:-11.520010px;}
.wsf5{word-spacing:-11.258191px;}
.ws96{word-spacing:-11.192737px;}
.wsc8{word-spacing:-11.127282px;}
.wsaa{word-spacing:-11.061827px;}
.wsf7{word-spacing:-10.996373px;}
.wsc6{word-spacing:-10.930918px;}
.ws70{word-spacing:-10.865464px;}
.ws82{word-spacing:-10.669100px;}
.ws2d{word-spacing:-10.538191px;}
.ws11{word-spacing:-10.407281px;}
.ws16{word-spacing:-10.365158px;}
.wse7{word-spacing:-10.276372px;}
.wscd{word-spacing:-9.687281px;}
.ws6a{word-spacing:-9.360008px;}
.wsfa{word-spacing:-8.836371px;}
.wsbd{word-spacing:-8.820772px;}
.wsbb{word-spacing:-8.818558px;}
.wse4{word-spacing:-8.509098px;}
.ws63{word-spacing:-7.658188px;}
.ws94{word-spacing:-7.200006px;}
.ws53{word-spacing:-6.087278px;}
.wsf9{word-spacing:-5.825459px;}
.wsed{word-spacing:-5.694550px;}
.ws8c{word-spacing:-0.065455px;}
.wsdd{word-spacing:-0.058909px;}
.ws77{word-spacing:-0.047821px;}
.ws17{word-spacing:0.000000px;}
.wsd8{word-spacing:8.718562px;}
.wse3{word-spacing:11.913096px;}
.ws19{word-spacing:13.745466px;}
.ws46{word-spacing:14.059315px;}
.ws14{word-spacing:16.785101px;}
.ws0{word-spacing:18.076212px;}
.ws15{word-spacing:18.399053px;}
.wsd9{word-spacing:25.929096px;}
.wsde{word-spacing:27.537096px;}
.wsdc{word-spacing:27.831096px;}
.ws45{word-spacing:35.863766px;}
.ws4f{word-spacing:35.865936px;}
.ws1f{word-spacing:43.038600px;}
.wscc{word-spacing:242.501895px;}
.ws8a{word-spacing:242.960077px;}
.wsb8{word-spacing:243.221896px;}
.wsee{word-spacing:243.745532px;}
.wsa3{word-spacing:244.334624px;}
.ws4a{word-spacing:248.916446px;}
.ws18{word-spacing:249.636446px;}
.ws6d{word-spacing:250.160083px;}
._16{margin-left:-10.869268px;}
._1b{margin-left:-9.216695px;}
._2{margin-left:-8.005180px;}
._a{margin-left:-6.378595px;}
._1{margin-left:-5.164632px;}
._6{margin-left:-3.552482px;}
._3{margin-left:-2.534480px;}
._0{margin-left:-1.291158px;}
._4{width:1.207454px;}
._1a{width:3.224890px;}
._21{width:4.840547px;}
._22{width:6.881957px;}
._18{width:8.055685px;}
._b{width:9.425462px;}
._c{width:10.549843px;}
._9{width:12.174556px;}
._17{width:13.676042px;}
._20{width:14.728337px;}
._7{width:15.756625px;}
._8{width:17.720263px;}
._f{width:19.683586px;}
._5{width:20.909289px;}
._11{width:21.974812px;}
._1d{width:23.105159px;}
._e{width:24.218202px;}
._14{width:26.229361px;}
._1e{width:28.323593px;}
._d{width:30.043661px;}
._12{width:32.229152px;}
._10{width:33.476800px;}
._19{width:35.280029px;}
._23{width:37.333773px;}
._24{width:43.083104px;}
._1c{width:71.731200px;}
._15{width:86.077200px;}
._1f{width:111.752192px;}
._13{width:117.512192px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fsa{font-size:36.463200px;}
.fs9{font-size:43.038600px;}
.fs7{font-size:43.636200px;}
.fs6{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs8{font-size:58.909200px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y23{bottom:178.965000px;}
.y96{bottom:223.797000px;}
.y190{bottom:224.541000px;}
.y15f{bottom:228.679500px;}
.y1a5{bottom:230.697000px;}
.y11e{bottom:231.777000px;}
.y10c{bottom:234.135000px;}
.y142{bottom:235.444500px;}
.y22{bottom:235.617000px;}
.y7b{bottom:236.589000px;}
.y47{bottom:242.053500px;}
.y13f{bottom:242.353500px;}
.yb1{bottom:244.120500px;}
.yca{bottom:244.122000px;}
.y180{bottom:244.296000px;}
.y18f{bottom:244.866000px;}
.y95{bottom:245.118000px;}
.y1a4{bottom:251.020500px;}
.y21{bottom:252.055500px;}
.y15e{bottom:252.672000px;}
.y11d{bottom:253.098000px;}
.y60{bottom:255.237000px;}
.y10b{bottom:255.454500px;}
.y7a{bottom:257.910000px;}
.y46{bottom:262.377000px;}
.y13e{bottom:263.674500px;}
.yc9{bottom:264.445500px;}
.y17f{bottom:264.619500px;}
.y18e{bottom:265.189500px;}
.y20{bottom:268.492500px;}
.y94{bottom:269.259000px;}
.y1a3{bottom:271.344000px;}
.y15d{bottom:272.995500px;}
.y174{bottom:274.180500px;}
.y13d{bottom:275.517000px;}
.y5f{bottom:275.562000px;}
.y1b7{bottom:275.922000px;}
.y11c{bottom:278.667000px;}
.yb0{bottom:280.489500px;}
.y10a{bottom:281.025000px;}
.y45{bottom:282.702000px;}
.y79{bottom:283.299000px;}
.yc8{bottom:284.769000px;}
.y17e{bottom:284.943000px;}
.y18d{bottom:285.513000px;}
.y93{bottom:289.582500px;}
.y1a2{bottom:291.667500px;}
.y13c{bottom:291.955500px;}
.y15c{bottom:293.319000px;}
.y173{bottom:294.504000px;}
.y5e{bottom:295.885500px;}
.y1b6{bottom:296.247000px;}
.y1f{bottom:298.659000px;}
.y11b{bottom:298.990500px;}
.yaf{bottom:300.814500px;}
.y109{bottom:301.348500px;}
.y44{bottom:303.025500px;}
.y78{bottom:303.624000px;}
.yc7{bottom:305.092500px;}
.y17d{bottom:305.268000px;}
.y92{bottom:309.906000px;}
.y1a1{bottom:311.991000px;}
.y172{bottom:314.829000px;}
.y5d{bottom:316.209000px;}
.y1e{bottom:318.982500px;}
.y11a{bottom:319.314000px;}
.yae{bottom:321.138000px;}
.y108{bottom:321.672000px;}
.y13b{bottom:322.120500px;}
.y43{bottom:323.349000px;}
.yc6{bottom:325.416000px;}
.y18c{bottom:326.332500px;}
.y1b5{bottom:328.048500px;}
.y91{bottom:330.231000px;}
.y1a0{bottom:332.316000px;}
.y15b{bottom:333.412500px;}
.y17c{bottom:339.040500px;}
.y1d{bottom:339.306000px;}
.yad{bottom:341.461500px;}
.y77{bottom:341.880000px;}
.y107{bottom:341.995500px;}
.y13a{bottom:342.444000px;}
.y42{bottom:343.672500px;}
.y171{bottom:344.887500px;}
.yc5{bottom:345.739500px;}
.y5c{bottom:347.848500px;}
.y1b4{bottom:348.372000px;}
.y90{bottom:350.554500px;}
.y119{bottom:350.953500px;}
.y19f{bottom:352.639500px;}
.yf8{bottom:359.365500px;}
.y1c{bottom:359.629500px;}
.yac{bottom:361.785000px;}
.y76{bottom:362.203500px;}
.y106{bottom:362.320500px;}
.y139{bottom:362.767500px;}
.y41{bottom:363.996000px;}
.y170{bottom:365.211000px;}
.yc4{bottom:366.064500px;}
.y8f{bottom:370.878000px;}
.y17b{bottom:372.814500px;}
.y19e{bottom:372.963000px;}
.y15a{bottom:373.504500px;}
.yf7{bottom:379.689000px;}
.y1b{bottom:379.953000px;}
.y1b3{bottom:380.173500px;}
.yab{bottom:382.108500px;}
.y75{bottom:382.527000px;}
.y105{bottom:382.644000px;}
.y138{bottom:383.092500px;}
.y40{bottom:384.321000px;}
.ye3{bottom:386.388000px;}
.y8e{bottom:391.201500px;}
.y17a{bottom:393.138000px;}
.y5b{bottom:393.286500px;}
.y159{bottom:393.828000px;}
.y118{bottom:396.391500px;}
.y16f{bottom:397.500000px;}
.yf6{bottom:400.012500px;}
.y1b2{bottom:400.497000px;}
.yaa{bottom:402.433500px;}
.y74{bottom:402.852000px;}
.y104{bottom:402.967500px;}
.yc3{bottom:403.068000px;}
.y137{bottom:403.416000px;}
.y3f{bottom:404.644500px;}
.ye2{bottom:406.711500px;}
.y1a{bottom:409.243500px;}
.y8d{bottom:411.525000px;}
.y5a{bottom:413.610000px;}
.y158{bottom:414.151500px;}
.y117{bottom:416.716500px;}
.y16e{bottom:417.823500px;}
.y73{bottom:423.175500px;}
.y103{bottom:423.291000px;}
.yc2{bottom:423.391500px;}
.y136{bottom:423.739500px;}
.y3e{bottom:424.968000px;}
.ye1{bottom:427.035000px;}
.y19{bottom:429.567000px;}
.yf5{bottom:430.594500px;}
.y8c{bottom:431.850000px;}
.y1b1{bottom:432.298500px;}
.y59{bottom:433.933500px;}
.y157{bottom:434.475000px;}
.y116{bottom:437.040000px;}
.ya9{bottom:438.802500px;}
.y179{bottom:440.682000px;}
.y72{bottom:443.499000px;}
.y102{bottom:443.614500px;}
.yc1{bottom:443.715000px;}
.y135{bottom:444.063000px;}
.y3d{bottom:445.291500px;}
.y18{bottom:449.892000px;}
.y16d{bottom:450.111000px;}
.yf4{bottom:450.919500px;}
.y8b{bottom:452.173500px;}
.y1b0{bottom:452.622000px;}
.y58{bottom:454.258500px;}
.y156{bottom:454.800000px;}
.y115{bottom:457.363500px;}
.ye0{bottom:458.674500px;}
.y71{bottom:463.822500px;}
.y101{bottom:463.939500px;}
.y134{bottom:464.386500px;}
.y3c{bottom:465.615000px;}
.y17{bottom:470.215500px;}
.y16c{bottom:470.434500px;}
.y8a{bottom:472.497000px;}
.y1af{bottom:472.945500px;}
.y57{bottom:474.582000px;}
.y155{bottom:475.123500px;}
.ya8{bottom:475.936500px;}
.y114{bottom:477.687000px;}
.yc0{bottom:480.718500px;}
.ya6{bottom:481.581000px;}
.y70{bottom:484.146000px;}
.y100{bottom:484.263000px;}
.y133{bottom:484.711500px;}
.yf3{bottom:484.867500px;}
.y3b{bottom:485.938500px;}
.ya7{bottom:489.672000px;}
.y16{bottom:490.539000px;}
.y16b{bottom:490.758000px;}
.y89{bottom:492.820500px;}
.y1ae{bottom:493.269000px;}
.y56{bottom:494.905500px;}
.y154{bottom:495.447000px;}
.y113{bottom:498.010500px;}
.ybf{bottom:501.042000px;}
.y18b{bottom:501.202500px;}
.ydf{bottom:504.007500px;}
.y6f{bottom:504.469500px;}
.yff{bottom:504.586500px;}
.y132{bottom:505.035000px;}
.yf2{bottom:505.191000px;}
.y3a{bottom:506.263500px;}
.y15{bottom:510.862500px;}
.y88{bottom:513.144000px;}
.y55{bottom:515.229000px;}
.y153{bottom:515.770500px;}
.y112{bottom:518.335500px;}
.y16a{bottom:520.818000px;}
.ybe{bottom:521.365500px;}
.y18a{bottom:521.526000px;}
.yde{bottom:524.331000px;}
.ya5{bottom:524.361000px;}
.y6e{bottom:524.794500px;}
.yfe{bottom:524.910000px;}
.y1ad{bottom:525.070500px;}
.y131{bottom:525.358500px;}
.yf1{bottom:525.514500px;}
.y39{bottom:526.587000px;}
.y14{bottom:531.186000px;}
.y87{bottom:533.469000px;}
.y54{bottom:535.552500px;}
.y111{bottom:538.659000px;}
.y169{bottom:541.141500px;}
.ybd{bottom:541.690500px;}
.y189{bottom:541.849500px;}
.ydd{bottom:544.654500px;}
.ya4{bottom:544.684500px;}
.yfd{bottom:545.233500px;}
.y1ac{bottom:545.395500px;}
.yf0{bottom:545.839500px;}
.y152{bottom:546.052500px;}
.y38{bottom:546.910500px;}
.y13{bottom:551.511000px;}
.y6d{bottom:551.842500px;}
.y86{bottom:553.792500px;}
.y53{bottom:555.877500px;}
.y130{bottom:559.132500px;}
.y168{bottom:561.465000px;}
.ybc{bottom:562.014000px;}
.ydc{bottom:564.978000px;}
.yfc{bottom:565.558500px;}
.y1ab{bottom:565.719000px;}
.yef{bottom:566.163000px;}
.y151{bottom:566.376000px;}
.y37{bottom:567.234000px;}
.y12{bottom:571.834500px;}
.y6c{bottom:572.166000px;}
.y110{bottom:572.431500px;}
.y19d{bottom:576.201000px;}
.y12f{bottom:579.456000px;}
.y188{bottom:580.105500px;}
.ya3{bottom:581.053500px;}
.y167{bottom:581.790000px;}
.ybb{bottom:582.337500px;}
.ydb{bottom:585.301500px;}
.y85{bottom:585.432000px;}
.yfb{bottom:585.882000px;}
.y1aa{bottom:586.042500px;}
.yee{bottom:586.486500px;}
.y150{bottom:586.699500px;}
.y36{bottom:587.557500px;}
.y11{bottom:592.158000px;}
.y6b{bottom:592.489500px;}
.y10f{bottom:592.756500px;}
.y52{bottom:593.551500px;}
.y19c{bottom:596.524500px;}
.y178{bottom:597.619500px;}
.y187{bottom:600.430500px;}
.ya2{bottom:601.377000px;}
.y166{bottom:602.113500px;}
.yba{bottom:602.661000px;}
.yda{bottom:605.626500px;}
.yfa{bottom:606.205500px;}
.y1a9{bottom:606.366000px;}
.y12e{bottom:606.504000px;}
.yed{bottom:606.810000px;}
.y14f{bottom:607.023000px;}
.y35{bottom:607.882500px;}
.y10{bottom:612.481500px;}
.y6a{bottom:612.814500px;}
.y10e{bottom:613.080000px;}
.y19b{bottom:616.848000px;}
.y177{bottom:617.943000px;}
.y186{bottom:620.754000px;}
.ya1{bottom:621.700500px;}
.y165{bottom:622.437000px;}
.yd9{bottom:625.950000px;}
.yf9{bottom:626.529000px;}
.y12d{bottom:626.827500px;}
.yec{bottom:627.133500px;}
.y14e{bottom:627.346500px;}
.y34{bottom:628.206000px;}
.y84{bottom:630.240000px;}
.yf{bottom:632.805000px;}
.y69{bottom:633.138000px;}
.y10d{bottom:633.403500px;}
.y141{bottom:633.928500px;}
.y19a{bottom:637.171500px;}
.y1a8{bottom:638.167500px;}
.yb9{bottom:639.664500px;}
.y185{bottom:641.077500px;}
.y164{bottom:642.760500px;}
.yd8{bottom:646.273500px;}
.y51{bottom:646.852500px;}
.y12c{bottom:647.152500px;}
.yeb{bottom:647.458500px;}
.y14d{bottom:647.671500px;}
.y33{bottom:648.529500px;}
.y83{bottom:650.563500px;}
.ye{bottom:653.130000px;}
.ya0{bottom:653.340000px;}
.y140{bottom:654.252000px;}
.y199{bottom:657.496500px;}
.y1a7{bottom:658.491000px;}
.yb8{bottom:659.988000px;}
.y184{bottom:661.401000px;}
.y163{bottom:663.084000px;}
.yd7{bottom:666.597000px;}
.y50{bottom:667.176000px;}
.y12b{bottom:667.476000px;}
.y14c{bottom:667.995000px;}
.y32{bottom:668.853000px;}
.y176{bottom:670.366500px;}
.y82{bottom:670.887000px;}
.y68{bottom:671.394000px;}
.yd{bottom:673.453500px;}
.yea{bottom:677.641500px;}
.y198{bottom:677.820000px;}
.yb7{bottom:680.311500px;}
.y183{bottom:681.724500px;}
.y162{bottom:683.409000px;}
.yd6{bottom:686.920500px;}
.y4f{bottom:687.501000px;}
.y12a{bottom:687.799500px;}
.y31{bottom:689.176500px;}
.y81{bottom:691.210500px;}
.y67{bottom:691.717500px;}
.yc{bottom:693.777000px;}
.y1a6{bottom:696.165000px;}
.ye9{bottom:697.965000px;}
.y197{bottom:698.143500px;}
.y14b{bottom:698.275500px;}
.y9f{bottom:698.461500px;}
.yd5{bottom:707.245500px;}
.y4e{bottom:707.824500px;}
.y30{bottom:709.501500px;}
.y80{bottom:711.534000px;}
.y66{bottom:712.042500px;}
.yb6{bottom:717.315000px;}
.ye8{bottom:718.288500px;}
.y196{bottom:718.467000px;}
.y14a{bottom:718.599000px;}
.y9e{bottom:718.785000px;}
.y129{bottom:721.572000px;}
.y161{bottom:722.742000px;}
.yd4{bottom:727.569000px;}
.y4d{bottom:728.148000px;}
.y2f{bottom:729.825000px;}
.yb{bottom:732.033000px;}
.y65{bottom:732.366000px;}
.y182{bottom:734.148000px;}
.yb5{bottom:737.640000px;}
.ye7{bottom:738.612000px;}
.y195{bottom:738.790500px;}
.y149{bottom:738.924000px;}
.y9d{bottom:739.108500px;}
.y128{bottom:741.897000px;}
.y7f{bottom:742.186500px;}
.yd3{bottom:747.892500px;}
.y4c{bottom:748.471500px;}
.ya{bottom:749.965500px;}
.y2e{bottom:750.148500px;}
.y64{bottom:752.689500px;}
.yb4{bottom:757.963500px;}
.ye6{bottom:758.935500px;}
.y194{bottom:759.115500px;}
.y9c{bottom:759.432000px;}
.y127{bottom:762.220500px;}
.yd2{bottom:768.216000px;}
.y4b{bottom:768.795000px;}
.y148{bottom:769.204500px;}
.y9{bottom:772.381500px;}
.y63{bottom:773.013000px;}
.y7e{bottom:774.712500px;}
.yb3{bottom:778.287000px;}
.ye5{bottom:779.260500px;}
.y193{bottom:779.439000px;}
.y9b{bottom:779.755500px;}
.y126{bottom:782.544000px;}
.y2d{bottom:787.822500px;}
.yd1{bottom:788.539500px;}
.y4a{bottom:789.120000px;}
.y147{bottom:789.528000px;}
.y62{bottom:793.336500px;}
.ye4{bottom:799.584000px;}
.y192{bottom:799.762500px;}
.y9a{bottom:800.080500px;}
.y125{bottom:802.867500px;}
.y7d{bottom:807.237000px;}
.y49{bottom:809.443500px;}
.y8{bottom:810.639000px;}
.y146{bottom:819.810000px;}
.y99{bottom:820.404000px;}
.y124{bottom:823.191000px;}
.y61{bottom:824.976000px;}
.yd0{bottom:826.167000px;}
.y7{bottom:828.571500px;}
.y48{bottom:829.767000px;}
.y175{bottom:829.870500px;}
.yb2{bottom:829.875000px;}
.y191{bottom:837.436500px;}
.y7c{bottom:839.761500px;}
.y145{bottom:840.133500px;}
.y98{bottom:840.727500px;}
.y123{bottom:843.516000px;}
.ycf{bottom:846.490500px;}
.y2c{bottom:850.090500px;}
.y6{bottom:850.987500px;}
.y144{bottom:860.457000px;}
.y122{bottom:863.839500px;}
.yce{bottom:866.815500px;}
.y2b{bottom:870.414000px;}
.y97{bottom:878.401500px;}
.y143{bottom:880.780500px;}
.ycd{bottom:887.139000px;}
.y5{bottom:889.243500px;}
.y2a{bottom:890.739000px;}
.y181{bottom:893.647500px;}
.y121{bottom:897.612000px;}
.y4{bottom:907.176000px;}
.y29{bottom:911.062500px;}
.ycc{bottom:914.082000px;}
.y120{bottom:917.937000px;}
.y3{bottom:929.592000px;}
.y28{bottom:931.386000px;}
.ycb{bottom:934.405500px;}
.y11f{bottom:938.260500px;}
.y27{bottom:951.709500px;}
.y26{bottom:972.033000px;}
.y2{bottom:985.782000px;}
.y25{bottom:992.358000px;}
.y160{bottom:994.812000px;}
.y1{bottom:1012.681500px;}
.y24{bottom:1072.576500px;}
.h8{height:30.036385px;}
.he{height:31.934641px;}
.hd{height:34.287370px;}
.hc{height:36.544034px;}
.h5{height:36.881545px;}
.h7{height:45.054578px;}
.h4{height:50.060307px;}
.h6{height:54.816302px;}
.h3{height:54.850955px;}
.h9{height:60.426194px;}
.ha{height:60.971520px;}
.hb{height:63.808346px;}
.h10{height:64.632302px;}
.hf{height:64.638302px;}
.h2{height:72.087123px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:177.018000px;}
.xc{left:179.710500px;}
.x1{left:189.576000px;}
.x26{left:193.288500px;}
.x17{left:194.910000px;}
.x11{left:195.979500px;}
.x13{left:198.144000px;}
.x12{left:199.747500px;}
.xd{left:201.228000px;}
.xb{left:202.423500px;}
.x20{left:203.461500px;}
.x25{left:206.199000px;}
.x10{left:217.375500px;}
.x7{left:224.563500px;}
.xf{left:227.817000px;}
.x1f{left:232.642500px;}
.x21{left:238.971000px;}
.x18{left:243.892500px;}
.x16{left:250.405500px;}
.x1e{left:255.223500px;}
.x24{left:266.352000px;}
.x23{left:269.571000px;}
.x22{left:280.666500px;}
.xe{left:292.662000px;}
.x1b{left:323.964000px;}
.x1c{left:334.960500px;}
.x9{left:355.786500px;}
.x8{left:359.761500px;}
.x2{left:364.236000px;}
.x5{left:367.554000px;}
.x4{left:371.118000px;}
.x6{left:375.241500px;}
.x3{left:393.502500px;}
.x14{left:462.658500px;}
.x19{left:469.440000px;}
.x15{left:476.730000px;}
.x1d{left:526.986000px;}
.x1a{left:576.630000px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v3{vertical-align:-8.725333pt;}
.v4{vertical-align:-6.378667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.730667pt;}
.v1{vertical-align:21.120000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls81{letter-spacing:0.001430pt;}
.ls51{letter-spacing:0.001438pt;}
.ls5a{letter-spacing:0.003359pt;}
.ls68{letter-spacing:0.004341pt;}
.ls12{letter-spacing:1.145155pt;}
.ls20{letter-spacing:1.150489pt;}
.ls18{letter-spacing:1.274754pt;}
.ls23{letter-spacing:1.492748pt;}
.ls89{letter-spacing:1.574765pt;}
.ls1a{letter-spacing:1.891629pt;}
.ls16{letter-spacing:1.896962pt;}
.lsf{letter-spacing:2.056668pt;}
.ls1e{letter-spacing:2.062001pt;}
.ls2d{letter-spacing:2.590980pt;}
.ls2b{letter-spacing:2.596314pt;}
.ls19{letter-spacing:2.653623pt;}
.ls45{letter-spacing:2.654688pt;}
.ls70{letter-spacing:2.655099pt;}
.ls21{letter-spacing:2.655414pt;}
.ls4b{letter-spacing:2.655585pt;}
.ls8d{letter-spacing:2.655586pt;}
.ls4a{letter-spacing:2.657399pt;}
.ls7{letter-spacing:2.657507pt;}
.lsc{letter-spacing:2.658976pt;}
.ls75{letter-spacing:2.659153pt;}
.ls2e{letter-spacing:2.660748pt;}
.ls85{letter-spacing:4.013072pt;}
.ls15{letter-spacing:4.019629pt;}
.ls60{letter-spacing:4.831946pt;}
.ls6a{letter-spacing:5.203340pt;}
.ls29{letter-spacing:5.502980pt;}
.lsa8{letter-spacing:5.919442pt;}
.ls0{letter-spacing:6.727347pt;}
.ls38{letter-spacing:7.259106pt;}
.ls3a{letter-spacing:7.264439pt;}
.lsd{letter-spacing:7.677687pt;}
.ls55{letter-spacing:7.749779pt;}
.ls50{letter-spacing:7.915572pt;}
.lse{letter-spacing:7.920906pt;}
.ls8{letter-spacing:8.072354pt;}
.ls3d{letter-spacing:8.543982pt;}
.lsa9{letter-spacing:8.575982pt;}
.ls25{letter-spacing:8.613300pt;}
.ls1d{letter-spacing:8.618634pt;}
.ls47{letter-spacing:8.861687pt;}
.ls64{letter-spacing:8.956032pt;}
.ls5d{letter-spacing:8.961365pt;}
.ls78{letter-spacing:9.326037pt;}
.ls7c{letter-spacing:9.432703pt;}
.ls5f{letter-spacing:9.555805pt;}
.ls6f{letter-spacing:9.561138pt;}
.ls35{letter-spacing:9.562649pt;}
.ls37{letter-spacing:9.567492pt;}
.ls56{letter-spacing:9.705674pt;}
.ls2a{letter-spacing:9.868105pt;}
.ls4c{letter-spacing:10.010266pt;}
.ls7d{letter-spacing:10.015499pt;}
.ls72{letter-spacing:10.085315pt;}
.ls31{letter-spacing:10.095982pt;}
.ls33{letter-spacing:10.100825pt;}
.ls17{letter-spacing:10.306525pt;}
.ls4e{letter-spacing:10.320367pt;}
.ls59{letter-spacing:10.390772pt;}
.ls58{letter-spacing:10.392692pt;}
.ls43{letter-spacing:10.437315pt;}
.ls4{letter-spacing:11.077315pt;}
.ls92{letter-spacing:11.235370pt;}
.ls48{letter-spacing:11.313437pt;}
.ls44{letter-spacing:11.423982pt;}
.ls61{letter-spacing:11.470049pt;}
.ls40{letter-spacing:11.542769pt;}
.ls6e{letter-spacing:11.694049pt;}
.ls46{letter-spacing:12.204103pt;}
.lsb{letter-spacing:12.271982pt;}
.ls9{letter-spacing:12.277315pt;}
.ls2c{letter-spacing:12.527414pt;}
.ls5e{letter-spacing:12.632715pt;}
.ls42{letter-spacing:12.769437pt;}
.ls14{letter-spacing:12.926999pt;}
.ls5c{letter-spacing:13.025438pt;}
.ls63{letter-spacing:13.027370pt;}
.ls3b{letter-spacing:13.098649pt;}
.ls41{letter-spacing:13.201435pt;}
.ls69{letter-spacing:13.374049pt;}
.ls2f{letter-spacing:13.626649pt;}
.ls1f{letter-spacing:13.700748pt;}
.ls8a{letter-spacing:13.887492pt;}
.ls86{letter-spacing:13.902533pt;}
.ls28{letter-spacing:14.113424pt;}
.ls87{letter-spacing:14.150772pt;}
.ls49{letter-spacing:14.198770pt;}
.ls4d{letter-spacing:14.315887pt;}
.ls6d{letter-spacing:14.346949pt;}
.ls53{letter-spacing:14.433438pt;}
.ls65{letter-spacing:14.542049pt;}
.ls67{letter-spacing:14.552692pt;}
.ls6c{letter-spacing:14.552703pt;}
.ls6b{letter-spacing:14.553674pt;}
.ls3c{letter-spacing:14.725315pt;}
.ls6{letter-spacing:14.921727pt;}
.lsa{letter-spacing:14.932021pt;}
.ls1c{letter-spacing:14.932748pt;}
.ls26{letter-spacing:14.938081pt;}
.ls84{letter-spacing:14.964333pt;}
.ls36{letter-spacing:15.065647pt;}
.lsaa{letter-spacing:15.221315pt;}
.ls80{letter-spacing:15.486999pt;}
.ls13{letter-spacing:15.588748pt;}
.ls32{letter-spacing:15.598980pt;}
.ls88{letter-spacing:15.604333pt;}
.ls5{letter-spacing:16.501315pt;}
.ls8b{letter-spacing:16.982239pt;}
.ls82{letter-spacing:17.004099pt;}
.ls34{letter-spacing:17.360439pt;}
.ls54{letter-spacing:17.451113pt;}
.ls57{letter-spacing:17.456446pt;}
.ls77{letter-spacing:17.462239pt;}
.ls3e{letter-spacing:17.583982pt;}
.ls3f{letter-spacing:17.674649pt;}
.ls7a{letter-spacing:17.830239pt;}
.ls62{letter-spacing:18.227340pt;}
.ls9b{letter-spacing:18.389779pt;}
.ls9d{letter-spacing:18.480906pt;}
.ls76{letter-spacing:18.502699pt;}
.ls39{letter-spacing:18.601647pt;}
.ls79{letter-spacing:18.876032pt;}
.ls30{letter-spacing:19.135982pt;}
.lsa2{letter-spacing:19.339572pt;}
.ls10{letter-spacing:19.364748pt;}
.ls7f{letter-spacing:19.447739pt;}
.ls9c{letter-spacing:19.516032pt;}
.ls1b{letter-spacing:19.963572pt;}
.ls7e{letter-spacing:19.987334pt;}
.ls5b{letter-spacing:20.000940pt;}
.ls8c{letter-spacing:20.198239pt;}
.ls73{letter-spacing:20.208906pt;}
.ls98{letter-spacing:20.235113pt;}
.lsa1{letter-spacing:20.385365pt;}
.ls97{letter-spacing:20.406239pt;}
.lsa5{letter-spacing:20.532775pt;}
.ls27{letter-spacing:20.932748pt;}
.ls74{letter-spacing:21.254699pt;}
.ls24{letter-spacing:21.891334pt;}
.ls93{letter-spacing:22.064906pt;}
.ls52{letter-spacing:22.187113pt;}
.lsa6{letter-spacing:22.363113pt;}
.lsa7{letter-spacing:22.534239pt;}
.ls7b{letter-spacing:22.862001pt;}
.ls22{letter-spacing:22.888668pt;}
.lsa3{letter-spacing:23.051113pt;}
.lsa4{letter-spacing:23.216906pt;}
.ls8e{letter-spacing:23.483572pt;}
.ls96{letter-spacing:23.797779pt;}
.ls95{letter-spacing:23.963572pt;}
.ls66{letter-spacing:24.110471pt;}
.ls91{letter-spacing:24.202081pt;}
.ls11{letter-spacing:24.232668pt;}
.ls8f{letter-spacing:24.529365pt;}
.ls4f{letter-spacing:26.032446pt;}
.ls99{letter-spacing:26.448446pt;}
.ls71{letter-spacing:26.609365pt;}
.ls9a{letter-spacing:26.619572pt;}
.ls83{letter-spacing:27.598001pt;}
.ls9e{letter-spacing:28.511497pt;}
.ls2{letter-spacing:29.091382pt;}
.ls3{letter-spacing:29.092825pt;}
.ls94{letter-spacing:29.092830pt;}
.lsa0{letter-spacing:30.619572pt;}
.ls9f{letter-spacing:31.660032pt;}
.ls90{letter-spacing:43.939382pt;}
.ws84{word-spacing:-56.087319pt;}
.ws76{word-spacing:-40.976941pt;}
.wsf3{word-spacing:-38.256533pt;}
.ws1b{word-spacing:-29.090933pt;}
.ws5e{word-spacing:-23.910400pt;}
.ws3d{word-spacing:-22.418329pt;}
.ws27{word-spacing:-19.781835pt;}
.ws65{word-spacing:-19.723653pt;}
.wsd5{word-spacing:-19.706290pt;}
.wsd6{word-spacing:-19.693192pt;}
.ws98{word-spacing:-19.665471pt;}
.ws10{word-spacing:-19.549107pt;}
.wse9{word-spacing:-19.537210pt;}
.ws64{word-spacing:-19.490925pt;}
.ws50{word-spacing:-19.432743pt;}
.ws8d{word-spacing:-19.374562pt;}
.ws73{word-spacing:-19.316380pt;}
.ws12{word-spacing:-19.258198pt;}
.ws8b{word-spacing:-19.200016pt;}
.ws88{word-spacing:-19.141834pt;}
.ws13{word-spacing:-19.083652pt;}
.ws5a{word-spacing:-19.025470pt;}
.ws99{word-spacing:-18.967289pt;}
.ws7{word-spacing:-18.850925pt;}
.ws30{word-spacing:-18.792743pt;}
.ws3f{word-spacing:-18.734561pt;}
.ws72{word-spacing:-18.681993pt;}
.wsac{word-spacing:-18.676379pt;}
.wsc5{word-spacing:-18.618197pt;}
.wsa4{word-spacing:-18.560015pt;}
.wsec{word-spacing:-18.558742pt;}
.wsf0{word-spacing:-18.509170pt;}
.wsf1{word-spacing:-18.501834pt;}
.ws5f{word-spacing:-18.443652pt;}
.wsb9{word-spacing:-18.327288pt;}
.wsef{word-spacing:-18.269860pt;}
.ws7d{word-spacing:-18.269106pt;}
.ws79{word-spacing:-18.211614pt;}
.wsf2{word-spacing:-18.210924pt;}
.ws1c{word-spacing:-18.152742pt;}
.ws39{word-spacing:-18.094561pt;}
.ws7c{word-spacing:-18.047199pt;}
.ws4d{word-spacing:-18.036379pt;}
.wsdf{word-spacing:-18.024449pt;}
.ws81{word-spacing:-17.978330pt;}
.ws2b{word-spacing:-17.978197pt;}
.ws7e{word-spacing:-17.920015pt;}
.ws8{word-spacing:-17.861833pt;}
.wsd1{word-spacing:-17.858902pt;}
.ws3b{word-spacing:-17.803651pt;}
.ws3c{word-spacing:-17.687287pt;}
.ws38{word-spacing:-17.629106pt;}
.ws4b{word-spacing:-17.570924pt;}
.ws37{word-spacing:-17.512742pt;}
.ws62{word-spacing:-17.454560pt;}
.wse0{word-spacing:-17.401922pt;}
.ws55{word-spacing:-17.396378pt;}
.wscf{word-spacing:-17.396124pt;}
.ws87{word-spacing:-17.338196pt;}
.ws86{word-spacing:-17.280014pt;}
.ws97{word-spacing:-17.221833pt;}
.wsda{word-spacing:-17.215150pt;}
.wsad{word-spacing:-17.163651pt;}
.wsa8{word-spacing:-17.105469pt;}
.ws78{word-spacing:-17.047287pt;}
.ws44{word-spacing:-16.989105pt;}
.ws43{word-spacing:-16.939315pt;}
.ws42{word-spacing:-16.930923pt;}
.ws41{word-spacing:-16.872741pt;}
.ws92{word-spacing:-16.816095pt;}
.ws1{word-spacing:-16.814559pt;}
.wsb2{word-spacing:-16.756378pt;}
.wsa2{word-spacing:-16.698196pt;}
.wsc1{word-spacing:-16.644182pt;}
.wsa{word-spacing:-16.640014pt;}
.wsdb{word-spacing:-16.581832pt;}
.ws4c{word-spacing:-16.523650pt;}
.ws26{word-spacing:-16.465468pt;}
.wse{word-spacing:-16.407286pt;}
.ws31{word-spacing:-16.349105pt;}
.wsa7{word-spacing:-16.293297pt;}
.ws40{word-spacing:-16.290923pt;}
.ws6b{word-spacing:-16.259072pt;}
.ws8e{word-spacing:-16.232741pt;}
.ws6c{word-spacing:-16.211251pt;}
.ws4{word-spacing:-16.174559pt;}
.wsf{word-spacing:-16.116098pt;}
.ws6e{word-spacing:-16.065054pt;}
.wsc0{word-spacing:-16.064210pt;}
.ws6f{word-spacing:-16.058195pt;}
.wsd{word-spacing:-16.000013pt;}
.ws29{word-spacing:-15.941831pt;}
.wsa0{word-spacing:-15.883650pt;}
.ws5d{word-spacing:-15.828685pt;}
.ws69{word-spacing:-15.825468pt;}
.ws9a{word-spacing:-15.767286pt;}
.ws35{word-spacing:-15.709104pt;}
.wsb{word-spacing:-15.650922pt;}
.ws2c{word-spacing:-15.592740pt;}
.wsb6{word-spacing:-15.589581pt;}
.ws60{word-spacing:-15.534558pt;}
.wse6{word-spacing:-15.518760pt;}
.ws90{word-spacing:-15.476377pt;}
.ws56{word-spacing:-15.418195pt;}
.wsc7{word-spacing:-15.360013pt;}
.ws2{word-spacing:-15.355687pt;}
.ws25{word-spacing:-15.301831pt;}
.wsf8{word-spacing:-15.243649pt;}
.wscb{word-spacing:-15.207014pt;}
.ws2f{word-spacing:-15.185467pt;}
.ws2a{word-spacing:-15.127285pt;}
.wsc2{word-spacing:-15.119120pt;}
.wsc3{word-spacing:-15.114007pt;}
.wsab{word-spacing:-15.069103pt;}
.wsae{word-spacing:-15.063552pt;}
.ws34{word-spacing:-15.010922pt;}
.ws3e{word-spacing:-14.952740pt;}
.wsaf{word-spacing:-14.894558pt;}
.ws22{word-spacing:-14.836376pt;}
.ws47{word-spacing:-14.792887pt;}
.ws48{word-spacing:-14.778194pt;}
.ws80{word-spacing:-14.720012pt;}
.wsc4{word-spacing:-14.707603pt;}
.wsbf{word-spacing:-14.661830pt;}
.ws5b{word-spacing:-14.603649pt;}
.wsd7{word-spacing:-14.592690pt;}
.ws28{word-spacing:-14.545467pt;}
.ws5c{word-spacing:-14.487285pt;}
.ws91{word-spacing:-14.429103pt;}
.wsc{word-spacing:-14.370921pt;}
.wsd4{word-spacing:-14.312739pt;}
.ws24{word-spacing:-14.254557pt;}
.ws9f{word-spacing:-14.175207pt;}
.wse2{word-spacing:-14.128733pt;}
.ws59{word-spacing:-14.080012pt;}
.ws58{word-spacing:-14.021830pt;}
.wsf6{word-spacing:-13.963648pt;}
.ws5{word-spacing:-13.905466pt;}
.ws36{word-spacing:-13.847284pt;}
.wsca{word-spacing:-13.820211pt;}
.ws95{word-spacing:-13.789102pt;}
.ws7f{word-spacing:-13.730921pt;}
.wsa6{word-spacing:-13.672739pt;}
.ws68{word-spacing:-13.614557pt;}
.wse1{word-spacing:-13.556375pt;}
.ws75{word-spacing:-13.524622pt;}
.ws3{word-spacing:-13.512940pt;}
.ws8f{word-spacing:-13.498193pt;}
.wsd3{word-spacing:-13.440011pt;}
.wsd2{word-spacing:-13.423611pt;}
.ws1d{word-spacing:-13.381829pt;}
.ws93{word-spacing:-13.348446pt;}
.ws57{word-spacing:-13.323647pt;}
.wsf4{word-spacing:-13.265466pt;}
.wsd0{word-spacing:-13.207284pt;}
.ws9d{word-spacing:-13.149102pt;}
.ws23{word-spacing:-13.090920pt;}
.wse8{word-spacing:-13.032738pt;}
.ws7a{word-spacing:-12.974556pt;}
.ws32{word-spacing:-12.916374pt;}
.ws51{word-spacing:-12.858193pt;}
.wsce{word-spacing:-12.800011pt;}
.wsb0{word-spacing:-12.741829pt;}
.ws2e{word-spacing:-12.683647pt;}
.ws67{word-spacing:-12.625465pt;}
.ws4e{word-spacing:-12.567283pt;}
.wsba{word-spacing:-12.539371pt;}
.ws20{word-spacing:-12.509101pt;}
.wsc9{word-spacing:-12.481229pt;}
.wsb3{word-spacing:-12.450919pt;}
.ws74{word-spacing:-12.392738pt;}
.wsb1{word-spacing:-12.334556pt;}
.ws9{word-spacing:-12.276374pt;}
.ws9b{word-spacing:-12.160010pt;}
.wsea{word-spacing:-12.112251pt;}
.ws85{word-spacing:-12.101828pt;}
.ws1a{word-spacing:-12.043646pt;}
.ws21{word-spacing:-11.985465pt;}
.wse5{word-spacing:-11.979353pt;}
.wsa1{word-spacing:-11.956541pt;}
.ws33{word-spacing:-11.927283pt;}
.wsb7{word-spacing:-11.811738pt;}
.ws3a{word-spacing:-11.810919pt;}
.wsb4{word-spacing:-11.788797pt;}
.wsb5{word-spacing:-11.752737pt;}
.ws49{word-spacing:-11.694555pt;}
.ws89{word-spacing:-11.636373pt;}
.ws6{word-spacing:-11.520010pt;}
.ws54{word-spacing:-11.461828pt;}
.ws9e{word-spacing:-11.403646pt;}
.wsa9{word-spacing:-11.345464pt;}
.ws61{word-spacing:-11.287282pt;}
.ws7b{word-spacing:-11.170918pt;}
.ws71{word-spacing:-11.112737pt;}
.wsa5{word-spacing:-11.054555pt;}
.wsbe{word-spacing:-10.838773pt;}
.ws52{word-spacing:-10.821827pt;}
.ws83{word-spacing:-10.810265pt;}
.wsbc{word-spacing:-10.808321pt;}
.ws9c{word-spacing:-10.705463pt;}
.ws1e{word-spacing:-10.472736pt;}
.wseb{word-spacing:-10.414554pt;}
.ws66{word-spacing:-10.240009pt;}
.wsf5{word-spacing:-10.007281pt;}
.ws96{word-spacing:-9.949099pt;}
.wsc8{word-spacing:-9.890917pt;}
.wsaa{word-spacing:-9.832735pt;}
.wsf7{word-spacing:-9.774554pt;}
.wsc6{word-spacing:-9.716372pt;}
.ws70{word-spacing:-9.658190pt;}
.ws82{word-spacing:-9.483644pt;}
.ws2d{word-spacing:-9.367281pt;}
.ws11{word-spacing:-9.250917pt;}
.ws16{word-spacing:-9.213474pt;}
.wse7{word-spacing:-9.134553pt;}
.wscd{word-spacing:-8.610916pt;}
.ws6a{word-spacing:-8.320007pt;}
.wsfa{word-spacing:-7.854552pt;}
.wsbd{word-spacing:-7.840686pt;}
.wsbb{word-spacing:-7.838718pt;}
.wse4{word-spacing:-7.563643pt;}
.ws63{word-spacing:-6.807278pt;}
.ws94{word-spacing:-6.400005pt;}
.ws53{word-spacing:-5.410914pt;}
.wsf9{word-spacing:-5.178186pt;}
.wsed{word-spacing:-5.061822pt;}
.ws8c{word-spacing:-0.058182pt;}
.wsdd{word-spacing:-0.052364pt;}
.ws77{word-spacing:-0.042507pt;}
.ws17{word-spacing:0.000000pt;}
.wsd8{word-spacing:7.749833pt;}
.wse3{word-spacing:10.589419pt;}
.ws19{word-spacing:12.218192pt;}
.ws46{word-spacing:12.497169pt;}
.ws14{word-spacing:14.920090pt;}
.ws0{word-spacing:16.067744pt;}
.ws15{word-spacing:16.354714pt;}
.wsd9{word-spacing:23.048085pt;}
.wsde{word-spacing:24.477419pt;}
.wsdc{word-spacing:24.738752pt;}
.ws45{word-spacing:31.878903pt;}
.ws4f{word-spacing:31.880832pt;}
.ws1f{word-spacing:38.256533pt;}
.wscc{word-spacing:215.557240pt;}
.ws8a{word-spacing:215.964513pt;}
.wsb8{word-spacing:216.197241pt;}
.wsee{word-spacing:216.662695pt;}
.wsa3{word-spacing:217.186332pt;}
.ws4a{word-spacing:221.259063pt;}
.ws18{word-spacing:221.899063pt;}
.ws6d{word-spacing:222.364518pt;}
._16{margin-left:-9.661571pt;}
._1b{margin-left:-8.192618pt;}
._2{margin-left:-7.115715pt;}
._a{margin-left:-5.669862pt;}
._1{margin-left:-4.590784pt;}
._6{margin-left:-3.157762pt;}
._3{margin-left:-2.252871pt;}
._0{margin-left:-1.147696pt;}
._4{width:1.073293pt;}
._1a{width:2.866569pt;}
._21{width:4.302709pt;}
._22{width:6.117295pt;}
._18{width:7.160609pt;}
._b{width:8.378189pt;}
._c{width:9.377638pt;}
._9{width:10.821827pt;}
._17{width:12.156482pt;}
._20{width:13.091855pt;}
._7{width:14.005889pt;}
._8{width:15.751345pt;}
._f{width:17.496521pt;}
._5{width:18.586035pt;}
._11{width:19.533166pt;}
._1d{width:20.537919pt;}
._e{width:21.527291pt;}
._14{width:23.314987pt;}
._1e{width:25.176527pt;}
._d{width:26.705477pt;}
._12{width:28.648135pt;}
._10{width:29.757155pt;}
._19{width:31.360026pt;}
._23{width:33.185576pt;}
._24{width:38.296093pt;}
._1c{width:63.761067pt;}
._15{width:76.513067pt;}
._1f{width:99.335282pt;}
._13{width:104.455282pt;}
.fs4{font-size:31.880533pt;}
.fsa{font-size:32.411733pt;}
.fs9{font-size:38.256533pt;}
.fs7{font-size:38.787733pt;}
.fs6{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs8{font-size:52.363733pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:159.080000pt;}
.y96{bottom:198.930667pt;}
.y190{bottom:199.592000pt;}
.y15f{bottom:203.270667pt;}
.y1a5{bottom:205.064000pt;}
.y11e{bottom:206.024000pt;}
.y10c{bottom:208.120000pt;}
.y142{bottom:209.284000pt;}
.y22{bottom:209.437333pt;}
.y7b{bottom:210.301333pt;}
.y47{bottom:215.158667pt;}
.y13f{bottom:215.425333pt;}
.yb1{bottom:216.996000pt;}
.yca{bottom:216.997333pt;}
.y180{bottom:217.152000pt;}
.y18f{bottom:217.658667pt;}
.y95{bottom:217.882667pt;}
.y1a4{bottom:223.129333pt;}
.y21{bottom:224.049333pt;}
.y15e{bottom:224.597333pt;}
.y11d{bottom:224.976000pt;}
.y60{bottom:226.877333pt;}
.y10b{bottom:227.070667pt;}
.y7a{bottom:229.253333pt;}
.y46{bottom:233.224000pt;}
.y13e{bottom:234.377333pt;}
.yc9{bottom:235.062667pt;}
.y17f{bottom:235.217333pt;}
.y18e{bottom:235.724000pt;}
.y20{bottom:238.660000pt;}
.y94{bottom:239.341333pt;}
.y1a3{bottom:241.194667pt;}
.y15d{bottom:242.662667pt;}
.y174{bottom:243.716000pt;}
.y13d{bottom:244.904000pt;}
.y5f{bottom:244.944000pt;}
.y1b7{bottom:245.264000pt;}
.y11c{bottom:247.704000pt;}
.yb0{bottom:249.324000pt;}
.y10a{bottom:249.800000pt;}
.y45{bottom:251.290667pt;}
.y79{bottom:251.821333pt;}
.yc8{bottom:253.128000pt;}
.y17e{bottom:253.282667pt;}
.y18d{bottom:253.789333pt;}
.y93{bottom:257.406667pt;}
.y1a2{bottom:259.260000pt;}
.y13c{bottom:259.516000pt;}
.y15c{bottom:260.728000pt;}
.y173{bottom:261.781333pt;}
.y5e{bottom:263.009333pt;}
.y1b6{bottom:263.330667pt;}
.y1f{bottom:265.474667pt;}
.y11b{bottom:265.769333pt;}
.yaf{bottom:267.390667pt;}
.y109{bottom:267.865333pt;}
.y44{bottom:269.356000pt;}
.y78{bottom:269.888000pt;}
.yc7{bottom:271.193333pt;}
.y17d{bottom:271.349333pt;}
.y92{bottom:275.472000pt;}
.y1a1{bottom:277.325333pt;}
.y172{bottom:279.848000pt;}
.y5d{bottom:281.074667pt;}
.y1e{bottom:283.540000pt;}
.y11a{bottom:283.834667pt;}
.yae{bottom:285.456000pt;}
.y108{bottom:285.930667pt;}
.y13b{bottom:286.329333pt;}
.y43{bottom:287.421333pt;}
.yc6{bottom:289.258667pt;}
.y18c{bottom:290.073333pt;}
.y1b5{bottom:291.598667pt;}
.y91{bottom:293.538667pt;}
.y1a0{bottom:295.392000pt;}
.y15b{bottom:296.366667pt;}
.y17c{bottom:301.369333pt;}
.y1d{bottom:301.605333pt;}
.yad{bottom:303.521333pt;}
.y77{bottom:303.893333pt;}
.y107{bottom:303.996000pt;}
.y13a{bottom:304.394667pt;}
.y42{bottom:305.486667pt;}
.y171{bottom:306.566667pt;}
.yc5{bottom:307.324000pt;}
.y5c{bottom:309.198667pt;}
.y1b4{bottom:309.664000pt;}
.y90{bottom:311.604000pt;}
.y119{bottom:311.958667pt;}
.y19f{bottom:313.457333pt;}
.yf8{bottom:319.436000pt;}
.y1c{bottom:319.670667pt;}
.yac{bottom:321.586667pt;}
.y76{bottom:321.958667pt;}
.y106{bottom:322.062667pt;}
.y139{bottom:322.460000pt;}
.y41{bottom:323.552000pt;}
.y170{bottom:324.632000pt;}
.yc4{bottom:325.390667pt;}
.y8f{bottom:329.669333pt;}
.y17b{bottom:331.390667pt;}
.y19e{bottom:331.522667pt;}
.y15a{bottom:332.004000pt;}
.yf7{bottom:337.501333pt;}
.y1b{bottom:337.736000pt;}
.y1b3{bottom:337.932000pt;}
.yab{bottom:339.652000pt;}
.y75{bottom:340.024000pt;}
.y105{bottom:340.128000pt;}
.y138{bottom:340.526667pt;}
.y40{bottom:341.618667pt;}
.ye3{bottom:343.456000pt;}
.y8e{bottom:347.734667pt;}
.y17a{bottom:349.456000pt;}
.y5b{bottom:349.588000pt;}
.y159{bottom:350.069333pt;}
.y118{bottom:352.348000pt;}
.y16f{bottom:353.333333pt;}
.yf6{bottom:355.566667pt;}
.y1b2{bottom:355.997333pt;}
.yaa{bottom:357.718667pt;}
.y74{bottom:358.090667pt;}
.y104{bottom:358.193333pt;}
.yc3{bottom:358.282667pt;}
.y137{bottom:358.592000pt;}
.y3f{bottom:359.684000pt;}
.ye2{bottom:361.521333pt;}
.y1a{bottom:363.772000pt;}
.y8d{bottom:365.800000pt;}
.y5a{bottom:367.653333pt;}
.y158{bottom:368.134667pt;}
.y117{bottom:370.414667pt;}
.y16e{bottom:371.398667pt;}
.y73{bottom:376.156000pt;}
.y103{bottom:376.258667pt;}
.yc2{bottom:376.348000pt;}
.y136{bottom:376.657333pt;}
.y3e{bottom:377.749333pt;}
.ye1{bottom:379.586667pt;}
.y19{bottom:381.837333pt;}
.yf5{bottom:382.750667pt;}
.y8c{bottom:383.866667pt;}
.y1b1{bottom:384.265333pt;}
.y59{bottom:385.718667pt;}
.y157{bottom:386.200000pt;}
.y116{bottom:388.480000pt;}
.ya9{bottom:390.046667pt;}
.y179{bottom:391.717333pt;}
.y72{bottom:394.221333pt;}
.y102{bottom:394.324000pt;}
.yc1{bottom:394.413333pt;}
.y135{bottom:394.722667pt;}
.y3d{bottom:395.814667pt;}
.y18{bottom:399.904000pt;}
.y16d{bottom:400.098667pt;}
.yf4{bottom:400.817333pt;}
.y8b{bottom:401.932000pt;}
.y1b0{bottom:402.330667pt;}
.y58{bottom:403.785333pt;}
.y156{bottom:404.266667pt;}
.y115{bottom:406.545333pt;}
.ye0{bottom:407.710667pt;}
.y71{bottom:412.286667pt;}
.y101{bottom:412.390667pt;}
.y134{bottom:412.788000pt;}
.y3c{bottom:413.880000pt;}
.y17{bottom:417.969333pt;}
.y16c{bottom:418.164000pt;}
.y8a{bottom:419.997333pt;}
.y1af{bottom:420.396000pt;}
.y57{bottom:421.850667pt;}
.y155{bottom:422.332000pt;}
.ya8{bottom:423.054667pt;}
.y114{bottom:424.610667pt;}
.yc0{bottom:427.305333pt;}
.ya6{bottom:428.072000pt;}
.y70{bottom:430.352000pt;}
.y100{bottom:430.456000pt;}
.y133{bottom:430.854667pt;}
.yf3{bottom:430.993333pt;}
.y3b{bottom:431.945333pt;}
.ya7{bottom:435.264000pt;}
.y16{bottom:436.034667pt;}
.y16b{bottom:436.229333pt;}
.y89{bottom:438.062667pt;}
.y1ae{bottom:438.461333pt;}
.y56{bottom:439.916000pt;}
.y154{bottom:440.397333pt;}
.y113{bottom:442.676000pt;}
.ybf{bottom:445.370667pt;}
.y18b{bottom:445.513333pt;}
.ydf{bottom:448.006667pt;}
.y6f{bottom:448.417333pt;}
.yff{bottom:448.521333pt;}
.y132{bottom:448.920000pt;}
.yf2{bottom:449.058667pt;}
.y3a{bottom:450.012000pt;}
.y15{bottom:454.100000pt;}
.y88{bottom:456.128000pt;}
.y55{bottom:457.981333pt;}
.y153{bottom:458.462667pt;}
.y112{bottom:460.742667pt;}
.y16a{bottom:462.949333pt;}
.ybe{bottom:463.436000pt;}
.y18a{bottom:463.578667pt;}
.yde{bottom:466.072000pt;}
.ya5{bottom:466.098667pt;}
.y6e{bottom:466.484000pt;}
.yfe{bottom:466.586667pt;}
.y1ad{bottom:466.729333pt;}
.y131{bottom:466.985333pt;}
.yf1{bottom:467.124000pt;}
.y39{bottom:468.077333pt;}
.y14{bottom:472.165333pt;}
.y87{bottom:474.194667pt;}
.y54{bottom:476.046667pt;}
.y111{bottom:478.808000pt;}
.y169{bottom:481.014667pt;}
.ybd{bottom:481.502667pt;}
.y189{bottom:481.644000pt;}
.ydd{bottom:484.137333pt;}
.ya4{bottom:484.164000pt;}
.yfd{bottom:484.652000pt;}
.y1ac{bottom:484.796000pt;}
.yf0{bottom:485.190667pt;}
.y152{bottom:485.380000pt;}
.y38{bottom:486.142667pt;}
.y13{bottom:490.232000pt;}
.y6d{bottom:490.526667pt;}
.y86{bottom:492.260000pt;}
.y53{bottom:494.113333pt;}
.y130{bottom:497.006667pt;}
.y168{bottom:499.080000pt;}
.ybc{bottom:499.568000pt;}
.ydc{bottom:502.202667pt;}
.yfc{bottom:502.718667pt;}
.y1ab{bottom:502.861333pt;}
.yef{bottom:503.256000pt;}
.y151{bottom:503.445333pt;}
.y37{bottom:504.208000pt;}
.y12{bottom:508.297333pt;}
.y6c{bottom:508.592000pt;}
.y110{bottom:508.828000pt;}
.y19d{bottom:512.178667pt;}
.y12f{bottom:515.072000pt;}
.y188{bottom:515.649333pt;}
.ya3{bottom:516.492000pt;}
.y167{bottom:517.146667pt;}
.ybb{bottom:517.633333pt;}
.ydb{bottom:520.268000pt;}
.y85{bottom:520.384000pt;}
.yfb{bottom:520.784000pt;}
.y1aa{bottom:520.926667pt;}
.yee{bottom:521.321333pt;}
.y150{bottom:521.510667pt;}
.y36{bottom:522.273333pt;}
.y11{bottom:526.362667pt;}
.y6b{bottom:526.657333pt;}
.y10f{bottom:526.894667pt;}
.y52{bottom:527.601333pt;}
.y19c{bottom:530.244000pt;}
.y178{bottom:531.217333pt;}
.y187{bottom:533.716000pt;}
.ya2{bottom:534.557333pt;}
.y166{bottom:535.212000pt;}
.yba{bottom:535.698667pt;}
.yda{bottom:538.334667pt;}
.yfa{bottom:538.849333pt;}
.y1a9{bottom:538.992000pt;}
.y12e{bottom:539.114667pt;}
.yed{bottom:539.386667pt;}
.y14f{bottom:539.576000pt;}
.y35{bottom:540.340000pt;}
.y10{bottom:544.428000pt;}
.y6a{bottom:544.724000pt;}
.y10e{bottom:544.960000pt;}
.y19b{bottom:548.309333pt;}
.y177{bottom:549.282667pt;}
.y186{bottom:551.781333pt;}
.ya1{bottom:552.622667pt;}
.y165{bottom:553.277333pt;}
.yd9{bottom:556.400000pt;}
.yf9{bottom:556.914667pt;}
.y12d{bottom:557.180000pt;}
.yec{bottom:557.452000pt;}
.y14e{bottom:557.641333pt;}
.y34{bottom:558.405333pt;}
.y84{bottom:560.213333pt;}
.yf{bottom:562.493333pt;}
.y69{bottom:562.789333pt;}
.y10d{bottom:563.025333pt;}
.y141{bottom:563.492000pt;}
.y19a{bottom:566.374667pt;}
.y1a8{bottom:567.260000pt;}
.yb9{bottom:568.590667pt;}
.y185{bottom:569.846667pt;}
.y164{bottom:571.342667pt;}
.yd8{bottom:574.465333pt;}
.y51{bottom:574.980000pt;}
.y12c{bottom:575.246667pt;}
.yeb{bottom:575.518667pt;}
.y14d{bottom:575.708000pt;}
.y33{bottom:576.470667pt;}
.y83{bottom:578.278667pt;}
.ye{bottom:580.560000pt;}
.ya0{bottom:580.746667pt;}
.y140{bottom:581.557333pt;}
.y199{bottom:584.441333pt;}
.y1a7{bottom:585.325333pt;}
.yb8{bottom:586.656000pt;}
.y184{bottom:587.912000pt;}
.y163{bottom:589.408000pt;}
.yd7{bottom:592.530667pt;}
.y50{bottom:593.045333pt;}
.y12b{bottom:593.312000pt;}
.y14c{bottom:593.773333pt;}
.y32{bottom:594.536000pt;}
.y176{bottom:595.881333pt;}
.y82{bottom:596.344000pt;}
.y68{bottom:596.794667pt;}
.yd{bottom:598.625333pt;}
.yea{bottom:602.348000pt;}
.y198{bottom:602.506667pt;}
.yb7{bottom:604.721333pt;}
.y183{bottom:605.977333pt;}
.y162{bottom:607.474667pt;}
.yd6{bottom:610.596000pt;}
.y4f{bottom:611.112000pt;}
.y12a{bottom:611.377333pt;}
.y31{bottom:612.601333pt;}
.y81{bottom:614.409333pt;}
.y67{bottom:614.860000pt;}
.yc{bottom:616.690667pt;}
.y1a6{bottom:618.813333pt;}
.ye9{bottom:620.413333pt;}
.y197{bottom:620.572000pt;}
.y14b{bottom:620.689333pt;}
.y9f{bottom:620.854667pt;}
.yd5{bottom:628.662667pt;}
.y4e{bottom:629.177333pt;}
.y30{bottom:630.668000pt;}
.y80{bottom:632.474667pt;}
.y66{bottom:632.926667pt;}
.yb6{bottom:637.613333pt;}
.ye8{bottom:638.478667pt;}
.y196{bottom:638.637333pt;}
.y14a{bottom:638.754667pt;}
.y9e{bottom:638.920000pt;}
.y129{bottom:641.397333pt;}
.y161{bottom:642.437333pt;}
.yd4{bottom:646.728000pt;}
.y4d{bottom:647.242667pt;}
.y2f{bottom:648.733333pt;}
.yb{bottom:650.696000pt;}
.y65{bottom:650.992000pt;}
.y182{bottom:652.576000pt;}
.yb5{bottom:655.680000pt;}
.ye7{bottom:656.544000pt;}
.y195{bottom:656.702667pt;}
.y149{bottom:656.821333pt;}
.y9d{bottom:656.985333pt;}
.y128{bottom:659.464000pt;}
.y7f{bottom:659.721333pt;}
.yd3{bottom:664.793333pt;}
.y4c{bottom:665.308000pt;}
.ya{bottom:666.636000pt;}
.y2e{bottom:666.798667pt;}
.y64{bottom:669.057333pt;}
.yb4{bottom:673.745333pt;}
.ye6{bottom:674.609333pt;}
.y194{bottom:674.769333pt;}
.y9c{bottom:675.050667pt;}
.y127{bottom:677.529333pt;}
.yd2{bottom:682.858667pt;}
.y4b{bottom:683.373333pt;}
.y148{bottom:683.737333pt;}
.y9{bottom:686.561333pt;}
.y63{bottom:687.122667pt;}
.y7e{bottom:688.633333pt;}
.yb3{bottom:691.810667pt;}
.ye5{bottom:692.676000pt;}
.y193{bottom:692.834667pt;}
.y9b{bottom:693.116000pt;}
.y126{bottom:695.594667pt;}
.y2d{bottom:700.286667pt;}
.yd1{bottom:700.924000pt;}
.y4a{bottom:701.440000pt;}
.y147{bottom:701.802667pt;}
.y62{bottom:705.188000pt;}
.ye4{bottom:710.741333pt;}
.y192{bottom:710.900000pt;}
.y9a{bottom:711.182667pt;}
.y125{bottom:713.660000pt;}
.y7d{bottom:717.544000pt;}
.y49{bottom:719.505333pt;}
.y8{bottom:720.568000pt;}
.y146{bottom:728.720000pt;}
.y99{bottom:729.248000pt;}
.y124{bottom:731.725333pt;}
.y61{bottom:733.312000pt;}
.yd0{bottom:734.370667pt;}
.y7{bottom:736.508000pt;}
.y48{bottom:737.570667pt;}
.y175{bottom:737.662667pt;}
.yb2{bottom:737.666667pt;}
.y191{bottom:744.388000pt;}
.y7c{bottom:746.454667pt;}
.y145{bottom:746.785333pt;}
.y98{bottom:747.313333pt;}
.y123{bottom:749.792000pt;}
.ycf{bottom:752.436000pt;}
.y2c{bottom:755.636000pt;}
.y6{bottom:756.433333pt;}
.y144{bottom:764.850667pt;}
.y122{bottom:767.857333pt;}
.yce{bottom:770.502667pt;}
.y2b{bottom:773.701333pt;}
.y97{bottom:780.801333pt;}
.y143{bottom:782.916000pt;}
.ycd{bottom:788.568000pt;}
.y5{bottom:790.438667pt;}
.y2a{bottom:791.768000pt;}
.y181{bottom:794.353333pt;}
.y121{bottom:797.877333pt;}
.y4{bottom:806.378667pt;}
.y29{bottom:809.833333pt;}
.ycc{bottom:812.517333pt;}
.y120{bottom:815.944000pt;}
.y3{bottom:826.304000pt;}
.y28{bottom:827.898667pt;}
.ycb{bottom:830.582667pt;}
.y11f{bottom:834.009333pt;}
.y27{bottom:845.964000pt;}
.y26{bottom:864.029333pt;}
.y2{bottom:876.250667pt;}
.y25{bottom:882.096000pt;}
.y160{bottom:884.277333pt;}
.y1{bottom:900.161333pt;}
.y24{bottom:953.401333pt;}
.h8{height:26.699009pt;}
.he{height:28.386348pt;}
.hd{height:30.477662pt;}
.hc{height:32.483586pt;}
.h5{height:32.783596pt;}
.h7{height:40.048514pt;}
.h4{height:44.498051pt;}
.h6{height:48.725602pt;}
.h3{height:48.756404pt;}
.h9{height:53.712173pt;}
.ha{height:54.196907pt;}
.hb{height:56.718530pt;}
.h10{height:57.450935pt;}
.hf{height:57.456269pt;}
.h2{height:64.077443pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:157.349333pt;}
.xc{left:159.742667pt;}
.x1{left:168.512000pt;}
.x26{left:171.812000pt;}
.x17{left:173.253333pt;}
.x11{left:174.204000pt;}
.x13{left:176.128000pt;}
.x12{left:177.553333pt;}
.xd{left:178.869333pt;}
.xb{left:179.932000pt;}
.x20{left:180.854667pt;}
.x25{left:183.288000pt;}
.x10{left:193.222667pt;}
.x7{left:199.612000pt;}
.xf{left:202.504000pt;}
.x1f{left:206.793333pt;}
.x21{left:212.418667pt;}
.x18{left:216.793333pt;}
.x16{left:222.582667pt;}
.x1e{left:226.865333pt;}
.x24{left:236.757333pt;}
.x23{left:239.618667pt;}
.x22{left:249.481333pt;}
.xe{left:260.144000pt;}
.x1b{left:287.968000pt;}
.x1c{left:297.742667pt;}
.x9{left:316.254667pt;}
.x8{left:319.788000pt;}
.x2{left:323.765333pt;}
.x5{left:326.714667pt;}
.x4{left:329.882667pt;}
.x6{left:333.548000pt;}
.x3{left:349.780000pt;}
.x14{left:411.252000pt;}
.x19{left:417.280000pt;}
.x15{left:423.760000pt;}
.x1d{left:468.432000pt;}
.x1a{left:512.560000pt;}
}




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