
    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_a2a52464130b39cff605b766.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_7b261697a053c302f5930c7e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_87655e49fa68a826a7299941.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.909000;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_4fba1c53f4c3a4506bcce1bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_a0d0af732ef25bd77175d6c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_a65da693267807b423696219.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_91b25e38f44421cdf5221133.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914000;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_547b00674dcdcbdc96207d72.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908000;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_a2ef2da41b3b5a38aab9e20b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_9dd28bc0f742633a1a4e4770.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.839000;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_2ce1f7d71a7d4e38080b7b0c.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.999000;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_485c2067476f61bb4ccaf5cb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_cce9700eb9697ca84c05e29e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.738000;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_9b8f42d23bf5e27846a92451.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.687000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9e8e7b8986f75df0aedf1eed.woff2')format("woff");}.fff{font-family:fff;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_88968add6192abf189c7d3b1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v19{vertical-align:-172.278000px;}
.v27{vertical-align:-101.142000px;}
.v1e{vertical-align:-79.626000px;}
.vf{vertical-align:-58.098000px;}
.v3{vertical-align:-52.614000px;}
.v16{vertical-align:-18.930000px;}
.v2a{vertical-align:-16.056000px;}
.v1b{vertical-align:-12.288000px;}
.v29{vertical-align:-11.160000px;}
.v20{vertical-align:-4.302000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:5.796000px;}
.va{vertical-align:20.922000px;}
.v18{vertical-align:24.732000px;}
.v7{vertical-align:26.028000px;}
.v1{vertical-align:29.616000px;}
.vc{vertical-align:32.070000px;}
.v9{vertical-align:34.866000px;}
.vb{vertical-align:46.950000px;}
.v5{vertical-align:49.206000px;}
.v17{vertical-align:50.766000px;}
.v15{vertical-align:52.752000px;}
.v8{vertical-align:53.796000px;}
.v14{vertical-align:55.794000px;}
.v1a{vertical-align:58.104000px;}
.v1f{vertical-align:59.604000px;}
.v28{vertical-align:68.148000px;}
.v13{vertical-align:74.724000px;}
.v6{vertical-align:78.822000px;}
.ve{vertical-align:82.836000px;}
.v21{vertical-align:84.618000px;}
.v24{vertical-align:89.664000px;}
.v11{vertical-align:97.728000px;}
.v10{vertical-align:101.142000px;}
.v22{vertical-align:114.234000px;}
.v1c{vertical-align:122.658000px;}
.v25{vertical-align:133.140000px;}
.v23{vertical-align:138.870000px;}
.v4{vertical-align:150.348000px;}
.v1d{vertical-align:171.870000px;}
.v2{vertical-align:184.164000px;}
.v12{vertical-align:185.760000px;}
.v26{vertical-align:205.686000px;}
.ls11{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.000102px;}
.ls2b{letter-spacing:0.000273px;}
.ls97{letter-spacing:0.000278px;}
.ls4f{letter-spacing:0.000545px;}
.ls9b{letter-spacing:0.000760px;}
.ls8{letter-spacing:0.001114px;}
.ls0{letter-spacing:0.001695px;}
.lsb0{letter-spacing:0.003055px;}
.ls3e{letter-spacing:0.003191px;}
.ls78{letter-spacing:0.003600px;}
.ls41{letter-spacing:0.003848px;}
.ls51{letter-spacing:0.004527px;}
.lsf{letter-spacing:0.004664px;}
.lsab{letter-spacing:0.005053px;}
.ls15{letter-spacing:0.005591px;}
.ls83{letter-spacing:0.007665px;}
.ls80{letter-spacing:0.008486px;}
.ls92{letter-spacing:0.010932px;}
.ls8d{letter-spacing:0.013665px;}
.ls95{letter-spacing:0.023186px;}
.ls99{letter-spacing:1.006664px;}
.lsbf{letter-spacing:1.243336px;}
.ls13{letter-spacing:1.291156px;}
.ls9{letter-spacing:1.386797px;}
.ls71{letter-spacing:1.434618px;}
.ls82{letter-spacing:1.936742px;}
.ls79{letter-spacing:2.367130px;}
.ls77{letter-spacing:2.379178px;}
.ls5d{letter-spacing:2.401300px;}
.ls5b{letter-spacing:2.407300px;}
.ls19{letter-spacing:2.438861px;}
.lsa4{letter-spacing:2.688179px;}
.lsd{letter-spacing:2.773595px;}
.ls8c{letter-spacing:2.825644px;}
.ls7c{letter-spacing:2.968660px;}
.ls60{letter-spacing:2.974660px;}
.ls72{letter-spacing:2.974689px;}
.ls5a{letter-spacing:2.984915px;}
.ls8e{letter-spacing:2.986200px;}
.ls44{letter-spacing:2.987236px;}
.ls94{letter-spacing:2.989115px;}
.ls63{letter-spacing:2.990915px;}
.ls59{letter-spacing:2.992200px;}
.ls73{letter-spacing:3.280664px;}
.ls1d{letter-spacing:3.400404px;}
.ls1b{letter-spacing:3.406404px;}
.ls17{letter-spacing:4.016947px;}
.lsaa{letter-spacing:4.050837px;}
.lsa5{letter-spacing:4.262559px;}
.ls12{letter-spacing:4.265644px;}
.ls25{letter-spacing:4.876664px;}
.ls16{letter-spacing:4.963488px;}
.ls3f{letter-spacing:4.969488px;}
.ls84{letter-spacing:5.260266px;}
.ls14{letter-spacing:5.727032px;}
.ls10{letter-spacing:5.743488px;}
.ls2e{letter-spacing:5.749488px;}
.ls32{letter-spacing:6.671518px;}
.ls31{letter-spacing:6.683591px;}
.ls76{letter-spacing:6.784664px;}
.ls7e{letter-spacing:6.790664px;}
.ls3d{letter-spacing:6.959691px;}
.lsa6{letter-spacing:7.139553px;}
.lsc{letter-spacing:7.675238px;}
.lsa3{letter-spacing:9.575704px;}
.ls9f{letter-spacing:9.755443px;}
.ls38{letter-spacing:11.907379px;}
.lsaf{letter-spacing:11.942916px;}
.ls8f{letter-spacing:11.968932px;}
.ls3b{letter-spacing:11.973857px;}
.ls37{letter-spacing:11.979110px;}
.ls43{letter-spacing:13.573488px;}
.lsc4{letter-spacing:14.928780px;}
.ls7{letter-spacing:14.936915px;}
.ls1{letter-spacing:14.942915px;}
.ls2a{letter-spacing:14.944200px;}
.ls4a{letter-spacing:14.950200px;}
.ls62{letter-spacing:14.970020px;}
.ls6{letter-spacing:15.924326px;}
.ls27{letter-spacing:15.935518px;}
.ls64{letter-spacing:15.936409px;}
.ls49{letter-spacing:15.937473px;}
.ls1c{letter-spacing:15.940664px;}
.ls47{letter-spacing:15.941518px;}
.ls6e{letter-spacing:15.942409px;}
.ls48{letter-spacing:15.943473px;}
.ls56{letter-spacing:15.946664px;}
.ls50{letter-spacing:15.948305px;}
.ls57{letter-spacing:15.950260px;}
.ls55{letter-spacing:15.954305px;}
.ls54{letter-spacing:15.956260px;}
.ls28{letter-spacing:15.996058px;}
.lsb{letter-spacing:16.352022px;}
.lsa{letter-spacing:16.358022px;}
.ls90{letter-spacing:16.915009px;}
.ls3c{letter-spacing:17.861069px;}
.ls4b{letter-spacing:18.363187px;}
.ls33{letter-spacing:18.881591px;}
.ls4d{letter-spacing:18.926915px;}
.ls5{letter-spacing:18.928200px;}
.ls4{letter-spacing:18.934200px;}
.ls39{letter-spacing:19.869542px;}
.lsc9{letter-spacing:19.905275px;}
.ls4e{letter-spacing:19.919518px;}
.ls24{letter-spacing:19.924664px;}
.ls69{letter-spacing:19.925518px;}
.ls52{letter-spacing:19.925591px;}
.lsbb{letter-spacing:19.930664px;}
.ls30{letter-spacing:19.931591px;}
.ls3{letter-spacing:19.941274px;}
.ls26{letter-spacing:20.013005px;}
.ls81{letter-spacing:20.914200px;}
.lsc6{letter-spacing:20.940780px;}
.lsb5{letter-spacing:20.946780px;}
.ls96{letter-spacing:22.342059px;}
.lsb4{letter-spacing:22.715591px;}
.ls9e{letter-spacing:22.909087px;}
.ls1a{letter-spacing:22.910915px;}
.lsa7{letter-spacing:22.912059px;}
.ls20{letter-spacing:22.912200px;}
.ls35{letter-spacing:22.916915px;}
.ls2{letter-spacing:22.918200px;}
.lsae{letter-spacing:23.025715px;}
.lsb1{letter-spacing:23.130305px;}
.ls87{letter-spacing:23.384371px;}
.ls53{letter-spacing:23.411591px;}
.lsc5{letter-spacing:23.417591px;}
.ls86{letter-spacing:23.453591px;}
.ls3a{letter-spacing:24.185644px;}
.lsb2{letter-spacing:24.272915px;}
.lsb6{letter-spacing:24.316877px;}
.lsbe{letter-spacing:24.727488px;}
.lsa9{letter-spacing:25.018404px;}
.ls18{letter-spacing:25.105920px;}
.ls8b{letter-spacing:25.823232px;}
.lsad{letter-spacing:25.996770px;}
.ls5e{letter-spacing:26.402915px;}
.lsc8{letter-spacing:26.540366px;}
.lsa2{letter-spacing:26.638664px;}
.ls66{letter-spacing:27.042662px;}
.lsb7{letter-spacing:28.067691px;}
.lsac{letter-spacing:28.204770px;}
.ls29{letter-spacing:28.477286px;}
.ls1f{letter-spacing:28.764211px;}
.ls7b{letter-spacing:29.122867px;}
.ls34{letter-spacing:29.194598px;}
.ls7a{letter-spacing:29.624986px;}
.ls23{letter-spacing:29.911910px;}
.lsc7{letter-spacing:31.203072px;}
.ls70{letter-spacing:31.561728px;}
.ls8a{letter-spacing:31.705190px;}
.ls75{letter-spacing:31.776922px;}
.ls4c{letter-spacing:31.848653px;}
.ls5f{letter-spacing:33.139814px;}
.ls58{letter-spacing:33.641933px;}
.lsbc{letter-spacing:34.853691px;}
.ls45{letter-spacing:35.148288px;}
.ls68{letter-spacing:36.379488px;}
.ls6b{letter-spacing:36.726374px;}
.ls85{letter-spacing:37.421644px;}
.lsa8{letter-spacing:38.759518px;}
.ls40{letter-spacing:39.068022px;}
.ls7d{letter-spacing:41.289191px;}
.ls91{letter-spacing:47.935300px;}
.ls5c{letter-spacing:48.346664px;}
.lsa0{letter-spacing:48.625955px;}
.lsa1{letter-spacing:48.631955px;}
.ls88{letter-spacing:51.173644px;}
.ls89{letter-spacing:52.351300px;}
.ls9c{letter-spacing:53.000227px;}
.ls2f{letter-spacing:53.659488px;}
.lsb3{letter-spacing:53.665488px;}
.ls2d{letter-spacing:57.485518px;}
.ls61{letter-spacing:57.507448px;}
.ls6c{letter-spacing:57.513448px;}
.ls21{letter-spacing:60.415300px;}
.ls2c{letter-spacing:60.478200px;}
.ls98{letter-spacing:60.560227px;}
.ls6f{letter-spacing:62.852899px;}
.ls65{letter-spacing:62.858899px;}
.ls74{letter-spacing:64.216163px;}
.ls36{letter-spacing:64.216404px;}
.ls46{letter-spacing:64.792404px;}
.ls1e{letter-spacing:64.798404px;}
.lsc3{letter-spacing:66.755691px;}
.lsc0{letter-spacing:68.845488px;}
.ls7f{letter-spacing:69.050022px;}
.lse{letter-spacing:69.713691px;}
.lsb8{letter-spacing:88.877691px;}
.ls9a{letter-spacing:89.359114px;}
.ls22{letter-spacing:90.785691px;}
.lsc1{letter-spacing:96.245691px;}
.lsbd{letter-spacing:96.251691px;}
.ls93{letter-spacing:112.411300px;}
.lsc2{letter-spacing:122.975691px;}
.ls9d{letter-spacing:124.603114px;}
.ls6d{letter-spacing:125.584938px;}
.ls67{letter-spacing:127.555021px;}
.lsba{letter-spacing:145.391691px;}
.lsb9{letter-spacing:145.397691px;}
.ls6a{letter-spacing:1105.951642px;}
.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;}
}
.ws89{word-spacing:-83.710310px;}
.ws12{word-spacing:-59.823821px;}
.ws86{word-spacing:-57.643192px;}
.ws16{word-spacing:-56.789591px;}
.wse{word-spacing:-45.664082px;}
.ws26{word-spacing:-33.756703px;}
.ws24{word-spacing:-33.684972px;}
.ws88{word-spacing:-25.794540px;}
.ws10{word-spacing:-19.510886px;}
.ws6{word-spacing:-16.605662px;}
.ws17{word-spacing:-15.278643px;}
.ws68{word-spacing:-8.241327px;}
.ws64{word-spacing:-8.235327px;}
.ws52{word-spacing:-7.579428px;}
.ws42{word-spacing:-7.577833px;}
.ws40{word-spacing:-7.576237px;}
.ws51{word-spacing:-7.550886px;}
.ws50{word-spacing:-7.549290px;}
.ws43{word-spacing:-7.544886px;}
.ws41{word-spacing:-7.543290px;}
.ws11{word-spacing:-3.586560px;}
.ws27{word-spacing:-3.514829px;}
.wsa{word-spacing:-3.012710px;}
.ws5b{word-spacing:-2.582323px;}
.ws96{word-spacing:-2.080191px;}
.ws91{word-spacing:-1.841088px;}
.ws74{word-spacing:-1.578086px;}
.ws8b{word-spacing:-1.183557px;}
.wsc{word-spacing:-1.075968px;}
.ws98{word-spacing:-1.004230px;}
.ws32{word-spacing:-0.645581px;}
.ws6d{word-spacing:-0.358656px;}
.ws8d{word-spacing:-0.286923px;}
.ws77{word-spacing:-0.215194px;}
.ws78{word-spacing:-0.143462px;}
.wsa0{word-spacing:-0.071731px;}
.ws95{word-spacing:-0.059776px;}
.ws20{word-spacing:-0.047821px;}
.ws1d{word-spacing:0.000000px;}
.ws35{word-spacing:0.358656px;}
.ws1f{word-spacing:0.382921px;}
.ws4d{word-spacing:0.405218px;}
.wsf{word-spacing:0.430387px;}
.ws9d{word-spacing:0.669487px;}
.ws69{word-spacing:1.004237px;}
.ws97{word-spacing:1.099871px;}
.ws92{word-spacing:1.338973px;}
.ws82{word-spacing:1.793280px;}
.ws7b{word-spacing:1.865011px;}
.ws8c{word-spacing:1.936729px;}
.ws29{word-spacing:2.080205px;}
.ws75{word-spacing:2.151936px;}
.ws99{word-spacing:2.223652px;}
.ws73{word-spacing:2.295398px;}
.ws9b{word-spacing:2.402979px;}
.ws22{word-spacing:2.438861px;}
.ws3{word-spacing:2.462755px;}
.ws94{word-spacing:2.522530px;}
.ws48{word-spacing:2.582323px;}
.ws90{word-spacing:2.701857px;}
.ws37{word-spacing:2.940979px;}
.ws36{word-spacing:3.012710px;}
.ws83{word-spacing:3.227904px;}
.ws1{word-spacing:3.299613px;}
.ws6e{word-spacing:3.371366px;}
.ws66{word-spacing:3.443098px;}
.ws80{word-spacing:3.586560px;}
.ws5{word-spacing:3.598491px;}
.ws9e{word-spacing:3.670222px;}
.ws4{word-spacing:3.837594px;}
.ws8a{word-spacing:3.863351px;}
.wsb{word-spacing:3.873485px;}
.ws56{word-spacing:3.891972px;}
.ws76{word-spacing:3.945216px;}
.ws9{word-spacing:4.232141px;}
.ws7a{word-spacing:4.519066px;}
.ws87{word-spacing:4.734259px;}
.ws18{word-spacing:4.794003px;}
.ws85{word-spacing:4.805990px;}
.ws6f{word-spacing:4.877722px;}
.ws81{word-spacing:4.949453px;}
.ws7c{word-spacing:5.236378px;}
.ws9c{word-spacing:5.284163px;}
.ws39{word-spacing:5.379840px;}
.ws93{word-spacing:5.403714px;}
.ws2a{word-spacing:5.451571px;}
.ws79{word-spacing:5.666765px;}
.ws7e{word-spacing:5.738496px;}
.ws23{word-spacing:5.881958px;}
.ws19{word-spacing:6.121021px;}
.ws9a{word-spacing:6.288393px;}
.ws6c{word-spacing:6.312346px;}
.ws67{word-spacing:6.742733px;}
.wsd{word-spacing:7.173120px;}
.ws62{word-spacing:7.603507px;}
.ws4a{word-spacing:7.746970px;}
.ws72{word-spacing:8.249088px;}
.ws1c{word-spacing:8.260988px;}
.ws8e{word-spacing:8.320764px;}
.ws7d{word-spacing:8.392550px;}
.ws34{word-spacing:9.325056px;}
.ws1b{word-spacing:9.934705px;}
.ws60{word-spacing:10.185830px;}
.ws59{word-spacing:10.257562px;}
.ws63{word-spacing:10.616218px;}
.ws8f{word-spacing:10.663967px;}
.ws4b{word-spacing:10.759680px;}
.ws3e{word-spacing:10.831411px;}
.ws54{word-spacing:11.190067px;}
.ws57{word-spacing:11.692186px;}
.ws70{word-spacing:11.763917px;}
.ws2b{word-spacing:11.979110px;}
.ws1a{word-spacing:12.158357px;}
.ws44{word-spacing:12.696422px;}
.ws45{word-spacing:12.768154px;}
.ws3f{word-spacing:12.839885px;}
.ws5a{word-spacing:13.055078px;}
.ws55{word-spacing:13.844122px;}
.ws4e{word-spacing:14.872639px;}
.ws2d{word-spacing:14.874044px;}
.ws2e{word-spacing:14.878639px;}
.ws13{word-spacing:14.917376px;}
.ws3d{word-spacing:15.135283px;}
.ws3c{word-spacing:15.146959px;}
.ws7{word-spacing:15.637402px;}
.ws3b{word-spacing:16.282982px;}
.ws5d{word-spacing:17.287219px;}
.ws84{word-spacing:17.362639px;}
.ws25{word-spacing:17.368639px;}
.ws7f{word-spacing:19.302044px;}
.ws5e{word-spacing:19.510886px;}
.ws15{word-spacing:19.578044px;}
.wsa2{word-spacing:22.535401px;}
.ws38{word-spacing:23.312640px;}
.ws1e{word-spacing:23.886490px;}
.ws28{word-spacing:24.675533px;}
.ws3a{word-spacing:24.890726px;}
.ws21{word-spacing:25.177651px;}
.ws6b{word-spacing:25.751501px;}
.ws2c{word-spacing:25.966694px;}
.ws65{word-spacing:26.325350px;}
.ws14{word-spacing:26.827469px;}
.ws71{word-spacing:26.970931px;}
.ws8{word-spacing:27.042662px;}
.ws30{word-spacing:28.866044px;}
.ws2{word-spacing:29.828024px;}
.ws5f{word-spacing:30.557491px;}
.ws4c{word-spacing:31.080044px;}
.ws61{word-spacing:31.131341px;}
.ws9f{word-spacing:31.203072px;}
.ws49{word-spacing:31.274803px;}
.ws2f{word-spacing:31.489997px;}
.ws46{word-spacing:32.207309px;}
.ws31{word-spacing:32.628044px;}
.ws58{word-spacing:34.144051px;}
.ws0{word-spacing:34.861363px;}
.ws53{word-spacing:35.148288px;}
.wsa1{word-spacing:36.869837px;}
.ws47{word-spacing:38.232730px;}
.ws5c{word-spacing:42.249677px;}
.ws33{word-spacing:50.713958px;}
.ws4f{word-spacing:329.389670px;}
.ws6a{word-spacing:1664.737690px;}
._1f{margin-left:-27.951259px;}
._1d{margin-left:-12.122573px;}
._9{margin-left:-7.675238px;}
._0{margin-left:-6.671002px;}
._5{margin-left:-4.961375px;}
._7{margin-left:-3.574638px;}
._1{margin-left:-2.223667px;}
._2{margin-left:-1.063991px;}
._3{width:2.223667px;}
._a{width:4.483170px;}
._1c{width:7.168788px;}
._16{width:11.679110px;}
._8{width:16.040538px;}
._1b{width:18.255635px;}
._11{width:20.359684px;}
._c{width:23.240738px;}
._e{width:24.950480px;}
._b{width:27.544654px;}
._4{width:28.764034px;}
._6{width:30.414029px;}
._12{width:31.561728px;}
._13{width:35.004826px;}
._14{width:36.941568px;}
._1a{width:39.634788px;}
._17{width:44.186419px;}
._10{width:56.490282px;}
._18{width:59.412282px;}
._f{width:60.906282px;}
._15{width:65.028282px;}
._1e{width:441.648943px;}
._d{width:469.301321px;}
._19{width:676.353485px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y1c{bottom:90.067500px;}
.yec{bottom:105.742500px;}
.ye9{bottom:106.140000px;}
.yea{bottom:106.273500px;}
.y1b{bottom:112.576500px;}
.y4c{bottom:112.735500px;}
.yeb{bottom:114.595500px;}
.yc5{bottom:117.030000px;}
.y4b{bottom:125.037000px;}
.ye6{bottom:126.895500px;}
.y10c{bottom:133.119000px;}
.y1a{bottom:143.062500px;}
.ye8{bottom:143.932500px;}
.ye7{bottom:149.311500px;}
.yc4{bottom:164.196000px;}
.yc3{bottom:165.150000px;}
.y10b{bottom:168.685500px;}
.yc2{bottom:170.380500px;}
.y4a{bottom:173.052000px;}
.y19{bottom:173.547000px;}
.y135{bottom:178.573500px;}
.ye5{bottom:180.082500px;}
.y97{bottom:180.886500px;}
.y136{bottom:187.426500px;}
.y18{bottom:194.857500px;}
.y10a{bottom:204.399000px;}
.yc1{bottom:206.094000px;}
.y49{bottom:208.618500px;}
.y6d{bottom:215.326500px;}
.y96{bottom:216.453000px;}
.y134{bottom:216.765000px;}
.yc0{bottom:218.394000px;}
.y133{bottom:222.144000px;}
.y17{bottom:225.343500px;}
.y162{bottom:227.737500px;}
.ye4{bottom:228.096000px;}
.y109{bottom:228.832500px;}
.y132{bottom:247.909500px;}
.y131{bottom:248.862000px;}
.y48{bottom:250.828500px;}
.y6c{bottom:250.893000px;}
.y47{bottom:251.781000px;}
.y95{bottom:252.166500px;}
.y130{bottom:254.092500px;}
.y160{bottom:255.927000px;}
.ye3{bottom:263.662500px;}
.y94{bottom:264.468000px;}
.y108{bottom:264.715500px;}
.y161{bottom:264.780000px;}
.y15{bottom:265.536000px;}
.ybf{bottom:266.409000px;}
.y46{bottom:270.462000px;}
.y16{bottom:273.990000px;}
.y12{bottom:286.291500px;}
.y45{bottom:286.395000px;}
.y6b{bottom:286.608000px;}
.y44{bottom:287.347500px;}
.y43{bottom:292.578000px;}
.y15f{bottom:294.117000px;}
.y6a{bottom:298.908000px;}
.y15e{bottom:299.497500px;}
.y12f{bottom:300.120000px;}
.y107{bottom:300.282000px;}
.y14{bottom:303.327000px;}
.y93{bottom:305.592000px;}
.y13{bottom:308.707500px;}
.ye2{bottom:316.273500px;}
.y92{bottom:317.892000px;}
.ybe{bottom:319.759500px;}
.y15d{bottom:322.705500px;}
.y15c{bottom:323.658000px;}
.y41{bottom:326.898000px;}
.y15b{bottom:328.888500px;}
.y105{bottom:329.467500px;}
.y11{bottom:334.306500px;}
.y42{bottom:335.353500px;}
.y106{bottom:338.320500px;}
.y69{bottom:340.032000px;}
.y3e{bottom:347.653500px;}
.y12e{bottom:350.332500px;}
.y104{bottom:350.622000px;}
.y68{bottom:352.333500px;}
.y91{bottom:359.016000px;}
.y159{bottom:360.883500px;}
.y40{bottom:364.690500px;}
.ye1{bottom:368.884500px;}
.y15a{bottom:369.738000px;}
.y3f{bottom:370.069500px;}
.y90{bottom:371.317500px;}
.ybd{bottom:373.108500px;}
.y12d{bottom:385.899000px;}
.y10{bottom:387.655500px;}
.y67{bottom:393.457500px;}
.y3d{bottom:395.668500px;}
.y103{bottom:398.635500px;}
.y158{bottom:399.075000px;}
.ye0{bottom:404.451000px;}
.y157{bottom:404.454000px;}
.y66{bottom:405.759000px;}
.ybc{bottom:408.675000px;}
.y8f{bottom:412.441500px;}
.y12c{bottom:421.465500px;}
.y8e{bottom:424.743000px;}
.y100{bottom:428.841000px;}
.y101{bottom:429.150000px;}
.y156{bottom:430.053000px;}
.y3c{bottom:431.235000px;}
.yde{bottom:435.562500px;}
.yf{bottom:435.670500px;}
.ydd{bottom:435.961500px;}
.y102{bottom:437.694000px;}
.yb9{bottom:440.185500px;}
.yba{bottom:440.319000px;}
.ydf{bottom:444.415500px;}
.y65{bottom:446.883000px;}
.ybb{bottom:448.639500px;}
.yff{bottom:449.995500px;}
.yda{bottom:456.717000px;}
.y12b{bottom:457.032000px;}
.y154{bottom:458.242500px;}
.y64{bottom:459.183000px;}
.yb6{bottom:460.941000px;}
.y8d{bottom:465.867000px;}
.y155{bottom:467.095500px;}
.ydc{bottom:473.752500px;}
.y175{bottom:475.368000px;}
.yb8{bottom:477.978000px;}
.y8c{bottom:478.167000px;}
.ydb{bottom:479.133000px;}
.y3b{bottom:479.629500px;}
.ye{bottom:480.129000px;}
.yb7{bottom:483.357000px;}
.yfe{bottom:491.826000px;}
.y12a{bottom:492.598500px;}
.y153{bottom:496.432500px;}
.yfd{bottom:498.010500px;}
.y63{bottom:500.307000px;}
.y152{bottom:501.813000px;}
.yd9{bottom:504.732000px;}
.y174{bottom:505.854000px;}
.y39{bottom:508.197000px;}
.yb5{bottom:509.754000px;}
.y62{bottom:512.608500px;}
.y3a{bottom:517.050000px;}
.y8b{bottom:519.291000px;}
.y129{bottom:521.980500px;}
.y128{bottom:522.934500px;}
.yd{bottom:524.587500px;}
.y151{bottom:527.226000px;}
.y127{bottom:528.165000px;}
.y150{bottom:528.180000px;}
.y8a{bottom:531.592500px;}
.y14f{bottom:533.410500px;}
.yfc{bottom:533.577000px;}
.y173{bottom:536.340000px;}
.yd8{bottom:540.298500px;}
.yb4{bottom:545.320500px;}
.y38{bottom:546.387000px;}
.y37{bottom:551.767500px;}
.y61{bottom:560.623500px;}
.yfa{bottom:561.766500px;}
.y14e{bottom:562.792500px;}
.y14d{bottom:563.746500px;}
.y126{bottom:566.256000px;}
.y172{bottom:566.824500px;}
.y14c{bottom:568.977000px;}
.yfb{bottom:570.619500px;}
.yc{bottom:572.602500px;}
.y36{bottom:577.366500px;}
.y89{bottom:579.607500px;}
.yf9{bottom:582.919500px;}
.y123{bottom:587.409000px;}
.yd7{bottom:592.909500px;}
.y60{bottom:596.190000px;}
.y171{bottom:597.310500px;}
.yb3{bottom:598.669500px;}
.y14b{bottom:600.972000px;}
.y125{bottom:604.446000px;}
.yb{bottom:608.169000px;}
.y33{bottom:608.856000px;}
.y34{bottom:609.255000px;}
.y124{bottom:609.825000px;}
.y35{bottom:617.709000px;}
.y5f{bottom:625.572000px;}
.yd5{bottom:625.695000px;}
.y88{bottom:626.773500px;}
.y170{bottom:627.796500px;}
.yb1{bottom:627.855000px;}
.y30{bottom:630.010500px;}
.yf8{bottom:630.934500px;}
.y5e{bottom:631.756500px;}
.y87{bottom:632.956500px;}
.yd6{bottom:634.548000px;}
.y122{bottom:635.424000px;}
.yb2{bottom:636.708000px;}
.y14a{bottom:639.162000px;}
.ya{bottom:643.735500px;}
.y149{bottom:644.542500px;}
.yd2{bottom:646.848000px;}
.y32{bottom:647.046000px;}
.y31{bottom:652.426500px;}
.y16f{bottom:658.282500px;}
.y86{bottom:662.340000px;}
.y85{bottom:663.292500px;}
.yd4{bottom:663.885000px;}
.yb0{bottom:666.045000px;}
.yf7{bottom:666.501000px;}
.y5d{bottom:667.323000px;}
.y84{bottom:668.523000px;}
.yd3{bottom:669.264000px;}
.y148{bottom:670.141500px;}
.yaf{bottom:671.425500px;}
.y2f{bottom:678.025500px;}
.y9{bottom:679.302000px;}
.y16e{bottom:688.767000px;}
.y121{bottom:688.774500px;}
.yae{bottom:692.308500px;}
.yd1{bottom:694.863000px;}
.yf6{bottom:695.884500px;}
.y5c{bottom:696.705000px;}
.yad{bottom:697.539000px;}
.yf5{bottom:702.067500px;}
.y5b{bottom:702.889500px;}
.y147{bottom:705.855000px;}
.y2d{bottom:706.593000px;}
.y81{bottom:707.206500px;}
.y8{bottom:714.868500px;}
.y2e{bottom:715.446000px;}
.y83{bottom:715.660500px;}
.y82{bottom:715.662000px;}
.y16d{bottom:719.253000px;}
.y120{bottom:724.341000px;}
.y2a{bottom:727.747500px;}
.y7e{bottom:727.962000px;}
.yac{bottom:729.412500px;}
.ya9{bottom:729.811500px;}
.yd0{bottom:730.429500px;}
.y59{bottom:737.209500px;}
.yf4{bottom:737.634000px;}
.yaa{bottom:738.265500px;}
.y146{bottom:743.440500px;}
.y2c{bottom:744.783000px;}
.y80{bottom:744.999000px;}
.y5a{bottom:745.663500px;}
.y16c{bottom:749.739000px;}
.y2b{bottom:750.163500px;}
.y7f{bottom:750.378000px;}
.ya6{bottom:750.567000px;}
.y56{bottom:757.965000px;}
.y11f{bottom:759.907500px;}
.y145{bottom:760.425000px;}
.y7{bottom:760.896000px;}
.y144{bottom:766.609500px;}
.yab{bottom:767.602500px;}
.ya8{bottom:767.604000px;}
.ya7{bottom:772.983000px;}
.yf3{bottom:773.200500px;}
.y58{bottom:775.000500px;}
.y29{bottom:775.761000px;}
.y7d{bottom:775.977000px;}
.y16b{bottom:780.225000px;}
.y57{bottom:780.381000px;}
.ycf{bottom:783.040500px;}
.y11e{bottom:791.418000px;}
.y17b{bottom:792.882000px;}
.ya4{bottom:796.054500px;}
.ya3{bottom:796.453500px;}
.y142{bottom:798.604500px;}
.y11b{bottom:799.872000px;}
.ya5{bottom:804.907500px;}
.y143{bottom:807.457500px;}
.yf2{bottom:808.767000px;}
.y55{bottom:808.902000px;}
.y16a{bottom:810.709500px;}
.y28{bottom:811.327500px;}
.y7c{bottom:811.543500px;}
.y11a{bottom:812.172000px;}
.y6{bottom:816.442500px;}
.ya0{bottom:817.209000px;}
.ycc{bottom:818.151000px;}
.ycd{bottom:818.283000px;}
.y17a{bottom:823.368000px;}
.yce{bottom:826.605000px;}
.y11d{bottom:829.209000px;}
.ya2{bottom:834.244500px;}
.y11c{bottom:834.588000px;}
.y141{bottom:836.794500px;}
.yc9{bottom:838.906500px;}
.ya1{bottom:839.625000px;}
.y169{bottom:841.195500px;}
.y140{bottom:842.175000px;}
.yf1{bottom:844.333500px;}
.y54{bottom:844.468500px;}
.y5{bottom:846.927000px;}
.y27{bottom:847.420500px;}
.ycb{bottom:855.942000px;}
.y26{bottom:859.722000px;}
.yca{bottom:861.322500px;}
.y119{bottom:863.110500px;}
.y7b{bottom:864.894000px;}
.y9f{bottom:865.224000px;}
.y13f{bottom:867.774000px;}
.y168{bottom:871.681500px;}
.y179{bottom:875.194500px;}
.y4{bottom:877.413000px;}
.y53{bottom:880.182000px;}
.yc8{bottom:888.249000px;}
.yf0{bottom:890.361000px;}
.y52{bottom:892.483500px;}
.y7a{bottom:895.008000px;}
.y78{bottom:895.407000px;}
.y118{bottom:898.677000px;}
.y25{bottom:900.846000px;}
.y9e{bottom:901.734000px;}
.y167{bottom:902.167500px;}
.y13e{bottom:903.487500px;}
.y79{bottom:903.861000px;}
.y178{bottom:905.679000px;}
.y3{bottom:907.899000px;}
.y24{bottom:913.147500px;}
.y9d{bottom:914.035500px;}
.y13d{bottom:915.789000px;}
.y75{bottom:916.162500px;}
.yc7{bottom:923.815500px;}
.y166{bottom:932.652000px;}
.y116{bottom:933.196500px;}
.y77{bottom:933.199500px;}
.y51{bottom:933.607500px;}
.yef{bottom:934.389000px;}
.y76{bottom:938.578500px;}
.yee{bottom:940.573500px;}
.y117{bottom:942.049500px;}
.y50{bottom:945.907500px;}
.y13b{bottom:953.970000px;}
.y23{bottom:954.271500px;}
.y113{bottom:954.351000px;}
.y177{bottom:958.804500px;}
.y9b{bottom:959.922000px;}
.yc6{bottom:960.054000px;}
.y13c{bottom:962.823000px;}
.y165{bottom:963.138000px;}
.y74{bottom:964.975500px;}
.y22{bottom:966.571500px;}
.y9c{bottom:968.376000px;}
.y115{bottom:971.388000px;}
.y2{bottom:972.403500px;}
.yed{bottom:976.140000px;}
.y114{bottom:976.767000px;}
.y98{bottom:980.677500px;}
.y13a{bottom:992.160000px;}
.y164{bottom:993.624000px;}
.y4f{bottom:993.922500px;}
.y72{bottom:995.089500px;}
.y71{bottom:995.488500px;}
.y110{bottom:995.887500px;}
.y139{bottom:997.540500px;}
.y9a{bottom:997.713000px;}
.y99{bottom:1003.093500px;}
.y73{bottom:1003.942500px;}
.y112{bottom:1004.740500px;}
.y176{bottom:1011.930000px;}
.y21{bottom:1014.586500px;}
.y6e{bottom:1016.244000px;}
.y10d{bottom:1017.040500px;}
.y111{bottom:1017.042000px;}
.y1{bottom:1017.235500px;}
.y138{bottom:1023.306000px;}
.y163{bottom:1024.110000px;}
.y137{bottom:1024.258500px;}
.y4e{bottom:1029.489000px;}
.y70{bottom:1033.279500px;}
.y10f{bottom:1034.077500px;}
.y6f{bottom:1038.660000px;}
.y10e{bottom:1039.458000px;}
.y20{bottom:1056.796500px;}
.y1f{bottom:1057.750500px;}
.y1e{bottom:1062.981000px;}
.y4d{bottom:1065.055500px;}
.y1d{bottom:1100.922000px;}
.h6{height:2.869248px;}
.h17{height:14.735702px;}
.h5{height:31.991981px;}
.h11{height:33.665702px;}
.h13{height:35.865450px;}
.h9{height:38.519654px;}
.h39{height:42.799330px;}
.h2{height:44.831700px;}
.h24{height:49.279334px;}
.h1{height:50.211840px;}
.h38{height:51.359539px;}
.h3{height:53.798400px;}
.h2b{height:59.699702px;}
.h10{height:63.281702px;}
.h28{height:63.287702px;}
.h4{height:65.481450px;}
.h2f{height:65.487450px;}
.h19{height:65.495702px;}
.h21{height:67.695450px;}
.ha{height:68.531702px;}
.h14{height:68.537702px;}
.h34{height:70.731450px;}
.h36{height:70.737450px;}
.h2d{height:71.011248px;}
.h2c{height:71.017248px;}
.h23{height:82.815450px;}
.h35{height:82.829702px;}
.hc{height:85.705248px;}
.h1a{height:85.711248px;}
.hb{height:86.411702px;}
.h25{height:88.611450px;}
.h16{height:88.617450px;}
.h15{height:89.459702px;}
.h18{height:92.427450px;}
.h37{height:92.433450px;}
.h1f{height:93.269702px;}
.h31{height:102.326400px;}
.h1e{height:103.417248px;}
.hf{height:104.005248px;}
.hd{height:104.011248px;}
.h20{height:107.227248px;}
.h30{height:114.687450px;}
.h1b{height:125.527248px;}
.h27{height:125.529450px;}
.h1d{height:125.533248px;}
.h32{height:151.526400px;}
.he{height:153.211248px;}
.h8{height:153.217248px;}
.h33{height:167.951702px;}
.h22{height:172.535702px;}
.h26{height:174.733248px;}
.h1c{height:174.739248px;}
.h7{height:187.033248px;}
.h2e{height:187.393248px;}
.h29{height:188.623248px;}
.h12{height:188.629248px;}
.h2a{height:208.555248px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:108.000000px;}
.x8a{left:124.426500px;}
.x5{left:125.932500px;}
.x1{left:128.425500px;}
.xdf{left:131.245500px;}
.xb6{left:133.300500px;}
.xa3{left:144.957000px;}
.x4e{left:148.239000px;}
.x8f{left:149.968500px;}
.x6a{left:151.560000px;}
.xb8{left:153.862500px;}
.x8e{left:155.379000px;}
.xb7{left:159.273000px;}
.x3{left:161.799000px;}
.x4c{left:172.554000px;}
.x3b{left:174.774000px;}
.x90{left:176.937000px;}
.x9d{left:180.936000px;}
.x73{left:182.640000px;}
.x58{left:192.573000px;}
.x8c{left:195.202500px;}
.x8b{left:200.613000px;}
.xb9{left:205.488000px;}
.x97{left:207.402000px;}
.xa4{left:213.543000px;}
.xa5{left:215.466000px;}
.x7f{left:217.230000px;}
.x6c{left:220.413000px;}
.x5a{left:221.659500px;}
.xa9{left:222.762000px;}
.x6b{left:227.746500px;}
.x9a{left:230.319000px;}
.xf{left:232.075500px;}
.x1e{left:235.906500px;}
.x99{left:239.416500px;}
.x3d{left:242.439000px;}
.x12{left:244.462500px;}
.xb1{left:246.421500px;}
.x6d{left:249.304500px;}
.x86{left:251.583000px;}
.x32{left:252.669000px;}
.xb0{left:253.755000px;}
.x10{left:256.605000px;}
.x85{left:258.916500px;}
.xd8{left:259.996500px;}
.x59{left:264.583500px;}
.x4f{left:266.577000px;}
.x8d{left:273.786000px;}
.x52{left:275.356500px;}
.xb2{left:276.682500px;}
.x9e{left:278.415000px;}
.x2d{left:281.113500px;}
.x2e{left:282.483000px;}
.x3c{left:283.575000px;}
.xce{left:285.061500px;}
.x9b{left:287.271000px;}
.xd4{left:288.955500px;}
.x2c{left:290.211000px;}
.x74{left:291.234000px;}
.x5c{left:292.435500px;}
.x5b{left:297.846000px;}
.x7a{left:300.013500px;}
.x64{left:301.212000px;}
.x65{left:303.135000px;}
.x20{left:304.758000px;}
.x4{left:306.264000px;}
.x8{left:307.542000px;}
.x48{left:309.195000px;}
.xa6{left:311.509500px;}
.x1f{left:313.857000px;}
.x47{left:316.756500px;}
.x5d{left:319.404000px;}
.x34{left:321.522000px;}
.x7{left:323.506500px;}
.x33{left:328.855500px;}
.x66{left:330.103500px;}
.xad{left:332.560500px;}
.x22{left:333.651000px;}
.x23{left:335.574000px;}
.x40{left:338.847000px;}
.x21{left:340.984500px;}
.xaa{left:342.808500px;}
.x2f{left:344.893500px;}
.x11{left:347.952000px;}
.x35{left:350.413500px;}
.x9{left:354.559500px;}
.xbf{left:356.563500px;}
.xc7{left:358.477500px;}
.xdb{left:361.206000px;}
.x80{left:362.248500px;}
.x75{left:364.240500px;}
.xde{left:365.403000px;}
.xcd{left:366.985500px;}
.x1c{left:368.623500px;}
.x91{left:370.572000px;}
.x6e{left:371.574000px;}
.x7b{left:373.020000px;}
.x98{left:374.026500px;}
.x13{left:375.781500px;}
.xa0{left:378.345000px;}
.xc5{left:380.725500px;}
.x81{left:381.799500px;}
.xb3{left:383.956500px;}
.x49{left:391.231500px;}
.x2{left:392.583000px;}
.xaf{left:395.709000px;}
.x24{left:397.431000px;}
.x87{left:400.752000px;}
.xae{left:403.044000px;}
.x41{left:406.135500px;}
.xc2{left:408.681000px;}
.xb{left:412.384500px;}
.xc{left:414.307500px;}
.x1d{left:416.077500px;}
.xa{left:418.984500px;}
.x16{left:421.827000px;}
.xd2{left:423.291000px;}
.xcc{left:425.314500px;}
.x5e{left:427.426500px;}
.xd5{left:428.805000px;}
.x19{left:430.606500px;}
.x76{left:431.820000px;}
.xc8{left:433.659000px;}
.xda{left:435.331500px;}
.xd9{left:436.504500px;}
.x83{left:438.607500px;}
.x7c{left:440.599500px;}
.x14{left:443.070000px;}
.x82{left:449.379000px;}
.x50{left:450.760500px;}
.x67{left:453.370500px;}
.xe{left:455.544000px;}
.xc0{left:457.227000px;}
.x53{left:459.540000px;}
.xc9{left:462.537000px;}
.x9c{left:464.148000px;}
.x30{left:467.833500px;}
.xd{left:470.896500px;}
.x36{left:472.683000px;}
.x5f{left:474.550500px;}
.xa2{left:477.178500px;}
.xca{left:478.954500px;}
.x42{left:482.205000px;}
.xa1{left:486.651000px;}
.xd3{left:489.472500px;}
.x44{left:490.984500px;}
.x89{left:492.528000px;}
.xdc{left:493.632000px;}
.xb4{left:500.026500px;}
.xc3{left:501.109500px;}
.x25{left:503.742000px;}
.x26{left:505.665000px;}
.x15{left:510.358500px;}
.xc6{left:514.476000px;}
.xba{left:519.766500px;}
.xd6{left:522.111000px;}
.x51{left:524.058000px;}
.xab{left:525.753000px;}
.x17{left:528.592500px;}
.x27{left:532.633500px;}
.xdd{left:534.589500px;}
.xcb{left:535.843500px;}
.x1a{left:537.372000px;}
.x3e{left:539.832000px;}
.x55{left:541.617000px;}
.x77{left:542.997000px;}
.xcf{left:544.192500px;}
.xa7{left:548.397000px;}
.x43{left:549.493500px;}
.x4a{left:552.319500px;}
.xc4{left:553.339500px;}
.x6f{left:556.210500px;}
.x68{left:560.586000px;}
.x61{left:562.186500px;}
.x62{left:563.557500px;}
.x45{left:567.052500px;}
.x31{left:569.773500px;}
.x60{left:571.285500px;}
.xd1{left:574.066500px;}
.x29{left:575.151000px;}
.x2a{left:576.522000px;}
.x28{left:584.250000px;}
.x38{left:585.643500px;}
.xd7{left:587.425500px;}
.x37{left:588.753000px;}
.x92{left:592.069500px;}
.x93{left:593.439000px;}
.xd0{left:598.875000px;}
.xbb{left:599.950500px;}
.xbc{left:601.320000px;}
.xc1{left:605.017500px;}
.x69{left:608.439000px;}
.x88{left:615.255000px;}
.x78{left:616.294500px;}
.x63{left:619.138500px;}
.x94{left:620.961000px;}
.x84{left:623.082000px;}
.x18{left:626.578500px;}
.xb5{left:629.178000px;}
.x7d{left:633.853500px;}
.x1b{left:635.358000px;}
.x3f{left:637.527000px;}
.x2b{left:638.932500px;}
.xbd{left:642.043500px;}
.x46{left:643.120500px;}
.x4b{left:645.991500px;}
.x96{left:659.421000px;}
.x56{left:661.573500px;}
.x95{left:668.518500px;}
.x39{left:672.883500px;}
.xbe{left:678.427500px;}
.x79{left:683.583000px;}
.xac{left:688.552500px;}
.x70{left:689.860500px;}
.xa8{left:695.848500px;}
.x4d{left:697.311000px;}
.x7e{left:701.142000px;}
.x71{left:710.394000px;}
.x54{left:717.021000px;}
.x3a{left:720.729000px;}
.x57{left:734.580000px;}
.x72{left:753.298500px;}
.x9f{left:796.053000px;}
@media print{
.v19{vertical-align:-153.136000pt;}
.v27{vertical-align:-89.904000pt;}
.v1e{vertical-align:-70.778667pt;}
.vf{vertical-align:-51.642667pt;}
.v3{vertical-align:-46.768000pt;}
.v16{vertical-align:-16.826667pt;}
.v2a{vertical-align:-14.272000pt;}
.v1b{vertical-align:-10.922667pt;}
.v29{vertical-align:-9.920000pt;}
.v20{vertical-align:-3.824000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:5.152000pt;}
.va{vertical-align:18.597333pt;}
.v18{vertical-align:21.984000pt;}
.v7{vertical-align:23.136000pt;}
.v1{vertical-align:26.325333pt;}
.vc{vertical-align:28.506667pt;}
.v9{vertical-align:30.992000pt;}
.vb{vertical-align:41.733333pt;}
.v5{vertical-align:43.738667pt;}
.v17{vertical-align:45.125333pt;}
.v15{vertical-align:46.890667pt;}
.v8{vertical-align:47.818667pt;}
.v14{vertical-align:49.594667pt;}
.v1a{vertical-align:51.648000pt;}
.v1f{vertical-align:52.981333pt;}
.v28{vertical-align:60.576000pt;}
.v13{vertical-align:66.421333pt;}
.v6{vertical-align:70.064000pt;}
.ve{vertical-align:73.632000pt;}
.v21{vertical-align:75.216000pt;}
.v24{vertical-align:79.701333pt;}
.v11{vertical-align:86.869333pt;}
.v10{vertical-align:89.904000pt;}
.v22{vertical-align:101.541333pt;}
.v1c{vertical-align:109.029333pt;}
.v25{vertical-align:118.346667pt;}
.v23{vertical-align:123.440000pt;}
.v4{vertical-align:133.642667pt;}
.v1d{vertical-align:152.773333pt;}
.v2{vertical-align:163.701333pt;}
.v12{vertical-align:165.120000pt;}
.v26{vertical-align:182.832000pt;}
.ls11{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.000090pt;}
.ls2b{letter-spacing:0.000242pt;}
.ls97{letter-spacing:0.000247pt;}
.ls4f{letter-spacing:0.000485pt;}
.ls9b{letter-spacing:0.000676pt;}
.ls8{letter-spacing:0.000990pt;}
.ls0{letter-spacing:0.001507pt;}
.lsb0{letter-spacing:0.002715pt;}
.ls3e{letter-spacing:0.002836pt;}
.ls78{letter-spacing:0.003200pt;}
.ls41{letter-spacing:0.003420pt;}
.ls51{letter-spacing:0.004024pt;}
.lsf{letter-spacing:0.004145pt;}
.lsab{letter-spacing:0.004492pt;}
.ls15{letter-spacing:0.004970pt;}
.ls83{letter-spacing:0.006813pt;}
.ls80{letter-spacing:0.007543pt;}
.ls92{letter-spacing:0.009718pt;}
.ls8d{letter-spacing:0.012146pt;}
.ls95{letter-spacing:0.020610pt;}
.ls99{letter-spacing:0.894812pt;}
.lsbf{letter-spacing:1.105187pt;}
.ls13{letter-spacing:1.147694pt;}
.ls9{letter-spacing:1.232709pt;}
.ls71{letter-spacing:1.275216pt;}
.ls82{letter-spacing:1.721549pt;}
.ls79{letter-spacing:2.104115pt;}
.ls77{letter-spacing:2.114825pt;}
.ls5d{letter-spacing:2.134489pt;}
.ls5b{letter-spacing:2.139822pt;}
.ls19{letter-spacing:2.167876pt;}
.lsa4{letter-spacing:2.389492pt;}
.lsd{letter-spacing:2.465418pt;}
.ls8c{letter-spacing:2.511684pt;}
.ls7c{letter-spacing:2.638809pt;}
.ls60{letter-spacing:2.644142pt;}
.ls72{letter-spacing:2.644168pt;}
.ls5a{letter-spacing:2.653258pt;}
.ls8e{letter-spacing:2.654400pt;}
.ls44{letter-spacing:2.655321pt;}
.ls94{letter-spacing:2.656991pt;}
.ls63{letter-spacing:2.658591pt;}
.ls59{letter-spacing:2.659733pt;}
.ls73{letter-spacing:2.916145pt;}
.ls1d{letter-spacing:3.022582pt;}
.ls1b{letter-spacing:3.027915pt;}
.ls17{letter-spacing:3.570620pt;}
.lsaa{letter-spacing:3.600744pt;}
.lsa5{letter-spacing:3.788942pt;}
.ls12{letter-spacing:3.791684pt;}
.ls25{letter-spacing:4.334812pt;}
.ls16{letter-spacing:4.411989pt;}
.ls3f{letter-spacing:4.417323pt;}
.ls84{letter-spacing:4.675792pt;}
.ls14{letter-spacing:5.090695pt;}
.ls10{letter-spacing:5.105323pt;}
.ls2e{letter-spacing:5.110656pt;}
.ls32{letter-spacing:5.930238pt;}
.ls31{letter-spacing:5.940970pt;}
.ls76{letter-spacing:6.030812pt;}
.ls7e{letter-spacing:6.036145pt;}
.ls3d{letter-spacing:6.186392pt;}
.lsa6{letter-spacing:6.346269pt;}
.lsc{letter-spacing:6.822434pt;}
.lsa3{letter-spacing:8.511737pt;}
.ls9f{letter-spacing:8.671505pt;}
.ls38{letter-spacing:10.584337pt;}
.lsaf{letter-spacing:10.615926pt;}
.ls8f{letter-spacing:10.639051pt;}
.ls3b{letter-spacing:10.643429pt;}
.ls37{letter-spacing:10.648098pt;}
.ls43{letter-spacing:12.065323pt;}
.lsc4{letter-spacing:13.270027pt;}
.ls7{letter-spacing:13.277258pt;}
.ls1{letter-spacing:13.282591pt;}
.ls2a{letter-spacing:13.283733pt;}
.ls4a{letter-spacing:13.289067pt;}
.ls62{letter-spacing:13.306685pt;}
.ls6{letter-spacing:14.154957pt;}
.ls27{letter-spacing:14.164905pt;}
.ls64{letter-spacing:14.165697pt;}
.ls49{letter-spacing:14.166642pt;}
.ls1c{letter-spacing:14.169479pt;}
.ls47{letter-spacing:14.170238pt;}
.ls6e{letter-spacing:14.171030pt;}
.ls48{letter-spacing:14.171976pt;}
.ls56{letter-spacing:14.174812pt;}
.ls50{letter-spacing:14.176271pt;}
.ls57{letter-spacing:14.178009pt;}
.ls55{letter-spacing:14.181605pt;}
.ls54{letter-spacing:14.183342pt;}
.ls28{letter-spacing:14.218718pt;}
.lsb{letter-spacing:14.535131pt;}
.lsa{letter-spacing:14.540464pt;}
.ls90{letter-spacing:15.035563pt;}
.ls3c{letter-spacing:15.876506pt;}
.ls4b{letter-spacing:16.322833pt;}
.ls33{letter-spacing:16.783636pt;}
.ls4d{letter-spacing:16.823925pt;}
.ls5{letter-spacing:16.825067pt;}
.ls4{letter-spacing:16.830400pt;}
.ls39{letter-spacing:17.661815pt;}
.lsc9{letter-spacing:17.693578pt;}
.ls4e{letter-spacing:17.706238pt;}
.ls24{letter-spacing:17.710812pt;}
.ls69{letter-spacing:17.711572pt;}
.ls52{letter-spacing:17.711636pt;}
.lsbb{letter-spacing:17.716145pt;}
.ls30{letter-spacing:17.716970pt;}
.ls3{letter-spacing:17.725577pt;}
.ls26{letter-spacing:17.789338pt;}
.ls81{letter-spacing:18.590400pt;}
.lsc6{letter-spacing:18.614027pt;}
.lsb5{letter-spacing:18.619360pt;}
.ls96{letter-spacing:19.859608pt;}
.lsb4{letter-spacing:20.191636pt;}
.ls9e{letter-spacing:20.363633pt;}
.ls1a{letter-spacing:20.365258pt;}
.lsa7{letter-spacing:20.366275pt;}
.ls20{letter-spacing:20.366400pt;}
.ls35{letter-spacing:20.370591pt;}
.ls2{letter-spacing:20.371733pt;}
.lsae{letter-spacing:20.467302pt;}
.lsb1{letter-spacing:20.560271pt;}
.ls87{letter-spacing:20.786108pt;}
.ls53{letter-spacing:20.810303pt;}
.lsc5{letter-spacing:20.815636pt;}
.ls86{letter-spacing:20.847636pt;}
.ls3a{letter-spacing:21.498350pt;}
.lsb2{letter-spacing:21.575925pt;}
.lsb6{letter-spacing:21.615002pt;}
.lsbe{letter-spacing:21.979989pt;}
.lsa9{letter-spacing:22.238582pt;}
.ls18{letter-spacing:22.316373pt;}
.ls8b{letter-spacing:22.953984pt;}
.lsad{letter-spacing:23.108240pt;}
.ls5e{letter-spacing:23.469258pt;}
.lsc8{letter-spacing:23.591437pt;}
.lsa2{letter-spacing:23.678812pt;}
.ls66{letter-spacing:24.037922pt;}
.lsb7{letter-spacing:24.949059pt;}
.lsac{letter-spacing:25.070906pt;}
.ls29{letter-spacing:25.313143pt;}
.ls1f{letter-spacing:25.568188pt;}
.ls7b{letter-spacing:25.886993pt;}
.ls34{letter-spacing:25.950754pt;}
.ls7a{letter-spacing:26.333321pt;}
.ls23{letter-spacing:26.588365pt;}
.lsc7{letter-spacing:27.736064pt;}
.ls70{letter-spacing:28.054869pt;}
.ls8a{letter-spacing:28.182391pt;}
.ls75{letter-spacing:28.246153pt;}
.ls4c{letter-spacing:28.309914pt;}
.ls5f{letter-spacing:29.457613pt;}
.ls58{letter-spacing:29.903940pt;}
.lsbc{letter-spacing:30.981059pt;}
.ls45{letter-spacing:31.242923pt;}
.ls68{letter-spacing:32.337323pt;}
.ls6b{letter-spacing:32.645666pt;}
.ls85{letter-spacing:33.263684pt;}
.lsa8{letter-spacing:34.452905pt;}
.ls40{letter-spacing:34.727131pt;}
.ls7d{letter-spacing:36.701503pt;}
.ls91{letter-spacing:42.609155pt;}
.ls5c{letter-spacing:42.974812pt;}
.lsa0{letter-spacing:43.223071pt;}
.lsa1{letter-spacing:43.228404pt;}
.ls88{letter-spacing:45.487684pt;}
.ls89{letter-spacing:46.534489pt;}
.ls9c{letter-spacing:47.111313pt;}
.ls2f{letter-spacing:47.697323pt;}
.lsb3{letter-spacing:47.702656pt;}
.ls2d{letter-spacing:51.098238pt;}
.ls61{letter-spacing:51.117732pt;}
.ls6c{letter-spacing:51.123065pt;}
.ls21{letter-spacing:53.702489pt;}
.ls2c{letter-spacing:53.758400pt;}
.ls98{letter-spacing:53.831313pt;}
.ls6f{letter-spacing:55.869244pt;}
.ls65{letter-spacing:55.874577pt;}
.ls74{letter-spacing:57.081033pt;}
.ls36{letter-spacing:57.081248pt;}
.ls46{letter-spacing:57.593248pt;}
.ls1e{letter-spacing:57.598582pt;}
.lsc3{letter-spacing:59.338392pt;}
.lsc0{letter-spacing:61.195989pt;}
.ls7f{letter-spacing:61.377798pt;}
.lse{letter-spacing:61.967725pt;}
.lsb8{letter-spacing:79.002392pt;}
.ls9a{letter-spacing:79.430323pt;}
.ls22{letter-spacing:80.698392pt;}
.lsc1{letter-spacing:85.551725pt;}
.lsbd{letter-spacing:85.557059pt;}
.ls93{letter-spacing:99.921155pt;}
.lsc2{letter-spacing:109.311725pt;}
.ls9d{letter-spacing:110.758323pt;}
.ls6d{letter-spacing:111.631056pt;}
.ls67{letter-spacing:113.382241pt;}
.lsba{letter-spacing:129.237059pt;}
.lsb9{letter-spacing:129.242392pt;}
.ls6a{letter-spacing:983.068126pt;}
.ws89{word-spacing:-74.409165pt;}
.ws12{word-spacing:-53.176730pt;}
.ws86{word-spacing:-51.238393pt;}
.ws16{word-spacing:-50.479636pt;}
.wse{word-spacing:-40.590295pt;}
.ws26{word-spacing:-30.005958pt;}
.ws24{word-spacing:-29.942197pt;}
.ws88{word-spacing:-22.928480pt;}
.ws10{word-spacing:-17.343010pt;}
.ws6{word-spacing:-14.760588pt;}
.ws17{word-spacing:-13.581016pt;}
.ws68{word-spacing:-7.325624pt;}
.ws64{word-spacing:-7.320291pt;}
.ws52{word-spacing:-6.737270pt;}
.ws42{word-spacing:-6.735852pt;}
.ws40{word-spacing:-6.734433pt;}
.ws51{word-spacing:-6.711898pt;}
.ws50{word-spacing:-6.710480pt;}
.ws43{word-spacing:-6.706565pt;}
.ws41{word-spacing:-6.705147pt;}
.ws11{word-spacing:-3.188053pt;}
.ws27{word-spacing:-3.124292pt;}
.wsa{word-spacing:-2.677965pt;}
.ws5b{word-spacing:-2.295398pt;}
.ws96{word-spacing:-1.849059pt;}
.ws91{word-spacing:-1.636523pt;}
.ws74{word-spacing:-1.402743pt;}
.ws8b{word-spacing:-1.052051pt;}
.wsc{word-spacing:-0.956416pt;}
.ws98{word-spacing:-0.892649pt;}
.ws32{word-spacing:-0.573850pt;}
.ws6d{word-spacing:-0.318805pt;}
.ws8d{word-spacing:-0.255043pt;}
.ws77{word-spacing:-0.191283pt;}
.ws78{word-spacing:-0.127522pt;}
.wsa0{word-spacing:-0.063761pt;}
.ws95{word-spacing:-0.053134pt;}
.ws20{word-spacing:-0.042507pt;}
.ws1d{word-spacing:0.000000pt;}
.ws35{word-spacing:0.318805pt;}
.ws1f{word-spacing:0.340374pt;}
.ws4d{word-spacing:0.360194pt;}
.wsf{word-spacing:0.382566pt;}
.ws9d{word-spacing:0.595099pt;}
.ws69{word-spacing:0.892655pt;}
.ws97{word-spacing:0.977663pt;}
.ws92{word-spacing:1.190199pt;}
.ws82{word-spacing:1.594027pt;}
.ws7b{word-spacing:1.657788pt;}
.ws8c{word-spacing:1.721537pt;}
.ws29{word-spacing:1.849071pt;}
.ws75{word-spacing:1.912832pt;}
.ws99{word-spacing:1.976580pt;}
.ws73{word-spacing:2.040354pt;}
.ws9b{word-spacing:2.135981pt;}
.ws22{word-spacing:2.167876pt;}
.ws3{word-spacing:2.189115pt;}
.ws94{word-spacing:2.242249pt;}
.ws48{word-spacing:2.295398pt;}
.ws90{word-spacing:2.401651pt;}
.ws37{word-spacing:2.614204pt;}
.ws36{word-spacing:2.677965pt;}
.ws83{word-spacing:2.869248pt;}
.ws1{word-spacing:2.932989pt;}
.ws6e{word-spacing:2.996770pt;}
.ws66{word-spacing:3.060531pt;}
.ws80{word-spacing:3.188053pt;}
.ws5{word-spacing:3.198659pt;}
.ws9e{word-spacing:3.262419pt;}
.ws4{word-spacing:3.411194pt;}
.ws8a{word-spacing:3.434090pt;}
.wsb{word-spacing:3.443098pt;}
.ws56{word-spacing:3.459531pt;}
.ws76{word-spacing:3.506859pt;}
.ws9{word-spacing:3.761903pt;}
.ws7a{word-spacing:4.016947pt;}
.ws87{word-spacing:4.208230pt;}
.ws18{word-spacing:4.261336pt;}
.ws85{word-spacing:4.271991pt;}
.ws6f{word-spacing:4.335753pt;}
.ws81{word-spacing:4.399514pt;}
.ws7c{word-spacing:4.654558pt;}
.ws9c{word-spacing:4.697034pt;}
.ws39{word-spacing:4.782080pt;}
.ws93{word-spacing:4.803302pt;}
.ws2a{word-spacing:4.845841pt;}
.ws79{word-spacing:5.037124pt;}
.ws7e{word-spacing:5.100885pt;}
.ws23{word-spacing:5.228407pt;}
.ws19{word-spacing:5.440908pt;}
.ws9a{word-spacing:5.589683pt;}
.ws6c{word-spacing:5.610974pt;}
.ws67{word-spacing:5.993540pt;}
.wsd{word-spacing:6.376107pt;}
.ws62{word-spacing:6.758673pt;}
.ws4a{word-spacing:6.886195pt;}
.ws72{word-spacing:7.332523pt;}
.ws1c{word-spacing:7.343100pt;}
.ws8e{word-spacing:7.396234pt;}
.ws7d{word-spacing:7.460045pt;}
.ws34{word-spacing:8.288939pt;}
.ws1b{word-spacing:8.830849pt;}
.ws60{word-spacing:9.054071pt;}
.ws59{word-spacing:9.117833pt;}
.ws63{word-spacing:9.436638pt;}
.ws8f{word-spacing:9.479082pt;}
.ws4b{word-spacing:9.564160pt;}
.ws3e{word-spacing:9.627921pt;}
.ws54{word-spacing:9.946726pt;}
.ws57{word-spacing:10.393054pt;}
.ws70{word-spacing:10.456815pt;}
.ws2b{word-spacing:10.648098pt;}
.ws1a{word-spacing:10.807428pt;}
.ws44{word-spacing:11.285709pt;}
.ws45{word-spacing:11.349470pt;}
.ws3f{word-spacing:11.413231pt;}
.ws5a{word-spacing:11.604514pt;}
.ws55{word-spacing:12.305886pt;}
.ws4e{word-spacing:13.220123pt;}
.ws2d{word-spacing:13.221373pt;}
.ws2e{word-spacing:13.225457pt;}
.ws13{word-spacing:13.259889pt;}
.ws3d{word-spacing:13.453585pt;}
.ws3c{word-spacing:13.463963pt;}
.ws7{word-spacing:13.899913pt;}
.ws3b{word-spacing:14.473762pt;}
.ws5d{word-spacing:15.366417pt;}
.ws84{word-spacing:15.433457pt;}
.ws25{word-spacing:15.438790pt;}
.ws7f{word-spacing:17.157373pt;}
.ws5e{word-spacing:17.343010pt;}
.ws15{word-spacing:17.402706pt;}
.wsa2{word-spacing:20.031468pt;}
.ws38{word-spacing:20.722347pt;}
.ws1e{word-spacing:21.232435pt;}
.ws28{word-spacing:21.933807pt;}
.ws3a{word-spacing:22.125090pt;}
.ws21{word-spacing:22.380134pt;}
.ws6b{word-spacing:22.890223pt;}
.ws2c{word-spacing:23.081506pt;}
.ws65{word-spacing:23.400311pt;}
.ws14{word-spacing:23.846639pt;}
.ws71{word-spacing:23.974161pt;}
.ws8{word-spacing:24.037922pt;}
.ws30{word-spacing:25.658706pt;}
.ws2{word-spacing:26.513799pt;}
.ws5f{word-spacing:27.162214pt;}
.ws4c{word-spacing:27.626706pt;}
.ws61{word-spacing:27.672303pt;}
.ws9f{word-spacing:27.736064pt;}
.ws49{word-spacing:27.799825pt;}
.ws2f{word-spacing:27.991108pt;}
.ws46{word-spacing:28.628719pt;}
.ws31{word-spacing:29.002706pt;}
.ws58{word-spacing:30.350268pt;}
.ws0{word-spacing:30.987878pt;}
.ws53{word-spacing:31.242923pt;}
.wsa1{word-spacing:32.773188pt;}
.ws47{word-spacing:33.984649pt;}
.ws5c{word-spacing:37.555268pt;}
.ws33{word-spacing:45.079074pt;}
.ws4f{word-spacing:292.790818pt;}
.ws6a{word-spacing:1479.766835pt;}
._1f{margin-left:-24.845564pt;}
._1d{margin-left:-10.775620pt;}
._9{margin-left:-6.822434pt;}
._0{margin-left:-5.929779pt;}
._5{margin-left:-4.410111pt;}
._7{margin-left:-3.177456pt;}
._1{margin-left:-1.976593pt;}
._2{margin-left:-0.945770pt;}
._3{width:1.976593pt;}
._a{width:3.985040pt;}
._1c{width:6.372256pt;}
._16{width:10.381431pt;}
._8{width:14.258256pt;}
._1b{width:16.227231pt;}
._11{width:18.097497pt;}
._c{width:20.658434pt;}
._e{width:22.178205pt;}
._b{width:24.484137pt;}
._4{width:25.568030pt;}
._6{width:27.034692pt;}
._12{width:28.054869pt;}
._13{width:31.115401pt;}
._14{width:32.836949pt;}
._1a{width:35.230923pt;}
._17{width:39.276817pt;}
._10{width:50.213584pt;}
._18{width:52.810918pt;}
._f{width:54.138918pt;}
._15{width:57.802918pt;}
._1e{width:392.576838pt;}
._d{width:417.156730pt;}
._19{width:601.203098pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:80.060000pt;}
.yec{bottom:93.993333pt;}
.ye9{bottom:94.346667pt;}
.yea{bottom:94.465333pt;}
.y1b{bottom:100.068000pt;}
.y4c{bottom:100.209333pt;}
.yeb{bottom:101.862667pt;}
.yc5{bottom:104.026667pt;}
.y4b{bottom:111.144000pt;}
.ye6{bottom:112.796000pt;}
.y10c{bottom:118.328000pt;}
.y1a{bottom:127.166667pt;}
.ye8{bottom:127.940000pt;}
.ye7{bottom:132.721333pt;}
.yc4{bottom:145.952000pt;}
.yc3{bottom:146.800000pt;}
.y10b{bottom:149.942667pt;}
.yc2{bottom:151.449333pt;}
.y4a{bottom:153.824000pt;}
.y19{bottom:154.264000pt;}
.y135{bottom:158.732000pt;}
.ye5{bottom:160.073333pt;}
.y97{bottom:160.788000pt;}
.y136{bottom:166.601333pt;}
.y18{bottom:173.206667pt;}
.y10a{bottom:181.688000pt;}
.yc1{bottom:183.194667pt;}
.y49{bottom:185.438667pt;}
.y6d{bottom:191.401333pt;}
.y96{bottom:192.402667pt;}
.y134{bottom:192.680000pt;}
.yc0{bottom:194.128000pt;}
.y133{bottom:197.461333pt;}
.y17{bottom:200.305333pt;}
.y162{bottom:202.433333pt;}
.ye4{bottom:202.752000pt;}
.y109{bottom:203.406667pt;}
.y132{bottom:220.364000pt;}
.y131{bottom:221.210667pt;}
.y48{bottom:222.958667pt;}
.y6c{bottom:223.016000pt;}
.y47{bottom:223.805333pt;}
.y95{bottom:224.148000pt;}
.y130{bottom:225.860000pt;}
.y160{bottom:227.490667pt;}
.ye3{bottom:234.366667pt;}
.y94{bottom:235.082667pt;}
.y108{bottom:235.302667pt;}
.y161{bottom:235.360000pt;}
.y15{bottom:236.032000pt;}
.ybf{bottom:236.808000pt;}
.y46{bottom:240.410667pt;}
.y16{bottom:243.546667pt;}
.y12{bottom:254.481333pt;}
.y45{bottom:254.573333pt;}
.y6b{bottom:254.762667pt;}
.y44{bottom:255.420000pt;}
.y43{bottom:260.069333pt;}
.y15f{bottom:261.437333pt;}
.y6a{bottom:265.696000pt;}
.y15e{bottom:266.220000pt;}
.y12f{bottom:266.773333pt;}
.y107{bottom:266.917333pt;}
.y14{bottom:269.624000pt;}
.y93{bottom:271.637333pt;}
.y13{bottom:274.406667pt;}
.ye2{bottom:281.132000pt;}
.y92{bottom:282.570667pt;}
.ybe{bottom:284.230667pt;}
.y15d{bottom:286.849333pt;}
.y15c{bottom:287.696000pt;}
.y41{bottom:290.576000pt;}
.y15b{bottom:292.345333pt;}
.y105{bottom:292.860000pt;}
.y11{bottom:297.161333pt;}
.y42{bottom:298.092000pt;}
.y106{bottom:300.729333pt;}
.y69{bottom:302.250667pt;}
.y3e{bottom:309.025333pt;}
.y12e{bottom:311.406667pt;}
.y104{bottom:311.664000pt;}
.y68{bottom:313.185333pt;}
.y91{bottom:319.125333pt;}
.y159{bottom:320.785333pt;}
.y40{bottom:324.169333pt;}
.ye1{bottom:327.897333pt;}
.y15a{bottom:328.656000pt;}
.y3f{bottom:328.950667pt;}
.y90{bottom:330.060000pt;}
.ybd{bottom:331.652000pt;}
.y12d{bottom:343.021333pt;}
.y10{bottom:344.582667pt;}
.y67{bottom:349.740000pt;}
.y3d{bottom:351.705333pt;}
.y103{bottom:354.342667pt;}
.y158{bottom:354.733333pt;}
.ye0{bottom:359.512000pt;}
.y157{bottom:359.514667pt;}
.y66{bottom:360.674667pt;}
.ybc{bottom:363.266667pt;}
.y8f{bottom:366.614667pt;}
.y12c{bottom:374.636000pt;}
.y8e{bottom:377.549333pt;}
.y100{bottom:381.192000pt;}
.y101{bottom:381.466667pt;}
.y156{bottom:382.269333pt;}
.y3c{bottom:383.320000pt;}
.yde{bottom:387.166667pt;}
.yf{bottom:387.262667pt;}
.ydd{bottom:387.521333pt;}
.y102{bottom:389.061333pt;}
.yb9{bottom:391.276000pt;}
.yba{bottom:391.394667pt;}
.ydf{bottom:395.036000pt;}
.y65{bottom:397.229333pt;}
.ybb{bottom:398.790667pt;}
.yff{bottom:399.996000pt;}
.yda{bottom:405.970667pt;}
.y12b{bottom:406.250667pt;}
.y154{bottom:407.326667pt;}
.y64{bottom:408.162667pt;}
.yb6{bottom:409.725333pt;}
.y8d{bottom:414.104000pt;}
.y155{bottom:415.196000pt;}
.ydc{bottom:421.113333pt;}
.y175{bottom:422.549333pt;}
.yb8{bottom:424.869333pt;}
.y8c{bottom:425.037333pt;}
.ydb{bottom:425.896000pt;}
.y3b{bottom:426.337333pt;}
.ye{bottom:426.781333pt;}
.yb7{bottom:429.650667pt;}
.yfe{bottom:437.178667pt;}
.y12a{bottom:437.865333pt;}
.y153{bottom:441.273333pt;}
.yfd{bottom:442.676000pt;}
.y63{bottom:444.717333pt;}
.y152{bottom:446.056000pt;}
.yd9{bottom:448.650667pt;}
.y174{bottom:449.648000pt;}
.y39{bottom:451.730667pt;}
.yb5{bottom:453.114667pt;}
.y62{bottom:455.652000pt;}
.y3a{bottom:459.600000pt;}
.y8b{bottom:461.592000pt;}
.y129{bottom:463.982667pt;}
.y128{bottom:464.830667pt;}
.yd{bottom:466.300000pt;}
.y151{bottom:468.645333pt;}
.y127{bottom:469.480000pt;}
.y150{bottom:469.493333pt;}
.y8a{bottom:472.526667pt;}
.y14f{bottom:474.142667pt;}
.yfc{bottom:474.290667pt;}
.y173{bottom:476.746667pt;}
.yd8{bottom:480.265333pt;}
.yb4{bottom:484.729333pt;}
.y38{bottom:485.677333pt;}
.y37{bottom:490.460000pt;}
.y61{bottom:498.332000pt;}
.yfa{bottom:499.348000pt;}
.y14e{bottom:500.260000pt;}
.y14d{bottom:501.108000pt;}
.y126{bottom:503.338667pt;}
.y172{bottom:503.844000pt;}
.y14c{bottom:505.757333pt;}
.yfb{bottom:507.217333pt;}
.yc{bottom:508.980000pt;}
.y36{bottom:513.214667pt;}
.y89{bottom:515.206667pt;}
.yf9{bottom:518.150667pt;}
.y123{bottom:522.141333pt;}
.yd7{bottom:527.030667pt;}
.y60{bottom:529.946667pt;}
.y171{bottom:530.942667pt;}
.yb3{bottom:532.150667pt;}
.y14b{bottom:534.197333pt;}
.y125{bottom:537.285333pt;}
.yb{bottom:540.594667pt;}
.y33{bottom:541.205333pt;}
.y34{bottom:541.560000pt;}
.y124{bottom:542.066667pt;}
.y35{bottom:549.074667pt;}
.y5f{bottom:556.064000pt;}
.yd5{bottom:556.173333pt;}
.y88{bottom:557.132000pt;}
.y170{bottom:558.041333pt;}
.yb1{bottom:558.093333pt;}
.y30{bottom:560.009333pt;}
.yf8{bottom:560.830667pt;}
.y5e{bottom:561.561333pt;}
.y87{bottom:562.628000pt;}
.yd6{bottom:564.042667pt;}
.y122{bottom:564.821333pt;}
.yb2{bottom:565.962667pt;}
.y14a{bottom:568.144000pt;}
.ya{bottom:572.209333pt;}
.y149{bottom:572.926667pt;}
.yd2{bottom:574.976000pt;}
.y32{bottom:575.152000pt;}
.y31{bottom:579.934667pt;}
.y16f{bottom:585.140000pt;}
.y86{bottom:588.746667pt;}
.y85{bottom:589.593333pt;}
.yd4{bottom:590.120000pt;}
.yb0{bottom:592.040000pt;}
.yf7{bottom:592.445333pt;}
.y5d{bottom:593.176000pt;}
.y84{bottom:594.242667pt;}
.yd3{bottom:594.901333pt;}
.y148{bottom:595.681333pt;}
.yaf{bottom:596.822667pt;}
.y2f{bottom:602.689333pt;}
.y9{bottom:603.824000pt;}
.y16e{bottom:612.237333pt;}
.y121{bottom:612.244000pt;}
.yae{bottom:615.385333pt;}
.yd1{bottom:617.656000pt;}
.yf6{bottom:618.564000pt;}
.y5c{bottom:619.293333pt;}
.yad{bottom:620.034667pt;}
.yf5{bottom:624.060000pt;}
.y5b{bottom:624.790667pt;}
.y147{bottom:627.426667pt;}
.y2d{bottom:628.082667pt;}
.y81{bottom:628.628000pt;}
.y8{bottom:635.438667pt;}
.y2e{bottom:635.952000pt;}
.y83{bottom:636.142667pt;}
.y82{bottom:636.144000pt;}
.y16d{bottom:639.336000pt;}
.y120{bottom:643.858667pt;}
.y2a{bottom:646.886667pt;}
.y7e{bottom:647.077333pt;}
.yac{bottom:648.366667pt;}
.ya9{bottom:648.721333pt;}
.yd0{bottom:649.270667pt;}
.y59{bottom:655.297333pt;}
.yf4{bottom:655.674667pt;}
.yaa{bottom:656.236000pt;}
.y146{bottom:660.836000pt;}
.y2c{bottom:662.029333pt;}
.y80{bottom:662.221333pt;}
.y5a{bottom:662.812000pt;}
.y16c{bottom:666.434667pt;}
.y2b{bottom:666.812000pt;}
.y7f{bottom:667.002667pt;}
.ya6{bottom:667.170667pt;}
.y56{bottom:673.746667pt;}
.y11f{bottom:675.473333pt;}
.y145{bottom:675.933333pt;}
.y7{bottom:676.352000pt;}
.y144{bottom:681.430667pt;}
.yab{bottom:682.313333pt;}
.ya8{bottom:682.314667pt;}
.ya7{bottom:687.096000pt;}
.yf3{bottom:687.289333pt;}
.y58{bottom:688.889333pt;}
.y29{bottom:689.565333pt;}
.y7d{bottom:689.757333pt;}
.y16b{bottom:693.533333pt;}
.y57{bottom:693.672000pt;}
.ycf{bottom:696.036000pt;}
.y11e{bottom:703.482667pt;}
.y17b{bottom:704.784000pt;}
.ya4{bottom:707.604000pt;}
.ya3{bottom:707.958667pt;}
.y142{bottom:709.870667pt;}
.y11b{bottom:710.997333pt;}
.ya5{bottom:715.473333pt;}
.y143{bottom:717.740000pt;}
.yf2{bottom:718.904000pt;}
.y55{bottom:719.024000pt;}
.y16a{bottom:720.630667pt;}
.y28{bottom:721.180000pt;}
.y7c{bottom:721.372000pt;}
.y11a{bottom:721.930667pt;}
.y6{bottom:725.726667pt;}
.ya0{bottom:726.408000pt;}
.ycc{bottom:727.245333pt;}
.ycd{bottom:727.362667pt;}
.y17a{bottom:731.882667pt;}
.yce{bottom:734.760000pt;}
.y11d{bottom:737.074667pt;}
.ya2{bottom:741.550667pt;}
.y11c{bottom:741.856000pt;}
.y141{bottom:743.817333pt;}
.yc9{bottom:745.694667pt;}
.ya1{bottom:746.333333pt;}
.y169{bottom:747.729333pt;}
.y140{bottom:748.600000pt;}
.yf1{bottom:750.518667pt;}
.y54{bottom:750.638667pt;}
.y5{bottom:752.824000pt;}
.y27{bottom:753.262667pt;}
.ycb{bottom:760.837333pt;}
.y26{bottom:764.197333pt;}
.yca{bottom:765.620000pt;}
.y119{bottom:767.209333pt;}
.y7b{bottom:768.794667pt;}
.y9f{bottom:769.088000pt;}
.y13f{bottom:771.354667pt;}
.y168{bottom:774.828000pt;}
.y179{bottom:777.950667pt;}
.y4{bottom:779.922667pt;}
.y53{bottom:782.384000pt;}
.yc8{bottom:789.554667pt;}
.yf0{bottom:791.432000pt;}
.y52{bottom:793.318667pt;}
.y7a{bottom:795.562667pt;}
.y78{bottom:795.917333pt;}
.y118{bottom:798.824000pt;}
.y25{bottom:800.752000pt;}
.y9e{bottom:801.541333pt;}
.y167{bottom:801.926667pt;}
.y13e{bottom:803.100000pt;}
.y79{bottom:803.432000pt;}
.y178{bottom:805.048000pt;}
.y3{bottom:807.021333pt;}
.y24{bottom:811.686667pt;}
.y9d{bottom:812.476000pt;}
.y13d{bottom:814.034667pt;}
.y75{bottom:814.366667pt;}
.yc7{bottom:821.169333pt;}
.y166{bottom:829.024000pt;}
.y116{bottom:829.508000pt;}
.y77{bottom:829.510667pt;}
.y51{bottom:829.873333pt;}
.yef{bottom:830.568000pt;}
.y76{bottom:834.292000pt;}
.yee{bottom:836.065333pt;}
.y117{bottom:837.377333pt;}
.y50{bottom:840.806667pt;}
.y13b{bottom:847.973333pt;}
.y23{bottom:848.241333pt;}
.y113{bottom:848.312000pt;}
.y177{bottom:852.270667pt;}
.y9b{bottom:853.264000pt;}
.yc6{bottom:853.381333pt;}
.y13c{bottom:855.842667pt;}
.y165{bottom:856.122667pt;}
.y74{bottom:857.756000pt;}
.y22{bottom:859.174667pt;}
.y9c{bottom:860.778667pt;}
.y115{bottom:863.456000pt;}
.y2{bottom:864.358667pt;}
.yed{bottom:867.680000pt;}
.y114{bottom:868.237333pt;}
.y98{bottom:871.713333pt;}
.y13a{bottom:881.920000pt;}
.y164{bottom:883.221333pt;}
.y4f{bottom:883.486667pt;}
.y72{bottom:884.524000pt;}
.y71{bottom:884.878667pt;}
.y110{bottom:885.233333pt;}
.y139{bottom:886.702667pt;}
.y9a{bottom:886.856000pt;}
.y99{bottom:891.638667pt;}
.y73{bottom:892.393333pt;}
.y112{bottom:893.102667pt;}
.y176{bottom:899.493333pt;}
.y21{bottom:901.854667pt;}
.y6e{bottom:903.328000pt;}
.y10d{bottom:904.036000pt;}
.y111{bottom:904.037333pt;}
.y1{bottom:904.209333pt;}
.y138{bottom:909.605333pt;}
.y163{bottom:910.320000pt;}
.y137{bottom:910.452000pt;}
.y4e{bottom:915.101333pt;}
.y70{bottom:918.470667pt;}
.y10f{bottom:919.180000pt;}
.y6f{bottom:923.253333pt;}
.y10e{bottom:923.962667pt;}
.y20{bottom:939.374667pt;}
.y1f{bottom:940.222667pt;}
.y1e{bottom:944.872000pt;}
.y4d{bottom:946.716000pt;}
.y1d{bottom:978.597333pt;}
.h6{height:2.550443pt;}
.h17{height:13.098402pt;}
.h5{height:28.437317pt;}
.h11{height:29.925069pt;}
.h13{height:31.880400pt;}
.h9{height:34.239693pt;}
.h39{height:38.043849pt;}
.h2{height:39.850400pt;}
.h24{height:43.803853pt;}
.h1{height:44.632747pt;}
.h38{height:45.652924pt;}
.h3{height:47.820800pt;}
.h2b{height:53.066402pt;}
.h10{height:56.250402pt;}
.h28{height:56.255735pt;}
.h4{height:58.205733pt;}
.h2f{height:58.211067pt;}
.h19{height:58.218402pt;}
.h21{height:60.173733pt;}
.ha{height:60.917069pt;}
.h14{height:60.922402pt;}
.h34{height:62.872400pt;}
.h36{height:62.877733pt;}
.h2d{height:63.121109pt;}
.h2c{height:63.126443pt;}
.h23{height:73.613733pt;}
.h35{height:73.626402pt;}
.hc{height:76.182443pt;}
.h1a{height:76.187776pt;}
.hb{height:76.810402pt;}
.h25{height:78.765733pt;}
.h16{height:78.771067pt;}
.h15{height:79.519735pt;}
.h18{height:82.157733pt;}
.h37{height:82.163067pt;}
.h1f{height:82.906402pt;}
.h31{height:90.956800pt;}
.h1e{height:91.926443pt;}
.hf{height:92.449109pt;}
.hd{height:92.454443pt;}
.h20{height:95.313109pt;}
.h30{height:101.944400pt;}
.h1b{height:111.579776pt;}
.h27{height:111.581733pt;}
.h1d{height:111.585109pt;}
.h32{height:134.690133pt;}
.he{height:136.187776pt;}
.h8{height:136.193109pt;}
.h33{height:149.290402pt;}
.h22{height:153.365069pt;}
.h26{height:155.318443pt;}
.h1c{height:155.323776pt;}
.h7{height:166.251776pt;}
.h2e{height:166.571776pt;}
.h29{height:167.665109pt;}
.h12{height:167.670443pt;}
.h2a{height:185.382443pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:96.000000pt;}
.x8a{left:110.601333pt;}
.x5{left:111.940000pt;}
.x1{left:114.156000pt;}
.xdf{left:116.662667pt;}
.xb6{left:118.489333pt;}
.xa3{left:128.850667pt;}
.x4e{left:131.768000pt;}
.x8f{left:133.305333pt;}
.x6a{left:134.720000pt;}
.xb8{left:136.766667pt;}
.x8e{left:138.114667pt;}
.xb7{left:141.576000pt;}
.x3{left:143.821333pt;}
.x4c{left:153.381333pt;}
.x3b{left:155.354667pt;}
.x90{left:157.277333pt;}
.x9d{left:160.832000pt;}
.x73{left:162.346667pt;}
.x58{left:171.176000pt;}
.x8c{left:173.513333pt;}
.x8b{left:178.322667pt;}
.xb9{left:182.656000pt;}
.x97{left:184.357333pt;}
.xa4{left:189.816000pt;}
.xa5{left:191.525333pt;}
.x7f{left:193.093333pt;}
.x6c{left:195.922667pt;}
.x5a{left:197.030667pt;}
.xa9{left:198.010667pt;}
.x6b{left:202.441333pt;}
.x9a{left:204.728000pt;}
.xf{left:206.289333pt;}
.x1e{left:209.694667pt;}
.x99{left:212.814667pt;}
.x3d{left:215.501333pt;}
.x12{left:217.300000pt;}
.xb1{left:219.041333pt;}
.x6d{left:221.604000pt;}
.x86{left:223.629333pt;}
.x32{left:224.594667pt;}
.xb0{left:225.560000pt;}
.x10{left:228.093333pt;}
.x85{left:230.148000pt;}
.xd8{left:231.108000pt;}
.x59{left:235.185333pt;}
.x4f{left:236.957333pt;}
.x8d{left:243.365333pt;}
.x52{left:244.761333pt;}
.xb2{left:245.940000pt;}
.x9e{left:247.480000pt;}
.x2d{left:249.878667pt;}
.x2e{left:251.096000pt;}
.x3c{left:252.066667pt;}
.xce{left:253.388000pt;}
.x9b{left:255.352000pt;}
.xd4{left:256.849333pt;}
.x2c{left:257.965333pt;}
.x74{left:258.874667pt;}
.x5c{left:259.942667pt;}
.x5b{left:264.752000pt;}
.x7a{left:266.678667pt;}
.x64{left:267.744000pt;}
.x65{left:269.453333pt;}
.x20{left:270.896000pt;}
.x4{left:272.234667pt;}
.x8{left:273.370667pt;}
.x48{left:274.840000pt;}
.xa6{left:276.897333pt;}
.x1f{left:278.984000pt;}
.x47{left:281.561333pt;}
.x5d{left:283.914667pt;}
.x34{left:285.797333pt;}
.x7{left:287.561333pt;}
.x33{left:292.316000pt;}
.x66{left:293.425333pt;}
.xad{left:295.609333pt;}
.x22{left:296.578667pt;}
.x23{left:298.288000pt;}
.x40{left:301.197333pt;}
.x21{left:303.097333pt;}
.xaa{left:304.718667pt;}
.x2f{left:306.572000pt;}
.x11{left:309.290667pt;}
.x35{left:311.478667pt;}
.x9{left:315.164000pt;}
.xbf{left:316.945333pt;}
.xc7{left:318.646667pt;}
.xdb{left:321.072000pt;}
.x80{left:321.998667pt;}
.x75{left:323.769333pt;}
.xde{left:324.802667pt;}
.xcd{left:326.209333pt;}
.x1c{left:327.665333pt;}
.x91{left:329.397333pt;}
.x6e{left:330.288000pt;}
.x7b{left:331.573333pt;}
.x98{left:332.468000pt;}
.x13{left:334.028000pt;}
.xa0{left:336.306667pt;}
.xc5{left:338.422667pt;}
.x81{left:339.377333pt;}
.xb3{left:341.294667pt;}
.x49{left:347.761333pt;}
.x2{left:348.962667pt;}
.xaf{left:351.741333pt;}
.x24{left:353.272000pt;}
.x87{left:356.224000pt;}
.xae{left:358.261333pt;}
.x41{left:361.009333pt;}
.xc2{left:363.272000pt;}
.xb{left:366.564000pt;}
.xc{left:368.273333pt;}
.x1d{left:369.846667pt;}
.xa{left:372.430667pt;}
.x16{left:374.957333pt;}
.xd2{left:376.258667pt;}
.xcc{left:378.057333pt;}
.x5e{left:379.934667pt;}
.xd5{left:381.160000pt;}
.x19{left:382.761333pt;}
.x76{left:383.840000pt;}
.xc8{left:385.474667pt;}
.xda{left:386.961333pt;}
.xd9{left:388.004000pt;}
.x83{left:389.873333pt;}
.x7c{left:391.644000pt;}
.x14{left:393.840000pt;}
.x82{left:399.448000pt;}
.x50{left:400.676000pt;}
.x67{left:402.996000pt;}
.xe{left:404.928000pt;}
.xc0{left:406.424000pt;}
.x53{left:408.480000pt;}
.xc9{left:411.144000pt;}
.x9c{left:412.576000pt;}
.x30{left:415.852000pt;}
.xd{left:418.574667pt;}
.x36{left:420.162667pt;}
.x5f{left:421.822667pt;}
.xa2{left:424.158667pt;}
.xca{left:425.737333pt;}
.x42{left:428.626667pt;}
.xa1{left:432.578667pt;}
.xd3{left:435.086667pt;}
.x44{left:436.430667pt;}
.x89{left:437.802667pt;}
.xdc{left:438.784000pt;}
.xb4{left:444.468000pt;}
.xc3{left:445.430667pt;}
.x25{left:447.770667pt;}
.x26{left:449.480000pt;}
.x15{left:453.652000pt;}
.xc6{left:457.312000pt;}
.xba{left:462.014667pt;}
.xd6{left:464.098667pt;}
.x51{left:465.829333pt;}
.xab{left:467.336000pt;}
.x17{left:469.860000pt;}
.x27{left:473.452000pt;}
.xdd{left:475.190667pt;}
.xcb{left:476.305333pt;}
.x1a{left:477.664000pt;}
.x3e{left:479.850667pt;}
.x55{left:481.437333pt;}
.x77{left:482.664000pt;}
.xcf{left:483.726667pt;}
.xa7{left:487.464000pt;}
.x43{left:488.438667pt;}
.x4a{left:490.950667pt;}
.xc4{left:491.857333pt;}
.x6f{left:494.409333pt;}
.x68{left:498.298667pt;}
.x61{left:499.721333pt;}
.x62{left:500.940000pt;}
.x45{left:504.046667pt;}
.x31{left:506.465333pt;}
.x60{left:507.809333pt;}
.xd1{left:510.281333pt;}
.x29{left:511.245333pt;}
.x2a{left:512.464000pt;}
.x28{left:519.333333pt;}
.x38{left:520.572000pt;}
.xd7{left:522.156000pt;}
.x37{left:523.336000pt;}
.x92{left:526.284000pt;}
.x93{left:527.501333pt;}
.xd0{left:532.333333pt;}
.xbb{left:533.289333pt;}
.xbc{left:534.506667pt;}
.xc1{left:537.793333pt;}
.x69{left:540.834667pt;}
.x88{left:546.893333pt;}
.x78{left:547.817333pt;}
.x63{left:550.345333pt;}
.x94{left:551.965333pt;}
.x84{left:553.850667pt;}
.x18{left:556.958667pt;}
.xb5{left:559.269333pt;}
.x7d{left:563.425333pt;}
.x1b{left:564.762667pt;}
.x3f{left:566.690667pt;}
.x2b{left:567.940000pt;}
.xbd{left:570.705333pt;}
.x46{left:571.662667pt;}
.x4b{left:574.214667pt;}
.x96{left:586.152000pt;}
.x56{left:588.065333pt;}
.x95{left:594.238667pt;}
.x39{left:598.118667pt;}
.xbe{left:603.046667pt;}
.x79{left:607.629333pt;}
.xac{left:612.046667pt;}
.x70{left:613.209333pt;}
.xa8{left:618.532000pt;}
.x4d{left:619.832000pt;}
.x7e{left:623.237333pt;}
.x71{left:631.461333pt;}
.x54{left:637.352000pt;}
.x3a{left:640.648000pt;}
.x57{left:652.960000pt;}
.x72{left:669.598667pt;}
.x9f{left:707.602667pt;}
}




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