
    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_3a732037c849cb754ce65310.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_d9ada4eb163f9c028833714d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_11b1455cb93ae30249bd11c4.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0e0cdc78b831280ce9b4fe5a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_43be7b55aca717c7ddafee35.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_deb03842fea10abe94ea65d2.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b9c593356bffd1d5ba9719fd.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e13c50aa84477410b1429b11.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_655ad3f66f569f58ea9c3e24.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_11b1455cb93ae30249bd11c4.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0239b56b1cf4d0f5b7016bc6.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ab74489b566b4a01109625fe.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_80ac8309a1694ad4cc6a7547.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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ffc408b8bde1ee1518d98950.woff')format("woff");}.ffe{font-family:ffe;line-height:0.830000;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;}
.ls9b{letter-spacing:-16.830000px;}
.ls96{letter-spacing:-7.270560px;}
.ls92{letter-spacing:-5.924160px;}
.ls88{letter-spacing:-5.355000px;}
.ls84{letter-spacing:-3.136500px;}
.ls87{letter-spacing:-3.060000px;}
.ls51{letter-spacing:-2.983500px;}
.ls9e{letter-spacing:-2.894760px;}
.ls72{letter-spacing:-2.830500px;}
.ls6a{letter-spacing:-2.754000px;}
.ls86{letter-spacing:-2.601000px;}
.ls7e{letter-spacing:-2.524500px;}
.ls3c{letter-spacing:-2.448000px;}
.ls98{letter-spacing:-2.423520px;}
.ls46{letter-spacing:-2.371500px;}
.ls50{letter-spacing:-2.295000px;}
.lsa0{letter-spacing:-2.288880px;}
.lsa7{letter-spacing:-2.221560px;}
.ls57{letter-spacing:-2.065500px;}
.lsa6{letter-spacing:-2.019600px;}
.ls5b{letter-spacing:-1.989000px;}
.ls8c{letter-spacing:-1.912500px;}
.ls66{letter-spacing:-1.713600px;}
.ls85{letter-spacing:-1.683000px;}
.ls99{letter-spacing:-1.615680px;}
.ls8d{letter-spacing:-1.530000px;}
.ls80{letter-spacing:-1.453500px;}
.ls16{letter-spacing:-1.413720px;}
.ls76{letter-spacing:-1.377000px;}
.ls75{letter-spacing:-1.300500px;}
.ls6c{letter-spacing:-1.224000px;}
.ls4d{letter-spacing:-1.147500px;}
.lse{letter-spacing:-1.077120px;}
.ls5f{letter-spacing:-1.071000px;}
.ls3e{letter-spacing:-0.994500px;}
.ls45{letter-spacing:-0.918000px;}
.ls2b{letter-spacing:-0.875160px;}
.ls69{letter-spacing:-0.841500px;}
.ls19{letter-spacing:-0.807840px;}
.ls64{letter-spacing:-0.771120px;}
.ls55{letter-spacing:-0.765000px;}
.ls93{letter-spacing:-0.740520px;}
.ls6d{letter-spacing:-0.688500px;}
.ls1b{letter-spacing:-0.673200px;}
.ls37{letter-spacing:-0.612000px;}
.ls17{letter-spacing:-0.605880px;}
.ls67{letter-spacing:-0.599760px;}
.ls26{letter-spacing:-0.538560px;}
.ls3{letter-spacing:-0.535500px;}
.ls97{letter-spacing:-0.471240px;}
.ls2{letter-spacing:-0.459000px;}
.ls11{letter-spacing:-0.440640px;}
.ls43{letter-spacing:-0.382500px;}
.ls18{letter-spacing:-0.336600px;}
.ls47{letter-spacing:-0.306000px;}
.ls95{letter-spacing:-0.269280px;}
.ls44{letter-spacing:-0.229500px;}
.ls25{letter-spacing:-0.201960px;}
.lsab{letter-spacing:-0.165240px;}
.ls59{letter-spacing:-0.153000px;}
.lsa1{letter-spacing:-0.134640px;}
.ls62{letter-spacing:-0.085680px;}
.ls4f{letter-spacing:-0.076500px;}
.lsa3{letter-spacing:-0.067320px;}
.ls1{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.067320px;}
.ls33{letter-spacing:0.076500px;}
.ls65{letter-spacing:0.085680px;}
.ls31{letter-spacing:0.153000px;}
.ls63{letter-spacing:0.171360px;}
.ls14{letter-spacing:0.201960px;}
.lsb2{letter-spacing:0.220320px;}
.ls4{letter-spacing:0.229500px;}
.ls9d{letter-spacing:0.269280px;}
.ls68{letter-spacing:0.306000px;}
.ls90{letter-spacing:0.336600px;}
.ls41{letter-spacing:0.382500px;}
.ls15{letter-spacing:0.403920px;}
.ls3d{letter-spacing:0.459000px;}
.ls24{letter-spacing:0.471240px;}
.lsb1{letter-spacing:0.495720px;}
.ls4c{letter-spacing:0.535500px;}
.lsa2{letter-spacing:0.538560px;}
.ls91{letter-spacing:0.605880px;}
.ls54{letter-spacing:0.612000px;}
.lsac{letter-spacing:0.660960px;}
.ls9a{letter-spacing:0.673200px;}
.ls39{letter-spacing:0.688500px;}
.lsf{letter-spacing:0.716040px;}
.lsa4{letter-spacing:0.740520px;}
.ls36{letter-spacing:0.765000px;}
.lsb0{letter-spacing:0.826200px;}
.ls3f{letter-spacing:0.841500px;}
.ls1e{letter-spacing:0.875160px;}
.ls38{letter-spacing:0.918000px;}
.ls29{letter-spacing:0.942480px;}
.lsaf{letter-spacing:0.991440px;}
.ls58{letter-spacing:0.994500px;}
.ls94{letter-spacing:1.009800px;}
.lsaa{letter-spacing:1.046520px;}
.ls4a{letter-spacing:1.071000px;}
.ls1f{letter-spacing:1.077120px;}
.lsb3{letter-spacing:1.101600px;}
.ls1d{letter-spacing:1.144440px;}
.ls6b{letter-spacing:1.147500px;}
.ls10{letter-spacing:1.211760px;}
.ls74{letter-spacing:1.224000px;}
.ls48{letter-spacing:1.300500px;}
.lsa9{letter-spacing:1.321920px;}
.ls8f{letter-spacing:1.326000px;}
.ls22{letter-spacing:1.346400px;}
.ls4b{letter-spacing:1.377000px;}
.ls8a{letter-spacing:1.440000px;}
.ls5c{letter-spacing:1.453500px;}
.ls21{letter-spacing:1.481040px;}
.ls7{letter-spacing:1.512000px;}
.ls3b{letter-spacing:1.530000px;}
.ls1c{letter-spacing:1.548360px;}
.lsad{letter-spacing:1.597320px;}
.ls52{letter-spacing:1.606500px;}
.ls20{letter-spacing:1.615680px;}
.ls49{letter-spacing:1.683000px;}
.ls42{letter-spacing:1.759500px;}
.lsb{letter-spacing:1.794000px;}
.lsae{letter-spacing:1.817640px;}
.ls4e{letter-spacing:1.836000px;}
.ls12{letter-spacing:1.884960px;}
.ls53{letter-spacing:1.912500px;}
.ls23{letter-spacing:1.952280px;}
.ls3a{letter-spacing:1.989000px;}
.ls9f{letter-spacing:2.019600px;}
.ls70{letter-spacing:2.065500px;}
.lsc{letter-spacing:2.070000px;}
.ls2a{letter-spacing:2.086920px;}
.ls6{letter-spacing:2.105280px;}
.ls7a{letter-spacing:2.142000px;}
.ls32{letter-spacing:2.160000px;}
.ls71{letter-spacing:2.218500px;}
.ls13{letter-spacing:2.221560px;}
.ls61{letter-spacing:2.250000px;}
.ls7d{letter-spacing:2.295000px;}
.ls5e{letter-spacing:2.430000px;}
.ls56{letter-spacing:2.448000px;}
.ls78{letter-spacing:2.524500px;}
.ls5{letter-spacing:2.545920px;}
.ls7c{letter-spacing:2.601000px;}
.ls9c{letter-spacing:2.610000px;}
.ls27{letter-spacing:2.625480px;}
.ls6f{letter-spacing:2.677500px;}
.lsa{letter-spacing:2.688000px;}
.ls5d{letter-spacing:2.700000px;}
.ls7f{letter-spacing:2.754000px;}
.ls35{letter-spacing:2.830500px;}
.ls77{letter-spacing:2.907000px;}
.ls83{letter-spacing:3.060000px;}
.ls79{letter-spacing:3.136500px;}
.ls34{letter-spacing:3.366000px;}
.lsd{letter-spacing:3.450000px;}
.ls8b{letter-spacing:3.519000px;}
.ls40{letter-spacing:3.595500px;}
.ls5a{letter-spacing:3.748500px;}
.lsa8{letter-spacing:3.769920px;}
.ls8{letter-spacing:3.864000px;}
.ls6e{letter-spacing:3.901500px;}
.ls28{letter-spacing:4.039200px;}
.ls9{letter-spacing:4.200000px;}
.ls82{letter-spacing:4.360500px;}
.ls2e{letter-spacing:4.779720px;}
.ls2f{letter-spacing:4.914360px;}
.ls2c{letter-spacing:7.068600px;}
.ls2d{letter-spacing:7.539840px;}
.ls30{letter-spacing:54.162000px;}
.ls0{letter-spacing:54.315000px;}
.ls60{letter-spacing:58.599000px;}
.lsa5{letter-spacing:59.287500px;}
.ls81{letter-spacing:59.670000px;}
.ls8e{letter-spacing:59.823000px;}
.ls7b{letter-spacing:59.899500px;}
.ls89{letter-spacing:60.664500px;}
.ls73{letter-spacing:62.347500px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-41.160000px;}
.ws9b{word-spacing:-24.480000px;}
.ws34{word-spacing:-24.300000px;}
.ws32{word-spacing:-24.030000px;}
.ws5{word-spacing:-23.898600px;}
.ws96{word-spacing:-23.310000px;}
.ws93{word-spacing:-20.884500px;}
.ws8a{word-spacing:-20.425500px;}
.ws87{word-spacing:-20.119500px;}
.ws8b{word-spacing:-20.043000px;}
.ws94{word-spacing:-19.660500px;}
.ws86{word-spacing:-19.507500px;}
.ws95{word-spacing:-19.278000px;}
.ws7e{word-spacing:-19.201500px;}
.ws7d{word-spacing:-18.819000px;}
.ws33{word-spacing:-18.360000px;}
.ws89{word-spacing:-18.207000px;}
.ws8d{word-spacing:-17.977500px;}
.ws1{word-spacing:-17.748000px;}
.ws85{word-spacing:-17.671500px;}
.ws88{word-spacing:-17.442000px;}
.ws84{word-spacing:-17.365500px;}
.ws4{word-spacing:-17.301240px;}
.ws97{word-spacing:-17.212500px;}
.ws9a{word-spacing:-17.136000px;}
.ws0{word-spacing:-17.059500px;}
.ws9d{word-spacing:-16.628040px;}
.ws63{word-spacing:-16.524000px;}
.ws3{word-spacing:-16.156800px;}
.wsb3{word-spacing:-14.608440px;}
.ws9c{word-spacing:-13.935240px;}
.ws8c{word-spacing:-13.770000px;}
.wsb5{word-spacing:-11.897280px;}
.wsb4{word-spacing:-11.071080px;}
.ws2e{word-spacing:-7.539840px;}
.ws30{word-spacing:-4.914360px;}
.ws2f{word-spacing:-4.779720px;}
.ws8e{word-spacing:-4.360500px;}
.wsc{word-spacing:-4.200000px;}
.ws29{word-spacing:-4.039200px;}
.ws71{word-spacing:-3.901500px;}
.wsb{word-spacing:-3.864000px;}
.wsb7{word-spacing:-3.769920px;}
.ws5e{word-spacing:-3.748500px;}
.ws42{word-spacing:-3.595500px;}
.ws98{word-spacing:-3.519000px;}
.wsf{word-spacing:-3.450000px;}
.ws36{word-spacing:-3.366000px;}
.ws7b{word-spacing:-3.136500px;}
.ws8f{word-spacing:-3.060000px;}
.ws79{word-spacing:-2.907000px;}
.ws37{word-spacing:-2.830500px;}
.ws82{word-spacing:-2.754000px;}
.ws61{word-spacing:-2.700000px;}
.ws72{word-spacing:-2.677500px;}
.ws28{word-spacing:-2.625480px;}
.ws7f{word-spacing:-2.601000px;}
.ws8{word-spacing:-2.545920px;}
.ws7a{word-spacing:-2.524500px;}
.ws5a{word-spacing:-2.448000px;}
.ws80{word-spacing:-2.295000px;}
.ws64{word-spacing:-2.250000px;}
.ws15{word-spacing:-2.221560px;}
.ws74{word-spacing:-2.218500px;}
.ws7c{word-spacing:-2.142000px;}
.ws9{word-spacing:-2.105280px;}
.ws2b{word-spacing:-2.086920px;}
.wse{word-spacing:-2.070000px;}
.ws73{word-spacing:-2.065500px;}
.wsad{word-spacing:-2.019600px;}
.ws3c{word-spacing:-1.989000px;}
.ws25{word-spacing:-1.952280px;}
.ws57{word-spacing:-1.912500px;}
.ws14{word-spacing:-1.884960px;}
.ws52{word-spacing:-1.836000px;}
.wsbb{word-spacing:-1.817640px;}
.wsd{word-spacing:-1.794000px;}
.ws45{word-spacing:-1.759500px;}
.ws4c{word-spacing:-1.683000px;}
.ws22{word-spacing:-1.615680px;}
.ws56{word-spacing:-1.606500px;}
.wsba{word-spacing:-1.597320px;}
.ws1e{word-spacing:-1.548360px;}
.ws3d{word-spacing:-1.530000px;}
.wsa{word-spacing:-1.512000px;}
.ws23{word-spacing:-1.481040px;}
.ws60{word-spacing:-1.453500px;}
.ws4e{word-spacing:-1.377000px;}
.ws24{word-spacing:-1.346400px;}
.ws9e{word-spacing:-1.326000px;}
.wsb8{word-spacing:-1.321920px;}
.ws4b{word-spacing:-1.300500px;}
.ws76{word-spacing:-1.224000px;}
.ws12{word-spacing:-1.211760px;}
.ws6e{word-spacing:-1.147500px;}
.ws1f{word-spacing:-1.144440px;}
.wsc0{word-spacing:-1.101600px;}
.ws21{word-spacing:-1.077120px;}
.ws4d{word-spacing:-1.071000px;}
.wsb9{word-spacing:-1.046520px;}
.wsa3{word-spacing:-1.009800px;}
.ws5c{word-spacing:-0.994500px;}
.wsbc{word-spacing:-0.991440px;}
.ws2a{word-spacing:-0.942480px;}
.ws3a{word-spacing:-0.918000px;}
.ws20{word-spacing:-0.875160px;}
.ws41{word-spacing:-0.841500px;}
.wsbd{word-spacing:-0.826200px;}
.ws38{word-spacing:-0.765000px;}
.wsb2{word-spacing:-0.740520px;}
.ws11{word-spacing:-0.716040px;}
.ws3b{word-spacing:-0.688500px;}
.wsa9{word-spacing:-0.673200px;}
.ws58{word-spacing:-0.612000px;}
.wsa0{word-spacing:-0.605880px;}
.wsb0{word-spacing:-0.538560px;}
.ws4f{word-spacing:-0.535500px;}
.wsbe{word-spacing:-0.495720px;}
.ws2c{word-spacing:-0.471240px;}
.ws3f{word-spacing:-0.459000px;}
.ws17{word-spacing:-0.403920px;}
.ws44{word-spacing:-0.382500px;}
.ws9f{word-spacing:-0.336600px;}
.ws6b{word-spacing:-0.306000px;}
.wsab{word-spacing:-0.269280px;}
.ws31{word-spacing:-0.229500px;}
.wsbf{word-spacing:-0.220320px;}
.ws16{word-spacing:-0.201960px;}
.ws66{word-spacing:-0.171360px;}
.ws51{word-spacing:-0.153000px;}
.ws68{word-spacing:-0.085680px;}
.ws35{word-spacing:-0.076500px;}
.ws1c{word-spacing:-0.067320px;}
.ws6{word-spacing:0.000000px;}
.wsb1{word-spacing:0.067320px;}
.ws53{word-spacing:0.076500px;}
.ws65{word-spacing:0.085680px;}
.wsaf{word-spacing:0.134640px;}
.ws5d{word-spacing:0.153000px;}
.ws26{word-spacing:0.201960px;}
.ws47{word-spacing:0.229500px;}
.wsa4{word-spacing:0.269280px;}
.ws4a{word-spacing:0.306000px;}
.ws1a{word-spacing:0.336600px;}
.ws46{word-spacing:0.382500px;}
.ws13{word-spacing:0.440640px;}
.ws43{word-spacing:0.459000px;}
.wsa6{word-spacing:0.471240px;}
.ws7{word-spacing:0.535500px;}
.ws27{word-spacing:0.538560px;}
.ws6a{word-spacing:0.599760px;}
.ws19{word-spacing:0.605880px;}
.ws39{word-spacing:0.612000px;}
.ws1d{word-spacing:0.673200px;}
.ws70{word-spacing:0.688500px;}
.wsa2{word-spacing:0.740520px;}
.ws59{word-spacing:0.765000px;}
.ws67{word-spacing:0.771120px;}
.ws1b{word-spacing:0.807840px;}
.ws6c{word-spacing:0.841500px;}
.ws2d{word-spacing:0.875160px;}
.ws48{word-spacing:0.918000px;}
.ws40{word-spacing:0.994500px;}
.ws62{word-spacing:1.071000px;}
.ws10{word-spacing:1.077120px;}
.ws50{word-spacing:1.147500px;}
.ws6f{word-spacing:1.224000px;}
.ws77{word-spacing:1.300500px;}
.ws78{word-spacing:1.377000px;}
.ws18{word-spacing:1.413720px;}
.ws83{word-spacing:1.453500px;}
.ws99{word-spacing:1.530000px;}
.wsa8{word-spacing:1.615680px;}
.wsac{word-spacing:1.683000px;}
.ws69{word-spacing:1.713600px;}
.ws5f{word-spacing:1.989000px;}
.wsb6{word-spacing:2.019600px;}
.ws5b{word-spacing:2.065500px;}
.wsae{word-spacing:2.288880px;}
.ws54{word-spacing:2.295000px;}
.ws49{word-spacing:2.371500px;}
.wsa7{word-spacing:2.423520px;}
.ws3e{word-spacing:2.448000px;}
.ws81{word-spacing:2.524500px;}
.ws91{word-spacing:2.601000px;}
.ws6d{word-spacing:2.754000px;}
.ws75{word-spacing:2.830500px;}
.ws55{word-spacing:2.983500px;}
.ws92{word-spacing:3.060000px;}
.ws90{word-spacing:3.136500px;}
.wsa1{word-spacing:5.924160px;}
.wsa5{word-spacing:7.270560px;}
.wsaa{word-spacing:16.830000px;}
._15{margin-left:-19.285650px;}
._1a{margin-left:-17.556750px;}
._1d{margin-left:-11.042622px;}
._16{margin-left:-9.327600px;}
._3{margin-left:-7.956000px;}
._1c{margin-left:-6.695946px;}
._b{margin-left:-5.534400px;}
._c{margin-left:-4.332150px;}
._2{margin-left:-3.182400px;}
._1{margin-left:-1.407600px;}
._5{width:1.377000px;}
._6{width:2.516850px;}
._9{width:4.342500px;}
._e{width:5.432700px;}
._7{width:7.392000px;}
._8{width:8.716800px;}
._d{width:10.091702px;}
._a{width:12.347344px;}
._10{width:13.416884px;}
._12{width:14.458500px;}
._13{width:15.529500px;}
._1b{width:18.176400px;}
._19{width:20.263320px;}
._17{width:25.085880px;}
._18{width:26.335498px;}
._0{width:152.235000px;}
._11{width:157.513500px;}
._14{width:159.426000px;}
._4{width:1955.722500px;}
._f{width:1981.769610px;}
.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;}
.fsa{font-size:69.000000px;}
.fs0{font-size:76.500000px;}
.fs9{font-size:78.000000px;}
.fs8{font-size:85.680000px;}
.fs6{font-size:90.000000px;}
.fs3{font-size:138.000000px;}
.fs2{font-size:168.000000px;}
.fs7{font-size:287.074200px;}
.y0{bottom:0.000000px;}
.yc4{bottom:73.943025px;}
.y97{bottom:73.975050px;}
.yf2{bottom:76.276275px;}
.y14e{bottom:77.277375px;}
.y120{bottom:77.353875px;}
.y29{bottom:78.350100px;}
.y6a{bottom:81.088875px;}
.yc3{bottom:97.944900px;}
.y96{bottom:97.976925px;}
.y28{bottom:99.346260px;}
.yf1{bottom:100.278150px;}
.y14d{bottom:101.279250px;}
.y11f{bottom:101.355750px;}
.y1a8{bottom:101.910900px;}
.y17b{bottom:101.987400px;}
.y1ac{bottom:102.025050px;}
.y69{bottom:105.090750px;}
.y27{bottom:120.350100px;}
.yc2{bottom:121.946775px;}
.y95{bottom:121.978800px;}
.yf0{bottom:124.280025px;}
.y14c{bottom:125.281125px;}
.y1d8{bottom:125.357550px;}
.y11e{bottom:125.357625px;}
.y1a7{bottom:125.912775px;}
.y17a{bottom:125.989275px;}
.y1ab{bottom:126.026925px;}
.y208{bottom:126.793590px;}
.y68{bottom:129.092625px;}
.y26{bottom:141.350100px;}
.y3c{bottom:142.775340px;}
.yc1{bottom:145.948650px;}
.y94{bottom:145.980675px;}
.y207{bottom:147.797430px;}
.yef{bottom:148.281900px;}
.y14b{bottom:149.283000px;}
.y1d7{bottom:149.359425px;}
.y11d{bottom:149.359500px;}
.y1a6{bottom:149.914650px;}
.y179{bottom:149.991150px;}
.y1aa{bottom:150.028800px;}
.y67{bottom:153.094500px;}
.y25{bottom:162.346260px;}
.y3b{bottom:163.779180px;}
.y206{bottom:168.801270px;}
.yc0{bottom:169.950525px;}
.y93{bottom:169.982550px;}
.yee{bottom:172.283775px;}
.y14a{bottom:173.284875px;}
.y1d6{bottom:173.361300px;}
.y11c{bottom:173.361375px;}
.y1a5{bottom:173.916525px;}
.y178{bottom:173.993025px;}
.y66{bottom:177.096375px;}
.y1a9{bottom:179.556300px;}
.y24{bottom:183.350100px;}
.y3a{bottom:184.783020px;}
.y205{bottom:189.805110px;}
.ybf{bottom:193.952400px;}
.y92{bottom:193.984425px;}
.yed{bottom:196.285650px;}
.y149{bottom:197.286750px;}
.y1d5{bottom:197.363175px;}
.y11b{bottom:197.363250px;}
.y1a4{bottom:197.918400px;}
.y177{bottom:197.994900px;}
.y65{bottom:201.098250px;}
.y23{bottom:204.346260px;}
.y39{bottom:205.786860px;}
.y204{bottom:210.808950px;}
.ybe{bottom:217.954275px;}
.y91{bottom:217.986300px;}
.yec{bottom:220.287525px;}
.y148{bottom:221.288625px;}
.y1d4{bottom:221.365050px;}
.y11a{bottom:221.365125px;}
.y1a3{bottom:221.920275px;}
.y176{bottom:221.996775px;}
.y64{bottom:225.100125px;}
.y22{bottom:225.350100px;}
.y38{bottom:226.790700px;}
.y203{bottom:231.812790px;}
.ybd{bottom:241.956150px;}
.y90{bottom:241.988175px;}
.yeb{bottom:244.289400px;}
.y147{bottom:245.290500px;}
.y1d3{bottom:245.366925px;}
.y119{bottom:245.367000px;}
.y1a2{bottom:245.922150px;}
.y175{bottom:245.998650px;}
.y21{bottom:246.350100px;}
.y37{bottom:247.794540px;}
.y63{bottom:249.102000px;}
.y202{bottom:252.816630px;}
.ybc{bottom:265.958025px;}
.y8f{bottom:265.990050px;}
.y20{bottom:267.350100px;}
.yea{bottom:268.291275px;}
.y36{bottom:268.798380px;}
.y146{bottom:269.292375px;}
.y1d2{bottom:269.368800px;}
.y118{bottom:269.368875px;}
.y1a1{bottom:269.924025px;}
.y174{bottom:270.000525px;}
.y62{bottom:273.103875px;}
.y201{bottom:273.820470px;}
.y1f{bottom:288.346260px;}
.y35{bottom:289.802220px;}
.ybb{bottom:289.959900px;}
.y8e{bottom:289.991925px;}
.ye9{bottom:292.293150px;}
.y145{bottom:293.294250px;}
.y1d1{bottom:293.370675px;}
.y117{bottom:293.370750px;}
.y1a0{bottom:293.925900px;}
.y173{bottom:294.002400px;}
.y200{bottom:294.824310px;}
.y61{bottom:297.105750px;}
.y1e{bottom:309.350100px;}
.y34{bottom:310.806060px;}
.yba{bottom:313.961775px;}
.y8d{bottom:313.993800px;}
.y1ff{bottom:315.828150px;}
.ye8{bottom:316.295025px;}
.y144{bottom:317.296125px;}
.y1d0{bottom:317.372550px;}
.y116{bottom:317.372625px;}
.y19f{bottom:317.927775px;}
.y172{bottom:318.004275px;}
.y60{bottom:321.107625px;}
.y1d{bottom:330.350100px;}
.y33{bottom:331.809900px;}
.y1fe{bottom:336.831990px;}
.yb9{bottom:337.963650px;}
.y8c{bottom:337.995675px;}
.ye7{bottom:340.296900px;}
.y143{bottom:341.298000px;}
.y1cf{bottom:341.374425px;}
.y115{bottom:341.374500px;}
.y19e{bottom:341.929650px;}
.y171{bottom:342.006150px;}
.y5f{bottom:345.109500px;}
.y1c{bottom:351.342420px;}
.y32{bottom:352.813740px;}
.y1fd{bottom:357.835830px;}
.yb8{bottom:361.965525px;}
.y8b{bottom:361.997550px;}
.ye6{bottom:364.298775px;}
.y142{bottom:365.299875px;}
.y1ce{bottom:365.376300px;}
.y114{bottom:365.376375px;}
.y19d{bottom:365.931525px;}
.y170{bottom:366.008025px;}
.y5e{bottom:369.111375px;}
.y1b{bottom:372.346260px;}
.y31{bottom:373.817580px;}
.y1fc{bottom:378.839670px;}
.yb7{bottom:385.967400px;}
.y8a{bottom:385.999425px;}
.ye5{bottom:388.300650px;}
.y141{bottom:389.301750px;}
.y1cd{bottom:389.378175px;}
.y113{bottom:389.378250px;}
.y19c{bottom:389.933400px;}
.y16f{bottom:390.009900px;}
.y5d{bottom:393.113250px;}
.y1a{bottom:393.350100px;}
.y30{bottom:394.821420px;}
.y1fb{bottom:399.843510px;}
.yb6{bottom:409.969275px;}
.y89{bottom:410.001300px;}
.ye4{bottom:412.302525px;}
.y140{bottom:413.303625px;}
.y1cc{bottom:413.380050px;}
.y112{bottom:413.380125px;}
.y19b{bottom:413.935275px;}
.y16e{bottom:414.011775px;}
.y19{bottom:414.350100px;}
.y2f{bottom:415.825260px;}
.y5c{bottom:417.115125px;}
.y1fa{bottom:420.847350px;}
.yb5{bottom:433.971150px;}
.y18{bottom:435.346260px;}
.ye3{bottom:436.304400px;}
.y2e{bottom:436.829100px;}
.y13f{bottom:437.305500px;}
.y1cb{bottom:437.381925px;}
.y111{bottom:437.382000px;}
.y19a{bottom:437.937150px;}
.y16d{bottom:438.013650px;}
.y88{bottom:439.528800px;}
.y5b{bottom:441.117000px;}
.y1f9{bottom:441.851190px;}
.y17{bottom:456.350100px;}
.y2d{bottom:457.832940px;}
.yb4{bottom:457.973025px;}
.ye2{bottom:460.306275px;}
.y13e{bottom:461.307375px;}
.y1ca{bottom:461.383800px;}
.y110{bottom:461.383875px;}
.y199{bottom:461.939025px;}
.y16c{bottom:462.015525px;}
.y1f8{bottom:462.855030px;}
.y5a{bottom:465.118875px;}
.y87{bottom:466.528800px;}
.y16{bottom:477.342420px;}
.y2c{bottom:478.836780px;}
.yb3{bottom:481.974900px;}
.y1f7{bottom:483.858870px;}
.ye1{bottom:484.308150px;}
.y13d{bottom:485.309250px;}
.y1c9{bottom:485.385675px;}
.y10f{bottom:485.385750px;}
.y198{bottom:485.940900px;}
.y16b{bottom:486.017400px;}
.y59{bottom:489.120750px;}
.y15{bottom:498.346260px;}
.y2b{bottom:499.840620px;}
.y1f6{bottom:504.862710px;}
.yb2{bottom:505.976775px;}
.y86{bottom:508.284000px;}
.ye0{bottom:508.310025px;}
.y13c{bottom:509.311125px;}
.y1c8{bottom:509.387550px;}
.y10e{bottom:509.387625px;}
.y197{bottom:509.942775px;}
.y16a{bottom:510.019275px;}
.y58{bottom:513.122625px;}
.y14{bottom:519.350100px;}
.y2a{bottom:520.844460px;}
.y1f5{bottom:525.866550px;}
.yb1{bottom:529.978650px;}
.y85{bottom:532.285875px;}
.ydf{bottom:532.311900px;}
.y13b{bottom:533.313000px;}
.y1c7{bottom:533.389425px;}
.y10d{bottom:533.389500px;}
.y196{bottom:533.944650px;}
.y169{bottom:534.021150px;}
.y57{bottom:537.124500px;}
.y1f4{bottom:552.394050px;}
.yb0{bottom:553.980525px;}
.y84{bottom:556.287750px;}
.yde{bottom:556.313775px;}
.y13a{bottom:557.314875px;}
.y1c6{bottom:557.391300px;}
.y10c{bottom:557.391375px;}
.y195{bottom:557.946525px;}
.y168{bottom:558.023025px;}
.y56{bottom:561.126375px;}
.yaf{bottom:577.982400px;}
.y83{bottom:580.289625px;}
.ydd{bottom:580.315650px;}
.y139{bottom:581.316750px;}
.y1c5{bottom:581.393175px;}
.y10b{bottom:581.393250px;}
.y194{bottom:581.948400px;}
.y167{bottom:582.024900px;}
.y55{bottom:585.128250px;}
.yc{bottom:591.921150px;}
.y1f3{bottom:594.272160px;}
.y213{bottom:598.122810px;}
.yae{bottom:601.984275px;}
.y82{bottom:604.291500px;}
.ydc{bottom:604.317525px;}
.y138{bottom:605.318625px;}
.y1c4{bottom:605.395050px;}
.y10a{bottom:605.395125px;}
.y193{bottom:605.950275px;}
.y166{bottom:606.026775px;}
.y54{bottom:609.130125px;}
.y1f2{bottom:615.276000px;}
.y212{bottom:623.367810px;}
.yad{bottom:625.986150px;}
.y81{bottom:628.293375px;}
.ydb{bottom:628.319400px;}
.y137{bottom:629.320500px;}
.y1c3{bottom:629.396925px;}
.y109{bottom:629.397000px;}
.y192{bottom:629.952150px;}
.y165{bottom:630.028650px;}
.y53{bottom:633.132000px;}
.yb{bottom:635.421150px;}
.y1f1{bottom:636.272160px;}
.y211{bottom:644.371650px;}
.yac{bottom:649.988025px;}
.y80{bottom:652.295250px;}
.yda{bottom:652.321275px;}
.y136{bottom:653.322375px;}
.y1c2{bottom:653.398800px;}
.y108{bottom:653.398875px;}
.y191{bottom:653.954025px;}
.y164{bottom:654.030525px;}
.y52{bottom:657.133875px;}
.y1f0{bottom:657.276000px;}
.y210{bottom:669.616650px;}
.yab{bottom:673.989900px;}
.y7f{bottom:676.297125px;}
.yd9{bottom:676.323150px;}
.y135{bottom:677.324250px;}
.y1c1{bottom:677.400675px;}
.y107{bottom:677.400750px;}
.y190{bottom:677.955900px;}
.y163{bottom:678.032400px;}
.y1ef{bottom:678.276000px;}
.ya{bottom:678.921150px;}
.y51{bottom:681.135750px;}
.y20f{bottom:694.861650px;}
.yaa{bottom:697.991775px;}
.y1ee{bottom:699.256800px;}
.y7e{bottom:700.299000px;}
.yd8{bottom:700.325025px;}
.y134{bottom:701.326125px;}
.y1c0{bottom:701.402550px;}
.y106{bottom:701.402625px;}
.y18f{bottom:701.957775px;}
.y162{bottom:702.034275px;}
.y50{bottom:705.137625px;}
.y20e{bottom:715.846140px;}
.y1ed{bottom:720.260640px;}
.ya9{bottom:721.993650px;}
.y9{bottom:722.421150px;}
.y7d{bottom:724.300875px;}
.yd7{bottom:724.326900px;}
.y133{bottom:725.328000px;}
.y1bf{bottom:725.404425px;}
.y105{bottom:725.404500px;}
.y18e{bottom:725.959650px;}
.y161{bottom:726.036150px;}
.y4f{bottom:729.139500px;}
.y1ec{bottom:741.264480px;}
.ya8{bottom:745.995525px;}
.y7c{bottom:748.302750px;}
.yd6{bottom:748.328775px;}
.y132{bottom:749.329875px;}
.y1be{bottom:749.406300px;}
.y104{bottom:749.406375px;}
.y18d{bottom:749.961525px;}
.y160{bottom:750.038025px;}
.y4e{bottom:753.141375px;}
.y1eb{bottom:762.268320px;}
.ya7{bottom:769.997400px;}
.y7b{bottom:772.304625px;}
.yd5{bottom:772.330650px;}
.y131{bottom:773.331750px;}
.y1bd{bottom:773.408175px;}
.y103{bottom:773.408250px;}
.y18c{bottom:773.963400px;}
.y15f{bottom:774.039900px;}
.y4d{bottom:777.143250px;}
.y1ea{bottom:783.272160px;}
.y8{bottom:788.421150px;}
.y2{bottom:789.373050px;}
.ya6{bottom:793.999275px;}
.y7a{bottom:796.306500px;}
.yd4{bottom:796.332525px;}
.y222{bottom:797.225250px;}
.y130{bottom:797.333625px;}
.y1bc{bottom:797.410050px;}
.y102{bottom:797.410125px;}
.y18b{bottom:797.965275px;}
.y15e{bottom:798.041775px;}
.y4c{bottom:801.145125px;}
.y1e9{bottom:804.276000px;}
.y221{bottom:815.225250px;}
.ya5{bottom:818.001150px;}
.y79{bottom:820.308375px;}
.yd3{bottom:820.334400px;}
.y12f{bottom:821.335500px;}
.y1bb{bottom:821.411925px;}
.y101{bottom:821.412000px;}
.y18a{bottom:821.967150px;}
.y15d{bottom:822.043650px;}
.y4b{bottom:825.147000px;}
.y1e8{bottom:825.268320px;}
.y220{bottom:833.225250px;}
.y21f{bottom:833.235690px;}
.y229{bottom:833.238300px;}
.y7{bottom:838.821150px;}
.ya4{bottom:842.010750px;}
.y3{bottom:843.253050px;}
.y78{bottom:844.310250px;}
.yd2{bottom:844.336275px;}
.y12e{bottom:845.337375px;}
.y1ba{bottom:845.413800px;}
.y100{bottom:845.413875px;}
.y189{bottom:845.969025px;}
.y15c{bottom:846.045525px;}
.y1e7{bottom:846.272160px;}
.y4a{bottom:849.148875px;}
.y21e{bottom:851.233080px;}
.y228{bottom:851.235690px;}
.ya3{bottom:866.001150px;}
.y1e6{bottom:867.276000px;}
.y77{bottom:868.312125px;}
.yd1{bottom:868.338150px;}
.y21d{bottom:869.230470px;}
.y227{bottom:869.233080px;}
.y12d{bottom:869.339250px;}
.y1b9{bottom:869.415675px;}
.yff{bottom:869.415750px;}
.y188{bottom:869.970900px;}
.y15b{bottom:870.047400px;}
.y49{bottom:873.150750px;}
.y1e5{bottom:888.233760px;}
.y6{bottom:889.221150px;}
.ya2{bottom:890.010750px;}
.y76{bottom:892.314000px;}
.yd0{bottom:892.340025px;}
.y12c{bottom:893.341125px;}
.y1b8{bottom:893.417550px;}
.yfe{bottom:893.417625px;}
.y187{bottom:893.972775px;}
.y15a{bottom:894.049275px;}
.y48{bottom:897.152625px;}
.y21c{bottom:905.225250px;}
.y226{bottom:905.227860px;}
.y1e4{bottom:909.237600px;}
.ya1{bottom:914.001150px;}
.y75{bottom:916.315875px;}
.ycf{bottom:916.341900px;}
.y12b{bottom:917.343000px;}
.y1b7{bottom:917.419425px;}
.yfd{bottom:917.419500px;}
.y186{bottom:917.974650px;}
.y159{bottom:918.051150px;}
.y47{bottom:921.154500px;}
.y21b{bottom:923.225250px;}
.y1e3{bottom:930.241440px;}
.ya0{bottom:938.001150px;}
.y5{bottom:939.621150px;}
.y74{bottom:940.317750px;}
.yce{bottom:940.343775px;}
.y21a{bottom:941.225250px;}
.y219{bottom:941.227860px;}
.y12a{bottom:941.344875px;}
.y1b6{bottom:941.421300px;}
.yfc{bottom:941.421375px;}
.y185{bottom:941.976525px;}
.y158{bottom:942.053025px;}
.y46{bottom:945.156375px;}
.y1e2{bottom:951.245280px;}
.y218{bottom:959.225250px;}
.y9f{bottom:962.001150px;}
.y73{bottom:964.319625px;}
.ycd{bottom:964.345650px;}
.y129{bottom:965.346750px;}
.y1b5{bottom:965.423175px;}
.yfb{bottom:965.423250px;}
.y184{bottom:965.978400px;}
.y157{bottom:966.054900px;}
.y45{bottom:969.158250px;}
.y1e1{bottom:972.249120px;}
.y216{bottom:977.224560px;}
.y217{bottom:977.225250px;}
.y225{bottom:977.226690px;}
.y72{bottom:988.321500px;}
.ycc{bottom:988.347525px;}
.y128{bottom:989.348625px;}
.y1b4{bottom:989.425050px;}
.yfa{bottom:989.425125px;}
.y183{bottom:989.980275px;}
.y4{bottom:990.021300px;}
.y156{bottom:990.056775px;}
.y9e{bottom:991.528800px;}
.y44{bottom:993.160125px;}
.y1e0{bottom:993.252960px;}
.y215{bottom:995.221950px;}
.y224{bottom:995.224080px;}
.y71{bottom:1012.323375px;}
.ycb{bottom:1012.349400px;}
.y127{bottom:1013.350500px;}
.y1b3{bottom:1013.426925px;}
.yf9{bottom:1013.427000px;}
.y182{bottom:1013.982150px;}
.y155{bottom:1014.058650px;}
.y1df{bottom:1014.256800px;}
.y43{bottom:1017.162000px;}
.y9d{bottom:1018.528800px;}
.y214{bottom:1021.729200px;}
.y223{bottom:1021.731330px;}
.y1de{bottom:1035.260640px;}
.y70{bottom:1036.325250px;}
.yca{bottom:1036.351275px;}
.y126{bottom:1037.352375px;}
.y1b2{bottom:1037.428800px;}
.yf8{bottom:1037.428875px;}
.y181{bottom:1037.984025px;}
.y154{bottom:1038.060525px;}
.y42{bottom:1041.163875px;}
.y1dd{bottom:1056.264480px;}
.y6f{bottom:1060.327125px;}
.yc9{bottom:1060.353150px;}
.y9c{bottom:1060.403100px;}
.y125{bottom:1061.354250px;}
.y1b1{bottom:1061.430675px;}
.yf7{bottom:1061.430750px;}
.y180{bottom:1061.985900px;}
.y153{bottom:1062.062400px;}
.y41{bottom:1065.165750px;}
.y3e{bottom:1065.169500px;}
.y20d{bottom:1074.998340px;}
.y11{bottom:1075.729200px;}
.y1dc{bottom:1077.268320px;}
.y6e{bottom:1084.329000px;}
.yc8{bottom:1084.355025px;}
.y9b{bottom:1084.404975px;}
.y124{bottom:1085.356125px;}
.y1b0{bottom:1085.432550px;}
.yf6{bottom:1085.432625px;}
.y17f{bottom:1085.987775px;}
.y152{bottom:1086.064275px;}
.y40{bottom:1089.167625px;}
.y13{bottom:1093.726590px;}
.y10{bottom:1093.729200px;}
.yf{bottom:1093.731810px;}
.y20c{bottom:1096.002180px;}
.y1db{bottom:1098.272160px;}
.y6d{bottom:1108.330875px;}
.yc7{bottom:1108.356900px;}
.y9a{bottom:1108.406850px;}
.y123{bottom:1109.358000px;}
.y1af{bottom:1109.434425px;}
.yf5{bottom:1109.434500px;}
.y17e{bottom:1109.989650px;}
.y151{bottom:1110.066150px;}
.y12{bottom:1111.723980px;}
.ye{bottom:1111.729200px;}
.y3f{bottom:1113.169500px;}
.y20b{bottom:1117.006020px;}
.y1da{bottom:1119.276000px;}
.y6c{bottom:1132.332750px;}
.yc6{bottom:1132.358775px;}
.y99{bottom:1132.408725px;}
.y122{bottom:1133.359875px;}
.y1ae{bottom:1133.436300px;}
.yf4{bottom:1133.436375px;}
.y17d{bottom:1133.991525px;}
.y150{bottom:1134.068025px;}
.y20a{bottom:1138.009860px;}
.y3d{bottom:1142.697000px;}
.y1d9{bottom:1146.276000px;}
.y6b{bottom:1156.334625px;}
.yc5{bottom:1156.360650px;}
.y98{bottom:1156.410600px;}
.y121{bottom:1157.361750px;}
.y1ad{bottom:1157.438175px;}
.yf3{bottom:1157.438250px;}
.yd{bottom:1157.986050px;}
.y17c{bottom:1157.993400px;}
.y14f{bottom:1158.069900px;}
.y209{bottom:1159.013700px;}
.y1{bottom:1205.692950px;}
.h3{height:51.016320px;}
.h8{height:54.639360px;}
.h15{height:56.511000px;}
.h7{height:56.512080px;}
.hf{height:57.375000px;}
.h14{height:57.393360px;}
.h6{height:57.820254px;}
.ha{height:57.835614px;}
.h9{height:57.850974px;}
.h13{height:57.882294px;}
.h12{height:57.897054px;}
.h11{height:57.989214px;}
.hd{height:65.704834px;}
.he{height:73.589414px;}
.h10{height:79.560000px;}
.h2{height:79.713000px;}
.hb{height:91.800000px;}
.h5{height:143.796000px;}
.h4{height:175.056000px;}
.hc{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;}
.x15{left:111.286500px;}
.x6{left:115.066500px;}
.xc{left:125.075550px;}
.x17{left:137.312400px;}
.x12{left:138.496200px;}
.x1f{left:147.786600px;}
.x16{left:150.399900px;}
.x1a{left:151.989600px;}
.x7{left:168.272940px;}
.x2c{left:175.914600px;}
.x26{left:180.893400px;}
.x2d{left:184.324800px;}
.xe{left:187.594800px;}
.x1b{left:210.480600px;}
.x24{left:219.448350px;}
.x1d{left:224.184750px;}
.x4{left:227.996400px;}
.x2b{left:233.289600px;}
.x14{left:239.297100px;}
.xb{left:257.673600px;}
.xa{left:277.387350px;}
.x23{left:292.172850px;}
.x8{left:295.381740px;}
.x5{left:301.378950px;}
.x2a{left:315.518100px;}
.x25{left:321.559350px;}
.x27{left:323.493450px;}
.x21{left:327.405600px;}
.x9{left:331.680450px;}
.x22{left:336.182850px;}
.x1e{left:344.545800px;}
.x10{left:352.568100px;}
.x28{left:355.598550px;}
.x29{left:359.622600px;}
.xd{left:377.755800px;}
.x20{left:416.701800px;}
.xf{left:459.968550px;}
.x11{left:483.963600px;}
.x13{left:506.479200px;}
.x1c{left:508.065600px;}
.x18{left:545.045400px;}
.x19{left:579.638025px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9b{letter-spacing:-14.960000pt;}
.ls96{letter-spacing:-6.462720pt;}
.ls92{letter-spacing:-5.265920pt;}
.ls88{letter-spacing:-4.760000pt;}
.ls84{letter-spacing:-2.788000pt;}
.ls87{letter-spacing:-2.720000pt;}
.ls51{letter-spacing:-2.652000pt;}
.ls9e{letter-spacing:-2.573120pt;}
.ls72{letter-spacing:-2.516000pt;}
.ls6a{letter-spacing:-2.448000pt;}
.ls86{letter-spacing:-2.312000pt;}
.ls7e{letter-spacing:-2.244000pt;}
.ls3c{letter-spacing:-2.176000pt;}
.ls98{letter-spacing:-2.154240pt;}
.ls46{letter-spacing:-2.108000pt;}
.ls50{letter-spacing:-2.040000pt;}
.lsa0{letter-spacing:-2.034560pt;}
.lsa7{letter-spacing:-1.974720pt;}
.ls57{letter-spacing:-1.836000pt;}
.lsa6{letter-spacing:-1.795200pt;}
.ls5b{letter-spacing:-1.768000pt;}
.ls8c{letter-spacing:-1.700000pt;}
.ls66{letter-spacing:-1.523200pt;}
.ls85{letter-spacing:-1.496000pt;}
.ls99{letter-spacing:-1.436160pt;}
.ls8d{letter-spacing:-1.360000pt;}
.ls80{letter-spacing:-1.292000pt;}
.ls16{letter-spacing:-1.256640pt;}
.ls76{letter-spacing:-1.224000pt;}
.ls75{letter-spacing:-1.156000pt;}
.ls6c{letter-spacing:-1.088000pt;}
.ls4d{letter-spacing:-1.020000pt;}
.lse{letter-spacing:-0.957440pt;}
.ls5f{letter-spacing:-0.952000pt;}
.ls3e{letter-spacing:-0.884000pt;}
.ls45{letter-spacing:-0.816000pt;}
.ls2b{letter-spacing:-0.777920pt;}
.ls69{letter-spacing:-0.748000pt;}
.ls19{letter-spacing:-0.718080pt;}
.ls64{letter-spacing:-0.685440pt;}
.ls55{letter-spacing:-0.680000pt;}
.ls93{letter-spacing:-0.658240pt;}
.ls6d{letter-spacing:-0.612000pt;}
.ls1b{letter-spacing:-0.598400pt;}
.ls37{letter-spacing:-0.544000pt;}
.ls17{letter-spacing:-0.538560pt;}
.ls67{letter-spacing:-0.533120pt;}
.ls26{letter-spacing:-0.478720pt;}
.ls3{letter-spacing:-0.476000pt;}
.ls97{letter-spacing:-0.418880pt;}
.ls2{letter-spacing:-0.408000pt;}
.ls11{letter-spacing:-0.391680pt;}
.ls43{letter-spacing:-0.340000pt;}
.ls18{letter-spacing:-0.299200pt;}
.ls47{letter-spacing:-0.272000pt;}
.ls95{letter-spacing:-0.239360pt;}
.ls44{letter-spacing:-0.204000pt;}
.ls25{letter-spacing:-0.179520pt;}
.lsab{letter-spacing:-0.146880pt;}
.ls59{letter-spacing:-0.136000pt;}
.lsa1{letter-spacing:-0.119680pt;}
.ls62{letter-spacing:-0.076160pt;}
.ls4f{letter-spacing:-0.068000pt;}
.lsa3{letter-spacing:-0.059840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.059840pt;}
.ls33{letter-spacing:0.068000pt;}
.ls65{letter-spacing:0.076160pt;}
.ls31{letter-spacing:0.136000pt;}
.ls63{letter-spacing:0.152320pt;}
.ls14{letter-spacing:0.179520pt;}
.lsb2{letter-spacing:0.195840pt;}
.ls4{letter-spacing:0.204000pt;}
.ls9d{letter-spacing:0.239360pt;}
.ls68{letter-spacing:0.272000pt;}
.ls90{letter-spacing:0.299200pt;}
.ls41{letter-spacing:0.340000pt;}
.ls15{letter-spacing:0.359040pt;}
.ls3d{letter-spacing:0.408000pt;}
.ls24{letter-spacing:0.418880pt;}
.lsb1{letter-spacing:0.440640pt;}
.ls4c{letter-spacing:0.476000pt;}
.lsa2{letter-spacing:0.478720pt;}
.ls91{letter-spacing:0.538560pt;}
.ls54{letter-spacing:0.544000pt;}
.lsac{letter-spacing:0.587520pt;}
.ls9a{letter-spacing:0.598400pt;}
.ls39{letter-spacing:0.612000pt;}
.lsf{letter-spacing:0.636480pt;}
.lsa4{letter-spacing:0.658240pt;}
.ls36{letter-spacing:0.680000pt;}
.lsb0{letter-spacing:0.734400pt;}
.ls3f{letter-spacing:0.748000pt;}
.ls1e{letter-spacing:0.777920pt;}
.ls38{letter-spacing:0.816000pt;}
.ls29{letter-spacing:0.837760pt;}
.lsaf{letter-spacing:0.881280pt;}
.ls58{letter-spacing:0.884000pt;}
.ls94{letter-spacing:0.897600pt;}
.lsaa{letter-spacing:0.930240pt;}
.ls4a{letter-spacing:0.952000pt;}
.ls1f{letter-spacing:0.957440pt;}
.lsb3{letter-spacing:0.979200pt;}
.ls1d{letter-spacing:1.017280pt;}
.ls6b{letter-spacing:1.020000pt;}
.ls10{letter-spacing:1.077120pt;}
.ls74{letter-spacing:1.088000pt;}
.ls48{letter-spacing:1.156000pt;}
.lsa9{letter-spacing:1.175040pt;}
.ls8f{letter-spacing:1.178667pt;}
.ls22{letter-spacing:1.196800pt;}
.ls4b{letter-spacing:1.224000pt;}
.ls8a{letter-spacing:1.280000pt;}
.ls5c{letter-spacing:1.292000pt;}
.ls21{letter-spacing:1.316480pt;}
.ls7{letter-spacing:1.344000pt;}
.ls3b{letter-spacing:1.360000pt;}
.ls1c{letter-spacing:1.376320pt;}
.lsad{letter-spacing:1.419840pt;}
.ls52{letter-spacing:1.428000pt;}
.ls20{letter-spacing:1.436160pt;}
.ls49{letter-spacing:1.496000pt;}
.ls42{letter-spacing:1.564000pt;}
.lsb{letter-spacing:1.594667pt;}
.lsae{letter-spacing:1.615680pt;}
.ls4e{letter-spacing:1.632000pt;}
.ls12{letter-spacing:1.675520pt;}
.ls53{letter-spacing:1.700000pt;}
.ls23{letter-spacing:1.735360pt;}
.ls3a{letter-spacing:1.768000pt;}
.ls9f{letter-spacing:1.795200pt;}
.ls70{letter-spacing:1.836000pt;}
.lsc{letter-spacing:1.840000pt;}
.ls2a{letter-spacing:1.855040pt;}
.ls6{letter-spacing:1.871360pt;}
.ls7a{letter-spacing:1.904000pt;}
.ls32{letter-spacing:1.920000pt;}
.ls71{letter-spacing:1.972000pt;}
.ls13{letter-spacing:1.974720pt;}
.ls61{letter-spacing:2.000000pt;}
.ls7d{letter-spacing:2.040000pt;}
.ls5e{letter-spacing:2.160000pt;}
.ls56{letter-spacing:2.176000pt;}
.ls78{letter-spacing:2.244000pt;}
.ls5{letter-spacing:2.263040pt;}
.ls7c{letter-spacing:2.312000pt;}
.ls9c{letter-spacing:2.320000pt;}
.ls27{letter-spacing:2.333760pt;}
.ls6f{letter-spacing:2.380000pt;}
.lsa{letter-spacing:2.389333pt;}
.ls5d{letter-spacing:2.400000pt;}
.ls7f{letter-spacing:2.448000pt;}
.ls35{letter-spacing:2.516000pt;}
.ls77{letter-spacing:2.584000pt;}
.ls83{letter-spacing:2.720000pt;}
.ls79{letter-spacing:2.788000pt;}
.ls34{letter-spacing:2.992000pt;}
.lsd{letter-spacing:3.066667pt;}
.ls8b{letter-spacing:3.128000pt;}
.ls40{letter-spacing:3.196000pt;}
.ls5a{letter-spacing:3.332000pt;}
.lsa8{letter-spacing:3.351040pt;}
.ls8{letter-spacing:3.434667pt;}
.ls6e{letter-spacing:3.468000pt;}
.ls28{letter-spacing:3.590400pt;}
.ls9{letter-spacing:3.733333pt;}
.ls82{letter-spacing:3.876000pt;}
.ls2e{letter-spacing:4.248640pt;}
.ls2f{letter-spacing:4.368320pt;}
.ls2c{letter-spacing:6.283200pt;}
.ls2d{letter-spacing:6.702080pt;}
.ls30{letter-spacing:48.144000pt;}
.ls0{letter-spacing:48.280000pt;}
.ls60{letter-spacing:52.088000pt;}
.lsa5{letter-spacing:52.700000pt;}
.ls81{letter-spacing:53.040000pt;}
.ls8e{letter-spacing:53.176000pt;}
.ls7b{letter-spacing:53.244000pt;}
.ls89{letter-spacing:53.924000pt;}
.ls73{letter-spacing:55.420000pt;}
.ws2{word-spacing:-36.586667pt;}
.ws9b{word-spacing:-21.760000pt;}
.ws34{word-spacing:-21.600000pt;}
.ws32{word-spacing:-21.360000pt;}
.ws5{word-spacing:-21.243200pt;}
.ws96{word-spacing:-20.720000pt;}
.ws93{word-spacing:-18.564000pt;}
.ws8a{word-spacing:-18.156000pt;}
.ws87{word-spacing:-17.884000pt;}
.ws8b{word-spacing:-17.816000pt;}
.ws94{word-spacing:-17.476000pt;}
.ws86{word-spacing:-17.340000pt;}
.ws95{word-spacing:-17.136000pt;}
.ws7e{word-spacing:-17.068000pt;}
.ws7d{word-spacing:-16.728000pt;}
.ws33{word-spacing:-16.320000pt;}
.ws89{word-spacing:-16.184000pt;}
.ws8d{word-spacing:-15.980000pt;}
.ws1{word-spacing:-15.776000pt;}
.ws85{word-spacing:-15.708000pt;}
.ws88{word-spacing:-15.504000pt;}
.ws84{word-spacing:-15.436000pt;}
.ws4{word-spacing:-15.378880pt;}
.ws97{word-spacing:-15.300000pt;}
.ws9a{word-spacing:-15.232000pt;}
.ws0{word-spacing:-15.164000pt;}
.ws9d{word-spacing:-14.780480pt;}
.ws63{word-spacing:-14.688000pt;}
.ws3{word-spacing:-14.361600pt;}
.wsb3{word-spacing:-12.985280pt;}
.ws9c{word-spacing:-12.386880pt;}
.ws8c{word-spacing:-12.240000pt;}
.wsb5{word-spacing:-10.575360pt;}
.wsb4{word-spacing:-9.840960pt;}
.ws2e{word-spacing:-6.702080pt;}
.ws30{word-spacing:-4.368320pt;}
.ws2f{word-spacing:-4.248640pt;}
.ws8e{word-spacing:-3.876000pt;}
.wsc{word-spacing:-3.733333pt;}
.ws29{word-spacing:-3.590400pt;}
.ws71{word-spacing:-3.468000pt;}
.wsb{word-spacing:-3.434667pt;}
.wsb7{word-spacing:-3.351040pt;}
.ws5e{word-spacing:-3.332000pt;}
.ws42{word-spacing:-3.196000pt;}
.ws98{word-spacing:-3.128000pt;}
.wsf{word-spacing:-3.066667pt;}
.ws36{word-spacing:-2.992000pt;}
.ws7b{word-spacing:-2.788000pt;}
.ws8f{word-spacing:-2.720000pt;}
.ws79{word-spacing:-2.584000pt;}
.ws37{word-spacing:-2.516000pt;}
.ws82{word-spacing:-2.448000pt;}
.ws61{word-spacing:-2.400000pt;}
.ws72{word-spacing:-2.380000pt;}
.ws28{word-spacing:-2.333760pt;}
.ws7f{word-spacing:-2.312000pt;}
.ws8{word-spacing:-2.263040pt;}
.ws7a{word-spacing:-2.244000pt;}
.ws5a{word-spacing:-2.176000pt;}
.ws80{word-spacing:-2.040000pt;}
.ws64{word-spacing:-2.000000pt;}
.ws15{word-spacing:-1.974720pt;}
.ws74{word-spacing:-1.972000pt;}
.ws7c{word-spacing:-1.904000pt;}
.ws9{word-spacing:-1.871360pt;}
.ws2b{word-spacing:-1.855040pt;}
.wse{word-spacing:-1.840000pt;}
.ws73{word-spacing:-1.836000pt;}
.wsad{word-spacing:-1.795200pt;}
.ws3c{word-spacing:-1.768000pt;}
.ws25{word-spacing:-1.735360pt;}
.ws57{word-spacing:-1.700000pt;}
.ws14{word-spacing:-1.675520pt;}
.ws52{word-spacing:-1.632000pt;}
.wsbb{word-spacing:-1.615680pt;}
.wsd{word-spacing:-1.594667pt;}
.ws45{word-spacing:-1.564000pt;}
.ws4c{word-spacing:-1.496000pt;}
.ws22{word-spacing:-1.436160pt;}
.ws56{word-spacing:-1.428000pt;}
.wsba{word-spacing:-1.419840pt;}
.ws1e{word-spacing:-1.376320pt;}
.ws3d{word-spacing:-1.360000pt;}
.wsa{word-spacing:-1.344000pt;}
.ws23{word-spacing:-1.316480pt;}
.ws60{word-spacing:-1.292000pt;}
.ws4e{word-spacing:-1.224000pt;}
.ws24{word-spacing:-1.196800pt;}
.ws9e{word-spacing:-1.178667pt;}
.wsb8{word-spacing:-1.175040pt;}
.ws4b{word-spacing:-1.156000pt;}
.ws76{word-spacing:-1.088000pt;}
.ws12{word-spacing:-1.077120pt;}
.ws6e{word-spacing:-1.020000pt;}
.ws1f{word-spacing:-1.017280pt;}
.wsc0{word-spacing:-0.979200pt;}
.ws21{word-spacing:-0.957440pt;}
.ws4d{word-spacing:-0.952000pt;}
.wsb9{word-spacing:-0.930240pt;}
.wsa3{word-spacing:-0.897600pt;}
.ws5c{word-spacing:-0.884000pt;}
.wsbc{word-spacing:-0.881280pt;}
.ws2a{word-spacing:-0.837760pt;}
.ws3a{word-spacing:-0.816000pt;}
.ws20{word-spacing:-0.777920pt;}
.ws41{word-spacing:-0.748000pt;}
.wsbd{word-spacing:-0.734400pt;}
.ws38{word-spacing:-0.680000pt;}
.wsb2{word-spacing:-0.658240pt;}
.ws11{word-spacing:-0.636480pt;}
.ws3b{word-spacing:-0.612000pt;}
.wsa9{word-spacing:-0.598400pt;}
.ws58{word-spacing:-0.544000pt;}
.wsa0{word-spacing:-0.538560pt;}
.wsb0{word-spacing:-0.478720pt;}
.ws4f{word-spacing:-0.476000pt;}
.wsbe{word-spacing:-0.440640pt;}
.ws2c{word-spacing:-0.418880pt;}
.ws3f{word-spacing:-0.408000pt;}
.ws17{word-spacing:-0.359040pt;}
.ws44{word-spacing:-0.340000pt;}
.ws9f{word-spacing:-0.299200pt;}
.ws6b{word-spacing:-0.272000pt;}
.wsab{word-spacing:-0.239360pt;}
.ws31{word-spacing:-0.204000pt;}
.wsbf{word-spacing:-0.195840pt;}
.ws16{word-spacing:-0.179520pt;}
.ws66{word-spacing:-0.152320pt;}
.ws51{word-spacing:-0.136000pt;}
.ws68{word-spacing:-0.076160pt;}
.ws35{word-spacing:-0.068000pt;}
.ws1c{word-spacing:-0.059840pt;}
.ws6{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.059840pt;}
.ws53{word-spacing:0.068000pt;}
.ws65{word-spacing:0.076160pt;}
.wsaf{word-spacing:0.119680pt;}
.ws5d{word-spacing:0.136000pt;}
.ws26{word-spacing:0.179520pt;}
.ws47{word-spacing:0.204000pt;}
.wsa4{word-spacing:0.239360pt;}
.ws4a{word-spacing:0.272000pt;}
.ws1a{word-spacing:0.299200pt;}
.ws46{word-spacing:0.340000pt;}
.ws13{word-spacing:0.391680pt;}
.ws43{word-spacing:0.408000pt;}
.wsa6{word-spacing:0.418880pt;}
.ws7{word-spacing:0.476000pt;}
.ws27{word-spacing:0.478720pt;}
.ws6a{word-spacing:0.533120pt;}
.ws19{word-spacing:0.538560pt;}
.ws39{word-spacing:0.544000pt;}
.ws1d{word-spacing:0.598400pt;}
.ws70{word-spacing:0.612000pt;}
.wsa2{word-spacing:0.658240pt;}
.ws59{word-spacing:0.680000pt;}
.ws67{word-spacing:0.685440pt;}
.ws1b{word-spacing:0.718080pt;}
.ws6c{word-spacing:0.748000pt;}
.ws2d{word-spacing:0.777920pt;}
.ws48{word-spacing:0.816000pt;}
.ws40{word-spacing:0.884000pt;}
.ws62{word-spacing:0.952000pt;}
.ws10{word-spacing:0.957440pt;}
.ws50{word-spacing:1.020000pt;}
.ws6f{word-spacing:1.088000pt;}
.ws77{word-spacing:1.156000pt;}
.ws78{word-spacing:1.224000pt;}
.ws18{word-spacing:1.256640pt;}
.ws83{word-spacing:1.292000pt;}
.ws99{word-spacing:1.360000pt;}
.wsa8{word-spacing:1.436160pt;}
.wsac{word-spacing:1.496000pt;}
.ws69{word-spacing:1.523200pt;}
.ws5f{word-spacing:1.768000pt;}
.wsb6{word-spacing:1.795200pt;}
.ws5b{word-spacing:1.836000pt;}
.wsae{word-spacing:2.034560pt;}
.ws54{word-spacing:2.040000pt;}
.ws49{word-spacing:2.108000pt;}
.wsa7{word-spacing:2.154240pt;}
.ws3e{word-spacing:2.176000pt;}
.ws81{word-spacing:2.244000pt;}
.ws91{word-spacing:2.312000pt;}
.ws6d{word-spacing:2.448000pt;}
.ws75{word-spacing:2.516000pt;}
.ws55{word-spacing:2.652000pt;}
.ws92{word-spacing:2.720000pt;}
.ws90{word-spacing:2.788000pt;}
.wsa1{word-spacing:5.265920pt;}
.wsa5{word-spacing:6.462720pt;}
.wsaa{word-spacing:14.960000pt;}
._15{margin-left:-17.142800pt;}
._1a{margin-left:-15.606000pt;}
._1d{margin-left:-9.815664pt;}
._16{margin-left:-8.291200pt;}
._3{margin-left:-7.072000pt;}
._1c{margin-left:-5.951952pt;}
._b{margin-left:-4.919467pt;}
._c{margin-left:-3.850800pt;}
._2{margin-left:-2.828800pt;}
._1{margin-left:-1.251200pt;}
._5{width:1.224000pt;}
._6{width:2.237200pt;}
._9{width:3.860000pt;}
._e{width:4.829067pt;}
._7{width:6.570667pt;}
._8{width:7.748267pt;}
._d{width:8.970401pt;}
._a{width:10.975417pt;}
._10{width:11.926119pt;}
._12{width:12.852000pt;}
._13{width:13.804000pt;}
._1b{width:16.156800pt;}
._19{width:18.011840pt;}
._17{width:22.298560pt;}
._18{width:23.409332pt;}
._0{width:135.320000pt;}
._11{width:140.012000pt;}
._14{width:141.712000pt;}
._4{width:1738.420000pt;}
._f{width:1761.572987pt;}
.fs1{font-size:43.520000pt;}
.fs5{font-size:48.960000pt;}
.fs4{font-size:59.840000pt;}
.fsa{font-size:61.333333pt;}
.fs0{font-size:68.000000pt;}
.fs9{font-size:69.333333pt;}
.fs8{font-size:76.160000pt;}
.fs6{font-size:80.000000pt;}
.fs3{font-size:122.666667pt;}
.fs2{font-size:149.333333pt;}
.fs7{font-size:255.177067pt;}
.y0{bottom:0.000000pt;}
.yc4{bottom:65.727133pt;}
.y97{bottom:65.755600pt;}
.yf2{bottom:67.801133pt;}
.y14e{bottom:68.691000pt;}
.y120{bottom:68.759000pt;}
.y29{bottom:69.644533pt;}
.y6a{bottom:72.079000pt;}
.yc3{bottom:87.062133pt;}
.y96{bottom:87.090600pt;}
.y28{bottom:88.307787pt;}
.yf1{bottom:89.136133pt;}
.y14d{bottom:90.026000pt;}
.y11f{bottom:90.094000pt;}
.y1a8{bottom:90.587467pt;}
.y17b{bottom:90.655467pt;}
.y1ac{bottom:90.688933pt;}
.y69{bottom:93.414000pt;}
.y27{bottom:106.977867pt;}
.yc2{bottom:108.397133pt;}
.y95{bottom:108.425600pt;}
.yf0{bottom:110.471133pt;}
.y14c{bottom:111.361000pt;}
.y1d8{bottom:111.428933pt;}
.y11e{bottom:111.429000pt;}
.y1a7{bottom:111.922467pt;}
.y17a{bottom:111.990467pt;}
.y1ab{bottom:112.023933pt;}
.y208{bottom:112.705413pt;}
.y68{bottom:114.749000pt;}
.y26{bottom:125.644533pt;}
.y3c{bottom:126.911413pt;}
.yc1{bottom:129.732133pt;}
.y94{bottom:129.760600pt;}
.y207{bottom:131.375493pt;}
.yef{bottom:131.806133pt;}
.y14b{bottom:132.696000pt;}
.y1d7{bottom:132.763933pt;}
.y11d{bottom:132.764000pt;}
.y1a6{bottom:133.257467pt;}
.y179{bottom:133.325467pt;}
.y1aa{bottom:133.358933pt;}
.y67{bottom:136.084000pt;}
.y25{bottom:144.307787pt;}
.y3b{bottom:145.581493pt;}
.y206{bottom:150.045573pt;}
.yc0{bottom:151.067133pt;}
.y93{bottom:151.095600pt;}
.yee{bottom:153.141133pt;}
.y14a{bottom:154.031000pt;}
.y1d6{bottom:154.098933pt;}
.y11c{bottom:154.099000pt;}
.y1a5{bottom:154.592467pt;}
.y178{bottom:154.660467pt;}
.y66{bottom:157.419000pt;}
.y1a9{bottom:159.605600pt;}
.y24{bottom:162.977867pt;}
.y3a{bottom:164.251573pt;}
.y205{bottom:168.715653pt;}
.ybf{bottom:172.402133pt;}
.y92{bottom:172.430600pt;}
.yed{bottom:174.476133pt;}
.y149{bottom:175.366000pt;}
.y1d5{bottom:175.433933pt;}
.y11b{bottom:175.434000pt;}
.y1a4{bottom:175.927467pt;}
.y177{bottom:175.995467pt;}
.y65{bottom:178.754000pt;}
.y23{bottom:181.641120pt;}
.y39{bottom:182.921653pt;}
.y204{bottom:187.385733pt;}
.ybe{bottom:193.737133pt;}
.y91{bottom:193.765600pt;}
.yec{bottom:195.811133pt;}
.y148{bottom:196.701000pt;}
.y1d4{bottom:196.768933pt;}
.y11a{bottom:196.769000pt;}
.y1a3{bottom:197.262467pt;}
.y176{bottom:197.330467pt;}
.y64{bottom:200.089000pt;}
.y22{bottom:200.311200pt;}
.y38{bottom:201.591733pt;}
.y203{bottom:206.055813pt;}
.ybd{bottom:215.072133pt;}
.y90{bottom:215.100600pt;}
.yeb{bottom:217.146133pt;}
.y147{bottom:218.036000pt;}
.y1d3{bottom:218.103933pt;}
.y119{bottom:218.104000pt;}
.y1a2{bottom:218.597467pt;}
.y175{bottom:218.665467pt;}
.y21{bottom:218.977867pt;}
.y37{bottom:220.261813pt;}
.y63{bottom:221.424000pt;}
.y202{bottom:224.725893pt;}
.ybc{bottom:236.407133pt;}
.y8f{bottom:236.435600pt;}
.y20{bottom:237.644533pt;}
.yea{bottom:238.481133pt;}
.y36{bottom:238.931893pt;}
.y146{bottom:239.371000pt;}
.y1d2{bottom:239.438933pt;}
.y118{bottom:239.439000pt;}
.y1a1{bottom:239.932467pt;}
.y174{bottom:240.000467pt;}
.y62{bottom:242.759000pt;}
.y201{bottom:243.395973pt;}
.y1f{bottom:256.307787pt;}
.y35{bottom:257.601973pt;}
.ybb{bottom:257.742133pt;}
.y8e{bottom:257.770600pt;}
.ye9{bottom:259.816133pt;}
.y145{bottom:260.706000pt;}
.y1d1{bottom:260.773933pt;}
.y117{bottom:260.774000pt;}
.y1a0{bottom:261.267467pt;}
.y173{bottom:261.335467pt;}
.y200{bottom:262.066053pt;}
.y61{bottom:264.094000pt;}
.y1e{bottom:274.977867pt;}
.y34{bottom:276.272053pt;}
.yba{bottom:279.077133pt;}
.y8d{bottom:279.105600pt;}
.y1ff{bottom:280.736133pt;}
.ye8{bottom:281.151133pt;}
.y144{bottom:282.041000pt;}
.y1d0{bottom:282.108933pt;}
.y116{bottom:282.109000pt;}
.y19f{bottom:282.602467pt;}
.y172{bottom:282.670467pt;}
.y60{bottom:285.429000pt;}
.y1d{bottom:293.644533pt;}
.y33{bottom:294.942133pt;}
.y1fe{bottom:299.406213pt;}
.yb9{bottom:300.412133pt;}
.y8c{bottom:300.440600pt;}
.ye7{bottom:302.486133pt;}
.y143{bottom:303.376000pt;}
.y1cf{bottom:303.443933pt;}
.y115{bottom:303.444000pt;}
.y19e{bottom:303.937467pt;}
.y171{bottom:304.005467pt;}
.y5f{bottom:306.764000pt;}
.y1c{bottom:312.304373pt;}
.y32{bottom:313.612213pt;}
.y1fd{bottom:318.076293pt;}
.yb8{bottom:321.747133pt;}
.y8b{bottom:321.775600pt;}
.ye6{bottom:323.821133pt;}
.y142{bottom:324.711000pt;}
.y1ce{bottom:324.778933pt;}
.y114{bottom:324.779000pt;}
.y19d{bottom:325.272467pt;}
.y170{bottom:325.340467pt;}
.y5e{bottom:328.099000pt;}
.y1b{bottom:330.974453pt;}
.y31{bottom:332.282293pt;}
.y1fc{bottom:336.746373pt;}
.yb7{bottom:343.082133pt;}
.y8a{bottom:343.110600pt;}
.ye5{bottom:345.156133pt;}
.y141{bottom:346.046000pt;}
.y1cd{bottom:346.113933pt;}
.y113{bottom:346.114000pt;}
.y19c{bottom:346.607467pt;}
.y16f{bottom:346.675467pt;}
.y5d{bottom:349.434000pt;}
.y1a{bottom:349.644533pt;}
.y30{bottom:350.952373pt;}
.y1fb{bottom:355.416453pt;}
.yb6{bottom:364.417133pt;}
.y89{bottom:364.445600pt;}
.ye4{bottom:366.491133pt;}
.y140{bottom:367.381000pt;}
.y1cc{bottom:367.448933pt;}
.y112{bottom:367.449000pt;}
.y19b{bottom:367.942467pt;}
.y16e{bottom:368.010467pt;}
.y19{bottom:368.311200pt;}
.y2f{bottom:369.622453pt;}
.y5c{bottom:370.769000pt;}
.y1fa{bottom:374.086533pt;}
.yb5{bottom:385.752133pt;}
.y18{bottom:386.974453pt;}
.ye3{bottom:387.826133pt;}
.y2e{bottom:388.292533pt;}
.y13f{bottom:388.716000pt;}
.y1cb{bottom:388.783933pt;}
.y111{bottom:388.784000pt;}
.y19a{bottom:389.277467pt;}
.y16d{bottom:389.345467pt;}
.y88{bottom:390.692267pt;}
.y5b{bottom:392.104000pt;}
.y1f9{bottom:392.756613pt;}
.y17{bottom:405.644533pt;}
.y2d{bottom:406.962613pt;}
.yb4{bottom:407.087133pt;}
.ye2{bottom:409.161133pt;}
.y13e{bottom:410.051000pt;}
.y1ca{bottom:410.118933pt;}
.y110{bottom:410.119000pt;}
.y199{bottom:410.612467pt;}
.y16c{bottom:410.680467pt;}
.y1f8{bottom:411.426693pt;}
.y5a{bottom:413.439000pt;}
.y87{bottom:414.692267pt;}
.y16{bottom:424.304373pt;}
.y2c{bottom:425.632693pt;}
.yb3{bottom:428.422133pt;}
.y1f7{bottom:430.096773pt;}
.ye1{bottom:430.496133pt;}
.y13d{bottom:431.386000pt;}
.y1c9{bottom:431.453933pt;}
.y10f{bottom:431.454000pt;}
.y198{bottom:431.947467pt;}
.y16b{bottom:432.015467pt;}
.y59{bottom:434.774000pt;}
.y15{bottom:442.974453pt;}
.y2b{bottom:444.302773pt;}
.y1f6{bottom:448.766853pt;}
.yb2{bottom:449.757133pt;}
.y86{bottom:451.808000pt;}
.ye0{bottom:451.831133pt;}
.y13c{bottom:452.721000pt;}
.y1c8{bottom:452.788933pt;}
.y10e{bottom:452.789000pt;}
.y197{bottom:453.282467pt;}
.y16a{bottom:453.350467pt;}
.y58{bottom:456.109000pt;}
.y14{bottom:461.644533pt;}
.y2a{bottom:462.972853pt;}
.y1f5{bottom:467.436933pt;}
.yb1{bottom:471.092133pt;}
.y85{bottom:473.143000pt;}
.ydf{bottom:473.166133pt;}
.y13b{bottom:474.056000pt;}
.y1c7{bottom:474.123933pt;}
.y10d{bottom:474.124000pt;}
.y196{bottom:474.617467pt;}
.y169{bottom:474.685467pt;}
.y57{bottom:477.444000pt;}
.y1f4{bottom:491.016933pt;}
.yb0{bottom:492.427133pt;}
.y84{bottom:494.478000pt;}
.yde{bottom:494.501133pt;}
.y13a{bottom:495.391000pt;}
.y1c6{bottom:495.458933pt;}
.y10c{bottom:495.459000pt;}
.y195{bottom:495.952467pt;}
.y168{bottom:496.020467pt;}
.y56{bottom:498.779000pt;}
.yaf{bottom:513.762133pt;}
.y83{bottom:515.813000pt;}
.ydd{bottom:515.836133pt;}
.y139{bottom:516.726000pt;}
.y1c5{bottom:516.793933pt;}
.y10b{bottom:516.794000pt;}
.y194{bottom:517.287467pt;}
.y167{bottom:517.355467pt;}
.y55{bottom:520.114000pt;}
.yc{bottom:526.152133pt;}
.y1f3{bottom:528.241920pt;}
.y213{bottom:531.664720pt;}
.yae{bottom:535.097133pt;}
.y82{bottom:537.148000pt;}
.ydc{bottom:537.171133pt;}
.y138{bottom:538.061000pt;}
.y1c4{bottom:538.128933pt;}
.y10a{bottom:538.129000pt;}
.y193{bottom:538.622467pt;}
.y166{bottom:538.690467pt;}
.y54{bottom:541.449000pt;}
.y1f2{bottom:546.912000pt;}
.y212{bottom:554.104720pt;}
.yad{bottom:556.432133pt;}
.y81{bottom:558.483000pt;}
.ydb{bottom:558.506133pt;}
.y137{bottom:559.396000pt;}
.y1c3{bottom:559.463933pt;}
.y109{bottom:559.464000pt;}
.y192{bottom:559.957467pt;}
.y165{bottom:560.025467pt;}
.y53{bottom:562.784000pt;}
.yb{bottom:564.818800pt;}
.y1f1{bottom:565.575253pt;}
.y211{bottom:572.774800pt;}
.yac{bottom:577.767133pt;}
.y80{bottom:579.818000pt;}
.yda{bottom:579.841133pt;}
.y136{bottom:580.731000pt;}
.y1c2{bottom:580.798933pt;}
.y108{bottom:580.799000pt;}
.y191{bottom:581.292467pt;}
.y164{bottom:581.360467pt;}
.y52{bottom:584.119000pt;}
.y1f0{bottom:584.245333pt;}
.y210{bottom:595.214800pt;}
.yab{bottom:599.102133pt;}
.y7f{bottom:601.153000pt;}
.yd9{bottom:601.176133pt;}
.y135{bottom:602.066000pt;}
.y1c1{bottom:602.133933pt;}
.y107{bottom:602.134000pt;}
.y190{bottom:602.627467pt;}
.y163{bottom:602.695467pt;}
.y1ef{bottom:602.912000pt;}
.ya{bottom:603.485467pt;}
.y51{bottom:605.454000pt;}
.y20f{bottom:617.654800pt;}
.yaa{bottom:620.437133pt;}
.y1ee{bottom:621.561600pt;}
.y7e{bottom:622.488000pt;}
.yd8{bottom:622.511133pt;}
.y134{bottom:623.401000pt;}
.y1c0{bottom:623.468933pt;}
.y106{bottom:623.469000pt;}
.y18f{bottom:623.962467pt;}
.y162{bottom:624.030467pt;}
.y50{bottom:626.789000pt;}
.y20e{bottom:636.307680pt;}
.y1ed{bottom:640.231680pt;}
.ya9{bottom:641.772133pt;}
.y9{bottom:642.152133pt;}
.y7d{bottom:643.823000pt;}
.yd7{bottom:643.846133pt;}
.y133{bottom:644.736000pt;}
.y1bf{bottom:644.803933pt;}
.y105{bottom:644.804000pt;}
.y18e{bottom:645.297467pt;}
.y161{bottom:645.365467pt;}
.y4f{bottom:648.124000pt;}
.y1ec{bottom:658.901760pt;}
.ya8{bottom:663.107133pt;}
.y7c{bottom:665.158000pt;}
.yd6{bottom:665.181133pt;}
.y132{bottom:666.071000pt;}
.y1be{bottom:666.138933pt;}
.y104{bottom:666.139000pt;}
.y18d{bottom:666.632467pt;}
.y160{bottom:666.700467pt;}
.y4e{bottom:669.459000pt;}
.y1eb{bottom:677.571840pt;}
.ya7{bottom:684.442133pt;}
.y7b{bottom:686.493000pt;}
.yd5{bottom:686.516133pt;}
.y131{bottom:687.406000pt;}
.y1bd{bottom:687.473933pt;}
.y103{bottom:687.474000pt;}
.y18c{bottom:687.967467pt;}
.y15f{bottom:688.035467pt;}
.y4d{bottom:690.794000pt;}
.y1ea{bottom:696.241920pt;}
.y8{bottom:700.818800pt;}
.y2{bottom:701.664933pt;}
.ya6{bottom:705.777133pt;}
.y7a{bottom:707.828000pt;}
.yd4{bottom:707.851133pt;}
.y222{bottom:708.644667pt;}
.y130{bottom:708.741000pt;}
.y1bc{bottom:708.808933pt;}
.y102{bottom:708.809000pt;}
.y18b{bottom:709.302467pt;}
.y15e{bottom:709.370467pt;}
.y4c{bottom:712.129000pt;}
.y1e9{bottom:714.912000pt;}
.y221{bottom:724.644667pt;}
.ya5{bottom:727.112133pt;}
.y79{bottom:729.163000pt;}
.yd3{bottom:729.186133pt;}
.y12f{bottom:730.076000pt;}
.y1bb{bottom:730.143933pt;}
.y101{bottom:730.144000pt;}
.y18a{bottom:730.637467pt;}
.y15d{bottom:730.705467pt;}
.y4b{bottom:733.464000pt;}
.y1e8{bottom:733.571840pt;}
.y220{bottom:740.644667pt;}
.y21f{bottom:740.653947pt;}
.y229{bottom:740.656267pt;}
.y7{bottom:745.618800pt;}
.ya4{bottom:748.454000pt;}
.y3{bottom:749.558267pt;}
.y78{bottom:750.498000pt;}
.yd2{bottom:750.521133pt;}
.y12e{bottom:751.411000pt;}
.y1ba{bottom:751.478933pt;}
.y100{bottom:751.479000pt;}
.y189{bottom:751.972467pt;}
.y15c{bottom:752.040467pt;}
.y1e7{bottom:752.241920pt;}
.y4a{bottom:754.799000pt;}
.y21e{bottom:756.651627pt;}
.y228{bottom:756.653947pt;}
.ya3{bottom:769.778800pt;}
.y1e6{bottom:770.912000pt;}
.y77{bottom:771.833000pt;}
.yd1{bottom:771.856133pt;}
.y21d{bottom:772.649307pt;}
.y227{bottom:772.651627pt;}
.y12d{bottom:772.746000pt;}
.y1b9{bottom:772.813933pt;}
.yff{bottom:772.814000pt;}
.y188{bottom:773.307467pt;}
.y15b{bottom:773.375467pt;}
.y49{bottom:776.134000pt;}
.y1e5{bottom:789.541120pt;}
.y6{bottom:790.418800pt;}
.ya2{bottom:791.120667pt;}
.y76{bottom:793.168000pt;}
.yd0{bottom:793.191133pt;}
.y12c{bottom:794.081000pt;}
.y1b8{bottom:794.148933pt;}
.yfe{bottom:794.149000pt;}
.y187{bottom:794.642467pt;}
.y15a{bottom:794.710467pt;}
.y48{bottom:797.469000pt;}
.y21c{bottom:804.644667pt;}
.y226{bottom:804.646987pt;}
.y1e4{bottom:808.211200pt;}
.ya1{bottom:812.445467pt;}
.y75{bottom:814.503000pt;}
.ycf{bottom:814.526133pt;}
.y12b{bottom:815.416000pt;}
.y1b7{bottom:815.483933pt;}
.yfd{bottom:815.484000pt;}
.y186{bottom:815.977467pt;}
.y159{bottom:816.045467pt;}
.y47{bottom:818.804000pt;}
.y21b{bottom:820.644667pt;}
.y1e3{bottom:826.881280pt;}
.ya0{bottom:833.778800pt;}
.y5{bottom:835.218800pt;}
.y74{bottom:835.838000pt;}
.yce{bottom:835.861133pt;}
.y21a{bottom:836.644667pt;}
.y219{bottom:836.646987pt;}
.y12a{bottom:836.751000pt;}
.y1b6{bottom:836.818933pt;}
.yfc{bottom:836.819000pt;}
.y185{bottom:837.312467pt;}
.y158{bottom:837.380467pt;}
.y46{bottom:840.139000pt;}
.y1e2{bottom:845.551360pt;}
.y218{bottom:852.644667pt;}
.y9f{bottom:855.112133pt;}
.y73{bottom:857.173000pt;}
.ycd{bottom:857.196133pt;}
.y129{bottom:858.086000pt;}
.y1b5{bottom:858.153933pt;}
.yfb{bottom:858.154000pt;}
.y184{bottom:858.647467pt;}
.y157{bottom:858.715467pt;}
.y45{bottom:861.474000pt;}
.y1e1{bottom:864.221440pt;}
.y216{bottom:868.644053pt;}
.y217{bottom:868.644667pt;}
.y225{bottom:868.645947pt;}
.y72{bottom:878.508000pt;}
.ycc{bottom:878.531133pt;}
.y128{bottom:879.421000pt;}
.y1b4{bottom:879.488933pt;}
.yfa{bottom:879.489000pt;}
.y183{bottom:879.982467pt;}
.y4{bottom:880.018933pt;}
.y156{bottom:880.050467pt;}
.y9e{bottom:881.358933pt;}
.y44{bottom:882.809000pt;}
.y1e0{bottom:882.891520pt;}
.y215{bottom:884.641733pt;}
.y224{bottom:884.643627pt;}
.y71{bottom:899.843000pt;}
.ycb{bottom:899.866133pt;}
.y127{bottom:900.756000pt;}
.y1b3{bottom:900.823933pt;}
.yf9{bottom:900.824000pt;}
.y182{bottom:901.317467pt;}
.y155{bottom:901.385467pt;}
.y1df{bottom:901.561600pt;}
.y43{bottom:904.144000pt;}
.y9d{bottom:905.358933pt;}
.y214{bottom:908.203733pt;}
.y223{bottom:908.205627pt;}
.y1de{bottom:920.231680pt;}
.y70{bottom:921.178000pt;}
.yca{bottom:921.201133pt;}
.y126{bottom:922.091000pt;}
.y1b2{bottom:922.158933pt;}
.yf8{bottom:922.159000pt;}
.y181{bottom:922.652467pt;}
.y154{bottom:922.720467pt;}
.y42{bottom:925.479000pt;}
.y1dd{bottom:938.901760pt;}
.y6f{bottom:942.513000pt;}
.yc9{bottom:942.536133pt;}
.y9c{bottom:942.580533pt;}
.y125{bottom:943.426000pt;}
.y1b1{bottom:943.493933pt;}
.yf7{bottom:943.494000pt;}
.y180{bottom:943.987467pt;}
.y153{bottom:944.055467pt;}
.y41{bottom:946.814000pt;}
.y3e{bottom:946.817333pt;}
.y20d{bottom:955.554080pt;}
.y11{bottom:956.203733pt;}
.y1dc{bottom:957.571840pt;}
.y6e{bottom:963.848000pt;}
.yc8{bottom:963.871133pt;}
.y9b{bottom:963.915533pt;}
.y124{bottom:964.761000pt;}
.y1b0{bottom:964.828933pt;}
.yf6{bottom:964.829000pt;}
.y17f{bottom:965.322467pt;}
.y152{bottom:965.390467pt;}
.y40{bottom:968.149000pt;}
.y13{bottom:972.201413pt;}
.y10{bottom:972.203733pt;}
.yf{bottom:972.206053pt;}
.y20c{bottom:974.224160pt;}
.y1db{bottom:976.241920pt;}
.y6d{bottom:985.183000pt;}
.yc7{bottom:985.206133pt;}
.y9a{bottom:985.250533pt;}
.y123{bottom:986.096000pt;}
.y1af{bottom:986.163933pt;}
.yf5{bottom:986.164000pt;}
.y17e{bottom:986.657467pt;}
.y151{bottom:986.725467pt;}
.y12{bottom:988.199093pt;}
.ye{bottom:988.203733pt;}
.y3f{bottom:989.484000pt;}
.y20b{bottom:992.894240pt;}
.y1da{bottom:994.912000pt;}
.y6c{bottom:1006.518000pt;}
.yc6{bottom:1006.541133pt;}
.y99{bottom:1006.585533pt;}
.y122{bottom:1007.431000pt;}
.y1ae{bottom:1007.498933pt;}
.yf4{bottom:1007.499000pt;}
.y17d{bottom:1007.992467pt;}
.y150{bottom:1008.060467pt;}
.y20a{bottom:1011.564320pt;}
.y3d{bottom:1015.730667pt;}
.y1d9{bottom:1018.912000pt;}
.y6b{bottom:1027.853000pt;}
.yc5{bottom:1027.876133pt;}
.y98{bottom:1027.920533pt;}
.y121{bottom:1028.766000pt;}
.y1ad{bottom:1028.833933pt;}
.yf3{bottom:1028.834000pt;}
.yd{bottom:1029.320933pt;}
.y17c{bottom:1029.327467pt;}
.y14f{bottom:1029.395467pt;}
.y209{bottom:1030.234400pt;}
.y1{bottom:1071.727067pt;}
.h3{height:45.347840pt;}
.h8{height:48.568320pt;}
.h15{height:50.232000pt;}
.h7{height:50.232960pt;}
.hf{height:51.000000pt;}
.h14{height:51.016320pt;}
.h6{height:51.395781pt;}
.ha{height:51.409435pt;}
.h9{height:51.423088pt;}
.h13{height:51.450928pt;}
.h12{height:51.464048pt;}
.h11{height:51.545968pt;}
.hd{height:58.404297pt;}
.he{height:65.412813pt;}
.h10{height:70.720000pt;}
.h2{height:70.856000pt;}
.hb{height:81.600000pt;}
.h5{height:127.818667pt;}
.h4{height:155.605333pt;}
.hc{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;}
.x15{left:98.921333pt;}
.x6{left:102.281333pt;}
.xc{left:111.178267pt;}
.x17{left:122.055467pt;}
.x12{left:123.107733pt;}
.x1f{left:131.365867pt;}
.x16{left:133.688800pt;}
.x1a{left:135.101867pt;}
.x7{left:149.575947pt;}
.x2c{left:156.368533pt;}
.x26{left:160.794133pt;}
.x2d{left:163.844267pt;}
.xe{left:166.750933pt;}
.x1b{left:187.093867pt;}
.x24{left:195.065200pt;}
.x1d{left:199.275333pt;}
.x4{left:202.663467pt;}
.x2b{left:207.368533pt;}
.x14{left:212.708533pt;}
.xb{left:229.043200pt;}
.xa{left:246.566533pt;}
.x23{left:259.709200pt;}
.x8{left:262.561547pt;}
.x5{left:267.892400pt;}
.x2a{left:280.460533pt;}
.x25{left:285.830533pt;}
.x27{left:287.549733pt;}
.x21{left:291.027200pt;}
.x9{left:294.827067pt;}
.x22{left:298.829200pt;}
.x1e{left:306.262933pt;}
.x10{left:313.393867pt;}
.x28{left:316.087600pt;}
.x29{left:319.664533pt;}
.xd{left:335.782933pt;}
.x20{left:370.401600pt;}
.xf{left:408.860933pt;}
.x11{left:430.189867pt;}
.x13{left:450.203733pt;}
.x1c{left:451.613867pt;}
.x18{left:484.484800pt;}
.x19{left:515.233800pt;}
}




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