
    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_fe9df2c66613dffeb265ddc3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_04cd961ac0ca9b2f322f7700.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_363fc0c231b180cb3ddf004f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ae4c9887d5ba19b870a25457.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_79ad4facb10491392178c3b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d05cca84a9dbad04e2473657.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bc23908f69da2769b61c3ad6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112000;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_86e9025b8b834db49c70b18b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_be627ec07bd9b4ca8e4530e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_04cd961ac0ca9b2f322f7700.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_363fc0c231b180cb3ddf004f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c5f57da60b8aaaf1efee63ac.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_734a5775fd1eac9108a395d6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.970000;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_b0faa5933078f483648a6b44.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923500;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_c5f57da60b8aaaf1efee63ac.woff2')format("woff");}.fff{font-family:fff;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_132b61ad341e0946396fe49c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c5f57da60b8aaaf1efee63ac.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_e4da45df51ccdd4977b36704.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_162a1e493329037f59e602c6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.719238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-18.360000px;}
.v3{vertical-align:-17.340000px;}
.v5{vertical-align:-10.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.216000px;}
.v1{vertical-align:20.400000px;}
.ls64{letter-spacing:-1.890000px;}
.lsa4{letter-spacing:-1.800000px;}
.lsad{letter-spacing:-1.755000px;}
.lsa2{letter-spacing:-1.575000px;}
.ls9f{letter-spacing:-1.350000px;}
.ls58{letter-spacing:-1.134000px;}
.ls6a{letter-spacing:-1.080000px;}
.lsa1{letter-spacing:-1.035000px;}
.lsac{letter-spacing:-0.990000px;}
.ls43{letter-spacing:-0.972000px;}
.ls9b{letter-spacing:-0.855000px;}
.ls96{letter-spacing:-0.765000px;}
.ls98{letter-spacing:-0.720000px;}
.ls4c{letter-spacing:-0.702000px;}
.ls90{letter-spacing:-0.675000px;}
.ls57{letter-spacing:-0.648000px;}
.lsae{letter-spacing:-0.630000px;}
.ls8d{letter-spacing:-0.594000px;}
.lsa3{letter-spacing:-0.585000px;}
.ls49{letter-spacing:-0.540000px;}
.lsab{letter-spacing:-0.495000px;}
.ls5e{letter-spacing:-0.486000px;}
.ls99{letter-spacing:-0.450000px;}
.ls60{letter-spacing:-0.432000px;}
.lsaf{letter-spacing:-0.405000px;}
.ls59{letter-spacing:-0.378000px;}
.lsa5{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.357000px;}
.ls8e{letter-spacing:-0.315000px;}
.ls4b{letter-spacing:-0.270000px;}
.ls7c{letter-spacing:-0.240000px;}
.ls47{letter-spacing:-0.216000px;}
.lsa0{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.162000px;}
.ls1a{letter-spacing:-0.153000px;}
.ls5f{letter-spacing:-0.140400px;}
.lsa6{letter-spacing:-0.135000px;}
.ls7d{letter-spacing:-0.120000px;}
.ls17{letter-spacing:-0.108000px;}
.ls5a{letter-spacing:-0.105300px;}
.ls1c{letter-spacing:-0.102000px;}
.ls9c{letter-spacing:-0.090000px;}
.ls5c{letter-spacing:-0.070200px;}
.ls3f{letter-spacing:-0.054000px;}
.ls1d{letter-spacing:-0.051000px;}
.ls97{letter-spacing:-0.045000px;}
.ls5b{letter-spacing:-0.035100px;}
.ls12{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.013200px;}
.ls4{letter-spacing:0.013800px;}
.ls26{letter-spacing:0.016800px;}
.ls5{letter-spacing:0.022200px;}
.ls3{letter-spacing:0.022800px;}
.ls61{letter-spacing:0.034800px;}
.ls5d{letter-spacing:0.035100px;}
.ls72{letter-spacing:0.038400px;}
.ls71{letter-spacing:0.039000px;}
.ls70{letter-spacing:0.040800px;}
.ls8f{letter-spacing:0.045000px;}
.ls37{letter-spacing:0.054000px;}
.ls6b{letter-spacing:0.060000px;}
.ls53{letter-spacing:0.063600px;}
.ls3d{letter-spacing:0.064500px;}
.ls41{letter-spacing:0.070200px;}
.ls50{letter-spacing:0.070800px;}
.ls6d{letter-spacing:0.080400px;}
.ls6f{letter-spacing:0.088800px;}
.ls2d{letter-spacing:0.089700px;}
.ls95{letter-spacing:0.090000px;}
.ls9{letter-spacing:0.102450px;}
.ls2c{letter-spacing:0.105300px;}
.ls38{letter-spacing:0.108000px;}
.lsa8{letter-spacing:0.117000px;}
.ls7e{letter-spacing:0.120000px;}
.ls39{letter-spacing:0.121500px;}
.ls88{letter-spacing:0.135000px;}
.ls56{letter-spacing:0.138600px;}
.ls42{letter-spacing:0.140400px;}
.ls81{letter-spacing:0.151200px;}
.lsa{letter-spacing:0.153000px;}
.ls52{letter-spacing:0.161400px;}
.ls2b{letter-spacing:0.162000px;}
.ls62{letter-spacing:0.163800px;}
.ls7f{letter-spacing:0.168000px;}
.ls35{letter-spacing:0.171000px;}
.ls36{letter-spacing:0.173400px;}
.ls34{letter-spacing:0.175500px;}
.ls9a{letter-spacing:0.180000px;}
.ls7a{letter-spacing:0.183000px;}
.ls4d{letter-spacing:0.207600px;}
.ls31{letter-spacing:0.210600px;}
.ls13{letter-spacing:0.216000px;}
.ls32{letter-spacing:0.217200px;}
.ls86{letter-spacing:0.225000px;}
.ls7{letter-spacing:0.227400px;}
.ls8{letter-spacing:0.228150px;}
.ls78{letter-spacing:0.228600px;}
.ls67{letter-spacing:0.232200px;}
.ls54{letter-spacing:0.233400px;}
.ls19{letter-spacing:0.245700px;}
.ls80{letter-spacing:0.247200px;}
.ls2f{letter-spacing:0.249000px;}
.ls65{letter-spacing:0.250800px;}
.ls6{letter-spacing:0.270000px;}
.ls2e{letter-spacing:0.280800px;}
.ls85{letter-spacing:0.300000px;}
.ls89{letter-spacing:0.315000px;}
.ls46{letter-spacing:0.315900px;}
.ls66{letter-spacing:0.319800px;}
.ls33{letter-spacing:0.324000px;}
.ls3e{letter-spacing:0.334800px;}
.ls3c{letter-spacing:0.335100px;}
.ls4f{letter-spacing:0.345000px;}
.ls40{letter-spacing:0.351000px;}
.lsc{letter-spacing:0.353250px;}
.ls73{letter-spacing:0.354600px;}
.ls51{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.378000px;}
.ls77{letter-spacing:0.381000px;}
.lsa7{letter-spacing:0.382500px;}
.ls3b{letter-spacing:0.386100px;}
.ls91{letter-spacing:0.405000px;}
.ls2a{letter-spacing:0.419400px;}
.lse{letter-spacing:0.424650px;}
.ls14{letter-spacing:0.432000px;}
.ls9e{letter-spacing:0.450000px;}
.ls25{letter-spacing:0.459000px;}
.ls74{letter-spacing:0.480000px;}
.ls22{letter-spacing:0.486000px;}
.ls29{letter-spacing:0.491400px;}
.ls93{letter-spacing:0.495000px;}
.ls23{letter-spacing:0.496800px;}
.ls3a{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.561000px;}
.ls30{letter-spacing:0.561600px;}
.ls87{letter-spacing:0.585000px;}
.ls16{letter-spacing:0.594000px;}
.ls79{letter-spacing:0.600000px;}
.ls92{letter-spacing:0.630000px;}
.ls27{letter-spacing:0.648000px;}
.lsd{letter-spacing:0.663000px;}
.lsa9{letter-spacing:0.666000px;}
.ls8c{letter-spacing:0.675000px;}
.ls69{letter-spacing:0.702000px;}
.ls8a{letter-spacing:0.715500px;}
.ls83{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.756000px;}
.ls9d{letter-spacing:0.765000px;}
.ls75{letter-spacing:0.780000px;}
.ls6c{letter-spacing:0.804600px;}
.ls21{letter-spacing:0.810000px;}
.ls1e{letter-spacing:0.816000px;}
.ls28{letter-spacing:0.820800px;}
.ls44{letter-spacing:0.840000px;}
.ls76{letter-spacing:0.864000px;}
.ls10{letter-spacing:0.918000px;}
.ls84{letter-spacing:0.945000px;}
.ls11{letter-spacing:0.960000px;}
.ls55{letter-spacing:0.972000px;}
.ls94{letter-spacing:0.990000px;}
.lsaa{letter-spacing:1.021500px;}
.ls68{letter-spacing:1.026000px;}
.lsf{letter-spacing:1.036650px;}
.ls82{letter-spacing:1.080000px;}
.ls45{letter-spacing:1.188000px;}
.ls4e{letter-spacing:1.350000px;}
.ls8b{letter-spacing:1.395000px;}
.ls6e{letter-spacing:1.468800px;}
.ls1f{letter-spacing:1.632000px;}
.ls0{letter-spacing:2.592000px;}
.ls20{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls7b{letter-spacing:4.620000px;}
.lsb0{letter-spacing:4.920000px;}
.ls63{letter-spacing:6.120000px;}
.ls48{letter-spacing:14.202000px;}
.ls4a{letter-spacing:14.742000px;}
.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;}
}
.ws2{word-spacing:-15.067500px;}
.ws2e{word-spacing:-13.596000px;}
.ws5{word-spacing:-12.636000px;}
.ws6f{word-spacing:-12.582000px;}
.ws31{word-spacing:-12.528000px;}
.ws87{word-spacing:-12.474000px;}
.ws76{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws8{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws4f{word-spacing:-11.826000px;}
.ws4a{word-spacing:-11.718000px;}
.ws84{word-spacing:-10.620000px;}
.ws86{word-spacing:-10.440000px;}
.ws83{word-spacing:-10.350000px;}
.ws85{word-spacing:-10.305000px;}
.wsb9{word-spacing:-10.125000px;}
.ws9b{word-spacing:-10.080000px;}
.ws82{word-spacing:-9.990000px;}
.ws9a{word-spacing:-9.855000px;}
.wsa0{word-spacing:-9.720000px;}
.wsbb{word-spacing:-9.675000px;}
.ws9d{word-spacing:-9.585000px;}
.ws99{word-spacing:-9.540000px;}
.ws9c{word-spacing:-9.450000px;}
.ws9f{word-spacing:-9.270000px;}
.ws9e{word-spacing:-8.955000px;}
.wsba{word-spacing:-8.730000px;}
.wsbc{word-spacing:-8.550000px;}
.ws6e{word-spacing:-8.459100px;}
.ws65{word-spacing:-8.353800px;}
.ws2a{word-spacing:-8.318700px;}
.ws2f{word-spacing:-8.283600px;}
.ws2b{word-spacing:-8.248500px;}
.ws7{word-spacing:-8.213400px;}
.ws6{word-spacing:-8.195850px;}
.ws56{word-spacing:-8.178300px;}
.ws32{word-spacing:-8.143200px;}
.ws2d{word-spacing:-8.108100px;}
.ws69{word-spacing:-8.073000px;}
.ws2c{word-spacing:-8.037900px;}
.ws60{word-spacing:-8.002800px;}
.ws4{word-spacing:-7.967700px;}
.ws55{word-spacing:-7.932600px;}
.ws57{word-spacing:-7.897500px;}
.ws54{word-spacing:-7.862400px;}
.ws61{word-spacing:-7.827300px;}
.ws9{word-spacing:-6.630000px;}
.ws6a{word-spacing:-6.120000px;}
.ws41{word-spacing:-5.508000px;}
.ws10{word-spacing:-5.340000px;}
.wsc4{word-spacing:-4.920000px;}
.ws77{word-spacing:-4.620000px;}
.wsc7{word-spacing:-3.960000px;}
.wse{word-spacing:-3.840000px;}
.ws21{word-spacing:-3.519000px;}
.wsb{word-spacing:-3.276000px;}
.wsd{word-spacing:-3.000000px;}
.ws29{word-spacing:-2.760000px;}
.ws1{word-spacing:-2.640000px;}
.wsc{word-spacing:-2.400000px;}
.ws64{word-spacing:-2.106000px;}
.ws46{word-spacing:-1.890000px;}
.ws78{word-spacing:-1.860000px;}
.ws14{word-spacing:-1.836000px;}
.ws7e{word-spacing:-1.800000px;}
.ws71{word-spacing:-1.782000px;}
.ws70{word-spacing:-1.728000px;}
.ws58{word-spacing:-1.674000px;}
.ws26{word-spacing:-1.632000px;}
.ws47{word-spacing:-1.620000px;}
.ws1d{word-spacing:-1.581000px;}
.wsc1{word-spacing:-1.575000px;}
.ws20{word-spacing:-1.530000px;}
.ws4c{word-spacing:-1.512000px;}
.ws4b{word-spacing:-1.500000px;}
.ws63{word-spacing:-1.458000px;}
.ws3a{word-spacing:-1.404000px;}
.ws73{word-spacing:-1.386000px;}
.ws4d{word-spacing:-1.350000px;}
.wsb3{word-spacing:-1.305000px;}
.ws19{word-spacing:-1.296000px;}
.wsf{word-spacing:-1.260000px;}
.ws15{word-spacing:-1.242000px;}
.wsa6{word-spacing:-1.215000px;}
.ws1a{word-spacing:-1.188000px;}
.wsaa{word-spacing:-1.170000px;}
.ws11{word-spacing:-1.134000px;}
.ws5f{word-spacing:-1.080000px;}
.ws8d{word-spacing:-1.035000px;}
.ws36{word-spacing:-1.026000px;}
.ws28{word-spacing:-1.020000px;}
.wsbf{word-spacing:-0.990000px;}
.ws5e{word-spacing:-0.972000px;}
.wsb5{word-spacing:-0.945000px;}
.ws27{word-spacing:-0.918000px;}
.ws44{word-spacing:-0.900000px;}
.ws22{word-spacing:-0.867000px;}
.ws45{word-spacing:-0.864000px;}
.wsa3{word-spacing:-0.855000px;}
.ws25{word-spacing:-0.816000px;}
.ws49{word-spacing:-0.810000px;}
.ws80{word-spacing:-0.780000px;}
.ws8c{word-spacing:-0.765000px;}
.ws59{word-spacing:-0.756000px;}
.ws98{word-spacing:-0.720000px;}
.ws34{word-spacing:-0.702000px;}
.wsbe{word-spacing:-0.675000px;}
.ws23{word-spacing:-0.663000px;}
.ws74{word-spacing:-0.660000px;}
.ws35{word-spacing:-0.648000px;}
.wsb4{word-spacing:-0.630000px;}
.ws7c{word-spacing:-0.600000px;}
.ws12{word-spacing:-0.594000px;}
.wsa7{word-spacing:-0.585000px;}
.ws38{word-spacing:-0.540000px;}
.ws1c{word-spacing:-0.510000px;}
.ws90{word-spacing:-0.495000px;}
.ws17{word-spacing:-0.486000px;}
.wsac{word-spacing:-0.450000px;}
.ws43{word-spacing:-0.432000px;}
.ws8b{word-spacing:-0.420000px;}
.ws8e{word-spacing:-0.405000px;}
.ws18{word-spacing:-0.378000px;}
.ws93{word-spacing:-0.360000px;}
.ws52{word-spacing:-0.324000px;}
.ws95{word-spacing:-0.315000px;}
.ws5a{word-spacing:-0.300000px;}
.ws1b{word-spacing:-0.270000px;}
.wsa1{word-spacing:-0.225000px;}
.ws3e{word-spacing:-0.216000px;}
.ws94{word-spacing:-0.180000px;}
.ws5b{word-spacing:-0.162000px;}
.wsad{word-spacing:-0.135000px;}
.ws3f{word-spacing:-0.108000px;}
.ws92{word-spacing:-0.090000px;}
.ws75{word-spacing:-0.060000px;}
.ws13{word-spacing:-0.054000px;}
.wsc0{word-spacing:-0.045000px;}
.ws30{word-spacing:-0.035100px;}
.wsa{word-spacing:0.000000px;}
.wsa4{word-spacing:0.045000px;}
.ws24{word-spacing:0.051000px;}
.ws33{word-spacing:0.054000px;}
.ws5c{word-spacing:0.060000px;}
.ws1f{word-spacing:0.102000px;}
.ws48{word-spacing:0.108000px;}
.wsb8{word-spacing:0.135000px;}
.ws16{word-spacing:0.162000px;}
.wsab{word-spacing:0.180000px;}
.ws51{word-spacing:0.216000px;}
.wsb1{word-spacing:0.225000px;}
.ws4e{word-spacing:0.270000px;}
.ws81{word-spacing:0.300000px;}
.wsb6{word-spacing:0.315000px;}
.ws39{word-spacing:0.324000px;}
.ws1e{word-spacing:0.357000px;}
.wsbd{word-spacing:0.360000px;}
.ws62{word-spacing:0.378000px;}
.ws8f{word-spacing:0.405000px;}
.ws6b{word-spacing:0.432000px;}
.wsa5{word-spacing:0.450000px;}
.ws40{word-spacing:0.486000px;}
.wsc2{word-spacing:0.495000px;}
.ws79{word-spacing:0.540000px;}
.wsb2{word-spacing:0.585000px;}
.ws7f{word-spacing:0.594000px;}
.wsc3{word-spacing:0.630000px;}
.ws37{word-spacing:0.648000px;}
.ws8a{word-spacing:0.660000px;}
.wsa2{word-spacing:0.675000px;}
.ws66{word-spacing:0.702000px;}
.ws97{word-spacing:0.720000px;}
.ws6c{word-spacing:0.756000px;}
.ws3b{word-spacing:0.780000px;}
.ws3c{word-spacing:0.810000px;}
.wsc6{word-spacing:0.864000px;}
.wsa8{word-spacing:0.900000px;}
.wsae{word-spacing:0.945000px;}
.ws7d{word-spacing:0.972000px;}
.ws91{word-spacing:1.035000px;}
.ws42{word-spacing:1.134000px;}
.ws5d{word-spacing:1.188000px;}
.wsa9{word-spacing:1.215000px;}
.ws7b{word-spacing:1.242000px;}
.ws7a{word-spacing:1.296000px;}
.ws96{word-spacing:1.305000px;}
.ws68{word-spacing:1.350000px;}
.wsb7{word-spacing:1.395000px;}
.ws72{word-spacing:1.404000px;}
.ws88{word-spacing:1.440000px;}
.ws6d{word-spacing:1.458000px;}
.ws89{word-spacing:1.512000px;}
.wsb0{word-spacing:1.530000px;}
.wsaf{word-spacing:1.620000px;}
.ws3d{word-spacing:1.674000px;}
.wsc5{word-spacing:1.728000px;}
.ws67{word-spacing:1.782000px;}
.ws50{word-spacing:2.106000px;}
.ws53{word-spacing:14.742000px;}
._a{margin-left:-12.050400px;}
._b{margin-left:-10.992000px;}
._12{margin-left:-9.533400px;}
._d{margin-left:-7.666200px;}
._e{margin-left:-6.471000px;}
._4{margin-left:-5.340000px;}
._1{margin-left:-3.960000px;}
._2{margin-left:-2.923800px;}
._0{margin-left:-1.776000px;}
._5{width:1.209000px;}
._3{width:2.293800px;}
._8{width:3.355800px;}
._6{width:4.416600px;}
._7{width:5.532000px;}
._c{width:6.632400px;}
._11{width:7.650000px;}
._13{width:11.481600px;}
._f{width:12.943200px;}
._15{width:45.592200px;}
._9{width:47.586600px;}
._10{width:48.846600px;}
._14{width:49.879800px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y2e{bottom:68.313900px;}
.yed{bottom:68.551500px;}
.y76{bottom:68.554500px;}
.y205{bottom:68.647500px;}
.yfa{bottom:74.047800px;}
.y18d{bottom:80.794800px;}
.y204{bottom:81.393750px;}
.y78{bottom:82.884000px;}
.y2d{bottom:83.307900px;}
.y75{bottom:83.553000px;}
.yec{bottom:83.554500px;}
.y88{bottom:83.890950px;}
.y255{bottom:84.089550px;}
.y139{bottom:86.796300px;}
.y147{bottom:88.305300px;}
.y93{bottom:88.308300px;}
.yf9{bottom:89.046300px;}
.yb1{bottom:90.544800px;}
.y10c{bottom:92.779800px;}
.y203{bottom:94.140000px;}
.y18c{bottom:95.794800px;}
.y254{bottom:96.835800px;}
.y77{bottom:97.882500px;}
.y2c{bottom:98.313900px;}
.y74{bottom:98.551500px;}
.yeb{bottom:98.553000px;}
.y87{bottom:98.889450px;}
.y138{bottom:101.794800px;}
.y146{bottom:103.303800px;}
.y92{bottom:103.306800px;}
.yf8{bottom:104.044800px;}
.yb0{bottom:105.556800px;}
.y202{bottom:106.886250px;}
.y10b{bottom:107.781300px;}
.y253{bottom:109.582050px;}
.y18b{bottom:110.793300px;}
.y2b{bottom:113.307900px;}
.y1c7{bottom:113.550000px;}
.yea{bottom:113.551500px;}
.y73{bottom:113.559000px;}
.y86{bottom:113.887950px;}
.y137{bottom:116.811300px;}
.y145{bottom:118.302300px;}
.y91{bottom:118.305300px;}
.yf7{bottom:119.044800px;}
.y201{bottom:119.632500px;}
.yaf{bottom:120.555300px;}
.y252{bottom:122.328300px;}
.y10a{bottom:122.779800px;}
.y18a{bottom:125.793300px;}
.y2a{bottom:128.307900px;}
.ye9{bottom:128.551500px;}
.y72{bottom:128.557500px;}
.y85{bottom:128.886450px;}
.y136{bottom:131.809800px;}
.y200{bottom:132.378750px;}
.y144{bottom:133.300800px;}
.y90{bottom:133.303800px;}
.yf6{bottom:134.047800px;}
.y251{bottom:135.074550px;}
.yae{bottom:135.553800px;}
.y109{bottom:137.787300px;}
.y1c6{bottom:140.601600px;}
.y29{bottom:143.307900px;}
.ye8{bottom:143.551500px;}
.y71{bottom:143.556000px;}
.y84{bottom:143.884950px;}
.y1ff{bottom:145.125000px;}
.y135{bottom:146.808300px;}
.y250{bottom:147.820800px;}
.y143{bottom:148.299300px;}
.y8f{bottom:148.302300px;}
.y7f{bottom:148.611150px;}
.yf5{bottom:149.046300px;}
.yad{bottom:150.552300px;}
.y108{bottom:152.785800px;}
.y1c5{bottom:155.600100px;}
.y1fe{bottom:157.871250px;}
.y28{bottom:158.307900px;}
.ye7{bottom:158.553000px;}
.y70{bottom:158.554500px;}
.y189{bottom:158.802300px;}
.y83{bottom:158.883450px;}
.y24f{bottom:160.567050px;}
.y134{bottom:161.806800px;}
.y142{bottom:163.297800px;}
.y8e{bottom:163.300800px;}
.y7e{bottom:163.609650px;}
.yf4{bottom:164.044800px;}
.yac{bottom:165.550800px;}
.y107{bottom:167.784300px;}
.y1c4{bottom:170.601600px;}
.y1fd{bottom:170.617500px;}
.y27{bottom:173.307900px;}
.y24e{bottom:173.313300px;}
.ye6{bottom:173.551500px;}
.y6f{bottom:173.553000px;}
.y188{bottom:173.800800px;}
.y82{bottom:173.881950px;}
.y133{bottom:176.805300px;}
.y141{bottom:178.296300px;}
.y8d{bottom:178.299300px;}
.y7d{bottom:178.614150px;}
.yf3{bottom:179.044800px;}
.yab{bottom:180.549300px;}
.y106{bottom:182.782800px;}
.y1fc{bottom:183.363750px;}
.y1c3{bottom:185.600100px;}
.y24d{bottom:186.059550px;}
.y26{bottom:188.307900px;}
.y6e{bottom:188.551500px;}
.ye5{bottom:188.557500px;}
.y187{bottom:188.799300px;}
.y81{bottom:188.880450px;}
.y132{bottom:191.803800px;}
.y140{bottom:193.294800px;}
.y8c{bottom:193.297800px;}
.y7c{bottom:193.612650px;}
.yf2{bottom:194.046300px;}
.yaa{bottom:195.547800px;}
.y1fb{bottom:196.110000px;}
.y105{bottom:197.781300px;}
.y24c{bottom:198.805800px;}
.y1c2{bottom:200.598600px;}
.y25{bottom:203.307900px;}
.y6d{bottom:203.551500px;}
.ye4{bottom:203.556000px;}
.y186{bottom:203.797800px;}
.y80{bottom:203.878950px;}
.y131{bottom:206.802300px;}
.y8b{bottom:208.296300px;}
.y7b{bottom:208.611150px;}
.y1fa{bottom:208.856250px;}
.yf1{bottom:209.044800px;}
.ya9{bottom:210.546300px;}
.y24b{bottom:211.552050px;}
.y104{bottom:212.779800px;}
.y1c1{bottom:215.598600px;}
.y24{bottom:218.307900px;}
.y6c{bottom:218.551500px;}
.ye3{bottom:218.554500px;}
.y185{bottom:218.796300px;}
.y1f9{bottom:221.602500px;}
.y130{bottom:221.800800px;}
.y8a{bottom:223.294800px;}
.y7a{bottom:223.609650px;}
.yf0{bottom:224.046300px;}
.y24a{bottom:224.298300px;}
.ya8{bottom:225.544800px;}
.y103{bottom:227.782800px;}
.y6b{bottom:233.551500px;}
.ye2{bottom:233.553000px;}
.y184{bottom:233.794800px;}
.y1f8{bottom:234.348750px;}
.y12f{bottom:236.799300px;}
.y249{bottom:237.044550px;}
.y23{bottom:237.636900px;}
.y89{bottom:238.293300px;}
.y79{bottom:238.608150px;}
.yef{bottom:239.044800px;}
.ya7{bottom:240.547800px;}
.y1c0{bottom:242.651700px;}
.y102{bottom:242.781300px;}
.y1f7{bottom:247.095000px;}
.ye1{bottom:248.551500px;}
.y6a{bottom:248.563500px;}
.y183{bottom:248.796300px;}
.y248{bottom:249.790800px;}
.y12e{bottom:251.797800px;}
.yee{bottom:254.043300px;}
.ya6{bottom:255.546300px;}
.y1bf{bottom:257.650200px;}
.y101{bottom:257.779800px;}
.y1f6{bottom:259.841250px;}
.y247{bottom:262.537050px;}
.ye0{bottom:263.553000px;}
.y69{bottom:263.562000px;}
.y182{bottom:263.794800px;}
.y12d{bottom:266.796300px;}
.ya5{bottom:270.544800px;}
.y1f5{bottom:272.587500px;}
.y1be{bottom:272.648700px;}
.y100{bottom:272.781300px;}
.y246{bottom:275.283300px;}
.ydf{bottom:278.551500px;}
.y68{bottom:278.560500px;}
.y181{bottom:278.794800px;}
.y12c{bottom:281.794800px;}
.y1f4{bottom:285.333750px;}
.ya4{bottom:285.543300px;}
.y14f{bottom:286.449450px;}
.y1bd{bottom:287.657850px;}
.yff{bottom:287.779800px;}
.ya3{bottom:287.961450px;}
.y245{bottom:288.029550px;}
.y22{bottom:290.187300px;}
.yde{bottom:293.551500px;}
.y67{bottom:293.559000px;}
.y180{bottom:293.794800px;}
.y12b{bottom:296.797800px;}
.y1f3{bottom:298.080000px;}
.y244{bottom:300.775800px;}
.y14e{bottom:301.447950px;}
.y1bc{bottom:302.656350px;}
.yfe{bottom:302.778300px;}
.ya2{bottom:302.959950px;}
.y21{bottom:305.185800px;}
.ydd{bottom:308.551500px;}
.y66{bottom:308.557500px;}
.y17f{bottom:308.799300px;}
.y1f2{bottom:310.826250px;}
.y12a{bottom:311.796300px;}
.yfd{bottom:312.481950px;}
.y243{bottom:313.522050px;}
.y14d{bottom:316.446450px;}
.y1bb{bottom:317.654850px;}
.ya1{bottom:317.958450px;}
.y20{bottom:320.185800px;}
.ydc{bottom:323.550000px;}
.y65{bottom:323.556000px;}
.y1f1{bottom:323.572500px;}
.y17e{bottom:323.797800px;}
.y242{bottom:326.268300px;}
.y129{bottom:326.794800px;}
.yfc{bottom:327.480450px;}
.y14c{bottom:331.444950px;}
.y1ba{bottom:332.653350px;}
.ya0{bottom:332.956950px;}
.y1f{bottom:335.185800px;}
.y1f0{bottom:336.318750px;}
.ydb{bottom:338.550000px;}
.y64{bottom:338.554500px;}
.yba{bottom:338.761950px;}
.y17d{bottom:338.796300px;}
.y241{bottom:339.014550px;}
.y128{bottom:341.799300px;}
.yfb{bottom:342.478950px;}
.y14b{bottom:346.443450px;}
.y1b9{bottom:347.651850px;}
.y9f{bottom:347.955450px;}
.y1ef{bottom:349.065000px;}
.y1e{bottom:350.190300px;}
.y240{bottom:351.760800px;}
.y63{bottom:353.553000px;}
.yb9{bottom:353.760450px;}
.y17c{bottom:353.794800px;}
.y127{bottom:356.797800px;}
.y14a{bottom:361.441950px;}
.y1ee{bottom:361.811250px;}
.y1b8{bottom:362.650350px;}
.y9e{bottom:362.953950px;}
.y23f{bottom:364.507050px;}
.y1d{bottom:365.188800px;}
.y11b{bottom:366.204450px;}
.y62{bottom:368.551500px;}
.yda{bottom:368.653650px;}
.yb8{bottom:368.761950px;}
.y17b{bottom:368.800800px;}
.y126{bottom:371.796300px;}
.y1ed{bottom:374.557500px;}
.y149{bottom:376.440450px;}
.y23e{bottom:377.253300px;}
.y1b7{bottom:377.648850px;}
.y9d{bottom:377.952450px;}
.y1c{bottom:380.187300px;}
.y11a{bottom:381.202950px;}
.y61{bottom:383.550000px;}
.yd9{bottom:383.652150px;}
.yb7{bottom:383.760450px;}
.y17a{bottom:383.799300px;}
.y125{bottom:386.794800px;}
.y1ec{bottom:387.303750px;}
.y23d{bottom:389.999550px;}
.y148{bottom:391.438950px;}
.y1b6{bottom:392.650350px;}
.y9c{bottom:392.950950px;}
.y1b{bottom:395.185800px;}
.y119{bottom:396.201450px;}
.yd8{bottom:398.650650px;}
.yb6{bottom:398.763450px;}
.y179{bottom:398.797800px;}
.y1eb{bottom:400.050000px;}
.y124{bottom:401.802300px;}
.y23c{bottom:402.745800px;}
.y1b5{bottom:407.648850px;}
.y9b{bottom:407.949450px;}
.y1a{bottom:410.220300px;}
.y118{bottom:411.199950px;}
.y1ea{bottom:412.800000px;}
.yd7{bottom:413.649150px;}
.y60{bottom:413.673150px;}
.yb5{bottom:413.761950px;}
.y178{bottom:413.796300px;}
.y23b{bottom:415.492050px;}
.y123{bottom:416.800800px;}
.y1b4{bottom:422.647350px;}
.y9a{bottom:422.947950px;}
.y19{bottom:425.218800px;}
.y117{bottom:426.198450px;}
.y23a{bottom:428.238300px;}
.yd6{bottom:428.647650px;}
.y5f{bottom:428.673150px;}
.yb4{bottom:428.760450px;}
.y177{bottom:428.794800px;}
.y122{bottom:431.799300px;}
.y99{bottom:437.946450px;}
.y18{bottom:440.217300px;}
.y239{bottom:440.984550px;}
.y116{bottom:441.196950px;}
.y1e9{bottom:442.946400px;}
.yd5{bottom:443.646150px;}
.y5e{bottom:443.673150px;}
.yb3{bottom:443.760450px;}
.y176{bottom:443.794800px;}
.y121{bottom:446.797800px;}
.y1b3{bottom:449.704950px;}
.y98{bottom:452.944950px;}
.y238{bottom:453.730800px;}
.y17{bottom:455.215800px;}
.y115{bottom:456.195450px;}
.y1e8{bottom:457.944900px;}
.yd4{bottom:458.644650px;}
.y5d{bottom:458.673150px;}
.yb2{bottom:458.758950px;}
.y175{bottom:458.796300px;}
.y120{bottom:461.796300px;}
.y1b2{bottom:464.703450px;}
.y237{bottom:466.477050px;}
.y279{bottom:467.802300px;}
.y97{bottom:467.943450px;}
.y16{bottom:470.214300px;}
.y114{bottom:471.193950px;}
.y1e7{bottom:472.943400px;}
.yd3{bottom:473.643150px;}
.y5c{bottom:473.673150px;}
.y174{bottom:473.794800px;}
.y11f{bottom:476.794800px;}
.y236{bottom:479.223300px;}
.y1b1{bottom:479.701950px;}
.y278{bottom:482.800800px;}
.y96{bottom:482.941950px;}
.y1e6{bottom:487.941900px;}
.yd2{bottom:488.641650px;}
.y5b{bottom:488.673150px;}
.y173{bottom:488.797800px;}
.y11e{bottom:491.796300px;}
.y235{bottom:491.969550px;}
.y1b0{bottom:494.700450px;}
.y277{bottom:497.799300px;}
.y95{bottom:497.940450px;}
.yd1{bottom:503.640150px;}
.y5a{bottom:503.673150px;}
.y172{bottom:503.796300px;}
.y234{bottom:504.715800px;}
.y11d{bottom:506.794800px;}
.y1af{bottom:509.698950px;}
.y276{bottom:512.797800px;}
.y94{bottom:512.938950px;}
.y233{bottom:517.462050px;}
.y15{bottom:517.464300px;}
.y1e5{bottom:518.088300px;}
.yd0{bottom:518.638650px;}
.y59{bottom:518.673150px;}
.y171{bottom:518.794800px;}
.y11c{bottom:521.793300px;}
.y1ae{bottom:524.697450px;}
.y275{bottom:527.796300px;}
.y232{bottom:530.208300px;}
.y1e4{bottom:533.086800px;}
.ycf{bottom:533.637150px;}
.y58{bottom:533.688150px;}
.y170{bottom:533.796300px;}
.y14{bottom:533.961300px;}
.y1ad{bottom:539.698950px;}
.y274{bottom:542.794800px;}
.y231{bottom:542.954550px;}
.y1e3{bottom:548.085300px;}
.yce{bottom:548.635650px;}
.y57{bottom:548.686650px;}
.y16f{bottom:548.794800px;}
.y13{bottom:550.458300px;}
.y1ac{bottom:554.697450px;}
.y230{bottom:555.700800px;}
.y273{bottom:557.793300px;}
.y1e2{bottom:563.083800px;}
.ycd{bottom:563.634150px;}
.y56{bottom:563.685150px;}
.y16e{bottom:563.797800px;}
.y12{bottom:566.955300px;}
.y22f{bottom:568.447050px;}
.y1ab{bottom:569.701950px;}
.ycc{bottom:578.632650px;}
.y55{bottom:578.683650px;}
.y16d{bottom:578.796300px;}
.y272{bottom:579.552300px;}
.y13f{bottom:580.683450px;}
.y22e{bottom:581.193300px;}
.y11{bottom:583.452300px;}
.y1aa{bottom:584.700450px;}
.y1e1{bottom:593.227200px;}
.ycb{bottom:593.635650px;}
.y54{bottom:593.682150px;}
.y16c{bottom:593.794800px;}
.y22d{bottom:593.939550px;}
.y271{bottom:594.550800px;}
.y13e{bottom:595.681950px;}
.y1a9{bottom:599.698950px;}
.y10{bottom:599.949300px;}
.y22c{bottom:606.685800px;}
.y1e0{bottom:608.225700px;}
.yca{bottom:608.634150px;}
.y53{bottom:608.680650px;}
.y16b{bottom:608.797800px;}
.y13d{bottom:610.680450px;}
.y1a8{bottom:614.697450px;}
.y270{bottom:616.299300px;}
.yf{bottom:616.446300px;}
.y22b{bottom:619.432050px;}
.yc9{bottom:623.632650px;}
.y52{bottom:623.679150px;}
.y16a{bottom:623.796300px;}
.y13c{bottom:625.680450px;}
.y1a7{bottom:629.695950px;}
.y26f{bottom:631.297800px;}
.y22a{bottom:632.178300px;}
.ye{bottom:632.943300px;}
.y1df{bottom:638.370600px;}
.yc8{bottom:638.631150px;}
.y51{bottom:638.677650px;}
.y169{bottom:638.794800px;}
.y13b{bottom:640.680450px;}
.y229{bottom:644.924550px;}
.y26e{bottom:646.296300px;}
.yd{bottom:649.440300px;}
.y1de{bottom:653.369100px;}
.y50{bottom:653.676150px;}
.y168{bottom:653.799300px;}
.y13a{bottom:655.678950px;}
.y1a6{bottom:656.770050px;}
.y228{bottom:657.670800px;}
.yc{bottom:665.937300px;}
.y26d{bottom:668.044800px;}
.y1dd{bottom:668.367600px;}
.y4f{bottom:668.674650px;}
.yc7{bottom:668.716650px;}
.y167{bottom:668.797800px;}
.y227{bottom:670.417050px;}
.y1a5{bottom:671.768550px;}
.yb{bottom:682.434300px;}
.y226{bottom:683.163300px;}
.y4e{bottom:683.673150px;}
.yc6{bottom:683.715150px;}
.y166{bottom:683.796300px;}
.y1a4{bottom:686.767050px;}
.y26c{bottom:689.793300px;}
.y225{bottom:695.909550px;}
.y1dc{bottom:698.512500px;}
.y4d{bottom:698.671650px;}
.yc5{bottom:698.713650px;}
.y165{bottom:698.794800px;}
.y1a3{bottom:701.765550px;}
.y26b{bottom:704.793300px;}
.y224{bottom:708.655800px;}
.ya{bottom:712.434300px;}
.y1db{bottom:713.511000px;}
.y4c{bottom:713.671650px;}
.yc4{bottom:713.713650px;}
.y164{bottom:713.796300px;}
.y1a2{bottom:716.764050px;}
.y223{bottom:721.402050px;}
.y1da{bottom:728.509500px;}
.yc3{bottom:728.712150px;}
.y163{bottom:728.794800px;}
.y9{bottom:730.434300px;}
.y1a1{bottom:731.762550px;}
.y26a{bottom:731.806800px;}
.y222{bottom:734.148300px;}
.y162{bottom:743.796300px;}
.y4b{bottom:743.800800px;}
.y1a0{bottom:746.761050px;}
.y269{bottom:746.805300px;}
.y221{bottom:746.894550px;}
.y8{bottom:748.434300px;}
.y31{bottom:757.050000px;}
.y1d9{bottom:758.660400px;}
.y161{bottom:758.794800px;}
.y4a{bottom:758.799300px;}
.yc2{bottom:758.809800px;}
.y220{bottom:759.640800px;}
.y113{bottom:759.727950px;}
.y19f{bottom:761.759550px;}
.y268{bottom:761.803800px;}
.y21f{bottom:772.387050px;}
.y1d8{bottom:773.658900px;}
.y49{bottom:773.797800px;}
.yc1{bottom:773.808300px;}
.y160{bottom:773.809800px;}
.y112{bottom:774.726450px;}
.y19e{bottom:776.758050px;}
.y267{bottom:776.802300px;}
.y30{bottom:778.050000px;}
.y7{bottom:781.416300px;}
.y21e{bottom:785.133300px;}
.y1d7{bottom:788.657400px;}
.y48{bottom:788.796300px;}
.yc0{bottom:788.806800px;}
.y15f{bottom:788.808300px;}
.y111{bottom:789.724950px;}
.y19d{bottom:791.756550px;}
.y266{bottom:791.800800px;}
.y21d{bottom:797.879550px;}
.y2f{bottom:799.050000px;}
.y1d6{bottom:803.655900px;}
.y47{bottom:803.794800px;}
.ybf{bottom:803.805300px;}
.y15e{bottom:803.806800px;}
.y110{bottom:804.723450px;}
.y19c{bottom:806.755050px;}
.y265{bottom:806.799300px;}
.y21c{bottom:810.625800px;}
.y1d5{bottom:818.654400px;}
.y46{bottom:818.803800px;}
.y15d{bottom:818.805300px;}
.y10f{bottom:819.721950px;}
.y19b{bottom:821.753550px;}
.y264{bottom:821.797800px;}
.y21b{bottom:823.372050px;}
.y6{bottom:826.422300px;}
.y1d4{bottom:833.652900px;}
.y45{bottom:833.802300px;}
.y15c{bottom:833.803800px;}
.y10e{bottom:834.720450px;}
.y21a{bottom:836.118300px;}
.y19a{bottom:836.752050px;}
.y263{bottom:836.796300px;}
.y1d3{bottom:848.654400px;}
.y44{bottom:848.800800px;}
.y15b{bottom:848.802300px;}
.y219{bottom:848.864550px;}
.y10d{bottom:849.718950px;}
.y199{bottom:851.750550px;}
.y262{bottom:851.794800px;}
.y218{bottom:861.610800px;}
.y1d2{bottom:863.652900px;}
.y43{bottom:863.799300px;}
.y15a{bottom:863.800800px;}
.y198{bottom:866.749050px;}
.y261{bottom:866.793300px;}
.y5{bottom:871.428300px;}
.y217{bottom:874.357050px;}
.y1d1{bottom:878.658900px;}
.y42{bottom:878.797800px;}
.y159{bottom:878.799300px;}
.y197{bottom:881.747550px;}
.y260{bottom:881.793300px;}
.y216{bottom:887.103300px;}
.y1d0{bottom:893.657400px;}
.y41{bottom:893.796300px;}
.y158{bottom:893.797800px;}
.y196{bottom:896.746050px;}
.y215{bottom:899.849550px;}
.y1cf{bottom:908.655900px;}
.y40{bottom:908.794800px;}
.y157{bottom:908.796300px;}
.y25f{bottom:908.809800px;}
.y195{bottom:911.746050px;}
.y214{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.y1ce{bottom:923.654400px;}
.ybe{bottom:923.794800px;}
.y3f{bottom:923.797800px;}
.y25e{bottom:923.808300px;}
.y213{bottom:925.342050px;}
.y32{bottom:926.409600px;}
.y194{bottom:926.744550px;}
.y212{bottom:938.088300px;}
.y1cd{bottom:938.652900px;}
.y156{bottom:938.794800px;}
.y3e{bottom:938.796300px;}
.ybd{bottom:938.797800px;}
.y25d{bottom:938.806800px;}
.y211{bottom:950.834550px;}
.y1cc{bottom:953.654400px;}
.y3d{bottom:953.794800px;}
.ybc{bottom:953.796300px;}
.y25c{bottom:953.805300px;}
.y210{bottom:963.580800px;}
.y1cb{bottom:968.652900px;}
.y3c{bottom:968.794800px;}
.y25b{bottom:968.803800px;}
.y193{bottom:968.805300px;}
.y20f{bottom:976.327050px;}
.y1ca{bottom:983.654400px;}
.ybb{bottom:983.794800px;}
.y3b{bottom:983.796300px;}
.y155{bottom:983.800800px;}
.y25a{bottom:983.802300px;}
.y192{bottom:983.803800px;}
.y20e{bottom:989.073300px;}
.y1c9{bottom:998.652900px;}
.y3a{bottom:998.794800px;}
.y154{bottom:998.799300px;}
.y259{bottom:998.800800px;}
.y191{bottom:998.802300px;}
.y20d{bottom:1001.819550px;}
.y1c8{bottom:1013.651400px;}
.y39{bottom:1013.794800px;}
.y153{bottom:1013.797800px;}
.y258{bottom:1013.799300px;}
.y190{bottom:1013.800800px;}
.y20c{bottom:1014.565800px;}
.y20b{bottom:1027.312050px;}
.y38{bottom:1028.794800px;}
.y152{bottom:1028.796300px;}
.y257{bottom:1028.797800px;}
.y18f{bottom:1028.799300px;}
.y20a{bottom:1040.058300px;}
.y151{bottom:1043.794800px;}
.y37{bottom:1043.796300px;}
.y18e{bottom:1043.797800px;}
.y209{bottom:1052.804550px;}
.y36{bottom:1058.794800px;}
.y150{bottom:1058.796300px;}
.y208{bottom:1065.550800px;}
.y256{bottom:1073.793300px;}
.y35{bottom:1073.794800px;}
.y207{bottom:1078.297050px;}
.y34{bottom:1088.793300px;}
.y206{bottom:1091.043300px;}
.y33{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.hd{height:23.842749px;}
.h3{height:34.523438px;}
.hf{height:36.681152px;}
.h1e{height:38.475000px;}
.h18{height:38.556000px;}
.h7{height:38.838867px;}
.h10{height:41.134749px;}
.he{height:41.158749px;}
.h2{height:43.154297px;}
.h4{height:44.233154px;}
.h8{height:46.170000px;}
.h14{height:47.469727px;}
.h9{height:48.226500px;}
.h15{height:48.304500px;}
.h1c{height:48.322500px;}
.h13{height:48.328500px;}
.h1b{height:48.334500px;}
.h1a{height:48.339900px;}
.h1d{height:48.340500px;}
.ha{height:48.346500px;}
.h12{height:48.352500px;}
.h19{height:48.357900px;}
.hc{height:48.358500px;}
.h16{height:48.363900px;}
.hb{height:48.364500px;}
.h17{height:48.370500px;}
.h6{height:48.450293px;}
.h11{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x7{left:65.661150px;}
.x8{left:77.145150px;}
.x6{left:84.453150px;}
.x9{left:140.952750px;}
.x4{left:233.456400px;}
.xd{left:238.992000px;}
.x5{left:251.460450px;}
.xe{left:300.348750px;}
.x3{left:584.586600px;}
.xb{left:816.003600px;}
.xc{left:817.278150px;}
.xa{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v4{vertical-align:-16.320000pt;}
.v3{vertical-align:-15.413333pt;}
.v5{vertical-align:-9.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.192000pt;}
.v1{vertical-align:18.133333pt;}
.ls64{letter-spacing:-1.680000pt;}
.lsa4{letter-spacing:-1.600000pt;}
.lsad{letter-spacing:-1.560000pt;}
.lsa2{letter-spacing:-1.400000pt;}
.ls9f{letter-spacing:-1.200000pt;}
.ls58{letter-spacing:-1.008000pt;}
.ls6a{letter-spacing:-0.960000pt;}
.lsa1{letter-spacing:-0.920000pt;}
.lsac{letter-spacing:-0.880000pt;}
.ls43{letter-spacing:-0.864000pt;}
.ls9b{letter-spacing:-0.760000pt;}
.ls96{letter-spacing:-0.680000pt;}
.ls98{letter-spacing:-0.640000pt;}
.ls4c{letter-spacing:-0.624000pt;}
.ls90{letter-spacing:-0.600000pt;}
.ls57{letter-spacing:-0.576000pt;}
.lsae{letter-spacing:-0.560000pt;}
.ls8d{letter-spacing:-0.528000pt;}
.lsa3{letter-spacing:-0.520000pt;}
.ls49{letter-spacing:-0.480000pt;}
.lsab{letter-spacing:-0.440000pt;}
.ls5e{letter-spacing:-0.432000pt;}
.ls99{letter-spacing:-0.400000pt;}
.ls60{letter-spacing:-0.384000pt;}
.lsaf{letter-spacing:-0.360000pt;}
.ls59{letter-spacing:-0.336000pt;}
.lsa5{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.317333pt;}
.ls8e{letter-spacing:-0.280000pt;}
.ls4b{letter-spacing:-0.240000pt;}
.ls7c{letter-spacing:-0.213333pt;}
.ls47{letter-spacing:-0.192000pt;}
.lsa0{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.144000pt;}
.ls1a{letter-spacing:-0.136000pt;}
.ls5f{letter-spacing:-0.124800pt;}
.lsa6{letter-spacing:-0.120000pt;}
.ls7d{letter-spacing:-0.106667pt;}
.ls17{letter-spacing:-0.096000pt;}
.ls5a{letter-spacing:-0.093600pt;}
.ls1c{letter-spacing:-0.090667pt;}
.ls9c{letter-spacing:-0.080000pt;}
.ls5c{letter-spacing:-0.062400pt;}
.ls3f{letter-spacing:-0.048000pt;}
.ls1d{letter-spacing:-0.045333pt;}
.ls97{letter-spacing:-0.040000pt;}
.ls5b{letter-spacing:-0.031200pt;}
.ls12{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011733pt;}
.ls4{letter-spacing:0.012267pt;}
.ls26{letter-spacing:0.014933pt;}
.ls5{letter-spacing:0.019733pt;}
.ls3{letter-spacing:0.020267pt;}
.ls61{letter-spacing:0.030933pt;}
.ls5d{letter-spacing:0.031200pt;}
.ls72{letter-spacing:0.034133pt;}
.ls71{letter-spacing:0.034667pt;}
.ls70{letter-spacing:0.036267pt;}
.ls8f{letter-spacing:0.040000pt;}
.ls37{letter-spacing:0.048000pt;}
.ls6b{letter-spacing:0.053333pt;}
.ls53{letter-spacing:0.056533pt;}
.ls3d{letter-spacing:0.057333pt;}
.ls41{letter-spacing:0.062400pt;}
.ls50{letter-spacing:0.062933pt;}
.ls6d{letter-spacing:0.071467pt;}
.ls6f{letter-spacing:0.078933pt;}
.ls2d{letter-spacing:0.079733pt;}
.ls95{letter-spacing:0.080000pt;}
.ls9{letter-spacing:0.091067pt;}
.ls2c{letter-spacing:0.093600pt;}
.ls38{letter-spacing:0.096000pt;}
.lsa8{letter-spacing:0.104000pt;}
.ls7e{letter-spacing:0.106667pt;}
.ls39{letter-spacing:0.108000pt;}
.ls88{letter-spacing:0.120000pt;}
.ls56{letter-spacing:0.123200pt;}
.ls42{letter-spacing:0.124800pt;}
.ls81{letter-spacing:0.134400pt;}
.lsa{letter-spacing:0.136000pt;}
.ls52{letter-spacing:0.143467pt;}
.ls2b{letter-spacing:0.144000pt;}
.ls62{letter-spacing:0.145600pt;}
.ls7f{letter-spacing:0.149333pt;}
.ls35{letter-spacing:0.152000pt;}
.ls36{letter-spacing:0.154133pt;}
.ls34{letter-spacing:0.156000pt;}
.ls9a{letter-spacing:0.160000pt;}
.ls7a{letter-spacing:0.162667pt;}
.ls4d{letter-spacing:0.184533pt;}
.ls31{letter-spacing:0.187200pt;}
.ls13{letter-spacing:0.192000pt;}
.ls32{letter-spacing:0.193067pt;}
.ls86{letter-spacing:0.200000pt;}
.ls7{letter-spacing:0.202133pt;}
.ls8{letter-spacing:0.202800pt;}
.ls78{letter-spacing:0.203200pt;}
.ls67{letter-spacing:0.206400pt;}
.ls54{letter-spacing:0.207467pt;}
.ls19{letter-spacing:0.218400pt;}
.ls80{letter-spacing:0.219733pt;}
.ls2f{letter-spacing:0.221333pt;}
.ls65{letter-spacing:0.222933pt;}
.ls6{letter-spacing:0.240000pt;}
.ls2e{letter-spacing:0.249600pt;}
.ls85{letter-spacing:0.266667pt;}
.ls89{letter-spacing:0.280000pt;}
.ls46{letter-spacing:0.280800pt;}
.ls66{letter-spacing:0.284267pt;}
.ls33{letter-spacing:0.288000pt;}
.ls3e{letter-spacing:0.297600pt;}
.ls3c{letter-spacing:0.297867pt;}
.ls4f{letter-spacing:0.306667pt;}
.ls40{letter-spacing:0.312000pt;}
.lsc{letter-spacing:0.314000pt;}
.ls73{letter-spacing:0.315200pt;}
.ls51{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.336000pt;}
.ls77{letter-spacing:0.338667pt;}
.lsa7{letter-spacing:0.340000pt;}
.ls3b{letter-spacing:0.343200pt;}
.ls91{letter-spacing:0.360000pt;}
.ls2a{letter-spacing:0.372800pt;}
.lse{letter-spacing:0.377467pt;}
.ls14{letter-spacing:0.384000pt;}
.ls9e{letter-spacing:0.400000pt;}
.ls25{letter-spacing:0.408000pt;}
.ls74{letter-spacing:0.426667pt;}
.ls22{letter-spacing:0.432000pt;}
.ls29{letter-spacing:0.436800pt;}
.ls93{letter-spacing:0.440000pt;}
.ls23{letter-spacing:0.441600pt;}
.ls3a{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.498667pt;}
.ls30{letter-spacing:0.499200pt;}
.ls87{letter-spacing:0.520000pt;}
.ls16{letter-spacing:0.528000pt;}
.ls79{letter-spacing:0.533333pt;}
.ls92{letter-spacing:0.560000pt;}
.ls27{letter-spacing:0.576000pt;}
.lsd{letter-spacing:0.589333pt;}
.lsa9{letter-spacing:0.592000pt;}
.ls8c{letter-spacing:0.600000pt;}
.ls69{letter-spacing:0.624000pt;}
.ls8a{letter-spacing:0.636000pt;}
.ls83{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.672000pt;}
.ls9d{letter-spacing:0.680000pt;}
.ls75{letter-spacing:0.693333pt;}
.ls6c{letter-spacing:0.715200pt;}
.ls21{letter-spacing:0.720000pt;}
.ls1e{letter-spacing:0.725333pt;}
.ls28{letter-spacing:0.729600pt;}
.ls44{letter-spacing:0.746667pt;}
.ls76{letter-spacing:0.768000pt;}
.ls10{letter-spacing:0.816000pt;}
.ls84{letter-spacing:0.840000pt;}
.ls11{letter-spacing:0.853333pt;}
.ls55{letter-spacing:0.864000pt;}
.ls94{letter-spacing:0.880000pt;}
.lsaa{letter-spacing:0.908000pt;}
.ls68{letter-spacing:0.912000pt;}
.lsf{letter-spacing:0.921467pt;}
.ls82{letter-spacing:0.960000pt;}
.ls45{letter-spacing:1.056000pt;}
.ls4e{letter-spacing:1.200000pt;}
.ls8b{letter-spacing:1.240000pt;}
.ls6e{letter-spacing:1.305600pt;}
.ls1f{letter-spacing:1.450667pt;}
.ls0{letter-spacing:2.304000pt;}
.ls20{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls7b{letter-spacing:4.106667pt;}
.lsb0{letter-spacing:4.373333pt;}
.ls63{letter-spacing:5.440000pt;}
.ls48{letter-spacing:12.624000pt;}
.ls4a{letter-spacing:13.104000pt;}
.ws2{word-spacing:-13.393333pt;}
.ws2e{word-spacing:-12.085333pt;}
.ws5{word-spacing:-11.232000pt;}
.ws6f{word-spacing:-11.184000pt;}
.ws31{word-spacing:-11.136000pt;}
.ws87{word-spacing:-11.088000pt;}
.ws76{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws8{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws4f{word-spacing:-10.512000pt;}
.ws4a{word-spacing:-10.416000pt;}
.ws84{word-spacing:-9.440000pt;}
.ws86{word-spacing:-9.280000pt;}
.ws83{word-spacing:-9.200000pt;}
.ws85{word-spacing:-9.160000pt;}
.wsb9{word-spacing:-9.000000pt;}
.ws9b{word-spacing:-8.960000pt;}
.ws82{word-spacing:-8.880000pt;}
.ws9a{word-spacing:-8.760000pt;}
.wsa0{word-spacing:-8.640000pt;}
.wsbb{word-spacing:-8.600000pt;}
.ws9d{word-spacing:-8.520000pt;}
.ws99{word-spacing:-8.480000pt;}
.ws9c{word-spacing:-8.400000pt;}
.ws9f{word-spacing:-8.240000pt;}
.ws9e{word-spacing:-7.960000pt;}
.wsba{word-spacing:-7.760000pt;}
.wsbc{word-spacing:-7.600000pt;}
.ws6e{word-spacing:-7.519200pt;}
.ws65{word-spacing:-7.425600pt;}
.ws2a{word-spacing:-7.394400pt;}
.ws2f{word-spacing:-7.363200pt;}
.ws2b{word-spacing:-7.332000pt;}
.ws7{word-spacing:-7.300800pt;}
.ws6{word-spacing:-7.285200pt;}
.ws56{word-spacing:-7.269600pt;}
.ws32{word-spacing:-7.238400pt;}
.ws2d{word-spacing:-7.207200pt;}
.ws69{word-spacing:-7.176000pt;}
.ws2c{word-spacing:-7.144800pt;}
.ws60{word-spacing:-7.113600pt;}
.ws4{word-spacing:-7.082400pt;}
.ws55{word-spacing:-7.051200pt;}
.ws57{word-spacing:-7.020000pt;}
.ws54{word-spacing:-6.988800pt;}
.ws61{word-spacing:-6.957600pt;}
.ws9{word-spacing:-5.893333pt;}
.ws6a{word-spacing:-5.440000pt;}
.ws41{word-spacing:-4.896000pt;}
.ws10{word-spacing:-4.746667pt;}
.wsc4{word-spacing:-4.373333pt;}
.ws77{word-spacing:-4.106667pt;}
.wsc7{word-spacing:-3.520000pt;}
.wse{word-spacing:-3.413333pt;}
.ws21{word-spacing:-3.128000pt;}
.wsb{word-spacing:-2.912000pt;}
.wsd{word-spacing:-2.666667pt;}
.ws29{word-spacing:-2.453333pt;}
.ws1{word-spacing:-2.346667pt;}
.wsc{word-spacing:-2.133333pt;}
.ws64{word-spacing:-1.872000pt;}
.ws46{word-spacing:-1.680000pt;}
.ws78{word-spacing:-1.653333pt;}
.ws14{word-spacing:-1.632000pt;}
.ws7e{word-spacing:-1.600000pt;}
.ws71{word-spacing:-1.584000pt;}
.ws70{word-spacing:-1.536000pt;}
.ws58{word-spacing:-1.488000pt;}
.ws26{word-spacing:-1.450667pt;}
.ws47{word-spacing:-1.440000pt;}
.ws1d{word-spacing:-1.405333pt;}
.wsc1{word-spacing:-1.400000pt;}
.ws20{word-spacing:-1.360000pt;}
.ws4c{word-spacing:-1.344000pt;}
.ws4b{word-spacing:-1.333333pt;}
.ws63{word-spacing:-1.296000pt;}
.ws3a{word-spacing:-1.248000pt;}
.ws73{word-spacing:-1.232000pt;}
.ws4d{word-spacing:-1.200000pt;}
.wsb3{word-spacing:-1.160000pt;}
.ws19{word-spacing:-1.152000pt;}
.wsf{word-spacing:-1.120000pt;}
.ws15{word-spacing:-1.104000pt;}
.wsa6{word-spacing:-1.080000pt;}
.ws1a{word-spacing:-1.056000pt;}
.wsaa{word-spacing:-1.040000pt;}
.ws11{word-spacing:-1.008000pt;}
.ws5f{word-spacing:-0.960000pt;}
.ws8d{word-spacing:-0.920000pt;}
.ws36{word-spacing:-0.912000pt;}
.ws28{word-spacing:-0.906667pt;}
.wsbf{word-spacing:-0.880000pt;}
.ws5e{word-spacing:-0.864000pt;}
.wsb5{word-spacing:-0.840000pt;}
.ws27{word-spacing:-0.816000pt;}
.ws44{word-spacing:-0.800000pt;}
.ws22{word-spacing:-0.770667pt;}
.ws45{word-spacing:-0.768000pt;}
.wsa3{word-spacing:-0.760000pt;}
.ws25{word-spacing:-0.725333pt;}
.ws49{word-spacing:-0.720000pt;}
.ws80{word-spacing:-0.693333pt;}
.ws8c{word-spacing:-0.680000pt;}
.ws59{word-spacing:-0.672000pt;}
.ws98{word-spacing:-0.640000pt;}
.ws34{word-spacing:-0.624000pt;}
.wsbe{word-spacing:-0.600000pt;}
.ws23{word-spacing:-0.589333pt;}
.ws74{word-spacing:-0.586667pt;}
.ws35{word-spacing:-0.576000pt;}
.wsb4{word-spacing:-0.560000pt;}
.ws7c{word-spacing:-0.533333pt;}
.ws12{word-spacing:-0.528000pt;}
.wsa7{word-spacing:-0.520000pt;}
.ws38{word-spacing:-0.480000pt;}
.ws1c{word-spacing:-0.453333pt;}
.ws90{word-spacing:-0.440000pt;}
.ws17{word-spacing:-0.432000pt;}
.wsac{word-spacing:-0.400000pt;}
.ws43{word-spacing:-0.384000pt;}
.ws8b{word-spacing:-0.373333pt;}
.ws8e{word-spacing:-0.360000pt;}
.ws18{word-spacing:-0.336000pt;}
.ws93{word-spacing:-0.320000pt;}
.ws52{word-spacing:-0.288000pt;}
.ws95{word-spacing:-0.280000pt;}
.ws5a{word-spacing:-0.266667pt;}
.ws1b{word-spacing:-0.240000pt;}
.wsa1{word-spacing:-0.200000pt;}
.ws3e{word-spacing:-0.192000pt;}
.ws94{word-spacing:-0.160000pt;}
.ws5b{word-spacing:-0.144000pt;}
.wsad{word-spacing:-0.120000pt;}
.ws3f{word-spacing:-0.096000pt;}
.ws92{word-spacing:-0.080000pt;}
.ws75{word-spacing:-0.053333pt;}
.ws13{word-spacing:-0.048000pt;}
.wsc0{word-spacing:-0.040000pt;}
.ws30{word-spacing:-0.031200pt;}
.wsa{word-spacing:0.000000pt;}
.wsa4{word-spacing:0.040000pt;}
.ws24{word-spacing:0.045333pt;}
.ws33{word-spacing:0.048000pt;}
.ws5c{word-spacing:0.053333pt;}
.ws1f{word-spacing:0.090667pt;}
.ws48{word-spacing:0.096000pt;}
.wsb8{word-spacing:0.120000pt;}
.ws16{word-spacing:0.144000pt;}
.wsab{word-spacing:0.160000pt;}
.ws51{word-spacing:0.192000pt;}
.wsb1{word-spacing:0.200000pt;}
.ws4e{word-spacing:0.240000pt;}
.ws81{word-spacing:0.266667pt;}
.wsb6{word-spacing:0.280000pt;}
.ws39{word-spacing:0.288000pt;}
.ws1e{word-spacing:0.317333pt;}
.wsbd{word-spacing:0.320000pt;}
.ws62{word-spacing:0.336000pt;}
.ws8f{word-spacing:0.360000pt;}
.ws6b{word-spacing:0.384000pt;}
.wsa5{word-spacing:0.400000pt;}
.ws40{word-spacing:0.432000pt;}
.wsc2{word-spacing:0.440000pt;}
.ws79{word-spacing:0.480000pt;}
.wsb2{word-spacing:0.520000pt;}
.ws7f{word-spacing:0.528000pt;}
.wsc3{word-spacing:0.560000pt;}
.ws37{word-spacing:0.576000pt;}
.ws8a{word-spacing:0.586667pt;}
.wsa2{word-spacing:0.600000pt;}
.ws66{word-spacing:0.624000pt;}
.ws97{word-spacing:0.640000pt;}
.ws6c{word-spacing:0.672000pt;}
.ws3b{word-spacing:0.693333pt;}
.ws3c{word-spacing:0.720000pt;}
.wsc6{word-spacing:0.768000pt;}
.wsa8{word-spacing:0.800000pt;}
.wsae{word-spacing:0.840000pt;}
.ws7d{word-spacing:0.864000pt;}
.ws91{word-spacing:0.920000pt;}
.ws42{word-spacing:1.008000pt;}
.ws5d{word-spacing:1.056000pt;}
.wsa9{word-spacing:1.080000pt;}
.ws7b{word-spacing:1.104000pt;}
.ws7a{word-spacing:1.152000pt;}
.ws96{word-spacing:1.160000pt;}
.ws68{word-spacing:1.200000pt;}
.wsb7{word-spacing:1.240000pt;}
.ws72{word-spacing:1.248000pt;}
.ws88{word-spacing:1.280000pt;}
.ws6d{word-spacing:1.296000pt;}
.ws89{word-spacing:1.344000pt;}
.wsb0{word-spacing:1.360000pt;}
.wsaf{word-spacing:1.440000pt;}
.ws3d{word-spacing:1.488000pt;}
.wsc5{word-spacing:1.536000pt;}
.ws67{word-spacing:1.584000pt;}
.ws50{word-spacing:1.872000pt;}
.ws53{word-spacing:13.104000pt;}
._a{margin-left:-10.711467pt;}
._b{margin-left:-9.770667pt;}
._12{margin-left:-8.474133pt;}
._d{margin-left:-6.814400pt;}
._e{margin-left:-5.752000pt;}
._4{margin-left:-4.746667pt;}
._1{margin-left:-3.520000pt;}
._2{margin-left:-2.598933pt;}
._0{margin-left:-1.578667pt;}
._5{width:1.074667pt;}
._3{width:2.038933pt;}
._8{width:2.982933pt;}
._6{width:3.925867pt;}
._7{width:4.917333pt;}
._c{width:5.895467pt;}
._11{width:6.800000pt;}
._13{width:10.205867pt;}
._f{width:11.505067pt;}
._15{width:40.526400pt;}
._9{width:42.299200pt;}
._10{width:43.419200pt;}
._14{width:44.337600pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y2e{bottom:60.723467pt;}
.yed{bottom:60.934667pt;}
.y76{bottom:60.937333pt;}
.y205{bottom:61.020000pt;}
.yfa{bottom:65.820267pt;}
.y18d{bottom:71.817600pt;}
.y204{bottom:72.350000pt;}
.y78{bottom:73.674667pt;}
.y2d{bottom:74.051467pt;}
.y75{bottom:74.269333pt;}
.yec{bottom:74.270667pt;}
.y88{bottom:74.569733pt;}
.y255{bottom:74.746267pt;}
.y139{bottom:77.152267pt;}
.y147{bottom:78.493600pt;}
.y93{bottom:78.496267pt;}
.yf9{bottom:79.152267pt;}
.yb1{bottom:80.484267pt;}
.y10c{bottom:82.470933pt;}
.y203{bottom:83.680000pt;}
.y18c{bottom:85.150933pt;}
.y254{bottom:86.076267pt;}
.y77{bottom:87.006667pt;}
.y2c{bottom:87.390133pt;}
.y74{bottom:87.601333pt;}
.yeb{bottom:87.602667pt;}
.y87{bottom:87.901733pt;}
.y138{bottom:90.484267pt;}
.y146{bottom:91.825600pt;}
.y92{bottom:91.828267pt;}
.yf8{bottom:92.484267pt;}
.yb0{bottom:93.828267pt;}
.y202{bottom:95.010000pt;}
.y10b{bottom:95.805600pt;}
.y253{bottom:97.406267pt;}
.y18b{bottom:98.482933pt;}
.y2b{bottom:100.718133pt;}
.y1c7{bottom:100.933333pt;}
.yea{bottom:100.934667pt;}
.y73{bottom:100.941333pt;}
.y86{bottom:101.233733pt;}
.y137{bottom:103.832267pt;}
.y145{bottom:105.157600pt;}
.y91{bottom:105.160267pt;}
.yf7{bottom:105.817600pt;}
.y201{bottom:106.340000pt;}
.yaf{bottom:107.160267pt;}
.y252{bottom:108.736267pt;}
.y10a{bottom:109.137600pt;}
.y18a{bottom:111.816267pt;}
.y2a{bottom:114.051467pt;}
.ye9{bottom:114.268000pt;}
.y72{bottom:114.273333pt;}
.y85{bottom:114.565733pt;}
.y136{bottom:117.164267pt;}
.y200{bottom:117.670000pt;}
.y144{bottom:118.489600pt;}
.y90{bottom:118.492267pt;}
.yf6{bottom:119.153600pt;}
.y251{bottom:120.066267pt;}
.yae{bottom:120.492267pt;}
.y109{bottom:122.477600pt;}
.y1c6{bottom:124.979200pt;}
.y29{bottom:127.384800pt;}
.ye8{bottom:127.601333pt;}
.y71{bottom:127.605333pt;}
.y84{bottom:127.897733pt;}
.y1ff{bottom:129.000000pt;}
.y135{bottom:130.496267pt;}
.y250{bottom:131.396267pt;}
.y143{bottom:131.821600pt;}
.y8f{bottom:131.824267pt;}
.y7f{bottom:132.098800pt;}
.yf5{bottom:132.485600pt;}
.yad{bottom:133.824267pt;}
.y108{bottom:135.809600pt;}
.y1c5{bottom:138.311200pt;}
.y1fe{bottom:140.330000pt;}
.y28{bottom:140.718133pt;}
.ye7{bottom:140.936000pt;}
.y70{bottom:140.937333pt;}
.y189{bottom:141.157600pt;}
.y83{bottom:141.229733pt;}
.y24f{bottom:142.726267pt;}
.y134{bottom:143.828267pt;}
.y142{bottom:145.153600pt;}
.y8e{bottom:145.156267pt;}
.y7e{bottom:145.430800pt;}
.yf4{bottom:145.817600pt;}
.yac{bottom:147.156267pt;}
.y107{bottom:149.141600pt;}
.y1c4{bottom:151.645867pt;}
.y1fd{bottom:151.660000pt;}
.y27{bottom:154.051467pt;}
.y24e{bottom:154.056267pt;}
.ye6{bottom:154.268000pt;}
.y6f{bottom:154.269333pt;}
.y188{bottom:154.489600pt;}
.y82{bottom:154.561733pt;}
.y133{bottom:157.160267pt;}
.y141{bottom:158.485600pt;}
.y8d{bottom:158.488267pt;}
.y7d{bottom:158.768133pt;}
.yf3{bottom:159.150933pt;}
.yab{bottom:160.488267pt;}
.y106{bottom:162.473600pt;}
.y1fc{bottom:162.990000pt;}
.y1c3{bottom:164.977867pt;}
.y24d{bottom:165.386267pt;}
.y26{bottom:167.384800pt;}
.y6e{bottom:167.601333pt;}
.ye5{bottom:167.606667pt;}
.y187{bottom:167.821600pt;}
.y81{bottom:167.893733pt;}
.y132{bottom:170.492267pt;}
.y140{bottom:171.817600pt;}
.y8c{bottom:171.820267pt;}
.y7c{bottom:172.100133pt;}
.yf2{bottom:172.485600pt;}
.yaa{bottom:173.820267pt;}
.y1fb{bottom:174.320000pt;}
.y105{bottom:175.805600pt;}
.y24c{bottom:176.716267pt;}
.y1c2{bottom:178.309867pt;}
.y25{bottom:180.718133pt;}
.y6d{bottom:180.934667pt;}
.ye4{bottom:180.938667pt;}
.y186{bottom:181.153600pt;}
.y80{bottom:181.225733pt;}
.y131{bottom:183.824267pt;}
.y8b{bottom:185.152267pt;}
.y7b{bottom:185.432133pt;}
.y1fa{bottom:185.650000pt;}
.yf1{bottom:185.817600pt;}
.ya9{bottom:187.152267pt;}
.y24b{bottom:188.046267pt;}
.y104{bottom:189.137600pt;}
.y1c1{bottom:191.643200pt;}
.y24{bottom:194.051467pt;}
.y6c{bottom:194.268000pt;}
.ye3{bottom:194.270667pt;}
.y185{bottom:194.485600pt;}
.y1f9{bottom:196.980000pt;}
.y130{bottom:197.156267pt;}
.y8a{bottom:198.484267pt;}
.y7a{bottom:198.764133pt;}
.yf0{bottom:199.152267pt;}
.y24a{bottom:199.376267pt;}
.ya8{bottom:200.484267pt;}
.y103{bottom:202.473600pt;}
.y6b{bottom:207.601333pt;}
.ye2{bottom:207.602667pt;}
.y184{bottom:207.817600pt;}
.y1f8{bottom:208.310000pt;}
.y12f{bottom:210.488267pt;}
.y249{bottom:210.706267pt;}
.y23{bottom:211.232800pt;}
.y89{bottom:211.816267pt;}
.y79{bottom:212.096133pt;}
.yef{bottom:212.484267pt;}
.ya7{bottom:213.820267pt;}
.y1c0{bottom:215.690400pt;}
.y102{bottom:215.805600pt;}
.y1f7{bottom:219.640000pt;}
.ye1{bottom:220.934667pt;}
.y6a{bottom:220.945333pt;}
.y183{bottom:221.152267pt;}
.y248{bottom:222.036267pt;}
.y12e{bottom:223.820267pt;}
.yee{bottom:225.816267pt;}
.ya6{bottom:227.152267pt;}
.y1bf{bottom:229.022400pt;}
.y101{bottom:229.137600pt;}
.y1f6{bottom:230.970000pt;}
.y247{bottom:233.366267pt;}
.ye0{bottom:234.269333pt;}
.y69{bottom:234.277333pt;}
.y182{bottom:234.484267pt;}
.y12d{bottom:237.152267pt;}
.ya5{bottom:240.484267pt;}
.y1f5{bottom:242.300000pt;}
.y1be{bottom:242.354400pt;}
.y100{bottom:242.472267pt;}
.y246{bottom:244.696267pt;}
.ydf{bottom:247.601333pt;}
.y68{bottom:247.609333pt;}
.y181{bottom:247.817600pt;}
.y12c{bottom:250.484267pt;}
.y1f4{bottom:253.630000pt;}
.ya4{bottom:253.816267pt;}
.y14f{bottom:254.621733pt;}
.y1bd{bottom:255.695867pt;}
.yff{bottom:255.804267pt;}
.ya3{bottom:255.965733pt;}
.y245{bottom:256.026267pt;}
.y22{bottom:257.944267pt;}
.yde{bottom:260.934667pt;}
.y67{bottom:260.941333pt;}
.y180{bottom:261.150933pt;}
.y12b{bottom:263.820267pt;}
.y1f3{bottom:264.960000pt;}
.y244{bottom:267.356267pt;}
.y14e{bottom:267.953733pt;}
.y1bc{bottom:269.027867pt;}
.yfe{bottom:269.136267pt;}
.ya2{bottom:269.297733pt;}
.y21{bottom:271.276267pt;}
.ydd{bottom:274.268000pt;}
.y66{bottom:274.273333pt;}
.y17f{bottom:274.488267pt;}
.y1f2{bottom:276.290000pt;}
.y12a{bottom:277.152267pt;}
.yfd{bottom:277.761733pt;}
.y243{bottom:278.686267pt;}
.y14d{bottom:281.285733pt;}
.y1bb{bottom:282.359867pt;}
.ya1{bottom:282.629733pt;}
.y20{bottom:284.609600pt;}
.ydc{bottom:287.600000pt;}
.y65{bottom:287.605333pt;}
.y1f1{bottom:287.620000pt;}
.y17e{bottom:287.820267pt;}
.y242{bottom:290.016267pt;}
.y129{bottom:290.484267pt;}
.yfc{bottom:291.093733pt;}
.y14c{bottom:294.617733pt;}
.y1ba{bottom:295.691867pt;}
.ya0{bottom:295.961733pt;}
.y1f{bottom:297.942933pt;}
.y1f0{bottom:298.950000pt;}
.ydb{bottom:300.933333pt;}
.y64{bottom:300.937333pt;}
.yba{bottom:301.121733pt;}
.y17d{bottom:301.152267pt;}
.y241{bottom:301.346267pt;}
.y128{bottom:303.821600pt;}
.yfb{bottom:304.425733pt;}
.y14b{bottom:307.949733pt;}
.y1b9{bottom:309.023867pt;}
.y9f{bottom:309.293733pt;}
.y1ef{bottom:310.280000pt;}
.y1e{bottom:311.280267pt;}
.y240{bottom:312.676267pt;}
.y63{bottom:314.269333pt;}
.yb9{bottom:314.453733pt;}
.y17c{bottom:314.484267pt;}
.y127{bottom:317.153600pt;}
.y14a{bottom:321.281733pt;}
.y1ee{bottom:321.610000pt;}
.y1b8{bottom:322.355867pt;}
.y9e{bottom:322.625733pt;}
.y23f{bottom:324.006267pt;}
.y1d{bottom:324.612267pt;}
.y11b{bottom:325.515067pt;}
.y62{bottom:327.601333pt;}
.yda{bottom:327.692133pt;}
.yb8{bottom:327.788400pt;}
.y17b{bottom:327.822933pt;}
.y126{bottom:330.485600pt;}
.y1ed{bottom:332.940000pt;}
.y149{bottom:334.613733pt;}
.y23e{bottom:335.336267pt;}
.y1b7{bottom:335.687867pt;}
.y9d{bottom:335.957733pt;}
.y1c{bottom:337.944267pt;}
.y11a{bottom:338.847067pt;}
.y61{bottom:340.933333pt;}
.yd9{bottom:341.024133pt;}
.yb7{bottom:341.120400pt;}
.y17a{bottom:341.154933pt;}
.y125{bottom:343.817600pt;}
.y1ec{bottom:344.270000pt;}
.y23d{bottom:346.666267pt;}
.y148{bottom:347.945733pt;}
.y1b6{bottom:349.022533pt;}
.y9c{bottom:349.289733pt;}
.y1b{bottom:351.276267pt;}
.y119{bottom:352.179067pt;}
.yd8{bottom:354.356133pt;}
.yb6{bottom:354.456400pt;}
.y179{bottom:354.486933pt;}
.y1eb{bottom:355.600000pt;}
.y124{bottom:357.157600pt;}
.y23c{bottom:357.996267pt;}
.y1b5{bottom:362.354533pt;}
.y9b{bottom:362.621733pt;}
.y1a{bottom:364.640267pt;}
.y118{bottom:365.511067pt;}
.y1ea{bottom:366.933333pt;}
.yd7{bottom:367.688133pt;}
.y60{bottom:367.709467pt;}
.yb5{bottom:367.788400pt;}
.y178{bottom:367.818933pt;}
.y23b{bottom:369.326267pt;}
.y123{bottom:370.489600pt;}
.y1b4{bottom:375.686533pt;}
.y9a{bottom:375.953733pt;}
.y19{bottom:377.972267pt;}
.y117{bottom:378.843067pt;}
.y23a{bottom:380.656267pt;}
.yd6{bottom:381.020133pt;}
.y5f{bottom:381.042800pt;}
.yb4{bottom:381.120400pt;}
.y177{bottom:381.150933pt;}
.y122{bottom:383.821600pt;}
.y99{bottom:389.285733pt;}
.y18{bottom:391.304267pt;}
.y239{bottom:391.986267pt;}
.y116{bottom:392.175067pt;}
.y1e9{bottom:393.730133pt;}
.yd5{bottom:394.352133pt;}
.y5e{bottom:394.376133pt;}
.yb3{bottom:394.453733pt;}
.y176{bottom:394.484267pt;}
.y121{bottom:397.153600pt;}
.y1b3{bottom:399.737733pt;}
.y98{bottom:402.617733pt;}
.y238{bottom:403.316267pt;}
.y17{bottom:404.636267pt;}
.y115{bottom:405.507067pt;}
.y1e8{bottom:407.062133pt;}
.yd4{bottom:407.684133pt;}
.y5d{bottom:407.709467pt;}
.yb2{bottom:407.785733pt;}
.y175{bottom:407.818933pt;}
.y120{bottom:410.485600pt;}
.y1b2{bottom:413.069733pt;}
.y237{bottom:414.646267pt;}
.y279{bottom:415.824267pt;}
.y97{bottom:415.949733pt;}
.y16{bottom:417.968267pt;}
.y114{bottom:418.839067pt;}
.y1e7{bottom:420.394133pt;}
.yd3{bottom:421.016133pt;}
.y5c{bottom:421.042800pt;}
.y174{bottom:421.150933pt;}
.y11f{bottom:423.817600pt;}
.y236{bottom:425.976267pt;}
.y1b1{bottom:426.401733pt;}
.y278{bottom:429.156267pt;}
.y96{bottom:429.281733pt;}
.y1e6{bottom:433.726133pt;}
.yd2{bottom:434.348133pt;}
.y5b{bottom:434.376133pt;}
.y173{bottom:434.486933pt;}
.y11e{bottom:437.152267pt;}
.y235{bottom:437.306267pt;}
.y1b0{bottom:439.733733pt;}
.y277{bottom:442.488267pt;}
.y95{bottom:442.613733pt;}
.yd1{bottom:447.680133pt;}
.y5a{bottom:447.709467pt;}
.y172{bottom:447.818933pt;}
.y234{bottom:448.636267pt;}
.y11d{bottom:450.484267pt;}
.y1af{bottom:453.065733pt;}
.y276{bottom:455.820267pt;}
.y94{bottom:455.945733pt;}
.y233{bottom:459.966267pt;}
.y15{bottom:459.968267pt;}
.y1e5{bottom:460.522933pt;}
.yd0{bottom:461.012133pt;}
.y59{bottom:461.042800pt;}
.y171{bottom:461.150933pt;}
.y11c{bottom:463.816267pt;}
.y1ae{bottom:466.397733pt;}
.y275{bottom:469.152267pt;}
.y232{bottom:471.296267pt;}
.y1e4{bottom:473.854933pt;}
.ycf{bottom:474.344133pt;}
.y58{bottom:474.389467pt;}
.y170{bottom:474.485600pt;}
.y14{bottom:474.632267pt;}
.y1ad{bottom:479.732400pt;}
.y274{bottom:482.484267pt;}
.y231{bottom:482.626267pt;}
.y1e3{bottom:487.186933pt;}
.yce{bottom:487.676133pt;}
.y57{bottom:487.721467pt;}
.y16f{bottom:487.817600pt;}
.y13{bottom:489.296267pt;}
.y1ac{bottom:493.064400pt;}
.y230{bottom:493.956267pt;}
.y273{bottom:495.816267pt;}
.y1e2{bottom:500.518933pt;}
.ycd{bottom:501.008133pt;}
.y56{bottom:501.053467pt;}
.y16e{bottom:501.153600pt;}
.y12{bottom:503.960267pt;}
.y22f{bottom:505.286267pt;}
.y1ab{bottom:506.401733pt;}
.ycc{bottom:514.340133pt;}
.y55{bottom:514.385467pt;}
.y16d{bottom:514.485600pt;}
.y272{bottom:515.157600pt;}
.y13f{bottom:516.163067pt;}
.y22e{bottom:516.616267pt;}
.y11{bottom:518.624267pt;}
.y1aa{bottom:519.733733pt;}
.y1e1{bottom:527.313067pt;}
.ycb{bottom:527.676133pt;}
.y54{bottom:527.717467pt;}
.y16c{bottom:527.817600pt;}
.y22d{bottom:527.946267pt;}
.y271{bottom:528.489600pt;}
.y13e{bottom:529.495067pt;}
.y1a9{bottom:533.065733pt;}
.y10{bottom:533.288267pt;}
.y22c{bottom:539.276267pt;}
.y1e0{bottom:540.645067pt;}
.yca{bottom:541.008133pt;}
.y53{bottom:541.049467pt;}
.y16b{bottom:541.153600pt;}
.y13d{bottom:542.827067pt;}
.y1a8{bottom:546.397733pt;}
.y270{bottom:547.821600pt;}
.yf{bottom:547.952267pt;}
.y22b{bottom:550.606267pt;}
.yc9{bottom:554.340133pt;}
.y52{bottom:554.381467pt;}
.y16a{bottom:554.485600pt;}
.y13c{bottom:556.160400pt;}
.y1a7{bottom:559.729733pt;}
.y26f{bottom:561.153600pt;}
.y22a{bottom:561.936267pt;}
.ye{bottom:562.616267pt;}
.y1df{bottom:567.440533pt;}
.yc8{bottom:567.672133pt;}
.y51{bottom:567.713467pt;}
.y169{bottom:567.817600pt;}
.y13b{bottom:569.493733pt;}
.y229{bottom:573.266267pt;}
.y26e{bottom:574.485600pt;}
.yd{bottom:577.280267pt;}
.y1de{bottom:580.772533pt;}
.y50{bottom:581.045467pt;}
.y168{bottom:581.154933pt;}
.y13a{bottom:582.825733pt;}
.y1a6{bottom:583.795600pt;}
.y228{bottom:584.596267pt;}
.yc{bottom:591.944267pt;}
.y26d{bottom:593.817600pt;}
.y1dd{bottom:594.104533pt;}
.y4f{bottom:594.377467pt;}
.yc7{bottom:594.414800pt;}
.y167{bottom:594.486933pt;}
.y227{bottom:595.926267pt;}
.y1a5{bottom:597.127600pt;}
.yb{bottom:606.608267pt;}
.y226{bottom:607.256267pt;}
.y4e{bottom:607.709467pt;}
.yc6{bottom:607.746800pt;}
.y166{bottom:607.818933pt;}
.y1a4{bottom:610.459600pt;}
.y26c{bottom:613.149600pt;}
.y225{bottom:618.586267pt;}
.y1dc{bottom:620.900000pt;}
.y4d{bottom:621.041467pt;}
.yc5{bottom:621.078800pt;}
.y165{bottom:621.150933pt;}
.y1a3{bottom:623.791600pt;}
.y26b{bottom:626.482933pt;}
.y224{bottom:629.916267pt;}
.ya{bottom:633.274933pt;}
.y1db{bottom:634.232000pt;}
.y4c{bottom:634.374800pt;}
.yc4{bottom:634.412133pt;}
.y164{bottom:634.485600pt;}
.y1a2{bottom:637.123600pt;}
.y223{bottom:641.246267pt;}
.y1da{bottom:647.564000pt;}
.yc3{bottom:647.744133pt;}
.y163{bottom:647.817600pt;}
.y9{bottom:649.274933pt;}
.y1a1{bottom:650.455600pt;}
.y26a{bottom:650.494933pt;}
.y222{bottom:652.576267pt;}
.y162{bottom:661.152267pt;}
.y4b{bottom:661.156267pt;}
.y1a0{bottom:663.787600pt;}
.y269{bottom:663.826933pt;}
.y221{bottom:663.906267pt;}
.y8{bottom:665.274933pt;}
.y31{bottom:672.933333pt;}
.y1d9{bottom:674.364800pt;}
.y161{bottom:674.484267pt;}
.y4a{bottom:674.488267pt;}
.yc2{bottom:674.497600pt;}
.y220{bottom:675.236267pt;}
.y113{bottom:675.313733pt;}
.y19f{bottom:677.119600pt;}
.y268{bottom:677.158933pt;}
.y21f{bottom:686.566267pt;}
.y1d8{bottom:687.696800pt;}
.y49{bottom:687.820267pt;}
.yc1{bottom:687.829600pt;}
.y160{bottom:687.830933pt;}
.y112{bottom:688.645733pt;}
.y19e{bottom:690.451600pt;}
.y267{bottom:690.490933pt;}
.y30{bottom:691.600000pt;}
.y7{bottom:694.592267pt;}
.y21e{bottom:697.896267pt;}
.y1d7{bottom:701.028800pt;}
.y48{bottom:701.152267pt;}
.yc0{bottom:701.161600pt;}
.y15f{bottom:701.162933pt;}
.y111{bottom:701.977733pt;}
.y19d{bottom:703.783600pt;}
.y266{bottom:703.822933pt;}
.y21d{bottom:709.226267pt;}
.y2f{bottom:710.266667pt;}
.y1d6{bottom:714.360800pt;}
.y47{bottom:714.484267pt;}
.ybf{bottom:714.493600pt;}
.y15e{bottom:714.494933pt;}
.y110{bottom:715.309733pt;}
.y19c{bottom:717.115600pt;}
.y265{bottom:717.154933pt;}
.y21c{bottom:720.556267pt;}
.y1d5{bottom:727.692800pt;}
.y46{bottom:727.825600pt;}
.y15d{bottom:727.826933pt;}
.y10f{bottom:728.641733pt;}
.y19b{bottom:730.447600pt;}
.y264{bottom:730.486933pt;}
.y21b{bottom:731.886267pt;}
.y6{bottom:734.597600pt;}
.y1d4{bottom:741.024800pt;}
.y45{bottom:741.157600pt;}
.y15c{bottom:741.158933pt;}
.y10e{bottom:741.973733pt;}
.y21a{bottom:743.216267pt;}
.y19a{bottom:743.779600pt;}
.y263{bottom:743.818933pt;}
.y1d3{bottom:754.359467pt;}
.y44{bottom:754.489600pt;}
.y15b{bottom:754.490933pt;}
.y219{bottom:754.546267pt;}
.y10d{bottom:755.305733pt;}
.y199{bottom:757.111600pt;}
.y262{bottom:757.150933pt;}
.y218{bottom:765.876267pt;}
.y1d2{bottom:767.691467pt;}
.y43{bottom:767.821600pt;}
.y15a{bottom:767.822933pt;}
.y198{bottom:770.443600pt;}
.y261{bottom:770.482933pt;}
.y5{bottom:774.602933pt;}
.y217{bottom:777.206267pt;}
.y1d1{bottom:781.030133pt;}
.y42{bottom:781.153600pt;}
.y159{bottom:781.154933pt;}
.y197{bottom:783.775600pt;}
.y260{bottom:783.816267pt;}
.y216{bottom:788.536267pt;}
.y1d0{bottom:794.362133pt;}
.y41{bottom:794.485600pt;}
.y158{bottom:794.486933pt;}
.y196{bottom:797.107600pt;}
.y215{bottom:799.866267pt;}
.y1cf{bottom:807.694133pt;}
.y40{bottom:807.817600pt;}
.y157{bottom:807.818933pt;}
.y25f{bottom:807.830933pt;}
.y195{bottom:810.440933pt;}
.y214{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.y1ce{bottom:821.026133pt;}
.ybe{bottom:821.150933pt;}
.y3f{bottom:821.153600pt;}
.y25e{bottom:821.162933pt;}
.y213{bottom:822.526267pt;}
.y32{bottom:823.475200pt;}
.y194{bottom:823.772933pt;}
.y212{bottom:833.856267pt;}
.y1cd{bottom:834.358133pt;}
.y156{bottom:834.484267pt;}
.y3e{bottom:834.485600pt;}
.ybd{bottom:834.486933pt;}
.y25d{bottom:834.494933pt;}
.y211{bottom:845.186267pt;}
.y1cc{bottom:847.692800pt;}
.y3d{bottom:847.817600pt;}
.ybc{bottom:847.818933pt;}
.y25c{bottom:847.826933pt;}
.y210{bottom:856.516267pt;}
.y1cb{bottom:861.024800pt;}
.y3c{bottom:861.150933pt;}
.y25b{bottom:861.158933pt;}
.y193{bottom:861.160267pt;}
.y20f{bottom:867.846267pt;}
.y1ca{bottom:874.359467pt;}
.ybb{bottom:874.484267pt;}
.y3b{bottom:874.485600pt;}
.y155{bottom:874.489600pt;}
.y25a{bottom:874.490933pt;}
.y192{bottom:874.492267pt;}
.y20e{bottom:879.176267pt;}
.y1c9{bottom:887.691467pt;}
.y3a{bottom:887.817600pt;}
.y154{bottom:887.821600pt;}
.y259{bottom:887.822933pt;}
.y191{bottom:887.824267pt;}
.y20d{bottom:890.506267pt;}
.y1c8{bottom:901.023467pt;}
.y39{bottom:901.150933pt;}
.y153{bottom:901.153600pt;}
.y258{bottom:901.154933pt;}
.y190{bottom:901.156267pt;}
.y20c{bottom:901.836267pt;}
.y20b{bottom:913.166267pt;}
.y38{bottom:914.484267pt;}
.y152{bottom:914.485600pt;}
.y257{bottom:914.486933pt;}
.y18f{bottom:914.488267pt;}
.y20a{bottom:924.496267pt;}
.y151{bottom:927.817600pt;}
.y37{bottom:927.818933pt;}
.y18e{bottom:927.820267pt;}
.y209{bottom:935.826267pt;}
.y36{bottom:941.150933pt;}
.y150{bottom:941.152267pt;}
.y208{bottom:947.156267pt;}
.y256{bottom:954.482933pt;}
.y35{bottom:954.484267pt;}
.y207{bottom:958.486267pt;}
.y34{bottom:967.816267pt;}
.y206{bottom:969.816267pt;}
.y33{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.hd{height:21.193555pt;}
.h3{height:30.687500pt;}
.hf{height:32.605469pt;}
.h1e{height:34.200000pt;}
.h18{height:34.272000pt;}
.h7{height:34.523438pt;}
.h10{height:36.564221pt;}
.he{height:36.585555pt;}
.h2{height:38.359375pt;}
.h4{height:39.318359pt;}
.h8{height:41.040000pt;}
.h14{height:42.195312pt;}
.h9{height:42.868000pt;}
.h15{height:42.937333pt;}
.h1c{height:42.953333pt;}
.h13{height:42.958667pt;}
.h1b{height:42.964000pt;}
.h1a{height:42.968800pt;}
.h1d{height:42.969333pt;}
.ha{height:42.974667pt;}
.h12{height:42.980000pt;}
.h19{height:42.984800pt;}
.hc{height:42.985333pt;}
.h16{height:42.990133pt;}
.hb{height:42.990667pt;}
.h17{height:42.996000pt;}
.h6{height:43.066927pt;}
.h11{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x7{left:58.365467pt;}
.x8{left:68.573467pt;}
.x6{left:75.069467pt;}
.x9{left:125.291333pt;}
.x4{left:207.516800pt;}
.xd{left:212.437333pt;}
.x5{left:223.520400pt;}
.xe{left:266.976667pt;}
.x3{left:519.632533pt;}
.xb{left:725.336533pt;}
.xc{left:726.469467pt;}
.xa{left:732.628800pt;}
.x1{left:733.540267pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  