
    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_e35f61d12c4678e1684e735f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.236000;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_11b1455cb93ae30249bd11c4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.236000;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_ea7733d818f270bf74aa0c5e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.044922;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_1547d13a4a3e375eec103e0e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.216000;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_461e5ddbc2be56f61122c336.woff')format("woff");}.ff5{font-family:ff5;line-height:1.182000;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_c027612fa4fa428ca344fcbe.woff')format("woff");}.ff6{font-family:ff6;line-height:0.927246;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_11b1455cb93ae30249bd11c4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.236000;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_cffc5661d8803c43a71a53a2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.927246;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_0239b56b1cf4d0f5b7016bc6.woff')format("woff");}.ff9{font-family:ff9;line-height:1.181000;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_ab74489b566b4a01109625fe.woff')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_d9ada4eb163f9c028833714d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.826000;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_a44de2066fd313f80dbf53d8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.939941;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_0cc6bdd60f7736ed1c48c468.woff')format("woff");}.ffd{font-family:ffd;line-height:0.939941;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;}
.m1{transform:matrix(0.000000,-0.245098,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.245098,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.245098,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v0{vertical-align:0.000000px;}
.ls95{letter-spacing:-16.830000px;}
.ls92{letter-spacing:-7.270560px;}
.ls3f{letter-spacing:-4.131000px;}
.ls85{letter-spacing:-3.672000px;}
.ls6b{letter-spacing:-3.213000px;}
.ls98{letter-spacing:-2.962080px;}
.ls82{letter-spacing:-2.907000px;}
.ls6e{letter-spacing:-2.830500px;}
.ls4e{letter-spacing:-2.754000px;}
.ls63{letter-spacing:-2.677500px;}
.ls9f{letter-spacing:-2.625480px;}
.ls8a{letter-spacing:-2.558160px;}
.ls80{letter-spacing:-2.524500px;}
.ls76{letter-spacing:-2.448000px;}
.lsa0{letter-spacing:-2.423520px;}
.ls96{letter-spacing:-2.356200px;}
.ls90{letter-spacing:-2.288880px;}
.ls8f{letter-spacing:-2.086920px;}
.ls97{letter-spacing:-2.019600px;}
.ls7b{letter-spacing:-1.989000px;}
.ls7a{letter-spacing:-1.912500px;}
.ls79{letter-spacing:-1.759500px;}
.ls91{letter-spacing:-1.750320px;}
.ls46{letter-spacing:-1.683000px;}
.ls94{letter-spacing:-1.615680px;}
.ls87{letter-spacing:-1.530000px;}
.ls3e{letter-spacing:-1.453500px;}
.ls9e{letter-spacing:-1.413720px;}
.ls41{letter-spacing:-1.377000px;}
.ls56{letter-spacing:-1.300500px;}
.ls8e{letter-spacing:-1.279080px;}
.ls44{letter-spacing:-1.224000px;}
.ls49{letter-spacing:-1.147500px;}
.ls45{letter-spacing:-1.071000px;}
.ls3c{letter-spacing:-0.994500px;}
.ls5e{letter-spacing:-0.918000px;}
.ls34{letter-spacing:-0.875160px;}
.ls47{letter-spacing:-0.841500px;}
.ls8b{letter-spacing:-0.807840px;}
.ls42{letter-spacing:-0.765000px;}
.ls15{letter-spacing:-0.740520px;}
.ls40{letter-spacing:-0.688500px;}
.ls1f{letter-spacing:-0.673200px;}
.ls43{letter-spacing:-0.612000px;}
.ls8d{letter-spacing:-0.605880px;}
.ls14{letter-spacing:-0.538560px;}
.ls4{letter-spacing:-0.535500px;}
.ls35{letter-spacing:-0.471240px;}
.ls3{letter-spacing:-0.459000px;}
.lsa6{letter-spacing:-0.440640px;}
.ls36{letter-spacing:-0.403920px;}
.ls62{letter-spacing:-0.382500px;}
.ls33{letter-spacing:-0.336600px;}
.ls4f{letter-spacing:-0.306000px;}
.ls12{letter-spacing:-0.269280px;}
.ls58{letter-spacing:-0.229500px;}
.ls11{letter-spacing:-0.201960px;}
.lsa3{letter-spacing:-0.165240px;}
.ls60{letter-spacing:-0.153000px;}
.ls13{letter-spacing:-0.134640px;}
.ls3d{letter-spacing:-0.076500px;}
.ls23{letter-spacing:-0.067320px;}
.ls2{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.067320px;}
.ls39{letter-spacing:0.076500px;}
.ls2a{letter-spacing:0.134640px;}
.ls6d{letter-spacing:0.153000px;}
.ls9a{letter-spacing:0.201960px;}
.lsa8{letter-spacing:0.220320px;}
.ls5{letter-spacing:0.229500px;}
.ls17{letter-spacing:0.269280px;}
.ls68{letter-spacing:0.306000px;}
.ls1e{letter-spacing:0.336600px;}
.ls6c{letter-spacing:0.382500px;}
.ls16{letter-spacing:0.403920px;}
.ls1{letter-spacing:0.459000px;}
.ls1a{letter-spacing:0.471240px;}
.lsa4{letter-spacing:0.495720px;}
.ls29{letter-spacing:0.535500px;}
.ls1d{letter-spacing:0.538560px;}
.ls18{letter-spacing:0.605880px;}
.ls6a{letter-spacing:0.612000px;}
.lse{letter-spacing:0.673200px;}
.ls4c{letter-spacing:0.688500px;}
.lsf{letter-spacing:0.716040px;}
.ls3b{letter-spacing:0.765000px;}
.ls24{letter-spacing:0.807840px;}
.ls5a{letter-spacing:0.841500px;}
.ls1c{letter-spacing:0.875160px;}
.ls4a{letter-spacing:0.918000px;}
.ls9b{letter-spacing:0.942480px;}
.ls4d{letter-spacing:0.994500px;}
.lsa2{letter-spacing:1.046520px;}
.ls53{letter-spacing:1.071000px;}
.ls30{letter-spacing:1.077120px;}
.lsa9{letter-spacing:1.101600px;}
.ls93{letter-spacing:1.144440px;}
.ls64{letter-spacing:1.147500px;}
.ls20{letter-spacing:1.211760px;}
.ls48{letter-spacing:1.224000px;}
.ls67{letter-spacing:1.300500px;}
.lsa7{letter-spacing:1.321920px;}
.ls89{letter-spacing:1.326000px;}
.ls2b{letter-spacing:1.346400px;}
.ls5c{letter-spacing:1.377000px;}
.ls27{letter-spacing:1.413720px;}
.ls5f{letter-spacing:1.440000px;}
.ls4b{letter-spacing:1.453500px;}
.ls9d{letter-spacing:1.481040px;}
.ls10{letter-spacing:1.487160px;}
.ls5d{letter-spacing:1.530000px;}
.ls2e{letter-spacing:1.548360px;}
.lsa5{letter-spacing:1.597320px;}
.ls59{letter-spacing:1.606500px;}
.ls21{letter-spacing:1.615680px;}
.ls38{letter-spacing:1.683000px;}
.ls22{letter-spacing:1.750320px;}
.ls52{letter-spacing:1.759500px;}
.ls74{letter-spacing:1.836000px;}
.lsd{letter-spacing:1.872000px;}
.ls65{letter-spacing:1.912500px;}
.ls77{letter-spacing:1.989000px;}
.ls55{letter-spacing:2.065500px;}
.ls8c{letter-spacing:2.086920px;}
.ls7{letter-spacing:2.105280px;}
.ls7c{letter-spacing:2.142000px;}
.ls1b{letter-spacing:2.154240px;}
.ls37{letter-spacing:2.160000px;}
.ls54{letter-spacing:2.218500px;}
.ls26{letter-spacing:2.288880px;}
.ls71{letter-spacing:2.295000px;}
.ls99{letter-spacing:2.340000px;}
.ls75{letter-spacing:2.371500px;}
.ls51{letter-spacing:2.430000px;}
.lsc{letter-spacing:2.448000px;}
.lsa{letter-spacing:2.520000px;}
.ls5b{letter-spacing:2.524500px;}
.ls6{letter-spacing:2.545920px;}
.ls72{letter-spacing:2.601000px;}
.ls2d{letter-spacing:2.625480px;}
.ls73{letter-spacing:2.677500px;}
.ls9{letter-spacing:2.688000px;}
.ls50{letter-spacing:2.700000px;}
.ls2f{letter-spacing:2.760120px;}
.ls3a{letter-spacing:2.830500px;}
.ls6f{letter-spacing:2.907000px;}
.ls2c{letter-spacing:3.029400px;}
.ls86{letter-spacing:3.136500px;}
.ls7e{letter-spacing:3.213000px;}
.ls7d{letter-spacing:3.289500px;}
.ls66{letter-spacing:3.442500px;}
.ls61{letter-spacing:3.519000px;}
.lsb{letter-spacing:3.600000px;}
.ls81{letter-spacing:3.748500px;}
.ls32{letter-spacing:3.769920px;}
.ls8{letter-spacing:4.200000px;}
.ls31{letter-spacing:4.645080px;}
.ls25{letter-spacing:4.847040px;}
.ls70{letter-spacing:4.896000px;}
.lsa1{letter-spacing:5.520240px;}
.ls84{letter-spacing:40.774500px;}
.ls57{letter-spacing:53.779500px;}
.ls88{letter-spacing:54.315000px;}
.ls83{letter-spacing:54.697500px;}
.ls28{letter-spacing:54.927000px;}
.ls7f{letter-spacing:55.003500px;}
.ls0{letter-spacing:55.080000px;}
.ls78{letter-spacing:55.156500px;}
.ls69{letter-spacing:57.910500px;}
.ls9c{letter-spacing:58.446000px;}
.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;}
}
.ws29{word-spacing:-24.300000px;}
.ws28{word-spacing:-24.030000px;}
.ws8e{word-spacing:-23.310000px;}
.ws91{word-spacing:-21.294000px;}
.ws8c{word-spacing:-20.043000px;}
.ws8d{word-spacing:-18.742500px;}
.ws85{word-spacing:-18.207000px;}
.ws6c{word-spacing:-18.130500px;}
.ws27{word-spacing:-18.054000px;}
.ws0{word-spacing:-17.977500px;}
.ws81{word-spacing:-17.901000px;}
.ws2{word-spacing:-17.748000px;}
.ws8b{word-spacing:-17.671500px;}
.ws89{word-spacing:-17.595000px;}
.ws3{word-spacing:-17.368560px;}
.ws5a{word-spacing:-17.212500px;}
.ws8a{word-spacing:-17.136000px;}
.ws1{word-spacing:-17.059500px;}
.ws90{word-spacing:-16.830000px;}
.ws8f{word-spacing:-16.762680px;}
.ws86{word-spacing:-15.453000px;}
.wsa4{word-spacing:-11.732040px;}
.wsa8{word-spacing:-5.520240px;}
.ws73{word-spacing:-4.896000px;}
.ws24{word-spacing:-4.847040px;}
.ws31{word-spacing:-4.645080px;}
.ws8{word-spacing:-4.200000px;}
.ws32{word-spacing:-3.769920px;}
.ws83{word-spacing:-3.748500px;}
.wsb{word-spacing:-3.600000px;}
.ws64{word-spacing:-3.519000px;}
.ws69{word-spacing:-3.442500px;}
.ws7f{word-spacing:-3.289500px;}
.ws80{word-spacing:-3.213000px;}
.ws87{word-spacing:-3.136500px;}
.ws2c{word-spacing:-3.029400px;}
.ws72{word-spacing:-2.907000px;}
.ws3a{word-spacing:-2.830500px;}
.ws2f{word-spacing:-2.760120px;}
.ws52{word-spacing:-2.700000px;}
.ws9{word-spacing:-2.688000px;}
.ws76{word-spacing:-2.677500px;}
.ws2d{word-spacing:-2.625480px;}
.ws75{word-spacing:-2.601000px;}
.ws6{word-spacing:-2.545920px;}
.ws5e{word-spacing:-2.524500px;}
.wsa{word-spacing:-2.520000px;}
.wsc{word-spacing:-2.448000px;}
.ws78{word-spacing:-2.371500px;}
.ws74{word-spacing:-2.295000px;}
.ws25{word-spacing:-2.288880px;}
.ws56{word-spacing:-2.218500px;}
.ws1b{word-spacing:-2.154240px;}
.ws7e{word-spacing:-2.142000px;}
.ws7{word-spacing:-2.105280px;}
.ws95{word-spacing:-2.086920px;}
.ws57{word-spacing:-2.065500px;}
.ws7a{word-spacing:-1.989000px;}
.ws68{word-spacing:-1.912500px;}
.wsd{word-spacing:-1.872000px;}
.ws77{word-spacing:-1.836000px;}
.ws53{word-spacing:-1.759500px;}
.ws21{word-spacing:-1.750320px;}
.ws38{word-spacing:-1.683000px;}
.ws20{word-spacing:-1.615680px;}
.ws5c{word-spacing:-1.606500px;}
.wsab{word-spacing:-1.597320px;}
.ws2e{word-spacing:-1.548360px;}
.ws60{word-spacing:-1.530000px;}
.ws10{word-spacing:-1.487160px;}
.ws4c{word-spacing:-1.453500px;}
.ws62{word-spacing:-1.440000px;}
.ws26{word-spacing:-1.413720px;}
.ws5f{word-spacing:-1.377000px;}
.ws2b{word-spacing:-1.346400px;}
.ws92{word-spacing:-1.326000px;}
.wsad{word-spacing:-1.321920px;}
.ws6a{word-spacing:-1.300500px;}
.ws49{word-spacing:-1.224000px;}
.ws1f{word-spacing:-1.211760px;}
.ws67{word-spacing:-1.147500px;}
.ws9c{word-spacing:-1.144440px;}
.wsaf{word-spacing:-1.101600px;}
.ws30{word-spacing:-1.077120px;}
.ws55{word-spacing:-1.071000px;}
.wsa9{word-spacing:-1.046520px;}
.ws4f{word-spacing:-0.994500px;}
.wsa3{word-spacing:-0.942480px;}
.ws4b{word-spacing:-0.918000px;}
.ws1c{word-spacing:-0.875160px;}
.ws5d{word-spacing:-0.841500px;}
.ws23{word-spacing:-0.807840px;}
.ws3b{word-spacing:-0.765000px;}
.wsf{word-spacing:-0.716040px;}
.ws4d{word-spacing:-0.688500px;}
.wse{word-spacing:-0.673200px;}
.ws71{word-spacing:-0.612000px;}
.ws18{word-spacing:-0.605880px;}
.ws36{word-spacing:-0.538560px;}
.ws54{word-spacing:-0.535500px;}
.ws1a{word-spacing:-0.471240px;}
.ws58{word-spacing:-0.459000px;}
.ws16{word-spacing:-0.403920px;}
.ws6e{word-spacing:-0.382500px;}
.ws1d{word-spacing:-0.336600px;}
.ws6b{word-spacing:-0.306000px;}
.ws17{word-spacing:-0.269280px;}
.ws4e{word-spacing:-0.229500px;}
.wsae{word-spacing:-0.220320px;}
.wsa2{word-spacing:-0.201960px;}
.ws6f{word-spacing:-0.153000px;}
.ws2a{word-spacing:-0.134640px;}
.ws39{word-spacing:-0.076500px;}
.ws19{word-spacing:-0.067320px;}
.ws4{word-spacing:0.000000px;}
.ws22{word-spacing:0.067320px;}
.ws3e{word-spacing:0.076500px;}
.ws13{word-spacing:0.134640px;}
.ws63{word-spacing:0.153000px;}
.wsaa{word-spacing:0.165240px;}
.ws11{word-spacing:0.201960px;}
.ws5b{word-spacing:0.229500px;}
.ws12{word-spacing:0.269280px;}
.ws51{word-spacing:0.306000px;}
.ws33{word-spacing:0.336600px;}
.ws65{word-spacing:0.382500px;}
.ws37{word-spacing:0.403920px;}
.wsac{word-spacing:0.440640px;}
.ws3c{word-spacing:0.459000px;}
.ws35{word-spacing:0.471240px;}
.ws5{word-spacing:0.535500px;}
.ws14{word-spacing:0.538560px;}
.ws96{word-spacing:0.605880px;}
.ws44{word-spacing:0.612000px;}
.ws1e{word-spacing:0.673200px;}
.ws41{word-spacing:0.688500px;}
.ws15{word-spacing:0.740520px;}
.ws43{word-spacing:0.765000px;}
.ws94{word-spacing:0.807840px;}
.ws48{word-spacing:0.841500px;}
.ws34{word-spacing:0.875160px;}
.ws61{word-spacing:0.918000px;}
.ws3d{word-spacing:0.994500px;}
.ws46{word-spacing:1.071000px;}
.ws4a{word-spacing:1.147500px;}
.ws45{word-spacing:1.224000px;}
.ws97{word-spacing:1.279080px;}
.ws59{word-spacing:1.300500px;}
.ws42{word-spacing:1.377000px;}
.wsa5{word-spacing:1.413720px;}
.ws3f{word-spacing:1.453500px;}
.ws88{word-spacing:1.530000px;}
.ws9d{word-spacing:1.615680px;}
.ws47{word-spacing:1.683000px;}
.ws9a{word-spacing:1.750320px;}
.ws7b{word-spacing:1.759500px;}
.ws7c{word-spacing:1.912500px;}
.ws7d{word-spacing:1.989000px;}
.wsa0{word-spacing:2.019600px;}
.ws98{word-spacing:2.086920px;}
.ws99{word-spacing:2.288880px;}
.ws9f{word-spacing:2.356200px;}
.wsa7{word-spacing:2.423520px;}
.ws79{word-spacing:2.448000px;}
.ws82{word-spacing:2.524500px;}
.ws93{word-spacing:2.558160px;}
.wsa6{word-spacing:2.625480px;}
.ws66{word-spacing:2.677500px;}
.ws50{word-spacing:2.754000px;}
.ws70{word-spacing:2.830500px;}
.ws84{word-spacing:2.907000px;}
.wsa1{word-spacing:2.962080px;}
.ws6d{word-spacing:3.213000px;}
.ws40{word-spacing:4.131000px;}
.ws9b{word-spacing:7.270560px;}
.ws9e{word-spacing:16.830000px;}
._14{margin-left:-70.074000px;}
._12{margin-left:-19.186200px;}
._19{margin-left:-17.549940px;}
._18{margin-left:-9.041688px;}
._3{margin-left:-7.956000px;}
._f{margin-left:-6.575100px;}
._9{margin-left:-5.429100px;}
._c{margin-left:-4.365000px;}
._2{margin-left:-3.182400px;}
._1{margin-left:-1.407600px;}
._5{width:1.377000px;}
._6{width:2.516850px;}
._8{width:4.293900px;}
._10{width:5.928300px;}
._b{width:6.951600px;}
._7{width:8.047200px;}
._1a{width:9.129510px;}
._d{width:10.478722px;}
._e{width:11.554703px;}
._a{width:13.020444px;}
._1b{width:14.830212px;}
._15{width:18.176400px;}
._17{width:19.455480px;}
._1e{width:21.454500px;}
._1d{width:22.800900px;}
._1c{width:24.800688px;}
._16{width:26.524080px;}
._0{width:152.541000px;}
._13{width:155.218500px;}
._4{width:1955.722500px;}
._11{width:2260.086840px;}
.fc5{color:rgb(49,87,147);}
.fc4{color:rgb(22,25,63);}
.fc2{color:rgb(153,102,0);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(182,156,78);}
.fc0{color:rgb(23,25,66);}
.fs1{font-size:48.960000px;}
.fs5{font-size:55.080000px;}
.fs4{font-size:67.320000px;}
.fs0{font-size:76.500000px;}
.fs8{font-size:78.000000px;}
.fs6{font-size:90.000000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:168.000000px;}
.fs7{font-size:287.074200px;}
.y0{bottom:0.000000px;}
.y246{bottom:61.276620px;}
.y82{bottom:71.878275px;}
.yaf{bottom:73.982400px;}
.y69{bottom:76.171425px;}
.ydd{bottom:76.315650px;}
.y139{bottom:77.277375px;}
.y1de{bottom:77.312550px;}
.y10b{bottom:77.353875px;}
.y195{bottom:77.909025px;}
.y1b0{bottom:77.981925px;}
.y167{bottom:77.985525px;}
.y20{bottom:79.287270px;}
.y2f{bottom:80.741190px;}
.y245{bottom:82.280460px;}
.y81{bottom:95.880150px;}
.yae{bottom:97.984275px;}
.y68{bottom:100.173300px;}
.y1f{bottom:100.291110px;}
.ydc{bottom:100.317525px;}
.y138{bottom:101.279250px;}
.y1dd{bottom:101.314425px;}
.y10a{bottom:101.355750px;}
.y2e{bottom:101.745030px;}
.y194{bottom:101.910900px;}
.y1af{bottom:101.983800px;}
.y166{bottom:101.987400px;}
.y244{bottom:103.284300px;}
.y80{bottom:119.882025px;}
.y1e{bottom:121.294950px;}
.yad{bottom:121.986150px;}
.y2d{bottom:122.748870px;}
.y67{bottom:124.175175px;}
.y243{bottom:124.288140px;}
.ydb{bottom:124.319400px;}
.y137{bottom:125.281125px;}
.y1dc{bottom:125.316300px;}
.y109{bottom:125.357625px;}
.y193{bottom:125.912775px;}
.y1ae{bottom:125.985675px;}
.y165{bottom:125.989275px;}
.y1d{bottom:142.294950px;}
.y2c{bottom:143.752710px;}
.y7f{bottom:143.883900px;}
.y242{bottom:145.291980px;}
.yac{bottom:145.988025px;}
.y66{bottom:148.177050px;}
.yda{bottom:148.321275px;}
.y136{bottom:149.283000px;}
.y1db{bottom:149.318175px;}
.y108{bottom:149.359500px;}
.y192{bottom:149.914650px;}
.y1ad{bottom:149.987550px;}
.y164{bottom:149.991150px;}
.y1c{bottom:163.294950px;}
.y2b{bottom:164.756550px;}
.y241{bottom:166.295820px;}
.y7e{bottom:167.885775px;}
.yab{bottom:169.989900px;}
.y65{bottom:172.178925px;}
.yd9{bottom:172.323150px;}
.y1e8{bottom:172.333725px;}
.y135{bottom:173.284875px;}
.y1da{bottom:173.320050px;}
.y107{bottom:173.361375px;}
.y191{bottom:173.916525px;}
.y1ac{bottom:173.989425px;}
.y163{bottom:173.993025px;}
.y1b{bottom:184.283430px;}
.y2a{bottom:185.760390px;}
.y240{bottom:187.299660px;}
.y7d{bottom:191.887650px;}
.yaa{bottom:193.991775px;}
.y64{bottom:196.180800px;}
.yd8{bottom:196.325025px;}
.y1e7{bottom:196.335600px;}
.y210{bottom:196.978650px;}
.y134{bottom:197.286750px;}
.y1d9{bottom:197.321925px;}
.y106{bottom:197.363250px;}
.y190{bottom:197.918400px;}
.y1ab{bottom:197.991300px;}
.y162{bottom:197.994900px;}
.y1a{bottom:205.287270px;}
.y29{bottom:206.764230px;}
.y23f{bottom:208.303500px;}
.y7c{bottom:215.889525px;}
.ya9{bottom:217.993650px;}
.y257{bottom:218.022810px;}
.y63{bottom:220.182675px;}
.yd7{bottom:220.326900px;}
.y1e6{bottom:220.337475px;}
.y20f{bottom:220.980525px;}
.y133{bottom:221.288625px;}
.y1d8{bottom:221.323800px;}
.y105{bottom:221.365125px;}
.y18f{bottom:221.920275px;}
.y1aa{bottom:221.993175px;}
.y161{bottom:221.996775px;}
.y19{bottom:226.291110px;}
.y28{bottom:227.768070px;}
.y23e{bottom:235.303500px;}
.y7b{bottom:239.891400px;}
.ya8{bottom:241.995525px;}
.y256{bottom:243.267810px;}
.y62{bottom:244.184550px;}
.yd6{bottom:244.328775px;}
.y1e5{bottom:244.339350px;}
.y20e{bottom:244.982400px;}
.y132{bottom:245.290500px;}
.y1d7{bottom:245.325675px;}
.y104{bottom:245.367000px;}
.y18e{bottom:245.922150px;}
.y1a9{bottom:245.995050px;}
.y160{bottom:245.998650px;}
.y18{bottom:247.294950px;}
.y27{bottom:248.771910px;}
.y7a{bottom:263.893275px;}
.y255{bottom:264.271650px;}
.ya7{bottom:265.997400px;}
.y61{bottom:268.186425px;}
.y17{bottom:268.294950px;}
.yd5{bottom:268.330650px;}
.y1e4{bottom:268.341225px;}
.y20d{bottom:268.984275px;}
.y131{bottom:269.292375px;}
.y1d6{bottom:269.327550px;}
.y103{bottom:269.368875px;}
.y26{bottom:269.775750px;}
.y18d{bottom:269.924025px;}
.y1a8{bottom:269.996925px;}
.y15f{bottom:270.000525px;}
.y23d{bottom:280.280460px;}
.y79{bottom:287.895150px;}
.y16{bottom:289.291110px;}
.y254{bottom:289.516650px;}
.ya6{bottom:289.999275px;}
.y25{bottom:290.779590px;}
.y60{bottom:292.188300px;}
.yd4{bottom:292.332525px;}
.y1e3{bottom:292.343100px;}
.y20c{bottom:292.986150px;}
.y130{bottom:293.294250px;}
.y1d5{bottom:293.329425px;}
.y102{bottom:293.370750px;}
.y18c{bottom:293.925900px;}
.y1a7{bottom:293.998800px;}
.y15e{bottom:294.002400px;}
.y23c{bottom:301.284300px;}
.y15{bottom:310.294950px;}
.y24{bottom:311.783430px;}
.y78{bottom:311.897025px;}
.ya5{bottom:314.001150px;}
.y253{bottom:314.761650px;}
.y5f{bottom:316.190175px;}
.yd3{bottom:316.334400px;}
.y1e2{bottom:316.344975px;}
.y20b{bottom:316.988025px;}
.y12f{bottom:317.296125px;}
.y1d4{bottom:317.331300px;}
.y101{bottom:317.372625px;}
.y18b{bottom:317.927775px;}
.y1a6{bottom:318.000675px;}
.y15d{bottom:318.004275px;}
.y23b{bottom:322.288140px;}
.y14{bottom:331.294950px;}
.y23{bottom:332.787270px;}
.y252{bottom:335.673270px;}
.y77{bottom:335.898900px;}
.y5e{bottom:340.192050px;}
.yd2{bottom:340.336275px;}
.y1e1{bottom:340.346850px;}
.y20a{bottom:340.989900px;}
.y12e{bottom:341.298000px;}
.y1d3{bottom:341.333175px;}
.y100{bottom:341.374500px;}
.y18a{bottom:341.929650px;}
.y1a5{bottom:342.002550px;}
.y15c{bottom:342.006150px;}
.y23a{bottom:343.291980px;}
.ya4{bottom:343.528800px;}
.y13{bottom:352.294950px;}
.y22{bottom:353.791110px;}
.y5d{bottom:364.193925px;}
.y239{bottom:364.295820px;}
.yd1{bottom:364.338150px;}
.y1e0{bottom:364.348725px;}
.y209{bottom:364.991775px;}
.y12d{bottom:365.299875px;}
.y1d2{bottom:365.335050px;}
.yff{bottom:365.376375px;}
.y76{bottom:365.426400px;}
.y189{bottom:365.931525px;}
.y1a4{bottom:366.004425px;}
.y15b{bottom:366.008025px;}
.ya3{bottom:370.528800px;}
.y12{bottom:373.294950px;}
.y21{bottom:374.794950px;}
.y238{bottom:385.299660px;}
.y5c{bottom:388.195800px;}
.yd0{bottom:388.340025px;}
.y1df{bottom:388.350600px;}
.y208{bottom:388.993650px;}
.y12c{bottom:389.301750px;}
.y1d1{bottom:389.336925px;}
.yfe{bottom:389.378250px;}
.y188{bottom:389.933400px;}
.y1a3{bottom:390.006300px;}
.y15a{bottom:390.009900px;}
.y75{bottom:392.426400px;}
.y237{bottom:406.303500px;}
.y26a{bottom:410.083650px;}
.y261{bottom:410.099310px;}
.y5b{bottom:412.197675px;}
.ycf{bottom:412.341900px;}
.ya2{bottom:412.352475px;}
.y207{bottom:412.995525px;}
.y12b{bottom:413.303625px;}
.y1d0{bottom:413.338800px;}
.yfd{bottom:413.380125px;}
.y187{bottom:413.935275px;}
.y1a2{bottom:414.008175px;}
.y159{bottom:414.011775px;}
.y236{bottom:427.288140px;}
.y260{bottom:428.096700px;}
.y269{bottom:428.110470px;}
.y74{bottom:434.248800px;}
.y5a{bottom:436.199550px;}
.yce{bottom:436.343775px;}
.ya1{bottom:436.354350px;}
.y206{bottom:436.997400px;}
.y12a{bottom:437.305500px;}
.y1cf{bottom:437.340675px;}
.yfc{bottom:437.382000px;}
.y186{bottom:437.937150px;}
.y1a1{bottom:438.010050px;}
.y158{bottom:438.013650px;}
.y25f{bottom:446.094090px;}
.y268{bottom:446.107860px;}
.y235{bottom:448.291980px;}
.y73{bottom:458.250675px;}
.y59{bottom:460.201425px;}
.ycd{bottom:460.345650px;}
.ya0{bottom:460.356225px;}
.y205{bottom:460.999275px;}
.y129{bottom:461.307375px;}
.y1ce{bottom:461.342550px;}
.yfb{bottom:461.383875px;}
.y185{bottom:461.939025px;}
.y1a0{bottom:462.011925px;}
.y157{bottom:462.015525px;}
.y25e{bottom:464.091480px;}
.y267{bottom:464.105250px;}
.y234{bottom:469.295820px;}
.y72{bottom:482.252550px;}
.y58{bottom:484.203300px;}
.ycc{bottom:484.347525px;}
.y9f{bottom:484.358100px;}
.y204{bottom:485.001150px;}
.y128{bottom:485.309250px;}
.y1cd{bottom:485.344425px;}
.yfa{bottom:485.385750px;}
.y184{bottom:485.940900px;}
.y19f{bottom:486.013800px;}
.y156{bottom:486.017400px;}
.y233{bottom:490.299660px;}
.y25d{bottom:500.086260px;}
.y266{bottom:500.100030px;}
.ye{bottom:504.921150px;}
.y71{bottom:506.254425px;}
.y57{bottom:508.205175px;}
.ycb{bottom:508.349400px;}
.y9e{bottom:508.359975px;}
.y127{bottom:509.311125px;}
.y1cc{bottom:509.346300px;}
.yf9{bottom:509.387625px;}
.y183{bottom:509.942775px;}
.y19e{bottom:510.015675px;}
.y155{bottom:510.019275px;}
.y232{bottom:511.303500px;}
.y203{bottom:514.528800px;}
.y25c{bottom:518.083650px;}
.y265{bottom:518.097420px;}
.y70{bottom:530.256300px;}
.y56{bottom:532.207050px;}
.y231{bottom:532.303500px;}
.yca{bottom:532.351275px;}
.y9d{bottom:532.361850px;}
.y126{bottom:533.313000px;}
.y1cb{bottom:533.348175px;}
.yf8{bottom:533.389500px;}
.y182{bottom:533.944650px;}
.y19d{bottom:534.017550px;}
.y154{bottom:534.021150px;}
.y25a{bottom:536.082810px;}
.y25b{bottom:536.083650px;}
.y264{bottom:536.094810px;}
.yd{bottom:548.421150px;}
.y230{bottom:553.284300px;}
.y259{bottom:554.080200px;}
.y263{bottom:554.092200px;}
.y6f{bottom:554.258175px;}
.y55{bottom:556.208925px;}
.y202{bottom:556.287225px;}
.yc9{bottom:556.353150px;}
.y9c{bottom:556.363725px;}
.y125{bottom:557.314875px;}
.y1ca{bottom:557.350050px;}
.yf7{bottom:557.391375px;}
.y181{bottom:557.946525px;}
.y19c{bottom:558.019425px;}
.y153{bottom:558.023025px;}
.y22f{bottom:574.288140px;}
.y6e{bottom:578.260050px;}
.y54{bottom:580.210800px;}
.y51{bottom:580.214550px;}
.y201{bottom:580.289100px;}
.yc8{bottom:580.355025px;}
.y9b{bottom:580.365600px;}
.y258{bottom:580.587450px;}
.y262{bottom:580.599450px;}
.y124{bottom:581.316750px;}
.y1c9{bottom:581.351925px;}
.yf6{bottom:581.393250px;}
.y180{bottom:581.948400px;}
.y19b{bottom:582.021300px;}
.y152{bottom:582.024900px;}
.yc{bottom:591.921150px;}
.y22e{bottom:595.291980px;}
.y6d{bottom:602.261925px;}
.y53{bottom:604.212675px;}
.y200{bottom:604.290975px;}
.yc7{bottom:604.356900px;}
.y9a{bottom:604.367475px;}
.y123{bottom:605.318625px;}
.y1c8{bottom:605.353800px;}
.yf5{bottom:605.395125px;}
.y17f{bottom:605.950275px;}
.y19a{bottom:606.023175px;}
.y151{bottom:606.026775px;}
.y22d{bottom:616.295820px;}
.y6c{bottom:626.263800px;}
.y52{bottom:628.214550px;}
.y1ff{bottom:628.292850px;}
.yc6{bottom:628.358775px;}
.y99{bottom:628.369350px;}
.y122{bottom:629.320500px;}
.y1c7{bottom:629.355675px;}
.yf4{bottom:629.397000px;}
.y17e{bottom:629.952150px;}
.y199{bottom:630.025050px;}
.y150{bottom:630.028650px;}
.y251{bottom:633.917700px;}
.yb{bottom:635.421150px;}
.y22c{bottom:637.299660px;}
.y6b{bottom:650.265675px;}
.y1fe{bottom:652.294725px;}
.yc5{bottom:652.360650px;}
.y98{bottom:652.371225px;}
.y121{bottom:653.322375px;}
.y1c6{bottom:653.357550px;}
.yf3{bottom:653.398875px;}
.y17d{bottom:653.954025px;}
.y198{bottom:654.026925px;}
.y14f{bottom:654.030525px;}
.y250{bottom:654.921540px;}
.y50{bottom:657.742050px;}
.y22b{bottom:658.303500px;}
.y6a{bottom:674.267550px;}
.y24f{bottom:675.925380px;}
.y1fd{bottom:676.296600px;}
.yc4{bottom:676.362525px;}
.y97{bottom:676.373100px;}
.y120{bottom:677.324250px;}
.y1c5{bottom:677.359425px;}
.yf2{bottom:677.400750px;}
.y17c{bottom:677.955900px;}
.y197{bottom:678.028800px;}
.y14e{bottom:678.032400px;}
.ya{bottom:678.921150px;}
.y229{bottom:679.291980px;}
.y22a{bottom:679.303500px;}
.y24e{bottom:696.929220px;}
.y228{bottom:700.295820px;}
.y1fc{bottom:700.298475px;}
.yc3{bottom:700.364400px;}
.y96{bottom:700.374975px;}
.y11f{bottom:701.326125px;}
.y1c4{bottom:701.361300px;}
.yf1{bottom:701.402625px;}
.y17b{bottom:701.957775px;}
.y14d{bottom:702.034275px;}
.y196{bottom:707.556300px;}
.y24d{bottom:717.933060px;}
.y227{bottom:721.299660px;}
.y9{bottom:722.421150px;}
.y1fb{bottom:724.300350px;}
.yc2{bottom:724.366275px;}
.y95{bottom:724.376850px;}
.y11e{bottom:725.328000px;}
.y1c3{bottom:725.363175px;}
.yf0{bottom:725.404500px;}
.y17a{bottom:725.959650px;}
.y14c{bottom:726.036150px;}
.y24c{bottom:738.936900px;}
.y226{bottom:742.303500px;}
.y1fa{bottom:748.302225px;}
.yc1{bottom:748.368150px;}
.y94{bottom:748.378725px;}
.y11d{bottom:749.329875px;}
.y1c2{bottom:749.365050px;}
.yef{bottom:749.406375px;}
.y179{bottom:749.961525px;}
.y14b{bottom:750.038025px;}
.y24b{bottom:759.940740px;}
.y225{bottom:763.284300px;}
.y1f9{bottom:772.304100px;}
.yc0{bottom:772.370025px;}
.y93{bottom:772.380600px;}
.y11c{bottom:773.331750px;}
.y1c1{bottom:773.366925px;}
.yee{bottom:773.408250px;}
.y178{bottom:773.963400px;}
.y14a{bottom:774.039900px;}
.y24a{bottom:780.944580px;}
.y224{bottom:784.288140px;}
.y8{bottom:788.421150px;}
.y2{bottom:789.373050px;}
.y1f8{bottom:796.305975px;}
.ybf{bottom:796.371900px;}
.y92{bottom:796.382475px;}
.y11b{bottom:797.333625px;}
.y1c0{bottom:797.368800px;}
.yed{bottom:797.410125px;}
.y177{bottom:797.965275px;}
.y149{bottom:798.041775px;}
.y249{bottom:801.948420px;}
.y223{bottom:805.291980px;}
.y1f7{bottom:820.307850px;}
.ybe{bottom:820.373775px;}
.y91{bottom:820.384350px;}
.y11a{bottom:821.335500px;}
.y1bf{bottom:821.370675px;}
.yec{bottom:821.412000px;}
.y176{bottom:821.967150px;}
.y4f{bottom:821.986200px;}
.y148{bottom:822.043650px;}
.y248{bottom:822.952260px;}
.y222{bottom:826.295820px;}
.y7{bottom:838.821300px;}
.y4e{bottom:842.982360px;}
.y3{bottom:843.253050px;}
.y247{bottom:843.956100px;}
.y1f6{bottom:844.309725px;}
.ybd{bottom:844.375650px;}
.y90{bottom:844.386225px;}
.y119{bottom:845.337375px;}
.y1be{bottom:845.372550px;}
.yeb{bottom:845.413875px;}
.y175{bottom:845.969025px;}
.y147{bottom:846.045525px;}
.y221{bottom:847.299660px;}
.y4d{bottom:863.986200px;}
.y3e{bottom:864.959940px;}
.y220{bottom:868.303500px;}
.y1f5{bottom:868.311600px;}
.ybc{bottom:868.377525px;}
.y8f{bottom:868.388100px;}
.y118{bottom:869.339250px;}
.y1bd{bottom:869.374425px;}
.yea{bottom:869.415750px;}
.y174{bottom:869.970900px;}
.y146{bottom:870.047400px;}
.y4c{bottom:884.982360px;}
.y3d{bottom:885.963780px;}
.y6{bottom:889.221300px;}
.y21f{bottom:889.299660px;}
.y1f4{bottom:892.313475px;}
.ybb{bottom:892.379400px;}
.y8e{bottom:892.389975px;}
.y117{bottom:893.341125px;}
.y1bc{bottom:893.376300px;}
.ye9{bottom:893.417625px;}
.y173{bottom:893.972775px;}
.y145{bottom:894.049275px;}
.y4b{bottom:905.986200px;}
.y3c{bottom:906.967620px;}
.y21e{bottom:910.303500px;}
.y1f3{bottom:916.315350px;}
.yba{bottom:916.381275px;}
.y8d{bottom:916.391850px;}
.y116{bottom:917.343000px;}
.y1bb{bottom:917.378175px;}
.ye8{bottom:917.419500px;}
.y172{bottom:917.974650px;}
.y144{bottom:918.051150px;}
.y4a{bottom:926.974680px;}
.y3b{bottom:927.971460px;}
.y21c{bottom:931.299660px;}
.y21d{bottom:931.303500px;}
.y5{bottom:939.621300px;}
.y1f2{bottom:940.317225px;}
.yb9{bottom:940.383150px;}
.y8c{bottom:940.393725px;}
.y115{bottom:941.344875px;}
.y1ba{bottom:941.380050px;}
.ye7{bottom:941.421375px;}
.y171{bottom:941.976525px;}
.y143{bottom:942.053025px;}
.y49{bottom:947.978520px;}
.y3a{bottom:948.975300px;}
.y21b{bottom:952.303500px;}
.y1f1{bottom:964.319100px;}
.yb8{bottom:964.385025px;}
.y8b{bottom:964.395600px;}
.y114{bottom:965.346750px;}
.y1b9{bottom:965.381925px;}
.ye6{bottom:965.423250px;}
.y170{bottom:965.978400px;}
.y142{bottom:966.054900px;}
.y48{bottom:968.982360px;}
.y39{bottom:969.979140px;}
.y21a{bottom:973.303500px;}
.y1f0{bottom:988.320975px;}
.yb7{bottom:988.386900px;}
.y8a{bottom:988.397475px;}
.y113{bottom:989.348625px;}
.y1b8{bottom:989.383800px;}
.ye5{bottom:989.425125px;}
.y16f{bottom:989.980275px;}
.y47{bottom:989.986200px;}
.y4{bottom:990.021300px;}
.y141{bottom:990.056775px;}
.y38{bottom:990.982980px;}
.y218{bottom:994.288140px;}
.y219{bottom:994.303500px;}
.y46{bottom:1010.967000px;}
.y37{bottom:1011.986820px;}
.y1ef{bottom:1012.322850px;}
.yb6{bottom:1012.388775px;}
.y89{bottom:1012.399350px;}
.y112{bottom:1013.350500px;}
.y1b7{bottom:1013.385675px;}
.ye4{bottom:1013.427000px;}
.y16e{bottom:1013.982150px;}
.y140{bottom:1014.058650px;}
.y217{bottom:1015.291980px;}
.y45{bottom:1031.970840px;}
.y36{bottom:1032.990660px;}
.y216{bottom:1036.295820px;}
.y1ee{bottom:1036.324725px;}
.yb5{bottom:1036.390650px;}
.y88{bottom:1036.401225px;}
.y111{bottom:1037.352375px;}
.y1b6{bottom:1037.387550px;}
.ye3{bottom:1037.428875px;}
.y16d{bottom:1037.984025px;}
.y13f{bottom:1038.060525px;}
.y44{bottom:1052.974680px;}
.y35{bottom:1053.994500px;}
.y215{bottom:1057.299660px;}
.y1ed{bottom:1060.326600px;}
.yb4{bottom:1060.392525px;}
.y87{bottom:1060.403100px;}
.y110{bottom:1061.354250px;}
.y1b5{bottom:1061.389425px;}
.ye2{bottom:1061.430750px;}
.y16c{bottom:1061.985900px;}
.y13e{bottom:1062.062400px;}
.y43{bottom:1073.978520px;}
.y34{bottom:1074.998340px;}
.y214{bottom:1078.303500px;}
.y1ec{bottom:1084.328475px;}
.yb3{bottom:1084.394400px;}
.y86{bottom:1084.404975px;}
.y10f{bottom:1085.356125px;}
.y1b4{bottom:1085.391300px;}
.ye1{bottom:1085.432625px;}
.y16b{bottom:1085.987775px;}
.y13d{bottom:1086.064275px;}
.y11{bottom:1093.731810px;}
.y42{bottom:1094.982360px;}
.y33{bottom:1096.002180px;}
.y213{bottom:1099.303500px;}
.y1eb{bottom:1108.330350px;}
.yb2{bottom:1108.396275px;}
.y85{bottom:1108.406850px;}
.y10e{bottom:1109.358000px;}
.y1b3{bottom:1109.393175px;}
.ye0{bottom:1109.434500px;}
.y16a{bottom:1109.989650px;}
.y13c{bottom:1110.066150px;}
.y10{bottom:1111.729200px;}
.y41{bottom:1115.986200px;}
.y32{bottom:1117.006020px;}
.y212{bottom:1120.303500px;}
.y1ea{bottom:1132.332225px;}
.yb1{bottom:1132.398150px;}
.y84{bottom:1132.408725px;}
.y10d{bottom:1133.359875px;}
.y1b2{bottom:1133.395050px;}
.ydf{bottom:1133.436375px;}
.y169{bottom:1133.991525px;}
.y13b{bottom:1134.068025px;}
.y40{bottom:1136.986200px;}
.y31{bottom:1138.009860px;}
.y211{bottom:1147.303500px;}
.y1e9{bottom:1156.334100px;}
.yb0{bottom:1156.400025px;}
.y83{bottom:1156.410600px;}
.y10c{bottom:1157.361750px;}
.y1b1{bottom:1157.396925px;}
.yde{bottom:1157.438250px;}
.y3f{bottom:1157.936580px;}
.yf{bottom:1157.986050px;}
.y168{bottom:1157.993400px;}
.y13a{bottom:1158.069900px;}
.y30{bottom:1159.013700px;}
.y1{bottom:1205.692950px;}
.h12{height:50.490000px;}
.h3{height:51.016320px;}
.h8{height:54.639360px;}
.h7{height:56.512080px;}
.h15{height:57.393360px;}
.h6{height:57.820254px;}
.h9{height:57.835614px;}
.hb{height:57.850974px;}
.ha{height:57.866334px;}
.h13{height:57.881694px;}
.hd{height:57.897054px;}
.hc{height:58.018734px;}
.h14{height:58.173774px;}
.h10{height:65.704834px;}
.h11{height:79.560000px;}
.h2{height:79.713000px;}
.he{height:91.800000px;}
.h5{height:150.048000px;}
.h4{height:175.056000px;}
.hf{height:292.815684px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:37.186350px;}
.x2{left:59.570550px;}
.x3{left:83.573190px;}
.x17{left:110.281800px;}
.xf{left:114.803100px;}
.x13{left:115.990200px;}
.x1f{left:127.300050px;}
.x8{left:128.853300px;}
.x15{left:137.309100px;}
.x1d{left:148.335300px;}
.x18{left:150.686850px;}
.x5{left:155.932650px;}
.x1b{left:157.725300px;}
.x11{left:176.937900px;}
.x7{left:178.013730px;}
.x6{left:185.061750px;}
.x4{left:199.117050px;}
.x1c{left:210.476325px;}
.xc{left:213.820200px;}
.xb{left:220.316850px;}
.xe{left:231.329250px;}
.x29{left:236.189400px;}
.x16{left:239.297100px;}
.x27{left:246.568350px;}
.x2c{left:249.081900px;}
.x2d{left:269.304900px;}
.x9{left:273.598800px;}
.xd{left:284.369250px;}
.xa{left:291.441750px;}
.x26{left:306.170850px;}
.x2b{left:314.003400px;}
.x24{left:327.405600px;}
.x25{left:334.682850px;}
.x21{left:344.545800px;}
.x2a{left:348.671400px;}
.x10{left:384.932400px;}
.x23{left:424.004550px;}
.x28{left:459.218550px;}
.x12{left:483.968400px;}
.x1e{left:496.459350px;}
.x14{left:506.474550px;}
.x19{left:545.045400px;}
.x1a{left:579.638025px;}
.x20{left:593.350200px;}
.x22{left:829.133850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls95{letter-spacing:-14.960000pt;}
.ls92{letter-spacing:-6.462720pt;}
.ls3f{letter-spacing:-3.672000pt;}
.ls85{letter-spacing:-3.264000pt;}
.ls6b{letter-spacing:-2.856000pt;}
.ls98{letter-spacing:-2.632960pt;}
.ls82{letter-spacing:-2.584000pt;}
.ls6e{letter-spacing:-2.516000pt;}
.ls4e{letter-spacing:-2.448000pt;}
.ls63{letter-spacing:-2.380000pt;}
.ls9f{letter-spacing:-2.333760pt;}
.ls8a{letter-spacing:-2.273920pt;}
.ls80{letter-spacing:-2.244000pt;}
.ls76{letter-spacing:-2.176000pt;}
.lsa0{letter-spacing:-2.154240pt;}
.ls96{letter-spacing:-2.094400pt;}
.ls90{letter-spacing:-2.034560pt;}
.ls8f{letter-spacing:-1.855040pt;}
.ls97{letter-spacing:-1.795200pt;}
.ls7b{letter-spacing:-1.768000pt;}
.ls7a{letter-spacing:-1.700000pt;}
.ls79{letter-spacing:-1.564000pt;}
.ls91{letter-spacing:-1.555840pt;}
.ls46{letter-spacing:-1.496000pt;}
.ls94{letter-spacing:-1.436160pt;}
.ls87{letter-spacing:-1.360000pt;}
.ls3e{letter-spacing:-1.292000pt;}
.ls9e{letter-spacing:-1.256640pt;}
.ls41{letter-spacing:-1.224000pt;}
.ls56{letter-spacing:-1.156000pt;}
.ls8e{letter-spacing:-1.136960pt;}
.ls44{letter-spacing:-1.088000pt;}
.ls49{letter-spacing:-1.020000pt;}
.ls45{letter-spacing:-0.952000pt;}
.ls3c{letter-spacing:-0.884000pt;}
.ls5e{letter-spacing:-0.816000pt;}
.ls34{letter-spacing:-0.777920pt;}
.ls47{letter-spacing:-0.748000pt;}
.ls8b{letter-spacing:-0.718080pt;}
.ls42{letter-spacing:-0.680000pt;}
.ls15{letter-spacing:-0.658240pt;}
.ls40{letter-spacing:-0.612000pt;}
.ls1f{letter-spacing:-0.598400pt;}
.ls43{letter-spacing:-0.544000pt;}
.ls8d{letter-spacing:-0.538560pt;}
.ls14{letter-spacing:-0.478720pt;}
.ls4{letter-spacing:-0.476000pt;}
.ls35{letter-spacing:-0.418880pt;}
.ls3{letter-spacing:-0.408000pt;}
.lsa6{letter-spacing:-0.391680pt;}
.ls36{letter-spacing:-0.359040pt;}
.ls62{letter-spacing:-0.340000pt;}
.ls33{letter-spacing:-0.299200pt;}
.ls4f{letter-spacing:-0.272000pt;}
.ls12{letter-spacing:-0.239360pt;}
.ls58{letter-spacing:-0.204000pt;}
.ls11{letter-spacing:-0.179520pt;}
.lsa3{letter-spacing:-0.146880pt;}
.ls60{letter-spacing:-0.136000pt;}
.ls13{letter-spacing:-0.119680pt;}
.ls3d{letter-spacing:-0.068000pt;}
.ls23{letter-spacing:-0.059840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.059840pt;}
.ls39{letter-spacing:0.068000pt;}
.ls2a{letter-spacing:0.119680pt;}
.ls6d{letter-spacing:0.136000pt;}
.ls9a{letter-spacing:0.179520pt;}
.lsa8{letter-spacing:0.195840pt;}
.ls5{letter-spacing:0.204000pt;}
.ls17{letter-spacing:0.239360pt;}
.ls68{letter-spacing:0.272000pt;}
.ls1e{letter-spacing:0.299200pt;}
.ls6c{letter-spacing:0.340000pt;}
.ls16{letter-spacing:0.359040pt;}
.ls1{letter-spacing:0.408000pt;}
.ls1a{letter-spacing:0.418880pt;}
.lsa4{letter-spacing:0.440640pt;}
.ls29{letter-spacing:0.476000pt;}
.ls1d{letter-spacing:0.478720pt;}
.ls18{letter-spacing:0.538560pt;}
.ls6a{letter-spacing:0.544000pt;}
.lse{letter-spacing:0.598400pt;}
.ls4c{letter-spacing:0.612000pt;}
.lsf{letter-spacing:0.636480pt;}
.ls3b{letter-spacing:0.680000pt;}
.ls24{letter-spacing:0.718080pt;}
.ls5a{letter-spacing:0.748000pt;}
.ls1c{letter-spacing:0.777920pt;}
.ls4a{letter-spacing:0.816000pt;}
.ls9b{letter-spacing:0.837760pt;}
.ls4d{letter-spacing:0.884000pt;}
.lsa2{letter-spacing:0.930240pt;}
.ls53{letter-spacing:0.952000pt;}
.ls30{letter-spacing:0.957440pt;}
.lsa9{letter-spacing:0.979200pt;}
.ls93{letter-spacing:1.017280pt;}
.ls64{letter-spacing:1.020000pt;}
.ls20{letter-spacing:1.077120pt;}
.ls48{letter-spacing:1.088000pt;}
.ls67{letter-spacing:1.156000pt;}
.lsa7{letter-spacing:1.175040pt;}
.ls89{letter-spacing:1.178667pt;}
.ls2b{letter-spacing:1.196800pt;}
.ls5c{letter-spacing:1.224000pt;}
.ls27{letter-spacing:1.256640pt;}
.ls5f{letter-spacing:1.280000pt;}
.ls4b{letter-spacing:1.292000pt;}
.ls9d{letter-spacing:1.316480pt;}
.ls10{letter-spacing:1.321920pt;}
.ls5d{letter-spacing:1.360000pt;}
.ls2e{letter-spacing:1.376320pt;}
.lsa5{letter-spacing:1.419840pt;}
.ls59{letter-spacing:1.428000pt;}
.ls21{letter-spacing:1.436160pt;}
.ls38{letter-spacing:1.496000pt;}
.ls22{letter-spacing:1.555840pt;}
.ls52{letter-spacing:1.564000pt;}
.ls74{letter-spacing:1.632000pt;}
.lsd{letter-spacing:1.664000pt;}
.ls65{letter-spacing:1.700000pt;}
.ls77{letter-spacing:1.768000pt;}
.ls55{letter-spacing:1.836000pt;}
.ls8c{letter-spacing:1.855040pt;}
.ls7{letter-spacing:1.871360pt;}
.ls7c{letter-spacing:1.904000pt;}
.ls1b{letter-spacing:1.914880pt;}
.ls37{letter-spacing:1.920000pt;}
.ls54{letter-spacing:1.972000pt;}
.ls26{letter-spacing:2.034560pt;}
.ls71{letter-spacing:2.040000pt;}
.ls99{letter-spacing:2.080000pt;}
.ls75{letter-spacing:2.108000pt;}
.ls51{letter-spacing:2.160000pt;}
.lsc{letter-spacing:2.176000pt;}
.lsa{letter-spacing:2.240000pt;}
.ls5b{letter-spacing:2.244000pt;}
.ls6{letter-spacing:2.263040pt;}
.ls72{letter-spacing:2.312000pt;}
.ls2d{letter-spacing:2.333760pt;}
.ls73{letter-spacing:2.380000pt;}
.ls9{letter-spacing:2.389333pt;}
.ls50{letter-spacing:2.400000pt;}
.ls2f{letter-spacing:2.453440pt;}
.ls3a{letter-spacing:2.516000pt;}
.ls6f{letter-spacing:2.584000pt;}
.ls2c{letter-spacing:2.692800pt;}
.ls86{letter-spacing:2.788000pt;}
.ls7e{letter-spacing:2.856000pt;}
.ls7d{letter-spacing:2.924000pt;}
.ls66{letter-spacing:3.060000pt;}
.ls61{letter-spacing:3.128000pt;}
.lsb{letter-spacing:3.200000pt;}
.ls81{letter-spacing:3.332000pt;}
.ls32{letter-spacing:3.351040pt;}
.ls8{letter-spacing:3.733333pt;}
.ls31{letter-spacing:4.128960pt;}
.ls25{letter-spacing:4.308480pt;}
.ls70{letter-spacing:4.352000pt;}
.lsa1{letter-spacing:4.906880pt;}
.ls84{letter-spacing:36.244000pt;}
.ls57{letter-spacing:47.804000pt;}
.ls88{letter-spacing:48.280000pt;}
.ls83{letter-spacing:48.620000pt;}
.ls28{letter-spacing:48.824000pt;}
.ls7f{letter-spacing:48.892000pt;}
.ls0{letter-spacing:48.960000pt;}
.ls78{letter-spacing:49.028000pt;}
.ls69{letter-spacing:51.476000pt;}
.ls9c{letter-spacing:51.952000pt;}
.ws29{word-spacing:-21.600000pt;}
.ws28{word-spacing:-21.360000pt;}
.ws8e{word-spacing:-20.720000pt;}
.ws91{word-spacing:-18.928000pt;}
.ws8c{word-spacing:-17.816000pt;}
.ws8d{word-spacing:-16.660000pt;}
.ws85{word-spacing:-16.184000pt;}
.ws6c{word-spacing:-16.116000pt;}
.ws27{word-spacing:-16.048000pt;}
.ws0{word-spacing:-15.980000pt;}
.ws81{word-spacing:-15.912000pt;}
.ws2{word-spacing:-15.776000pt;}
.ws8b{word-spacing:-15.708000pt;}
.ws89{word-spacing:-15.640000pt;}
.ws3{word-spacing:-15.438720pt;}
.ws5a{word-spacing:-15.300000pt;}
.ws8a{word-spacing:-15.232000pt;}
.ws1{word-spacing:-15.164000pt;}
.ws90{word-spacing:-14.960000pt;}
.ws8f{word-spacing:-14.900160pt;}
.ws86{word-spacing:-13.736000pt;}
.wsa4{word-spacing:-10.428480pt;}
.wsa8{word-spacing:-4.906880pt;}
.ws73{word-spacing:-4.352000pt;}
.ws24{word-spacing:-4.308480pt;}
.ws31{word-spacing:-4.128960pt;}
.ws8{word-spacing:-3.733333pt;}
.ws32{word-spacing:-3.351040pt;}
.ws83{word-spacing:-3.332000pt;}
.wsb{word-spacing:-3.200000pt;}
.ws64{word-spacing:-3.128000pt;}
.ws69{word-spacing:-3.060000pt;}
.ws7f{word-spacing:-2.924000pt;}
.ws80{word-spacing:-2.856000pt;}
.ws87{word-spacing:-2.788000pt;}
.ws2c{word-spacing:-2.692800pt;}
.ws72{word-spacing:-2.584000pt;}
.ws3a{word-spacing:-2.516000pt;}
.ws2f{word-spacing:-2.453440pt;}
.ws52{word-spacing:-2.400000pt;}
.ws9{word-spacing:-2.389333pt;}
.ws76{word-spacing:-2.380000pt;}
.ws2d{word-spacing:-2.333760pt;}
.ws75{word-spacing:-2.312000pt;}
.ws6{word-spacing:-2.263040pt;}
.ws5e{word-spacing:-2.244000pt;}
.wsa{word-spacing:-2.240000pt;}
.wsc{word-spacing:-2.176000pt;}
.ws78{word-spacing:-2.108000pt;}
.ws74{word-spacing:-2.040000pt;}
.ws25{word-spacing:-2.034560pt;}
.ws56{word-spacing:-1.972000pt;}
.ws1b{word-spacing:-1.914880pt;}
.ws7e{word-spacing:-1.904000pt;}
.ws7{word-spacing:-1.871360pt;}
.ws95{word-spacing:-1.855040pt;}
.ws57{word-spacing:-1.836000pt;}
.ws7a{word-spacing:-1.768000pt;}
.ws68{word-spacing:-1.700000pt;}
.wsd{word-spacing:-1.664000pt;}
.ws77{word-spacing:-1.632000pt;}
.ws53{word-spacing:-1.564000pt;}
.ws21{word-spacing:-1.555840pt;}
.ws38{word-spacing:-1.496000pt;}
.ws20{word-spacing:-1.436160pt;}
.ws5c{word-spacing:-1.428000pt;}
.wsab{word-spacing:-1.419840pt;}
.ws2e{word-spacing:-1.376320pt;}
.ws60{word-spacing:-1.360000pt;}
.ws10{word-spacing:-1.321920pt;}
.ws4c{word-spacing:-1.292000pt;}
.ws62{word-spacing:-1.280000pt;}
.ws26{word-spacing:-1.256640pt;}
.ws5f{word-spacing:-1.224000pt;}
.ws2b{word-spacing:-1.196800pt;}
.ws92{word-spacing:-1.178667pt;}
.wsad{word-spacing:-1.175040pt;}
.ws6a{word-spacing:-1.156000pt;}
.ws49{word-spacing:-1.088000pt;}
.ws1f{word-spacing:-1.077120pt;}
.ws67{word-spacing:-1.020000pt;}
.ws9c{word-spacing:-1.017280pt;}
.wsaf{word-spacing:-0.979200pt;}
.ws30{word-spacing:-0.957440pt;}
.ws55{word-spacing:-0.952000pt;}
.wsa9{word-spacing:-0.930240pt;}
.ws4f{word-spacing:-0.884000pt;}
.wsa3{word-spacing:-0.837760pt;}
.ws4b{word-spacing:-0.816000pt;}
.ws1c{word-spacing:-0.777920pt;}
.ws5d{word-spacing:-0.748000pt;}
.ws23{word-spacing:-0.718080pt;}
.ws3b{word-spacing:-0.680000pt;}
.wsf{word-spacing:-0.636480pt;}
.ws4d{word-spacing:-0.612000pt;}
.wse{word-spacing:-0.598400pt;}
.ws71{word-spacing:-0.544000pt;}
.ws18{word-spacing:-0.538560pt;}
.ws36{word-spacing:-0.478720pt;}
.ws54{word-spacing:-0.476000pt;}
.ws1a{word-spacing:-0.418880pt;}
.ws58{word-spacing:-0.408000pt;}
.ws16{word-spacing:-0.359040pt;}
.ws6e{word-spacing:-0.340000pt;}
.ws1d{word-spacing:-0.299200pt;}
.ws6b{word-spacing:-0.272000pt;}
.ws17{word-spacing:-0.239360pt;}
.ws4e{word-spacing:-0.204000pt;}
.wsae{word-spacing:-0.195840pt;}
.wsa2{word-spacing:-0.179520pt;}
.ws6f{word-spacing:-0.136000pt;}
.ws2a{word-spacing:-0.119680pt;}
.ws39{word-spacing:-0.068000pt;}
.ws19{word-spacing:-0.059840pt;}
.ws4{word-spacing:0.000000pt;}
.ws22{word-spacing:0.059840pt;}
.ws3e{word-spacing:0.068000pt;}
.ws13{word-spacing:0.119680pt;}
.ws63{word-spacing:0.136000pt;}
.wsaa{word-spacing:0.146880pt;}
.ws11{word-spacing:0.179520pt;}
.ws5b{word-spacing:0.204000pt;}
.ws12{word-spacing:0.239360pt;}
.ws51{word-spacing:0.272000pt;}
.ws33{word-spacing:0.299200pt;}
.ws65{word-spacing:0.340000pt;}
.ws37{word-spacing:0.359040pt;}
.wsac{word-spacing:0.391680pt;}
.ws3c{word-spacing:0.408000pt;}
.ws35{word-spacing:0.418880pt;}
.ws5{word-spacing:0.476000pt;}
.ws14{word-spacing:0.478720pt;}
.ws96{word-spacing:0.538560pt;}
.ws44{word-spacing:0.544000pt;}
.ws1e{word-spacing:0.598400pt;}
.ws41{word-spacing:0.612000pt;}
.ws15{word-spacing:0.658240pt;}
.ws43{word-spacing:0.680000pt;}
.ws94{word-spacing:0.718080pt;}
.ws48{word-spacing:0.748000pt;}
.ws34{word-spacing:0.777920pt;}
.ws61{word-spacing:0.816000pt;}
.ws3d{word-spacing:0.884000pt;}
.ws46{word-spacing:0.952000pt;}
.ws4a{word-spacing:1.020000pt;}
.ws45{word-spacing:1.088000pt;}
.ws97{word-spacing:1.136960pt;}
.ws59{word-spacing:1.156000pt;}
.ws42{word-spacing:1.224000pt;}
.wsa5{word-spacing:1.256640pt;}
.ws3f{word-spacing:1.292000pt;}
.ws88{word-spacing:1.360000pt;}
.ws9d{word-spacing:1.436160pt;}
.ws47{word-spacing:1.496000pt;}
.ws9a{word-spacing:1.555840pt;}
.ws7b{word-spacing:1.564000pt;}
.ws7c{word-spacing:1.700000pt;}
.ws7d{word-spacing:1.768000pt;}
.wsa0{word-spacing:1.795200pt;}
.ws98{word-spacing:1.855040pt;}
.ws99{word-spacing:2.034560pt;}
.ws9f{word-spacing:2.094400pt;}
.wsa7{word-spacing:2.154240pt;}
.ws79{word-spacing:2.176000pt;}
.ws82{word-spacing:2.244000pt;}
.ws93{word-spacing:2.273920pt;}
.wsa6{word-spacing:2.333760pt;}
.ws66{word-spacing:2.380000pt;}
.ws50{word-spacing:2.448000pt;}
.ws70{word-spacing:2.516000pt;}
.ws84{word-spacing:2.584000pt;}
.wsa1{word-spacing:2.632960pt;}
.ws6d{word-spacing:2.856000pt;}
.ws40{word-spacing:3.672000pt;}
.ws9b{word-spacing:6.462720pt;}
.ws9e{word-spacing:14.960000pt;}
._14{margin-left:-62.288000pt;}
._12{margin-left:-17.054400pt;}
._19{margin-left:-15.599947pt;}
._18{margin-left:-8.037056pt;}
._3{margin-left:-7.072000pt;}
._f{margin-left:-5.844533pt;}
._9{margin-left:-4.825867pt;}
._c{margin-left:-3.880000pt;}
._2{margin-left:-2.828800pt;}
._1{margin-left:-1.251200pt;}
._5{width:1.224000pt;}
._6{width:2.237200pt;}
._8{width:3.816800pt;}
._10{width:5.269600pt;}
._b{width:6.179200pt;}
._7{width:7.153067pt;}
._1a{width:8.115120pt;}
._d{width:9.314419pt;}
._e{width:10.270847pt;}
._a{width:11.573728pt;}
._1b{width:13.182411pt;}
._15{width:16.156800pt;}
._17{width:17.293760pt;}
._1e{width:19.070667pt;}
._1d{width:20.267467pt;}
._1c{width:22.045056pt;}
._16{width:23.576960pt;}
._0{width:135.592000pt;}
._13{width:137.972000pt;}
._4{width:1738.420000pt;}
._11{width:2008.966080pt;}
.fs1{font-size:43.520000pt;}
.fs5{font-size:48.960000pt;}
.fs4{font-size:59.840000pt;}
.fs0{font-size:68.000000pt;}
.fs8{font-size:69.333333pt;}
.fs6{font-size:80.000000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:149.333333pt;}
.fs7{font-size:255.177067pt;}
.y0{bottom:0.000000pt;}
.y246{bottom:54.468107pt;}
.y82{bottom:63.891800pt;}
.yaf{bottom:65.762133pt;}
.y69{bottom:67.707933pt;}
.ydd{bottom:67.836133pt;}
.y139{bottom:68.691000pt;}
.y1de{bottom:68.722267pt;}
.y10b{bottom:68.759000pt;}
.y195{bottom:69.252467pt;}
.y1b0{bottom:69.317267pt;}
.y167{bottom:69.320467pt;}
.y20{bottom:70.477573pt;}
.y2f{bottom:71.769947pt;}
.y245{bottom:73.138187pt;}
.y81{bottom:85.226800pt;}
.yae{bottom:87.097133pt;}
.y68{bottom:89.042933pt;}
.y1f{bottom:89.147653pt;}
.ydc{bottom:89.171133pt;}
.y138{bottom:90.026000pt;}
.y1dd{bottom:90.057267pt;}
.y10a{bottom:90.094000pt;}
.y2e{bottom:90.440027pt;}
.y194{bottom:90.587467pt;}
.y1af{bottom:90.652267pt;}
.y166{bottom:90.655467pt;}
.y244{bottom:91.808267pt;}
.y80{bottom:106.561800pt;}
.y1e{bottom:107.817733pt;}
.yad{bottom:108.432133pt;}
.y2d{bottom:109.110107pt;}
.y67{bottom:110.377933pt;}
.y243{bottom:110.478347pt;}
.ydb{bottom:110.506133pt;}
.y137{bottom:111.361000pt;}
.y1dc{bottom:111.392267pt;}
.y109{bottom:111.429000pt;}
.y193{bottom:111.922467pt;}
.y1ae{bottom:111.987267pt;}
.y165{bottom:111.990467pt;}
.y1d{bottom:126.484400pt;}
.y2c{bottom:127.780187pt;}
.y7f{bottom:127.896800pt;}
.y242{bottom:129.148427pt;}
.yac{bottom:129.767133pt;}
.y66{bottom:131.712933pt;}
.yda{bottom:131.841133pt;}
.y136{bottom:132.696000pt;}
.y1db{bottom:132.727267pt;}
.y108{bottom:132.764000pt;}
.y192{bottom:133.257467pt;}
.y1ad{bottom:133.322267pt;}
.y164{bottom:133.325467pt;}
.y1c{bottom:145.151067pt;}
.y2b{bottom:146.450267pt;}
.y241{bottom:147.818507pt;}
.y7e{bottom:149.231800pt;}
.yab{bottom:151.102133pt;}
.y65{bottom:153.047933pt;}
.yd9{bottom:153.176133pt;}
.y1e8{bottom:153.185533pt;}
.y135{bottom:154.031000pt;}
.y1da{bottom:154.062267pt;}
.y107{bottom:154.099000pt;}
.y191{bottom:154.592467pt;}
.y1ac{bottom:154.657267pt;}
.y163{bottom:154.660467pt;}
.y1b{bottom:163.807493pt;}
.y2a{bottom:165.120347pt;}
.y240{bottom:166.488587pt;}
.y7d{bottom:170.566800pt;}
.yaa{bottom:172.437133pt;}
.y64{bottom:174.382933pt;}
.yd8{bottom:174.511133pt;}
.y1e7{bottom:174.520533pt;}
.y210{bottom:175.092133pt;}
.y134{bottom:175.366000pt;}
.y1d9{bottom:175.397267pt;}
.y106{bottom:175.434000pt;}
.y190{bottom:175.927467pt;}
.y1ab{bottom:175.992267pt;}
.y162{bottom:175.995467pt;}
.y1a{bottom:182.477573pt;}
.y29{bottom:183.790427pt;}
.y23f{bottom:185.158667pt;}
.y7c{bottom:191.901800pt;}
.ya9{bottom:193.772133pt;}
.y257{bottom:193.798053pt;}
.y63{bottom:195.717933pt;}
.yd7{bottom:195.846133pt;}
.y1e6{bottom:195.855533pt;}
.y20f{bottom:196.427133pt;}
.y133{bottom:196.701000pt;}
.y1d8{bottom:196.732267pt;}
.y105{bottom:196.769000pt;}
.y18f{bottom:197.262467pt;}
.y1aa{bottom:197.327267pt;}
.y161{bottom:197.330467pt;}
.y19{bottom:201.147653pt;}
.y28{bottom:202.460507pt;}
.y23e{bottom:209.158667pt;}
.y7b{bottom:213.236800pt;}
.ya8{bottom:215.107133pt;}
.y256{bottom:216.238053pt;}
.y62{bottom:217.052933pt;}
.yd6{bottom:217.181133pt;}
.y1e5{bottom:217.190533pt;}
.y20e{bottom:217.762133pt;}
.y132{bottom:218.036000pt;}
.y1d7{bottom:218.067267pt;}
.y104{bottom:218.104000pt;}
.y18e{bottom:218.597467pt;}
.y1a9{bottom:218.662267pt;}
.y160{bottom:218.665467pt;}
.y18{bottom:219.817733pt;}
.y27{bottom:221.130587pt;}
.y7a{bottom:234.571800pt;}
.y255{bottom:234.908133pt;}
.ya7{bottom:236.442133pt;}
.y61{bottom:238.387933pt;}
.y17{bottom:238.484400pt;}
.yd5{bottom:238.516133pt;}
.y1e4{bottom:238.525533pt;}
.y20d{bottom:239.097133pt;}
.y131{bottom:239.371000pt;}
.y1d6{bottom:239.402267pt;}
.y103{bottom:239.439000pt;}
.y26{bottom:239.800667pt;}
.y18d{bottom:239.932467pt;}
.y1a8{bottom:239.997267pt;}
.y15f{bottom:240.000467pt;}
.y23d{bottom:249.138187pt;}
.y79{bottom:255.906800pt;}
.y16{bottom:257.147653pt;}
.y254{bottom:257.348133pt;}
.ya6{bottom:257.777133pt;}
.y25{bottom:258.470747pt;}
.y60{bottom:259.722933pt;}
.yd4{bottom:259.851133pt;}
.y1e3{bottom:259.860533pt;}
.y20c{bottom:260.432133pt;}
.y130{bottom:260.706000pt;}
.y1d5{bottom:260.737267pt;}
.y102{bottom:260.774000pt;}
.y18c{bottom:261.267467pt;}
.y1a7{bottom:261.332267pt;}
.y15e{bottom:261.335467pt;}
.y23c{bottom:267.808267pt;}
.y15{bottom:275.817733pt;}
.y24{bottom:277.140827pt;}
.y78{bottom:277.241800pt;}
.ya5{bottom:279.112133pt;}
.y253{bottom:279.788133pt;}
.y5f{bottom:281.057933pt;}
.yd3{bottom:281.186133pt;}
.y1e2{bottom:281.195533pt;}
.y20b{bottom:281.767133pt;}
.y12f{bottom:282.041000pt;}
.y1d4{bottom:282.072267pt;}
.y101{bottom:282.109000pt;}
.y18b{bottom:282.602467pt;}
.y1a6{bottom:282.667267pt;}
.y15d{bottom:282.670467pt;}
.y23b{bottom:286.478347pt;}
.y14{bottom:294.484400pt;}
.y23{bottom:295.810907pt;}
.y252{bottom:298.376240pt;}
.y77{bottom:298.576800pt;}
.y5e{bottom:302.392933pt;}
.yd2{bottom:302.521133pt;}
.y1e1{bottom:302.530533pt;}
.y20a{bottom:303.102133pt;}
.y12e{bottom:303.376000pt;}
.y1d3{bottom:303.407267pt;}
.y100{bottom:303.444000pt;}
.y18a{bottom:303.937467pt;}
.y1a5{bottom:304.002267pt;}
.y15c{bottom:304.005467pt;}
.y23a{bottom:305.148427pt;}
.ya4{bottom:305.358933pt;}
.y13{bottom:313.151067pt;}
.y22{bottom:314.480987pt;}
.y5d{bottom:323.727933pt;}
.y239{bottom:323.818507pt;}
.yd1{bottom:323.856133pt;}
.y1e0{bottom:323.865533pt;}
.y209{bottom:324.437133pt;}
.y12d{bottom:324.711000pt;}
.y1d2{bottom:324.742267pt;}
.yff{bottom:324.779000pt;}
.y76{bottom:324.823467pt;}
.y189{bottom:325.272467pt;}
.y1a4{bottom:325.337267pt;}
.y15b{bottom:325.340467pt;}
.ya3{bottom:329.358933pt;}
.y12{bottom:331.817733pt;}
.y21{bottom:333.151067pt;}
.y238{bottom:342.488587pt;}
.y5c{bottom:345.062933pt;}
.yd0{bottom:345.191133pt;}
.y1df{bottom:345.200533pt;}
.y208{bottom:345.772133pt;}
.y12c{bottom:346.046000pt;}
.y1d1{bottom:346.077267pt;}
.yfe{bottom:346.114000pt;}
.y188{bottom:346.607467pt;}
.y1a3{bottom:346.672267pt;}
.y15a{bottom:346.675467pt;}
.y75{bottom:348.823467pt;}
.y237{bottom:361.158667pt;}
.y26a{bottom:364.518800pt;}
.y261{bottom:364.532720pt;}
.y5b{bottom:366.397933pt;}
.ycf{bottom:366.526133pt;}
.ya2{bottom:366.535533pt;}
.y207{bottom:367.107133pt;}
.y12b{bottom:367.381000pt;}
.y1d0{bottom:367.412267pt;}
.yfd{bottom:367.449000pt;}
.y187{bottom:367.942467pt;}
.y1a2{bottom:368.007267pt;}
.y159{bottom:368.010467pt;}
.y236{bottom:379.811680pt;}
.y260{bottom:380.530400pt;}
.y269{bottom:380.542640pt;}
.y74{bottom:385.998933pt;}
.y5a{bottom:387.732933pt;}
.yce{bottom:387.861133pt;}
.ya1{bottom:387.870533pt;}
.y206{bottom:388.442133pt;}
.y12a{bottom:388.716000pt;}
.y1cf{bottom:388.747267pt;}
.yfc{bottom:388.784000pt;}
.y186{bottom:389.277467pt;}
.y1a1{bottom:389.342267pt;}
.y158{bottom:389.345467pt;}
.y25f{bottom:396.528080pt;}
.y268{bottom:396.540320pt;}
.y235{bottom:398.481760pt;}
.y73{bottom:407.333933pt;}
.y59{bottom:409.067933pt;}
.ycd{bottom:409.196133pt;}
.ya0{bottom:409.205533pt;}
.y205{bottom:409.777133pt;}
.y129{bottom:410.051000pt;}
.y1ce{bottom:410.082267pt;}
.yfb{bottom:410.119000pt;}
.y185{bottom:410.612467pt;}
.y1a0{bottom:410.677267pt;}
.y157{bottom:410.680467pt;}
.y25e{bottom:412.525760pt;}
.y267{bottom:412.538000pt;}
.y234{bottom:417.151840pt;}
.y72{bottom:428.668933pt;}
.y58{bottom:430.402933pt;}
.ycc{bottom:430.531133pt;}
.y9f{bottom:430.540533pt;}
.y204{bottom:431.112133pt;}
.y128{bottom:431.386000pt;}
.y1cd{bottom:431.417267pt;}
.yfa{bottom:431.454000pt;}
.y184{bottom:431.947467pt;}
.y19f{bottom:432.012267pt;}
.y156{bottom:432.015467pt;}
.y233{bottom:435.821920pt;}
.y25d{bottom:444.521120pt;}
.y266{bottom:444.533360pt;}
.ye{bottom:448.818800pt;}
.y71{bottom:450.003933pt;}
.y57{bottom:451.737933pt;}
.ycb{bottom:451.866133pt;}
.y9e{bottom:451.875533pt;}
.y127{bottom:452.721000pt;}
.y1cc{bottom:452.752267pt;}
.yf9{bottom:452.789000pt;}
.y183{bottom:453.282467pt;}
.y19e{bottom:453.347267pt;}
.y155{bottom:453.350467pt;}
.y232{bottom:454.492000pt;}
.y203{bottom:457.358933pt;}
.y25c{bottom:460.518800pt;}
.y265{bottom:460.531040pt;}
.y70{bottom:471.338933pt;}
.y56{bottom:473.072933pt;}
.y231{bottom:473.158667pt;}
.yca{bottom:473.201133pt;}
.y9d{bottom:473.210533pt;}
.y126{bottom:474.056000pt;}
.y1cb{bottom:474.087267pt;}
.yf8{bottom:474.124000pt;}
.y182{bottom:474.617467pt;}
.y19d{bottom:474.682267pt;}
.y154{bottom:474.685467pt;}
.y25a{bottom:476.518053pt;}
.y25b{bottom:476.518800pt;}
.y264{bottom:476.528720pt;}
.yd{bottom:487.485467pt;}
.y230{bottom:491.808267pt;}
.y259{bottom:492.515733pt;}
.y263{bottom:492.526400pt;}
.y6f{bottom:492.673933pt;}
.y55{bottom:494.407933pt;}
.y202{bottom:494.477533pt;}
.yc9{bottom:494.536133pt;}
.y9c{bottom:494.545533pt;}
.y125{bottom:495.391000pt;}
.y1ca{bottom:495.422267pt;}
.yf7{bottom:495.459000pt;}
.y181{bottom:495.952467pt;}
.y19c{bottom:496.017267pt;}
.y153{bottom:496.020467pt;}
.y22f{bottom:510.478347pt;}
.y6e{bottom:514.008933pt;}
.y54{bottom:515.742933pt;}
.y51{bottom:515.746267pt;}
.y201{bottom:515.812533pt;}
.yc8{bottom:515.871133pt;}
.y9b{bottom:515.880533pt;}
.y258{bottom:516.077733pt;}
.y262{bottom:516.088400pt;}
.y124{bottom:516.726000pt;}
.y1c9{bottom:516.757267pt;}
.yf6{bottom:516.794000pt;}
.y180{bottom:517.287467pt;}
.y19b{bottom:517.352267pt;}
.y152{bottom:517.355467pt;}
.yc{bottom:526.152133pt;}
.y22e{bottom:529.148427pt;}
.y6d{bottom:535.343933pt;}
.y53{bottom:537.077933pt;}
.y200{bottom:537.147533pt;}
.yc7{bottom:537.206133pt;}
.y9a{bottom:537.215533pt;}
.y123{bottom:538.061000pt;}
.y1c8{bottom:538.092267pt;}
.yf5{bottom:538.129000pt;}
.y17f{bottom:538.622467pt;}
.y19a{bottom:538.687267pt;}
.y151{bottom:538.690467pt;}
.y22d{bottom:547.818507pt;}
.y6c{bottom:556.678933pt;}
.y52{bottom:558.412933pt;}
.y1ff{bottom:558.482533pt;}
.yc6{bottom:558.541133pt;}
.y99{bottom:558.550533pt;}
.y122{bottom:559.396000pt;}
.y1c7{bottom:559.427267pt;}
.yf4{bottom:559.464000pt;}
.y17e{bottom:559.957467pt;}
.y199{bottom:560.022267pt;}
.y150{bottom:560.025467pt;}
.y251{bottom:563.482400pt;}
.yb{bottom:564.818800pt;}
.y22c{bottom:566.488587pt;}
.y6b{bottom:578.013933pt;}
.y1fe{bottom:579.817533pt;}
.yc5{bottom:579.876133pt;}
.y98{bottom:579.885533pt;}
.y121{bottom:580.731000pt;}
.y1c6{bottom:580.762267pt;}
.yf3{bottom:580.799000pt;}
.y17d{bottom:581.292467pt;}
.y198{bottom:581.357267pt;}
.y14f{bottom:581.360467pt;}
.y250{bottom:582.152480pt;}
.y50{bottom:584.659600pt;}
.y22b{bottom:585.158667pt;}
.y6a{bottom:599.348933pt;}
.y24f{bottom:600.822560pt;}
.y1fd{bottom:601.152533pt;}
.yc4{bottom:601.211133pt;}
.y97{bottom:601.220533pt;}
.y120{bottom:602.066000pt;}
.y1c5{bottom:602.097267pt;}
.yf2{bottom:602.134000pt;}
.y17c{bottom:602.627467pt;}
.y197{bottom:602.692267pt;}
.y14e{bottom:602.695467pt;}
.ya{bottom:603.485467pt;}
.y229{bottom:603.815093pt;}
.y22a{bottom:603.825333pt;}
.y24e{bottom:619.492640pt;}
.y228{bottom:622.485173pt;}
.y1fc{bottom:622.487533pt;}
.yc3{bottom:622.546133pt;}
.y96{bottom:622.555533pt;}
.y11f{bottom:623.401000pt;}
.y1c4{bottom:623.432267pt;}
.yf1{bottom:623.469000pt;}
.y17b{bottom:623.962467pt;}
.y14d{bottom:624.030467pt;}
.y196{bottom:628.938933pt;}
.y24d{bottom:638.162720pt;}
.y227{bottom:641.155253pt;}
.y9{bottom:642.152133pt;}
.y1fb{bottom:643.822533pt;}
.yc2{bottom:643.881133pt;}
.y95{bottom:643.890533pt;}
.y11e{bottom:644.736000pt;}
.y1c3{bottom:644.767267pt;}
.yf0{bottom:644.804000pt;}
.y17a{bottom:645.297467pt;}
.y14c{bottom:645.365467pt;}
.y24c{bottom:656.832800pt;}
.y226{bottom:659.825333pt;}
.y1fa{bottom:665.157533pt;}
.yc1{bottom:665.216133pt;}
.y94{bottom:665.225533pt;}
.y11d{bottom:666.071000pt;}
.y1c2{bottom:666.102267pt;}
.yef{bottom:666.139000pt;}
.y179{bottom:666.632467pt;}
.y14b{bottom:666.700467pt;}
.y24b{bottom:675.502880pt;}
.y225{bottom:678.474933pt;}
.y1f9{bottom:686.492533pt;}
.yc0{bottom:686.551133pt;}
.y93{bottom:686.560533pt;}
.y11c{bottom:687.406000pt;}
.y1c1{bottom:687.437267pt;}
.yee{bottom:687.474000pt;}
.y178{bottom:687.967467pt;}
.y14a{bottom:688.035467pt;}
.y24a{bottom:694.172960pt;}
.y224{bottom:697.145013pt;}
.y8{bottom:700.818800pt;}
.y2{bottom:701.664933pt;}
.y1f8{bottom:707.827533pt;}
.ybf{bottom:707.886133pt;}
.y92{bottom:707.895533pt;}
.y11b{bottom:708.741000pt;}
.y1c0{bottom:708.772267pt;}
.yed{bottom:708.809000pt;}
.y177{bottom:709.302467pt;}
.y149{bottom:709.370467pt;}
.y249{bottom:712.843040pt;}
.y223{bottom:715.815093pt;}
.y1f7{bottom:729.162533pt;}
.ybe{bottom:729.221133pt;}
.y91{bottom:729.230533pt;}
.y11a{bottom:730.076000pt;}
.y1bf{bottom:730.107267pt;}
.yec{bottom:730.144000pt;}
.y176{bottom:730.637467pt;}
.y4f{bottom:730.654400pt;}
.y148{bottom:730.705467pt;}
.y248{bottom:731.513120pt;}
.y222{bottom:734.485173pt;}
.y7{bottom:745.618933pt;}
.y4e{bottom:749.317653pt;}
.y3{bottom:749.558267pt;}
.y247{bottom:750.183200pt;}
.y1f6{bottom:750.497533pt;}
.ybd{bottom:750.556133pt;}
.y90{bottom:750.565533pt;}
.y119{bottom:751.411000pt;}
.y1be{bottom:751.442267pt;}
.yeb{bottom:751.479000pt;}
.y175{bottom:751.972467pt;}
.y147{bottom:752.040467pt;}
.y221{bottom:753.155253pt;}
.y4d{bottom:767.987733pt;}
.y3e{bottom:768.853280pt;}
.y220{bottom:771.825333pt;}
.y1f5{bottom:771.832533pt;}
.ybc{bottom:771.891133pt;}
.y8f{bottom:771.900533pt;}
.y118{bottom:772.746000pt;}
.y1bd{bottom:772.777267pt;}
.yea{bottom:772.814000pt;}
.y174{bottom:773.307467pt;}
.y146{bottom:773.375467pt;}
.y4c{bottom:786.650987pt;}
.y3d{bottom:787.523360pt;}
.y6{bottom:790.418933pt;}
.y21f{bottom:790.488587pt;}
.y1f4{bottom:793.167533pt;}
.ybb{bottom:793.226133pt;}
.y8e{bottom:793.235533pt;}
.y117{bottom:794.081000pt;}
.y1bc{bottom:794.112267pt;}
.ye9{bottom:794.149000pt;}
.y173{bottom:794.642467pt;}
.y145{bottom:794.710467pt;}
.y4b{bottom:805.321067pt;}
.y3c{bottom:806.193440pt;}
.y21e{bottom:809.158667pt;}
.y1f3{bottom:814.502533pt;}
.yba{bottom:814.561133pt;}
.y8d{bottom:814.570533pt;}
.y116{bottom:815.416000pt;}
.y1bb{bottom:815.447267pt;}
.ye8{bottom:815.484000pt;}
.y172{bottom:815.977467pt;}
.y144{bottom:816.045467pt;}
.y4a{bottom:823.977493pt;}
.y3b{bottom:824.863520pt;}
.y21c{bottom:827.821920pt;}
.y21d{bottom:827.825333pt;}
.y5{bottom:835.218933pt;}
.y1f2{bottom:835.837533pt;}
.yb9{bottom:835.896133pt;}
.y8c{bottom:835.905533pt;}
.y115{bottom:836.751000pt;}
.y1ba{bottom:836.782267pt;}
.ye7{bottom:836.819000pt;}
.y171{bottom:837.312467pt;}
.y143{bottom:837.380467pt;}
.y49{bottom:842.647573pt;}
.y3a{bottom:843.533600pt;}
.y21b{bottom:846.492000pt;}
.y1f1{bottom:857.172533pt;}
.yb8{bottom:857.231133pt;}
.y8b{bottom:857.240533pt;}
.y114{bottom:858.086000pt;}
.y1b9{bottom:858.117267pt;}
.ye6{bottom:858.154000pt;}
.y170{bottom:858.647467pt;}
.y142{bottom:858.715467pt;}
.y48{bottom:861.317653pt;}
.y39{bottom:862.203680pt;}
.y21a{bottom:865.158667pt;}
.y1f0{bottom:878.507533pt;}
.yb7{bottom:878.566133pt;}
.y8a{bottom:878.575533pt;}
.y113{bottom:879.421000pt;}
.y1b8{bottom:879.452267pt;}
.ye5{bottom:879.489000pt;}
.y16f{bottom:879.982467pt;}
.y47{bottom:879.987733pt;}
.y4{bottom:880.018933pt;}
.y141{bottom:880.050467pt;}
.y38{bottom:880.873760pt;}
.y218{bottom:883.811680pt;}
.y219{bottom:883.825333pt;}
.y46{bottom:898.637333pt;}
.y37{bottom:899.543840pt;}
.y1ef{bottom:899.842533pt;}
.yb6{bottom:899.901133pt;}
.y89{bottom:899.910533pt;}
.y112{bottom:900.756000pt;}
.y1b7{bottom:900.787267pt;}
.ye4{bottom:900.824000pt;}
.y16e{bottom:901.317467pt;}
.y140{bottom:901.385467pt;}
.y217{bottom:902.481760pt;}
.y45{bottom:917.307413pt;}
.y36{bottom:918.213920pt;}
.y216{bottom:921.151840pt;}
.y1ee{bottom:921.177533pt;}
.yb5{bottom:921.236133pt;}
.y88{bottom:921.245533pt;}
.y111{bottom:922.091000pt;}
.y1b6{bottom:922.122267pt;}
.ye3{bottom:922.159000pt;}
.y16d{bottom:922.652467pt;}
.y13f{bottom:922.720467pt;}
.y44{bottom:935.977493pt;}
.y35{bottom:936.884000pt;}
.y215{bottom:939.821920pt;}
.y1ed{bottom:942.512533pt;}
.yb4{bottom:942.571133pt;}
.y87{bottom:942.580533pt;}
.y110{bottom:943.426000pt;}
.y1b5{bottom:943.457267pt;}
.ye2{bottom:943.494000pt;}
.y16c{bottom:943.987467pt;}
.y13e{bottom:944.055467pt;}
.y43{bottom:954.647573pt;}
.y34{bottom:955.554080pt;}
.y214{bottom:958.492000pt;}
.y1ec{bottom:963.847533pt;}
.yb3{bottom:963.906133pt;}
.y86{bottom:963.915533pt;}
.y10f{bottom:964.761000pt;}
.y1b4{bottom:964.792267pt;}
.ye1{bottom:964.829000pt;}
.y16b{bottom:965.322467pt;}
.y13d{bottom:965.390467pt;}
.y11{bottom:972.206053pt;}
.y42{bottom:973.317653pt;}
.y33{bottom:974.224160pt;}
.y213{bottom:977.158667pt;}
.y1eb{bottom:985.182533pt;}
.yb2{bottom:985.241133pt;}
.y85{bottom:985.250533pt;}
.y10e{bottom:986.096000pt;}
.y1b3{bottom:986.127267pt;}
.ye0{bottom:986.164000pt;}
.y16a{bottom:986.657467pt;}
.y13c{bottom:986.725467pt;}
.y10{bottom:988.203733pt;}
.y41{bottom:991.987733pt;}
.y32{bottom:992.894240pt;}
.y212{bottom:995.825333pt;}
.y1ea{bottom:1006.517533pt;}
.yb1{bottom:1006.576133pt;}
.y84{bottom:1006.585533pt;}
.y10d{bottom:1007.431000pt;}
.y1b2{bottom:1007.462267pt;}
.ydf{bottom:1007.499000pt;}
.y169{bottom:1007.992467pt;}
.y13b{bottom:1008.060467pt;}
.y40{bottom:1010.654400pt;}
.y31{bottom:1011.564320pt;}
.y211{bottom:1019.825333pt;}
.y1e9{bottom:1027.852533pt;}
.yb0{bottom:1027.911133pt;}
.y83{bottom:1027.920533pt;}
.y10c{bottom:1028.766000pt;}
.y1b1{bottom:1028.797267pt;}
.yde{bottom:1028.834000pt;}
.y3f{bottom:1029.276960pt;}
.yf{bottom:1029.320933pt;}
.y168{bottom:1029.327467pt;}
.y13a{bottom:1029.395467pt;}
.y30{bottom:1030.234400pt;}
.y1{bottom:1071.727067pt;}
.h12{height:44.880000pt;}
.h3{height:45.347840pt;}
.h8{height:48.568320pt;}
.h7{height:50.232960pt;}
.h15{height:51.016320pt;}
.h6{height:51.395781pt;}
.h9{height:51.409435pt;}
.hb{height:51.423088pt;}
.ha{height:51.436741pt;}
.h13{height:51.450395pt;}
.hd{height:51.464048pt;}
.hc{height:51.572208pt;}
.h14{height:51.710021pt;}
.h10{height:58.404297pt;}
.h11{height:70.720000pt;}
.h2{height:70.856000pt;}
.he{height:81.600000pt;}
.h5{height:133.376000pt;}
.h4{height:155.605333pt;}
.hf{height:260.280608pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:33.054533pt;}
.x2{left:52.951600pt;}
.x3{left:74.287280pt;}
.x17{left:98.028267pt;}
.xf{left:102.047200pt;}
.x13{left:103.102400pt;}
.x1f{left:113.155600pt;}
.x8{left:114.536267pt;}
.x15{left:122.052533pt;}
.x1d{left:131.853600pt;}
.x18{left:133.943867pt;}
.x5{left:138.606800pt;}
.x1b{left:140.200267pt;}
.x11{left:157.278133pt;}
.x7{left:158.234427pt;}
.x6{left:164.499333pt;}
.x4{left:176.992933pt;}
.x1c{left:187.090067pt;}
.xc{left:190.062400pt;}
.xb{left:195.837200pt;}
.xe{left:205.626000pt;}
.x29{left:209.946133pt;}
.x16{left:212.708533pt;}
.x27{left:219.171867pt;}
.x2c{left:221.406133pt;}
.x2d{left:239.382133pt;}
.x9{left:243.198933pt;}
.xd{left:252.772667pt;}
.xa{left:259.059333pt;}
.x26{left:272.151867pt;}
.x2b{left:279.114133pt;}
.x24{left:291.027200pt;}
.x25{left:297.495867pt;}
.x21{left:306.262933pt;}
.x2a{left:309.930133pt;}
.x10{left:342.162133pt;}
.x23{left:376.892933pt;}
.x28{left:408.194267pt;}
.x12{left:430.194133pt;}
.x1e{left:441.297200pt;}
.x14{left:450.199600pt;}
.x19{left:484.484800pt;}
.x1a{left:515.233800pt;}
.x20{left:527.422400pt;}
.x22{left:737.007867pt;}
}




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