
    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_c6d88a3f686b679c744a3b27.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_fcc7ff9daf3657a0496b633c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_0c86f91a685b29db4d13c45e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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_d3b686fb3532469541546f86.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_d11b9f33fe93a6d31bab1079.woff')format("woff");}.ff5{font-family:ff5;line-height:0.844000;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_f76ee4cef36edd6b4e66d9ed.woff')format("woff");}.ff6{font-family:ff6;line-height:1.045000;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_2d45ab8b25b70b2fe3bdee9a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.816000;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_0526dab67b6229bd256603f0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;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_148d244123cc494319c7938f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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_0ebfa44e439e185b96ccff8e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_c19a8177071a4a94c0b60a5e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.706000;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_3b80871885b314bad21927a0.woff')format("woff");}.ffc{font-family:ffc;line-height:1.084961;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_a7bad47b03193fba252782ab.woff')format("woff");}.ffd{font-family:ffd;line-height:1.082520;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_31f1344919da5b896ed4a181.woff')format("woff");}.ffe{font-family:ffe;line-height:1.058594;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);}
.v4{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.000000px;}
.v5{vertical-align:15.840000px;}
.v3{vertical-align:23.808000px;}
.v1{vertical-align:188.400000px;}
.lsb3{letter-spacing:-7.560000px;}
.ls42{letter-spacing:-7.416000px;}
.lsa6{letter-spacing:-7.272000px;}
.lsa1{letter-spacing:-4.536000px;}
.ls83{letter-spacing:-2.376000px;}
.ls76{letter-spacing:-2.304000px;}
.ls82{letter-spacing:-2.232000px;}
.ls75{letter-spacing:-2.160000px;}
.ls9a{letter-spacing:-2.088000px;}
.lsaf{letter-spacing:-2.016000px;}
.ls6e{letter-spacing:-1.944000px;}
.ls54{letter-spacing:-1.872000px;}
.ls6d{letter-spacing:-1.800000px;}
.ls98{letter-spacing:-1.728000px;}
.ls80{letter-spacing:-1.584000px;}
.ls9b{letter-spacing:-1.512000px;}
.ls3d{letter-spacing:-1.440000px;}
.ls6b{letter-spacing:-1.368000px;}
.lsae{letter-spacing:-1.310400px;}
.ls3c{letter-spacing:-1.296000px;}
.ls45{letter-spacing:-1.224000px;}
.ls53{letter-spacing:-1.152000px;}
.ls27{letter-spacing:-1.080000px;}
.ls26{letter-spacing:-1.008000px;}
.ls37{letter-spacing:-0.936000px;}
.ls29{letter-spacing:-0.864000px;}
.ls38{letter-spacing:-0.792000px;}
.ls25{letter-spacing:-0.720000px;}
.ls2c{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.600000px;}
.ls1f{letter-spacing:-0.576000px;}
.ls1e{letter-spacing:-0.504000px;}
.ls28{letter-spacing:-0.432000px;}
.ls1c{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.288000px;}
.lsa3{letter-spacing:-0.252000px;}
.lsb8{letter-spacing:-0.240000px;}
.ls1b{letter-spacing:-0.216000px;}
.lsaa{letter-spacing:-0.201600px;}
.lsb{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.lsa5{letter-spacing:-0.050400px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000600px;}
.ls10{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.216000px;}
.lsb6{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.288000px;}
.lsb7{letter-spacing:0.300000px;}
.ls13{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.576000px;}
.lse{letter-spacing:0.637200px;}
.ls4{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.792000px;}
.ls36{letter-spacing:0.834000px;}
.ls24{letter-spacing:0.864000px;}
.ls1a{letter-spacing:0.936000px;}
.ls3b{letter-spacing:1.008000px;}
.ls35{letter-spacing:1.080000px;}
.ls44{letter-spacing:1.152000px;}
.ls30{letter-spacing:1.224000px;}
.ls31{letter-spacing:1.296000px;}
.ls52{letter-spacing:1.368000px;}
.ls18{letter-spacing:1.440000px;}
.ls33{letter-spacing:1.512000px;}
.ls17{letter-spacing:1.584000px;}
.ls32{letter-spacing:1.656000px;}
.ls34{letter-spacing:1.728000px;}
.ls21{letter-spacing:1.800000px;}
.ls4f{letter-spacing:1.872000px;}
.ls39{letter-spacing:1.944000px;}
.ls20{letter-spacing:2.016000px;}
.ls51{letter-spacing:2.088000px;}
.lsac{letter-spacing:2.160000px;}
.ls3a{letter-spacing:2.232000px;}
.ls59{letter-spacing:2.304000px;}
.ls2e{letter-spacing:2.376000px;}
.ls50{letter-spacing:2.448000px;}
.ls43{letter-spacing:2.520000px;}
.ls5f{letter-spacing:2.592000px;}
.ls2f{letter-spacing:2.664000px;}
.ls67{letter-spacing:2.736000px;}
.ls22{letter-spacing:2.808000px;}
.ls49{letter-spacing:2.880000px;}
.lsb2{letter-spacing:3.096000px;}
.ls23{letter-spacing:3.168000px;}
.ls48{letter-spacing:3.240000px;}
.ls41{letter-spacing:3.312000px;}
.ls66{letter-spacing:3.384000px;}
.ls96{letter-spacing:3.456000px;}
.ls9{letter-spacing:3.600000px;}
.ls69{letter-spacing:3.672000px;}
.ls91{letter-spacing:3.816000px;}
.lsb1{letter-spacing:3.888000px;}
.ls97{letter-spacing:3.960000px;}
.ls95{letter-spacing:4.032000px;}
.lsa9{letter-spacing:4.104000px;}
.ls60{letter-spacing:4.176000px;}
.lsc{letter-spacing:4.260000px;}
.ls90{letter-spacing:4.392000px;}
.lsb0{letter-spacing:4.464000px;}
.ls2{letter-spacing:4.560000px;}
.lsa8{letter-spacing:4.680000px;}
.lsb5{letter-spacing:4.752000px;}
.ls7a{letter-spacing:4.824000px;}
.lsb4{letter-spacing:5.040000px;}
.ls7c{letter-spacing:5.472000px;}
.ls7b{letter-spacing:5.544000px;}
.ls79{letter-spacing:5.976000px;}
.ls78{letter-spacing:6.768000px;}
.ls9d{letter-spacing:7.200000px;}
.ls40{letter-spacing:7.560000px;}
.lsad{letter-spacing:7.920000px;}
.ls46{letter-spacing:7.992000px;}
.ls0{letter-spacing:8.460000px;}
.ls3f{letter-spacing:8.928000px;}
.ls7e{letter-spacing:9.720000px;}
.ls6a{letter-spacing:9.792000px;}
.ls6c{letter-spacing:10.152000px;}
.ls99{letter-spacing:10.224000px;}
.ls81{letter-spacing:10.368000px;}
.ls92{letter-spacing:10.512000px;}
.ls3e{letter-spacing:10.584000px;}
.ls64{letter-spacing:10.656000px;}
.ls73{letter-spacing:10.728000px;}
.ls1{letter-spacing:10.740000px;}
.ls74{letter-spacing:10.800000px;}
.ls63{letter-spacing:10.872000px;}
.ls88{letter-spacing:10.944000px;}
.ls3{letter-spacing:10.982736px;}
.ls62{letter-spacing:11.016000px;}
.ls77{letter-spacing:11.088000px;}
.ls55{letter-spacing:11.160000px;}
.ls7d{letter-spacing:11.232000px;}
.ls4a{letter-spacing:11.304000px;}
.ls2d{letter-spacing:11.376000px;}
.ls85{letter-spacing:11.448000px;}
.ls4e{letter-spacing:11.520000px;}
.ls4c{letter-spacing:11.592000px;}
.ls4b{letter-spacing:11.664000px;}
.ls58{letter-spacing:11.736000px;}
.ls61{letter-spacing:11.808000px;}
.ls5d{letter-spacing:11.880000px;}
.ls56{letter-spacing:11.952000px;}
.ls5b{letter-spacing:12.024000px;}
.ls8f{letter-spacing:12.096000px;}
.ls57{letter-spacing:12.168000px;}
.ls9c{letter-spacing:12.240000px;}
.ls86{letter-spacing:12.312000px;}
.ls7f{letter-spacing:12.384000px;}
.ls6f{letter-spacing:12.456000px;}
.ls47{letter-spacing:12.528000px;}
.ls9f{letter-spacing:12.600000px;}
.ls72{letter-spacing:12.672000px;}
.ls2b{letter-spacing:12.744000px;}
.ls4d{letter-spacing:12.816000px;}
.ls5a{letter-spacing:12.888000px;}
.ls5c{letter-spacing:13.032000px;}
.ls65{letter-spacing:13.104000px;}
.ls71{letter-spacing:13.176000px;}
.ls89{letter-spacing:13.248000px;}
.ls87{letter-spacing:13.320000px;}
.lsa4{letter-spacing:13.392000px;}
.lsa0{letter-spacing:13.608000px;}
.ls2a{letter-spacing:13.752000px;}
.lsa2{letter-spacing:13.795500px;}
.lsab{letter-spacing:13.824000px;}
.ls8a{letter-spacing:13.968000px;}
.ls9e{letter-spacing:14.184000px;}
.ls5e{letter-spacing:14.256000px;}
.ls68{letter-spacing:14.328000px;}
.ls93{letter-spacing:14.400000px;}
.ls70{letter-spacing:14.832000px;}
.ls94{letter-spacing:15.768000px;}
.lsa7{letter-spacing:16.056000px;}
.ls8e{letter-spacing:22.680000px;}
.ls8d{letter-spacing:22.968000px;}
.ls8b{letter-spacing:30.528000px;}
.ls8c{letter-spacing:33.984000px;}
.ls19{letter-spacing:75.240000px;}
.ls84{letter-spacing:451.620000px;}
.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;}
}
.ws9f{word-spacing:-468.480000px;}
.ws7e{word-spacing:-63.360000px;}
.ws80{word-spacing:-62.856000px;}
.wsc2{word-spacing:-62.712000px;}
.wsab{word-spacing:-62.496000px;}
.ws22{word-spacing:-62.280000px;}
.wsa2{word-spacing:-61.848000px;}
.wsa6{word-spacing:-61.776000px;}
.ws81{word-spacing:-61.704000px;}
.ws7d{word-spacing:-61.632000px;}
.ws60{word-spacing:-61.560000px;}
.ws6b{word-spacing:-61.416000px;}
.ws54{word-spacing:-61.344000px;}
.ws23{word-spacing:-61.272000px;}
.ws85{word-spacing:-61.200000px;}
.ws46{word-spacing:-61.056000px;}
.ws7c{word-spacing:-60.984000px;}
.ws91{word-spacing:-60.912000px;}
.ws9c{word-spacing:-60.840000px;}
.wsc1{word-spacing:-60.768000px;}
.ws62{word-spacing:-60.696000px;}
.wsae{word-spacing:-60.624000px;}
.ws6c{word-spacing:-60.552000px;}
.ws6d{word-spacing:-60.480000px;}
.ws69{word-spacing:-60.408000px;}
.ws6e{word-spacing:-60.336000px;}
.ws64{word-spacing:-60.264000px;}
.ws4f{word-spacing:-60.192000px;}
.ws51{word-spacing:-60.120000px;}
.ws55{word-spacing:-60.048000px;}
.ws9b{word-spacing:-59.976000px;}
.ws25{word-spacing:-59.904000px;}
.ws4b{word-spacing:-59.832000px;}
.ws93{word-spacing:-59.760000px;}
.ws53{word-spacing:-59.688000px;}
.ws8c{word-spacing:-59.616000px;}
.ws76{word-spacing:-59.544000px;}
.wsa4{word-spacing:-59.472000px;}
.ws78{word-spacing:-59.400000px;}
.ws88{word-spacing:-59.328000px;}
.ws87{word-spacing:-59.256000px;}
.ws79{word-spacing:-59.184000px;}
.wsbf{word-spacing:-59.112000px;}
.wsa9{word-spacing:-59.040000px;}
.ws95{word-spacing:-58.896000px;}
.wsbb{word-spacing:-58.752000px;}
.ws7a{word-spacing:-58.680000px;}
.ws8b{word-spacing:-58.320000px;}
.ws99{word-spacing:-58.248000px;}
.wsd7{word-spacing:-52.416000px;}
.ws4a{word-spacing:-51.408000px;}
.ws20{word-spacing:-51.336000px;}
.wsad{word-spacing:-50.976000px;}
.ws7f{word-spacing:-50.904000px;}
.ws68{word-spacing:-50.832000px;}
.wsc3{word-spacing:-50.760000px;}
.ws8f{word-spacing:-50.544000px;}
.ws38{word-spacing:-50.472000px;}
.ws1b{word-spacing:-50.328000px;}
.wsc8{word-spacing:-50.184000px;}
.ws36{word-spacing:-50.112000px;}
.ws2e{word-spacing:-50.040000px;}
.ws13{word-spacing:-49.968000px;}
.wsa1{word-spacing:-49.896000px;}
.ws5e{word-spacing:-49.824000px;}
.ws2a{word-spacing:-49.752000px;}
.ws45{word-spacing:-49.680000px;}
.ws31{word-spacing:-49.608000px;}
.ws3c{word-spacing:-49.536000px;}
.ws3b{word-spacing:-49.464000px;}
.ws2b{word-spacing:-49.392000px;}
.ws8{word-spacing:-49.320000px;}
.ws32{word-spacing:-49.248000px;}
.ws2{word-spacing:-49.176000px;}
.ws10{word-spacing:-49.104000px;}
.wsb{word-spacing:-49.032000px;}
.wsc{word-spacing:-48.960000px;}
.ws29{word-spacing:-48.888000px;}
.wsf{word-spacing:-48.816000px;}
.wsd{word-spacing:-48.744000px;}
.wse{word-spacing:-48.672000px;}
.wsa{word-spacing:-48.600000px;}
.ws1{word-spacing:-48.528000px;}
.ws1c{word-spacing:-48.456000px;}
.ws11{word-spacing:-48.384000px;}
.ws9{word-spacing:-48.312000px;}
.ws14{word-spacing:-48.240000px;}
.ws16{word-spacing:-48.168000px;}
.ws1a{word-spacing:-48.096000px;}
.ws15{word-spacing:-48.024000px;}
.ws26{word-spacing:-47.952000px;}
.ws4c{word-spacing:-47.880000px;}
.ws18{word-spacing:-47.808000px;}
.wsce{word-spacing:-47.736000px;}
.ws1d{word-spacing:-47.664000px;}
.ws2d{word-spacing:-47.592000px;}
.ws19{word-spacing:-47.520000px;}
.ws3a{word-spacing:-47.448000px;}
.ws89{word-spacing:-47.376000px;}
.ws86{word-spacing:-47.304000px;}
.ws37{word-spacing:-47.232000px;}
.wscd{word-spacing:-47.160000px;}
.ws6f{word-spacing:-47.088000px;}
.ws94{word-spacing:-46.944000px;}
.ws70{word-spacing:-46.872000px;}
.wsba{word-spacing:-46.800000px;}
.ws7b{word-spacing:-46.728000px;}
.ws52{word-spacing:-46.656000px;}
.wsbc{word-spacing:-46.584000px;}
.wsd4{word-spacing:-46.512000px;}
.ws8a{word-spacing:-46.368000px;}
.ws9a{word-spacing:-46.296000px;}
.wsb0{word-spacing:-40.752000px;}
.wsdf{word-spacing:-40.740000px;}
.ws7{word-spacing:-40.440000px;}
.ws82{word-spacing:-40.248000px;}
.wsb4{word-spacing:-40.032000px;}
.ws49{word-spacing:-39.456000px;}
.ws83{word-spacing:-39.384000px;}
.wsb5{word-spacing:-39.024000px;}
.ws67{word-spacing:-38.880000px;}
.ws58{word-spacing:-38.664000px;}
.wsc7{word-spacing:-38.592000px;}
.ws96{word-spacing:-38.304000px;}
.ws30{word-spacing:-38.232000px;}
.ws2f{word-spacing:-38.160000px;}
.ws40{word-spacing:-38.088000px;}
.wsb2{word-spacing:-38.016000px;}
.wsa0{word-spacing:-37.944000px;}
.ws34{word-spacing:-37.872000px;}
.ws1f{word-spacing:-37.800000px;}
.ws35{word-spacing:-37.728000px;}
.wsbe{word-spacing:-37.656000px;}
.wsc5{word-spacing:-37.584000px;}
.ws1e{word-spacing:-37.512000px;}
.ws50{word-spacing:-37.440000px;}
.ws5d{word-spacing:-37.368000px;}
.wsa5{word-spacing:-37.224000px;}
.wsb7{word-spacing:-37.080000px;}
.ws73{word-spacing:-37.008000px;}
.ws5c{word-spacing:-36.936000px;}
.wsc0{word-spacing:-36.864000px;}
.ws6a{word-spacing:-36.792000px;}
.wsa3{word-spacing:-36.720000px;}
.ws2c{word-spacing:-36.648000px;}
.ws24{word-spacing:-36.576000px;}
.ws63{word-spacing:-36.504000px;}
.ws28{word-spacing:-36.432000px;}
.ws27{word-spacing:-36.360000px;}
.ws39{word-spacing:-36.288000px;}
.ws4e{word-spacing:-36.216000px;}
.ws74{word-spacing:-36.144000px;}
.ws21{word-spacing:-36.072000px;}
.ws47{word-spacing:-36.000000px;}
.wsc6{word-spacing:-35.928000px;}
.ws5b{word-spacing:-35.856000px;}
.wsa7{word-spacing:-35.784000px;}
.ws56{word-spacing:-35.712000px;}
.ws61{word-spacing:-35.640000px;}
.ws4d{word-spacing:-35.568000px;}
.ws77{word-spacing:-35.496000px;}
.wsb9{word-spacing:-35.424000px;}
.ws98{word-spacing:-35.352000px;}
.ws41{word-spacing:-35.280000px;}
.ws42{word-spacing:-35.208000px;}
.ws43{word-spacing:-35.136000px;}
.ws8d{word-spacing:-35.064000px;}
.ws57{word-spacing:-34.992000px;}
.ws71{word-spacing:-34.920000px;}
.ws65{word-spacing:-34.848000px;}
.wsb3{word-spacing:-34.776000px;}
.ws66{word-spacing:-34.704000px;}
.ws90{word-spacing:-34.632000px;}
.wsbd{word-spacing:-34.560000px;}
.ws5a{word-spacing:-34.488000px;}
.wsaa{word-spacing:-34.416000px;}
.wsc4{word-spacing:-34.344000px;}
.ws72{word-spacing:-34.272000px;}
.wsb6{word-spacing:-34.128000px;}
.wsac{word-spacing:-34.056000px;}
.wscb{word-spacing:-33.984000px;}
.ws59{word-spacing:-33.696000px;}
.wsd8{word-spacing:-33.192000px;}
.wsa8{word-spacing:-33.120000px;}
.wsd9{word-spacing:-33.048000px;}
.ws84{word-spacing:-32.904000px;}
.ws48{word-spacing:-32.760000px;}
.wsde{word-spacing:-32.592000px;}
.wsd1{word-spacing:-32.472000px;}
.ws17{word-spacing:-32.352000px;}
.ws92{word-spacing:-31.752000px;}
.ws8e{word-spacing:-30.600000px;}
.wsb1{word-spacing:-28.800000px;}
.wsd6{word-spacing:-28.512000px;}
.wsaf{word-spacing:-28.368000px;}
.wsb8{word-spacing:-28.080000px;}
.wsd2{word-spacing:-27.936000px;}
.wsd0{word-spacing:-27.432000px;}
.wsdb{word-spacing:-25.320000px;}
.wsda{word-spacing:-23.328000px;}
.ws97{word-spacing:-22.176000px;}
.ws3d{word-spacing:-21.240000px;}
.wsca{word-spacing:-20.736000px;}
.ws12{word-spacing:-20.232000px;}
.ws3e{word-spacing:-20.088000px;}
.wsdc{word-spacing:-20.016000px;}
.ws3f{word-spacing:-19.872000px;}
.ws75{word-spacing:-19.512000px;}
.ws6{word-spacing:-16.860000px;}
.ws44{word-spacing:-14.162400px;}
.wscc{word-spacing:-14.112000px;}
.wscf{word-spacing:-13.960800px;}
.wsc9{word-spacing:-13.910400px;}
.wsd5{word-spacing:-13.488000px;}
.wsd3{word-spacing:-12.852000px;}
.wsdd{word-spacing:-12.336000px;}
.ws5f{word-spacing:-9.441600px;}
.ws0{word-spacing:-8.520000px;}
.ws33{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:34.740000px;}
.ws4{word-spacing:146.100000px;}
.ws9d{word-spacing:374.760000px;}
.ws9e{word-spacing:617.280000px;}
._0{margin-left:-948.900000px;}
._34{margin-left:-450.840000px;}
._20{margin-left:-19.561200px;}
._37{margin-left:-18.288000px;}
._12{margin-left:-17.280000px;}
._39{margin-left:-16.152000px;}
._21{margin-left:-14.377200px;}
._1d{margin-left:-13.009200px;}
._16{margin-left:-11.952000px;}
._19{margin-left:-10.270800px;}
._11{margin-left:-9.132000px;}
._7{margin-left:-7.392000px;}
._1{margin-left:-5.940000px;}
._10{margin-left:-3.900000px;}
._5{margin-left:-2.580000px;}
._3{margin-left:-1.260000px;}
._2{width:1.860000px;}
._6{width:3.193200px;}
._4{width:4.200000px;}
._b{width:5.244000px;}
._a{width:6.516000px;}
._d{width:7.704000px;}
._8{width:8.856000px;}
._9{width:10.008000px;}
._c{width:11.050800px;}
._17{width:12.352800px;}
._18{width:14.077200px;}
._14{width:15.768000px;}
._3c{width:16.774800px;}
._1a{width:17.784000px;}
._15{width:18.864000px;}
._1f{width:20.353200px;}
._1b{width:21.577200px;}
._23{width:23.062800px;}
._22{width:24.912000px;}
._f{width:26.640000px;}
._1e{width:28.114800px;}
._1c{width:30.285600px;}
._13{width:31.646100px;}
._25{width:33.984000px;}
._3a{width:35.424000px;}
._24{width:37.368000px;}
._3b{width:38.678400px;}
._38{width:39.901200px;}
._2a{width:49.500000px;}
._e{width:57.175200px;}
._28{width:103.800000px;}
._30{width:112.620000px;}
._26{width:184.740000px;}
._27{width:212.640000px;}
._29{width:227.580000px;}
._32{width:241.440000px;}
._2b{width:260.820000px;}
._31{width:297.540000px;}
._2d{width:301.560000px;}
._36{width:391.620000px;}
._2c{width:398.340000px;}
._2f{width:421.620000px;}
._2e{width:428.340000px;}
._33{width:451.620000px;}
._35{width:754.320000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.600000px;}
.fs6{font-size:35.700000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:439.406400px;}
.y0{bottom:0.000000px;}
.y1f{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y1aa{bottom:116.999700px;}
.y148{bottom:116.999850px;}
.yb9{bottom:117.000000px;}
.y103{bottom:117.000150px;}
.y13e{bottom:117.000300px;}
.y1ae{bottom:117.078000px;}
.y1d3{bottom:117.084000px;}
.y66{bottom:117.234300px;}
.y91{bottom:117.446550px;}
.y200{bottom:118.644000px;}
.ydc{bottom:121.207200px;}
.y44{bottom:121.207500px;}
.yb7{bottom:122.466000px;}
.y104{bottom:122.610000px;}
.y127{bottom:124.079100px;}
.y1e{bottom:124.250550px;}
.y1a9{bottom:131.999700px;}
.yde{bottom:132.000000px;}
.y147{bottom:136.207350px;}
.y102{bottom:136.207650px;}
.y13d{bottom:136.207800px;}
.y1ff{bottom:137.394000px;}
.y1ad{bottom:138.984000px;}
.y1d2{bottom:138.990000px;}
.y90{bottom:139.046550px;}
.y65{bottom:139.140300px;}
.yb8{bottom:139.500000px;}
.y43{bottom:143.707500px;}
.yb6{bottom:144.966000px;}
.y1d{bottom:147.794550px;}
.y126{bottom:148.514100px;}
.y1a8{bottom:151.207200px;}
.ydd{bottom:151.207500px;}
.y1fe{bottom:155.994000px;}
.y8f{bottom:160.646550px;}
.y1ac{bottom:160.890000px;}
.y1d1{bottom:160.896000px;}
.y64{bottom:161.046300px;}
.y88{bottom:162.000000px;}
.ydb{bottom:164.135700px;}
.yb5{bottom:166.710000px;}
.y176{bottom:167.165700px;}
.y184{bottom:167.213700px;}
.y1c{bottom:171.338550px;}
.y101{bottom:172.518150px;}
.y125{bottom:172.949100px;}
.y1fd{bottom:174.594000px;}
.y146{bottom:177.300000px;}
.y8e{bottom:182.246550px;}
.y13c{bottom:182.586300px;}
.y1ab{bottom:182.796000px;}
.y1d0{bottom:182.802000px;}
.y42{bottom:182.814000px;}
.y63{bottom:182.952300px;}
.y153{bottom:182.994300px;}
.y87{bottom:184.500000px;}
.yda{bottom:187.229700px;}
.yb4{bottom:188.454000px;}
.y175{bottom:189.521700px;}
.y183{bottom:189.569700px;}
.y1fc{bottom:193.194000px;}
.y1a7{bottom:193.355700px;}
.y100{bottom:194.712150px;}
.y1b{bottom:194.882550px;}
.y124{bottom:197.384100px;}
.y145{bottom:199.800000px;}
.y8d{bottom:203.846550px;}
.y152{bottom:204.702000px;}
.y1cf{bottom:204.708000px;}
.y41{bottom:204.720000px;}
.y13b{bottom:204.780300px;}
.y62{bottom:204.858300px;}
.y86{bottom:207.000000px;}
.yb3{bottom:210.198000px;}
.yd9{bottom:210.323700px;}
.y1fb{bottom:211.794000px;}
.y174{bottom:211.877700px;}
.y182{bottom:211.925700px;}
.y1a6{bottom:215.099700px;}
.yff{bottom:216.906150px;}
.y1a{bottom:218.426550px;}
.y123{bottom:221.819100px;}
.y144{bottom:221.850000px;}
.y8c{bottom:225.446550px;}
.y151{bottom:226.608000px;}
.y1ce{bottom:226.614000px;}
.y40{bottom:226.626000px;}
.y13a{bottom:226.686300px;}
.y61{bottom:226.764300px;}
.y85{bottom:229.500000px;}
.y1fa{bottom:230.394000px;}
.yb2{bottom:231.942000px;}
.yd8{bottom:233.417700px;}
.y173{bottom:234.233700px;}
.y181{bottom:234.281700px;}
.y1a5{bottom:236.699700px;}
.yfe{bottom:239.286000px;}
.y19{bottom:241.970550px;}
.y143{bottom:243.900000px;}
.y122{bottom:246.254100px;}
.y8b{bottom:247.046550px;}
.y150{bottom:248.514000px;}
.y1cd{bottom:248.520000px;}
.y3f{bottom:248.532000px;}
.y139{bottom:248.592300px;}
.y60{bottom:248.670300px;}
.y1f9{bottom:248.994000px;}
.y84{bottom:252.000000px;}
.yb1{bottom:253.686000px;}
.yd7{bottom:256.511700px;}
.y172{bottom:256.589700px;}
.y180{bottom:256.637700px;}
.y1a4{bottom:258.299700px;}
.yfd{bottom:261.480000px;}
.y18{bottom:265.514550px;}
.y142{bottom:265.950000px;}
.y1f8{bottom:267.594000px;}
.y8a{bottom:268.646550px;}
.y14f{bottom:270.420000px;}
.y1cc{bottom:270.426000px;}
.y3e{bottom:270.438000px;}
.y138{bottom:270.498300px;}
.y5f{bottom:270.576300px;}
.y121{bottom:270.689100px;}
.y83{bottom:274.500000px;}
.yb0{bottom:275.430000px;}
.y171{bottom:278.945700px;}
.y17f{bottom:278.993700px;}
.yd6{bottom:279.605700px;}
.y1a3{bottom:279.899700px;}
.yfc{bottom:283.674000px;}
.y1f7{bottom:286.194000px;}
.y141{bottom:288.000000px;}
.y17{bottom:289.058550px;}
.y89{bottom:290.246550px;}
.y14e{bottom:292.326000px;}
.y1cb{bottom:292.332000px;}
.y3d{bottom:292.344000px;}
.y137{bottom:292.404300px;}
.y5e{bottom:292.482300px;}
.y82{bottom:297.000000px;}
.yaf{bottom:297.174000px;}
.y17e{bottom:301.182000px;}
.y170{bottom:301.301700px;}
.y1a2{bottom:301.499700px;}
.yd5{bottom:302.862000px;}
.y1f6{bottom:304.794000px;}
.yfb{bottom:305.868000px;}
.y120{bottom:309.149850px;}
.y140{bottom:310.050000px;}
.y16{bottom:312.602550px;}
.y14d{bottom:314.232000px;}
.y1ca{bottom:314.238000px;}
.y3c{bottom:314.250000px;}
.y136{bottom:314.310300px;}
.y5d{bottom:314.388300px;}
.yae{bottom:318.918000px;}
.y81{bottom:319.500000px;}
.y1a1{bottom:323.099700px;}
.y1f5{bottom:323.394000px;}
.y17d{bottom:323.538000px;}
.y16f{bottom:323.657700px;}
.yd4{bottom:325.956000px;}
.yfa{bottom:328.062000px;}
.y13f{bottom:332.100000px;}
.y14c{bottom:336.138000px;}
.y1c9{bottom:336.144000px;}
.y15{bottom:336.146550px;}
.y3b{bottom:336.156000px;}
.y135{bottom:336.216300px;}
.y5c{bottom:336.294300px;}
.yad{bottom:340.662000px;}
.y1f4{bottom:341.994000px;}
.y80{bottom:342.000000px;}
.y1a0{bottom:344.699700px;}
.y17c{bottom:345.894000px;}
.y16e{bottom:346.013700px;}
.yd3{bottom:349.050000px;}
.yf9{bottom:350.256000px;}
.y11f{bottom:354.150000px;}
.y14b{bottom:358.044000px;}
.y1c8{bottom:358.050000px;}
.y3a{bottom:358.062000px;}
.y134{bottom:358.122300px;}
.y5b{bottom:358.200300px;}
.y14{bottom:359.690550px;}
.y1f3{bottom:360.594000px;}
.yac{bottom:362.406000px;}
.y7f{bottom:364.500000px;}
.y19f{bottom:366.299700px;}
.y17b{bottom:368.250000px;}
.y16d{bottom:368.369700px;}
.yd2{bottom:372.144000px;}
.yf8{bottom:372.450000px;}
.y11e{bottom:376.200000px;}
.y1f2{bottom:379.194000px;}
.y14a{bottom:379.950000px;}
.y1c7{bottom:379.956000px;}
.y39{bottom:379.968000px;}
.y133{bottom:380.028300px;}
.y5a{bottom:380.100300px;}
.y13{bottom:383.234550px;}
.yab{bottom:384.150000px;}
.y7e{bottom:387.000000px;}
.y19e{bottom:387.899700px;}
.y17a{bottom:390.606000px;}
.y16c{bottom:390.725700px;}
.yf7{bottom:394.644000px;}
.yd1{bottom:395.238000px;}
.y1f1{bottom:397.794000px;}
.y11d{bottom:398.250000px;}
.y149{bottom:401.856000px;}
.y1c6{bottom:401.862000px;}
.y38{bottom:401.874000px;}
.y132{bottom:401.934300px;}
.yaa{bottom:405.894000px;}
.y12{bottom:406.778550px;}
.y19d{bottom:409.499700px;}
.y7d{bottom:409.500000px;}
.y179{bottom:412.962000px;}
.y16b{bottom:413.081700px;}
.y1f0{bottom:416.394000px;}
.yf6{bottom:416.838000px;}
.yd0{bottom:418.332000px;}
.y11c{bottom:420.300000px;}
.y59{bottom:423.762000px;}
.y1c5{bottom:423.768000px;}
.y37{bottom:423.780000px;}
.y131{bottom:423.840300px;}
.ya9{bottom:427.638000px;}
.y11{bottom:430.322550px;}
.y19c{bottom:431.099700px;}
.y7c{bottom:432.000000px;}
.y1ef{bottom:434.994000px;}
.y178{bottom:435.318000px;}
.y16a{bottom:435.437700px;}
.yf5{bottom:439.032000px;}
.ycf{bottom:441.426000px;}
.y11b{bottom:442.350000px;}
.y58{bottom:445.668000px;}
.y1c4{bottom:445.674000px;}
.y36{bottom:445.686000px;}
.y130{bottom:445.746300px;}
.ya8{bottom:449.382000px;}
.y19b{bottom:452.699700px;}
.y1ee{bottom:453.594000px;}
.y10{bottom:453.866550px;}
.y7b{bottom:454.500000px;}
.y177{bottom:457.674000px;}
.y169{bottom:457.793700px;}
.yf4{bottom:461.226000px;}
.y11a{bottom:464.400000px;}
.yce{bottom:464.520000px;}
.y57{bottom:467.574000px;}
.y1c3{bottom:467.580000px;}
.y35{bottom:467.592000px;}
.y12f{bottom:467.652300px;}
.ya7{bottom:471.126000px;}
.y1ed{bottom:472.194000px;}
.y19a{bottom:474.299700px;}
.y7a{bottom:477.000000px;}
.yf{bottom:477.410550px;}
.y168{bottom:480.030000px;}
.yf3{bottom:483.420000px;}
.y119{bottom:486.450000px;}
.ycd{bottom:487.614000px;}
.y56{bottom:489.480000px;}
.y1c2{bottom:489.486000px;}
.y34{bottom:489.498000px;}
.y12e{bottom:489.558300px;}
.y1ec{bottom:490.794000px;}
.ya6{bottom:492.870000px;}
.y199{bottom:495.899700px;}
.y79{bottom:499.500000px;}
.ye{bottom:500.954550px;}
.y167{bottom:502.386000px;}
.yf2{bottom:505.614000px;}
.y213{bottom:507.000000px;}
.y118{bottom:508.500000px;}
.y1eb{bottom:509.394000px;}
.ycc{bottom:510.708000px;}
.y55{bottom:511.386000px;}
.y1c1{bottom:511.392000px;}
.y33{bottom:511.404000px;}
.y12d{bottom:511.464300px;}
.ya5{bottom:514.614000px;}
.y198{bottom:517.499700px;}
.y78{bottom:522.000000px;}
.yd{bottom:524.498550px;}
.y166{bottom:524.742000px;}
.y212{bottom:525.750000px;}
.yf1{bottom:527.808000px;}
.y1ea{bottom:527.994000px;}
.y117{bottom:530.550000px;}
.y54{bottom:533.292000px;}
.y1c0{bottom:533.298000px;}
.y32{bottom:533.310000px;}
.y12c{bottom:533.370300px;}
.ycb{bottom:533.802000px;}
.ya4{bottom:536.358000px;}
.y197{bottom:539.099700px;}
.y77{bottom:544.500000px;}
.y1e9{bottom:546.594000px;}
.y165{bottom:547.098000px;}
.yc{bottom:548.042550px;}
.yf0{bottom:550.002000px;}
.y116{bottom:552.600000px;}
.y53{bottom:555.198000px;}
.y1bf{bottom:555.204000px;}
.y31{bottom:555.216000px;}
.y12b{bottom:555.276300px;}
.yca{bottom:556.896000px;}
.ya3{bottom:558.102000px;}
.y196{bottom:560.699700px;}
.y211{bottom:563.250000px;}
.y1e8{bottom:565.194000px;}
.y76{bottom:567.000000px;}
.y164{bottom:569.454000px;}
.yb{bottom:571.586550px;}
.yef{bottom:572.196000px;}
.y115{bottom:574.650000px;}
.y52{bottom:577.104000px;}
.y1be{bottom:577.110000px;}
.y30{bottom:577.122000px;}
.y12a{bottom:577.182300px;}
.ya2{bottom:579.846000px;}
.yc9{bottom:579.990000px;}
.y195{bottom:582.300000px;}
.y1e7{bottom:583.794000px;}
.y75{bottom:589.500000px;}
.y163{bottom:591.810000px;}
.y210{bottom:593.250000px;}
.yee{bottom:594.390000px;}
.y8{bottom:595.118550px;}
.ya{bottom:595.130550px;}
.y114{bottom:596.700000px;}
.y51{bottom:599.010000px;}
.y1bd{bottom:599.016000px;}
.y2f{bottom:599.028000px;}
.y129{bottom:599.088300px;}
.ya1{bottom:601.590000px;}
.yc8{bottom:603.084000px;}
.y194{bottom:603.900000px;}
.y1e6{bottom:608.849850px;}
.y74{bottom:612.000000px;}
.y162{bottom:614.166000px;}
.yed{bottom:616.584000px;}
.y9{bottom:618.674550px;}
.y113{bottom:618.750000px;}
.y50{bottom:620.916000px;}
.y1bc{bottom:620.922000px;}
.y2e{bottom:620.934000px;}
.y128{bottom:620.994300px;}
.ya0{bottom:623.334000px;}
.y193{bottom:625.500000px;}
.yc7{bottom:626.178000px;}
.y20f{bottom:630.750000px;}
.y73{bottom:634.500000px;}
.y161{bottom:636.522000px;}
.yec{bottom:638.778000px;}
.y112{bottom:640.800000px;}
.y4f{bottom:642.822000px;}
.y1bb{bottom:642.828000px;}
.y2d{bottom:642.840000px;}
.y9f{bottom:645.078000px;}
.y192{bottom:647.100000px;}
.yc6{bottom:649.272000px;}
.y20e{bottom:649.500000px;}
.y1e5{bottom:653.549850px;}
.y72{bottom:657.000000px;}
.y160{bottom:658.878000px;}
.yeb{bottom:660.972000px;}
.y111{bottom:662.850000px;}
.y4e{bottom:664.728000px;}
.y1ba{bottom:664.734000px;}
.y2c{bottom:664.746000px;}
.y9e{bottom:666.822000px;}
.y20d{bottom:668.250000px;}
.y1e4{bottom:668.393850px;}
.y191{bottom:668.700000px;}
.yc5{bottom:672.366000px;}
.y71{bottom:679.500000px;}
.y15f{bottom:681.234000px;}
.yea{bottom:683.166000px;}
.y1e3{bottom:683.237850px;}
.y110{bottom:684.900000px;}
.y4d{bottom:686.634000px;}
.y1b9{bottom:686.640000px;}
.y2b{bottom:686.652000px;}
.y20c{bottom:687.000000px;}
.y7{bottom:687.368550px;}
.y9d{bottom:688.566000px;}
.y190{bottom:690.300000px;}
.yc4{bottom:695.460000px;}
.y1e2{bottom:698.081850px;}
.y70{bottom:702.000000px;}
.y15e{bottom:703.590000px;}
.ye9{bottom:705.360000px;}
.y20b{bottom:705.750000px;}
.y6{bottom:706.118550px;}
.y10f{bottom:706.950000px;}
.y4c{bottom:708.540000px;}
.y1b8{bottom:708.546000px;}
.y2a{bottom:708.558000px;}
.y9c{bottom:710.310000px;}
.y18f{bottom:711.900000px;}
.y1e1{bottom:712.925850px;}
.yc3{bottom:718.554000px;}
.y6f{bottom:724.500000px;}
.y15d{bottom:725.946000px;}
.ye8{bottom:727.554000px;}
.y1e0{bottom:727.769850px;}
.y10e{bottom:729.000000px;}
.y4b{bottom:730.446000px;}
.y1b7{bottom:730.452000px;}
.y29{bottom:730.464000px;}
.y9b{bottom:732.054000px;}
.y18e{bottom:733.500000px;}
.yc2{bottom:741.648000px;}
.y1df{bottom:742.613850px;}
.y20a{bottom:743.250000px;}
.y6e{bottom:747.000000px;}
.y5{bottom:748.254300px;}
.y15c{bottom:748.302000px;}
.ye7{bottom:749.748000px;}
.y10d{bottom:751.050000px;}
.y4a{bottom:752.352000px;}
.y1b6{bottom:752.358000px;}
.y28{bottom:752.370000px;}
.y9a{bottom:753.798000px;}
.y18d{bottom:755.100000px;}
.y1de{bottom:757.457850px;}
.y209{bottom:762.000000px;}
.yc1{bottom:764.742000px;}
.y6d{bottom:769.500000px;}
.y15b{bottom:770.658000px;}
.y4{bottom:770.754300px;}
.ye6{bottom:771.942000px;}
.y1dd{bottom:772.301850px;}
.y10c{bottom:773.100000px;}
.y49{bottom:774.258000px;}
.y1b5{bottom:774.264000px;}
.y27{bottom:774.276000px;}
.y99{bottom:775.542000px;}
.y18c{bottom:776.700000px;}
.y208{bottom:780.750000px;}
.y1dc{bottom:787.145850px;}
.yc0{bottom:787.836000px;}
.y6c{bottom:792.000000px;}
.y15a{bottom:793.014000px;}
.ye5{bottom:794.136000px;}
.y10b{bottom:795.150000px;}
.y48{bottom:796.164000px;}
.y1b4{bottom:796.170000px;}
.y26{bottom:796.182000px;}
.y98{bottom:797.286000px;}
.y18b{bottom:798.300000px;}
.y207{bottom:799.500000px;}
.y1db{bottom:801.989850px;}
.ybf{bottom:810.930000px;}
.y6b{bottom:814.500000px;}
.y159{bottom:815.370000px;}
.ye4{bottom:816.330000px;}
.y1da{bottom:816.833850px;}
.y10a{bottom:817.200000px;}
.y47{bottom:818.070000px;}
.y1b3{bottom:818.076000px;}
.y25{bottom:818.088000px;}
.y206{bottom:818.250000px;}
.y97{bottom:819.030000px;}
.y18a{bottom:819.900000px;}
.y1d9{bottom:831.689850px;}
.ybe{bottom:834.024000px;}
.y6a{bottom:837.000000px;}
.y158{bottom:837.726000px;}
.ye3{bottom:838.524000px;}
.y109{bottom:839.250000px;}
.y46{bottom:839.976000px;}
.y1b2{bottom:839.982000px;}
.y24{bottom:839.994000px;}
.y96{bottom:840.774000px;}
.y189{bottom:841.500000px;}
.y1d8{bottom:846.533850px;}
.y205{bottom:855.750000px;}
.ybd{bottom:857.118000px;}
.y3{bottom:859.500000px;}
.y157{bottom:860.082000px;}
.ye2{bottom:860.718000px;}
.y108{bottom:861.300000px;}
.y1d7{bottom:861.377850px;}
.y45{bottom:861.882000px;}
.y1b1{bottom:861.888000px;}
.y23{bottom:861.894000px;}
.y95{bottom:862.518000px;}
.y188{bottom:863.100000px;}
.y204{bottom:874.500000px;}
.y1d6{bottom:876.234000px;}
.ybc{bottom:880.212000px;}
.y69{bottom:882.000000px;}
.y156{bottom:882.438000px;}
.ye1{bottom:882.912000px;}
.y107{bottom:883.350000px;}
.y22{bottom:883.788000px;}
.y1b0{bottom:883.794000px;}
.y94{bottom:884.262000px;}
.y187{bottom:884.700000px;}
.y2{bottom:889.500000px;}
.y1d5{bottom:891.078000px;}
.y203{bottom:893.250000px;}
.ybb{bottom:903.306000px;}
.y68{bottom:904.500000px;}
.y155{bottom:904.794000px;}
.ye0{bottom:905.106000px;}
.y106{bottom:905.400000px;}
.y21{bottom:905.694000px;}
.y1af{bottom:905.700000px;}
.y1d4{bottom:905.922000px;}
.y93{bottom:906.006000px;}
.y186{bottom:906.300000px;}
.y202{bottom:912.000000px;}
.yba{bottom:926.400000px;}
.y67{bottom:927.000000px;}
.y154{bottom:927.150000px;}
.ydf{bottom:927.300000px;}
.y105{bottom:927.450000px;}
.y20{bottom:927.600000px;}
.y92{bottom:927.750000px;}
.y185{bottom:927.900000px;}
.y201{bottom:930.750000px;}
.h9{height:24.630908px;}
.hc{height:30.313623px;}
.h14{height:39.888000px;}
.he{height:40.757812px;}
.ha{height:49.860000px;}
.h3{height:50.580000px;}
.h1{height:50.947266px;}
.h4{height:61.136719px;}
.h8{height:61.160719px;}
.h7{height:61.184719px;}
.h11{height:61.615519px;}
.h12{height:61.807519px;}
.h10{height:61.929919px;}
.h6{height:62.947266px;}
.hb{height:65.906503px;}
.h13{height:66.554503px;}
.hd{height:66.555703px;}
.hf{height:66.868903px;}
.h2{height:101.894531px;}
.h5{height:355.040371px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x6{left:82.381950px;}
.x2{left:112.500000px;}
.x8{left:117.127050px;}
.x7{left:127.381950px;}
.x5{left:135.000000px;}
.x3{left:157.538550px;}
.x9{left:213.772050px;}
.x1{left:625.781250px;}
@media print{
.v4{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.666667pt;}
.v5{vertical-align:14.080000pt;}
.v3{vertical-align:21.162667pt;}
.v1{vertical-align:167.466667pt;}
.lsb3{letter-spacing:-6.720000pt;}
.ls42{letter-spacing:-6.592000pt;}
.lsa6{letter-spacing:-6.464000pt;}
.lsa1{letter-spacing:-4.032000pt;}
.ls83{letter-spacing:-2.112000pt;}
.ls76{letter-spacing:-2.048000pt;}
.ls82{letter-spacing:-1.984000pt;}
.ls75{letter-spacing:-1.920000pt;}
.ls9a{letter-spacing:-1.856000pt;}
.lsaf{letter-spacing:-1.792000pt;}
.ls6e{letter-spacing:-1.728000pt;}
.ls54{letter-spacing:-1.664000pt;}
.ls6d{letter-spacing:-1.600000pt;}
.ls98{letter-spacing:-1.536000pt;}
.ls80{letter-spacing:-1.408000pt;}
.ls9b{letter-spacing:-1.344000pt;}
.ls3d{letter-spacing:-1.280000pt;}
.ls6b{letter-spacing:-1.216000pt;}
.lsae{letter-spacing:-1.164800pt;}
.ls3c{letter-spacing:-1.152000pt;}
.ls45{letter-spacing:-1.088000pt;}
.ls53{letter-spacing:-1.024000pt;}
.ls27{letter-spacing:-0.960000pt;}
.ls26{letter-spacing:-0.896000pt;}
.ls37{letter-spacing:-0.832000pt;}
.ls29{letter-spacing:-0.768000pt;}
.ls38{letter-spacing:-0.704000pt;}
.ls25{letter-spacing:-0.640000pt;}
.ls2c{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls1f{letter-spacing:-0.512000pt;}
.ls1e{letter-spacing:-0.448000pt;}
.ls28{letter-spacing:-0.384000pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.256000pt;}
.lsa3{letter-spacing:-0.224000pt;}
.lsb8{letter-spacing:-0.213333pt;}
.ls1b{letter-spacing:-0.192000pt;}
.lsaa{letter-spacing:-0.179200pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.lsa5{letter-spacing:-0.044800pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000533pt;}
.ls10{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.192000pt;}
.lsb6{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.256000pt;}
.lsb7{letter-spacing:0.266667pt;}
.ls13{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.566400pt;}
.ls4{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.704000pt;}
.ls36{letter-spacing:0.741333pt;}
.ls24{letter-spacing:0.768000pt;}
.ls1a{letter-spacing:0.832000pt;}
.ls3b{letter-spacing:0.896000pt;}
.ls35{letter-spacing:0.960000pt;}
.ls44{letter-spacing:1.024000pt;}
.ls30{letter-spacing:1.088000pt;}
.ls31{letter-spacing:1.152000pt;}
.ls52{letter-spacing:1.216000pt;}
.ls18{letter-spacing:1.280000pt;}
.ls33{letter-spacing:1.344000pt;}
.ls17{letter-spacing:1.408000pt;}
.ls32{letter-spacing:1.472000pt;}
.ls34{letter-spacing:1.536000pt;}
.ls21{letter-spacing:1.600000pt;}
.ls4f{letter-spacing:1.664000pt;}
.ls39{letter-spacing:1.728000pt;}
.ls20{letter-spacing:1.792000pt;}
.ls51{letter-spacing:1.856000pt;}
.lsac{letter-spacing:1.920000pt;}
.ls3a{letter-spacing:1.984000pt;}
.ls59{letter-spacing:2.048000pt;}
.ls2e{letter-spacing:2.112000pt;}
.ls50{letter-spacing:2.176000pt;}
.ls43{letter-spacing:2.240000pt;}
.ls5f{letter-spacing:2.304000pt;}
.ls2f{letter-spacing:2.368000pt;}
.ls67{letter-spacing:2.432000pt;}
.ls22{letter-spacing:2.496000pt;}
.ls49{letter-spacing:2.560000pt;}
.lsb2{letter-spacing:2.752000pt;}
.ls23{letter-spacing:2.816000pt;}
.ls48{letter-spacing:2.880000pt;}
.ls41{letter-spacing:2.944000pt;}
.ls66{letter-spacing:3.008000pt;}
.ls96{letter-spacing:3.072000pt;}
.ls9{letter-spacing:3.200000pt;}
.ls69{letter-spacing:3.264000pt;}
.ls91{letter-spacing:3.392000pt;}
.lsb1{letter-spacing:3.456000pt;}
.ls97{letter-spacing:3.520000pt;}
.ls95{letter-spacing:3.584000pt;}
.lsa9{letter-spacing:3.648000pt;}
.ls60{letter-spacing:3.712000pt;}
.lsc{letter-spacing:3.786667pt;}
.ls90{letter-spacing:3.904000pt;}
.lsb0{letter-spacing:3.968000pt;}
.ls2{letter-spacing:4.053333pt;}
.lsa8{letter-spacing:4.160000pt;}
.lsb5{letter-spacing:4.224000pt;}
.ls7a{letter-spacing:4.288000pt;}
.lsb4{letter-spacing:4.480000pt;}
.ls7c{letter-spacing:4.864000pt;}
.ls7b{letter-spacing:4.928000pt;}
.ls79{letter-spacing:5.312000pt;}
.ls78{letter-spacing:6.016000pt;}
.ls9d{letter-spacing:6.400000pt;}
.ls40{letter-spacing:6.720000pt;}
.lsad{letter-spacing:7.040000pt;}
.ls46{letter-spacing:7.104000pt;}
.ls0{letter-spacing:7.520000pt;}
.ls3f{letter-spacing:7.936000pt;}
.ls7e{letter-spacing:8.640000pt;}
.ls6a{letter-spacing:8.704000pt;}
.ls6c{letter-spacing:9.024000pt;}
.ls99{letter-spacing:9.088000pt;}
.ls81{letter-spacing:9.216000pt;}
.ls92{letter-spacing:9.344000pt;}
.ls3e{letter-spacing:9.408000pt;}
.ls64{letter-spacing:9.472000pt;}
.ls73{letter-spacing:9.536000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls74{letter-spacing:9.600000pt;}
.ls63{letter-spacing:9.664000pt;}
.ls88{letter-spacing:9.728000pt;}
.ls3{letter-spacing:9.762432pt;}
.ls62{letter-spacing:9.792000pt;}
.ls77{letter-spacing:9.856000pt;}
.ls55{letter-spacing:9.920000pt;}
.ls7d{letter-spacing:9.984000pt;}
.ls4a{letter-spacing:10.048000pt;}
.ls2d{letter-spacing:10.112000pt;}
.ls85{letter-spacing:10.176000pt;}
.ls4e{letter-spacing:10.240000pt;}
.ls4c{letter-spacing:10.304000pt;}
.ls4b{letter-spacing:10.368000pt;}
.ls58{letter-spacing:10.432000pt;}
.ls61{letter-spacing:10.496000pt;}
.ls5d{letter-spacing:10.560000pt;}
.ls56{letter-spacing:10.624000pt;}
.ls5b{letter-spacing:10.688000pt;}
.ls8f{letter-spacing:10.752000pt;}
.ls57{letter-spacing:10.816000pt;}
.ls9c{letter-spacing:10.880000pt;}
.ls86{letter-spacing:10.944000pt;}
.ls7f{letter-spacing:11.008000pt;}
.ls6f{letter-spacing:11.072000pt;}
.ls47{letter-spacing:11.136000pt;}
.ls9f{letter-spacing:11.200000pt;}
.ls72{letter-spacing:11.264000pt;}
.ls2b{letter-spacing:11.328000pt;}
.ls4d{letter-spacing:11.392000pt;}
.ls5a{letter-spacing:11.456000pt;}
.ls5c{letter-spacing:11.584000pt;}
.ls65{letter-spacing:11.648000pt;}
.ls71{letter-spacing:11.712000pt;}
.ls89{letter-spacing:11.776000pt;}
.ls87{letter-spacing:11.840000pt;}
.lsa4{letter-spacing:11.904000pt;}
.lsa0{letter-spacing:12.096000pt;}
.ls2a{letter-spacing:12.224000pt;}
.lsa2{letter-spacing:12.262667pt;}
.lsab{letter-spacing:12.288000pt;}
.ls8a{letter-spacing:12.416000pt;}
.ls9e{letter-spacing:12.608000pt;}
.ls5e{letter-spacing:12.672000pt;}
.ls68{letter-spacing:12.736000pt;}
.ls93{letter-spacing:12.800000pt;}
.ls70{letter-spacing:13.184000pt;}
.ls94{letter-spacing:14.016000pt;}
.lsa7{letter-spacing:14.272000pt;}
.ls8e{letter-spacing:20.160000pt;}
.ls8d{letter-spacing:20.416000pt;}
.ls8b{letter-spacing:27.136000pt;}
.ls8c{letter-spacing:30.208000pt;}
.ls19{letter-spacing:66.880000pt;}
.ls84{letter-spacing:401.440000pt;}
.ws9f{word-spacing:-416.426667pt;}
.ws7e{word-spacing:-56.320000pt;}
.ws80{word-spacing:-55.872000pt;}
.wsc2{word-spacing:-55.744000pt;}
.wsab{word-spacing:-55.552000pt;}
.ws22{word-spacing:-55.360000pt;}
.wsa2{word-spacing:-54.976000pt;}
.wsa6{word-spacing:-54.912000pt;}
.ws81{word-spacing:-54.848000pt;}
.ws7d{word-spacing:-54.784000pt;}
.ws60{word-spacing:-54.720000pt;}
.ws6b{word-spacing:-54.592000pt;}
.ws54{word-spacing:-54.528000pt;}
.ws23{word-spacing:-54.464000pt;}
.ws85{word-spacing:-54.400000pt;}
.ws46{word-spacing:-54.272000pt;}
.ws7c{word-spacing:-54.208000pt;}
.ws91{word-spacing:-54.144000pt;}
.ws9c{word-spacing:-54.080000pt;}
.wsc1{word-spacing:-54.016000pt;}
.ws62{word-spacing:-53.952000pt;}
.wsae{word-spacing:-53.888000pt;}
.ws6c{word-spacing:-53.824000pt;}
.ws6d{word-spacing:-53.760000pt;}
.ws69{word-spacing:-53.696000pt;}
.ws6e{word-spacing:-53.632000pt;}
.ws64{word-spacing:-53.568000pt;}
.ws4f{word-spacing:-53.504000pt;}
.ws51{word-spacing:-53.440000pt;}
.ws55{word-spacing:-53.376000pt;}
.ws9b{word-spacing:-53.312000pt;}
.ws25{word-spacing:-53.248000pt;}
.ws4b{word-spacing:-53.184000pt;}
.ws93{word-spacing:-53.120000pt;}
.ws53{word-spacing:-53.056000pt;}
.ws8c{word-spacing:-52.992000pt;}
.ws76{word-spacing:-52.928000pt;}
.wsa4{word-spacing:-52.864000pt;}
.ws78{word-spacing:-52.800000pt;}
.ws88{word-spacing:-52.736000pt;}
.ws87{word-spacing:-52.672000pt;}
.ws79{word-spacing:-52.608000pt;}
.wsbf{word-spacing:-52.544000pt;}
.wsa9{word-spacing:-52.480000pt;}
.ws95{word-spacing:-52.352000pt;}
.wsbb{word-spacing:-52.224000pt;}
.ws7a{word-spacing:-52.160000pt;}
.ws8b{word-spacing:-51.840000pt;}
.ws99{word-spacing:-51.776000pt;}
.wsd7{word-spacing:-46.592000pt;}
.ws4a{word-spacing:-45.696000pt;}
.ws20{word-spacing:-45.632000pt;}
.wsad{word-spacing:-45.312000pt;}
.ws7f{word-spacing:-45.248000pt;}
.ws68{word-spacing:-45.184000pt;}
.wsc3{word-spacing:-45.120000pt;}
.ws8f{word-spacing:-44.928000pt;}
.ws38{word-spacing:-44.864000pt;}
.ws1b{word-spacing:-44.736000pt;}
.wsc8{word-spacing:-44.608000pt;}
.ws36{word-spacing:-44.544000pt;}
.ws2e{word-spacing:-44.480000pt;}
.ws13{word-spacing:-44.416000pt;}
.wsa1{word-spacing:-44.352000pt;}
.ws5e{word-spacing:-44.288000pt;}
.ws2a{word-spacing:-44.224000pt;}
.ws45{word-spacing:-44.160000pt;}
.ws31{word-spacing:-44.096000pt;}
.ws3c{word-spacing:-44.032000pt;}
.ws3b{word-spacing:-43.968000pt;}
.ws2b{word-spacing:-43.904000pt;}
.ws8{word-spacing:-43.840000pt;}
.ws32{word-spacing:-43.776000pt;}
.ws2{word-spacing:-43.712000pt;}
.ws10{word-spacing:-43.648000pt;}
.wsb{word-spacing:-43.584000pt;}
.wsc{word-spacing:-43.520000pt;}
.ws29{word-spacing:-43.456000pt;}
.wsf{word-spacing:-43.392000pt;}
.wsd{word-spacing:-43.328000pt;}
.wse{word-spacing:-43.264000pt;}
.wsa{word-spacing:-43.200000pt;}
.ws1{word-spacing:-43.136000pt;}
.ws1c{word-spacing:-43.072000pt;}
.ws11{word-spacing:-43.008000pt;}
.ws9{word-spacing:-42.944000pt;}
.ws14{word-spacing:-42.880000pt;}
.ws16{word-spacing:-42.816000pt;}
.ws1a{word-spacing:-42.752000pt;}
.ws15{word-spacing:-42.688000pt;}
.ws26{word-spacing:-42.624000pt;}
.ws4c{word-spacing:-42.560000pt;}
.ws18{word-spacing:-42.496000pt;}
.wsce{word-spacing:-42.432000pt;}
.ws1d{word-spacing:-42.368000pt;}
.ws2d{word-spacing:-42.304000pt;}
.ws19{word-spacing:-42.240000pt;}
.ws3a{word-spacing:-42.176000pt;}
.ws89{word-spacing:-42.112000pt;}
.ws86{word-spacing:-42.048000pt;}
.ws37{word-spacing:-41.984000pt;}
.wscd{word-spacing:-41.920000pt;}
.ws6f{word-spacing:-41.856000pt;}
.ws94{word-spacing:-41.728000pt;}
.ws70{word-spacing:-41.664000pt;}
.wsba{word-spacing:-41.600000pt;}
.ws7b{word-spacing:-41.536000pt;}
.ws52{word-spacing:-41.472000pt;}
.wsbc{word-spacing:-41.408000pt;}
.wsd4{word-spacing:-41.344000pt;}
.ws8a{word-spacing:-41.216000pt;}
.ws9a{word-spacing:-41.152000pt;}
.wsb0{word-spacing:-36.224000pt;}
.wsdf{word-spacing:-36.213333pt;}
.ws7{word-spacing:-35.946667pt;}
.ws82{word-spacing:-35.776000pt;}
.wsb4{word-spacing:-35.584000pt;}
.ws49{word-spacing:-35.072000pt;}
.ws83{word-spacing:-35.008000pt;}
.wsb5{word-spacing:-34.688000pt;}
.ws67{word-spacing:-34.560000pt;}
.ws58{word-spacing:-34.368000pt;}
.wsc7{word-spacing:-34.304000pt;}
.ws96{word-spacing:-34.048000pt;}
.ws30{word-spacing:-33.984000pt;}
.ws2f{word-spacing:-33.920000pt;}
.ws40{word-spacing:-33.856000pt;}
.wsb2{word-spacing:-33.792000pt;}
.wsa0{word-spacing:-33.728000pt;}
.ws34{word-spacing:-33.664000pt;}
.ws1f{word-spacing:-33.600000pt;}
.ws35{word-spacing:-33.536000pt;}
.wsbe{word-spacing:-33.472000pt;}
.wsc5{word-spacing:-33.408000pt;}
.ws1e{word-spacing:-33.344000pt;}
.ws50{word-spacing:-33.280000pt;}
.ws5d{word-spacing:-33.216000pt;}
.wsa5{word-spacing:-33.088000pt;}
.wsb7{word-spacing:-32.960000pt;}
.ws73{word-spacing:-32.896000pt;}
.ws5c{word-spacing:-32.832000pt;}
.wsc0{word-spacing:-32.768000pt;}
.ws6a{word-spacing:-32.704000pt;}
.wsa3{word-spacing:-32.640000pt;}
.ws2c{word-spacing:-32.576000pt;}
.ws24{word-spacing:-32.512000pt;}
.ws63{word-spacing:-32.448000pt;}
.ws28{word-spacing:-32.384000pt;}
.ws27{word-spacing:-32.320000pt;}
.ws39{word-spacing:-32.256000pt;}
.ws4e{word-spacing:-32.192000pt;}
.ws74{word-spacing:-32.128000pt;}
.ws21{word-spacing:-32.064000pt;}
.ws47{word-spacing:-32.000000pt;}
.wsc6{word-spacing:-31.936000pt;}
.ws5b{word-spacing:-31.872000pt;}
.wsa7{word-spacing:-31.808000pt;}
.ws56{word-spacing:-31.744000pt;}
.ws61{word-spacing:-31.680000pt;}
.ws4d{word-spacing:-31.616000pt;}
.ws77{word-spacing:-31.552000pt;}
.wsb9{word-spacing:-31.488000pt;}
.ws98{word-spacing:-31.424000pt;}
.ws41{word-spacing:-31.360000pt;}
.ws42{word-spacing:-31.296000pt;}
.ws43{word-spacing:-31.232000pt;}
.ws8d{word-spacing:-31.168000pt;}
.ws57{word-spacing:-31.104000pt;}
.ws71{word-spacing:-31.040000pt;}
.ws65{word-spacing:-30.976000pt;}
.wsb3{word-spacing:-30.912000pt;}
.ws66{word-spacing:-30.848000pt;}
.ws90{word-spacing:-30.784000pt;}
.wsbd{word-spacing:-30.720000pt;}
.ws5a{word-spacing:-30.656000pt;}
.wsaa{word-spacing:-30.592000pt;}
.wsc4{word-spacing:-30.528000pt;}
.ws72{word-spacing:-30.464000pt;}
.wsb6{word-spacing:-30.336000pt;}
.wsac{word-spacing:-30.272000pt;}
.wscb{word-spacing:-30.208000pt;}
.ws59{word-spacing:-29.952000pt;}
.wsd8{word-spacing:-29.504000pt;}
.wsa8{word-spacing:-29.440000pt;}
.wsd9{word-spacing:-29.376000pt;}
.ws84{word-spacing:-29.248000pt;}
.ws48{word-spacing:-29.120000pt;}
.wsde{word-spacing:-28.970667pt;}
.wsd1{word-spacing:-28.864000pt;}
.ws17{word-spacing:-28.757333pt;}
.ws92{word-spacing:-28.224000pt;}
.ws8e{word-spacing:-27.200000pt;}
.wsb1{word-spacing:-25.600000pt;}
.wsd6{word-spacing:-25.344000pt;}
.wsaf{word-spacing:-25.216000pt;}
.wsb8{word-spacing:-24.960000pt;}
.wsd2{word-spacing:-24.832000pt;}
.wsd0{word-spacing:-24.384000pt;}
.wsdb{word-spacing:-22.506667pt;}
.wsda{word-spacing:-20.736000pt;}
.ws97{word-spacing:-19.712000pt;}
.ws3d{word-spacing:-18.880000pt;}
.wsca{word-spacing:-18.432000pt;}
.ws12{word-spacing:-17.984000pt;}
.ws3e{word-spacing:-17.856000pt;}
.wsdc{word-spacing:-17.792000pt;}
.ws3f{word-spacing:-17.664000pt;}
.ws75{word-spacing:-17.344000pt;}
.ws6{word-spacing:-14.986667pt;}
.ws44{word-spacing:-12.588800pt;}
.wscc{word-spacing:-12.544000pt;}
.wscf{word-spacing:-12.409600pt;}
.wsc9{word-spacing:-12.364800pt;}
.wsd5{word-spacing:-11.989333pt;}
.wsd3{word-spacing:-11.424000pt;}
.wsdd{word-spacing:-10.965333pt;}
.ws5f{word-spacing:-8.392533pt;}
.ws0{word-spacing:-7.573333pt;}
.ws33{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:30.880000pt;}
.ws4{word-spacing:129.866667pt;}
.ws9d{word-spacing:333.120000pt;}
.ws9e{word-spacing:548.693333pt;}
._0{margin-left:-843.466667pt;}
._34{margin-left:-400.746667pt;}
._20{margin-left:-17.387733pt;}
._37{margin-left:-16.256000pt;}
._12{margin-left:-15.360000pt;}
._39{margin-left:-14.357333pt;}
._21{margin-left:-12.779733pt;}
._1d{margin-left:-11.563733pt;}
._16{margin-left:-10.624000pt;}
._19{margin-left:-9.129600pt;}
._11{margin-left:-8.117333pt;}
._7{margin-left:-6.570667pt;}
._1{margin-left:-5.280000pt;}
._10{margin-left:-3.466667pt;}
._5{margin-left:-2.293333pt;}
._3{margin-left:-1.120000pt;}
._2{width:1.653333pt;}
._6{width:2.838400pt;}
._4{width:3.733333pt;}
._b{width:4.661333pt;}
._a{width:5.792000pt;}
._d{width:6.848000pt;}
._8{width:7.872000pt;}
._9{width:8.896000pt;}
._c{width:9.822933pt;}
._17{width:10.980267pt;}
._18{width:12.513067pt;}
._14{width:14.016000pt;}
._3c{width:14.910933pt;}
._1a{width:15.808000pt;}
._15{width:16.768000pt;}
._1f{width:18.091733pt;}
._1b{width:19.179733pt;}
._23{width:20.500267pt;}
._22{width:22.144000pt;}
._f{width:23.680000pt;}
._1e{width:24.990933pt;}
._1c{width:26.920533pt;}
._13{width:28.129867pt;}
._25{width:30.208000pt;}
._3a{width:31.488000pt;}
._24{width:33.216000pt;}
._3b{width:34.380800pt;}
._38{width:35.467733pt;}
._2a{width:44.000000pt;}
._e{width:50.822400pt;}
._28{width:92.266667pt;}
._30{width:100.106667pt;}
._26{width:164.213333pt;}
._27{width:189.013333pt;}
._29{width:202.293333pt;}
._32{width:214.613333pt;}
._2b{width:231.840000pt;}
._31{width:264.480000pt;}
._2d{width:268.053333pt;}
._36{width:348.106667pt;}
._2c{width:354.080000pt;}
._2f{width:374.773333pt;}
._2e{width:380.746667pt;}
._33{width:401.440000pt;}
._35{width:670.506667pt;}
.fs7{font-size:29.866667pt;}
.fs6{font-size:31.733333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:390.583467pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y1aa{bottom:103.999733pt;}
.y148{bottom:103.999867pt;}
.yb9{bottom:104.000000pt;}
.y103{bottom:104.000133pt;}
.y13e{bottom:104.000267pt;}
.y1ae{bottom:104.069333pt;}
.y1d3{bottom:104.074667pt;}
.y66{bottom:104.208267pt;}
.y91{bottom:104.396933pt;}
.y200{bottom:105.461333pt;}
.ydc{bottom:107.739733pt;}
.y44{bottom:107.740000pt;}
.yb7{bottom:108.858667pt;}
.y104{bottom:108.986667pt;}
.y127{bottom:110.292533pt;}
.y1e{bottom:110.444933pt;}
.y1a9{bottom:117.333067pt;}
.yde{bottom:117.333333pt;}
.y147{bottom:121.073200pt;}
.y102{bottom:121.073467pt;}
.y13d{bottom:121.073600pt;}
.y1ff{bottom:122.128000pt;}
.y1ad{bottom:123.541333pt;}
.y1d2{bottom:123.546667pt;}
.y90{bottom:123.596933pt;}
.y65{bottom:123.680267pt;}
.yb8{bottom:124.000000pt;}
.y43{bottom:127.740000pt;}
.yb6{bottom:128.858667pt;}
.y1d{bottom:131.372933pt;}
.y126{bottom:132.012533pt;}
.y1a8{bottom:134.406400pt;}
.ydd{bottom:134.406667pt;}
.y1fe{bottom:138.661333pt;}
.y8f{bottom:142.796933pt;}
.y1ac{bottom:143.013333pt;}
.y1d1{bottom:143.018667pt;}
.y64{bottom:143.152267pt;}
.y88{bottom:144.000000pt;}
.ydb{bottom:145.898400pt;}
.yb5{bottom:148.186667pt;}
.y176{bottom:148.591733pt;}
.y184{bottom:148.634400pt;}
.y1c{bottom:152.300933pt;}
.y101{bottom:153.349467pt;}
.y125{bottom:153.732533pt;}
.y1fd{bottom:155.194667pt;}
.y146{bottom:157.600000pt;}
.y8e{bottom:161.996933pt;}
.y13c{bottom:162.298933pt;}
.y1ab{bottom:162.485333pt;}
.y1d0{bottom:162.490667pt;}
.y42{bottom:162.501333pt;}
.y63{bottom:162.624267pt;}
.y153{bottom:162.661600pt;}
.y87{bottom:164.000000pt;}
.yda{bottom:166.426400pt;}
.yb4{bottom:167.514667pt;}
.y175{bottom:168.463733pt;}
.y183{bottom:168.506400pt;}
.y1fc{bottom:171.728000pt;}
.y1a7{bottom:171.871733pt;}
.y100{bottom:173.077467pt;}
.y1b{bottom:173.228933pt;}
.y124{bottom:175.452533pt;}
.y145{bottom:177.600000pt;}
.y8d{bottom:181.196933pt;}
.y152{bottom:181.957333pt;}
.y1cf{bottom:181.962667pt;}
.y41{bottom:181.973333pt;}
.y13b{bottom:182.026933pt;}
.y62{bottom:182.096267pt;}
.y86{bottom:184.000000pt;}
.yb3{bottom:186.842667pt;}
.yd9{bottom:186.954400pt;}
.y1fb{bottom:188.261333pt;}
.y174{bottom:188.335733pt;}
.y182{bottom:188.378400pt;}
.y1a6{bottom:191.199733pt;}
.yff{bottom:192.805467pt;}
.y1a{bottom:194.156933pt;}
.y123{bottom:197.172533pt;}
.y144{bottom:197.200000pt;}
.y8c{bottom:200.396933pt;}
.y151{bottom:201.429333pt;}
.y1ce{bottom:201.434667pt;}
.y40{bottom:201.445333pt;}
.y13a{bottom:201.498933pt;}
.y61{bottom:201.568267pt;}
.y85{bottom:204.000000pt;}
.y1fa{bottom:204.794667pt;}
.yb2{bottom:206.170667pt;}
.yd8{bottom:207.482400pt;}
.y173{bottom:208.207733pt;}
.y181{bottom:208.250400pt;}
.y1a5{bottom:210.399733pt;}
.yfe{bottom:212.698667pt;}
.y19{bottom:215.084933pt;}
.y143{bottom:216.800000pt;}
.y122{bottom:218.892533pt;}
.y8b{bottom:219.596933pt;}
.y150{bottom:220.901333pt;}
.y1cd{bottom:220.906667pt;}
.y3f{bottom:220.917333pt;}
.y139{bottom:220.970933pt;}
.y60{bottom:221.040267pt;}
.y1f9{bottom:221.328000pt;}
.y84{bottom:224.000000pt;}
.yb1{bottom:225.498667pt;}
.yd7{bottom:228.010400pt;}
.y172{bottom:228.079733pt;}
.y180{bottom:228.122400pt;}
.y1a4{bottom:229.599733pt;}
.yfd{bottom:232.426667pt;}
.y18{bottom:236.012933pt;}
.y142{bottom:236.400000pt;}
.y1f8{bottom:237.861333pt;}
.y8a{bottom:238.796933pt;}
.y14f{bottom:240.373333pt;}
.y1cc{bottom:240.378667pt;}
.y3e{bottom:240.389333pt;}
.y138{bottom:240.442933pt;}
.y5f{bottom:240.512267pt;}
.y121{bottom:240.612533pt;}
.y83{bottom:244.000000pt;}
.yb0{bottom:244.826667pt;}
.y171{bottom:247.951733pt;}
.y17f{bottom:247.994400pt;}
.yd6{bottom:248.538400pt;}
.y1a3{bottom:248.799733pt;}
.yfc{bottom:252.154667pt;}
.y1f7{bottom:254.394667pt;}
.y141{bottom:256.000000pt;}
.y17{bottom:256.940933pt;}
.y89{bottom:257.996933pt;}
.y14e{bottom:259.845333pt;}
.y1cb{bottom:259.850667pt;}
.y3d{bottom:259.861333pt;}
.y137{bottom:259.914933pt;}
.y5e{bottom:259.984267pt;}
.y82{bottom:264.000000pt;}
.yaf{bottom:264.154667pt;}
.y17e{bottom:267.717333pt;}
.y170{bottom:267.823733pt;}
.y1a2{bottom:267.999733pt;}
.yd5{bottom:269.210667pt;}
.y1f6{bottom:270.928000pt;}
.yfb{bottom:271.882667pt;}
.y120{bottom:274.799867pt;}
.y140{bottom:275.600000pt;}
.y16{bottom:277.868933pt;}
.y14d{bottom:279.317333pt;}
.y1ca{bottom:279.322667pt;}
.y3c{bottom:279.333333pt;}
.y136{bottom:279.386933pt;}
.y5d{bottom:279.456267pt;}
.yae{bottom:283.482667pt;}
.y81{bottom:284.000000pt;}
.y1a1{bottom:287.199733pt;}
.y1f5{bottom:287.461333pt;}
.y17d{bottom:287.589333pt;}
.y16f{bottom:287.695733pt;}
.yd4{bottom:289.738667pt;}
.yfa{bottom:291.610667pt;}
.y13f{bottom:295.200000pt;}
.y14c{bottom:298.789333pt;}
.y1c9{bottom:298.794667pt;}
.y15{bottom:298.796933pt;}
.y3b{bottom:298.805333pt;}
.y135{bottom:298.858933pt;}
.y5c{bottom:298.928267pt;}
.yad{bottom:302.810667pt;}
.y1f4{bottom:303.994667pt;}
.y80{bottom:304.000000pt;}
.y1a0{bottom:306.399733pt;}
.y17c{bottom:307.461333pt;}
.y16e{bottom:307.567733pt;}
.yd3{bottom:310.266667pt;}
.yf9{bottom:311.338667pt;}
.y11f{bottom:314.800000pt;}
.y14b{bottom:318.261333pt;}
.y1c8{bottom:318.266667pt;}
.y3a{bottom:318.277333pt;}
.y134{bottom:318.330933pt;}
.y5b{bottom:318.400267pt;}
.y14{bottom:319.724933pt;}
.y1f3{bottom:320.528000pt;}
.yac{bottom:322.138667pt;}
.y7f{bottom:324.000000pt;}
.y19f{bottom:325.599733pt;}
.y17b{bottom:327.333333pt;}
.y16d{bottom:327.439733pt;}
.yd2{bottom:330.794667pt;}
.yf8{bottom:331.066667pt;}
.y11e{bottom:334.400000pt;}
.y1f2{bottom:337.061333pt;}
.y14a{bottom:337.733333pt;}
.y1c7{bottom:337.738667pt;}
.y39{bottom:337.749333pt;}
.y133{bottom:337.802933pt;}
.y5a{bottom:337.866933pt;}
.y13{bottom:340.652933pt;}
.yab{bottom:341.466667pt;}
.y7e{bottom:344.000000pt;}
.y19e{bottom:344.799733pt;}
.y17a{bottom:347.205333pt;}
.y16c{bottom:347.311733pt;}
.yf7{bottom:350.794667pt;}
.yd1{bottom:351.322667pt;}
.y1f1{bottom:353.594667pt;}
.y11d{bottom:354.000000pt;}
.y149{bottom:357.205333pt;}
.y1c6{bottom:357.210667pt;}
.y38{bottom:357.221333pt;}
.y132{bottom:357.274933pt;}
.yaa{bottom:360.794667pt;}
.y12{bottom:361.580933pt;}
.y19d{bottom:363.999733pt;}
.y7d{bottom:364.000000pt;}
.y179{bottom:367.077333pt;}
.y16b{bottom:367.183733pt;}
.y1f0{bottom:370.128000pt;}
.yf6{bottom:370.522667pt;}
.yd0{bottom:371.850667pt;}
.y11c{bottom:373.600000pt;}
.y59{bottom:376.677333pt;}
.y1c5{bottom:376.682667pt;}
.y37{bottom:376.693333pt;}
.y131{bottom:376.746933pt;}
.ya9{bottom:380.122667pt;}
.y11{bottom:382.508933pt;}
.y19c{bottom:383.199733pt;}
.y7c{bottom:384.000000pt;}
.y1ef{bottom:386.661333pt;}
.y178{bottom:386.949333pt;}
.y16a{bottom:387.055733pt;}
.yf5{bottom:390.250667pt;}
.ycf{bottom:392.378667pt;}
.y11b{bottom:393.200000pt;}
.y58{bottom:396.149333pt;}
.y1c4{bottom:396.154667pt;}
.y36{bottom:396.165333pt;}
.y130{bottom:396.218933pt;}
.ya8{bottom:399.450667pt;}
.y19b{bottom:402.399733pt;}
.y1ee{bottom:403.194667pt;}
.y10{bottom:403.436933pt;}
.y7b{bottom:404.000000pt;}
.y177{bottom:406.821333pt;}
.y169{bottom:406.927733pt;}
.yf4{bottom:409.978667pt;}
.y11a{bottom:412.800000pt;}
.yce{bottom:412.906667pt;}
.y57{bottom:415.621333pt;}
.y1c3{bottom:415.626667pt;}
.y35{bottom:415.637333pt;}
.y12f{bottom:415.690933pt;}
.ya7{bottom:418.778667pt;}
.y1ed{bottom:419.728000pt;}
.y19a{bottom:421.599733pt;}
.y7a{bottom:424.000000pt;}
.yf{bottom:424.364933pt;}
.y168{bottom:426.693333pt;}
.yf3{bottom:429.706667pt;}
.y119{bottom:432.400000pt;}
.ycd{bottom:433.434667pt;}
.y56{bottom:435.093333pt;}
.y1c2{bottom:435.098667pt;}
.y34{bottom:435.109333pt;}
.y12e{bottom:435.162933pt;}
.y1ec{bottom:436.261333pt;}
.ya6{bottom:438.106667pt;}
.y199{bottom:440.799733pt;}
.y79{bottom:444.000000pt;}
.ye{bottom:445.292933pt;}
.y167{bottom:446.565333pt;}
.yf2{bottom:449.434667pt;}
.y213{bottom:450.666667pt;}
.y118{bottom:452.000000pt;}
.y1eb{bottom:452.794667pt;}
.ycc{bottom:453.962667pt;}
.y55{bottom:454.565333pt;}
.y1c1{bottom:454.570667pt;}
.y33{bottom:454.581333pt;}
.y12d{bottom:454.634933pt;}
.ya5{bottom:457.434667pt;}
.y198{bottom:459.999733pt;}
.y78{bottom:464.000000pt;}
.yd{bottom:466.220933pt;}
.y166{bottom:466.437333pt;}
.y212{bottom:467.333333pt;}
.yf1{bottom:469.162667pt;}
.y1ea{bottom:469.328000pt;}
.y117{bottom:471.600000pt;}
.y54{bottom:474.037333pt;}
.y1c0{bottom:474.042667pt;}
.y32{bottom:474.053333pt;}
.y12c{bottom:474.106933pt;}
.ycb{bottom:474.490667pt;}
.ya4{bottom:476.762667pt;}
.y197{bottom:479.199733pt;}
.y77{bottom:484.000000pt;}
.y1e9{bottom:485.861333pt;}
.y165{bottom:486.309333pt;}
.yc{bottom:487.148933pt;}
.yf0{bottom:488.890667pt;}
.y116{bottom:491.200000pt;}
.y53{bottom:493.509333pt;}
.y1bf{bottom:493.514667pt;}
.y31{bottom:493.525333pt;}
.y12b{bottom:493.578933pt;}
.yca{bottom:495.018667pt;}
.ya3{bottom:496.090667pt;}
.y196{bottom:498.399733pt;}
.y211{bottom:500.666667pt;}
.y1e8{bottom:502.394667pt;}
.y76{bottom:504.000000pt;}
.y164{bottom:506.181333pt;}
.yb{bottom:508.076933pt;}
.yef{bottom:508.618667pt;}
.y115{bottom:510.800000pt;}
.y52{bottom:512.981333pt;}
.y1be{bottom:512.986667pt;}
.y30{bottom:512.997333pt;}
.y12a{bottom:513.050933pt;}
.ya2{bottom:515.418667pt;}
.yc9{bottom:515.546667pt;}
.y195{bottom:517.600000pt;}
.y1e7{bottom:518.928000pt;}
.y75{bottom:524.000000pt;}
.y163{bottom:526.053333pt;}
.y210{bottom:527.333333pt;}
.yee{bottom:528.346667pt;}
.y8{bottom:528.994267pt;}
.ya{bottom:529.004933pt;}
.y114{bottom:530.400000pt;}
.y51{bottom:532.453333pt;}
.y1bd{bottom:532.458667pt;}
.y2f{bottom:532.469333pt;}
.y129{bottom:532.522933pt;}
.ya1{bottom:534.746667pt;}
.yc8{bottom:536.074667pt;}
.y194{bottom:536.800000pt;}
.y1e6{bottom:541.199867pt;}
.y74{bottom:544.000000pt;}
.y162{bottom:545.925333pt;}
.yed{bottom:548.074667pt;}
.y9{bottom:549.932933pt;}
.y113{bottom:550.000000pt;}
.y50{bottom:551.925333pt;}
.y1bc{bottom:551.930667pt;}
.y2e{bottom:551.941333pt;}
.y128{bottom:551.994933pt;}
.ya0{bottom:554.074667pt;}
.y193{bottom:556.000000pt;}
.yc7{bottom:556.602667pt;}
.y20f{bottom:560.666667pt;}
.y73{bottom:564.000000pt;}
.y161{bottom:565.797333pt;}
.yec{bottom:567.802667pt;}
.y112{bottom:569.600000pt;}
.y4f{bottom:571.397333pt;}
.y1bb{bottom:571.402667pt;}
.y2d{bottom:571.413333pt;}
.y9f{bottom:573.402667pt;}
.y192{bottom:575.200000pt;}
.yc6{bottom:577.130667pt;}
.y20e{bottom:577.333333pt;}
.y1e5{bottom:580.933200pt;}
.y72{bottom:584.000000pt;}
.y160{bottom:585.669333pt;}
.yeb{bottom:587.530667pt;}
.y111{bottom:589.200000pt;}
.y4e{bottom:590.869333pt;}
.y1ba{bottom:590.874667pt;}
.y2c{bottom:590.885333pt;}
.y9e{bottom:592.730667pt;}
.y20d{bottom:594.000000pt;}
.y1e4{bottom:594.127867pt;}
.y191{bottom:594.400000pt;}
.yc5{bottom:597.658667pt;}
.y71{bottom:604.000000pt;}
.y15f{bottom:605.541333pt;}
.yea{bottom:607.258667pt;}
.y1e3{bottom:607.322533pt;}
.y110{bottom:608.800000pt;}
.y4d{bottom:610.341333pt;}
.y1b9{bottom:610.346667pt;}
.y2b{bottom:610.357333pt;}
.y20c{bottom:610.666667pt;}
.y7{bottom:610.994267pt;}
.y9d{bottom:612.058667pt;}
.y190{bottom:613.600000pt;}
.yc4{bottom:618.186667pt;}
.y1e2{bottom:620.517200pt;}
.y70{bottom:624.000000pt;}
.y15e{bottom:625.413333pt;}
.ye9{bottom:626.986667pt;}
.y20b{bottom:627.333333pt;}
.y6{bottom:627.660933pt;}
.y10f{bottom:628.400000pt;}
.y4c{bottom:629.813333pt;}
.y1b8{bottom:629.818667pt;}
.y2a{bottom:629.829333pt;}
.y9c{bottom:631.386667pt;}
.y18f{bottom:632.800000pt;}
.y1e1{bottom:633.711867pt;}
.yc3{bottom:638.714667pt;}
.y6f{bottom:644.000000pt;}
.y15d{bottom:645.285333pt;}
.ye8{bottom:646.714667pt;}
.y1e0{bottom:646.906533pt;}
.y10e{bottom:648.000000pt;}
.y4b{bottom:649.285333pt;}
.y1b7{bottom:649.290667pt;}
.y29{bottom:649.301333pt;}
.y9b{bottom:650.714667pt;}
.y18e{bottom:652.000000pt;}
.yc2{bottom:659.242667pt;}
.y1df{bottom:660.101200pt;}
.y20a{bottom:660.666667pt;}
.y6e{bottom:664.000000pt;}
.y5{bottom:665.114933pt;}
.y15c{bottom:665.157333pt;}
.ye7{bottom:666.442667pt;}
.y10d{bottom:667.600000pt;}
.y4a{bottom:668.757333pt;}
.y1b6{bottom:668.762667pt;}
.y28{bottom:668.773333pt;}
.y9a{bottom:670.042667pt;}
.y18d{bottom:671.200000pt;}
.y1de{bottom:673.295867pt;}
.y209{bottom:677.333333pt;}
.yc1{bottom:679.770667pt;}
.y6d{bottom:684.000000pt;}
.y15b{bottom:685.029333pt;}
.y4{bottom:685.114933pt;}
.ye6{bottom:686.170667pt;}
.y1dd{bottom:686.490533pt;}
.y10c{bottom:687.200000pt;}
.y49{bottom:688.229333pt;}
.y1b5{bottom:688.234667pt;}
.y27{bottom:688.245333pt;}
.y99{bottom:689.370667pt;}
.y18c{bottom:690.400000pt;}
.y208{bottom:694.000000pt;}
.y1dc{bottom:699.685200pt;}
.yc0{bottom:700.298667pt;}
.y6c{bottom:704.000000pt;}
.y15a{bottom:704.901333pt;}
.ye5{bottom:705.898667pt;}
.y10b{bottom:706.800000pt;}
.y48{bottom:707.701333pt;}
.y1b4{bottom:707.706667pt;}
.y26{bottom:707.717333pt;}
.y98{bottom:708.698667pt;}
.y18b{bottom:709.600000pt;}
.y207{bottom:710.666667pt;}
.y1db{bottom:712.879867pt;}
.ybf{bottom:720.826667pt;}
.y6b{bottom:724.000000pt;}
.y159{bottom:724.773333pt;}
.ye4{bottom:725.626667pt;}
.y1da{bottom:726.074533pt;}
.y10a{bottom:726.400000pt;}
.y47{bottom:727.173333pt;}
.y1b3{bottom:727.178667pt;}
.y25{bottom:727.189333pt;}
.y206{bottom:727.333333pt;}
.y97{bottom:728.026667pt;}
.y18a{bottom:728.800000pt;}
.y1d9{bottom:739.279867pt;}
.ybe{bottom:741.354667pt;}
.y6a{bottom:744.000000pt;}
.y158{bottom:744.645333pt;}
.ye3{bottom:745.354667pt;}
.y109{bottom:746.000000pt;}
.y46{bottom:746.645333pt;}
.y1b2{bottom:746.650667pt;}
.y24{bottom:746.661333pt;}
.y96{bottom:747.354667pt;}
.y189{bottom:748.000000pt;}
.y1d8{bottom:752.474533pt;}
.y205{bottom:760.666667pt;}
.ybd{bottom:761.882667pt;}
.y3{bottom:764.000000pt;}
.y157{bottom:764.517333pt;}
.ye2{bottom:765.082667pt;}
.y108{bottom:765.600000pt;}
.y1d7{bottom:765.669200pt;}
.y45{bottom:766.117333pt;}
.y1b1{bottom:766.122667pt;}
.y23{bottom:766.128000pt;}
.y95{bottom:766.682667pt;}
.y188{bottom:767.200000pt;}
.y204{bottom:777.333333pt;}
.y1d6{bottom:778.874667pt;}
.ybc{bottom:782.410667pt;}
.y69{bottom:784.000000pt;}
.y156{bottom:784.389333pt;}
.ye1{bottom:784.810667pt;}
.y107{bottom:785.200000pt;}
.y22{bottom:785.589333pt;}
.y1b0{bottom:785.594667pt;}
.y94{bottom:786.010667pt;}
.y187{bottom:786.400000pt;}
.y2{bottom:790.666667pt;}
.y1d5{bottom:792.069333pt;}
.y203{bottom:794.000000pt;}
.ybb{bottom:802.938667pt;}
.y68{bottom:804.000000pt;}
.y155{bottom:804.261333pt;}
.ye0{bottom:804.538667pt;}
.y106{bottom:804.800000pt;}
.y21{bottom:805.061333pt;}
.y1af{bottom:805.066667pt;}
.y1d4{bottom:805.264000pt;}
.y93{bottom:805.338667pt;}
.y186{bottom:805.600000pt;}
.y202{bottom:810.666667pt;}
.yba{bottom:823.466667pt;}
.y67{bottom:824.000000pt;}
.y154{bottom:824.133333pt;}
.ydf{bottom:824.266667pt;}
.y105{bottom:824.400000pt;}
.y20{bottom:824.533333pt;}
.y92{bottom:824.666667pt;}
.y185{bottom:824.800000pt;}
.y201{bottom:827.333333pt;}
.h9{height:21.894141pt;}
.hc{height:26.945443pt;}
.h14{height:35.456000pt;}
.he{height:36.229167pt;}
.ha{height:44.320000pt;}
.h3{height:44.960000pt;}
.h1{height:45.286458pt;}
.h4{height:54.343750pt;}
.h8{height:54.365083pt;}
.h7{height:54.386417pt;}
.h11{height:54.769350pt;}
.h12{height:54.940017pt;}
.h10{height:55.048817pt;}
.h6{height:55.953125pt;}
.hb{height:58.583558pt;}
.h13{height:59.159558pt;}
.hd{height:59.160625pt;}
.hf{height:59.439025pt;}
.h2{height:90.572917pt;}
.h5{height:315.591441pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x6{left:73.228400pt;}
.x2{left:100.000000pt;}
.x8{left:104.112933pt;}
.x7{left:113.228400pt;}
.x5{left:120.000000pt;}
.x3{left:140.034267pt;}
.x9{left:190.019600pt;}
.x1{left:556.250000pt;}
}




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