
    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_6cc73398f622f1bb7ee0e8b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5b1510d81112c43bf4a94178.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_b2d0abe4c8da27bcd12280a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.138184;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_e76163dc1c5aeb656b4e97ee.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_90ddfffc452b6a0a42628743.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_f7b54182462d07a0f5bf195b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_fce0414c849b23219289bbcc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_3223a92ed0e48c6e58f3390d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_c4623084a9df198cf5d0b962.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_375b289229f84a0c82f3b86e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.372070;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_29b38ea413ccce5b4a0487dd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.956543;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_ff13c1c317cbda9bd209d639.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.063477;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_f947db15f77df3b24a8a6943.woff2')format("woff");}.fff{font-family:fff;line-height:0.850586;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.179532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179532,0.000000,0.000000,0.250000,0,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);}
.vf{vertical-align:-24.480000px;}
.v4{vertical-align:-13.680000px;}
.v2{vertical-align:-12.240000px;}
.vc{vertical-align:-10.800000px;}
.v10{vertical-align:-7.920000px;}
.v3{vertical-align:-5.760000px;}
.v7{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.160000px;}
.vb{vertical-align:5.760000px;}
.va{vertical-align:7.920000px;}
.vd{vertical-align:10.800000px;}
.v1{vertical-align:12.240000px;}
.v5{vertical-align:13.680000px;}
.v8{vertical-align:15.840000px;}
.v12{vertical-align:19.440000px;}
.ve{vertical-align:24.480000px;}
.v11{vertical-align:35.280000px;}
.v9{vertical-align:38.160000px;}
.ls2c{letter-spacing:-0.984000px;}
.ls8a{letter-spacing:-0.882000px;}
.ls10{letter-spacing:-0.804000px;}
.ls95{letter-spacing:-0.774000px;}
.ls4a{letter-spacing:-0.762000px;}
.ls21{letter-spacing:-0.672000px;}
.ls62{letter-spacing:-0.612000px;}
.ls4d{letter-spacing:-0.464400px;}
.ls8e{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.334200px;}
.ls74{letter-spacing:-0.306000px;}
.ls98{letter-spacing:-0.288000px;}
.ls94{letter-spacing:-0.270000px;}
.lsd{letter-spacing:-0.255600px;}
.ls4e{letter-spacing:-0.241800px;}
.ls2b{letter-spacing:-0.234000px;}
.ls14{letter-spacing:-0.226200px;}
.ls15{letter-spacing:-0.222000px;}
.ls97{letter-spacing:-0.198000px;}
.ls60{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.172800px;}
.ls89{letter-spacing:-0.161400px;}
.ls29{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.133200px;}
.ls92{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.085200px;}
.ls88{letter-spacing:-0.069000px;}
.ls4c{letter-spacing:-0.028800px;}
.ls96{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.006480px;}
.ls5{letter-spacing:0.010800px;}
.ls25{letter-spacing:0.012960px;}
.ls70{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.023040px;}
.ls75{letter-spacing:0.036000px;}
.ls6{letter-spacing:0.038880px;}
.ls16{letter-spacing:0.048960px;}
.ls50{letter-spacing:0.050400px;}
.ls61{letter-spacing:0.054000px;}
.ls5f{letter-spacing:0.054720px;}
.ls39{letter-spacing:0.061920px;}
.lsc{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.075000px;}
.ls4{letter-spacing:0.078480px;}
.ls28{letter-spacing:0.090000px;}
.ls7f{letter-spacing:0.094800px;}
.ls24{letter-spacing:0.100800px;}
.ls7b{letter-spacing:0.106800px;}
.ls8f{letter-spacing:0.108000px;}
.ls45{letter-spacing:0.138000px;}
.ls2d{letter-spacing:0.172800px;}
.ls73{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.187200px;}
.ls48{letter-spacing:0.198720px;}
.ls53{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.224400px;}
.ls3{letter-spacing:0.232560px;}
.ls7{letter-spacing:0.246960px;}
.ls2{letter-spacing:0.252000px;}
.ls4b{letter-spacing:0.255600px;}
.ls8{letter-spacing:0.270000px;}
.ls87{letter-spacing:0.288000px;}
.ls7d{letter-spacing:0.305400px;}
.ls1d{letter-spacing:0.308400px;}
.ls2a{letter-spacing:0.324000px;}
.ls72{letter-spacing:0.345600px;}
.ls1{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.367200px;}
.ls49{letter-spacing:0.378720px;}
.ls27{letter-spacing:0.432000px;}
.ls93{letter-spacing:0.450000px;}
.ls22{letter-spacing:0.547200px;}
.ls4f{letter-spacing:0.616320px;}
.ls5b{letter-spacing:0.630000px;}
.ls71{letter-spacing:0.684000px;}
.ls6f{letter-spacing:0.792000px;}
.ls7c{letter-spacing:0.892800px;}
.ls6e{letter-spacing:0.954000px;}
.ls65{letter-spacing:0.959040px;}
.ls85{letter-spacing:0.972000px;}
.ls57{letter-spacing:0.990000px;}
.ls90{letter-spacing:1.080000px;}
.ls5a{letter-spacing:1.134000px;}
.ls37{letter-spacing:1.195200px;}
.ls18{letter-spacing:1.267200px;}
.ls33{letter-spacing:1.310400px;}
.ls86{letter-spacing:1.440000px;}
.ls66{letter-spacing:1.480320px;}
.ls54{letter-spacing:1.566000px;}
.ls3e{letter-spacing:1.612800px;}
.lsa{letter-spacing:1.736640px;}
.ls80{letter-spacing:1.800000px;}
.ls55{letter-spacing:1.854000px;}
.ls1e{letter-spacing:1.856640px;}
.ls5e{letter-spacing:1.908000px;}
.ls77{letter-spacing:1.916640px;}
.ls1a{letter-spacing:1.987200px;}
.ls64{letter-spacing:2.309040px;}
.ls56{letter-spacing:2.520000px;}
.ls76{letter-spacing:2.522880px;}
.ls3d{letter-spacing:2.707200px;}
.ls68{letter-spacing:3.029040px;}
.ls59{letter-spacing:3.052800px;}
.ls7e{letter-spacing:3.135600px;}
.ls58{letter-spacing:3.240000px;}
.ls5c{letter-spacing:3.247200px;}
.ls36{letter-spacing:3.254400px;}
.ls1b{letter-spacing:3.427200px;}
.ls3c{letter-spacing:3.434400px;}
.ls83{letter-spacing:3.458160px;}
.ls52{letter-spacing:3.855600px;}
.ls38{letter-spacing:3.974400px;}
.ls34{letter-spacing:4.015440px;}
.ls1f{letter-spacing:4.147200px;}
.ls32{letter-spacing:4.694400px;}
.ls1c{letter-spacing:4.867200px;}
.ls42{letter-spacing:4.874400px;}
.ls44{letter-spacing:5.587200px;}
.ls5d{letter-spacing:6.120000px;}
.ls79{letter-spacing:6.307200px;}
.ls78{letter-spacing:7.560000px;}
.ls91{letter-spacing:9.000000px;}
.ls84{letter-spacing:9.907200px;}
.ls13{letter-spacing:11.347200px;}
.ls6c{letter-spacing:12.150000px;}
.ls63{letter-spacing:13.550400px;}
.ls82{letter-spacing:14.184480px;}
.ls51{letter-spacing:14.270400px;}
.ls40{letter-spacing:14.598720px;}
.ls31{letter-spacing:14.912640px;}
.ls19{letter-spacing:14.947200px;}
.ls6b{letter-spacing:15.292800px;}
.ls81{letter-spacing:15.989040px;}
.ls6d{letter-spacing:16.012800px;}
.ls23{letter-spacing:16.567200px;}
.ls8c{letter-spacing:16.685040px;}
.ls69{letter-spacing:16.709040px;}
.ls7a{letter-spacing:17.042400px;}
.ls67{letter-spacing:17.429040px;}
.ls41{letter-spacing:17.654400px;}
.ls47{letter-spacing:18.198720px;}
.ls43{letter-spacing:18.350400px;}
.ls3a{letter-spacing:18.374400px;}
.ls2e{letter-spacing:19.267200px;}
.ls30{letter-spacing:21.254400px;}
.ls8b{letter-spacing:21.855600px;}
.ls3f{letter-spacing:21.950400px;}
.ls46{letter-spacing:21.974400px;}
.ls3b{letter-spacing:22.694400px;}
.ls8d{letter-spacing:160.464000px;}
.ls6a{letter-spacing:201.427200px;}
.ls35{letter-spacing:206.812800px;}
.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;}
}
.ws39{word-spacing:-32.808240px;}
.ws5{word-spacing:-18.532800px;}
.ws6{word-spacing:-18.277200px;}
.ws30{word-spacing:-14.932800px;}
.wse{word-spacing:-14.881200px;}
.ws14{word-spacing:-14.760000px;}
.ws42{word-spacing:-14.679600px;}
.ws3f{word-spacing:-14.667600px;}
.ws2d{word-spacing:-14.627520px;}
.wsd{word-spacing:-14.595840px;}
.ws4{word-spacing:-14.572800px;}
.ws23{word-spacing:-14.544000px;}
.ws4b{word-spacing:-14.503800px;}
.wsf{word-spacing:-14.238600px;}
.ws15{word-spacing:-13.810800px;}
.ws10{word-spacing:-13.160160px;}
.wsc{word-spacing:-12.316200px;}
.ws13{word-spacing:-12.204000px;}
.ws3{word-spacing:-12.132000px;}
.ws50{word-spacing:-11.988000px;}
.ws11{word-spacing:-11.970000px;}
.ws37{word-spacing:-11.898000px;}
.ws7{word-spacing:-11.880000px;}
.ws4f{word-spacing:-11.790000px;}
.ws12{word-spacing:-11.736000px;}
.ws51{word-spacing:-11.682000px;}
.ws52{word-spacing:-11.592000px;}
.ws3b{word-spacing:-11.574000px;}
.ws9{word-spacing:-11.516400px;}
.ws1b{word-spacing:-10.868400px;}
.ws8{word-spacing:-10.612800px;}
.wsb{word-spacing:-10.527600px;}
.ws27{word-spacing:-10.148400px;}
.wsa{word-spacing:-9.808800px;}
.ws16{word-spacing:-9.187200px;}
.ws3a{word-spacing:-8.920800px;}
.ws38{word-spacing:-8.899200px;}
.ws34{word-spacing:-8.553600px;}
.ws2{word-spacing:-7.992000px;}
.ws3e{word-spacing:-7.956000px;}
.ws1{word-spacing:-7.920000px;}
.ws36{word-spacing:-6.652800px;}
.ws4d{word-spacing:-0.694080px;}
.ws48{word-spacing:-0.492000px;}
.ws44{word-spacing:-0.468000px;}
.ws1d{word-spacing:-0.380160px;}
.ws2f{word-spacing:-0.378000px;}
.ws19{word-spacing:-0.149760px;}
.ws4a{word-spacing:-0.060000px;}
.ws17{word-spacing:-0.043973px;}
.ws35{word-spacing:-0.036000px;}
.ws0{word-spacing:0.000000px;}
.ws1a{word-spacing:0.025920px;}
.ws32{word-spacing:0.112320px;}
.ws33{word-spacing:0.145920px;}
.ws25{word-spacing:0.205920px;}
.ws3d{word-spacing:0.252000px;}
.ws20{word-spacing:0.339840px;}
.ws2e{word-spacing:0.342000px;}
.ws41{word-spacing:0.459840px;}
.ws46{word-spacing:0.563520px;}
.ws45{word-spacing:0.587520px;}
.ws49{word-spacing:0.684000px;}
.ws2c{word-spacing:1.725120px;}
.ws47{word-spacing:1.782000px;}
.ws4c{word-spacing:2.272320px;}
.ws40{word-spacing:2.844000px;}
.ws1e{word-spacing:2.905920px;}
.ws28{word-spacing:3.493440px;}
.ws2b{word-spacing:3.601920px;}
.ws1c{word-spacing:3.625920px;}
.ws29{word-spacing:3.745920px;}
.ws31{word-spacing:3.805920px;}
.ws21{word-spacing:4.213440px;}
.ws22{word-spacing:6.096240px;}
.ws43{word-spacing:6.642720px;}
.ws26{word-spacing:6.816240px;}
.ws3c{word-spacing:7.067520px;}
.ws18{word-spacing:7.802640px;}
.ws2a{word-spacing:9.696240px;}
.ws1f{word-spacing:10.130400px;}
.ws24{word-spacing:10.416240px;}
.ws4e{word-spacing:132.516000px;}
._28{margin-left:-78.319200px;}
._20{margin-left:-60.444073px;}
._1f{margin-left:-7.977120px;}
._21{margin-left:-6.789600px;}
._27{margin-left:-5.627040px;}
._10{margin-left:-4.028160px;}
._f{margin-left:-2.686560px;}
._0{margin-left:-1.329840px;}
._3{width:1.084320px;}
._8{width:2.371680px;}
._2{width:4.137840px;}
._1{width:5.184000px;}
._5{width:6.230160px;}
._11{width:7.418880px;}
._4{width:8.964000px;}
._9{width:10.260000px;}
._12{width:11.538000px;}
._6{width:13.176000px;}
._26{width:14.214720px;}
._d{width:16.045680px;}
._c{width:17.329680px;}
._19{width:18.561600px;}
._e{width:19.783440px;}
._15{width:21.726720px;}
._7{width:23.382000px;}
._a{width:24.433680px;}
._1b{width:26.485920px;}
._1a{width:27.516720px;}
._1c{width:28.809600px;}
._b{width:30.888000px;}
._16{width:32.325120px;}
._1e{width:51.600960px;}
._1d{width:52.727040px;}
._24{width:59.459520px;}
._25{width:109.282080px;}
._22{width:114.304560px;}
._13{width:125.673960px;}
._29{width:130.620000px;}
._17{width:158.748960px;}
._23{width:201.427200px;}
._14{width:203.457600px;}
._18{width:205.387200px;}
.fc4{color:rgb(5,99,193);}
.fc1{color:rgb(38,90,63);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs12{font-size:38.880000px;}
.fsf{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs10{font-size:43.973472px;}
.fsc{font-size:48.240000px;}
.fsd{font-size:51.120000px;}
.fs8{font-size:54.000000px;}
.fse{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:102.240000px;}
.fs11{font-size:113.995154px;}
.fs6{font-size:156.240000px;}
.yb1{bottom:-8.025000px;}
.y0{bottom:0.000000px;}
.y1d7{bottom:3.045000px;}
.y1b2{bottom:3.060000px;}
.y1da{bottom:3.225000px;}
.y162{bottom:3.240000px;}
.y177{bottom:3.600000px;}
.y17b{bottom:4.140000px;}
.y151{bottom:4.485000px;}
.y62{bottom:4.860000px;}
.y148{bottom:5.580000px;}
.yc5{bottom:5.745000px;}
.yeb{bottom:5.848367px;}
.y159{bottom:5.925000px;}
.yd4{bottom:5.940000px;}
.y157{bottom:6.105000px;}
.yb9{bottom:6.375000px;}
.y1ac{bottom:6.480000px;}
.ycb{bottom:6.660000px;}
.y1a8{bottom:7.020000px;}
.y154{bottom:7.365000px;}
.y146{bottom:7.380000px;}
.y14c{bottom:7.725000px;}
.yd6{bottom:7.740000px;}
.y166{bottom:7.920000px;}
.y21e{bottom:8.025000px;}
.y168{bottom:8.100000px;}
.y14a{bottom:8.130000px;}
.y171{bottom:8.460000px;}
.ycf{bottom:8.640000px;}
.yb0{bottom:8.715000px;}
.y17d{bottom:8.820000px;}
.yc9{bottom:9.000000px;}
.yc1{bottom:9.540000px;}
.ycd{bottom:9.720000px;}
.yd1{bottom:10.080000px;}
.y1b0{bottom:10.980000px;}
.y16d{bottom:11.160000px;}
.y175{bottom:11.520000px;}
.yc3{bottom:11.880000px;}
.y179{bottom:12.060000px;}
.y14e{bottom:12.405000px;}
.y155{bottom:12.765000px;}
.y14f{bottom:13.125000px;}
.y1df{bottom:13.500000px;}
.y1e2{bottom:14.220000px;}
.y1ad{bottom:14.400000px;}
.y15e{bottom:14.580000px;}
.y1a9{bottom:14.940000px;}
.y143{bottom:15.300000px;}
.y144{bottom:16.020000px;}
.y172{bottom:16.380000px;}
.yc7{bottom:16.920000px;}
.y15f{bottom:17.640000px;}
.y1b1{bottom:18.900000px;}
.y1d6{bottom:18.930000px;}
.y1d9{bottom:19.065000px;}
.y161{bottom:19.080000px;}
.y176{bottom:19.260000px;}
.yed{bottom:19.495076px;}
.y17a{bottom:19.980000px;}
.y150{bottom:20.325000px;}
.y3c{bottom:21.240000px;}
.y153{bottom:22.125000px;}
.y1ab{bottom:22.320000px;}
.y15d{bottom:22.500000px;}
.y1a7{bottom:22.860000px;}
.y145{bottom:23.220000px;}
.y170{bottom:24.300000px;}
.yc8{bottom:24.840000px;}
.y4f{bottom:25.020000px;}
.y21c{bottom:27.150000px;}
.y1dd{bottom:28.980000px;}
.y1de{bottom:29.340000px;}
.y1e1{bottom:30.060000px;}
.y1e4{bottom:30.240000px;}
.y1e8{bottom:30.420000px;}
.ybf{bottom:37.260000px;}
.yb4{bottom:38.775000px;}
.y3b{bottom:39.420000px;}
.y4e{bottom:41.760000px;}
.yec{bottom:43.078080px;}
.y216{bottom:44.175000px;}
.y1d4{bottom:50.625000px;}
.y3a{bottom:57.600000px;}
.y4d{bottom:62.640000px;}
.y5{bottom:66.525004px;}
.yb6{bottom:72.795000px;}
.yac{bottom:75.135000px;}
.y39{bottom:75.780000px;}
.y4c{bottom:78.300000px;}
.y24{bottom:86.976000px;}
.y64{bottom:92.016000px;}
.y38{bottom:93.960000px;}
.y4b{bottom:94.140000px;}
.y4{bottom:97.125005px;}
.y23{bottom:97.596000px;}
.y217{bottom:104.400000px;}
.y37{bottom:112.170000px;}
.y4a{bottom:115.230000px;}
.y36{bottom:130.350000px;}
.y49{bottom:131.070000px;}
.y21{bottom:139.264499px;}
.y21d{bottom:145.770000px;}
.y35{bottom:148.530000px;}
.y48{bottom:152.130000px;}
.y12d{bottom:152.670000px;}
.y1a3{bottom:155.910000px;}
.y60{bottom:157.170000px;}
.y1f3{bottom:162.030000px;}
.ye8{bottom:162.930000px;}
.y96{bottom:164.010000px;}
.y218{bottom:164.625000px;}
.y34{bottom:166.890000px;}
.y1d0{bottom:167.790000px;}
.y15a{bottom:168.510000px;}
.y12c{bottom:169.230000px;}
.y90{bottom:171.030000px;}
.y12b{bottom:172.290000px;}
.y47{bottom:173.010000px;}
.y1a2{bottom:176.250000px;}
.y186{bottom:176.430000px;}
.y5f{bottom:177.330000px;}
.y1f2{bottom:182.370000px;}
.y251{bottom:182.910000px;}
.ye7{bottom:183.270000px;}
.y95{bottom:184.350000px;}
.y10a{bottom:184.890000px;}
.y158{bottom:184.905000px;}
.y33{bottom:185.070000px;}
.y12a{bottom:185.790000px;}
.ya9{bottom:187.230000px;}
.y1cf{bottom:187.950000px;}
.y46{bottom:188.850000px;}
.y8f{bottom:191.370000px;}
.y1a1{bottom:196.590000px;}
.y185{bottom:196.770000px;}
.y18{bottom:196.933500px;}
.y5e{bottom:197.670000px;}
.y250{bottom:199.650000px;}
.y129{bottom:202.530000px;}
.y1f1{bottom:202.710000px;}
.y32{bottom:203.250000px;}
.ye6{bottom:203.610000px;}
.y45{bottom:204.510000px;}
.y94{bottom:204.690000px;}
.y109{bottom:205.230000px;}
.y156{bottom:205.965000px;}
.ya8{bottom:207.570000px;}
.y1ce{bottom:208.290000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y24f{bottom:216.210000px;}
.y1a0{bottom:216.750000px;}
.y184{bottom:217.110000px;}
.y5d{bottom:218.010000px;}
.y128{bottom:219.090000px;}
.y44{bottom:220.350000px;}
.y31{bottom:221.430000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y206{bottom:222.150000px;}
.y1f0{bottom:223.050000px;}
.ye5{bottom:223.770000px;}
.ya7{bottom:224.310000px;}
.y219{bottom:224.820000px;}
.y93{bottom:225.030000px;}
.y108{bottom:225.570000px;}
.y152{bottom:227.385000px;}
.y1cd{bottom:228.630000px;}
.y8e{bottom:229.530000px;}
.y24e{bottom:232.770000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y127{bottom:235.650000px;}
.y19f{bottom:237.090000px;}
.y183{bottom:237.450000px;}
.y5c{bottom:238.350000px;}
.y30{bottom:239.610000px;}
.y43{bottom:241.050000px;}
.y1ef{bottom:243.390000px;}
.ye4{bottom:244.110000px;}
.y92{bottom:245.370000px;}
.y107{bottom:245.730000px;}
.y1cc{bottom:248.970000px;}
.y24d{bottom:249.510000px;}
.y214{bottom:249.690000px;}
.y126{bottom:252.390000px;}
.y42{bottom:255.810000px;}
.y19e{bottom:257.430000px;}
.y2f{bottom:257.790000px;}
.y5b{bottom:258.690000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.ybd{bottom:262.470000px;}
.y14d{bottom:263.205000px;}
.ybb{bottom:263.370000px;}
.ye3{bottom:264.450000px;}
.y205{bottom:265.170000px;}
.y91{bottom:265.530000px;}
.y106{bottom:266.070000px;}
.y213{bottom:266.250000px;}
.y215{bottom:266.940000px;}
.y125{bottom:268.950000px;}
.y1cb{bottom:269.310000px;}
.y41{bottom:270.570000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y2e{bottom:275.970000px;}
.y19d{bottom:277.770000px;}
.y182{bottom:277.950000px;}
.y5a{bottom:279.030000px;}
.ybc{bottom:280.830000px;}
.yba{bottom:281.550000px;}
.y24c{bottom:282.630000px;}
.ye2{bottom:284.790000px;}
.y21a{bottom:285.045000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y40{bottom:285.330000px;}
.y124{bottom:285.510000px;}
.y8d{bottom:285.870000px;}
.y105{bottom:286.410000px;}
.y1ca{bottom:290.010000px;}
.y3d{bottom:292.530000px;}
.y2d{bottom:294.150000px;}
.y14b{bottom:297.945000px;}
.y19c{bottom:298.110000px;}
.y59{bottom:299.190000px;}
.y24b{bottom:299.370000px;}
.y3f{bottom:300.090000px;}
.y123{bottom:302.250000px;}
.ye1{bottom:305.130000px;}
.y204{bottom:305.850000px;}
.y8c{bottom:306.210000px;}
.y104{bottom:306.750000px;}
.y181{bottom:309.990000px;}
.y1c9{bottom:310.170000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y2c{bottom:310.350000px;}
.y3e{bottom:314.850000px;}
.y24a{bottom:315.930000px;}
.y19b{bottom:318.450000px;}
.y122{bottom:318.810000px;}
.y58{bottom:319.530000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y149{bottom:323.505000px;}
.ye0{bottom:325.470000px;}
.y180{bottom:325.830000px;}
.y203{bottom:326.190000px;}
.y8b{bottom:326.550000px;}
.y103{bottom:327.090000px;}
.y1c8{bottom:330.555000px;}
.y249{bottom:332.535000px;}
.y1ee{bottom:337.935000px;}
.y121{bottom:338.475000px;}
.y19a{bottom:338.655000px;}
.y57{bottom:339.915000px;}
.y21b{bottom:345.270000px;}
.ydf{bottom:345.855000px;}
.y202{bottom:346.575000px;}
.y8a{bottom:346.935000px;}
.y102{bottom:347.475000px;}
.yf{bottom:348.133500px;}
.y17f{bottom:348.375000px;}
.y147{bottom:349.095000px;}
.y248{bottom:349.275000px;}
.y1c7{bottom:350.895000px;}
.y120{bottom:351.975000px;}
.y1ed{bottom:358.275000px;}
.y56{bottom:360.255000px;}
.y199{bottom:361.155000px;}
.y247{bottom:365.835000px;}
.yde{bottom:366.015000px;}
.y201{bottom:366.915000px;}
.y89{bottom:367.275000px;}
.y101{bottom:367.635000px;}
.y142{bottom:370.335000px;}
.y1c6{bottom:371.235000px;}
.y17e{bottom:373.755000px;}
.y11f{bottom:376.455000px;}
.y55{bottom:380.595000px;}
.y246{bottom:382.395000px;}
.y198{bottom:383.475000px;}
.ydd{bottom:386.355000px;}
.ye{bottom:386.785499px;}
.y200{bottom:387.075000px;}
.y88{bottom:387.615000px;}
.y100{bottom:387.975000px;}
.y1ec{bottom:390.135000px;}
.y1c5{bottom:391.575000px;}
.y11e{bottom:396.795000px;}
.y245{bottom:398.415000px;}
.y54{bottom:400.935000px;}
.y17c{bottom:401.475000px;}
.yab{bottom:401.940000px;}
.yb3{bottom:402.300000px;}
.y197{bottom:403.815000px;}
.ydc{bottom:406.695000px;}
.y1ff{bottom:407.415000px;}
.y87{bottom:407.775000px;}
.yd{bottom:408.044999px;}
.yff{bottom:408.315000px;}
.y1eb{bottom:409.215000px;}
.y1c4{bottom:411.915000px;}
.y244{bottom:414.795000px;}
.y11d{bottom:417.135000px;}
.y53{bottom:421.095000px;}
.yb5{bottom:422.535000px;}
.yb8{bottom:424.875000px;}
.y196{bottom:426.135000px;}
.yaf{bottom:427.215000px;}
.y1fe{bottom:427.755000px;}
.y86{bottom:428.115000px;}
.yfe{bottom:428.655000px;}
.y178{bottom:429.375000px;}
.y243{bottom:431.535000px;}
.y1c3{bottom:432.075000px;}
.y141{bottom:433.875000px;}
.ydb{bottom:435.135000px;}
.y11c{bottom:437.475000px;}
.y1ea{bottom:437.655000px;}
.y52{bottom:441.435000px;}
.yae{bottom:443.775000px;}
.y195{bottom:446.475000px;}
.y1fd{bottom:448.095000px;}
.y85{bottom:448.455000px;}
.y1c2{bottom:452.415000px;}
.yda{bottom:454.935000px;}
.yb7{bottom:457.995000px;}
.yb2{bottom:459.435000px;}
.yad{bottom:460.515000px;}
.y51{bottom:461.775000px;}
.y174{bottom:463.755000px;}
.y242{bottom:464.655000px;}
.y194{bottom:466.815000px;}
.yfd{bottom:466.995000px;}
.y1fc{bottom:468.435000px;}
.y84{bottom:468.795000px;}
.yd9{bottom:471.495000px;}
.y1c1{bottom:472.755000px;}
.y11b{bottom:475.635000px;}
.y140{bottom:481.215000px;}
.y241{bottom:481.395000px;}
.y50{bottom:482.115000px;}
.y193{bottom:487.155000px;}
.yd8{bottom:488.055000px;}
.y1fb{bottom:488.775000px;}
.y83{bottom:489.135000px;}
.y1c0{bottom:493.095000px;}
.y1e9{bottom:495.435000px;}
.y173{bottom:496.875000px;}
.y2b{bottom:497.775000px;}
.y240{bottom:497.955000px;}
.y13f{bottom:501.375000px;}
.yd7{bottom:501.735000px;}
.yc{bottom:502.864502px;}
.yfc{bottom:505.335000px;}
.y192{bottom:507.315000px;}
.y1fa{bottom:509.115000px;}
.y82{bottom:509.475000px;}
.y1e7{bottom:511.995000px;}
.y1bf{bottom:513.435000px;}
.y11a{bottom:513.975000px;}
.y23f{bottom:514.515000px;}
.yb{bottom:520.864502px;}
.y13e{bottom:521.715000px;}
.yfb{bottom:525.675000px;}
.y191{bottom:527.655000px;}
.y16f{bottom:529.275000px;}
.y81{bottom:529.635000px;}
.y23e{bottom:531.255000px;}
.yd5{bottom:533.235000px;}
.y1be{bottom:533.775000px;}
.y119{bottom:534.315000px;}
.ya{bottom:538.864499px;}
.y13d{bottom:542.055000px;}
.yfa{bottom:545.835000px;}
.y23d{bottom:547.815000px;}
.y190{bottom:547.995000px;}
.y1f9{bottom:549.615000px;}
.y80{bottom:549.975000px;}
.y1bd{bottom:554.115000px;}
.y117{bottom:554.655000px;}
.y1e6{bottom:555.015000px;}
.y9{bottom:556.864499px;}
.yd3{bottom:558.075000px;}
.y118{bottom:558.435000px;}
.y13c{bottom:562.395000px;}
.y23c{bottom:564.375000px;}
.yf9{bottom:566.175000px;}
.y18f{bottom:568.335000px;}
.y1f8{bottom:569.955000px;}
.y7f{bottom:570.315000px;}
.y16e{bottom:572.115000px;}
.y1bc{bottom:574.275000px;}
.y116{bottom:574.995000px;}
.y1e5{bottom:576.075000px;}
.yd2{bottom:579.495000px;}
.y23b{bottom:581.115000px;}
.y13b{bottom:582.735000px;}
.yf8{bottom:586.515000px;}
.y18e{bottom:588.675000px;}
.y1f7{bottom:590.295000px;}
.y7e{bottom:590.655000px;}
.y1bb{bottom:594.615000px;}
.y115{bottom:595.335000px;}
.yaa{bottom:595.875000px;}
.y23a{bottom:597.705000px;}
.y13a{bottom:603.105000px;}
.y16c{bottom:604.545000px;}
.yd0{bottom:608.505000px;}
.y18d{bottom:609.045000px;}
.y1f6{bottom:610.665000px;}
.y7d{bottom:611.025000px;}
.y239{bottom:614.265000px;}
.y1ba{bottom:614.985000px;}
.y114{bottom:615.525000px;}
.y139{bottom:623.445000px;}
.yf7{bottom:624.885000px;}
.y18c{bottom:629.205000px;}
.y1f5{bottom:631.005000px;}
.y7c{bottom:631.365000px;}
.y113{bottom:635.865000px;}
.yce{bottom:638.205000px;}
.y16b{bottom:641.625000px;}
.y138{bottom:643.605000px;}
.y8{bottom:645.510000px;}
.y1b9{bottom:646.485000px;}
.y238{bottom:647.565000px;}
.y18b{bottom:649.545000px;}
.y1e3{bottom:651.165000px;}
.y7b{bottom:651.525000px;}
.y112{bottom:656.205000px;}
.y1b8{bottom:660.165000px;}
.yf6{bottom:663.225000px;}
.y237{bottom:664.125000px;}
.ycc{bottom:664.845000px;}
.y7{bottom:666.771000px;}
.y18a{bottom:669.885000px;}
.y7a{bottom:671.865000px;}
.y16a{bottom:673.485000px;}
.ya6{bottom:674.385000px;}
.y111{bottom:676.545000px;}
.y236{bottom:680.865000px;}
.y137{bottom:681.945000px;}
.y1b6{bottom:682.665000px;}
.yf5{bottom:683.565000px;}
.y212{bottom:685.005000px;}
.y189{bottom:690.225000px;}
.y79{bottom:692.205000px;}
.yca{bottom:693.645000px;}
.y1e0{bottom:694.005000px;}
.y169{bottom:695.265000px;}
.y10f{bottom:696.885000px;}
.y235{bottom:697.425000px;}
.y110{bottom:700.665000px;}
.yf4{bottom:703.725000px;}
.y1b7{bottom:704.625000px;}
.y188{bottom:710.565000px;}
.y78{bottom:712.545000px;}
.y234{bottom:713.985000px;}
.yc6{bottom:717.045000px;}
.y10e{bottom:717.225000px;}
.y167{bottom:721.545000px;}
.ya5{bottom:721.725000px;}
.yf3{bottom:724.065000px;}
.y6{bottom:726.298500px;}
.y1b5{bottom:726.765000px;}
.y233{bottom:730.725000px;}
.y211{bottom:732.345000px;}
.y77{bottom:732.885000px;}
.y1dc{bottom:736.665000px;}
.y10d{bottom:737.385000px;}
.ya4{bottom:742.065000px;}
.yf2{bottom:744.405000px;}
.y232{bottom:747.285000px;}
.y165{bottom:747.825000px;}
.y3{bottom:752.599495px;}
.y210{bottom:752.685000px;}
.y76{bottom:753.225000px;}
.y136{bottom:756.645000px;}
.y10c{bottom:757.725000px;}
.ybe{bottom:761.145000px;}
.yc4{bottom:761.160000px;}
.ya3{bottom:762.405000px;}
.y231{bottom:763.845000px;}
.yf1{bottom:764.745000px;}
.y1b4{bottom:764.925000px;}
.y75{bottom:773.385000px;}
.y164{bottom:773.925000px;}
.y1db{bottom:778.605000px;}
.y230{bottom:780.585000px;}
.yc2{bottom:782.565000px;}
.ya2{bottom:782.745000px;}
.y74{bottom:793.725000px;}
.y20f{bottom:794.085000px;}
.y135{bottom:795.885000px;}
.y10b{bottom:796.605000px;}
.y22f{bottom:797.145000px;}
.y264{bottom:799.305000px;}
.ya1{bottom:803.085000px;}
.y1b3{bottom:803.265000px;}
.y163{bottom:805.605000px;}
.y22e{bottom:813.705000px;}
.y73{bottom:814.065000px;}
.y20e{bottom:814.425000px;}
.yc0{bottom:816.405000px;}
.y1d3{bottom:816.765000px;}
.y1d8{bottom:816.780000px;}
.y263{bottom:818.745000px;}
.y2a{bottom:828.645000px;}
.y22d{bottom:830.445000px;}
.y134{bottom:834.045000px;}
.y72{bottom:834.405000px;}
.y20d{bottom:834.585000px;}
.y262{bottom:835.485000px;}
.y160{bottom:837.285000px;}
.ya0{bottom:841.425000px;}
.y1af{bottom:842.325000px;}
.y22c{bottom:847.005000px;}
.y1d5{bottom:848.460000px;}
.y261{bottom:852.045000px;}
.y133{bottom:854.385000px;}
.y71{bottom:854.745000px;}
.y20c{bottom:854.925000px;}
.yf0{bottom:861.585000px;}
.y22b{bottom:863.610000px;}
.y29{bottom:868.470000px;}
.y260{bottom:868.650000px;}
.y15c{bottom:869.730000px;}
.y132{bottom:874.770000px;}
.y70{bottom:875.130000px;}
.y20b{bottom:875.310000px;}
.y2{bottom:879.369000px;}
.y22a{bottom:880.350000px;}
.yef{bottom:882.150000px;}
.y25f{bottom:885.390000px;}
.y131{bottom:894.930000px;}
.y6f{bottom:895.470000px;}
.y20a{bottom:895.650000px;}
.y229{bottom:896.910000px;}
.y9f{bottom:897.630000px;}
.y1ae{bottom:900.870000px;}
.y25e{bottom:901.950000px;}
.y1d2{bottom:903.390000px;}
.yee{bottom:904.290000px;}
.y228{bottom:913.470000px;}
.y130{bottom:915.270000px;}
.y6e{bottom:915.630000px;}
.y209{bottom:915.990000px;}
.y9e{bottom:917.970000px;}
.y25d{bottom:918.510000px;}
.y28{bottom:922.470000px;}
.y1d1{bottom:925.170000px;}
.y227{bottom:930.030000px;}
.y15b{bottom:931.650000px;}
.y25c{bottom:935.250000px;}
.y12f{bottom:935.610000px;}
.y6d{bottom:935.970000px;}
.y9d{bottom:938.310000px;}
.yea{bottom:938.970000px;}
.y1aa{bottom:939.210000px;}
.y226{bottom:946.770000px;}
.y25b{bottom:951.810000px;}
.y27{bottom:953.970000px;}
.y208{bottom:954.330000px;}
.y12e{bottom:955.950000px;}
.y6c{bottom:956.310000px;}
.y9c{bottom:958.650000px;}
.ye9{bottom:961.530000px;}
.y225{bottom:963.330000px;}
.y1{bottom:966.726000px;}
.y25a{bottom:968.370000px;}
.y6b{bottom:976.650000px;}
.y1a6{bottom:977.370000px;}
.y9b{bottom:978.990000px;}
.y224{bottom:979.890000px;}
.y259{bottom:985.110000px;}
.y223{bottom:996.630000px;}
.y6a{bottom:996.990000px;}
.y187{bottom:997.530000px;}
.y9a{bottom:999.330000px;}
.y207{bottom:1001.490000px;}
.y258{bottom:1001.670000px;}
.y61{bottom:1010.130000px;}
.y26{bottom:1011.930000px;}
.y222{bottom:1013.190000px;}
.y1a5{bottom:1017.150000px;}
.y69{bottom:1017.330000px;}
.y257{bottom:1018.230000px;}
.y99{bottom:1019.490000px;}
.y221{bottom:1029.750000px;}
.y256{bottom:1034.970000px;}
.y68{bottom:1037.490000px;}
.y25{bottom:1037.850000px;}
.y98{bottom:1039.830000px;}
.y1a4{bottom:1043.430000px;}
.y220{bottom:1046.490000px;}
.y255{bottom:1051.530000px;}
.y67{bottom:1057.830000px;}
.y97{bottom:1060.170000px;}
.y21f{bottom:1063.050000px;}
.y254{bottom:1068.090000px;}
.y66{bottom:1078.170000px;}
.y253{bottom:1084.830000px;}
.y65{bottom:1098.510000px;}
.y252{bottom:1101.390000px;}
.y1f4{bottom:1102.290000px;}
.y22{bottom:1131.840000px;}
.y63{bottom:1164.060000px;}
.h59{height:15.825000px;}
.h13{height:17.625000px;}
.h57{height:20.325000px;}
.h32{height:20.505000px;}
.h1b{height:20.685000px;}
.h38{height:21.045000px;}
.h4f{height:21.240000px;}
.h22{height:21.405000px;}
.h4e{height:21.420000px;}
.h1d{height:22.680000px;}
.h45{height:24.645000px;}
.h23{height:24.825000px;}
.h4a{height:25.365000px;}
.h3c{height:25.380000px;}
.h46{height:25.545000px;}
.h3d{height:25.560000px;}
.h33{height:25.581000px;}
.h1f{height:26.640000px;}
.h44{height:26.985000px;}
.h43{height:27.165000px;}
.h19{height:28.620000px;}
.h1e{height:28.800000px;}
.h21{height:29.010000px;}
.h20{height:29.700000px;}
.ha{height:30.480469px;}
.h51{height:31.521000px;}
.h4b{height:31.522500px;}
.h40{height:31.665000px;}
.h3b{height:31.680000px;}
.h3a{height:31.702500px;}
.h3e{height:31.710000px;}
.h7{height:32.130000px;}
.h41{height:32.385000px;}
.h28{height:32.572147px;}
.h36{height:32.767031px;}
.h1a{height:33.120000px;}
.h42{height:33.465000px;}
.h24{height:33.480703px;}
.h34{height:34.005000px;}
.h35{height:35.085000px;}
.h2d{height:35.357344px;}
.h52{height:37.440000px;}
.h48{height:38.145000px;}
.h4c{height:38.160000px;}
.h49{height:38.325000px;}
.h4d{height:38.340000px;}
.h39{height:38.505000px;}
.h47{height:39.045000px;}
.h30{height:40.125000px;}
.h10{height:40.843828px;}
.h3f{height:41.925000px;}
.h53{height:41.940000px;}
.h55{height:42.660000px;}
.h56{height:42.840000px;}
.h58{height:43.005000px;}
.h12{height:43.282266px;}
.h1c{height:43.380000px;}
.h14{height:45.060117px;}
.h27{height:45.197800px;}
.h31{height:45.509766px;}
.h11{height:45.720703px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2e{height:48.389766px;}
.h16{height:50.597578px;}
.h54{height:52.207031px;}
.h2{height:55.080000px;}
.h26{height:55.425896px;}
.h25{height:55.825312px;}
.hb{height:56.084062px;}
.h2b{height:57.985313px;}
.h2f{height:62.975391px;}
.h50{height:63.202500px;}
.h2a{height:65.135391px;}
.he{height:71.324297px;}
.h37{height:73.080703px;}
.h5{height:78.030000px;}
.hc{height:81.078047px;}
.h18{height:83.880000px;}
.h29{height:84.438794px;}
.hd{height:86.564531px;}
.h17{height:87.660000px;}
.h15{height:88.020000px;}
.h4{height:119.055004px;}
.h9{height:145.940977px;}
.hf{height:326.190000px;}
.h5a{height:395.460000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.h2c{height:1263.044910px;}
.h8{height:1263.060000px;}
.w5{width:12.960000px;}
.w15{width:26.324859px;}
.w36{width:45.216000px;}
.w12{width:58.845000px;}
.w26{width:74.361000px;}
.w10{width:74.376000px;}
.w11{width:74.505000px;}
.w13{width:75.801000px;}
.w14{width:75.945000px;}
.w23{width:84.960000px;}
.w2c{width:85.125000px;}
.w2a{width:85.140000px;}
.w24{width:85.176000px;}
.w1e{width:91.116000px;}
.w1f{width:91.245000px;}
.w1d{width:91.260000px;}
.w20{width:91.281000px;}
.w21{width:92.325000px;}
.w2b{width:95.601000px;}
.w27{width:95.745000px;}
.w17{width:106.005000px;}
.w1a{width:106.401000px;}
.w34{width:107.841000px;}
.w33{width:116.841000px;}
.w30{width:121.491000px;}
.w35{width:121.500000px;}
.w25{width:127.605000px;}
.w8{width:129.780000px;}
.w9{width:130.320000px;}
.w32{width:138.225000px;}
.wa{width:138.780000px;}
.wb{width:147.771000px;}
.w19{width:148.845000px;}
.w18{width:148.881000px;}
.we{width:148.896000px;}
.wc{width:171.195000px;}
.w29{width:180.921000px;}
.wf{width:210.615000px;}
.w22{width:212.601000px;}
.w28{width:212.790000px;}
.w1c{width:223.221000px;}
.w2f{width:234.030000px;}
.w2e{width:265.881000px;}
.w31{width:274.560000px;}
.w4{width:333.741000px;}
.w6{width:333.795000px;}
.w37{width:350.835000px;}
.wd{width:359.535000px;}
.w39{width:396.066000px;}
.w3a{width:578.160000px;}
.w1b{width:584.550000px;}
.w2{width:637.794021px;}
.w38{width:651.150000px;}
.w7{width:671.130000px;}
.w2d{width:680.670000px;}
.w0{width:892.912500px;}
.w16{width:892.957500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x43{left:1.953048px;}
.xa{left:4.131000px;}
.x2f{left:6.105000px;}
.x2a{left:8.091000px;}
.x66{left:9.720000px;}
.xf{left:10.791000px;}
.x42{left:11.800760px;}
.x39{left:14.025000px;}
.x37{left:15.645000px;}
.x2c{left:17.985000px;}
.x1c{left:20.085000px;}
.x35{left:21.240000px;}
.x7a{left:22.530000px;}
.x1f{left:24.195000px;}
.x40{left:26.085000px;}
.x3a{left:28.065000px;}
.x3c{left:29.505000px;}
.x23{left:31.215000px;}
.x60{left:32.925000px;}
.x3f{left:34.050000px;}
.x6f{left:35.085000px;}
.x15{left:36.390000px;}
.x3d{left:37.830000px;}
.x67{left:39.045000px;}
.x54{left:40.530000px;}
.x5f{left:42.105000px;}
.x5c{left:43.185000px;}
.x52{left:44.310000px;}
.x18{left:46.110000px;}
.x4f{left:47.145000px;}
.x78{left:48.240000px;}
.x57{left:49.665000px;}
.x7b{left:50.745000px;}
.x50{left:52.365000px;}
.x31{left:53.850000px;}
.x55{left:56.730000px;}
.x70{left:57.990000px;}
.x68{left:60.285000px;}
.x53{left:61.770000px;}
.x69{left:63.705000px;}
.x19{left:64.830000px;}
.x34{left:69.690000px;}
.x33{left:71.445000px;}
.x56{left:74.325000px;}
.x3e{left:78.150000px;}
.x30{left:90.750000px;}
.xe{left:99.945000px;}
.x1{left:102.045000px;}
.x2e{left:104.970000px;}
.x2{left:106.297500px;}
.x29{left:107.325000px;}
.x4a{left:111.456000px;}
.x73{left:121.005000px;}
.x7{left:123.876000px;}
.x71{left:131.976000px;}
.xd{left:133.236000px;}
.x4b{left:147.636000px;}
.x4c{left:154.305000px;}
.x6{left:156.090000px;}
.x7d{left:157.320000px;}
.x58{left:158.610000px;}
.x14{left:167.040000px;}
.x6a{left:170.850000px;}
.x41{left:179.715000px;}
.x24{left:181.290000px;}
.x9{left:185.610000px;}
.x17{left:187.590000px;}
.x16{left:189.210000px;}
.x5{left:196.410000px;}
.x4{left:203.484001px;}
.x44{left:205.950000px;}
.x25{left:212.430000px;}
.x74{left:242.505000px;}
.x28{left:246.270000px;}
.x2b{left:255.105000px;}
.x4d{left:260.325000px;}
.x7e{left:261.690000px;}
.x11{left:272.910000px;}
.x8{left:279.750000px;}
.x45{left:286.972500px;}
.x46{left:292.755000px;}
.x61{left:319.035000px;}
.x49{left:322.455000px;}
.x59{left:329.655000px;}
.x77{left:350.355000px;}
.x72{left:368.895000px;}
.x6b{left:372.135000px;}
.x1e{left:378.900000px;}
.x26{left:390.855000px;}
.x62{left:403.995000px;}
.x22{left:408.315000px;}
.x20{left:411.735000px;}
.x13{left:415.515000px;}
.x21{left:419.475000px;}
.x5a{left:420.915000px;}
.x2d{left:426.315000px;}
.x27{left:432.795000px;}
.xb{left:440.175000px;}
.xc{left:453.135000px;}
.x3{left:454.959000px;}
.x6c{left:457.275000px;}
.x79{left:471.855000px;}
.x4e{left:483.600000px;}
.x63{left:489.180000px;}
.x36{left:500.700000px;}
.x5b{left:512.040000px;}
.x75{left:517.080000px;}
.x32{left:575.220000px;}
.x1b{left:593.640000px;}
.x5d{left:603.300000px;}
.x6d{left:606.180000px;}
.x64{left:616.800000px;}
.x1a{left:626.685000px;}
.x51{left:632.460000px;}
.x38{left:634.080000px;}
.x1d{left:638.205000px;}
.x76{left:655.320000px;}
.x10{left:669.390000px;}
.x65{left:691.170000px;}
.x5e{left:694.590000px;}
.x6e{left:701.790000px;}
.x47{left:707.347500px;}
.x3b{left:709.890000px;}
.x48{left:713.130000px;}
.x12{left:727.890000px;}
.x7c{left:735.810000px;}
@media print{
.vf{vertical-align:-21.760000pt;}
.v4{vertical-align:-12.160000pt;}
.v2{vertical-align:-10.880000pt;}
.vc{vertical-align:-9.600000pt;}
.v10{vertical-align:-7.040000pt;}
.v3{vertical-align:-5.120000pt;}
.v7{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.920000pt;}
.vb{vertical-align:5.120000pt;}
.va{vertical-align:7.040000pt;}
.vd{vertical-align:9.600000pt;}
.v1{vertical-align:10.880000pt;}
.v5{vertical-align:12.160000pt;}
.v8{vertical-align:14.080000pt;}
.v12{vertical-align:17.280000pt;}
.ve{vertical-align:21.760000pt;}
.v11{vertical-align:31.360000pt;}
.v9{vertical-align:33.920000pt;}
.ls2c{letter-spacing:-0.874667pt;}
.ls8a{letter-spacing:-0.784000pt;}
.ls10{letter-spacing:-0.714667pt;}
.ls95{letter-spacing:-0.688000pt;}
.ls4a{letter-spacing:-0.677333pt;}
.ls21{letter-spacing:-0.597333pt;}
.ls62{letter-spacing:-0.544000pt;}
.ls4d{letter-spacing:-0.412800pt;}
.ls8e{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.297067pt;}
.ls74{letter-spacing:-0.272000pt;}
.ls98{letter-spacing:-0.256000pt;}
.ls94{letter-spacing:-0.240000pt;}
.lsd{letter-spacing:-0.227200pt;}
.ls4e{letter-spacing:-0.214933pt;}
.ls2b{letter-spacing:-0.208000pt;}
.ls14{letter-spacing:-0.201067pt;}
.ls15{letter-spacing:-0.197333pt;}
.ls97{letter-spacing:-0.176000pt;}
.ls60{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.153600pt;}
.ls89{letter-spacing:-0.143467pt;}
.ls29{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.118400pt;}
.ls92{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.075733pt;}
.ls88{letter-spacing:-0.061333pt;}
.ls4c{letter-spacing:-0.025600pt;}
.ls96{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.005760pt;}
.ls5{letter-spacing:0.009600pt;}
.ls25{letter-spacing:0.011520pt;}
.ls70{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.020480pt;}
.ls75{letter-spacing:0.032000pt;}
.ls6{letter-spacing:0.034560pt;}
.ls16{letter-spacing:0.043520pt;}
.ls50{letter-spacing:0.044800pt;}
.ls61{letter-spacing:0.048000pt;}
.ls5f{letter-spacing:0.048640pt;}
.ls39{letter-spacing:0.055040pt;}
.lsc{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.066667pt;}
.ls4{letter-spacing:0.069760pt;}
.ls28{letter-spacing:0.080000pt;}
.ls7f{letter-spacing:0.084267pt;}
.ls24{letter-spacing:0.089600pt;}
.ls7b{letter-spacing:0.094933pt;}
.ls8f{letter-spacing:0.096000pt;}
.ls45{letter-spacing:0.122667pt;}
.ls2d{letter-spacing:0.153600pt;}
.ls73{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.166400pt;}
.ls48{letter-spacing:0.176640pt;}
.ls53{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.199467pt;}
.ls3{letter-spacing:0.206720pt;}
.ls7{letter-spacing:0.219520pt;}
.ls2{letter-spacing:0.224000pt;}
.ls4b{letter-spacing:0.227200pt;}
.ls8{letter-spacing:0.240000pt;}
.ls87{letter-spacing:0.256000pt;}
.ls7d{letter-spacing:0.271467pt;}
.ls1d{letter-spacing:0.274133pt;}
.ls2a{letter-spacing:0.288000pt;}
.ls72{letter-spacing:0.307200pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.326400pt;}
.ls49{letter-spacing:0.336640pt;}
.ls27{letter-spacing:0.384000pt;}
.ls93{letter-spacing:0.400000pt;}
.ls22{letter-spacing:0.486400pt;}
.ls4f{letter-spacing:0.547840pt;}
.ls5b{letter-spacing:0.560000pt;}
.ls71{letter-spacing:0.608000pt;}
.ls6f{letter-spacing:0.704000pt;}
.ls7c{letter-spacing:0.793600pt;}
.ls6e{letter-spacing:0.848000pt;}
.ls65{letter-spacing:0.852480pt;}
.ls85{letter-spacing:0.864000pt;}
.ls57{letter-spacing:0.880000pt;}
.ls90{letter-spacing:0.960000pt;}
.ls5a{letter-spacing:1.008000pt;}
.ls37{letter-spacing:1.062400pt;}
.ls18{letter-spacing:1.126400pt;}
.ls33{letter-spacing:1.164800pt;}
.ls86{letter-spacing:1.280000pt;}
.ls66{letter-spacing:1.315840pt;}
.ls54{letter-spacing:1.392000pt;}
.ls3e{letter-spacing:1.433600pt;}
.lsa{letter-spacing:1.543680pt;}
.ls80{letter-spacing:1.600000pt;}
.ls55{letter-spacing:1.648000pt;}
.ls1e{letter-spacing:1.650347pt;}
.ls5e{letter-spacing:1.696000pt;}
.ls77{letter-spacing:1.703680pt;}
.ls1a{letter-spacing:1.766400pt;}
.ls64{letter-spacing:2.052480pt;}
.ls56{letter-spacing:2.240000pt;}
.ls76{letter-spacing:2.242560pt;}
.ls3d{letter-spacing:2.406400pt;}
.ls68{letter-spacing:2.692480pt;}
.ls59{letter-spacing:2.713600pt;}
.ls7e{letter-spacing:2.787200pt;}
.ls58{letter-spacing:2.880000pt;}
.ls5c{letter-spacing:2.886400pt;}
.ls36{letter-spacing:2.892800pt;}
.ls1b{letter-spacing:3.046400pt;}
.ls3c{letter-spacing:3.052800pt;}
.ls83{letter-spacing:3.073920pt;}
.ls52{letter-spacing:3.427200pt;}
.ls38{letter-spacing:3.532800pt;}
.ls34{letter-spacing:3.569280pt;}
.ls1f{letter-spacing:3.686400pt;}
.ls32{letter-spacing:4.172800pt;}
.ls1c{letter-spacing:4.326400pt;}
.ls42{letter-spacing:4.332800pt;}
.ls44{letter-spacing:4.966400pt;}
.ls5d{letter-spacing:5.440000pt;}
.ls79{letter-spacing:5.606400pt;}
.ls78{letter-spacing:6.720000pt;}
.ls91{letter-spacing:8.000000pt;}
.ls84{letter-spacing:8.806400pt;}
.ls13{letter-spacing:10.086400pt;}
.ls6c{letter-spacing:10.800000pt;}
.ls63{letter-spacing:12.044800pt;}
.ls82{letter-spacing:12.608427pt;}
.ls51{letter-spacing:12.684800pt;}
.ls40{letter-spacing:12.976640pt;}
.ls31{letter-spacing:13.255680pt;}
.ls19{letter-spacing:13.286400pt;}
.ls6b{letter-spacing:13.593600pt;}
.ls81{letter-spacing:14.212480pt;}
.ls6d{letter-spacing:14.233600pt;}
.ls23{letter-spacing:14.726400pt;}
.ls8c{letter-spacing:14.831147pt;}
.ls69{letter-spacing:14.852480pt;}
.ls7a{letter-spacing:15.148800pt;}
.ls67{letter-spacing:15.492480pt;}
.ls41{letter-spacing:15.692800pt;}
.ls47{letter-spacing:16.176640pt;}
.ls43{letter-spacing:16.311467pt;}
.ls3a{letter-spacing:16.332800pt;}
.ls2e{letter-spacing:17.126400pt;}
.ls30{letter-spacing:18.892800pt;}
.ls8b{letter-spacing:19.427200pt;}
.ls3f{letter-spacing:19.511467pt;}
.ls46{letter-spacing:19.532800pt;}
.ls3b{letter-spacing:20.172800pt;}
.ls8d{letter-spacing:142.634667pt;}
.ls6a{letter-spacing:179.046400pt;}
.ls35{letter-spacing:183.833600pt;}
.ws39{word-spacing:-29.162880pt;}
.ws5{word-spacing:-16.473600pt;}
.ws6{word-spacing:-16.246400pt;}
.ws30{word-spacing:-13.273600pt;}
.wse{word-spacing:-13.227733pt;}
.ws14{word-spacing:-13.120000pt;}
.ws42{word-spacing:-13.048533pt;}
.ws3f{word-spacing:-13.037867pt;}
.ws2d{word-spacing:-13.002240pt;}
.wsd{word-spacing:-12.974080pt;}
.ws4{word-spacing:-12.953600pt;}
.ws23{word-spacing:-12.928000pt;}
.ws4b{word-spacing:-12.892267pt;}
.wsf{word-spacing:-12.656533pt;}
.ws15{word-spacing:-12.276267pt;}
.ws10{word-spacing:-11.697920pt;}
.wsc{word-spacing:-10.947733pt;}
.ws13{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.784000pt;}
.ws50{word-spacing:-10.656000pt;}
.ws11{word-spacing:-10.640000pt;}
.ws37{word-spacing:-10.576000pt;}
.ws7{word-spacing:-10.560000pt;}
.ws4f{word-spacing:-10.480000pt;}
.ws12{word-spacing:-10.432000pt;}
.ws51{word-spacing:-10.384000pt;}
.ws52{word-spacing:-10.304000pt;}
.ws3b{word-spacing:-10.288000pt;}
.ws9{word-spacing:-10.236800pt;}
.ws1b{word-spacing:-9.660800pt;}
.ws8{word-spacing:-9.433600pt;}
.wsb{word-spacing:-9.357867pt;}
.ws27{word-spacing:-9.020800pt;}
.wsa{word-spacing:-8.718933pt;}
.ws16{word-spacing:-8.166400pt;}
.ws3a{word-spacing:-7.929600pt;}
.ws38{word-spacing:-7.910400pt;}
.ws34{word-spacing:-7.603200pt;}
.ws2{word-spacing:-7.104000pt;}
.ws3e{word-spacing:-7.072000pt;}
.ws1{word-spacing:-7.040000pt;}
.ws36{word-spacing:-5.913600pt;}
.ws4d{word-spacing:-0.616960pt;}
.ws48{word-spacing:-0.437333pt;}
.ws44{word-spacing:-0.416000pt;}
.ws1d{word-spacing:-0.337920pt;}
.ws2f{word-spacing:-0.336000pt;}
.ws19{word-spacing:-0.133120pt;}
.ws4a{word-spacing:-0.053333pt;}
.ws17{word-spacing:-0.039088pt;}
.ws35{word-spacing:-0.032000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.023040pt;}
.ws32{word-spacing:0.099840pt;}
.ws33{word-spacing:0.129707pt;}
.ws25{word-spacing:0.183040pt;}
.ws3d{word-spacing:0.224000pt;}
.ws20{word-spacing:0.302080pt;}
.ws2e{word-spacing:0.304000pt;}
.ws41{word-spacing:0.408747pt;}
.ws46{word-spacing:0.500907pt;}
.ws45{word-spacing:0.522240pt;}
.ws49{word-spacing:0.608000pt;}
.ws2c{word-spacing:1.533440pt;}
.ws47{word-spacing:1.584000pt;}
.ws4c{word-spacing:2.019840pt;}
.ws40{word-spacing:2.528000pt;}
.ws1e{word-spacing:2.583040pt;}
.ws28{word-spacing:3.105280pt;}
.ws2b{word-spacing:3.201707pt;}
.ws1c{word-spacing:3.223040pt;}
.ws29{word-spacing:3.329707pt;}
.ws31{word-spacing:3.383040pt;}
.ws21{word-spacing:3.745280pt;}
.ws22{word-spacing:5.418880pt;}
.ws43{word-spacing:5.904640pt;}
.ws26{word-spacing:6.058880pt;}
.ws3c{word-spacing:6.282240pt;}
.ws18{word-spacing:6.935680pt;}
.ws2a{word-spacing:8.618880pt;}
.ws1f{word-spacing:9.004800pt;}
.ws24{word-spacing:9.258880pt;}
.ws4e{word-spacing:117.792000pt;}
._28{margin-left:-69.617067pt;}
._20{margin-left:-53.728065pt;}
._1f{margin-left:-7.090773pt;}
._21{margin-left:-6.035200pt;}
._27{margin-left:-5.001813pt;}
._10{margin-left:-3.580587pt;}
._f{margin-left:-2.388053pt;}
._0{margin-left:-1.182080pt;}
._3{width:0.963840pt;}
._8{width:2.108160pt;}
._2{width:3.678080pt;}
._1{width:4.608000pt;}
._5{width:5.537920pt;}
._11{width:6.594560pt;}
._4{width:7.968000pt;}
._9{width:9.120000pt;}
._12{width:10.256000pt;}
._6{width:11.712000pt;}
._26{width:12.635307pt;}
._d{width:14.262827pt;}
._c{width:15.404160pt;}
._19{width:16.499200pt;}
._e{width:17.585280pt;}
._15{width:19.312640pt;}
._7{width:20.784000pt;}
._a{width:21.718827pt;}
._1b{width:23.543040pt;}
._1a{width:24.459307pt;}
._1c{width:25.608533pt;}
._b{width:27.456000pt;}
._16{width:28.733440pt;}
._1e{width:45.867520pt;}
._1d{width:46.868480pt;}
._24{width:52.852907pt;}
._25{width:97.139627pt;}
._22{width:101.604053pt;}
._13{width:111.710187pt;}
._29{width:116.106667pt;}
._17{width:141.110187pt;}
._23{width:179.046400pt;}
._14{width:180.851200pt;}
._18{width:182.566400pt;}
.fs13{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs12{font-size:34.560000pt;}
.fsf{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs10{font-size:39.087531pt;}
.fsc{font-size:42.880000pt;}
.fsd{font-size:45.440000pt;}
.fs8{font-size:48.000000pt;}
.fse{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:90.880000pt;}
.fs11{font-size:101.329026pt;}
.fs6{font-size:138.880000pt;}
.yb1{bottom:-7.133333pt;}
.y0{bottom:0.000000pt;}
.y1d7{bottom:2.706667pt;}
.y1b2{bottom:2.720000pt;}
.y1da{bottom:2.866667pt;}
.y162{bottom:2.880000pt;}
.y177{bottom:3.200000pt;}
.y17b{bottom:3.680000pt;}
.y151{bottom:3.986667pt;}
.y62{bottom:4.320000pt;}
.y148{bottom:4.960000pt;}
.yc5{bottom:5.106667pt;}
.yeb{bottom:5.198549pt;}
.y159{bottom:5.266667pt;}
.yd4{bottom:5.280000pt;}
.y157{bottom:5.426667pt;}
.yb9{bottom:5.666667pt;}
.y1ac{bottom:5.760000pt;}
.ycb{bottom:5.920000pt;}
.y1a8{bottom:6.240000pt;}
.y154{bottom:6.546667pt;}
.y146{bottom:6.560000pt;}
.y14c{bottom:6.866667pt;}
.yd6{bottom:6.880000pt;}
.y166{bottom:7.040000pt;}
.y21e{bottom:7.133333pt;}
.y168{bottom:7.200000pt;}
.y14a{bottom:7.226667pt;}
.y171{bottom:7.520000pt;}
.ycf{bottom:7.680000pt;}
.yb0{bottom:7.746667pt;}
.y17d{bottom:7.840000pt;}
.yc9{bottom:8.000000pt;}
.yc1{bottom:8.480000pt;}
.ycd{bottom:8.640000pt;}
.yd1{bottom:8.960000pt;}
.y1b0{bottom:9.760000pt;}
.y16d{bottom:9.920000pt;}
.y175{bottom:10.240000pt;}
.yc3{bottom:10.560000pt;}
.y179{bottom:10.720000pt;}
.y14e{bottom:11.026667pt;}
.y155{bottom:11.346667pt;}
.y14f{bottom:11.666667pt;}
.y1df{bottom:12.000000pt;}
.y1e2{bottom:12.640000pt;}
.y1ad{bottom:12.800000pt;}
.y15e{bottom:12.960000pt;}
.y1a9{bottom:13.280000pt;}
.y143{bottom:13.600000pt;}
.y144{bottom:14.240000pt;}
.y172{bottom:14.560000pt;}
.yc7{bottom:15.040000pt;}
.y15f{bottom:15.680000pt;}
.y1b1{bottom:16.800000pt;}
.y1d6{bottom:16.826667pt;}
.y1d9{bottom:16.946667pt;}
.y161{bottom:16.960000pt;}
.y176{bottom:17.120000pt;}
.yed{bottom:17.328957pt;}
.y17a{bottom:17.760000pt;}
.y150{bottom:18.066667pt;}
.y3c{bottom:18.880000pt;}
.y153{bottom:19.666667pt;}
.y1ab{bottom:19.840000pt;}
.y15d{bottom:20.000000pt;}
.y1a7{bottom:20.320000pt;}
.y145{bottom:20.640000pt;}
.y170{bottom:21.600000pt;}
.yc8{bottom:22.080000pt;}
.y4f{bottom:22.240000pt;}
.y21c{bottom:24.133333pt;}
.y1dd{bottom:25.760000pt;}
.y1de{bottom:26.080000pt;}
.y1e1{bottom:26.720000pt;}
.y1e4{bottom:26.880000pt;}
.y1e8{bottom:27.040000pt;}
.ybf{bottom:33.120000pt;}
.yb4{bottom:34.466667pt;}
.y3b{bottom:35.040000pt;}
.y4e{bottom:37.120000pt;}
.yec{bottom:38.291627pt;}
.y216{bottom:39.266667pt;}
.y1d4{bottom:45.000000pt;}
.y3a{bottom:51.200000pt;}
.y4d{bottom:55.680000pt;}
.y5{bottom:59.133337pt;}
.yb6{bottom:64.706667pt;}
.yac{bottom:66.786667pt;}
.y39{bottom:67.360000pt;}
.y4c{bottom:69.600000pt;}
.y24{bottom:77.312000pt;}
.y64{bottom:81.792000pt;}
.y38{bottom:83.520000pt;}
.y4b{bottom:83.680000pt;}
.y4{bottom:86.333337pt;}
.y23{bottom:86.752000pt;}
.y217{bottom:92.800000pt;}
.y37{bottom:99.706667pt;}
.y4a{bottom:102.426667pt;}
.y36{bottom:115.866667pt;}
.y49{bottom:116.506667pt;}
.y21{bottom:123.790666pt;}
.y21d{bottom:129.573333pt;}
.y35{bottom:132.026667pt;}
.y48{bottom:135.226667pt;}
.y12d{bottom:135.706667pt;}
.y1a3{bottom:138.586667pt;}
.y60{bottom:139.706667pt;}
.y1f3{bottom:144.026667pt;}
.ye8{bottom:144.826667pt;}
.y96{bottom:145.786667pt;}
.y218{bottom:146.333333pt;}
.y34{bottom:148.346667pt;}
.y1d0{bottom:149.146667pt;}
.y15a{bottom:149.786667pt;}
.y12c{bottom:150.426667pt;}
.y90{bottom:152.026667pt;}
.y12b{bottom:153.146667pt;}
.y47{bottom:153.786667pt;}
.y1a2{bottom:156.666667pt;}
.y186{bottom:156.826667pt;}
.y5f{bottom:157.626667pt;}
.y1f2{bottom:162.106667pt;}
.y251{bottom:162.586667pt;}
.ye7{bottom:162.906667pt;}
.y95{bottom:163.866667pt;}
.y10a{bottom:164.346667pt;}
.y158{bottom:164.360000pt;}
.y33{bottom:164.506667pt;}
.y12a{bottom:165.146667pt;}
.ya9{bottom:166.426667pt;}
.y1cf{bottom:167.066667pt;}
.y46{bottom:167.866667pt;}
.y8f{bottom:170.106667pt;}
.y1a1{bottom:174.746667pt;}
.y185{bottom:174.906667pt;}
.y18{bottom:175.052000pt;}
.y5e{bottom:175.706667pt;}
.y250{bottom:177.466667pt;}
.y129{bottom:180.026667pt;}
.y1f1{bottom:180.186667pt;}
.y32{bottom:180.666667pt;}
.ye6{bottom:180.986667pt;}
.y45{bottom:181.786667pt;}
.y94{bottom:181.946667pt;}
.y109{bottom:182.426667pt;}
.y156{bottom:183.080000pt;}
.ya8{bottom:184.506667pt;}
.y1ce{bottom:185.146667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y24f{bottom:192.186667pt;}
.y1a0{bottom:192.666667pt;}
.y184{bottom:192.986667pt;}
.y5d{bottom:193.786667pt;}
.y128{bottom:194.746667pt;}
.y44{bottom:195.866667pt;}
.y31{bottom:196.826667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y206{bottom:197.466667pt;}
.y1f0{bottom:198.266667pt;}
.ye5{bottom:198.906667pt;}
.ya7{bottom:199.386667pt;}
.y219{bottom:199.840000pt;}
.y93{bottom:200.026667pt;}
.y108{bottom:200.506667pt;}
.y152{bottom:202.120000pt;}
.y1cd{bottom:203.226667pt;}
.y8e{bottom:204.026667pt;}
.y24e{bottom:206.906667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y127{bottom:209.466667pt;}
.y19f{bottom:210.746667pt;}
.y183{bottom:211.066667pt;}
.y5c{bottom:211.866667pt;}
.y30{bottom:212.986667pt;}
.y43{bottom:214.266667pt;}
.y1ef{bottom:216.346667pt;}
.ye4{bottom:216.986667pt;}
.y92{bottom:218.106667pt;}
.y107{bottom:218.426667pt;}
.y1cc{bottom:221.306667pt;}
.y24d{bottom:221.786667pt;}
.y214{bottom:221.946667pt;}
.y126{bottom:224.346667pt;}
.y42{bottom:227.386667pt;}
.y19e{bottom:228.826667pt;}
.y2f{bottom:229.146667pt;}
.y5b{bottom:229.946667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.ybd{bottom:233.306667pt;}
.y14d{bottom:233.960000pt;}
.ybb{bottom:234.106667pt;}
.ye3{bottom:235.066667pt;}
.y205{bottom:235.706667pt;}
.y91{bottom:236.026667pt;}
.y106{bottom:236.506667pt;}
.y213{bottom:236.666667pt;}
.y215{bottom:237.280000pt;}
.y125{bottom:239.066667pt;}
.y1cb{bottom:239.386667pt;}
.y41{bottom:240.506667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y2e{bottom:245.306667pt;}
.y19d{bottom:246.906667pt;}
.y182{bottom:247.066667pt;}
.y5a{bottom:248.026667pt;}
.ybc{bottom:249.626667pt;}
.yba{bottom:250.266667pt;}
.y24c{bottom:251.226667pt;}
.ye2{bottom:253.146667pt;}
.y21a{bottom:253.373333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y40{bottom:253.626667pt;}
.y124{bottom:253.786667pt;}
.y8d{bottom:254.106667pt;}
.y105{bottom:254.586667pt;}
.y1ca{bottom:257.786667pt;}
.y3d{bottom:260.026667pt;}
.y2d{bottom:261.466667pt;}
.y14b{bottom:264.840000pt;}
.y19c{bottom:264.986667pt;}
.y59{bottom:265.946667pt;}
.y24b{bottom:266.106667pt;}
.y3f{bottom:266.746667pt;}
.y123{bottom:268.666667pt;}
.ye1{bottom:271.226667pt;}
.y204{bottom:271.866667pt;}
.y8c{bottom:272.186667pt;}
.y104{bottom:272.666667pt;}
.y181{bottom:275.546667pt;}
.y1c9{bottom:275.706667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y2c{bottom:275.866667pt;}
.y3e{bottom:279.866667pt;}
.y24a{bottom:280.826667pt;}
.y19b{bottom:283.066667pt;}
.y122{bottom:283.386667pt;}
.y58{bottom:284.026667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y149{bottom:287.560000pt;}
.ye0{bottom:289.306667pt;}
.y180{bottom:289.626667pt;}
.y203{bottom:289.946667pt;}
.y8b{bottom:290.266667pt;}
.y103{bottom:290.746667pt;}
.y1c8{bottom:293.826667pt;}
.y249{bottom:295.586667pt;}
.y1ee{bottom:300.386667pt;}
.y121{bottom:300.866667pt;}
.y19a{bottom:301.026667pt;}
.y57{bottom:302.146667pt;}
.y21b{bottom:306.906667pt;}
.ydf{bottom:307.426667pt;}
.y202{bottom:308.066667pt;}
.y8a{bottom:308.386667pt;}
.y102{bottom:308.866667pt;}
.yf{bottom:309.452000pt;}
.y17f{bottom:309.666667pt;}
.y147{bottom:310.306667pt;}
.y248{bottom:310.466667pt;}
.y1c7{bottom:311.906667pt;}
.y120{bottom:312.866667pt;}
.y1ed{bottom:318.466667pt;}
.y56{bottom:320.226667pt;}
.y199{bottom:321.026667pt;}
.y247{bottom:325.186667pt;}
.yde{bottom:325.346667pt;}
.y201{bottom:326.146667pt;}
.y89{bottom:326.466667pt;}
.y101{bottom:326.786667pt;}
.y142{bottom:329.186667pt;}
.y1c6{bottom:329.986667pt;}
.y17e{bottom:332.226667pt;}
.y11f{bottom:334.626667pt;}
.y55{bottom:338.306667pt;}
.y246{bottom:339.906667pt;}
.y198{bottom:340.866667pt;}
.ydd{bottom:343.426667pt;}
.ye{bottom:343.809333pt;}
.y200{bottom:344.066667pt;}
.y88{bottom:344.546667pt;}
.y100{bottom:344.866667pt;}
.y1ec{bottom:346.786667pt;}
.y1c5{bottom:348.066667pt;}
.y11e{bottom:352.706667pt;}
.y245{bottom:354.146667pt;}
.y54{bottom:356.386667pt;}
.y17c{bottom:356.866667pt;}
.yab{bottom:357.280000pt;}
.yb3{bottom:357.600000pt;}
.y197{bottom:358.946667pt;}
.ydc{bottom:361.506667pt;}
.y1ff{bottom:362.146667pt;}
.y87{bottom:362.466667pt;}
.yd{bottom:362.706666pt;}
.yff{bottom:362.946667pt;}
.y1eb{bottom:363.746667pt;}
.y1c4{bottom:366.146667pt;}
.y244{bottom:368.706667pt;}
.y11d{bottom:370.786667pt;}
.y53{bottom:374.306667pt;}
.yb5{bottom:375.586667pt;}
.yb8{bottom:377.666667pt;}
.y196{bottom:378.786667pt;}
.yaf{bottom:379.746667pt;}
.y1fe{bottom:380.226667pt;}
.y86{bottom:380.546667pt;}
.yfe{bottom:381.026667pt;}
.y178{bottom:381.666667pt;}
.y243{bottom:383.586667pt;}
.y1c3{bottom:384.066667pt;}
.y141{bottom:385.666667pt;}
.ydb{bottom:386.786667pt;}
.y11c{bottom:388.866667pt;}
.y1ea{bottom:389.026667pt;}
.y52{bottom:392.386667pt;}
.yae{bottom:394.466667pt;}
.y195{bottom:396.866667pt;}
.y1fd{bottom:398.306667pt;}
.y85{bottom:398.626667pt;}
.y1c2{bottom:402.146667pt;}
.yda{bottom:404.386667pt;}
.yb7{bottom:407.106667pt;}
.yb2{bottom:408.386667pt;}
.yad{bottom:409.346667pt;}
.y51{bottom:410.466667pt;}
.y174{bottom:412.226667pt;}
.y242{bottom:413.026667pt;}
.y194{bottom:414.946667pt;}
.yfd{bottom:415.106667pt;}
.y1fc{bottom:416.386667pt;}
.y84{bottom:416.706667pt;}
.yd9{bottom:419.106667pt;}
.y1c1{bottom:420.226667pt;}
.y11b{bottom:422.786667pt;}
.y140{bottom:427.746667pt;}
.y241{bottom:427.906667pt;}
.y50{bottom:428.546667pt;}
.y193{bottom:433.026667pt;}
.yd8{bottom:433.826667pt;}
.y1fb{bottom:434.466667pt;}
.y83{bottom:434.786667pt;}
.y1c0{bottom:438.306667pt;}
.y1e9{bottom:440.386667pt;}
.y173{bottom:441.666667pt;}
.y2b{bottom:442.466667pt;}
.y240{bottom:442.626667pt;}
.y13f{bottom:445.666667pt;}
.yd7{bottom:445.986667pt;}
.yc{bottom:446.990669pt;}
.yfc{bottom:449.186667pt;}
.y192{bottom:450.946667pt;}
.y1fa{bottom:452.546667pt;}
.y82{bottom:452.866667pt;}
.y1e7{bottom:455.106667pt;}
.y1bf{bottom:456.386667pt;}
.y11a{bottom:456.866667pt;}
.y23f{bottom:457.346667pt;}
.yb{bottom:462.990669pt;}
.y13e{bottom:463.746667pt;}
.yfb{bottom:467.266667pt;}
.y191{bottom:469.026667pt;}
.y16f{bottom:470.466667pt;}
.y81{bottom:470.786667pt;}
.y23e{bottom:472.226667pt;}
.yd5{bottom:473.986667pt;}
.y1be{bottom:474.466667pt;}
.y119{bottom:474.946667pt;}
.ya{bottom:478.990666pt;}
.y13d{bottom:481.826667pt;}
.yfa{bottom:485.186667pt;}
.y23d{bottom:486.946667pt;}
.y190{bottom:487.106667pt;}
.y1f9{bottom:488.546667pt;}
.y80{bottom:488.866667pt;}
.y1bd{bottom:492.546667pt;}
.y117{bottom:493.026667pt;}
.y1e6{bottom:493.346667pt;}
.y9{bottom:494.990666pt;}
.yd3{bottom:496.066667pt;}
.y118{bottom:496.386667pt;}
.y13c{bottom:499.906667pt;}
.y23c{bottom:501.666667pt;}
.yf9{bottom:503.266667pt;}
.y18f{bottom:505.186667pt;}
.y1f8{bottom:506.626667pt;}
.y7f{bottom:506.946667pt;}
.y16e{bottom:508.546667pt;}
.y1bc{bottom:510.466667pt;}
.y116{bottom:511.106667pt;}
.y1e5{bottom:512.066667pt;}
.yd2{bottom:515.106667pt;}
.y23b{bottom:516.546667pt;}
.y13b{bottom:517.986667pt;}
.yf8{bottom:521.346667pt;}
.y18e{bottom:523.266667pt;}
.y1f7{bottom:524.706667pt;}
.y7e{bottom:525.026667pt;}
.y1bb{bottom:528.546667pt;}
.y115{bottom:529.186667pt;}
.yaa{bottom:529.666667pt;}
.y23a{bottom:531.293333pt;}
.y13a{bottom:536.093333pt;}
.y16c{bottom:537.373333pt;}
.yd0{bottom:540.893333pt;}
.y18d{bottom:541.373333pt;}
.y1f6{bottom:542.813333pt;}
.y7d{bottom:543.133333pt;}
.y239{bottom:546.013333pt;}
.y1ba{bottom:546.653333pt;}
.y114{bottom:547.133333pt;}
.y139{bottom:554.173333pt;}
.yf7{bottom:555.453333pt;}
.y18c{bottom:559.293333pt;}
.y1f5{bottom:560.893333pt;}
.y7c{bottom:561.213333pt;}
.y113{bottom:565.213333pt;}
.yce{bottom:567.293333pt;}
.y16b{bottom:570.333333pt;}
.y138{bottom:572.093333pt;}
.y8{bottom:573.786667pt;}
.y1b9{bottom:574.653333pt;}
.y238{bottom:575.613333pt;}
.y18b{bottom:577.373333pt;}
.y1e3{bottom:578.813333pt;}
.y7b{bottom:579.133333pt;}
.y112{bottom:583.293333pt;}
.y1b8{bottom:586.813333pt;}
.yf6{bottom:589.533333pt;}
.y237{bottom:590.333333pt;}
.ycc{bottom:590.973333pt;}
.y7{bottom:592.685334pt;}
.y18a{bottom:595.453333pt;}
.y7a{bottom:597.213333pt;}
.y16a{bottom:598.653333pt;}
.ya6{bottom:599.453333pt;}
.y111{bottom:601.373333pt;}
.y236{bottom:605.213333pt;}
.y137{bottom:606.173333pt;}
.y1b6{bottom:606.813333pt;}
.yf5{bottom:607.613333pt;}
.y212{bottom:608.893333pt;}
.y189{bottom:613.533333pt;}
.y79{bottom:615.293333pt;}
.yca{bottom:616.573333pt;}
.y1e0{bottom:616.893333pt;}
.y169{bottom:618.013333pt;}
.y10f{bottom:619.453333pt;}
.y235{bottom:619.933333pt;}
.y110{bottom:622.813333pt;}
.yf4{bottom:625.533333pt;}
.y1b7{bottom:626.333333pt;}
.y188{bottom:631.613333pt;}
.y78{bottom:633.373333pt;}
.y234{bottom:634.653333pt;}
.yc6{bottom:637.373333pt;}
.y10e{bottom:637.533333pt;}
.y167{bottom:641.373333pt;}
.ya5{bottom:641.533333pt;}
.yf3{bottom:643.613333pt;}
.y6{bottom:645.598667pt;}
.y1b5{bottom:646.013333pt;}
.y233{bottom:649.533333pt;}
.y211{bottom:650.973333pt;}
.y77{bottom:651.453333pt;}
.y1dc{bottom:654.813333pt;}
.y10d{bottom:655.453333pt;}
.ya4{bottom:659.613333pt;}
.yf2{bottom:661.693333pt;}
.y232{bottom:664.253333pt;}
.y165{bottom:664.733333pt;}
.y3{bottom:668.977329pt;}
.y210{bottom:669.053333pt;}
.y76{bottom:669.533333pt;}
.y136{bottom:672.573333pt;}
.y10c{bottom:673.533333pt;}
.ybe{bottom:676.573333pt;}
.yc4{bottom:676.586667pt;}
.ya3{bottom:677.693333pt;}
.y231{bottom:678.973333pt;}
.yf1{bottom:679.773333pt;}
.y1b4{bottom:679.933333pt;}
.y75{bottom:687.453333pt;}
.y164{bottom:687.933333pt;}
.y1db{bottom:692.093333pt;}
.y230{bottom:693.853333pt;}
.yc2{bottom:695.613333pt;}
.ya2{bottom:695.773333pt;}
.y74{bottom:705.533333pt;}
.y20f{bottom:705.853333pt;}
.y135{bottom:707.453333pt;}
.y10b{bottom:708.093333pt;}
.y22f{bottom:708.573333pt;}
.y264{bottom:710.493333pt;}
.ya1{bottom:713.853333pt;}
.y1b3{bottom:714.013333pt;}
.y163{bottom:716.093333pt;}
.y22e{bottom:723.293333pt;}
.y73{bottom:723.613333pt;}
.y20e{bottom:723.933333pt;}
.yc0{bottom:725.693333pt;}
.y1d3{bottom:726.013333pt;}
.y1d8{bottom:726.026667pt;}
.y263{bottom:727.773333pt;}
.y2a{bottom:736.573333pt;}
.y22d{bottom:738.173333pt;}
.y134{bottom:741.373333pt;}
.y72{bottom:741.693333pt;}
.y20d{bottom:741.853333pt;}
.y262{bottom:742.653333pt;}
.y160{bottom:744.253333pt;}
.ya0{bottom:747.933333pt;}
.y1af{bottom:748.733333pt;}
.y22c{bottom:752.893333pt;}
.y1d5{bottom:754.186667pt;}
.y261{bottom:757.373333pt;}
.y133{bottom:759.453333pt;}
.y71{bottom:759.773333pt;}
.y20c{bottom:759.933333pt;}
.yf0{bottom:765.853333pt;}
.y22b{bottom:767.653333pt;}
.y29{bottom:771.973333pt;}
.y260{bottom:772.133333pt;}
.y15c{bottom:773.093333pt;}
.y132{bottom:777.573333pt;}
.y70{bottom:777.893333pt;}
.y20b{bottom:778.053333pt;}
.y2{bottom:781.661334pt;}
.y22a{bottom:782.533333pt;}
.yef{bottom:784.133333pt;}
.y25f{bottom:787.013333pt;}
.y131{bottom:795.493333pt;}
.y6f{bottom:795.973333pt;}
.y20a{bottom:796.133333pt;}
.y229{bottom:797.253333pt;}
.y9f{bottom:797.893333pt;}
.y1ae{bottom:800.773333pt;}
.y25e{bottom:801.733333pt;}
.y1d2{bottom:803.013333pt;}
.yee{bottom:803.813333pt;}
.y228{bottom:811.973333pt;}
.y130{bottom:813.573333pt;}
.y6e{bottom:813.893333pt;}
.y209{bottom:814.213333pt;}
.y9e{bottom:815.973333pt;}
.y25d{bottom:816.453333pt;}
.y28{bottom:819.973333pt;}
.y1d1{bottom:822.373333pt;}
.y227{bottom:826.693333pt;}
.y15b{bottom:828.133333pt;}
.y25c{bottom:831.333333pt;}
.y12f{bottom:831.653333pt;}
.y6d{bottom:831.973333pt;}
.y9d{bottom:834.053333pt;}
.yea{bottom:834.640000pt;}
.y1aa{bottom:834.853333pt;}
.y226{bottom:841.573333pt;}
.y25b{bottom:846.053333pt;}
.y27{bottom:847.973333pt;}
.y208{bottom:848.293333pt;}
.y12e{bottom:849.733333pt;}
.y6c{bottom:850.053333pt;}
.y9c{bottom:852.133333pt;}
.ye9{bottom:854.693333pt;}
.y225{bottom:856.293333pt;}
.y1{bottom:859.312000pt;}
.y25a{bottom:860.773333pt;}
.y6b{bottom:868.133333pt;}
.y1a6{bottom:868.773333pt;}
.y9b{bottom:870.213333pt;}
.y224{bottom:871.013333pt;}
.y259{bottom:875.653333pt;}
.y223{bottom:885.893333pt;}
.y6a{bottom:886.213333pt;}
.y187{bottom:886.693333pt;}
.y9a{bottom:888.293333pt;}
.y207{bottom:890.213333pt;}
.y258{bottom:890.373333pt;}
.y61{bottom:897.893333pt;}
.y26{bottom:899.493333pt;}
.y222{bottom:900.613333pt;}
.y1a5{bottom:904.133333pt;}
.y69{bottom:904.293333pt;}
.y257{bottom:905.093333pt;}
.y99{bottom:906.213333pt;}
.y221{bottom:915.333333pt;}
.y256{bottom:919.973333pt;}
.y68{bottom:922.213333pt;}
.y25{bottom:922.533333pt;}
.y98{bottom:924.293333pt;}
.y1a4{bottom:927.493333pt;}
.y220{bottom:930.213333pt;}
.y255{bottom:934.693333pt;}
.y67{bottom:940.293333pt;}
.y97{bottom:942.373333pt;}
.y21f{bottom:944.933333pt;}
.y254{bottom:949.413333pt;}
.y66{bottom:958.373333pt;}
.y253{bottom:964.293333pt;}
.y65{bottom:976.453333pt;}
.y252{bottom:979.013333pt;}
.y1f4{bottom:979.813333pt;}
.y22{bottom:1006.080000pt;}
.y63{bottom:1034.720000pt;}
.h59{height:14.066667pt;}
.h13{height:15.666667pt;}
.h57{height:18.066667pt;}
.h32{height:18.226667pt;}
.h1b{height:18.386667pt;}
.h38{height:18.706667pt;}
.h4f{height:18.880000pt;}
.h22{height:19.026667pt;}
.h4e{height:19.040000pt;}
.h1d{height:20.160000pt;}
.h45{height:21.906667pt;}
.h23{height:22.066667pt;}
.h4a{height:22.546667pt;}
.h3c{height:22.560000pt;}
.h46{height:22.706667pt;}
.h3d{height:22.720000pt;}
.h33{height:22.738667pt;}
.h1f{height:23.680000pt;}
.h44{height:23.986667pt;}
.h43{height:24.146667pt;}
.h19{height:25.440000pt;}
.h1e{height:25.600000pt;}
.h21{height:25.786667pt;}
.h20{height:26.400000pt;}
.ha{height:27.093750pt;}
.h51{height:28.018667pt;}
.h4b{height:28.020000pt;}
.h40{height:28.146667pt;}
.h3b{height:28.160000pt;}
.h3a{height:28.180000pt;}
.h3e{height:28.186667pt;}
.h7{height:28.560000pt;}
.h41{height:28.786667pt;}
.h28{height:28.953020pt;}
.h36{height:29.126250pt;}
.h1a{height:29.440000pt;}
.h42{height:29.746667pt;}
.h24{height:29.760625pt;}
.h34{height:30.226667pt;}
.h35{height:31.186667pt;}
.h2d{height:31.428750pt;}
.h52{height:33.280000pt;}
.h48{height:33.906667pt;}
.h4c{height:33.920000pt;}
.h49{height:34.066667pt;}
.h4d{height:34.080000pt;}
.h39{height:34.226667pt;}
.h47{height:34.706667pt;}
.h30{height:35.666667pt;}
.h10{height:36.305625pt;}
.h3f{height:37.266667pt;}
.h53{height:37.280000pt;}
.h55{height:37.920000pt;}
.h56{height:38.080000pt;}
.h58{height:38.226667pt;}
.h12{height:38.473125pt;}
.h1c{height:38.560000pt;}
.h14{height:40.053437pt;}
.h27{height:40.175822pt;}
.h31{height:40.453125pt;}
.h11{height:40.640625pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2e{height:43.013125pt;}
.h16{height:44.975625pt;}
.h54{height:46.406250pt;}
.h2{height:48.960000pt;}
.h26{height:49.267463pt;}
.h25{height:49.622500pt;}
.hb{height:49.852500pt;}
.h2b{height:51.542500pt;}
.h2f{height:55.978125pt;}
.h50{height:56.180000pt;}
.h2a{height:57.898125pt;}
.he{height:63.399375pt;}
.h37{height:64.960625pt;}
.h5{height:69.360000pt;}
.hc{height:72.069375pt;}
.h18{height:74.560000pt;}
.h29{height:75.056705pt;}
.hd{height:76.946250pt;}
.h17{height:77.920000pt;}
.h15{height:78.240000pt;}
.h4{height:105.826671pt;}
.h9{height:129.725313pt;}
.hf{height:289.946667pt;}
.h5a{height:351.520000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.h2c{height:1122.706587pt;}
.h8{height:1122.720000pt;}
.w5{width:11.520000pt;}
.w15{width:23.399875pt;}
.w36{width:40.192000pt;}
.w12{width:52.306667pt;}
.w26{width:66.098667pt;}
.w10{width:66.112000pt;}
.w11{width:66.226667pt;}
.w13{width:67.378667pt;}
.w14{width:67.506667pt;}
.w23{width:75.520000pt;}
.w2c{width:75.666667pt;}
.w2a{width:75.680000pt;}
.w24{width:75.712000pt;}
.w1e{width:80.992000pt;}
.w1f{width:81.106667pt;}
.w1d{width:81.120000pt;}
.w20{width:81.138667pt;}
.w21{width:82.066667pt;}
.w2b{width:84.978667pt;}
.w27{width:85.106667pt;}
.w17{width:94.226667pt;}
.w1a{width:94.578667pt;}
.w34{width:95.858667pt;}
.w33{width:103.858667pt;}
.w30{width:107.992000pt;}
.w35{width:108.000000pt;}
.w25{width:113.426667pt;}
.w8{width:115.360000pt;}
.w9{width:115.840000pt;}
.w32{width:122.866667pt;}
.wa{width:123.360000pt;}
.wb{width:131.352000pt;}
.w19{width:132.306667pt;}
.w18{width:132.338667pt;}
.we{width:132.352000pt;}
.wc{width:152.173333pt;}
.w29{width:160.818667pt;}
.wf{width:187.213333pt;}
.w22{width:188.978667pt;}
.w28{width:189.146667pt;}
.w1c{width:198.418667pt;}
.w2f{width:208.026667pt;}
.w2e{width:236.338667pt;}
.w31{width:244.053333pt;}
.w4{width:296.658667pt;}
.w6{width:296.706667pt;}
.w37{width:311.853333pt;}
.wd{width:319.586667pt;}
.w39{width:352.058667pt;}
.w3a{width:513.920000pt;}
.w1b{width:519.600000pt;}
.w2{width:566.928019pt;}
.w38{width:578.800000pt;}
.w7{width:596.560000pt;}
.w2d{width:605.040000pt;}
.w0{width:793.700000pt;}
.w16{width:793.740000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x43{left:1.736043pt;}
.xa{left:3.672000pt;}
.x2f{left:5.426667pt;}
.x2a{left:7.192000pt;}
.x66{left:8.640000pt;}
.xf{left:9.592000pt;}
.x42{left:10.489565pt;}
.x39{left:12.466667pt;}
.x37{left:13.906667pt;}
.x2c{left:15.986667pt;}
.x1c{left:17.853333pt;}
.x35{left:18.880000pt;}
.x7a{left:20.026667pt;}
.x1f{left:21.506667pt;}
.x40{left:23.186667pt;}
.x3a{left:24.946667pt;}
.x3c{left:26.226667pt;}
.x23{left:27.746667pt;}
.x60{left:29.266667pt;}
.x3f{left:30.266667pt;}
.x6f{left:31.186667pt;}
.x15{left:32.346667pt;}
.x3d{left:33.626667pt;}
.x67{left:34.706667pt;}
.x54{left:36.026667pt;}
.x5f{left:37.426667pt;}
.x5c{left:38.386667pt;}
.x52{left:39.386667pt;}
.x18{left:40.986667pt;}
.x4f{left:41.906667pt;}
.x78{left:42.880000pt;}
.x57{left:44.146667pt;}
.x7b{left:45.106667pt;}
.x50{left:46.546667pt;}
.x31{left:47.866667pt;}
.x55{left:50.426667pt;}
.x70{left:51.546667pt;}
.x68{left:53.586667pt;}
.x53{left:54.906667pt;}
.x69{left:56.626667pt;}
.x19{left:57.626667pt;}
.x34{left:61.946667pt;}
.x33{left:63.506667pt;}
.x56{left:66.066667pt;}
.x3e{left:69.466667pt;}
.x30{left:80.666667pt;}
.xe{left:88.840000pt;}
.x1{left:90.706667pt;}
.x2e{left:93.306667pt;}
.x2{left:94.486667pt;}
.x29{left:95.400000pt;}
.x4a{left:99.072000pt;}
.x73{left:107.560000pt;}
.x7{left:110.112000pt;}
.x71{left:117.312000pt;}
.xd{left:118.432000pt;}
.x4b{left:131.232000pt;}
.x4c{left:137.160000pt;}
.x6{left:138.746667pt;}
.x7d{left:139.840000pt;}
.x58{left:140.986667pt;}
.x14{left:148.480000pt;}
.x6a{left:151.866667pt;}
.x41{left:159.746667pt;}
.x24{left:161.146667pt;}
.x9{left:164.986667pt;}
.x17{left:166.746667pt;}
.x16{left:168.186667pt;}
.x5{left:174.586667pt;}
.x4{left:180.874667pt;}
.x44{left:183.066667pt;}
.x25{left:188.826667pt;}
.x74{left:215.560000pt;}
.x28{left:218.906667pt;}
.x2b{left:226.760000pt;}
.x4d{left:231.400000pt;}
.x7e{left:232.613333pt;}
.x11{left:242.586667pt;}
.x8{left:248.666667pt;}
.x45{left:255.086667pt;}
.x46{left:260.226667pt;}
.x61{left:283.586667pt;}
.x49{left:286.626667pt;}
.x59{left:293.026667pt;}
.x77{left:311.426667pt;}
.x72{left:327.906667pt;}
.x6b{left:330.786667pt;}
.x1e{left:336.800000pt;}
.x26{left:347.426667pt;}
.x62{left:359.106667pt;}
.x22{left:362.946667pt;}
.x20{left:365.986667pt;}
.x13{left:369.346667pt;}
.x21{left:372.866667pt;}
.x5a{left:374.146667pt;}
.x2d{left:378.946667pt;}
.x27{left:384.706667pt;}
.xb{left:391.266667pt;}
.xc{left:402.786667pt;}
.x3{left:404.408000pt;}
.x6c{left:406.466667pt;}
.x79{left:419.426667pt;}
.x4e{left:429.866667pt;}
.x63{left:434.826667pt;}
.x36{left:445.066667pt;}
.x5b{left:455.146667pt;}
.x75{left:459.626667pt;}
.x32{left:511.306667pt;}
.x1b{left:527.680000pt;}
.x5d{left:536.266667pt;}
.x6d{left:538.826667pt;}
.x64{left:548.266667pt;}
.x1a{left:557.053333pt;}
.x51{left:562.186667pt;}
.x38{left:563.626667pt;}
.x1d{left:567.293333pt;}
.x76{left:582.506667pt;}
.x10{left:595.013333pt;}
.x65{left:614.373333pt;}
.x5e{left:617.413333pt;}
.x6e{left:623.813333pt;}
.x47{left:628.753333pt;}
.x3b{left:631.013333pt;}
.x48{left:633.893333pt;}
.x12{left:647.013333pt;}
.x7c{left:654.053333pt;}
}




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