
    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_144c6b6495b36360f1f3b215.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_73c0420c8ea0370f368d0ef8.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_84e305205952deeb9f038b8c.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_0f31700dac6cd11f85033be6.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_88fce3751291f973b5f6123d.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_412679ae9eee6060beca72b5.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6dd779077a52206f7af2be3b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.927246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_209365c1cce578c2c84d74d5.woff')format("woff");}.ff9{font-family:ff9;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: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_2d740acb05b96cc475723bb6.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ffc408b8bde1ee1518d98950.woff')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ab74489b566b4a01109625fe.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_97e9e1aa13c72312efc87a77.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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);}
.m6{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);}
.v2{vertical-align:-25.244400px;}
.v3{vertical-align:-19.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.433700px;}
.lsbf{letter-spacing:-16.830000px;}
.lsbb{letter-spacing:-7.405200px;}
.lsb6{letter-spacing:-7.270560px;}
.lsa8{letter-spacing:-3.595500px;}
.lsa2{letter-spacing:-3.136500px;}
.lsac{letter-spacing:-2.983500px;}
.ls25{letter-spacing:-2.955960px;}
.ls82{letter-spacing:-2.907000px;}
.ls9a{letter-spacing:-2.830500px;}
.lsc0{letter-spacing:-2.760120px;}
.ls94{letter-spacing:-2.754000px;}
.ls41{letter-spacing:-2.604060px;}
.ls86{letter-spacing:-2.601000px;}
.lsb7{letter-spacing:-2.558160px;}
.ls9e{letter-spacing:-2.524500px;}
.ls7e{letter-spacing:-2.448000px;}
.ls83{letter-spacing:-2.295000px;}
.ls9f{letter-spacing:-2.218500px;}
.ls32{letter-spacing:-2.181780px;}
.ls95{letter-spacing:-2.065500px;}
.ls8f{letter-spacing:-1.836000px;}
.lsaa{letter-spacing:-1.759500px;}
.lsa9{letter-spacing:-1.683000px;}
.lsba{letter-spacing:-1.615680px;}
.lsa0{letter-spacing:-1.606500px;}
.ls75{letter-spacing:-1.530000px;}
.ls65{letter-spacing:-1.453500px;}
.lsa1{letter-spacing:-1.377000px;}
.ls99{letter-spacing:-1.300500px;}
.ls97{letter-spacing:-1.224000px;}
.ls6a{letter-spacing:-1.147500px;}
.ls19{letter-spacing:-1.144440px;}
.ls34{letter-spacing:-1.126080px;}
.lsa6{letter-spacing:-1.113600px;}
.ls7f{letter-spacing:-1.071000px;}
.ls23{letter-spacing:-1.055700px;}
.ls6e{letter-spacing:-0.994500px;}
.ls4d{letter-spacing:-0.942480px;}
.ls69{letter-spacing:-0.918000px;}
.lsb8{letter-spacing:-0.875160px;}
.ls24{letter-spacing:-0.844560px;}
.ls80{letter-spacing:-0.841500px;}
.ls4e{letter-spacing:-0.807840px;}
.ls31{letter-spacing:-0.774180px;}
.ls63{letter-spacing:-0.765000px;}
.ls27{letter-spacing:-0.703800px;}
.ls68{letter-spacing:-0.688500px;}
.lsb0{letter-spacing:-0.673200px;}
.ls5e{letter-spacing:-0.612000px;}
.lsb3{letter-spacing:-0.605880px;}
.ls33{letter-spacing:-0.563040px;}
.ls4b{letter-spacing:-0.538560px;}
.ls6{letter-spacing:-0.535500px;}
.ls2b{letter-spacing:-0.492660px;}
.ls1e{letter-spacing:-0.471240px;}
.ls5{letter-spacing:-0.459000px;}
.ls12{letter-spacing:-0.440640px;}
.ls2d{letter-spacing:-0.422280px;}
.ls18{letter-spacing:-0.403920px;}
.ls5d{letter-spacing:-0.382500px;}
.ls3f{letter-spacing:-0.351900px;}
.lsb5{letter-spacing:-0.336600px;}
.ls5f{letter-spacing:-0.306000px;}
.ls2c{letter-spacing:-0.281520px;}
.ls15{letter-spacing:-0.269280px;}
.ls61{letter-spacing:-0.229500px;}
.lsb1{letter-spacing:-0.201960px;}
.lsc5{letter-spacing:-0.165240px;}
.ls5a{letter-spacing:-0.153000px;}
.ls53{letter-spacing:-0.134640px;}
.ls74{letter-spacing:-0.076500px;}
.lsb2{letter-spacing:-0.067320px;}
.ls4{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.067320px;}
.ls2a{letter-spacing:0.070380px;}
.ls36{letter-spacing:0.076500px;}
.ls1a{letter-spacing:0.134640px;}
.ls64{letter-spacing:0.153000px;}
.ls13{letter-spacing:0.201960px;}
.lsc8{letter-spacing:0.220320px;}
.ls7{letter-spacing:0.229500px;}
.ls17{letter-spacing:0.269280px;}
.ls5b{letter-spacing:0.306000px;}
.ls2{letter-spacing:0.336600px;}
.ls3b{letter-spacing:0.382500px;}
.lsaf{letter-spacing:0.403920px;}
.ls1{letter-spacing:0.432000px;}
.lsc6{letter-spacing:0.440640px;}
.ls6f{letter-spacing:0.459000px;}
.ls1f{letter-spacing:0.471240px;}
.ls73{letter-spacing:0.535500px;}
.ls3a{letter-spacing:0.612000px;}
.ls26{letter-spacing:0.633420px;}
.ls4a{letter-spacing:0.673200px;}
.ls59{letter-spacing:0.688500px;}
.ls11{letter-spacing:0.716040px;}
.ls92{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.740520px;}
.ls5c{letter-spacing:0.765000px;}
.ls47{letter-spacing:0.807840px;}
.ls38{letter-spacing:0.841500px;}
.ls40{letter-spacing:0.844560px;}
.ls51{letter-spacing:0.875160px;}
.ls84{letter-spacing:0.918000px;}
.lse{letter-spacing:0.936000px;}
.lsc3{letter-spacing:0.936360px;}
.ls48{letter-spacing:0.942480px;}
.lsc2{letter-spacing:0.991440px;}
.ls67{letter-spacing:0.994500px;}
.lsae{letter-spacing:1.009800px;}
.lsc4{letter-spacing:1.046520px;}
.ls3d{letter-spacing:1.052640px;}
.ls3c{letter-spacing:1.071000px;}
.ls1b{letter-spacing:1.077120px;}
.lsb4{letter-spacing:1.144440px;}
.ls3{letter-spacing:1.147500px;}
.lsb9{letter-spacing:1.211760px;}
.ls70{letter-spacing:1.224000px;}
.ls22{letter-spacing:1.266840px;}
.ls55{letter-spacing:1.279080px;}
.ls3e{letter-spacing:1.300500px;}
.lsc7{letter-spacing:1.321920px;}
.lsad{letter-spacing:1.326000px;}
.ls60{letter-spacing:1.377000px;}
.ls7a{letter-spacing:1.440000px;}
.ls93{letter-spacing:1.453500px;}
.ls16{letter-spacing:1.481040px;}
.ls85{letter-spacing:1.530000px;}
.ls77{letter-spacing:1.606500px;}
.ls4f{letter-spacing:1.615680px;}
.lsa{letter-spacing:1.620000px;}
.ls54{letter-spacing:1.683000px;}
.ls28{letter-spacing:1.689120px;}
.ls39{letter-spacing:1.759500px;}
.lsbe{letter-spacing:1.817640px;}
.ls6c{letter-spacing:1.836000px;}
.ls50{letter-spacing:1.884960px;}
.ls2f{letter-spacing:1.900260px;}
.ls58{letter-spacing:1.912500px;}
.ls56{letter-spacing:1.952280px;}
.ls89{letter-spacing:1.989000px;}
.ls4c{letter-spacing:2.019600px;}
.ls20{letter-spacing:2.041020px;}
.ls62{letter-spacing:2.065500px;}
.ls1d{letter-spacing:2.086920px;}
.ls9{letter-spacing:2.105280px;}
.ls6b{letter-spacing:2.142000px;}
.ls57{letter-spacing:2.160000px;}
.ls21{letter-spacing:2.181780px;}
.ls7d{letter-spacing:2.218500px;}
.ls29{letter-spacing:2.252160px;}
.ls8a{letter-spacing:2.295000px;}
.lsbc{letter-spacing:2.340000px;}
.ls88{letter-spacing:2.371500px;}
.ls72{letter-spacing:2.430000px;}
.ls8e{letter-spacing:2.448000px;}
.ls8c{letter-spacing:2.524500px;}
.ls8{letter-spacing:2.545920px;}
.ls78{letter-spacing:2.601000px;}
.lsa4{letter-spacing:2.616600px;}
.ls52{letter-spacing:2.625480px;}
.ls81{letter-spacing:2.677500px;}
.ls49{letter-spacing:2.692800px;}
.ls71{letter-spacing:2.700000px;}
.ls46{letter-spacing:2.815200px;}
.ls98{letter-spacing:2.830500px;}
.ls79{letter-spacing:2.907000px;}
.ls7c{letter-spacing:2.983500px;}
.lsa5{letter-spacing:3.060000px;}
.ls76{letter-spacing:3.213000px;}
.ls9c{letter-spacing:3.289500px;}
.ls8d{letter-spacing:3.366000px;}
.ls66{letter-spacing:3.442500px;}
.ls96{letter-spacing:3.519000px;}
.ls9b{letter-spacing:3.595500px;}
.lsc1{letter-spacing:3.635280px;}
.ls45{letter-spacing:3.659760px;}
.ls42{letter-spacing:3.800520px;}
.ls8b{letter-spacing:3.825000px;}
.ls2e{letter-spacing:3.870900px;}
.ls10{letter-spacing:3.900000px;}
.ls37{letter-spacing:4.437000px;}
.lsc{letter-spacing:4.500000px;}
.ls7b{letter-spacing:4.666500px;}
.lsd{letter-spacing:4.680000px;}
.ls43{letter-spacing:4.785840px;}
.ls44{letter-spacing:4.996980px;}
.ls30{letter-spacing:5.700780px;}
.lsf{letter-spacing:7.488000px;}
.lsb{letter-spacing:8.640000px;}
.ls91{letter-spacing:16.302000px;}
.ls35{letter-spacing:54.315000px;}
.ls0{letter-spacing:54.468000px;}
.ls6d{letter-spacing:54.544500px;}
.lsab{letter-spacing:55.080000px;}
.lsa3{letter-spacing:55.539000px;}
.ls9d{letter-spacing:55.768500px;}
.lsa7{letter-spacing:55.921500px;}
.ls90{letter-spacing:56.304000px;}
.ls87{letter-spacing:59.211000px;}
.lsbd{letter-spacing:59.440500px;}
.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;}
}
.ws71{word-spacing:-24.300000px;}
.ws39{word-spacing:-24.030000px;}
.wsaf{word-spacing:-23.310000px;}
.wsb3{word-spacing:-21.294000px;}
.wsad{word-spacing:-18.972000px;}
.ws8c{word-spacing:-18.589500px;}
.wsa9{word-spacing:-18.436500px;}
.wsa3{word-spacing:-18.360000px;}
.ws3a{word-spacing:-18.207000px;}
.ws97{word-spacing:-18.130500px;}
.wsac{word-spacing:-18.054000px;}
.wsae{word-spacing:-17.977500px;}
.ws2{word-spacing:-17.748000px;}
.ws8b{word-spacing:-17.671500px;}
.ws4{word-spacing:-17.570520px;}
.ws38{word-spacing:-17.503200px;}
.ws95{word-spacing:-17.212500px;}
.ws1{word-spacing:-17.059500px;}
.ws3{word-spacing:-17.031960px;}
.wsc6{word-spacing:-16.762680px;}
.ws36{word-spacing:-16.468920px;}
.ws5{word-spacing:-16.426080px;}
.ws37{word-spacing:-16.291440px;}
.ws96{word-spacing:-15.720000px;}
.ws3b{word-spacing:-15.000000px;}
.wsc8{word-spacing:-11.676960px;}
.wsc7{word-spacing:-11.071080px;}
.wsb{word-spacing:-8.640000px;}
.wsaa{word-spacing:-7.586400px;}
.wsf{word-spacing:-7.488000px;}
.ws30{word-spacing:-5.700780px;}
.ws41{word-spacing:-4.996980px;}
.ws40{word-spacing:-4.785840px;}
.wsd{word-spacing:-4.680000px;}
.ws7e{word-spacing:-4.666500px;}
.wsc{word-spacing:-4.500000px;}
.ws56{word-spacing:-4.437000px;}
.ws10{word-spacing:-3.900000px;}
.ws2e{word-spacing:-3.870900px;}
.ws90{word-spacing:-3.825000px;}
.ws3f{word-spacing:-3.800520px;}
.ws42{word-spacing:-3.659760px;}
.wscc{word-spacing:-3.635280px;}
.wsa1{word-spacing:-3.595500px;}
.ws9b{word-spacing:-3.519000px;}
.ws6a{word-spacing:-3.442500px;}
.ws92{word-spacing:-3.366000px;}
.wsa2{word-spacing:-3.289500px;}
.ws78{word-spacing:-3.213000px;}
.wsab{word-spacing:-3.060000px;}
.ws7f{word-spacing:-2.983500px;}
.ws7b{word-spacing:-2.907000px;}
.ws9d{word-spacing:-2.830500px;}
.ws43{word-spacing:-2.815200px;}
.ws74{word-spacing:-2.700000px;}
.ws46{word-spacing:-2.692800px;}
.ws85{word-spacing:-2.677500px;}
.ws4e{word-spacing:-2.625480px;}
.ws7a{word-spacing:-2.601000px;}
.ws8{word-spacing:-2.545920px;}
.ws91{word-spacing:-2.524500px;}
.ws93{word-spacing:-2.448000px;}
.ws7d{word-spacing:-2.430000px;}
.ws8d{word-spacing:-2.371500px;}
.ws8f{word-spacing:-2.295000px;}
.ws29{word-spacing:-2.252160px;}
.ws80{word-spacing:-2.218500px;}
.ws21{word-spacing:-2.181780px;}
.ws6f{word-spacing:-2.142000px;}
.ws9{word-spacing:-2.105280px;}
.ws1d{word-spacing:-2.086920px;}
.ws66{word-spacing:-2.065500px;}
.ws20{word-spacing:-2.041020px;}
.ws48{word-spacing:-2.019600px;}
.ws8e{word-spacing:-1.989000px;}
.ws53{word-spacing:-1.952280px;}
.ws55{word-spacing:-1.912500px;}
.ws2f{word-spacing:-1.900260px;}
.ws4c{word-spacing:-1.884960px;}
.ws70{word-spacing:-1.836000px;}
.wsc9{word-spacing:-1.817640px;}
.ws58{word-spacing:-1.759500px;}
.ws28{word-spacing:-1.689120px;}
.ws51{word-spacing:-1.683000px;}
.wsa{word-spacing:-1.620000px;}
.ws4b{word-spacing:-1.615680px;}
.ws79{word-spacing:-1.606500px;}
.ws89{word-spacing:-1.530000px;}
.ws16{word-spacing:-1.481040px;}
.ws98{word-spacing:-1.453500px;}
.ws7c{word-spacing:-1.440000px;}
.ws35{word-spacing:-1.377000px;}
.wsb5{word-spacing:-1.326000px;}
.wsd0{word-spacing:-1.321920px;}
.ws83{word-spacing:-1.300500px;}
.ws52{word-spacing:-1.279080px;}
.ws22{word-spacing:-1.266840px;}
.ws0{word-spacing:-1.224000px;}
.wsc3{word-spacing:-1.211760px;}
.ws5e{word-spacing:-1.147500px;}
.wsbd{word-spacing:-1.144440px;}
.ws1b{word-spacing:-1.077120px;}
.ws5d{word-spacing:-1.071000px;}
.wscf{word-spacing:-1.046520px;}
.wsb6{word-spacing:-1.009800px;}
.ws6b{word-spacing:-0.994500px;}
.wscd{word-spacing:-0.991440px;}
.ws45{word-spacing:-0.942480px;}
.wsce{word-spacing:-0.936360px;}
.wse{word-spacing:-0.936000px;}
.ws88{word-spacing:-0.918000px;}
.ws4d{word-spacing:-0.875160px;}
.ws3d{word-spacing:-0.844560px;}
.ws57{word-spacing:-0.841500px;}
.ws44{word-spacing:-0.807840px;}
.ws61{word-spacing:-0.765000px;}
.ws4f{word-spacing:-0.740520px;}
.ws11{word-spacing:-0.716040px;}
.ws5c{word-spacing:-0.688500px;}
.ws47{word-spacing:-0.673200px;}
.ws26{word-spacing:-0.633420px;}
.ws59{word-spacing:-0.612000px;}
.ws75{word-spacing:-0.535500px;}
.ws1f{word-spacing:-0.471240px;}
.ws73{word-spacing:-0.459000px;}
.ws13{word-spacing:-0.432000px;}
.wsb7{word-spacing:-0.403920px;}
.ws5b{word-spacing:-0.382500px;}
.ws14{word-spacing:-0.336600px;}
.ws60{word-spacing:-0.306000px;}
.ws17{word-spacing:-0.269280px;}
.ws9f{word-spacing:-0.229500px;}
.wsd1{word-spacing:-0.220320px;}
.wsbc{word-spacing:-0.201960px;}
.ws68{word-spacing:-0.153000px;}
.ws1a{word-spacing:-0.134640px;}
.ws54{word-spacing:-0.076500px;}
.ws2a{word-spacing:-0.070380px;}
.ws1c{word-spacing:-0.067320px;}
.ws6{word-spacing:0.000000px;}
.wsba{word-spacing:0.067320px;}
.ws76{word-spacing:0.076500px;}
.ws50{word-spacing:0.134640px;}
.ws5f{word-spacing:0.153000px;}
.wsb9{word-spacing:0.201960px;}
.ws65{word-spacing:0.229500px;}
.ws15{word-spacing:0.269280px;}
.ws2c{word-spacing:0.281520px;}
.ws64{word-spacing:0.306000px;}
.wsbe{word-spacing:0.336600px;}
.ws3c{word-spacing:0.351900px;}
.ws62{word-spacing:0.382500px;}
.ws18{word-spacing:0.403920px;}
.ws2d{word-spacing:0.422280px;}
.ws12{word-spacing:0.440640px;}
.ws5a{word-spacing:0.459000px;}
.ws1e{word-spacing:0.471240px;}
.ws2b{word-spacing:0.492660px;}
.ws7{word-spacing:0.535500px;}
.wsc1{word-spacing:0.538560px;}
.ws33{word-spacing:0.563040px;}
.wsbb{word-spacing:0.605880px;}
.ws63{word-spacing:0.612000px;}
.wsb8{word-spacing:0.673200px;}
.ws6c{word-spacing:0.688500px;}
.ws27{word-spacing:0.703800px;}
.ws67{word-spacing:0.765000px;}
.ws31{word-spacing:0.774180px;}
.ws4a{word-spacing:0.807840px;}
.ws84{word-spacing:0.841500px;}
.ws24{word-spacing:0.844560px;}
.wsc2{word-spacing:0.875160px;}
.ws6d{word-spacing:0.918000px;}
.ws49{word-spacing:0.942480px;}
.ws72{word-spacing:0.994500px;}
.ws23{word-spacing:1.055700px;}
.ws82{word-spacing:1.071000px;}
.ws34{word-spacing:1.126080px;}
.ws19{word-spacing:1.144440px;}
.ws6e{word-spacing:1.147500px;}
.ws9c{word-spacing:1.224000px;}
.ws9e{word-spacing:1.300500px;}
.wsa7{word-spacing:1.377000px;}
.ws69{word-spacing:1.453500px;}
.ws77{word-spacing:1.530000px;}
.wsa6{word-spacing:1.606500px;}
.wsc4{word-spacing:1.615680px;}
.wsb1{word-spacing:1.683000px;}
.wsb2{word-spacing:1.759500px;}
.ws94{word-spacing:1.836000px;}
.ws9a{word-spacing:2.065500px;}
.ws32{word-spacing:2.181780px;}
.wsa5{word-spacing:2.218500px;}
.ws87{word-spacing:2.295000px;}
.ws81{word-spacing:2.448000px;}
.wsa4{word-spacing:2.524500px;}
.wsc0{word-spacing:2.558160px;}
.ws8a{word-spacing:2.601000px;}
.ws3e{word-spacing:2.604060px;}
.ws99{word-spacing:2.754000px;}
.wscb{word-spacing:2.760120px;}
.wsa0{word-spacing:2.830500px;}
.ws86{word-spacing:2.907000px;}
.ws25{word-spacing:2.955960px;}
.wsb4{word-spacing:2.983500px;}
.wsa8{word-spacing:3.136500px;}
.wsb0{word-spacing:3.595500px;}
.wsbf{word-spacing:7.270560px;}
.wsc5{word-spacing:7.405200px;}
.wsca{word-spacing:16.830000px;}
._18{margin-left:-18.966150px;}
._17{margin-left:-15.886500px;}
._13{margin-left:-13.878271px;}
._c{margin-left:-11.388150px;}
._e{margin-left:-9.080550px;}
._3{margin-left:-7.956000px;}
._b{margin-left:-5.967450px;}
._a{margin-left:-4.851000px;}
._2{margin-left:-3.442500px;}
._f{margin-left:-2.376000px;}
._0{margin-left:-1.147500px;}
._5{width:1.377000px;}
._6{width:2.516850px;}
._8{width:4.387950px;}
._10{width:6.048000px;}
._12{width:7.122150px;}
._d{width:8.360550px;}
._7{width:9.621450px;}
._11{width:11.155130px;}
._9{width:12.241206px;}
._22{width:13.467663px;}
._23{width:15.075000px;}
._1f{width:16.308000px;}
._1b{width:17.334000px;}
._1d{width:19.150500px;}
._1c{width:20.231400px;}
._15{width:21.930600px;}
._21{width:24.757500px;}
._24{width:26.084760px;}
._20{width:29.100000px;}
._1e{width:41.976000px;}
._16{width:44.898000px;}
._1{width:152.388000px;}
._1a{width:154.530000px;}
._19{width:156.978000px;}
._14{width:1208.099070px;}
._4{width:1955.722500px;}
.fc5{color:rgb(22,25,63);}
.fc4{color:rgb(49,87,147);}
.fc2{color:rgb(153,102,0);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(182,156,78);}
.fc0{color:rgb(23,25,66);}
.fsc{font-size:34.800000px;}
.fsb{font-size:44.370000px;}
.fs1{font-size:48.960000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:55.080000px;}
.fsd{font-size:60.000000px;}
.fs4{font-size:67.320000px;}
.fs8{font-size:69.000000px;}
.fs7{font-size:70.380000px;}
.fs0{font-size:76.500000px;}
.fse{font-size:78.000000px;}
.fs9{font-size:90.000000px;}
.fs3{font-size:156.000000px;}
.fs2{font-size:180.000000px;}
.fsa{font-size:287.074200px;}
.y0{bottom:0.000000px;}
.y94{bottom:63.779550px;}
.y192{bottom:63.779700px;}
.y39{bottom:65.437950px;}
.y7c{bottom:69.537375px;}
.yc1{bottom:73.944900px;}
.yee{bottom:73.950525px;}
.y11b{bottom:74.978175px;}
.y1cf{bottom:75.921150px;}
.y1a0{bottom:77.353875px;}
.y93{bottom:81.779550px;}
.y191{bottom:81.779700px;}
.y257{bottom:84.489540px;}
.y24{bottom:84.932520px;}
.y38{bottom:86.446380px;}
.y7b{bottom:93.539250px;}
.y1ce{bottom:93.921150px;}
.yc0{bottom:97.946775px;}
.yed{bottom:97.952400px;}
.y11a{bottom:98.980050px;}
.y92{bottom:99.779550px;}
.y190{bottom:99.779700px;}
.y19f{bottom:101.355750px;}
.y256{bottom:105.493380px;}
.y23{bottom:105.936360px;}
.y37{bottom:107.454810px;}
.y1cd{bottom:111.921150px;}
.y7a{bottom:117.541125px;}
.y91{bottom:117.779550px;}
.y18f{bottom:117.779700px;}
.ybf{bottom:121.948650px;}
.yec{bottom:121.954275px;}
.y1d6{bottom:122.729550px;}
.y119{bottom:122.981925px;}
.y202{bottom:123.857625px;}
.y22d{bottom:124.498800px;}
.y19e{bottom:125.357625px;}
.y255{bottom:126.497220px;}
.y22{bottom:126.940200px;}
.y36{bottom:128.463240px;}
.y1cc{bottom:129.921150px;}
.y146{bottom:135.779550px;}
.y18e{bottom:135.779700px;}
.y90{bottom:140.729550px;}
.y79{bottom:141.543000px;}
.ybe{bottom:145.950525px;}
.yeb{bottom:145.956150px;}
.y118{bottom:146.983800px;}
.y254{bottom:147.501060px;}
.y201{bottom:147.859500px;}
.y1cb{bottom:147.921150px;}
.y21{bottom:147.940200px;}
.y22c{bottom:148.500675px;}
.y19d{bottom:149.359500px;}
.y35{bottom:149.471670px;}
.y163{bottom:153.779550px;}
.y18d{bottom:153.779700px;}
.y145{bottom:158.729550px;}
.y78{bottom:165.544875px;}
.y1ca{bottom:165.921150px;}
.y253{bottom:168.504900px;}
.y20{bottom:168.928680px;}
.ybd{bottom:169.952400px;}
.yea{bottom:169.958025px;}
.y34{bottom:170.480100px;}
.y117{bottom:170.985675px;}
.y162{bottom:171.779550px;}
.y200{bottom:171.861375px;}
.y22b{bottom:172.502550px;}
.y19c{bottom:173.361375px;}
.y1d0{bottom:176.729550px;}
.y18c{bottom:176.729700px;}
.y8f{bottom:182.766450px;}
.y1c9{bottom:183.921150px;}
.y252{bottom:189.508740px;}
.y77{bottom:189.546750px;}
.y161{bottom:189.779550px;}
.y1f{bottom:189.932520px;}
.y33{bottom:191.488530px;}
.ybc{bottom:193.954275px;}
.ye9{bottom:193.959900px;}
.y116{bottom:194.987550px;}
.y1ff{bottom:195.863250px;}
.y22a{bottom:196.504425px;}
.y144{bottom:197.320800px;}
.y19b{bottom:197.363250px;}
.y8e{bottom:206.768325px;}
.y1c8{bottom:206.871150px;}
.y160{bottom:207.779550px;}
.y251{bottom:210.512580px;}
.y1e{bottom:210.936360px;}
.y32{bottom:212.496960px;}
.y1d5{bottom:212.729550px;}
.y76{bottom:213.548625px;}
.ybb{bottom:217.956150px;}
.ye8{bottom:217.961775px;}
.y115{bottom:218.989425px;}
.y1fe{bottom:219.865125px;}
.y229{bottom:220.506300px;}
.y143{bottom:221.322675px;}
.y19a{bottom:221.365125px;}
.y18b{bottom:221.365275px;}
.y15f{bottom:225.779550px;}
.y8d{bottom:230.770200px;}
.y250{bottom:231.516420px;}
.y1d{bottom:231.940200px;}
.y31{bottom:233.505390px;}
.y75{bottom:237.550500px;}
.yba{bottom:241.958025px;}
.ye7{bottom:241.963650px;}
.y114{bottom:242.991300px;}
.y15e{bottom:243.779550px;}
.y1fd{bottom:243.867000px;}
.y228{bottom:244.508175px;}
.y1c7{bottom:245.290500px;}
.y142{bottom:245.324550px;}
.y199{bottom:245.367000px;}
.y18a{bottom:245.367150px;}
.y24f{bottom:252.520260px;}
.y1c{bottom:252.940200px;}
.y30{bottom:254.513820px;}
.y8c{bottom:254.772075px;}
.y74{bottom:261.552375px;}
.y1d4{bottom:261.779550px;}
.yb9{bottom:265.959900px;}
.ye6{bottom:265.965525px;}
.y15d{bottom:266.729550px;}
.y113{bottom:266.993175px;}
.y1fc{bottom:267.868875px;}
.y227{bottom:268.510050px;}
.y1c6{bottom:269.292375px;}
.y141{bottom:269.326425px;}
.y198{bottom:269.368875px;}
.y189{bottom:269.369025px;}
.y24e{bottom:273.524100px;}
.y1b{bottom:273.928680px;}
.y2f{bottom:275.522250px;}
.y8b{bottom:278.773950px;}
.y15c{bottom:279.779550px;}
.y1d3{bottom:284.729550px;}
.y73{bottom:285.554250px;}
.yb8{bottom:289.961775px;}
.ye5{bottom:289.967400px;}
.y112{bottom:290.995050px;}
.y1fb{bottom:291.870750px;}
.y226{bottom:292.511925px;}
.y1c5{bottom:293.294250px;}
.y140{bottom:293.328300px;}
.y197{bottom:293.370750px;}
.y188{bottom:293.370900px;}
.y1a{bottom:294.932520px;}
.y2e{bottom:296.530680px;}
.y15b{bottom:297.779550px;}
.y24d{bottom:300.524100px;}
.y8a{bottom:302.775825px;}
.y72{bottom:309.556125px;}
.yb7{bottom:313.963650px;}
.ye4{bottom:313.969275px;}
.y111{bottom:314.996925px;}
.y15a{bottom:315.779550px;}
.y1fa{bottom:315.872625px;}
.y19{bottom:315.936360px;}
.y225{bottom:316.513800px;}
.y1c4{bottom:317.296125px;}
.y13f{bottom:317.330175px;}
.y196{bottom:317.372625px;}
.y187{bottom:317.372775px;}
.y2d{bottom:317.539110px;}
.y89{bottom:326.777700px;}
.y71{bottom:333.558000px;}
.y159{bottom:333.779550px;}
.y18{bottom:336.940200px;}
.yb6{bottom:337.965525px;}
.ye3{bottom:337.971150px;}
.y2c{bottom:338.547540px;}
.y110{bottom:338.998800px;}
.y1f9{bottom:339.874500px;}
.y224{bottom:340.515675px;}
.y1c3{bottom:341.298000px;}
.y13e{bottom:341.332050px;}
.y195{bottom:341.374500px;}
.y186{bottom:341.374650px;}
.y24c{bottom:345.501060px;}
.y88{bottom:350.779575px;}
.y1d2{bottom:351.779550px;}
.y158{bottom:356.729550px;}
.y70{bottom:357.559875px;}
.y17{bottom:357.932520px;}
.y2b{bottom:359.555970px;}
.yb5{bottom:361.967400px;}
.ye2{bottom:361.973025px;}
.y10f{bottom:363.000675px;}
.y1f8{bottom:363.876375px;}
.y223{bottom:364.517550px;}
.y1c2{bottom:365.299875px;}
.y13d{bottom:365.333925px;}
.y194{bottom:365.376375px;}
.y185{bottom:365.376525px;}
.y24b{bottom:366.504900px;}
.y1d1{bottom:369.779550px;}
.y87{bottom:374.781450px;}
.y16{bottom:378.936360px;}
.y2a{bottom:380.564400px;}
.y6f{bottom:381.561750px;}
.yb4{bottom:385.969275px;}
.ye1{bottom:385.974900px;}
.y10e{bottom:387.002550px;}
.y24a{bottom:387.508740px;}
.y1f7{bottom:387.878250px;}
.y222{bottom:388.519425px;}
.y1c1{bottom:389.301750px;}
.y13c{bottom:389.335800px;}
.y193{bottom:389.378250px;}
.y184{bottom:389.378400px;}
.y86{bottom:398.783325px;}
.y15{bottom:399.940200px;}
.y29{bottom:401.572830px;}
.y6e{bottom:405.563625px;}
.y249{bottom:408.512580px;}
.yb3{bottom:409.971150px;}
.ye0{bottom:409.976775px;}
.y10d{bottom:411.004425px;}
.y1f6{bottom:411.880125px;}
.y221{bottom:412.521300px;}
.y1c0{bottom:413.303625px;}
.y13b{bottom:413.337675px;}
.y157{bottom:413.380125px;}
.y183{bottom:413.380275px;}
.y14{bottom:420.928680px;}
.y28{bottom:422.581260px;}
.y85{bottom:422.785200px;}
.y248{bottom:429.516420px;}
.y6d{bottom:429.565500px;}
.yb2{bottom:433.973025px;}
.ydf{bottom:433.978650px;}
.y10c{bottom:435.006300px;}
.y1f5{bottom:435.882000px;}
.y220{bottom:436.523175px;}
.y1bf{bottom:437.305500px;}
.y13a{bottom:437.339550px;}
.y156{bottom:437.382000px;}
.y182{bottom:437.382150px;}
.y13{bottom:441.932520px;}
.y27{bottom:443.589690px;}
.y84{bottom:446.787075px;}
.y247{bottom:450.520260px;}
.y6c{bottom:453.567375px;}
.yb1{bottom:457.974900px;}
.yde{bottom:457.980525px;}
.y10b{bottom:459.008175px;}
.y1f4{bottom:459.883875px;}
.y21f{bottom:460.525050px;}
.y1be{bottom:461.307375px;}
.y139{bottom:461.341425px;}
.y155{bottom:461.383875px;}
.y181{bottom:461.384025px;}
.y12{bottom:462.936360px;}
.y26{bottom:464.598120px;}
.y26e{bottom:467.022810px;}
.y83{bottom:470.788950px;}
.y246{bottom:471.524100px;}
.y6b{bottom:477.569250px;}
.yb0{bottom:481.976775px;}
.ydd{bottom:481.982400px;}
.y10a{bottom:483.010050px;}
.y1f3{bottom:483.885750px;}
.y11{bottom:483.940200px;}
.y21e{bottom:484.526925px;}
.y1bd{bottom:485.309250px;}
.y138{bottom:485.343300px;}
.y154{bottom:485.385750px;}
.y180{bottom:485.385900px;}
.y25{bottom:485.606550px;}
.y26d{bottom:492.267810px;}
.y244{bottom:492.516420px;}
.y245{bottom:492.524100px;}
.y82{bottom:494.790825px;}
.y6a{bottom:501.571125px;}
.yaf{bottom:505.978650px;}
.ydc{bottom:505.984275px;}
.y109{bottom:507.011925px;}
.y1f2{bottom:507.887625px;}
.y21d{bottom:508.528800px;}
.y1bc{bottom:509.311125px;}
.y137{bottom:509.345175px;}
.y153{bottom:509.387625px;}
.y17f{bottom:509.387775px;}
.y26c{bottom:513.271650px;}
.y243{bottom:513.520260px;}
.y81{bottom:518.745375px;}
.y69{bottom:525.573000px;}
.y66{bottom:525.576750px;}
.yae{bottom:529.980525px;}
.ydb{bottom:529.986150px;}
.y108{bottom:531.013800px;}
.y1f1{bottom:531.889500px;}
.y1bb{bottom:533.313000px;}
.y136{bottom:533.347050px;}
.y152{bottom:533.389500px;}
.y17e{bottom:533.389650px;}
.y242{bottom:534.524100px;}
.y21c{bottom:538.056300px;}
.y26b{bottom:538.516650px;}
.y80{bottom:542.747250px;}
.y68{bottom:549.574875px;}
.yad{bottom:553.982400px;}
.yda{bottom:553.988025px;}
.y107{bottom:555.015675px;}
.y241{bottom:555.524100px;}
.y1f0{bottom:555.891375px;}
.y1ba{bottom:557.314875px;}
.y135{bottom:557.348925px;}
.y151{bottom:557.391375px;}
.y17d{bottom:557.391525px;}
.y26a{bottom:563.761650px;}
.y7f{bottom:566.749125px;}
.y67{bottom:573.576750px;}
.yc{bottom:573.936150px;}
.y240{bottom:576.516420px;}
.yac{bottom:577.984275px;}
.yd9{bottom:577.989900px;}
.y106{bottom:579.017550px;}
.y21b{bottom:579.816750px;}
.y1ef{bottom:579.893250px;}
.y1b9{bottom:581.316750px;}
.y134{bottom:581.350800px;}
.y150{bottom:581.393250px;}
.y17c{bottom:581.393400px;}
.y269{bottom:584.706780px;}
.y7e{bottom:590.751000px;}
.y23f{bottom:597.520260px;}
.yab{bottom:601.986150px;}
.yd8{bottom:601.991775px;}
.y105{bottom:603.019425px;}
.y65{bottom:603.104250px;}
.y21a{bottom:603.818625px;}
.y1ee{bottom:603.895125px;}
.y1b8{bottom:605.318625px;}
.y133{bottom:605.352675px;}
.y14f{bottom:605.395125px;}
.y17b{bottom:605.395275px;}
.y7d{bottom:614.752875px;}
.yb{bottom:617.421150px;}
.y23e{bottom:618.524100px;}
.yaa{bottom:625.988025px;}
.yd7{bottom:625.993650px;}
.y104{bottom:627.021300px;}
.y219{bottom:627.820500px;}
.y1ed{bottom:627.897000px;}
.y1b7{bottom:629.320500px;}
.y132{bottom:629.354550px;}
.y14e{bottom:629.397000px;}
.y17a{bottom:629.397150px;}
.y23d{bottom:639.520260px;}
.ya9{bottom:649.989900px;}
.yd6{bottom:649.995525px;}
.y275{bottom:650.083650px;}
.y274{bottom:650.090640px;}
.y27b{bottom:650.097420px;}
.y103{bottom:651.023175px;}
.y218{bottom:651.822375px;}
.y1ec{bottom:651.898875px;}
.y1b6{bottom:653.322375px;}
.y131{bottom:653.356425px;}
.y14d{bottom:653.398875px;}
.y179{bottom:653.399025px;}
.y23c{bottom:660.524100px;}
.ya{bottom:660.921150px;}
.y273{bottom:668.088030px;}
.y27a{bottom:668.094810px;}
.ya8{bottom:673.991775px;}
.yd5{bottom:673.997400px;}
.y102{bottom:675.025050px;}
.y217{bottom:675.824250px;}
.y1eb{bottom:675.900750px;}
.y1b5{bottom:677.324250px;}
.y130{bottom:677.358300px;}
.y14c{bottom:677.400750px;}
.y178{bottom:677.400900px;}
.y23b{bottom:681.520260px;}
.y272{bottom:686.085420px;}
.y279{bottom:686.092200px;}
.ya7{bottom:697.993650px;}
.yd4{bottom:697.999275px;}
.y101{bottom:699.026925px;}
.y216{bottom:699.826125px;}
.y1ea{bottom:699.902625px;}
.y1b4{bottom:701.326125px;}
.y12f{bottom:701.360175px;}
.y14b{bottom:701.402625px;}
.y177{bottom:701.402775px;}
.y23a{bottom:702.524100px;}
.y271{bottom:704.082810px;}
.y278{bottom:704.089590px;}
.y9{bottom:704.421150px;}
.y64{bottom:716.986200px;}
.ya6{bottom:721.995525px;}
.yd3{bottom:722.001150px;}
.y270{bottom:722.080200px;}
.y277{bottom:722.086980px;}
.y100{bottom:723.028800px;}
.y238{bottom:723.520260px;}
.y239{bottom:723.524100px;}
.y215{bottom:723.828000px;}
.y1e9{bottom:723.904500px;}
.y1b3{bottom:725.328000px;}
.y12e{bottom:725.362050px;}
.y14a{bottom:725.404500px;}
.y176{bottom:725.404650px;}
.y63{bottom:737.982360px;}
.y237{bottom:744.524100px;}
.ya5{bottom:745.997400px;}
.y214{bottom:747.829875px;}
.y1e8{bottom:747.906375px;}
.y26f{bottom:748.587450px;}
.y276{bottom:748.594230px;}
.y1b2{bottom:749.329875px;}
.y12d{bottom:749.363925px;}
.y149{bottom:749.406375px;}
.y175{bottom:749.406525px;}
.yd2{bottom:751.528800px;}
.yff{bottom:752.556300px;}
.y62{bottom:758.986200px;}
.y236{bottom:765.504900px;}
.ya4{bottom:769.999275px;}
.y8{bottom:770.421150px;}
.y213{bottom:771.831750px;}
.y1e7{bottom:771.908250px;}
.y1b1{bottom:773.331750px;}
.y12c{bottom:773.365800px;}
.y148{bottom:773.408250px;}
.y174{bottom:773.408400px;}
.yd1{bottom:778.528800px;}
.yfe{bottom:779.556300px;}
.y61{bottom:779.978520px;}
.y4e{bottom:780.488550px;}
.y235{bottom:786.508740px;}
.y2{bottom:789.373050px;}
.ya3{bottom:794.001150px;}
.y212{bottom:795.833625px;}
.y1e6{bottom:795.910125px;}
.y1b0{bottom:797.333625px;}
.y12b{bottom:797.367675px;}
.y147{bottom:797.410125px;}
.y173{bottom:797.410275px;}
.y60{bottom:800.982360px;}
.y4c{bottom:801.454830px;}
.y4d{bottom:801.488550px;}
.y234{bottom:807.512580px;}
.y211{bottom:819.835500px;}
.y1e5{bottom:819.912000px;}
.yd0{bottom:820.336275px;}
.y1af{bottom:821.335500px;}
.y12a{bottom:821.369550px;}
.yfd{bottom:821.412000px;}
.y172{bottom:821.412150px;}
.y5f{bottom:821.986200px;}
.y4b{bottom:822.463260px;}
.y268{bottom:822.952260px;}
.ya2{bottom:823.528800px;}
.y7{bottom:824.421150px;}
.y233{bottom:828.516420px;}
.y5e{bottom:842.978520px;}
.y3{bottom:843.253050px;}
.y4a{bottom:843.471690px;}
.y210{bottom:843.837375px;}
.y1e4{bottom:843.913875px;}
.y267{bottom:843.956100px;}
.ycf{bottom:844.338150px;}
.y1ae{bottom:845.337375px;}
.y129{bottom:845.371425px;}
.yfc{bottom:845.413875px;}
.y171{bottom:845.414025px;}
.y232{bottom:849.520260px;}
.ya1{bottom:850.528800px;}
.y5d{bottom:863.982360px;}
.y49{bottom:864.480120px;}
.y266{bottom:864.959940px;}
.y20f{bottom:867.839250px;}
.y1e3{bottom:867.915750px;}
.yce{bottom:868.340025px;}
.y1ad{bottom:869.339250px;}
.y128{bottom:869.373300px;}
.yfb{bottom:869.415750px;}
.y170{bottom:869.415900px;}
.y231{bottom:870.524100px;}
.y6{bottom:878.421150px;}
.y5c{bottom:884.986200px;}
.y47{bottom:885.378960px;}
.y48{bottom:885.488550px;}
.y265{bottom:885.963780px;}
.y230{bottom:891.520260px;}
.y20e{bottom:891.841125px;}
.y1e2{bottom:891.917625px;}
.ycd{bottom:892.341900px;}
.ya0{bottom:892.389975px;}
.y1ac{bottom:893.341125px;}
.y127{bottom:893.375175px;}
.yfa{bottom:893.417625px;}
.y16f{bottom:893.417775px;}
.y5b{bottom:905.974680px;}
.y46{bottom:906.387390px;}
.y264{bottom:906.967620px;}
.y22f{bottom:912.524100px;}
.y20d{bottom:915.843000px;}
.y1e1{bottom:915.919500px;}
.ycc{bottom:916.343775px;}
.y9f{bottom:916.391850px;}
.y1ab{bottom:917.343000px;}
.y126{bottom:917.377050px;}
.yf9{bottom:917.419500px;}
.y16e{bottom:917.419650px;}
.y5a{bottom:926.978520px;}
.y45{bottom:927.395820px;}
.y263{bottom:927.971460px;}
.y5{bottom:932.421150px;}
.y22e{bottom:939.524100px;}
.y20c{bottom:939.844875px;}
.y1e0{bottom:939.921375px;}
.ycb{bottom:940.345650px;}
.y9e{bottom:940.393725px;}
.y1aa{bottom:941.344875px;}
.y125{bottom:941.378925px;}
.yf8{bottom:941.421375px;}
.y16d{bottom:941.421525px;}
.y59{bottom:947.982360px;}
.y44{bottom:948.404250px;}
.y262{bottom:948.975300px;}
.y20b{bottom:963.846750px;}
.y1df{bottom:963.923250px;}
.yca{bottom:964.347525px;}
.y9d{bottom:964.395600px;}
.y1a9{bottom:965.346750px;}
.y124{bottom:965.380800px;}
.yf7{bottom:965.423250px;}
.y16c{bottom:965.423400px;}
.y58{bottom:968.986200px;}
.y43{bottom:969.412680px;}
.y261{bottom:969.979140px;}
.y4{bottom:986.421150px;}
.y20a{bottom:987.848625px;}
.y1de{bottom:987.925125px;}
.yc9{bottom:988.349400px;}
.y9c{bottom:988.397475px;}
.y1a8{bottom:989.348625px;}
.y123{bottom:989.382675px;}
.yf6{bottom:989.425125px;}
.y16b{bottom:989.425275px;}
.y57{bottom:989.986200px;}
.y42{bottom:990.421110px;}
.y260{bottom:990.982980px;}
.y56{bottom:1010.982360px;}
.y41{bottom:1011.429540px;}
.y209{bottom:1011.850500px;}
.y1dd{bottom:1011.927000px;}
.y25f{bottom:1011.986820px;}
.yc8{bottom:1012.351275px;}
.y9b{bottom:1012.399350px;}
.y1a7{bottom:1013.350500px;}
.y122{bottom:1013.384550px;}
.yf5{bottom:1013.427000px;}
.y16a{bottom:1013.427150px;}
.y55{bottom:1031.986200px;}
.y40{bottom:1032.437970px;}
.y25e{bottom:1032.990660px;}
.y208{bottom:1035.852375px;}
.y1dc{bottom:1035.928875px;}
.yc7{bottom:1036.353150px;}
.y9a{bottom:1036.401225px;}
.y1a6{bottom:1037.352375px;}
.y121{bottom:1037.386425px;}
.yf4{bottom:1037.428875px;}
.y169{bottom:1037.429025px;}
.y54{bottom:1052.986200px;}
.y3f{bottom:1053.446400px;}
.y25d{bottom:1053.994500px;}
.y207{bottom:1059.854250px;}
.y1db{bottom:1059.930750px;}
.yc6{bottom:1060.355025px;}
.y99{bottom:1060.403100px;}
.y1a5{bottom:1061.354250px;}
.y120{bottom:1061.388300px;}
.yf3{bottom:1061.430750px;}
.y168{bottom:1061.430900px;}
.y53{bottom:1073.974680px;}
.y3e{bottom:1074.454830px;}
.y25c{bottom:1074.998340px;}
.y206{bottom:1083.856125px;}
.y1da{bottom:1083.932625px;}
.yc5{bottom:1084.356900px;}
.y98{bottom:1084.404975px;}
.y1a4{bottom:1085.356125px;}
.y11f{bottom:1085.390175px;}
.yf2{bottom:1085.432625px;}
.y167{bottom:1085.432775px;}
.y10{bottom:1093.729200px;}
.yf{bottom:1093.731810px;}
.y52{bottom:1094.978520px;}
.y3d{bottom:1095.463260px;}
.y25b{bottom:1096.002180px;}
.y205{bottom:1107.858000px;}
.y1d9{bottom:1107.934500px;}
.yc4{bottom:1108.358775px;}
.y97{bottom:1108.406850px;}
.y1a3{bottom:1109.358000px;}
.y11e{bottom:1109.392050px;}
.yf1{bottom:1109.434500px;}
.y166{bottom:1109.434650px;}
.ye{bottom:1111.729200px;}
.y51{bottom:1115.982360px;}
.y3c{bottom:1116.471690px;}
.y25a{bottom:1117.006020px;}
.y204{bottom:1131.859875px;}
.y1d8{bottom:1131.936375px;}
.yc3{bottom:1132.360650px;}
.y96{bottom:1132.408725px;}
.y1a2{bottom:1133.359875px;}
.y11d{bottom:1133.393925px;}
.yf0{bottom:1133.436375px;}
.y165{bottom:1133.436525px;}
.y50{bottom:1136.986200px;}
.y3b{bottom:1137.480120px;}
.y259{bottom:1138.009860px;}
.y203{bottom:1155.861750px;}
.y1d7{bottom:1155.938250px;}
.yc2{bottom:1156.362525px;}
.y95{bottom:1156.410600px;}
.y1a1{bottom:1157.361750px;}
.y11c{bottom:1157.395800px;}
.yef{bottom:1157.438250px;}
.y164{bottom:1157.438400px;}
.yd{bottom:1157.986050px;}
.y4f{bottom:1157.986200px;}
.y3a{bottom:1158.488550px;}
.y258{bottom:1159.013700px;}
.y1{bottom:1205.692950px;}
.h14{height:31.733203px;}
.h1b{height:45.988770px;}
.h18{height:50.490000px;}
.h3{height:51.016320px;}
.h15{height:51.533203px;}
.hd{height:52.785000px;}
.h8{height:54.639360px;}
.h9{height:55.080000px;}
.he{height:56.511000px;}
.h7{height:56.512080px;}
.h1a{height:57.393360px;}
.h6{height:57.820254px;}
.hf{height:57.835614px;}
.hb{height:57.850974px;}
.ha{height:57.866334px;}
.h17{height:57.897054px;}
.h19{height:58.039734px;}
.hc{height:60.448447px;}
.h12{height:65.704834px;}
.h13{height:65.894134px;}
.h16{height:79.560000px;}
.h2{height:79.713000px;}
.h10{height:91.800000px;}
.h5{height:162.552000px;}
.h4{height:187.560000px;}
.h11{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;}
.x19{left:110.281800px;}
.xd{left:114.803100px;}
.x11{left:115.990200px;}
.xa{left:123.200700px;}
.xb{left:125.283900px;}
.x21{left:127.559100px;}
.x17{left:137.303100px;}
.x12{left:138.496200px;}
.x6{left:139.867200px;}
.x25{left:147.803100px;}
.x1a{left:152.337900px;}
.x20{left:157.725300px;}
.x1c{left:175.880100px;}
.x8{left:199.330350px;}
.x1d{left:210.472725px;}
.x7{left:223.195050px;}
.xc{left:225.760380px;}
.x5{left:237.479850px;}
.x18{left:239.297100px;}
.x29{left:245.422350px;}
.x4{left:279.064500px;}
.x2a{left:295.115850px;}
.x9{left:297.806400px;}
.x2b{left:302.324850px;}
.xf{left:304.195800px;}
.x27{left:327.422100px;}
.x28{left:336.182850px;}
.x2d{left:339.071850px;}
.x24{left:344.545800px;}
.xe{left:346.599300px;}
.x2e{left:371.187150px;}
.x2f{left:375.327150px;}
.x2c{left:401.023350px;}
.x26{left:424.004550px;}
.x10{left:483.968550px;}
.x1b{left:496.724400px;}
.x13{left:506.462550px;}
.x22{left:508.043550px;}
.x1e{left:530.145900px;}
.x1f{left:579.645000px;}
.x23{left:593.350200px;}
.x14{left:599.372700px;}
.x15{left:605.461350px;}
.x16{left:829.133850px;}
@media print{
.v2{vertical-align:-22.439467pt;}
.v3{vertical-align:-17.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.607733pt;}
.lsbf{letter-spacing:-14.960000pt;}
.lsbb{letter-spacing:-6.582400pt;}
.lsb6{letter-spacing:-6.462720pt;}
.lsa8{letter-spacing:-3.196000pt;}
.lsa2{letter-spacing:-2.788000pt;}
.lsac{letter-spacing:-2.652000pt;}
.ls25{letter-spacing:-2.627520pt;}
.ls82{letter-spacing:-2.584000pt;}
.ls9a{letter-spacing:-2.516000pt;}
.lsc0{letter-spacing:-2.453440pt;}
.ls94{letter-spacing:-2.448000pt;}
.ls41{letter-spacing:-2.314720pt;}
.ls86{letter-spacing:-2.312000pt;}
.lsb7{letter-spacing:-2.273920pt;}
.ls9e{letter-spacing:-2.244000pt;}
.ls7e{letter-spacing:-2.176000pt;}
.ls83{letter-spacing:-2.040000pt;}
.ls9f{letter-spacing:-1.972000pt;}
.ls32{letter-spacing:-1.939360pt;}
.ls95{letter-spacing:-1.836000pt;}
.ls8f{letter-spacing:-1.632000pt;}
.lsaa{letter-spacing:-1.564000pt;}
.lsa9{letter-spacing:-1.496000pt;}
.lsba{letter-spacing:-1.436160pt;}
.lsa0{letter-spacing:-1.428000pt;}
.ls75{letter-spacing:-1.360000pt;}
.ls65{letter-spacing:-1.292000pt;}
.lsa1{letter-spacing:-1.224000pt;}
.ls99{letter-spacing:-1.156000pt;}
.ls97{letter-spacing:-1.088000pt;}
.ls6a{letter-spacing:-1.020000pt;}
.ls19{letter-spacing:-1.017280pt;}
.ls34{letter-spacing:-1.000960pt;}
.lsa6{letter-spacing:-0.989867pt;}
.ls7f{letter-spacing:-0.952000pt;}
.ls23{letter-spacing:-0.938400pt;}
.ls6e{letter-spacing:-0.884000pt;}
.ls4d{letter-spacing:-0.837760pt;}
.ls69{letter-spacing:-0.816000pt;}
.lsb8{letter-spacing:-0.777920pt;}
.ls24{letter-spacing:-0.750720pt;}
.ls80{letter-spacing:-0.748000pt;}
.ls4e{letter-spacing:-0.718080pt;}
.ls31{letter-spacing:-0.688160pt;}
.ls63{letter-spacing:-0.680000pt;}
.ls27{letter-spacing:-0.625600pt;}
.ls68{letter-spacing:-0.612000pt;}
.lsb0{letter-spacing:-0.598400pt;}
.ls5e{letter-spacing:-0.544000pt;}
.lsb3{letter-spacing:-0.538560pt;}
.ls33{letter-spacing:-0.500480pt;}
.ls4b{letter-spacing:-0.478720pt;}
.ls6{letter-spacing:-0.476000pt;}
.ls2b{letter-spacing:-0.437920pt;}
.ls1e{letter-spacing:-0.418880pt;}
.ls5{letter-spacing:-0.408000pt;}
.ls12{letter-spacing:-0.391680pt;}
.ls2d{letter-spacing:-0.375360pt;}
.ls18{letter-spacing:-0.359040pt;}
.ls5d{letter-spacing:-0.340000pt;}
.ls3f{letter-spacing:-0.312800pt;}
.lsb5{letter-spacing:-0.299200pt;}
.ls5f{letter-spacing:-0.272000pt;}
.ls2c{letter-spacing:-0.250240pt;}
.ls15{letter-spacing:-0.239360pt;}
.ls61{letter-spacing:-0.204000pt;}
.lsb1{letter-spacing:-0.179520pt;}
.lsc5{letter-spacing:-0.146880pt;}
.ls5a{letter-spacing:-0.136000pt;}
.ls53{letter-spacing:-0.119680pt;}
.ls74{letter-spacing:-0.068000pt;}
.lsb2{letter-spacing:-0.059840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.059840pt;}
.ls2a{letter-spacing:0.062560pt;}
.ls36{letter-spacing:0.068000pt;}
.ls1a{letter-spacing:0.119680pt;}
.ls64{letter-spacing:0.136000pt;}
.ls13{letter-spacing:0.179520pt;}
.lsc8{letter-spacing:0.195840pt;}
.ls7{letter-spacing:0.204000pt;}
.ls17{letter-spacing:0.239360pt;}
.ls5b{letter-spacing:0.272000pt;}
.ls2{letter-spacing:0.299200pt;}
.ls3b{letter-spacing:0.340000pt;}
.lsaf{letter-spacing:0.359040pt;}
.ls1{letter-spacing:0.384000pt;}
.lsc6{letter-spacing:0.391680pt;}
.ls6f{letter-spacing:0.408000pt;}
.ls1f{letter-spacing:0.418880pt;}
.ls73{letter-spacing:0.476000pt;}
.ls3a{letter-spacing:0.544000pt;}
.ls26{letter-spacing:0.563040pt;}
.ls4a{letter-spacing:0.598400pt;}
.ls59{letter-spacing:0.612000pt;}
.ls11{letter-spacing:0.636480pt;}
.ls92{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.658240pt;}
.ls5c{letter-spacing:0.680000pt;}
.ls47{letter-spacing:0.718080pt;}
.ls38{letter-spacing:0.748000pt;}
.ls40{letter-spacing:0.750720pt;}
.ls51{letter-spacing:0.777920pt;}
.ls84{letter-spacing:0.816000pt;}
.lse{letter-spacing:0.832000pt;}
.lsc3{letter-spacing:0.832320pt;}
.ls48{letter-spacing:0.837760pt;}
.lsc2{letter-spacing:0.881280pt;}
.ls67{letter-spacing:0.884000pt;}
.lsae{letter-spacing:0.897600pt;}
.lsc4{letter-spacing:0.930240pt;}
.ls3d{letter-spacing:0.935680pt;}
.ls3c{letter-spacing:0.952000pt;}
.ls1b{letter-spacing:0.957440pt;}
.lsb4{letter-spacing:1.017280pt;}
.ls3{letter-spacing:1.020000pt;}
.lsb9{letter-spacing:1.077120pt;}
.ls70{letter-spacing:1.088000pt;}
.ls22{letter-spacing:1.126080pt;}
.ls55{letter-spacing:1.136960pt;}
.ls3e{letter-spacing:1.156000pt;}
.lsc7{letter-spacing:1.175040pt;}
.lsad{letter-spacing:1.178667pt;}
.ls60{letter-spacing:1.224000pt;}
.ls7a{letter-spacing:1.280000pt;}
.ls93{letter-spacing:1.292000pt;}
.ls16{letter-spacing:1.316480pt;}
.ls85{letter-spacing:1.360000pt;}
.ls77{letter-spacing:1.428000pt;}
.ls4f{letter-spacing:1.436160pt;}
.lsa{letter-spacing:1.440000pt;}
.ls54{letter-spacing:1.496000pt;}
.ls28{letter-spacing:1.501440pt;}
.ls39{letter-spacing:1.564000pt;}
.lsbe{letter-spacing:1.615680pt;}
.ls6c{letter-spacing:1.632000pt;}
.ls50{letter-spacing:1.675520pt;}
.ls2f{letter-spacing:1.689120pt;}
.ls58{letter-spacing:1.700000pt;}
.ls56{letter-spacing:1.735360pt;}
.ls89{letter-spacing:1.768000pt;}
.ls4c{letter-spacing:1.795200pt;}
.ls20{letter-spacing:1.814240pt;}
.ls62{letter-spacing:1.836000pt;}
.ls1d{letter-spacing:1.855040pt;}
.ls9{letter-spacing:1.871360pt;}
.ls6b{letter-spacing:1.904000pt;}
.ls57{letter-spacing:1.920000pt;}
.ls21{letter-spacing:1.939360pt;}
.ls7d{letter-spacing:1.972000pt;}
.ls29{letter-spacing:2.001920pt;}
.ls8a{letter-spacing:2.040000pt;}
.lsbc{letter-spacing:2.080000pt;}
.ls88{letter-spacing:2.108000pt;}
.ls72{letter-spacing:2.160000pt;}
.ls8e{letter-spacing:2.176000pt;}
.ls8c{letter-spacing:2.244000pt;}
.ls8{letter-spacing:2.263040pt;}
.ls78{letter-spacing:2.312000pt;}
.lsa4{letter-spacing:2.325867pt;}
.ls52{letter-spacing:2.333760pt;}
.ls81{letter-spacing:2.380000pt;}
.ls49{letter-spacing:2.393600pt;}
.ls71{letter-spacing:2.400000pt;}
.ls46{letter-spacing:2.502400pt;}
.ls98{letter-spacing:2.516000pt;}
.ls79{letter-spacing:2.584000pt;}
.ls7c{letter-spacing:2.652000pt;}
.lsa5{letter-spacing:2.720000pt;}
.ls76{letter-spacing:2.856000pt;}
.ls9c{letter-spacing:2.924000pt;}
.ls8d{letter-spacing:2.992000pt;}
.ls66{letter-spacing:3.060000pt;}
.ls96{letter-spacing:3.128000pt;}
.ls9b{letter-spacing:3.196000pt;}
.lsc1{letter-spacing:3.231360pt;}
.ls45{letter-spacing:3.253120pt;}
.ls42{letter-spacing:3.378240pt;}
.ls8b{letter-spacing:3.400000pt;}
.ls2e{letter-spacing:3.440800pt;}
.ls10{letter-spacing:3.466667pt;}
.ls37{letter-spacing:3.944000pt;}
.lsc{letter-spacing:4.000000pt;}
.ls7b{letter-spacing:4.148000pt;}
.lsd{letter-spacing:4.160000pt;}
.ls43{letter-spacing:4.254080pt;}
.ls44{letter-spacing:4.441760pt;}
.ls30{letter-spacing:5.067360pt;}
.lsf{letter-spacing:6.656000pt;}
.lsb{letter-spacing:7.680000pt;}
.ls91{letter-spacing:14.490667pt;}
.ls35{letter-spacing:48.280000pt;}
.ls0{letter-spacing:48.416000pt;}
.ls6d{letter-spacing:48.484000pt;}
.lsab{letter-spacing:48.960000pt;}
.lsa3{letter-spacing:49.368000pt;}
.ls9d{letter-spacing:49.572000pt;}
.lsa7{letter-spacing:49.708000pt;}
.ls90{letter-spacing:50.048000pt;}
.ls87{letter-spacing:52.632000pt;}
.lsbd{letter-spacing:52.836000pt;}
.ws71{word-spacing:-21.600000pt;}
.ws39{word-spacing:-21.360000pt;}
.wsaf{word-spacing:-20.720000pt;}
.wsb3{word-spacing:-18.928000pt;}
.wsad{word-spacing:-16.864000pt;}
.ws8c{word-spacing:-16.524000pt;}
.wsa9{word-spacing:-16.388000pt;}
.wsa3{word-spacing:-16.320000pt;}
.ws3a{word-spacing:-16.184000pt;}
.ws97{word-spacing:-16.116000pt;}
.wsac{word-spacing:-16.048000pt;}
.wsae{word-spacing:-15.980000pt;}
.ws2{word-spacing:-15.776000pt;}
.ws8b{word-spacing:-15.708000pt;}
.ws4{word-spacing:-15.618240pt;}
.ws38{word-spacing:-15.558400pt;}
.ws95{word-spacing:-15.300000pt;}
.ws1{word-spacing:-15.164000pt;}
.ws3{word-spacing:-15.139520pt;}
.wsc6{word-spacing:-14.900160pt;}
.ws36{word-spacing:-14.639040pt;}
.ws5{word-spacing:-14.600960pt;}
.ws37{word-spacing:-14.481280pt;}
.ws96{word-spacing:-13.973333pt;}
.ws3b{word-spacing:-13.333333pt;}
.wsc8{word-spacing:-10.379520pt;}
.wsc7{word-spacing:-9.840960pt;}
.wsb{word-spacing:-7.680000pt;}
.wsaa{word-spacing:-6.743467pt;}
.wsf{word-spacing:-6.656000pt;}
.ws30{word-spacing:-5.067360pt;}
.ws41{word-spacing:-4.441760pt;}
.ws40{word-spacing:-4.254080pt;}
.wsd{word-spacing:-4.160000pt;}
.ws7e{word-spacing:-4.148000pt;}
.wsc{word-spacing:-4.000000pt;}
.ws56{word-spacing:-3.944000pt;}
.ws10{word-spacing:-3.466667pt;}
.ws2e{word-spacing:-3.440800pt;}
.ws90{word-spacing:-3.400000pt;}
.ws3f{word-spacing:-3.378240pt;}
.ws42{word-spacing:-3.253120pt;}
.wscc{word-spacing:-3.231360pt;}
.wsa1{word-spacing:-3.196000pt;}
.ws9b{word-spacing:-3.128000pt;}
.ws6a{word-spacing:-3.060000pt;}
.ws92{word-spacing:-2.992000pt;}
.wsa2{word-spacing:-2.924000pt;}
.ws78{word-spacing:-2.856000pt;}
.wsab{word-spacing:-2.720000pt;}
.ws7f{word-spacing:-2.652000pt;}
.ws7b{word-spacing:-2.584000pt;}
.ws9d{word-spacing:-2.516000pt;}
.ws43{word-spacing:-2.502400pt;}
.ws74{word-spacing:-2.400000pt;}
.ws46{word-spacing:-2.393600pt;}
.ws85{word-spacing:-2.380000pt;}
.ws4e{word-spacing:-2.333760pt;}
.ws7a{word-spacing:-2.312000pt;}
.ws8{word-spacing:-2.263040pt;}
.ws91{word-spacing:-2.244000pt;}
.ws93{word-spacing:-2.176000pt;}
.ws7d{word-spacing:-2.160000pt;}
.ws8d{word-spacing:-2.108000pt;}
.ws8f{word-spacing:-2.040000pt;}
.ws29{word-spacing:-2.001920pt;}
.ws80{word-spacing:-1.972000pt;}
.ws21{word-spacing:-1.939360pt;}
.ws6f{word-spacing:-1.904000pt;}
.ws9{word-spacing:-1.871360pt;}
.ws1d{word-spacing:-1.855040pt;}
.ws66{word-spacing:-1.836000pt;}
.ws20{word-spacing:-1.814240pt;}
.ws48{word-spacing:-1.795200pt;}
.ws8e{word-spacing:-1.768000pt;}
.ws53{word-spacing:-1.735360pt;}
.ws55{word-spacing:-1.700000pt;}
.ws2f{word-spacing:-1.689120pt;}
.ws4c{word-spacing:-1.675520pt;}
.ws70{word-spacing:-1.632000pt;}
.wsc9{word-spacing:-1.615680pt;}
.ws58{word-spacing:-1.564000pt;}
.ws28{word-spacing:-1.501440pt;}
.ws51{word-spacing:-1.496000pt;}
.wsa{word-spacing:-1.440000pt;}
.ws4b{word-spacing:-1.436160pt;}
.ws79{word-spacing:-1.428000pt;}
.ws89{word-spacing:-1.360000pt;}
.ws16{word-spacing:-1.316480pt;}
.ws98{word-spacing:-1.292000pt;}
.ws7c{word-spacing:-1.280000pt;}
.ws35{word-spacing:-1.224000pt;}
.wsb5{word-spacing:-1.178667pt;}
.wsd0{word-spacing:-1.175040pt;}
.ws83{word-spacing:-1.156000pt;}
.ws52{word-spacing:-1.136960pt;}
.ws22{word-spacing:-1.126080pt;}
.ws0{word-spacing:-1.088000pt;}
.wsc3{word-spacing:-1.077120pt;}
.ws5e{word-spacing:-1.020000pt;}
.wsbd{word-spacing:-1.017280pt;}
.ws1b{word-spacing:-0.957440pt;}
.ws5d{word-spacing:-0.952000pt;}
.wscf{word-spacing:-0.930240pt;}
.wsb6{word-spacing:-0.897600pt;}
.ws6b{word-spacing:-0.884000pt;}
.wscd{word-spacing:-0.881280pt;}
.ws45{word-spacing:-0.837760pt;}
.wsce{word-spacing:-0.832320pt;}
.wse{word-spacing:-0.832000pt;}
.ws88{word-spacing:-0.816000pt;}
.ws4d{word-spacing:-0.777920pt;}
.ws3d{word-spacing:-0.750720pt;}
.ws57{word-spacing:-0.748000pt;}
.ws44{word-spacing:-0.718080pt;}
.ws61{word-spacing:-0.680000pt;}
.ws4f{word-spacing:-0.658240pt;}
.ws11{word-spacing:-0.636480pt;}
.ws5c{word-spacing:-0.612000pt;}
.ws47{word-spacing:-0.598400pt;}
.ws26{word-spacing:-0.563040pt;}
.ws59{word-spacing:-0.544000pt;}
.ws75{word-spacing:-0.476000pt;}
.ws1f{word-spacing:-0.418880pt;}
.ws73{word-spacing:-0.408000pt;}
.ws13{word-spacing:-0.384000pt;}
.wsb7{word-spacing:-0.359040pt;}
.ws5b{word-spacing:-0.340000pt;}
.ws14{word-spacing:-0.299200pt;}
.ws60{word-spacing:-0.272000pt;}
.ws17{word-spacing:-0.239360pt;}
.ws9f{word-spacing:-0.204000pt;}
.wsd1{word-spacing:-0.195840pt;}
.wsbc{word-spacing:-0.179520pt;}
.ws68{word-spacing:-0.136000pt;}
.ws1a{word-spacing:-0.119680pt;}
.ws54{word-spacing:-0.068000pt;}
.ws2a{word-spacing:-0.062560pt;}
.ws1c{word-spacing:-0.059840pt;}
.ws6{word-spacing:0.000000pt;}
.wsba{word-spacing:0.059840pt;}
.ws76{word-spacing:0.068000pt;}
.ws50{word-spacing:0.119680pt;}
.ws5f{word-spacing:0.136000pt;}
.wsb9{word-spacing:0.179520pt;}
.ws65{word-spacing:0.204000pt;}
.ws15{word-spacing:0.239360pt;}
.ws2c{word-spacing:0.250240pt;}
.ws64{word-spacing:0.272000pt;}
.wsbe{word-spacing:0.299200pt;}
.ws3c{word-spacing:0.312800pt;}
.ws62{word-spacing:0.340000pt;}
.ws18{word-spacing:0.359040pt;}
.ws2d{word-spacing:0.375360pt;}
.ws12{word-spacing:0.391680pt;}
.ws5a{word-spacing:0.408000pt;}
.ws1e{word-spacing:0.418880pt;}
.ws2b{word-spacing:0.437920pt;}
.ws7{word-spacing:0.476000pt;}
.wsc1{word-spacing:0.478720pt;}
.ws33{word-spacing:0.500480pt;}
.wsbb{word-spacing:0.538560pt;}
.ws63{word-spacing:0.544000pt;}
.wsb8{word-spacing:0.598400pt;}
.ws6c{word-spacing:0.612000pt;}
.ws27{word-spacing:0.625600pt;}
.ws67{word-spacing:0.680000pt;}
.ws31{word-spacing:0.688160pt;}
.ws4a{word-spacing:0.718080pt;}
.ws84{word-spacing:0.748000pt;}
.ws24{word-spacing:0.750720pt;}
.wsc2{word-spacing:0.777920pt;}
.ws6d{word-spacing:0.816000pt;}
.ws49{word-spacing:0.837760pt;}
.ws72{word-spacing:0.884000pt;}
.ws23{word-spacing:0.938400pt;}
.ws82{word-spacing:0.952000pt;}
.ws34{word-spacing:1.000960pt;}
.ws19{word-spacing:1.017280pt;}
.ws6e{word-spacing:1.020000pt;}
.ws9c{word-spacing:1.088000pt;}
.ws9e{word-spacing:1.156000pt;}
.wsa7{word-spacing:1.224000pt;}
.ws69{word-spacing:1.292000pt;}
.ws77{word-spacing:1.360000pt;}
.wsa6{word-spacing:1.428000pt;}
.wsc4{word-spacing:1.436160pt;}
.wsb1{word-spacing:1.496000pt;}
.wsb2{word-spacing:1.564000pt;}
.ws94{word-spacing:1.632000pt;}
.ws9a{word-spacing:1.836000pt;}
.ws32{word-spacing:1.939360pt;}
.wsa5{word-spacing:1.972000pt;}
.ws87{word-spacing:2.040000pt;}
.ws81{word-spacing:2.176000pt;}
.wsa4{word-spacing:2.244000pt;}
.wsc0{word-spacing:2.273920pt;}
.ws8a{word-spacing:2.312000pt;}
.ws3e{word-spacing:2.314720pt;}
.ws99{word-spacing:2.448000pt;}
.wscb{word-spacing:2.453440pt;}
.wsa0{word-spacing:2.516000pt;}
.ws86{word-spacing:2.584000pt;}
.ws25{word-spacing:2.627520pt;}
.wsb4{word-spacing:2.652000pt;}
.wsa8{word-spacing:2.788000pt;}
.wsb0{word-spacing:3.196000pt;}
.wsbf{word-spacing:6.462720pt;}
.wsc5{word-spacing:6.582400pt;}
.wsca{word-spacing:14.960000pt;}
._18{margin-left:-16.858800pt;}
._17{margin-left:-14.121333pt;}
._13{margin-left:-12.336241pt;}
._c{margin-left:-10.122800pt;}
._e{margin-left:-8.071600pt;}
._3{margin-left:-7.072000pt;}
._b{margin-left:-5.304400pt;}
._a{margin-left:-4.312000pt;}
._2{margin-left:-3.060000pt;}
._f{margin-left:-2.112000pt;}
._0{margin-left:-1.020000pt;}
._5{width:1.224000pt;}
._6{width:2.237200pt;}
._8{width:3.900400pt;}
._10{width:5.376000pt;}
._12{width:6.330800pt;}
._d{width:7.431600pt;}
._7{width:8.552400pt;}
._11{width:9.915671pt;}
._9{width:10.881072pt;}
._22{width:11.971256pt;}
._23{width:13.400000pt;}
._1f{width:14.496000pt;}
._1b{width:15.408000pt;}
._1d{width:17.022667pt;}
._1c{width:17.983467pt;}
._15{width:19.493867pt;}
._21{width:22.006667pt;}
._24{width:23.186453pt;}
._20{width:25.866667pt;}
._1e{width:37.312000pt;}
._16{width:39.909333pt;}
._1{width:135.456000pt;}
._1a{width:137.360000pt;}
._19{width:139.536000pt;}
._14{width:1073.865840pt;}
._4{width:1738.420000pt;}
.fsc{font-size:30.933333pt;}
.fsb{font-size:39.440000pt;}
.fs1{font-size:43.520000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:48.960000pt;}
.fsd{font-size:53.333333pt;}
.fs4{font-size:59.840000pt;}
.fs8{font-size:61.333333pt;}
.fs7{font-size:62.560000pt;}
.fs0{font-size:68.000000pt;}
.fse{font-size:69.333333pt;}
.fs9{font-size:80.000000pt;}
.fs3{font-size:138.666667pt;}
.fs2{font-size:160.000000pt;}
.fsa{font-size:255.177067pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:56.692933pt;}
.y192{bottom:56.693067pt;}
.y39{bottom:58.167067pt;}
.y7c{bottom:61.811000pt;}
.yc1{bottom:65.728800pt;}
.yee{bottom:65.733800pt;}
.y11b{bottom:66.647267pt;}
.y1cf{bottom:67.485467pt;}
.y1a0{bottom:68.759000pt;}
.y93{bottom:72.692933pt;}
.y191{bottom:72.693067pt;}
.y257{bottom:75.101813pt;}
.y24{bottom:75.495573pt;}
.y38{bottom:76.841227pt;}
.y7b{bottom:83.146000pt;}
.y1ce{bottom:83.485467pt;}
.yc0{bottom:87.063800pt;}
.yed{bottom:87.068800pt;}
.y11a{bottom:87.982267pt;}
.y92{bottom:88.692933pt;}
.y190{bottom:88.693067pt;}
.y19f{bottom:90.094000pt;}
.y256{bottom:93.771893pt;}
.y23{bottom:94.165653pt;}
.y37{bottom:95.515387pt;}
.y1cd{bottom:99.485467pt;}
.y7a{bottom:104.481000pt;}
.y91{bottom:104.692933pt;}
.y18f{bottom:104.693067pt;}
.ybf{bottom:108.398800pt;}
.yec{bottom:108.403800pt;}
.y1d6{bottom:109.092933pt;}
.y119{bottom:109.317267pt;}
.y202{bottom:110.095667pt;}
.y22d{bottom:110.665600pt;}
.y19e{bottom:111.429000pt;}
.y255{bottom:112.441973pt;}
.y22{bottom:112.835733pt;}
.y36{bottom:114.189547pt;}
.y1cc{bottom:115.485467pt;}
.y146{bottom:120.692933pt;}
.y18e{bottom:120.693067pt;}
.y90{bottom:125.092933pt;}
.y79{bottom:125.816000pt;}
.ybe{bottom:129.733800pt;}
.yeb{bottom:129.738800pt;}
.y118{bottom:130.652267pt;}
.y254{bottom:131.112053pt;}
.y201{bottom:131.430667pt;}
.y1cb{bottom:131.485467pt;}
.y21{bottom:131.502400pt;}
.y22c{bottom:132.000600pt;}
.y19d{bottom:132.764000pt;}
.y35{bottom:132.863707pt;}
.y163{bottom:136.692933pt;}
.y18d{bottom:136.693067pt;}
.y145{bottom:141.092933pt;}
.y78{bottom:147.151000pt;}
.y1ca{bottom:147.485467pt;}
.y253{bottom:149.782133pt;}
.y20{bottom:150.158827pt;}
.ybd{bottom:151.068800pt;}
.yea{bottom:151.073800pt;}
.y34{bottom:151.537867pt;}
.y117{bottom:151.987267pt;}
.y162{bottom:152.692933pt;}
.y200{bottom:152.765667pt;}
.y22b{bottom:153.335600pt;}
.y19c{bottom:154.099000pt;}
.y1d0{bottom:157.092933pt;}
.y18c{bottom:157.093067pt;}
.y8f{bottom:162.459067pt;}
.y1c9{bottom:163.485467pt;}
.y252{bottom:168.452213pt;}
.y77{bottom:168.486000pt;}
.y161{bottom:168.692933pt;}
.y1f{bottom:168.828907pt;}
.y33{bottom:170.212027pt;}
.ybc{bottom:172.403800pt;}
.ye9{bottom:172.408800pt;}
.y116{bottom:173.322267pt;}
.y1ff{bottom:174.100667pt;}
.y22a{bottom:174.670600pt;}
.y144{bottom:175.396267pt;}
.y19b{bottom:175.434000pt;}
.y8e{bottom:183.794067pt;}
.y1c8{bottom:183.885467pt;}
.y160{bottom:184.692933pt;}
.y251{bottom:187.122293pt;}
.y1e{bottom:187.498987pt;}
.y32{bottom:188.886187pt;}
.y1d5{bottom:189.092933pt;}
.y76{bottom:189.821000pt;}
.ybb{bottom:193.738800pt;}
.ye8{bottom:193.743800pt;}
.y115{bottom:194.657267pt;}
.y1fe{bottom:195.435667pt;}
.y229{bottom:196.005600pt;}
.y143{bottom:196.731267pt;}
.y19a{bottom:196.769000pt;}
.y18b{bottom:196.769133pt;}
.y15f{bottom:200.692933pt;}
.y8d{bottom:205.129067pt;}
.y250{bottom:205.792373pt;}
.y1d{bottom:206.169067pt;}
.y31{bottom:207.560347pt;}
.y75{bottom:211.156000pt;}
.yba{bottom:215.073800pt;}
.ye7{bottom:215.078800pt;}
.y114{bottom:215.992267pt;}
.y15e{bottom:216.692933pt;}
.y1fd{bottom:216.770667pt;}
.y228{bottom:217.340600pt;}
.y1c7{bottom:218.036000pt;}
.y142{bottom:218.066267pt;}
.y199{bottom:218.104000pt;}
.y18a{bottom:218.104133pt;}
.y24f{bottom:224.462453pt;}
.y1c{bottom:224.835733pt;}
.y30{bottom:226.234507pt;}
.y8c{bottom:226.464067pt;}
.y74{bottom:232.491000pt;}
.y1d4{bottom:232.692933pt;}
.yb9{bottom:236.408800pt;}
.ye6{bottom:236.413800pt;}
.y15d{bottom:237.092933pt;}
.y113{bottom:237.327267pt;}
.y1fc{bottom:238.105667pt;}
.y227{bottom:238.675600pt;}
.y1c6{bottom:239.371000pt;}
.y141{bottom:239.401267pt;}
.y198{bottom:239.439000pt;}
.y189{bottom:239.439133pt;}
.y24e{bottom:243.132533pt;}
.y1b{bottom:243.492160pt;}
.y2f{bottom:244.908667pt;}
.y8b{bottom:247.799067pt;}
.y15c{bottom:248.692933pt;}
.y1d3{bottom:253.092933pt;}
.y73{bottom:253.826000pt;}
.yb8{bottom:257.743800pt;}
.ye5{bottom:257.748800pt;}
.y112{bottom:258.662267pt;}
.y1fb{bottom:259.440667pt;}
.y226{bottom:260.010600pt;}
.y1c5{bottom:260.706000pt;}
.y140{bottom:260.736267pt;}
.y197{bottom:260.774000pt;}
.y188{bottom:260.774133pt;}
.y1a{bottom:262.162240pt;}
.y2e{bottom:263.582827pt;}
.y15b{bottom:264.692933pt;}
.y24d{bottom:267.132533pt;}
.y8a{bottom:269.134067pt;}
.y72{bottom:275.161000pt;}
.yb7{bottom:279.078800pt;}
.ye4{bottom:279.083800pt;}
.y111{bottom:279.997267pt;}
.y15a{bottom:280.692933pt;}
.y1fa{bottom:280.775667pt;}
.y19{bottom:280.832320pt;}
.y225{bottom:281.345600pt;}
.y1c4{bottom:282.041000pt;}
.y13f{bottom:282.071267pt;}
.y196{bottom:282.109000pt;}
.y187{bottom:282.109133pt;}
.y2d{bottom:282.256987pt;}
.y89{bottom:290.469067pt;}
.y71{bottom:296.496000pt;}
.y159{bottom:296.692933pt;}
.y18{bottom:299.502400pt;}
.yb6{bottom:300.413800pt;}
.ye3{bottom:300.418800pt;}
.y2c{bottom:300.931147pt;}
.y110{bottom:301.332267pt;}
.y1f9{bottom:302.110667pt;}
.y224{bottom:302.680600pt;}
.y1c3{bottom:303.376000pt;}
.y13e{bottom:303.406267pt;}
.y195{bottom:303.444000pt;}
.y186{bottom:303.444133pt;}
.y24c{bottom:307.112053pt;}
.y88{bottom:311.804067pt;}
.y1d2{bottom:312.692933pt;}
.y158{bottom:317.092933pt;}
.y70{bottom:317.831000pt;}
.y17{bottom:318.162240pt;}
.y2b{bottom:319.605307pt;}
.yb5{bottom:321.748800pt;}
.ye2{bottom:321.753800pt;}
.y10f{bottom:322.667267pt;}
.y1f8{bottom:323.445667pt;}
.y223{bottom:324.015600pt;}
.y1c2{bottom:324.711000pt;}
.y13d{bottom:324.741267pt;}
.y194{bottom:324.779000pt;}
.y185{bottom:324.779133pt;}
.y24b{bottom:325.782133pt;}
.y1d1{bottom:328.692933pt;}
.y87{bottom:333.139067pt;}
.y16{bottom:336.832320pt;}
.y2a{bottom:338.279467pt;}
.y6f{bottom:339.166000pt;}
.yb4{bottom:343.083800pt;}
.ye1{bottom:343.088800pt;}
.y10e{bottom:344.002267pt;}
.y24a{bottom:344.452213pt;}
.y1f7{bottom:344.780667pt;}
.y222{bottom:345.350600pt;}
.y1c1{bottom:346.046000pt;}
.y13c{bottom:346.076267pt;}
.y193{bottom:346.114000pt;}
.y184{bottom:346.114133pt;}
.y86{bottom:354.474067pt;}
.y15{bottom:355.502400pt;}
.y29{bottom:356.953627pt;}
.y6e{bottom:360.501000pt;}
.y249{bottom:363.122293pt;}
.yb3{bottom:364.418800pt;}
.ye0{bottom:364.423800pt;}
.y10d{bottom:365.337267pt;}
.y1f6{bottom:366.115667pt;}
.y221{bottom:366.685600pt;}
.y1c0{bottom:367.381000pt;}
.y13b{bottom:367.411267pt;}
.y157{bottom:367.449000pt;}
.y183{bottom:367.449133pt;}
.y14{bottom:374.158827pt;}
.y28{bottom:375.627787pt;}
.y85{bottom:375.809067pt;}
.y248{bottom:381.792373pt;}
.y6d{bottom:381.836000pt;}
.yb2{bottom:385.753800pt;}
.ydf{bottom:385.758800pt;}
.y10c{bottom:386.672267pt;}
.y1f5{bottom:387.450667pt;}
.y220{bottom:388.020600pt;}
.y1bf{bottom:388.716000pt;}
.y13a{bottom:388.746267pt;}
.y156{bottom:388.784000pt;}
.y182{bottom:388.784133pt;}
.y13{bottom:392.828907pt;}
.y27{bottom:394.301947pt;}
.y84{bottom:397.144067pt;}
.y247{bottom:400.462453pt;}
.y6c{bottom:403.171000pt;}
.yb1{bottom:407.088800pt;}
.yde{bottom:407.093800pt;}
.y10b{bottom:408.007267pt;}
.y1f4{bottom:408.785667pt;}
.y21f{bottom:409.355600pt;}
.y1be{bottom:410.051000pt;}
.y139{bottom:410.081267pt;}
.y155{bottom:410.119000pt;}
.y181{bottom:410.119133pt;}
.y12{bottom:411.498987pt;}
.y26{bottom:412.976107pt;}
.y26e{bottom:415.131387pt;}
.y83{bottom:418.479067pt;}
.y246{bottom:419.132533pt;}
.y6b{bottom:424.506000pt;}
.yb0{bottom:428.423800pt;}
.ydd{bottom:428.428800pt;}
.y10a{bottom:429.342267pt;}
.y1f3{bottom:430.120667pt;}
.y11{bottom:430.169067pt;}
.y21e{bottom:430.690600pt;}
.y1bd{bottom:431.386000pt;}
.y138{bottom:431.416267pt;}
.y154{bottom:431.454000pt;}
.y180{bottom:431.454133pt;}
.y25{bottom:431.650267pt;}
.y26d{bottom:437.571387pt;}
.y244{bottom:437.792373pt;}
.y245{bottom:437.799200pt;}
.y82{bottom:439.814067pt;}
.y6a{bottom:445.841000pt;}
.yaf{bottom:449.758800pt;}
.ydc{bottom:449.763800pt;}
.y109{bottom:450.677267pt;}
.y1f2{bottom:451.455667pt;}
.y21d{bottom:452.025600pt;}
.y1bc{bottom:452.721000pt;}
.y137{bottom:452.751267pt;}
.y153{bottom:452.789000pt;}
.y17f{bottom:452.789133pt;}
.y26c{bottom:456.241467pt;}
.y243{bottom:456.462453pt;}
.y81{bottom:461.107000pt;}
.y69{bottom:467.176000pt;}
.y66{bottom:467.179333pt;}
.yae{bottom:471.093800pt;}
.ydb{bottom:471.098800pt;}
.y108{bottom:472.012267pt;}
.y1f1{bottom:472.790667pt;}
.y1bb{bottom:474.056000pt;}
.y136{bottom:474.086267pt;}
.y152{bottom:474.124000pt;}
.y17e{bottom:474.124133pt;}
.y242{bottom:475.132533pt;}
.y21c{bottom:478.272267pt;}
.y26b{bottom:478.681467pt;}
.y80{bottom:482.442000pt;}
.y68{bottom:488.511000pt;}
.yad{bottom:492.428800pt;}
.yda{bottom:492.433800pt;}
.y107{bottom:493.347267pt;}
.y241{bottom:493.799200pt;}
.y1f0{bottom:494.125667pt;}
.y1ba{bottom:495.391000pt;}
.y135{bottom:495.421267pt;}
.y151{bottom:495.459000pt;}
.y17d{bottom:495.459133pt;}
.y26a{bottom:501.121467pt;}
.y7f{bottom:503.777000pt;}
.y67{bottom:509.846000pt;}
.yc{bottom:510.165467pt;}
.y240{bottom:512.459040pt;}
.yac{bottom:513.763800pt;}
.yd9{bottom:513.768800pt;}
.y106{bottom:514.682267pt;}
.y21b{bottom:515.392667pt;}
.y1ef{bottom:515.460667pt;}
.y1b9{bottom:516.726000pt;}
.y134{bottom:516.756267pt;}
.y150{bottom:516.794000pt;}
.y17c{bottom:516.794133pt;}
.y269{bottom:519.739360pt;}
.y7e{bottom:525.112000pt;}
.y23f{bottom:531.129120pt;}
.yab{bottom:535.098800pt;}
.yd8{bottom:535.103800pt;}
.y105{bottom:536.017267pt;}
.y65{bottom:536.092667pt;}
.y21a{bottom:536.727667pt;}
.y1ee{bottom:536.795667pt;}
.y1b8{bottom:538.061000pt;}
.y133{bottom:538.091267pt;}
.y14f{bottom:538.129000pt;}
.y17b{bottom:538.129133pt;}
.y7d{bottom:546.447000pt;}
.yb{bottom:548.818800pt;}
.y23e{bottom:549.799200pt;}
.yaa{bottom:556.433800pt;}
.yd7{bottom:556.438800pt;}
.y104{bottom:557.352267pt;}
.y219{bottom:558.062667pt;}
.y1ed{bottom:558.130667pt;}
.y1b7{bottom:559.396000pt;}
.y132{bottom:559.426267pt;}
.y14e{bottom:559.464000pt;}
.y17a{bottom:559.464133pt;}
.y23d{bottom:568.462453pt;}
.ya9{bottom:577.768800pt;}
.yd6{bottom:577.773800pt;}
.y275{bottom:577.852133pt;}
.y274{bottom:577.858347pt;}
.y27b{bottom:577.864373pt;}
.y103{bottom:578.687267pt;}
.y218{bottom:579.397667pt;}
.y1ec{bottom:579.465667pt;}
.y1b6{bottom:580.731000pt;}
.y131{bottom:580.761267pt;}
.y14d{bottom:580.799000pt;}
.y179{bottom:580.799133pt;}
.y23c{bottom:587.132533pt;}
.ya{bottom:587.485467pt;}
.y273{bottom:593.856027pt;}
.y27a{bottom:593.862053pt;}
.ya8{bottom:599.103800pt;}
.yd5{bottom:599.108800pt;}
.y102{bottom:600.022267pt;}
.y217{bottom:600.732667pt;}
.y1eb{bottom:600.800667pt;}
.y1b5{bottom:602.066000pt;}
.y130{bottom:602.096267pt;}
.y14c{bottom:602.134000pt;}
.y178{bottom:602.134133pt;}
.y23b{bottom:605.795787pt;}
.y272{bottom:609.853707pt;}
.y279{bottom:609.859733pt;}
.ya7{bottom:620.438800pt;}
.yd4{bottom:620.443800pt;}
.y101{bottom:621.357267pt;}
.y216{bottom:622.067667pt;}
.y1ea{bottom:622.135667pt;}
.y1b4{bottom:623.401000pt;}
.y12f{bottom:623.431267pt;}
.y14b{bottom:623.469000pt;}
.y177{bottom:623.469133pt;}
.y23a{bottom:624.465867pt;}
.y271{bottom:625.851387pt;}
.y278{bottom:625.857413pt;}
.y9{bottom:626.152133pt;}
.y64{bottom:637.321067pt;}
.ya6{bottom:641.773800pt;}
.yd3{bottom:641.778800pt;}
.y270{bottom:641.849067pt;}
.y277{bottom:641.855093pt;}
.y100{bottom:642.692267pt;}
.y238{bottom:643.129120pt;}
.y239{bottom:643.132533pt;}
.y215{bottom:643.402667pt;}
.y1e9{bottom:643.470667pt;}
.y1b3{bottom:644.736000pt;}
.y12e{bottom:644.766267pt;}
.y14a{bottom:644.804000pt;}
.y176{bottom:644.804133pt;}
.y63{bottom:655.984320pt;}
.y237{bottom:661.799200pt;}
.ya5{bottom:663.108800pt;}
.y214{bottom:664.737667pt;}
.y1e8{bottom:664.805667pt;}
.y26f{bottom:665.411067pt;}
.y276{bottom:665.417093pt;}
.y1b2{bottom:666.071000pt;}
.y12d{bottom:666.101267pt;}
.y149{bottom:666.139000pt;}
.y175{bottom:666.139133pt;}
.yd2{bottom:668.025600pt;}
.yff{bottom:668.938933pt;}
.y62{bottom:674.654400pt;}
.y236{bottom:680.448800pt;}
.ya4{bottom:684.443800pt;}
.y8{bottom:684.818800pt;}
.y213{bottom:686.072667pt;}
.y1e7{bottom:686.140667pt;}
.y1b1{bottom:687.406000pt;}
.y12c{bottom:687.436267pt;}
.y148{bottom:687.474000pt;}
.y174{bottom:687.474133pt;}
.yd1{bottom:692.025600pt;}
.yfe{bottom:692.938933pt;}
.y61{bottom:693.314240pt;}
.y4e{bottom:693.767600pt;}
.y235{bottom:699.118880pt;}
.y2{bottom:701.664933pt;}
.ya3{bottom:705.778800pt;}
.y212{bottom:707.407667pt;}
.y1e6{bottom:707.475667pt;}
.y1b0{bottom:708.741000pt;}
.y12b{bottom:708.771267pt;}
.y147{bottom:708.809000pt;}
.y173{bottom:708.809133pt;}
.y60{bottom:711.984320pt;}
.y4c{bottom:712.404293pt;}
.y4d{bottom:712.434267pt;}
.y234{bottom:717.788960pt;}
.y211{bottom:728.742667pt;}
.y1e5{bottom:728.810667pt;}
.yd0{bottom:729.187800pt;}
.y1af{bottom:730.076000pt;}
.y12a{bottom:730.106267pt;}
.yfd{bottom:730.144000pt;}
.y172{bottom:730.144133pt;}
.y5f{bottom:730.654400pt;}
.y4b{bottom:731.078453pt;}
.y268{bottom:731.513120pt;}
.ya2{bottom:732.025600pt;}
.y7{bottom:732.818800pt;}
.y233{bottom:736.459040pt;}
.y5e{bottom:749.314240pt;}
.y3{bottom:749.558267pt;}
.y4a{bottom:749.752613pt;}
.y210{bottom:750.077667pt;}
.y1e4{bottom:750.145667pt;}
.y267{bottom:750.183200pt;}
.ycf{bottom:750.522800pt;}
.y1ae{bottom:751.411000pt;}
.y129{bottom:751.441267pt;}
.yfc{bottom:751.479000pt;}
.y171{bottom:751.479133pt;}
.y232{bottom:755.129120pt;}
.ya1{bottom:756.025600pt;}
.y5d{bottom:767.984320pt;}
.y49{bottom:768.426773pt;}
.y266{bottom:768.853280pt;}
.y20f{bottom:771.412667pt;}
.y1e3{bottom:771.480667pt;}
.yce{bottom:771.857800pt;}
.y1ad{bottom:772.746000pt;}
.y128{bottom:772.776267pt;}
.yfb{bottom:772.814000pt;}
.y170{bottom:772.814133pt;}
.y231{bottom:773.799200pt;}
.y6{bottom:780.818800pt;}
.y5c{bottom:786.654400pt;}
.y47{bottom:787.003520pt;}
.y48{bottom:787.100933pt;}
.y265{bottom:787.523360pt;}
.y230{bottom:792.462453pt;}
.y20e{bottom:792.747667pt;}
.y1e2{bottom:792.815667pt;}
.ycd{bottom:793.192800pt;}
.ya0{bottom:793.235533pt;}
.y1ac{bottom:794.081000pt;}
.y127{bottom:794.111267pt;}
.yfa{bottom:794.149000pt;}
.y16f{bottom:794.149133pt;}
.y5b{bottom:805.310827pt;}
.y46{bottom:805.677680pt;}
.y264{bottom:806.193440pt;}
.y22f{bottom:811.132533pt;}
.y20d{bottom:814.082667pt;}
.y1e1{bottom:814.150667pt;}
.ycc{bottom:814.527800pt;}
.y9f{bottom:814.570533pt;}
.y1ab{bottom:815.416000pt;}
.y126{bottom:815.446267pt;}
.yf9{bottom:815.484000pt;}
.y16e{bottom:815.484133pt;}
.y5a{bottom:823.980907pt;}
.y45{bottom:824.351840pt;}
.y263{bottom:824.863520pt;}
.y5{bottom:828.818800pt;}
.y22e{bottom:835.132533pt;}
.y20c{bottom:835.417667pt;}
.y1e0{bottom:835.485667pt;}
.ycb{bottom:835.862800pt;}
.y9e{bottom:835.905533pt;}
.y1aa{bottom:836.751000pt;}
.y125{bottom:836.781267pt;}
.yf8{bottom:836.819000pt;}
.y16d{bottom:836.819133pt;}
.y59{bottom:842.650987pt;}
.y44{bottom:843.026000pt;}
.y262{bottom:843.533600pt;}
.y20b{bottom:856.752667pt;}
.y1df{bottom:856.820667pt;}
.yca{bottom:857.197800pt;}
.y9d{bottom:857.240533pt;}
.y1a9{bottom:858.086000pt;}
.y124{bottom:858.116267pt;}
.yf7{bottom:858.154000pt;}
.y16c{bottom:858.154133pt;}
.y58{bottom:861.321067pt;}
.y43{bottom:861.700160pt;}
.y261{bottom:862.203680pt;}
.y4{bottom:876.818800pt;}
.y20a{bottom:878.087667pt;}
.y1de{bottom:878.155667pt;}
.yc9{bottom:878.532800pt;}
.y9c{bottom:878.575533pt;}
.y1a8{bottom:879.421000pt;}
.y123{bottom:879.451267pt;}
.yf6{bottom:879.489000pt;}
.y16b{bottom:879.489133pt;}
.y57{bottom:879.987733pt;}
.y42{bottom:880.374320pt;}
.y260{bottom:880.873760pt;}
.y56{bottom:898.650987pt;}
.y41{bottom:899.048480pt;}
.y209{bottom:899.422667pt;}
.y1dd{bottom:899.490667pt;}
.y25f{bottom:899.543840pt;}
.yc8{bottom:899.867800pt;}
.y9b{bottom:899.910533pt;}
.y1a7{bottom:900.756000pt;}
.y122{bottom:900.786267pt;}
.yf5{bottom:900.824000pt;}
.y16a{bottom:900.824133pt;}
.y55{bottom:917.321067pt;}
.y40{bottom:917.722640pt;}
.y25e{bottom:918.213920pt;}
.y208{bottom:920.757667pt;}
.y1dc{bottom:920.825667pt;}
.yc7{bottom:921.202800pt;}
.y9a{bottom:921.245533pt;}
.y1a6{bottom:922.091000pt;}
.y121{bottom:922.121267pt;}
.yf4{bottom:922.159000pt;}
.y169{bottom:922.159133pt;}
.y54{bottom:935.987733pt;}
.y3f{bottom:936.396800pt;}
.y25d{bottom:936.884000pt;}
.y207{bottom:942.092667pt;}
.y1db{bottom:942.160667pt;}
.yc6{bottom:942.537800pt;}
.y99{bottom:942.580533pt;}
.y1a5{bottom:943.426000pt;}
.y120{bottom:943.456267pt;}
.yf3{bottom:943.494000pt;}
.y168{bottom:943.494133pt;}
.y53{bottom:954.644160pt;}
.y3e{bottom:955.070960pt;}
.y25c{bottom:955.554080pt;}
.y206{bottom:963.427667pt;}
.y1da{bottom:963.495667pt;}
.yc5{bottom:963.872800pt;}
.y98{bottom:963.915533pt;}
.y1a4{bottom:964.761000pt;}
.y11f{bottom:964.791267pt;}
.yf2{bottom:964.829000pt;}
.y167{bottom:964.829133pt;}
.y10{bottom:972.203733pt;}
.yf{bottom:972.206053pt;}
.y52{bottom:973.314240pt;}
.y3d{bottom:973.745120pt;}
.y25b{bottom:974.224160pt;}
.y205{bottom:984.762667pt;}
.y1d9{bottom:984.830667pt;}
.yc4{bottom:985.207800pt;}
.y97{bottom:985.250533pt;}
.y1a3{bottom:986.096000pt;}
.y11e{bottom:986.126267pt;}
.yf1{bottom:986.164000pt;}
.y166{bottom:986.164133pt;}
.ye{bottom:988.203733pt;}
.y51{bottom:991.984320pt;}
.y3c{bottom:992.419280pt;}
.y25a{bottom:992.894240pt;}
.y204{bottom:1006.097667pt;}
.y1d8{bottom:1006.165667pt;}
.yc3{bottom:1006.542800pt;}
.y96{bottom:1006.585533pt;}
.y1a2{bottom:1007.431000pt;}
.y11d{bottom:1007.461267pt;}
.yf0{bottom:1007.499000pt;}
.y165{bottom:1007.499133pt;}
.y50{bottom:1010.654400pt;}
.y3b{bottom:1011.093440pt;}
.y259{bottom:1011.564320pt;}
.y203{bottom:1027.432667pt;}
.y1d7{bottom:1027.500667pt;}
.yc2{bottom:1027.877800pt;}
.y95{bottom:1027.920533pt;}
.y1a1{bottom:1028.766000pt;}
.y11c{bottom:1028.796267pt;}
.yef{bottom:1028.834000pt;}
.y164{bottom:1028.834133pt;}
.yd{bottom:1029.320933pt;}
.y4f{bottom:1029.321067pt;}
.y3a{bottom:1029.767600pt;}
.y258{bottom:1030.234400pt;}
.y1{bottom:1071.727067pt;}
.h14{height:28.207292pt;}
.h1b{height:40.878906pt;}
.h18{height:44.880000pt;}
.h3{height:45.347840pt;}
.h15{height:45.807292pt;}
.hd{height:46.920000pt;}
.h8{height:48.568320pt;}
.h9{height:48.960000pt;}
.he{height:50.232000pt;}
.h7{height:50.232960pt;}
.h1a{height:51.016320pt;}
.h6{height:51.395781pt;}
.hf{height:51.409435pt;}
.hb{height:51.423088pt;}
.ha{height:51.436741pt;}
.h17{height:51.464048pt;}
.h19{height:51.590875pt;}
.hc{height:53.731953pt;}
.h12{height:58.404297pt;}
.h13{height:58.572564pt;}
.h16{height:70.720000pt;}
.h2{height:70.856000pt;}
.h10{height:81.600000pt;}
.h5{height:144.490667pt;}
.h4{height:166.720000pt;}
.h11{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;}
.x19{left:98.028267pt;}
.xd{left:102.047200pt;}
.x11{left:103.102400pt;}
.xa{left:109.511733pt;}
.xb{left:111.363467pt;}
.x21{left:113.385867pt;}
.x17{left:122.047200pt;}
.x12{left:123.107733pt;}
.x6{left:124.326400pt;}
.x25{left:131.380533pt;}
.x1a{left:135.411467pt;}
.x20{left:140.200267pt;}
.x1c{left:156.337867pt;}
.x8{left:177.182533pt;}
.x1d{left:187.086867pt;}
.x7{left:198.395600pt;}
.xc{left:200.675893pt;}
.x5{left:211.093200pt;}
.x18{left:212.708533pt;}
.x29{left:218.153200pt;}
.x4{left:248.057333pt;}
.x2a{left:262.325200pt;}
.x9{left:264.716800pt;}
.x2b{left:268.733200pt;}
.xf{left:270.396267pt;}
.x27{left:291.041867pt;}
.x28{left:298.829200pt;}
.x2d{left:301.397200pt;}
.x24{left:306.262933pt;}
.xe{left:308.088267pt;}
.x2e{left:329.944133pt;}
.x2f{left:333.624133pt;}
.x2c{left:356.465200pt;}
.x26{left:376.892933pt;}
.x10{left:430.194267pt;}
.x1b{left:441.532800pt;}
.x13{left:450.188933pt;}
.x22{left:451.594267pt;}
.x1e{left:471.240800pt;}
.x1f{left:515.240000pt;}
.x23{left:527.422400pt;}
.x14{left:532.775733pt;}
.x15{left:538.187867pt;}
.x16{left:737.007867pt;}
}




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