
    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_73cf4b19cbb08e3a4c777462.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.951000;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_26d6e8f32056f8393453261c.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_185c22f8cd9ba45cfcebdf7b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4fa32549975c35e4401c1bbc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.704000;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_426cfff358f2ba464833c643.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727000;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_e4d1d1066387e128e491d2c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_13e50ecb508cd486e8987334.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a36b98435543b2b311fdbccc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.781250;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_15f57a78427dab76ca0e0c3b.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_1b7c35d63da440ef95d60df6.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.399000;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_bbb3edabac4aaf3ccb1e16ab.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.518000;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_f163531295622ac830628053.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.725000;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_29caa3f53038df27d305a7a2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.705000;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_474208e0ef62fb83bb1418e1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.665000;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_43be863863bcc030076a2ea4.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_976633267c8ccfbe7c625d0e.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v1c{vertical-align:-162.396000px;}
.v1d{vertical-align:-148.776000px;}
.v21{vertical-align:-111.900000px;}
.v1f{vertical-align:-101.142000px;}
.v20{vertical-align:-71.526000px;}
.vd{vertical-align:-58.104000px;}
.v2{vertical-align:-31.236000px;}
.ve{vertical-align:-29.616000px;}
.v1a{vertical-align:-15.558000px;}
.v3{vertical-align:-10.128000px;}
.v1b{vertical-align:-1.938000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:6.972000px;}
.v15{vertical-align:13.974000px;}
.v5{vertical-align:17.730000px;}
.v17{vertical-align:18.930000px;}
.v10{vertical-align:19.980000px;}
.v14{vertical-align:24.732000px;}
.v4{vertical-align:26.034000px;}
.v13{vertical-align:28.242000px;}
.v6{vertical-align:29.616000px;}
.v1{vertical-align:31.236000px;}
.v16{vertical-align:43.764000px;}
.v7{vertical-align:47.352000px;}
.v9{vertical-align:48.528000px;}
.v11{vertical-align:49.596000px;}
.vf{vertical-align:51.738000px;}
.v12{vertical-align:58.104000px;}
.v18{vertical-align:68.130000px;}
.vc{vertical-align:75.834000px;}
.vb{vertical-align:78.816000px;}
.v1e{vertical-align:97.632000px;}
.v22{vertical-align:101.142000px;}
.va{vertical-align:107.304000px;}
.v19{vertical-align:146.838000px;}
.ls7{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000103px;}
.lsaa{letter-spacing:0.000445px;}
.ls6e{letter-spacing:0.000472px;}
.ls2f{letter-spacing:0.000760px;}
.ls92{letter-spacing:0.001114px;}
.ls85{letter-spacing:0.001165px;}
.ls5e{letter-spacing:0.001910px;}
.ls80{letter-spacing:0.001918px;}
.ls3a{letter-spacing:0.002143px;}
.ls65{letter-spacing:0.002227px;}
.ls52{letter-spacing:0.002534px;}
.ls45{letter-spacing:0.002657px;}
.ls40{letter-spacing:0.002759px;}
.lsa9{letter-spacing:0.002991px;}
.ls2b{letter-spacing:0.003056px;}
.lsa2{letter-spacing:0.003471px;}
.ls9c{letter-spacing:0.003633px;}
.lsa8{letter-spacing:0.003736px;}
.ls99{letter-spacing:0.004664px;}
.ls10{letter-spacing:0.004852px;}
.ls32{letter-spacing:0.005299px;}
.ls6c{letter-spacing:0.005587px;}
.ls1a{letter-spacing:0.005591px;}
.ls86{letter-spacing:0.005831px;}
.ls83{letter-spacing:0.006760px;}
.ls5c{letter-spacing:0.007910px;}
.ls3e{letter-spacing:0.586737px;}
.ls38{letter-spacing:0.592737px;}
.ls91{letter-spacing:2.569240px;}
.ls5b{letter-spacing:2.569918px;}
.ls76{letter-spacing:2.668328px;}
.ls73{letter-spacing:2.674328px;}
.ls2d{letter-spacing:2.982960px;}
.ls2c{letter-spacing:2.984915px;}
.ls4a{letter-spacing:2.985072px;}
.ls5a{letter-spacing:2.986053px;}
.lsab{letter-spacing:2.986834px;}
.ls6b{letter-spacing:2.988792px;}
.ls81{letter-spacing:2.989289px;}
.ls9e{letter-spacing:2.990915px;}
.ls14{letter-spacing:2.991072px;}
.ls7d{letter-spacing:2.991226px;}
.ls29{letter-spacing:2.991537px;}
.ls20{letter-spacing:2.992053px;}
.ls0{letter-spacing:2.992200px;}
.ls7e{letter-spacing:2.995289px;}
.ls9d{letter-spacing:3.899724px;}
.ls59{letter-spacing:3.905724px;}
.ls69{letter-spacing:4.173471px;}
.ls68{letter-spacing:4.179471px;}
.lsac{letter-spacing:4.400783px;}
.ls17{letter-spacing:5.149910px;}
.ls12{letter-spacing:5.155910px;}
.ls82{letter-spacing:5.743488px;}
.ls3b{letter-spacing:6.115301px;}
.ls4e{letter-spacing:6.367460px;}
.ls5{letter-spacing:7.135599px;}
.ls60{letter-spacing:7.168404px;}
.ls5f{letter-spacing:7.171473px;}
.ls58{letter-spacing:7.172915px;}
.ls9b{letter-spacing:7.174404px;}
.ls28{letter-spacing:7.492752px;}
.ls4c{letter-spacing:7.658523px;}
.ls95{letter-spacing:7.664523px;}
.lsae{letter-spacing:8.083860px;}
.ls50{letter-spacing:8.581473px;}
.ls4{letter-spacing:9.329412px;}
.ls2{letter-spacing:9.335412px;}
.lsc{letter-spacing:9.749464px;}
.ls42{letter-spacing:9.754765px;}
.ls1b{letter-spacing:9.755464px;}
.ls48{letter-spacing:9.760765px;}
.ls4f{letter-spacing:11.566834px;}
.ls84{letter-spacing:11.948759px;}
.ls9f{letter-spacing:11.950664px;}
.ls37{letter-spacing:11.953114px;}
.ls53{letter-spacing:11.954759px;}
.ls1d{letter-spacing:11.957591px;}
.ls3{letter-spacing:12.322834px;}
.ls51{letter-spacing:14.280075px;}
.ls61{letter-spacing:14.361736px;}
.ls8e{letter-spacing:14.521240px;}
.ls1{letter-spacing:15.697460px;}
.ls11{letter-spacing:15.935518px;}
.lsd{letter-spacing:15.937473px;}
.ls66{letter-spacing:15.938227px;}
.ls90{letter-spacing:15.938759px;}
.ls8a{letter-spacing:15.941518px;}
.ls3c{letter-spacing:15.943473px;}
.lsb{letter-spacing:16.369473px;}
.ls34{letter-spacing:17.147002px;}
.ls4d{letter-spacing:18.597072px;}
.ls2a{letter-spacing:18.927072px;}
.lsaf{letter-spacing:18.930960px;}
.ls56{letter-spacing:18.933072px;}
.ls19{letter-spacing:19.126404px;}
.lsad{letter-spacing:19.225956px;}
.ls33{letter-spacing:19.281072px;}
.ls87{letter-spacing:19.919123px;}
.ls27{letter-spacing:19.919518px;}
.ls78{letter-spacing:19.922809px;}
.ls24{letter-spacing:19.924800px;}
.ls39{letter-spacing:19.925518px;}
.lsa7{letter-spacing:20.251114px;}
.ls6a{letter-spacing:21.532404px;}
.ls72{letter-spacing:21.702492px;}
.ls96{letter-spacing:21.736381px;}
.ls49{letter-spacing:22.057301px;}
.ls54{letter-spacing:22.495918px;}
.ls7b{letter-spacing:22.501486px;}
.lsa0{letter-spacing:22.501918px;}
.ls70{letter-spacing:22.910915px;}
.lsa3{letter-spacing:22.911072px;}
.ls23{letter-spacing:22.917072px;}
.ls57{letter-spacing:23.105518px;}
.ls9a{letter-spacing:23.107473px;}
.ls7c{letter-spacing:23.416381px;}
.ls1c{letter-spacing:23.867464px;}
.ls35{letter-spacing:23.945034px;}
.lsf{letter-spacing:24.305518px;}
.ls75{letter-spacing:25.316915px;}
.ls7a{letter-spacing:25.987486px;}
.lsa5{letter-spacing:25.987918px;}
.ls6f{letter-spacing:26.246915px;}
.lsa6{letter-spacing:26.397072px;}
.ls1f{letter-spacing:26.403072px;}
.ls44{letter-spacing:26.439332px;}
.ls63{letter-spacing:26.879123px;}
.ls30{letter-spacing:26.986381px;}
.ls21{letter-spacing:26.992381px;}
.ls18{letter-spacing:27.095518px;}
.ls8c{letter-spacing:27.399072px;}
.ls64{letter-spacing:27.495736px;}
.ls8f{letter-spacing:29.002053px;}
.ls41{letter-spacing:29.008053px;}
.lsa{letter-spacing:29.297034px;}
.ls77{letter-spacing:29.680765px;}
.ls36{letter-spacing:30.545034px;}
.ls43{letter-spacing:30.754381px;}
.ls6d{letter-spacing:31.151518px;}
.ls74{letter-spacing:32.086765px;}
.ls13{letter-spacing:32.626053px;}
.ls26{letter-spacing:33.117072px;}
.ls6{letter-spacing:33.492075px;}
.ls93{letter-spacing:33.741537px;}
.lsa4{letter-spacing:34.283518px;}
.ls9{letter-spacing:35.116404px;}
.ls3f{letter-spacing:35.237518px;}
.ls8d{letter-spacing:35.243518px;}
.ls8{letter-spacing:35.865600px;}
.ls16{letter-spacing:39.502404px;}
.ls89{letter-spacing:46.521471px;}
.ls71{letter-spacing:48.305518px;}
.ls47{letter-spacing:50.434404px;}
.ls22{letter-spacing:56.038053px;}
.ls7f{letter-spacing:58.192145px;}
.ls31{letter-spacing:63.256053px;}
.ls94{letter-spacing:175.501114px;}
.ls3d{letter-spacing:522.649114px;}
.ls46{letter-spacing:534.367114px;}
.lsb0{letter-spacing:610.027114px;}
.ls4b{letter-spacing:631.513114px;}
.lsa1{letter-spacing:739.603114px;}
.ls2e{letter-spacing:765.211114px;}
.ls97{letter-spacing:789.175114px;}
.ls1e{letter-spacing:835.597114px;}
.ls8b{letter-spacing:868.897114px;}
.ls15{letter-spacing:898.033114px;}
.ls98{letter-spacing:907.363114px;}
.ls88{letter-spacing:935.179114px;}
.ls79{letter-spacing:945.409114px;}
.ls5d{letter-spacing:953.539114px;}
.ls62{letter-spacing:998.779114px;}
.ls55{letter-spacing:1019.677114px;}
.lse{letter-spacing:1056.211114px;}
.ls67{letter-spacing:1090.777114px;}
.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;}
}
.ws85{word-spacing:-71.731200px;}
.ws96{word-spacing:-56.789591px;}
.ws71{word-spacing:-51.775580px;}
.ws44{word-spacing:-45.664082px;}
.ws25{word-spacing:-37.945805px;}
.ws24{word-spacing:-37.515418px;}
.ws20{word-spacing:-37.013299px;}
.ws23{word-spacing:-35.076557px;}
.ws90{word-spacing:-33.684972px;}
.ws4a{word-spacing:-33.211407px;}
.ws17{word-spacing:-32.278875px;}
.ws67{word-spacing:-31.174380px;}
.ws4e{word-spacing:-31.102648px;}
.ws1c{word-spacing:-30.772685px;}
.ws22{word-spacing:-30.055373px;}
.ws1f{word-spacing:-29.840179px;}
.ws21{word-spacing:-28.405555px;}
.ws9b{word-spacing:-25.764528px;}
.ws84{word-spacing:-25.707731px;}
.wsa2{word-spacing:-22.416000px;}
.ws1e{word-spacing:-22.021478px;}
.ws49{word-spacing:-19.510886px;}
.ws1a{word-spacing:-19.439155px;}
.ws50{word-spacing:-19.104330px;}
.wscc{word-spacing:-18.690783px;}
.wsce{word-spacing:-18.684783px;}
.wsa{word-spacing:-18.183288px;}
.wsf3{word-spacing:-17.932800px;}
.ws51{word-spacing:-15.995991px;}
.ws7a{word-spacing:-14.285816px;}
.ws7d{word-spacing:-14.282744px;}
.wsa7{word-spacing:-14.111859px;}
.ws8c{word-spacing:-13.971462px;}
.ws63{word-spacing:-12.571003px;}
.ws62{word-spacing:-12.549113px;}
.ws66{word-spacing:-11.159244px;}
.ws48{word-spacing:-11.157034px;}
.ws1d{word-spacing:-10.903142px;}
.ws7c{word-spacing:-10.298744px;}
.wsb3{word-spacing:-9.609034px;}
.wsd4{word-spacing:-7.551900px;}
.wsac{word-spacing:-7.540630px;}
.ws61{word-spacing:-7.181244px;}
.ws65{word-spacing:-7.175244px;}
.ws46{word-spacing:-7.173034px;}
.ws8e{word-spacing:-7.167034px;}
.ws6b{word-spacing:-6.814856px;}
.ws7b{word-spacing:-6.812744px;}
.ws7f{word-spacing:-6.446744px;}
.wsaf{word-spacing:-4.054630px;}
.ws74{word-spacing:-3.873485px;}
.ws37{word-spacing:-3.765888px;}
.ws68{word-spacing:-3.689244px;}
.ws69{word-spacing:-3.687034px;}
.ws4f{word-spacing:-3.681034px;}
.ws64{word-spacing:-3.586560px;}
.ws72{word-spacing:-3.573723px;}
.wsd1{word-spacing:-3.514829px;}
.wsee{word-spacing:-3.443098px;}
.ws38{word-spacing:-3.299635px;}
.ws5a{word-spacing:-3.227904px;}
.ws5b{word-spacing:-3.084442px;}
.ws45{word-spacing:-3.051034px;}
.wsdc{word-spacing:-3.012710px;}
.wse0{word-spacing:-2.654054px;}
.wsde{word-spacing:-2.636129px;}
.wsb8{word-spacing:-1.900877px;}
.wsbc{word-spacing:-1.865011px;}
.wsa9{word-spacing:-1.793280px;}
.wsb9{word-spacing:-1.649818px;}
.wsa6{word-spacing:-1.506355px;}
.wsb{word-spacing:-1.492365px;}
.wsca{word-spacing:-1.075968px;}
.wsf{word-spacing:-0.576000px;}
.wsb5{word-spacing:-0.573850px;}
.ws11{word-spacing:-0.510546px;}
.ws4b{word-spacing:-0.286925px;}
.wse3{word-spacing:-0.215194px;}
.ws3f{word-spacing:-0.071731px;}
.ws9{word-spacing:-0.065455px;}
.wsd2{word-spacing:-0.046431px;}
.ws16{word-spacing:0.000000px;}
.ws30{word-spacing:0.215194px;}
.ws75{word-spacing:0.286925px;}
.wscf{word-spacing:0.394472px;}
.ws47{word-spacing:0.430387px;}
.wsc{word-spacing:0.471273px;}
.wsa8{word-spacing:0.573850px;}
.ws53{word-spacing:0.645581px;}
.ws52{word-spacing:0.753178px;}
.ws5f{word-spacing:0.818966px;}
.wsb2{word-spacing:0.850512px;}
.wsaa{word-spacing:0.932506px;}
.ws8{word-spacing:1.060365px;}
.wsdf{word-spacing:1.147699px;}
.wsb0{word-spacing:1.362893px;}
.wse{word-spacing:1.584001px;}
.ws6{word-spacing:1.845820px;}
.ws93{word-spacing:1.936742px;}
.wsc1{word-spacing:2.008474px;}
.ws31{word-spacing:2.080205px;}
.ws43{word-spacing:2.295398px;}
.ws7{word-spacing:2.304002px;}
.ws34{word-spacing:2.510592px;}
.wsf0{word-spacing:2.582323px;}
.ws10{word-spacing:2.631275px;}
.ws9a{word-spacing:2.797517px;}
.ws98{word-spacing:2.810959px;}
.ws99{word-spacing:2.869248px;}
.ws33{word-spacing:2.905114px;}
.wsdd{word-spacing:3.012710px;}
.wsc9{word-spacing:3.084442px;}
.wsc7{word-spacing:3.335501px;}
.wsc4{word-spacing:3.371366px;}
.ws5c{word-spacing:3.514829px;}
.ws5d{word-spacing:3.586560px;}
.ws1{word-spacing:3.613094px;}
.ws4c{word-spacing:3.730022px;}
.ws6d{word-spacing:3.800966px;}
.ws95{word-spacing:3.801754px;}
.wsfd{word-spacing:3.863866px;}
.wseb{word-spacing:3.868512px;}
.wse7{word-spacing:3.870065px;}
.wsfb{word-spacing:3.871068px;}
.ws15{word-spacing:3.873485px;}
.ws58{word-spacing:3.890959px;}
.wsfe{word-spacing:3.894747px;}
.ws6a{word-spacing:3.896909px;}
.wsa3{word-spacing:3.900405px;}
.ws4d{word-spacing:3.945216px;}
.wsd6{word-spacing:4.016947px;}
.ws77{word-spacing:4.088678px;}
.ws81{word-spacing:4.232141px;}
.ws80{word-spacing:4.303872px;}
.ws94{word-spacing:4.339738px;}
.ws1b{word-spacing:4.483200px;}
.wsec{word-spacing:4.487812px;}
.ws41{word-spacing:4.519066px;}
.wsef{word-spacing:4.590797px;}
.ws3{word-spacing:4.648169px;}
.ws76{word-spacing:4.698394px;}
.ws2{word-spacing:4.734246px;}
.ws29{word-spacing:4.805990px;}
.wscd{word-spacing:4.877722px;}
.ws5e{word-spacing:4.949453px;}
.wsab{word-spacing:5.021184px;}
.wsba{word-spacing:5.092915px;}
.wsa1{word-spacing:5.164646px;}
.ws54{word-spacing:5.308109px;}
.ws27{word-spacing:5.379825px;}
.ws9f{word-spacing:5.379840px;}
.wsdb{word-spacing:5.451571px;}
.ws2e{word-spacing:5.666765px;}
.ws4{word-spacing:5.838550px;}
.wsf9{word-spacing:5.881958px;}
.wsbb{word-spacing:5.913681px;}
.wsa0{word-spacing:5.917824px;}
.wsfc{word-spacing:5.953690px;}
.ws40{word-spacing:6.025421px;}
.wsea{word-spacing:6.097152px;}
.ws57{word-spacing:6.168883px;}
.ws2b{word-spacing:6.240614px;}
.ws42{word-spacing:6.455775px;}
.wsc2{word-spacing:6.455808px;}
.wsf1{word-spacing:6.527539px;}
.ws3a{word-spacing:6.814464px;}
.wsb6{word-spacing:6.886195px;}
.ws3d{word-spacing:6.957926px;}
.ws56{word-spacing:7.137254px;}
.ws2a{word-spacing:7.173120px;}
.ws87{word-spacing:7.388314px;}
.ws79{word-spacing:7.603507px;}
.ws70{word-spacing:7.746970px;}
.ws0{word-spacing:7.748438px;}
.ws39{word-spacing:7.782835px;}
.ws6f{word-spacing:7.818701px;}
.wsb1{word-spacing:7.854566px;}
.ws28{word-spacing:7.890432px;}
.ws5{word-spacing:7.933098px;}
.ws88{word-spacing:7.954068px;}
.ws3e{word-spacing:7.962163px;}
.ws86{word-spacing:7.976959px;}
.ws2c{word-spacing:8.033894px;}
.wsbe{word-spacing:8.177357px;}
.wsd8{word-spacing:8.320819px;}
.ws60{word-spacing:8.392550px;}
.ws3c{word-spacing:8.464282px;}
.ws8d{word-spacing:8.607744px;}
.wsd3{word-spacing:8.797470px;}
.ws89{word-spacing:8.800046px;}
.wse9{word-spacing:8.822938px;}
.wse2{word-spacing:8.894669px;}
.ws55{word-spacing:9.002266px;}
.wsc3{word-spacing:9.073997px;}
.wsd{word-spacing:9.176735px;}
.wse6{word-spacing:9.253325px;}
.ws13{word-spacing:9.325056px;}
.wsbd{word-spacing:9.432653px;}
.wsf2{word-spacing:9.611981px;}
.wsd7{word-spacing:9.683712px;}
.ws3b{word-spacing:9.719578px;}
.ws7e{word-spacing:9.827174px;}
.wsf5{word-spacing:9.898906px;}
.wse1{word-spacing:10.185830px;}
.wsc8{word-spacing:10.401024px;}
.ws92{word-spacing:10.472755px;}
.wsfa{word-spacing:10.544486px;}
.wse4{word-spacing:10.616218px;}
.ws2d{word-spacing:10.687949px;}
.ws2f{word-spacing:10.759680px;}
.ws59{word-spacing:11.118336px;}
.wsed{word-spacing:11.190067px;}
.ws6e{word-spacing:11.333530px;}
.ws6c{word-spacing:11.405261px;}
.wsd5{word-spacing:11.692186px;}
.wse8{word-spacing:11.763917px;}
.wsff{word-spacing:11.979110px;}
.ws91{word-spacing:12.014976px;}
.wse5{word-spacing:12.122573px;}
.ws8b{word-spacing:12.194304px;}
.ws78{word-spacing:12.266035px;}
.wsae{word-spacing:12.288828px;}
.wsd9{word-spacing:12.337766px;}
.ws36{word-spacing:12.552960px;}
.wscb{word-spacing:12.768154px;}
.wsb7{word-spacing:12.911616px;}
.wsa4{word-spacing:13.342003px;}
.wsb4{word-spacing:13.802966px;}
.wsf4{word-spacing:13.844122px;}
.wsc6{word-spacing:13.915853px;}
.ws8a{word-spacing:14.023450px;}
.ws83{word-spacing:14.274509px;}
.ws35{word-spacing:14.382106px;}
.ws14{word-spacing:14.776627px;}
.wsc0{word-spacing:14.920090px;}
.wsf8{word-spacing:15.063552px;}
.wsf6{word-spacing:15.135283px;}
.wsda{word-spacing:15.493939px;}
.wsc5{word-spacing:15.960192px;}
.ws19{word-spacing:16.354714px;}
.ws82{word-spacing:16.390579px;}
.ws9e{word-spacing:17.000294px;}
.wsf7{word-spacing:17.502413px;}
.ws9d{word-spacing:19.546752px;}
.ws12{word-spacing:19.640022px;}
.wsa5{word-spacing:21.724046px;}
.wsbf{word-spacing:30.871398px;}
.ws18{word-spacing:42.572467px;}
.wsd0{word-spacing:58.281600px;}
.ws32{word-spacing:69.937725px;}
.ws26{word-spacing:83.925075px;}
.wsad{word-spacing:735.975792px;}
.ws73{word-spacing:844.651853px;}
.ws8f{word-spacing:963.548627px;}
.ws97{word-spacing:1021.725055px;}
.ws9c{word-spacing:1129.184527px;}
._25{margin-left:-41.675827px;}
._33{margin-left:-40.566664px;}
._15{margin-left:-37.802342px;}
._13{margin-left:-35.865600px;}
._24{margin-left:-34.684705px;}
._14{margin-left:-31.992115px;}
._17{margin-left:-17.932800px;}
._3a{margin-left:-16.680174px;}
._35{margin-left:-14.920090px;}
._3e{margin-left:-13.241573px;}
._1{margin-left:-11.653650px;}
._26{margin-left:-9.004936px;}
._4{margin-left:-7.058330px;}
._2{margin-left:-5.432732px;}
._0{margin-left:-3.843225px;}
._5{margin-left:-2.324084px;}
._c{margin-left:-1.077770px;}
._3{width:1.832729px;}
._8{width:3.599186px;}
._46{width:5.422864px;}
._9{width:7.110472px;}
._45{width:8.824638px;}
._42{width:11.692186px;}
._44{width:13.575120px;}
._4a{width:16.375885px;}
._22{width:18.034103px;}
._b{width:19.865917px;}
._4c{width:21.467534px;}
._1d{width:22.681418px;}
._10{width:23.771713px;}
._4f{width:25.410768px;}
._1c{width:26.798770px;}
._a{width:27.851378px;}
._43{width:28.922000px;}
._7{width:30.044554px;}
._51{width:31.126861px;}
._d{width:32.207309px;}
._50{width:33.512830px;}
._41{width:34.847004px;}
._20{width:35.865600px;}
._3f{width:37.486718px;}
._4b{width:38.615930px;}
._4e{width:39.802847px;}
._48{width:41.367254px;}
._6{width:42.644118px;}
._27{width:44.473344px;}
._2f{width:46.553549px;}
._36{width:47.988173px;}
._47{width:49.070936px;}
._1e{width:50.986524px;}
._11{width:52.161368px;}
._3c{width:53.296282px;}
._2c{width:54.417065px;}
._21{width:55.773675px;}
._38{width:57.169766px;}
._3d{width:61.832294px;}
._34{width:62.836531px;}
._30{width:63.889147px;}
._18{width:64.988467px;}
._2b{width:67.355597px;}
._1f{width:68.571880px;}
._1a{width:70.382666px;}
._f{width:71.802931px;}
._28{width:74.633644px;}
._2d{width:75.891610px;}
._1b{width:80.338944px;}
._4d{width:82.936199px;}
._40{width:96.836850px;}
._16{width:110.641793px;}
._2a{width:111.907016px;}
._49{width:116.203950px;}
._12{width:146.331648px;}
._23{width:1124.017141px;}
._29{width:1183.625768px;}
._3b{width:1444.443159px;}
._39{width:1615.171430px;}
._32{width:1634.854465px;}
._19{width:1858.038901px;}
._37{width:2027.984486px;}
._e{width:2232.335912px;}
._31{width:2249.562163px;}
._2e{width:2267.494963px;}
.fc2{color:transparent;}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:35.865600px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs7{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:10.389960px;}
.y1a{bottom:61.467000px;}
.ye0{bottom:106.299000px;}
.y100{bottom:110.308500px;}
.y42{bottom:117.243000px;}
.ybe{bottom:117.580500px;}
.ydf{bottom:127.968000px;}
.y76{bottom:129.447000px;}
.yff{bottom:131.976000px;}
.y41{bottom:138.912000px;}
.y1bc{bottom:143.394000px;}
.y14f{bottom:149.637000px;}
.y75{bottom:151.116000px;}
.ybd{bottom:152.748000px;}
.yfe{bottom:153.645000px;}
.yde{bottom:153.711000px;}
.ybc{bottom:157.182000px;}
.y1bb{bottom:165.063000px;}
.ydd{bottom:166.012500px;}
.y97{bottom:166.089000px;}
.y14e{bottom:171.306000px;}
.y74{bottom:172.785000px;}
.y40{bottom:178.140000px;}
.y119{bottom:179.073000px;}
.y1ba{bottom:186.732000px;}
.y96{bottom:187.758000px;}
.y133{bottom:191.389500px;}
.y73{bottom:194.452500px;}
.ybb{bottom:194.640000px;}
.y132{bottom:195.822000px;}
.yba{bottom:199.072500px;}
.yfd{bottom:200.407500px;}
.y118{bottom:200.742000px;}
.y14d{bottom:204.556500px;}
.ydc{bottom:212.863500px;}
.y72{bottom:216.121500px;}
.y3f{bottom:217.368000px;}
.y131{bottom:222.771000px;}
.y1b9{bottom:223.344000px;}
.yb9{bottom:223.780500px;}
.y18b{bottom:226.891500px;}
.y130{bottom:227.205000px;}
.yb8{bottom:228.214500px;}
.y95{bottom:228.853500px;}
.yfc{bottom:231.790500px;}
.y117{bottom:233.992500px;}
.ydb{bottom:234.532500px;}
.y71{bottom:237.790500px;}
.y3e{bottom:239.037000px;}
.y176{bottom:241.339500px;}
.y1b8{bottom:245.013000px;}
.y18a{bottom:248.559000px;}
.yb7{bottom:252.921000px;}
.y14c{bottom:255.405000px;}
.yb6{bottom:257.355000px;}
.y70{bottom:259.459500px;}
.y3d{bottom:260.706000px;}
.y94{bottom:262.104000px;}
.y175{bottom:263.008500px;}
.y116{bottom:267.243000px;}
.y12f{bottom:270.543000px;}
.y19{bottom:274.020000px;}
.yfb{bottom:275.127000px;}
.y14b{bottom:277.074000px;}
.yda{bottom:281.182500px;}
.y1b7{bottom:281.626500px;}
.y189{bottom:281.809500px;}
.y3c{bottom:282.373500px;}
.y12e{bottom:292.210500px;}
.y6f{bottom:292.710000px;}
.y18{bottom:295.689000px;}
.y174{bottom:296.259000px;}
.yb5{bottom:298.450500px;}
.yd9{bottom:302.851500px;}
.y1b6{bottom:303.295500px;}
.y93{bottom:308.866500px;}
.y14a{bottom:311.475000px;}
.yfa{bottom:314.977500px;}
.y17{bottom:317.358000px;}
.y115{bottom:319.234500px;}
.y3b{bottom:321.601500px;}
.y92{bottom:330.535500px;}
.yb4{bottom:332.871000px;}
.y149{bottom:333.144000px;}
.y188{bottom:333.802500px;}
.yb3{bottom:337.305000px;}
.y173{bottom:338.587500px;}
.y12d{bottom:338.973000px;}
.yf9{bottom:339.387000px;}
.y1b5{bottom:339.907500px;}
.y114{bottom:340.903500px;}
.yd8{bottom:341.692500px;}
.y1d2{bottom:342.721500px;}
.y172{bottom:343.020000px;}
.y3a{bottom:343.270500px;}
.y6e{bottom:344.701500px;}
.y91{bottom:352.204500px;}
.y187{bottom:355.471500px;}
.y16{bottom:356.959500px;}
.y1b4{bottom:361.576500px;}
.yf8{bottom:362.550000px;}
.y113{bottom:362.572500px;}
.y1d1{bottom:364.390500px;}
.y39{bottom:364.939500px;}
.y6d{bottom:366.370500px;}
.y148{bottom:367.545000px;}
.y171{bottom:369.969000px;}
.y12c{bottom:372.223500px;}
.y90{bottom:373.872000px;}
.y170{bottom:374.403000px;}
.y15{bottom:377.283000px;}
.yd7{bottom:380.535000px;}
.yf7{bottom:384.219000px;}
.y38{bottom:386.608500px;}
.yb2{bottom:388.114500px;}
.y186{bottom:388.722000px;}
.y147{bottom:389.214000px;}
.y112{bottom:395.823000px;}
.y14{bottom:397.606500px;}
.y1b3{bottom:398.188500px;}
.y1d0{bottom:401.004000px;}
.y6c{bottom:402.984000px;}
.y12b{bottom:405.474000px;}
.y37{bottom:408.276000px;}
.yd5{bottom:410.746500px;}
.yd6{bottom:412.497000px;}
.yf6{bottom:413.527500px;}
.y8f{bottom:416.202000px;}
.yd4{bottom:416.929500px;}
.yb1{bottom:417.255000px;}
.y16f{bottom:417.741000px;}
.y13{bottom:417.930000px;}
.y1b2{bottom:419.857500px;}
.y8e{bottom:420.634500px;}
.y146{bottom:421.462500px;}
.y1cf{bottom:422.671500px;}
.y6b{bottom:424.653000px;}
.yf5{bottom:425.827500px;}
.y36{bottom:429.945000px;}
.y185{bottom:430.252500px;}
.y19e{bottom:432.012000px;}
.y12{bottom:438.255000px;}
.y16e{bottom:439.408500px;}
.y1b1{bottom:441.526500px;}
.y184{bottom:442.554000px;}
.y111{bottom:442.585500px;}
.y12a{bottom:450.132000px;}
.yb0{bottom:451.114500px;}
.y35{bottom:451.614000px;}
.yaf{bottom:451.675500px;}
.y8d{bottom:452.814000px;}
.y145{bottom:454.713000px;}
.yae{bottom:456.109500px;}
.yd3{bottom:457.158000px;}
.y8c{bottom:457.248000px;}
.y11{bottom:458.578500px;}
.y1ce{bottom:459.285000px;}
.y6a{bottom:461.265000px;}
.y19d{bottom:471.439500px;}
.y110{bottom:471.726000px;}
.y16d{bottom:472.659000px;}
.y34{bottom:473.283000px;}
.yf4{bottom:473.400000px;}
.y1b0{bottom:478.138500px;}
.y10{bottom:478.902000px;}
.y1cd{bottom:480.954000px;}
.y69{bottom:482.934000px;}
.yd2{bottom:488.214000px;}
.y183{bottom:489.405000px;}
.yf3{bottom:495.069000px;}
.y8b{bottom:496.600500px;}
.yf{bottom:499.225500px;}
.y144{bottom:499.369500px;}
.y1af{bottom:499.807500px;}
.y1cc{bottom:502.623000px;}
.y8a{bottom:504.468000px;}
.yad{bottom:506.919000px;}
.y10f{bottom:508.338000px;}
.y89{bottom:508.900500px;}
.y129{bottom:510.031500px;}
.y33{bottom:512.511000px;}
.y16c{bottom:514.987500px;}
.y16b{bottom:514.989000px;}
.y16a{bottom:519.421500px;}
.y68{bottom:519.546000px;}
.ye{bottom:519.549000px;}
.y1ae{bottom:521.476500px;}
.y182{bottom:522.655500px;}
.y10e{bottom:530.007000px;}
.y19c{bottom:531.339000px;}
.yd1{bottom:531.552000px;}
.y128{bottom:531.700500px;}
.y32{bottom:534.180000px;}
.yac{bottom:536.059500px;}
.y1cb{bottom:539.235000px;}
.yd{bottom:539.874000px;}
.y67{bottom:541.215000px;}
.yf2{bottom:541.831500px;}
.y88{bottom:554.341500px;}
.y31{bottom:555.847500px;}
.y1ad{bottom:558.090000px;}
.y143{bottom:558.127500px;}
.y87{bottom:558.774000px;}
.y10d{bottom:559.147500px;}
.yc{bottom:560.197500px;}
.y1ca{bottom:560.904000px;}
.y169{bottom:562.759500px;}
.yf1{bottom:563.499000px;}
.y127{bottom:564.951000px;}
.y181{bottom:567.313500px;}
.y19b{bottom:570.766500px;}
.yab{bottom:572.671500px;}
.y30{bottom:577.516500px;}
.y66{bottom:577.828500px;}
.yd0{bottom:578.202000px;}
.y15e{bottom:578.512500px;}
.y1ac{bottom:579.757500px;}
.y142{bottom:579.796500px;}
.yb{bottom:580.521000px;}
.y86{bottom:590.953500px;}
.y85{bottom:595.387500px;}
.y10c{bottom:595.761000px;}
.y168{bottom:596.010000px;}
.yf0{bottom:596.749500px;}
.y1c9{bottom:597.516000px;}
.y2f{bottom:599.185500px;}
.y65{bottom:599.496000px;}
.ycf{bottom:599.871000px;}
.y15d{bottom:600.181500px;}
.ya{bottom:600.844500px;}
.y126{bottom:611.713500px;}
.y141{bottom:613.047000px;}
.y1ab{bottom:616.371000px;}
.y10b{bottom:617.430000px;}
.y1c8{bottom:619.185000px;}
.yaa{bottom:619.434000px;}
.y2e{bottom:620.854500px;}
.y54{bottom:621.054000px;}
.y9{bottom:621.168000px;}
.yce{bottom:621.538500px;}
.y15c{bottom:621.850500px;}
.y180{bottom:627.214500px;}
.y19a{bottom:630.667500px;}
.y84{bottom:636.483000px;}
.ya9{bottom:636.669000px;}
.y167{bottom:638.338500px;}
.y64{bottom:640.593000px;}
.y125{bottom:640.854000px;}
.ya8{bottom:641.103000px;}
.y2d{bottom:642.523500px;}
.y53{bottom:642.723000px;}
.y166{bottom:642.771000px;}
.yef{bottom:643.512000px;}
.y15b{bottom:643.519500px;}
.y10a{bottom:646.570500px;}
.y17f{bottom:648.882000px;}
.y8{bottom:651.510000px;}
.y1aa{bottom:652.983000px;}
.ycd{bottom:654.789000px;}
.y1c7{bottom:655.798500px;}
.y140{bottom:658.666500px;}
.ya7{bottom:662.772000px;}
.y83{bottom:663.432000px;}
.y52{bottom:664.392000px;}
.yee{bottom:665.181000px;}
.y15a{bottom:665.187000px;}
.y82{bottom:667.864500px;}
.y199{bottom:670.095000px;}
.y63{bottom:673.843500px;}
.y1a9{bottom:674.652000px;}
.y124{bottom:677.466000px;}
.y109{bottom:678.750000px;}
.y13f{bottom:680.334000px;}
.y2c{bottom:681.751500px;}
.y17e{bottom:682.132500px;}
.y108{bottom:683.182500px;}
.y51{bottom:686.059500px;}
.y165{bottom:686.109000px;}
.y159{bottom:686.856000px;}
.ycc{bottom:688.039500px;}
.ya6{bottom:696.022500px;}
.y1a8{bottom:696.321000px;}
.y13e{bottom:702.003000px;}
.y2b{bottom:703.419000px;}
.yed{bottom:705.759000px;}
.y123{bottom:706.606500px;}
.y50{bottom:707.728500px;}
.y158{bottom:708.525000px;}
.y81{bottom:711.202500px;}
.yec{bottom:711.943500px;}
.y107{bottom:712.323000px;}
.y1c6{bottom:714.079500px;}
.y7{bottom:717.600000px;}
.y164{bottom:719.359500px;}
.y17d{bottom:721.174500px;}
.y190{bottom:722.349000px;}
.y2a{bottom:725.088000px;}
.y62{bottom:725.835000px;}
.y198{bottom:729.994500px;}
.y157{bottom:730.194000px;}
.y80{bottom:732.871500px;}
.y1a7{bottom:732.933000px;}
.y17c{bottom:733.474500px;}
.y1c5{bottom:735.748500px;}
.yeb{bottom:738.115500px;}
.ycb{bottom:739.920000px;}
.ya5{bottom:742.783500px;}
.y122{bottom:743.220000px;}
.y18f{bottom:744.016500px;}
.yea{bottom:745.983000px;}
.y29{bottom:746.757000px;}
.y4f{bottom:746.956500px;}
.y61{bottom:747.504000px;}
.y13d{bottom:747.622500px;}
.y106{bottom:748.936500px;}
.ye9{bottom:750.415500px;}
.y197{bottom:751.663500px;}
.yca{bottom:761.589000px;}
.ya4{bottom:764.452500px;}
.y7f{bottom:766.122000px;}
.y28{bottom:768.426000px;}
.y4e{bottom:768.625500px;}
.y60{bottom:769.173000px;}
.y13c{bottom:769.291500px;}
.y1a6{bottom:769.546500px;}
.y156{bottom:769.621500px;}
.y105{bottom:770.605500px;}
.y121{bottom:772.360500px;}
.y18e{bottom:777.267000px;}
.y17b{bottom:780.327000px;}
.yc9{bottom:783.258000px;}
.y163{bottom:783.357000px;}
.y6{bottom:784.063500px;}
.ya3{bottom:786.121500px;}
.y162{bottom:787.791000px;}
.y27{bottom:790.095000px;}
.y4d{bottom:790.294500px;}
.y5f{bottom:790.842000px;}
.y196{bottom:791.091000px;}
.y1a5{bottom:791.215500px;}
.y1c4{bottom:794.029500px;}
.ye8{bottom:797.268000px;}
.y104{bottom:799.746000px;}
.y13b{bottom:802.542000px;}
.y120{bottom:808.972500px;}
.y26{bottom:811.762500px;}
.y4c{bottom:811.962000px;}
.y5e{bottom:812.511000px;}
.y7e{bottom:812.884500px;}
.y17a{bottom:813.576000px;}
.y161{bottom:814.740000px;}
.y160{bottom:819.172500px;}
.ya2{bottom:819.372000px;}
.y5{bottom:825.973500px;}
.y1a4{bottom:827.827500px;}
.y18d{bottom:829.260000px;}
.y155{bottom:829.521000px;}
.yc8{bottom:829.908000px;}
.y1c3{bottom:830.643000px;}
.y25{bottom:833.431500px;}
.y5d{bottom:834.178500px;}
.y7d{bottom:834.552000px;}
.y13a{bottom:835.792500px;}
.ye7{bottom:839.596500px;}
.y103{bottom:840.841500px;}
.ye6{bottom:844.029000px;}
.y1a3{bottom:849.496500px;}
.y18c{bottom:850.929000px;}
.y195{bottom:850.990500px;}
.y4b{bottom:851.190000px;}
.yc7{bottom:851.577000px;}
.ya1{bottom:852.622500px;}
.y24{bottom:855.100500px;}
.y11f{bottom:855.549000px;}
.y5c{bottom:855.847500px;}
.y179{bottom:860.338500px;}
.y7c{bottom:861.501000px;}
.y102{bottom:862.510500px;}
.y7b{bottom:865.935000px;}
.y1c2{bottom:867.255000px;}
.yc6{bottom:868.812000px;}
.ye5{bottom:870.978000px;}
.y1a2{bottom:871.165500px;}
.y194{bottom:872.659500px;}
.y4a{bottom:872.859000px;}
.yc5{bottom:873.244500px;}
.ye4{bottom:875.412000px;}
.y23{bottom:876.769500px;}
.y5b{bottom:877.516500px;}
.y4{bottom:879.210000px;}
.y101{bottom:884.179500px;}
.y139{bottom:886.642500px;}
.y154{bottom:887.803500px;}
.y1c1{bottom:888.924000px;}
.y178{bottom:891.142500px;}
.y193{bottom:894.328500px;}
.y49{bottom:894.528000px;}
.y15f{bottom:895.761000px;}
.y22{bottom:898.438500px;}
.y5a{bottom:899.185500px;}
.yc4{bottom:902.277000px;}
.ya0{bottom:904.614000px;}
.y1a1{bottom:907.777500px;}
.y138{bottom:908.310000px;}
.y7a{bottom:909.273000px;}
.y153{bottom:909.471000px;}
.y11e{bottom:910.593000px;}
.y192{bottom:915.997500px;}
.y48{bottom:916.197000px;}
.y3{bottom:916.570500px;}
.ye3{bottom:918.750000px;}
.y21{bottom:920.107500px;}
.y59{bottom:920.854500px;}
.y9f{bottom:921.850500px;}
.y1c0{bottom:925.536000px;}
.y9e{bottom:926.283000px;}
.y79{bottom:926.508000px;}
.y177{bottom:928.729500px;}
.y1a0{bottom:929.446500px;}
.y78{bottom:930.940500px;}
.y191{bottom:937.666500px;}
.y47{bottom:937.866000px;}
.y11d{bottom:939.733500px;}
.ye2{bottom:940.417500px;}
.yc3{bottom:940.698000px;}
.y137{bottom:941.560500px;}
.y58{bottom:942.522000px;}
.y9d{bottom:943.519500px;}
.y152{bottom:946.084500px;}
.y1bf{bottom:947.205000px;}
.y9c{bottom:947.952000px;}
.y77{bottom:952.609500px;}
.y2{bottom:953.931000px;}
.y20{bottom:959.334000px;}
.y57{bottom:964.191000px;}
.y19f{bottom:966.060000px;}
.y151{bottom:967.753500px;}
.ye1{bottom:973.668000px;}
.y11c{bottom:976.345500px;}
.y46{bottom:977.092500px;}
.y1f{bottom:981.003000px;}
.y1be{bottom:983.818500px;}
.y9b{bottom:984.384000px;}
.y56{bottom:985.860000px;}
.y136{bottom:987.180000px;}
.y9a{bottom:989.047500px;}
.y150{bottom:989.422500px;}
.y1{bottom:991.290000px;}
.yc2{bottom:991.398000px;}
.y11b{bottom:998.014500px;}
.y45{bottom:998.761500px;}
.y1e{bottom:1002.672000px;}
.y1bd{bottom:1005.486000px;}
.y135{bottom:1008.849000px;}
.yc1{bottom:1013.067000px;}
.y99{bottom:1015.996500px;}
.y98{bottom:1015.998000px;}
.y55{bottom:1019.110500px;}
.y44{bottom:1020.430500px;}
.y1d{bottom:1024.341000px;}
.y11a{bottom:1027.155000px;}
.yc0{bottom:1030.302000px;}
.y134{bottom:1030.518000px;}
.ybf{bottom:1034.736000px;}
.y43{bottom:1042.099500px;}
.y1c{bottom:1063.768500px;}
.h25{height:2.869248px;}
.h4{height:44.831700px;}
.h6{height:45.687311px;}
.h8{height:46.201172px;}
.h2{height:49.090950px;}
.h7{height:53.798400px;}
.h12{height:59.693702px;}
.ha{height:59.699702px;}
.h1c{height:61.907702px;}
.hc{height:63.281702px;}
.hf{height:63.287702px;}
.h5{height:64.557900px;}
.hb{height:71.528400px;}
.he{height:71.534400px;}
.h11{height:71.930400px;}
.h18{height:72.452400px;}
.h20{height:72.728400px;}
.h3{height:76.067700px;}
.h17{height:77.429702px;}
.h9{height:77.469300px;}
.h22{height:78.536400px;}
.h16{height:78.703248px;}
.h15{height:81.011702px;}
.hd{height:81.017702px;}
.h1a{height:83.261702px;}
.h1d{height:84.431702px;}
.h19{height:85.403702px;}
.h10{height:89.660400px;}
.h1b{height:89.666400px;}
.h1{height:92.981250px;}
.h26{height:100.501248px;}
.h1e{height:102.320400px;}
.h23{height:102.326400px;}
.h14{height:112.481702px;}
.h28{height:112.487702px;}
.h13{height:120.056400px;}
.h21{height:121.928400px;}
.h1f{height:121.934400px;}
.h24{height:149.707248px;}
.h27{height:153.217248px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:15.000000px;}
.xb{left:106.299000px;}
.x76{left:115.078500px;}
.x1{left:117.946500px;}
.xf{left:123.858000px;}
.xa{left:132.637500px;}
.x1c{left:134.829000px;}
.x24{left:137.020500px;}
.x1d{left:138.796500px;}
.x77{left:142.392000px;}
.x2{left:149.839500px;}
.xe{left:173.023500px;}
.x9{left:174.742500px;}
.x2e{left:176.961000px;}
.x5e{left:181.390500px;}
.x2c{left:190.038000px;}
.x3c{left:194.520000px;}
.x4a{left:197.691000px;}
.x3e{left:205.887000px;}
.x3d{left:211.413000px;}
.x52{left:224.527500px;}
.x74{left:226.171500px;}
.x5c{left:228.366000px;}
.x46{left:231.801000px;}
.x4d{left:234.171000px;}
.x5f{left:245.005500px;}
.x5d{left:256.432500px;}
.x60{left:261.898500px;}
.x6e{left:266.583000px;}
.x53{left:287.997000px;}
.x75{left:290.022000px;}
.x6{left:291.139500px;}
.x2d{left:294.562500px;}
.x4{left:301.090500px;}
.x72{left:322.416000px;}
.x61{left:323.521500px;}
.x6f{left:326.479500px;}
.x2f{left:330.060000px;}
.x36{left:332.989500px;}
.x68{left:334.809000px;}
.x25{left:337.597500px;}
.x47{left:344.292000px;}
.x30{left:346.954500px;}
.x55{left:348.258000px;}
.x26{left:350.760000px;}
.x15{left:353.245500px;}
.x1e{left:355.194000px;}
.x16{left:364.216500px;}
.x57{left:365.710500px;}
.x1f{left:370.132500px;}
.x7{left:371.209500px;}
.x3{left:372.628500px;}
.x3f{left:374.835000px;}
.x45{left:383.656500px;}
.x40{left:386.202000px;}
.x48{left:387.210000px;}
.x4b{left:389.821500px;}
.x11{left:392.790000px;}
.x37{left:396.604500px;}
.x5{left:398.416500px;}
.x27{left:400.207500px;}
.x50{left:402.186000px;}
.x17{left:403.249500px;}
.x4e{left:404.358000px;}
.x12{left:406.609500px;}
.x70{left:407.709000px;}
.x20{left:410.959500px;}
.x18{left:414.222000px;}
.x58{left:415.716000px;}
.x44{left:421.978500px;}
.x8{left:422.998500px;}
.x49{left:424.029000px;}
.x69{left:426.411000px;}
.x71{left:429.261000px;}
.x51{left:431.227500px;}
.x73{left:438.724500px;}
.x4c{left:444.976500px;}
.x21{left:446.560500px;}
.x28{left:450.220500px;}
.xc{left:454.611000px;}
.x13{left:456.615000px;}
.x56{left:462.093000px;}
.x19{left:466.201500px;}
.x59{left:467.695500px;}
.x29{left:469.564500px;}
.x6a{left:470.820000px;}
.x43{left:473.275500px;}
.x38{left:475.122000px;}
.x31{left:487.698000px;}
.x10{left:490.330500px;}
.x6b{left:492.957000px;}
.x22{left:494.184000px;}
.x4f{left:496.909500px;}
.x14{left:504.918000px;}
.x2a{left:515.034000px;}
.x5a{left:521.926500px;}
.x1a{left:523.422000px;}
.x6d{left:533.826000px;}
.x32{left:536.373000px;}
.x62{left:543.213000px;}
.x23{left:545.337000px;}
.x6c{left:548.988000px;}
.x5b{left:549.994500px;}
.x1b{left:551.488500px;}
.x33{left:563.142000px;}
.x39{left:566.416500px;}
.x63{left:570.375000px;}
.x2b{left:586.836000px;}
.x3a{left:591.781500px;}
.x41{left:597.183000px;}
.x34{left:611.493000px;}
.x3b{left:615.334500px;}
.x42{left:618.735000px;}
.x64{left:629.286000px;}
.x35{left:637.647000px;}
.x65{left:656.448000px;}
.x54{left:661.875000px;}
.x66{left:680.841000px;}
.x67{left:707.874000px;}
@media print{
.v1c{vertical-align:-144.352000pt;}
.v1d{vertical-align:-132.245333pt;}
.v21{vertical-align:-99.466667pt;}
.v1f{vertical-align:-89.904000pt;}
.v20{vertical-align:-63.578667pt;}
.vd{vertical-align:-51.648000pt;}
.v2{vertical-align:-27.765333pt;}
.ve{vertical-align:-26.325333pt;}
.v1a{vertical-align:-13.829333pt;}
.v3{vertical-align:-9.002667pt;}
.v1b{vertical-align:-1.722667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:6.197333pt;}
.v15{vertical-align:12.421333pt;}
.v5{vertical-align:15.760000pt;}
.v17{vertical-align:16.826667pt;}
.v10{vertical-align:17.760000pt;}
.v14{vertical-align:21.984000pt;}
.v4{vertical-align:23.141333pt;}
.v13{vertical-align:25.104000pt;}
.v6{vertical-align:26.325333pt;}
.v1{vertical-align:27.765333pt;}
.v16{vertical-align:38.901333pt;}
.v7{vertical-align:42.090667pt;}
.v9{vertical-align:43.136000pt;}
.v11{vertical-align:44.085333pt;}
.vf{vertical-align:45.989333pt;}
.v12{vertical-align:51.648000pt;}
.v18{vertical-align:60.560000pt;}
.vc{vertical-align:67.408000pt;}
.vb{vertical-align:70.058667pt;}
.v1e{vertical-align:86.784000pt;}
.v22{vertical-align:89.904000pt;}
.va{vertical-align:95.381333pt;}
.v19{vertical-align:130.522667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000092pt;}
.lsaa{letter-spacing:0.000396pt;}
.ls6e{letter-spacing:0.000420pt;}
.ls2f{letter-spacing:0.000676pt;}
.ls92{letter-spacing:0.000990pt;}
.ls85{letter-spacing:0.001036pt;}
.ls5e{letter-spacing:0.001698pt;}
.ls80{letter-spacing:0.001705pt;}
.ls3a{letter-spacing:0.001905pt;}
.ls65{letter-spacing:0.001980pt;}
.ls52{letter-spacing:0.002253pt;}
.ls45{letter-spacing:0.002362pt;}
.ls40{letter-spacing:0.002452pt;}
.lsa9{letter-spacing:0.002659pt;}
.ls2b{letter-spacing:0.002717pt;}
.lsa2{letter-spacing:0.003086pt;}
.ls9c{letter-spacing:0.003229pt;}
.lsa8{letter-spacing:0.003321pt;}
.ls99{letter-spacing:0.004145pt;}
.ls10{letter-spacing:0.004313pt;}
.ls32{letter-spacing:0.004710pt;}
.ls6c{letter-spacing:0.004966pt;}
.ls1a{letter-spacing:0.004970pt;}
.ls86{letter-spacing:0.005183pt;}
.ls83{letter-spacing:0.006009pt;}
.ls5c{letter-spacing:0.007031pt;}
.ls3e{letter-spacing:0.521544pt;}
.ls38{letter-spacing:0.526877pt;}
.ls91{letter-spacing:2.283769pt;}
.ls5b{letter-spacing:2.284372pt;}
.ls76{letter-spacing:2.371847pt;}
.ls73{letter-spacing:2.377181pt;}
.ls2d{letter-spacing:2.651520pt;}
.ls2c{letter-spacing:2.653258pt;}
.ls4a{letter-spacing:2.653398pt;}
.ls5a{letter-spacing:2.654270pt;}
.lsab{letter-spacing:2.654964pt;}
.ls6b{letter-spacing:2.656704pt;}
.ls81{letter-spacing:2.657146pt;}
.ls9e{letter-spacing:2.658591pt;}
.ls14{letter-spacing:2.658731pt;}
.ls7d{letter-spacing:2.658868pt;}
.ls29{letter-spacing:2.659144pt;}
.ls20{letter-spacing:2.659603pt;}
.ls0{letter-spacing:2.659733pt;}
.ls7e{letter-spacing:2.662479pt;}
.ls9d{letter-spacing:3.466421pt;}
.ls59{letter-spacing:3.471754pt;}
.ls69{letter-spacing:3.709752pt;}
.ls68{letter-spacing:3.715086pt;}
.lsac{letter-spacing:3.911807pt;}
.ls17{letter-spacing:4.577698pt;}
.ls12{letter-spacing:4.583031pt;}
.ls82{letter-spacing:5.105323pt;}
.ls3b{letter-spacing:5.435823pt;}
.ls4e{letter-spacing:5.659964pt;}
.ls5{letter-spacing:6.342755pt;}
.ls60{letter-spacing:6.371915pt;}
.ls5f{letter-spacing:6.374642pt;}
.ls58{letter-spacing:6.375925pt;}
.ls9b{letter-spacing:6.377248pt;}
.ls28{letter-spacing:6.660224pt;}
.ls4c{letter-spacing:6.807576pt;}
.ls95{letter-spacing:6.812909pt;}
.lsae{letter-spacing:7.185653pt;}
.ls50{letter-spacing:7.627976pt;}
.ls4{letter-spacing:8.292811pt;}
.ls2{letter-spacing:8.298144pt;}
.lsc{letter-spacing:8.666191pt;}
.ls42{letter-spacing:8.670903pt;}
.ls1b{letter-spacing:8.671524pt;}
.ls48{letter-spacing:8.676236pt;}
.ls4f{letter-spacing:10.281631pt;}
.ls84{letter-spacing:10.621119pt;}
.ls9f{letter-spacing:10.622812pt;}
.ls37{letter-spacing:10.624990pt;}
.ls53{letter-spacing:10.626452pt;}
.ls1d{letter-spacing:10.628970pt;}
.ls3{letter-spacing:10.953631pt;}
.ls51{letter-spacing:12.693400pt;}
.ls61{letter-spacing:12.765988pt;}
.ls8e{letter-spacing:12.907769pt;}
.ls1{letter-spacing:13.953297pt;}
.ls11{letter-spacing:14.164905pt;}
.lsd{letter-spacing:14.166642pt;}
.ls66{letter-spacing:14.167313pt;}
.ls90{letter-spacing:14.167786pt;}
.ls8a{letter-spacing:14.170238pt;}
.ls3c{letter-spacing:14.171976pt;}
.lsb{letter-spacing:14.550642pt;}
.ls34{letter-spacing:15.241779pt;}
.ls4d{letter-spacing:16.530731pt;}
.ls2a{letter-spacing:16.824064pt;}
.lsaf{letter-spacing:16.827520pt;}
.ls56{letter-spacing:16.829398pt;}
.ls19{letter-spacing:17.001248pt;}
.lsad{letter-spacing:17.089739pt;}
.ls33{letter-spacing:17.138731pt;}
.ls87{letter-spacing:17.705887pt;}
.ls27{letter-spacing:17.706238pt;}
.ls78{letter-spacing:17.709164pt;}
.ls24{letter-spacing:17.710933pt;}
.ls39{letter-spacing:17.711572pt;}
.lsa7{letter-spacing:18.000990pt;}
.ls6a{letter-spacing:19.139915pt;}
.ls72{letter-spacing:19.291104pt;}
.ls96{letter-spacing:19.321228pt;}
.ls49{letter-spacing:19.606489pt;}
.ls54{letter-spacing:19.996372pt;}
.ls7b{letter-spacing:20.001321pt;}
.lsa0{letter-spacing:20.001705pt;}
.ls70{letter-spacing:20.365258pt;}
.lsa3{letter-spacing:20.365398pt;}
.ls23{letter-spacing:20.370731pt;}
.ls57{letter-spacing:20.538238pt;}
.ls9a{letter-spacing:20.539976pt;}
.ls7c{letter-spacing:20.814561pt;}
.ls1c{letter-spacing:21.215524pt;}
.ls35{letter-spacing:21.284475pt;}
.lsf{letter-spacing:21.604905pt;}
.ls75{letter-spacing:22.503925pt;}
.ls7a{letter-spacing:23.099988pt;}
.lsa5{letter-spacing:23.100372pt;}
.ls6f{letter-spacing:23.330591pt;}
.lsa6{letter-spacing:23.464064pt;}
.ls1f{letter-spacing:23.469398pt;}
.ls44{letter-spacing:23.501628pt;}
.ls63{letter-spacing:23.892553pt;}
.ls30{letter-spacing:23.987895pt;}
.ls21{letter-spacing:23.993228pt;}
.ls18{letter-spacing:24.084905pt;}
.ls8c{letter-spacing:24.354731pt;}
.ls64{letter-spacing:24.440655pt;}
.ls8f{letter-spacing:25.779603pt;}
.ls41{letter-spacing:25.784936pt;}
.lsa{letter-spacing:26.041808pt;}
.ls77{letter-spacing:26.382903pt;}
.ls36{letter-spacing:27.151142pt;}
.ls43{letter-spacing:27.337228pt;}
.ls6d{letter-spacing:27.690238pt;}
.ls74{letter-spacing:28.521569pt;}
.ls13{letter-spacing:29.000936pt;}
.ls26{letter-spacing:29.437398pt;}
.ls6{letter-spacing:29.770733pt;}
.ls93{letter-spacing:29.992478pt;}
.lsa4{letter-spacing:30.474238pt;}
.ls9{letter-spacing:31.214582pt;}
.ls3f{letter-spacing:31.322238pt;}
.ls8d{letter-spacing:31.327572pt;}
.ls8{letter-spacing:31.880533pt;}
.ls16{letter-spacing:35.113248pt;}
.ls89{letter-spacing:41.352419pt;}
.ls71{letter-spacing:42.938238pt;}
.ls47{letter-spacing:44.830582pt;}
.ls22{letter-spacing:49.811603pt;}
.ls7f{letter-spacing:51.726351pt;}
.ls31{letter-spacing:56.227603pt;}
.ls94{letter-spacing:156.000990pt;}
.ls3d{letter-spacing:464.576990pt;}
.ls46{letter-spacing:474.992990pt;}
.lsb0{letter-spacing:542.246323pt;}
.ls4b{letter-spacing:561.344990pt;}
.lsa1{letter-spacing:657.424990pt;}
.ls2e{letter-spacing:680.187657pt;}
.ls97{letter-spacing:701.488990pt;}
.ls1e{letter-spacing:742.752990pt;}
.ls8b{letter-spacing:772.352990pt;}
.ls15{letter-spacing:798.251657pt;}
.ls98{letter-spacing:806.544990pt;}
.ls88{letter-spacing:831.270323pt;}
.ls79{letter-spacing:840.363657pt;}
.ls5d{letter-spacing:847.590323pt;}
.ls62{letter-spacing:887.803657pt;}
.ls55{letter-spacing:906.379657pt;}
.lse{letter-spacing:938.854323pt;}
.ls67{letter-spacing:969.579657pt;}
.ws85{word-spacing:-63.761067pt;}
.ws96{word-spacing:-50.479636pt;}
.ws71{word-spacing:-46.022738pt;}
.ws44{word-spacing:-40.590295pt;}
.ws25{word-spacing:-33.729604pt;}
.ws24{word-spacing:-33.347038pt;}
.ws20{word-spacing:-32.900710pt;}
.ws23{word-spacing:-31.179162pt;}
.ws90{word-spacing:-29.942197pt;}
.ws4a{word-spacing:-29.521250pt;}
.ws17{word-spacing:-28.692333pt;}
.ws67{word-spacing:-27.710560pt;}
.ws4e{word-spacing:-27.646799pt;}
.ws1c{word-spacing:-27.353498pt;}
.ws22{word-spacing:-26.715887pt;}
.ws1f{word-spacing:-26.524604pt;}
.ws21{word-spacing:-25.249382pt;}
.ws9b{word-spacing:-22.901803pt;}
.ws84{word-spacing:-22.851316pt;}
.wsa2{word-spacing:-19.925333pt;}
.ws1e{word-spacing:-19.574647pt;}
.ws49{word-spacing:-17.343010pt;}
.ws1a{word-spacing:-17.279249pt;}
.ws50{word-spacing:-16.981626pt;}
.wscc{word-spacing:-16.614030pt;}
.wsce{word-spacing:-16.608696pt;}
.wsa{word-spacing:-16.162923pt;}
.wsf3{word-spacing:-15.940267pt;}
.ws51{word-spacing:-14.218658pt;}
.ws7a{word-spacing:-12.698503pt;}
.ws7d{word-spacing:-12.695772pt;}
.wsa7{word-spacing:-12.543875pt;}
.ws8c{word-spacing:-12.419077pt;}
.ws63{word-spacing:-11.174224pt;}
.ws62{word-spacing:-11.154767pt;}
.ws66{word-spacing:-9.919328pt;}
.ws48{word-spacing:-9.917363pt;}
.ws1d{word-spacing:-9.691682pt;}
.ws7c{word-spacing:-9.154439pt;}
.wsb3{word-spacing:-8.541363pt;}
.wsd4{word-spacing:-6.712800pt;}
.wsac{word-spacing:-6.702782pt;}
.ws61{word-spacing:-6.383328pt;}
.ws65{word-spacing:-6.377994pt;}
.ws46{word-spacing:-6.376030pt;}
.ws8e{word-spacing:-6.370697pt;}
.ws6b{word-spacing:-6.057650pt;}
.ws7b{word-spacing:-6.055772pt;}
.ws7f{word-spacing:-5.730439pt;}
.wsaf{word-spacing:-3.604115pt;}
.ws74{word-spacing:-3.443098pt;}
.ws37{word-spacing:-3.347456pt;}
.ws68{word-spacing:-3.279328pt;}
.ws69{word-spacing:-3.277363pt;}
.ws4f{word-spacing:-3.272030pt;}
.ws64{word-spacing:-3.188053pt;}
.ws72{word-spacing:-3.176643pt;}
.wsd1{word-spacing:-3.124292pt;}
.wsee{word-spacing:-3.060531pt;}
.ws38{word-spacing:-2.933009pt;}
.ws5a{word-spacing:-2.869248pt;}
.ws5b{word-spacing:-2.741726pt;}
.ws45{word-spacing:-2.712030pt;}
.wsdc{word-spacing:-2.677965pt;}
.wse0{word-spacing:-2.359159pt;}
.wsde{word-spacing:-2.343226pt;}
.wsb8{word-spacing:-1.689668pt;}
.wsbc{word-spacing:-1.657788pt;}
.wsa9{word-spacing:-1.594027pt;}
.wsb9{word-spacing:-1.466505pt;}
.wsa6{word-spacing:-1.338982pt;}
.wsb{word-spacing:-1.326547pt;}
.wsca{word-spacing:-0.956416pt;}
.wsf{word-spacing:-0.512000pt;}
.wsb5{word-spacing:-0.510089pt;}
.ws11{word-spacing:-0.453819pt;}
.ws4b{word-spacing:-0.255044pt;}
.wse3{word-spacing:-0.191283pt;}
.ws3f{word-spacing:-0.063761pt;}
.ws9{word-spacing:-0.058182pt;}
.wsd2{word-spacing:-0.041272pt;}
.ws16{word-spacing:0.000000pt;}
.ws30{word-spacing:0.191283pt;}
.ws75{word-spacing:0.255044pt;}
.wscf{word-spacing:0.350641pt;}
.ws47{word-spacing:0.382566pt;}
.wsc{word-spacing:0.418909pt;}
.wsa8{word-spacing:0.510089pt;}
.ws53{word-spacing:0.573850pt;}
.ws52{word-spacing:0.669491pt;}
.ws5f{word-spacing:0.727970pt;}
.wsb2{word-spacing:0.756011pt;}
.wsaa{word-spacing:0.828894pt;}
.ws8{word-spacing:0.942546pt;}
.wsdf{word-spacing:1.020177pt;}
.wsb0{word-spacing:1.211460pt;}
.wse{word-spacing:1.408001pt;}
.ws6{word-spacing:1.640729pt;}
.ws93{word-spacing:1.721549pt;}
.wsc1{word-spacing:1.785310pt;}
.ws31{word-spacing:1.849071pt;}
.ws43{word-spacing:2.040354pt;}
.ws7{word-spacing:2.048002pt;}
.ws34{word-spacing:2.231637pt;}
.wsf0{word-spacing:2.295398pt;}
.ws10{word-spacing:2.338911pt;}
.ws9a{word-spacing:2.486682pt;}
.ws98{word-spacing:2.498630pt;}
.ws99{word-spacing:2.550443pt;}
.ws33{word-spacing:2.582323pt;}
.wsdd{word-spacing:2.677965pt;}
.wsc9{word-spacing:2.741726pt;}
.wsc7{word-spacing:2.964890pt;}
.wsc4{word-spacing:2.996770pt;}
.ws5c{word-spacing:3.124292pt;}
.ws5d{word-spacing:3.188053pt;}
.ws1{word-spacing:3.211639pt;}
.ws4c{word-spacing:3.315575pt;}
.ws6d{word-spacing:3.378637pt;}
.ws95{word-spacing:3.379337pt;}
.wsfd{word-spacing:3.434547pt;}
.wseb{word-spacing:3.438677pt;}
.wse7{word-spacing:3.440058pt;}
.wsfb{word-spacing:3.440949pt;}
.ws15{word-spacing:3.443098pt;}
.ws58{word-spacing:3.458630pt;}
.wsfe{word-spacing:3.461997pt;}
.ws6a{word-spacing:3.463919pt;}
.wsa3{word-spacing:3.467027pt;}
.ws4d{word-spacing:3.506859pt;}
.wsd6{word-spacing:3.570620pt;}
.ws77{word-spacing:3.634381pt;}
.ws81{word-spacing:3.761903pt;}
.ws80{word-spacing:3.825664pt;}
.ws94{word-spacing:3.857545pt;}
.ws1b{word-spacing:3.985067pt;}
.wsec{word-spacing:3.989166pt;}
.ws41{word-spacing:4.016947pt;}
.wsef{word-spacing:4.080708pt;}
.ws3{word-spacing:4.131706pt;}
.ws76{word-spacing:4.176350pt;}
.ws2{word-spacing:4.208219pt;}
.ws29{word-spacing:4.271991pt;}
.wscd{word-spacing:4.335753pt;}
.ws5e{word-spacing:4.399514pt;}
.wsab{word-spacing:4.463275pt;}
.wsba{word-spacing:4.527036pt;}
.wsa1{word-spacing:4.590797pt;}
.ws54{word-spacing:4.718319pt;}
.ws27{word-spacing:4.782067pt;}
.ws9f{word-spacing:4.782080pt;}
.wsdb{word-spacing:4.845841pt;}
.ws2e{word-spacing:5.037124pt;}
.ws4{word-spacing:5.189823pt;}
.wsf9{word-spacing:5.228407pt;}
.wsbb{word-spacing:5.256605pt;}
.wsa0{word-spacing:5.260288pt;}
.wsfc{word-spacing:5.292169pt;}
.ws40{word-spacing:5.355930pt;}
.wsea{word-spacing:5.419691pt;}
.ws57{word-spacing:5.483452pt;}
.ws2b{word-spacing:5.547213pt;}
.ws42{word-spacing:5.738467pt;}
.wsc2{word-spacing:5.738496pt;}
.wsf1{word-spacing:5.802257pt;}
.ws3a{word-spacing:6.057301pt;}
.wsb6{word-spacing:6.121062pt;}
.ws3d{word-spacing:6.184823pt;}
.ws56{word-spacing:6.344226pt;}
.ws2a{word-spacing:6.376107pt;}
.ws87{word-spacing:6.567390pt;}
.ws79{word-spacing:6.758673pt;}
.ws70{word-spacing:6.886195pt;}
.ws0{word-spacing:6.887500pt;}
.ws39{word-spacing:6.918076pt;}
.ws6f{word-spacing:6.949956pt;}
.wsb1{word-spacing:6.981837pt;}
.ws28{word-spacing:7.013717pt;}
.ws5{word-spacing:7.051642pt;}
.ws88{word-spacing:7.070283pt;}
.ws3e{word-spacing:7.077478pt;}
.ws86{word-spacing:7.090630pt;}
.ws2c{word-spacing:7.141239pt;}
.wsbe{word-spacing:7.268762pt;}
.wsd8{word-spacing:7.396284pt;}
.ws60{word-spacing:7.460045pt;}
.ws3c{word-spacing:7.523806pt;}
.ws8d{word-spacing:7.651328pt;}
.wsd3{word-spacing:7.819973pt;}
.ws89{word-spacing:7.822263pt;}
.wse9{word-spacing:7.842611pt;}
.wse2{word-spacing:7.906372pt;}
.ws55{word-spacing:8.002014pt;}
.wsc3{word-spacing:8.065775pt;}
.wsd{word-spacing:8.157098pt;}
.wse6{word-spacing:8.225178pt;}
.ws13{word-spacing:8.288939pt;}
.wsbd{word-spacing:8.384580pt;}
.wsf2{word-spacing:8.543983pt;}
.wsd7{word-spacing:8.607744pt;}
.ws3b{word-spacing:8.639625pt;}
.ws7e{word-spacing:8.735266pt;}
.wsf5{word-spacing:8.799027pt;}
.wse1{word-spacing:9.054071pt;}
.wsc8{word-spacing:9.245355pt;}
.ws92{word-spacing:9.309116pt;}
.wsfa{word-spacing:9.372877pt;}
.wse4{word-spacing:9.436638pt;}
.ws2d{word-spacing:9.500399pt;}
.ws2f{word-spacing:9.564160pt;}
.ws59{word-spacing:9.882965pt;}
.wsed{word-spacing:9.946726pt;}
.ws6e{word-spacing:10.074249pt;}
.ws6c{word-spacing:10.138010pt;}
.wsd5{word-spacing:10.393054pt;}
.wse8{word-spacing:10.456815pt;}
.wsff{word-spacing:10.648098pt;}
.ws91{word-spacing:10.679979pt;}
.wse5{word-spacing:10.775620pt;}
.ws8b{word-spacing:10.839381pt;}
.ws78{word-spacing:10.903142pt;}
.wsae{word-spacing:10.923402pt;}
.wsd9{word-spacing:10.966903pt;}
.ws36{word-spacing:11.158187pt;}
.wscb{word-spacing:11.349470pt;}
.wsb7{word-spacing:11.476992pt;}
.wsa4{word-spacing:11.859558pt;}
.wsb4{word-spacing:12.269303pt;}
.wsf4{word-spacing:12.305886pt;}
.wsc6{word-spacing:12.369647pt;}
.ws8a{word-spacing:12.465289pt;}
.ws83{word-spacing:12.688452pt;}
.ws35{word-spacing:12.784094pt;}
.ws14{word-spacing:13.134780pt;}
.wsc0{word-spacing:13.262302pt;}
.wsf8{word-spacing:13.389824pt;}
.wsf6{word-spacing:13.453585pt;}
.wsda{word-spacing:13.772390pt;}
.wsc5{word-spacing:14.186837pt;}
.ws19{word-spacing:14.537523pt;}
.ws82{word-spacing:14.569404pt;}
.ws9e{word-spacing:15.111373pt;}
.wsf7{word-spacing:15.557700pt;}
.ws9d{word-spacing:17.374891pt;}
.ws12{word-spacing:17.457797pt;}
.wsa5{word-spacing:19.310263pt;}
.wsbf{word-spacing:27.441242pt;}
.ws18{word-spacing:37.842193pt;}
.wsd0{word-spacing:51.805867pt;}
.ws32{word-spacing:62.166867pt;}
.ws26{word-spacing:74.600067pt;}
.wsad{word-spacing:654.200704pt;}
.ws73{word-spacing:750.801647pt;}
.ws8f{word-spacing:856.487668pt;}
.ws97{word-spacing:908.200049pt;}
.ws9c{word-spacing:1003.719579pt;}
._25{margin-left:-37.045180pt;}
._33{margin-left:-36.059257pt;}
._15{margin-left:-33.602082pt;}
._13{margin-left:-31.880533pt;}
._24{margin-left:-30.830849pt;}
._14{margin-left:-28.437436pt;}
._17{margin-left:-15.940267pt;}
._3a{margin-left:-14.826821pt;}
._35{margin-left:-13.262302pt;}
._3e{margin-left:-11.770287pt;}
._1{margin-left:-10.358800pt;}
._26{margin-left:-8.004387pt;}
._4{margin-left:-6.274071pt;}
._2{margin-left:-4.829095pt;}
._0{margin-left:-3.416200pt;}
._5{margin-left:-2.065853pt;}
._c{margin-left:-0.958018pt;}
._3{width:1.629092pt;}
._8{width:3.199276pt;}
._46{width:4.820323pt;}
._9{width:6.320419pt;}
._45{width:7.844123pt;}
._42{width:10.393054pt;}
._44{width:12.066773pt;}
._4a{width:14.556343pt;}
._22{width:16.030314pt;}
._b{width:17.658593pt;}
._4c{width:19.082253pt;}
._1d{width:20.161261pt;}
._10{width:21.130412pt;}
._4f{width:22.587349pt;}
._1c{width:23.821129pt;}
._a{width:24.756781pt;}
._43{width:25.708445pt;}
._7{width:26.706270pt;}
._51{width:27.668321pt;}
._d{width:28.628719pt;}
._50{width:29.789182pt;}
._41{width:30.975115pt;}
._20{width:31.880533pt;}
._3f{width:33.321527pt;}
._4b{width:34.325271pt;}
._4e{width:35.380309pt;}
._48{width:36.770892pt;}
._6{width:37.905883pt;}
._27{width:39.531861pt;}
._2f{width:41.380932pt;}
._36{width:42.656154pt;}
._47{width:43.618610pt;}
._1e{width:45.321355pt;}
._11{width:46.365660pt;}
._3c{width:47.374473pt;}
._2c{width:48.370724pt;}
._21{width:49.576600pt;}
._38{width:50.817570pt;}
._3d{width:54.962039pt;}
._34{width:55.854694pt;}
._30{width:56.790353pt;}
._18{width:57.767526pt;}
._2b{width:59.871642pt;}
._1f{width:60.952782pt;}
._1a{width:62.562370pt;}
._f{width:63.824828pt;}
._28{width:66.341017pt;}
._2d{width:67.459209pt;}
._1b{width:71.412395pt;}
._4d{width:73.721065pt;}
._40{width:86.077200pt;}
._16{width:98.348260pt;}
._2a{width:99.472903pt;}
._49{width:103.292400pt;}
._12{width:130.072576pt;}
._23{width:999.126348pt;}
._29{width:1052.111794pt;}
._3b{width:1283.949475pt;}
._39{width:1435.707938pt;}
._32{width:1453.203969pt;}
._19{width:1651.590134pt;}
._37{width:1802.652877pt;}
._e{width:1984.298589pt;}
._31{width:1999.610812pt;}
._2e{width:2015.551078pt;}
.fs8{font-size:31.880533pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs7{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:9.235520pt;}
.y1a{bottom:54.637333pt;}
.ye0{bottom:94.488000pt;}
.y100{bottom:98.052000pt;}
.y42{bottom:104.216000pt;}
.ybe{bottom:104.516000pt;}
.ydf{bottom:113.749333pt;}
.y76{bottom:115.064000pt;}
.yff{bottom:117.312000pt;}
.y41{bottom:123.477333pt;}
.y1bc{bottom:127.461333pt;}
.y14f{bottom:133.010667pt;}
.y75{bottom:134.325333pt;}
.ybd{bottom:135.776000pt;}
.yfe{bottom:136.573333pt;}
.yde{bottom:136.632000pt;}
.ybc{bottom:139.717333pt;}
.y1bb{bottom:146.722667pt;}
.ydd{bottom:147.566667pt;}
.y97{bottom:147.634667pt;}
.y14e{bottom:152.272000pt;}
.y74{bottom:153.586667pt;}
.y40{bottom:158.346667pt;}
.y119{bottom:159.176000pt;}
.y1ba{bottom:165.984000pt;}
.y96{bottom:166.896000pt;}
.y133{bottom:170.124000pt;}
.y73{bottom:172.846667pt;}
.ybb{bottom:173.013333pt;}
.y132{bottom:174.064000pt;}
.yba{bottom:176.953333pt;}
.yfd{bottom:178.140000pt;}
.y118{bottom:178.437333pt;}
.y14d{bottom:181.828000pt;}
.ydc{bottom:189.212000pt;}
.y72{bottom:192.108000pt;}
.y3f{bottom:193.216000pt;}
.y131{bottom:198.018667pt;}
.y1b9{bottom:198.528000pt;}
.yb9{bottom:198.916000pt;}
.y18b{bottom:201.681333pt;}
.y130{bottom:201.960000pt;}
.yb8{bottom:202.857333pt;}
.y95{bottom:203.425333pt;}
.yfc{bottom:206.036000pt;}
.y117{bottom:207.993333pt;}
.ydb{bottom:208.473333pt;}
.y71{bottom:211.369333pt;}
.y3e{bottom:212.477333pt;}
.y176{bottom:214.524000pt;}
.y1b8{bottom:217.789333pt;}
.y18a{bottom:220.941333pt;}
.yb7{bottom:224.818667pt;}
.y14c{bottom:227.026667pt;}
.yb6{bottom:228.760000pt;}
.y70{bottom:230.630667pt;}
.y3d{bottom:231.738667pt;}
.y94{bottom:232.981333pt;}
.y175{bottom:233.785333pt;}
.y116{bottom:237.549333pt;}
.y12f{bottom:240.482667pt;}
.y19{bottom:243.573333pt;}
.yfb{bottom:244.557333pt;}
.y14b{bottom:246.288000pt;}
.yda{bottom:249.940000pt;}
.y1b7{bottom:250.334667pt;}
.y189{bottom:250.497333pt;}
.y3c{bottom:250.998667pt;}
.y12e{bottom:259.742667pt;}
.y6f{bottom:260.186667pt;}
.y18{bottom:262.834667pt;}
.y174{bottom:263.341333pt;}
.yb5{bottom:265.289333pt;}
.yd9{bottom:269.201333pt;}
.y1b6{bottom:269.596000pt;}
.y93{bottom:274.548000pt;}
.y14a{bottom:276.866667pt;}
.yfa{bottom:279.980000pt;}
.y17{bottom:282.096000pt;}
.y115{bottom:283.764000pt;}
.y3b{bottom:285.868000pt;}
.y92{bottom:293.809333pt;}
.yb4{bottom:295.885333pt;}
.y149{bottom:296.128000pt;}
.y188{bottom:296.713333pt;}
.yb3{bottom:299.826667pt;}
.y173{bottom:300.966667pt;}
.y12d{bottom:301.309333pt;}
.yf9{bottom:301.677333pt;}
.y1b5{bottom:302.140000pt;}
.y114{bottom:303.025333pt;}
.yd8{bottom:303.726667pt;}
.y1d2{bottom:304.641333pt;}
.y172{bottom:304.906667pt;}
.y3a{bottom:305.129333pt;}
.y6e{bottom:306.401333pt;}
.y91{bottom:313.070667pt;}
.y187{bottom:315.974667pt;}
.y16{bottom:317.297333pt;}
.y1b4{bottom:321.401333pt;}
.yf8{bottom:322.266667pt;}
.y113{bottom:322.286667pt;}
.y1d1{bottom:323.902667pt;}
.y39{bottom:324.390667pt;}
.y6d{bottom:325.662667pt;}
.y148{bottom:326.706667pt;}
.y171{bottom:328.861333pt;}
.y12c{bottom:330.865333pt;}
.y90{bottom:332.330667pt;}
.y170{bottom:332.802667pt;}
.y15{bottom:335.362667pt;}
.yd7{bottom:338.253333pt;}
.yf7{bottom:341.528000pt;}
.y38{bottom:343.652000pt;}
.yb2{bottom:344.990667pt;}
.y186{bottom:345.530667pt;}
.y147{bottom:345.968000pt;}
.y112{bottom:351.842667pt;}
.y14{bottom:353.428000pt;}
.y1b3{bottom:353.945333pt;}
.y1d0{bottom:356.448000pt;}
.y6c{bottom:358.208000pt;}
.y12b{bottom:360.421333pt;}
.y37{bottom:362.912000pt;}
.yd5{bottom:365.108000pt;}
.yd6{bottom:366.664000pt;}
.yf6{bottom:367.580000pt;}
.y8f{bottom:369.957333pt;}
.yd4{bottom:370.604000pt;}
.yb1{bottom:370.893333pt;}
.y16f{bottom:371.325333pt;}
.y13{bottom:371.493333pt;}
.y1b2{bottom:373.206667pt;}
.y8e{bottom:373.897333pt;}
.y146{bottom:374.633333pt;}
.y1cf{bottom:375.708000pt;}
.y6b{bottom:377.469333pt;}
.yf5{bottom:378.513333pt;}
.y36{bottom:382.173333pt;}
.y185{bottom:382.446667pt;}
.y19e{bottom:384.010667pt;}
.y12{bottom:389.560000pt;}
.y16e{bottom:390.585333pt;}
.y1b1{bottom:392.468000pt;}
.y184{bottom:393.381333pt;}
.y111{bottom:393.409333pt;}
.y12a{bottom:400.117333pt;}
.yb0{bottom:400.990667pt;}
.y35{bottom:401.434667pt;}
.yaf{bottom:401.489333pt;}
.y8d{bottom:402.501333pt;}
.y145{bottom:404.189333pt;}
.yae{bottom:405.430667pt;}
.yd3{bottom:406.362667pt;}
.y8c{bottom:406.442667pt;}
.y11{bottom:407.625333pt;}
.y1ce{bottom:408.253333pt;}
.y6a{bottom:410.013333pt;}
.y19d{bottom:419.057333pt;}
.y110{bottom:419.312000pt;}
.y16d{bottom:420.141333pt;}
.y34{bottom:420.696000pt;}
.yf4{bottom:420.800000pt;}
.y1b0{bottom:425.012000pt;}
.y10{bottom:425.690667pt;}
.y1cd{bottom:427.514667pt;}
.y69{bottom:429.274667pt;}
.yd2{bottom:433.968000pt;}
.y183{bottom:435.026667pt;}
.yf3{bottom:440.061333pt;}
.y8b{bottom:441.422667pt;}
.yf{bottom:443.756000pt;}
.y144{bottom:443.884000pt;}
.y1af{bottom:444.273333pt;}
.y1cc{bottom:446.776000pt;}
.y8a{bottom:448.416000pt;}
.yad{bottom:450.594667pt;}
.y10f{bottom:451.856000pt;}
.y89{bottom:452.356000pt;}
.y129{bottom:453.361333pt;}
.y33{bottom:455.565333pt;}
.y16c{bottom:457.766667pt;}
.y16b{bottom:457.768000pt;}
.y16a{bottom:461.708000pt;}
.y68{bottom:461.818667pt;}
.ye{bottom:461.821333pt;}
.y1ae{bottom:463.534667pt;}
.y182{bottom:464.582667pt;}
.y10e{bottom:471.117333pt;}
.y19c{bottom:472.301333pt;}
.yd1{bottom:472.490667pt;}
.y128{bottom:472.622667pt;}
.y32{bottom:474.826667pt;}
.yac{bottom:476.497333pt;}
.y1cb{bottom:479.320000pt;}
.yd{bottom:479.888000pt;}
.y67{bottom:481.080000pt;}
.yf2{bottom:481.628000pt;}
.y88{bottom:492.748000pt;}
.y31{bottom:494.086667pt;}
.y1ad{bottom:496.080000pt;}
.y143{bottom:496.113333pt;}
.y87{bottom:496.688000pt;}
.y10d{bottom:497.020000pt;}
.yc{bottom:497.953333pt;}
.y1ca{bottom:498.581333pt;}
.y169{bottom:500.230667pt;}
.yf1{bottom:500.888000pt;}
.y127{bottom:502.178667pt;}
.y181{bottom:504.278667pt;}
.y19b{bottom:507.348000pt;}
.yab{bottom:509.041333pt;}
.y30{bottom:513.348000pt;}
.y66{bottom:513.625333pt;}
.yd0{bottom:513.957333pt;}
.y15e{bottom:514.233333pt;}
.y1ac{bottom:515.340000pt;}
.y142{bottom:515.374667pt;}
.yb{bottom:516.018667pt;}
.y86{bottom:525.292000pt;}
.y85{bottom:529.233333pt;}
.y10c{bottom:529.565333pt;}
.y168{bottom:529.786667pt;}
.yf0{bottom:530.444000pt;}
.y1c9{bottom:531.125333pt;}
.y2f{bottom:532.609333pt;}
.y65{bottom:532.885333pt;}
.ycf{bottom:533.218667pt;}
.y15d{bottom:533.494667pt;}
.ya{bottom:534.084000pt;}
.y126{bottom:543.745333pt;}
.y141{bottom:544.930667pt;}
.y1ab{bottom:547.885333pt;}
.y10b{bottom:548.826667pt;}
.y1c8{bottom:550.386667pt;}
.yaa{bottom:550.608000pt;}
.y2e{bottom:551.870667pt;}
.y54{bottom:552.048000pt;}
.y9{bottom:552.149333pt;}
.yce{bottom:552.478667pt;}
.y15c{bottom:552.756000pt;}
.y180{bottom:557.524000pt;}
.y19a{bottom:560.593333pt;}
.y84{bottom:565.762667pt;}
.ya9{bottom:565.928000pt;}
.y167{bottom:567.412000pt;}
.y64{bottom:569.416000pt;}
.y125{bottom:569.648000pt;}
.ya8{bottom:569.869333pt;}
.y2d{bottom:571.132000pt;}
.y53{bottom:571.309333pt;}
.y166{bottom:571.352000pt;}
.yef{bottom:572.010667pt;}
.y15b{bottom:572.017333pt;}
.y10a{bottom:574.729333pt;}
.y17f{bottom:576.784000pt;}
.y8{bottom:579.120000pt;}
.y1aa{bottom:580.429333pt;}
.ycd{bottom:582.034667pt;}
.y1c7{bottom:582.932000pt;}
.y140{bottom:585.481333pt;}
.ya7{bottom:589.130667pt;}
.y83{bottom:589.717333pt;}
.y52{bottom:590.570667pt;}
.yee{bottom:591.272000pt;}
.y15a{bottom:591.277333pt;}
.y82{bottom:593.657333pt;}
.y199{bottom:595.640000pt;}
.y63{bottom:598.972000pt;}
.y1a9{bottom:599.690667pt;}
.y124{bottom:602.192000pt;}
.y109{bottom:603.333333pt;}
.y13f{bottom:604.741333pt;}
.y2c{bottom:606.001333pt;}
.y17e{bottom:606.340000pt;}
.y108{bottom:607.273333pt;}
.y51{bottom:609.830667pt;}
.y165{bottom:609.874667pt;}
.y159{bottom:610.538667pt;}
.ycc{bottom:611.590667pt;}
.ya6{bottom:618.686667pt;}
.y1a8{bottom:618.952000pt;}
.y13e{bottom:624.002667pt;}
.y2b{bottom:625.261333pt;}
.yed{bottom:627.341333pt;}
.y123{bottom:628.094667pt;}
.y50{bottom:629.092000pt;}
.y158{bottom:629.800000pt;}
.y81{bottom:632.180000pt;}
.yec{bottom:632.838667pt;}
.y107{bottom:633.176000pt;}
.y1c6{bottom:634.737333pt;}
.y7{bottom:637.866667pt;}
.y164{bottom:639.430667pt;}
.y17d{bottom:641.044000pt;}
.y190{bottom:642.088000pt;}
.y2a{bottom:644.522667pt;}
.y62{bottom:645.186667pt;}
.y198{bottom:648.884000pt;}
.y157{bottom:649.061333pt;}
.y80{bottom:651.441333pt;}
.y1a7{bottom:651.496000pt;}
.y17c{bottom:651.977333pt;}
.y1c5{bottom:653.998667pt;}
.yeb{bottom:656.102667pt;}
.ycb{bottom:657.706667pt;}
.ya5{bottom:660.252000pt;}
.y122{bottom:660.640000pt;}
.y18f{bottom:661.348000pt;}
.yea{bottom:663.096000pt;}
.y29{bottom:663.784000pt;}
.y4f{bottom:663.961333pt;}
.y61{bottom:664.448000pt;}
.y13d{bottom:664.553333pt;}
.y106{bottom:665.721333pt;}
.ye9{bottom:667.036000pt;}
.y197{bottom:668.145333pt;}
.yca{bottom:676.968000pt;}
.ya4{bottom:679.513333pt;}
.y7f{bottom:680.997333pt;}
.y28{bottom:683.045333pt;}
.y4e{bottom:683.222667pt;}
.y60{bottom:683.709333pt;}
.y13c{bottom:683.814667pt;}
.y1a6{bottom:684.041333pt;}
.y156{bottom:684.108000pt;}
.y105{bottom:684.982667pt;}
.y121{bottom:686.542667pt;}
.y18e{bottom:690.904000pt;}
.y17b{bottom:693.624000pt;}
.yc9{bottom:696.229333pt;}
.y163{bottom:696.317333pt;}
.y6{bottom:696.945333pt;}
.ya3{bottom:698.774667pt;}
.y162{bottom:700.258667pt;}
.y27{bottom:702.306667pt;}
.y4d{bottom:702.484000pt;}
.y5f{bottom:702.970667pt;}
.y196{bottom:703.192000pt;}
.y1a5{bottom:703.302667pt;}
.y1c4{bottom:705.804000pt;}
.ye8{bottom:708.682667pt;}
.y104{bottom:710.885333pt;}
.y13b{bottom:713.370667pt;}
.y120{bottom:719.086667pt;}
.y26{bottom:721.566667pt;}
.y4c{bottom:721.744000pt;}
.y5e{bottom:722.232000pt;}
.y7e{bottom:722.564000pt;}
.y17a{bottom:723.178667pt;}
.y161{bottom:724.213333pt;}
.y160{bottom:728.153333pt;}
.ya2{bottom:728.330667pt;}
.y5{bottom:734.198667pt;}
.y1a4{bottom:735.846667pt;}
.y18d{bottom:737.120000pt;}
.y155{bottom:737.352000pt;}
.yc8{bottom:737.696000pt;}
.y1c3{bottom:738.349333pt;}
.y25{bottom:740.828000pt;}
.y5d{bottom:741.492000pt;}
.y7d{bottom:741.824000pt;}
.y13a{bottom:742.926667pt;}
.ye7{bottom:746.308000pt;}
.y103{bottom:747.414667pt;}
.ye6{bottom:750.248000pt;}
.y1a3{bottom:755.108000pt;}
.y18c{bottom:756.381333pt;}
.y195{bottom:756.436000pt;}
.y4b{bottom:756.613333pt;}
.yc7{bottom:756.957333pt;}
.ya1{bottom:757.886667pt;}
.y24{bottom:760.089333pt;}
.y11f{bottom:760.488000pt;}
.y5c{bottom:760.753333pt;}
.y179{bottom:764.745333pt;}
.y7c{bottom:765.778667pt;}
.y102{bottom:766.676000pt;}
.y7b{bottom:769.720000pt;}
.y1c2{bottom:770.893333pt;}
.yc6{bottom:772.277333pt;}
.ye5{bottom:774.202667pt;}
.y1a2{bottom:774.369333pt;}
.y194{bottom:775.697333pt;}
.y4a{bottom:775.874667pt;}
.yc5{bottom:776.217333pt;}
.ye4{bottom:778.144000pt;}
.y23{bottom:779.350667pt;}
.y5b{bottom:780.014667pt;}
.y4{bottom:781.520000pt;}
.y101{bottom:785.937333pt;}
.y139{bottom:788.126667pt;}
.y154{bottom:789.158667pt;}
.y1c1{bottom:790.154667pt;}
.y178{bottom:792.126667pt;}
.y193{bottom:794.958667pt;}
.y49{bottom:795.136000pt;}
.y15f{bottom:796.232000pt;}
.y22{bottom:798.612000pt;}
.y5a{bottom:799.276000pt;}
.yc4{bottom:802.024000pt;}
.ya0{bottom:804.101333pt;}
.y1a1{bottom:806.913333pt;}
.y138{bottom:807.386667pt;}
.y7a{bottom:808.242667pt;}
.y153{bottom:808.418667pt;}
.y11e{bottom:809.416000pt;}
.y192{bottom:814.220000pt;}
.y48{bottom:814.397333pt;}
.y3{bottom:814.729333pt;}
.ye3{bottom:816.666667pt;}
.y21{bottom:817.873333pt;}
.y59{bottom:818.537333pt;}
.y9f{bottom:819.422667pt;}
.y1c0{bottom:822.698667pt;}
.y9e{bottom:823.362667pt;}
.y79{bottom:823.562667pt;}
.y177{bottom:825.537333pt;}
.y1a0{bottom:826.174667pt;}
.y78{bottom:827.502667pt;}
.y191{bottom:833.481333pt;}
.y47{bottom:833.658667pt;}
.y11d{bottom:835.318667pt;}
.ye2{bottom:835.926667pt;}
.yc3{bottom:836.176000pt;}
.y137{bottom:836.942667pt;}
.y58{bottom:837.797333pt;}
.y9d{bottom:838.684000pt;}
.y152{bottom:840.964000pt;}
.y1bf{bottom:841.960000pt;}
.y9c{bottom:842.624000pt;}
.y77{bottom:846.764000pt;}
.y2{bottom:847.938667pt;}
.y20{bottom:852.741333pt;}
.y57{bottom:857.058667pt;}
.y19f{bottom:858.720000pt;}
.y151{bottom:860.225333pt;}
.ye1{bottom:865.482667pt;}
.y11c{bottom:867.862667pt;}
.y46{bottom:868.526667pt;}
.y1f{bottom:872.002667pt;}
.y1be{bottom:874.505333pt;}
.y9b{bottom:875.008000pt;}
.y56{bottom:876.320000pt;}
.y136{bottom:877.493333pt;}
.y9a{bottom:879.153333pt;}
.y150{bottom:879.486667pt;}
.y1{bottom:881.146667pt;}
.yc2{bottom:881.242667pt;}
.y11b{bottom:887.124000pt;}
.y45{bottom:887.788000pt;}
.y1e{bottom:891.264000pt;}
.y1bd{bottom:893.765333pt;}
.y135{bottom:896.754667pt;}
.yc1{bottom:900.504000pt;}
.y99{bottom:903.108000pt;}
.y98{bottom:903.109333pt;}
.y55{bottom:905.876000pt;}
.y44{bottom:907.049333pt;}
.y1d{bottom:910.525333pt;}
.y11a{bottom:913.026667pt;}
.yc0{bottom:915.824000pt;}
.y134{bottom:916.016000pt;}
.ybf{bottom:919.765333pt;}
.y43{bottom:926.310667pt;}
.y1c{bottom:945.572000pt;}
.h25{height:2.550443pt;}
.h4{height:39.850400pt;}
.h6{height:40.610943pt;}
.h8{height:41.067708pt;}
.h2{height:43.636400pt;}
.h7{height:47.820800pt;}
.h12{height:53.061069pt;}
.ha{height:53.066402pt;}
.h1c{height:55.029069pt;}
.hc{height:56.250402pt;}
.hf{height:56.255735pt;}
.h5{height:57.384800pt;}
.hb{height:63.580800pt;}
.he{height:63.586133pt;}
.h11{height:63.938133pt;}
.h18{height:64.402133pt;}
.h20{height:64.647467pt;}
.h3{height:67.615733pt;}
.h17{height:68.826402pt;}
.h9{height:68.861600pt;}
.h22{height:69.810133pt;}
.h16{height:69.958443pt;}
.h15{height:72.010402pt;}
.hd{height:72.015735pt;}
.h1a{height:74.010402pt;}
.h1d{height:75.050402pt;}
.h19{height:75.914402pt;}
.h10{height:79.698133pt;}
.h1b{height:79.703467pt;}
.h1{height:82.650000pt;}
.h26{height:89.334443pt;}
.h1e{height:90.951467pt;}
.h23{height:90.956800pt;}
.h14{height:99.983735pt;}
.h28{height:99.989069pt;}
.h13{height:106.716800pt;}
.h21{height:108.380800pt;}
.h1f{height:108.386133pt;}
.h24{height:133.073109pt;}
.h27{height:136.193109pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:13.333333pt;}
.xb{left:94.488000pt;}
.x76{left:102.292000pt;}
.x1{left:104.841333pt;}
.xf{left:110.096000pt;}
.xa{left:117.900000pt;}
.x1c{left:119.848000pt;}
.x24{left:121.796000pt;}
.x1d{left:123.374667pt;}
.x77{left:126.570667pt;}
.x2{left:133.190667pt;}
.xe{left:153.798667pt;}
.x9{left:155.326667pt;}
.x2e{left:157.298667pt;}
.x5e{left:161.236000pt;}
.x2c{left:168.922667pt;}
.x3c{left:172.906667pt;}
.x4a{left:175.725333pt;}
.x3e{left:183.010667pt;}
.x3d{left:187.922667pt;}
.x52{left:199.580000pt;}
.x74{left:201.041333pt;}
.x5c{left:202.992000pt;}
.x46{left:206.045333pt;}
.x4d{left:208.152000pt;}
.x5f{left:217.782667pt;}
.x5d{left:227.940000pt;}
.x60{left:232.798667pt;}
.x6e{left:236.962667pt;}
.x53{left:255.997333pt;}
.x75{left:257.797333pt;}
.x6{left:258.790667pt;}
.x2d{left:261.833333pt;}
.x4{left:267.636000pt;}
.x72{left:286.592000pt;}
.x61{left:287.574667pt;}
.x6f{left:290.204000pt;}
.x2f{left:293.386667pt;}
.x36{left:295.990667pt;}
.x68{left:297.608000pt;}
.x25{left:300.086667pt;}
.x47{left:306.037333pt;}
.x30{left:308.404000pt;}
.x55{left:309.562667pt;}
.x26{left:311.786667pt;}
.x15{left:313.996000pt;}
.x1e{left:315.728000pt;}
.x16{left:323.748000pt;}
.x57{left:325.076000pt;}
.x1f{left:329.006667pt;}
.x7{left:329.964000pt;}
.x3{left:331.225333pt;}
.x3f{left:333.186667pt;}
.x45{left:341.028000pt;}
.x40{left:343.290667pt;}
.x48{left:344.186667pt;}
.x4b{left:346.508000pt;}
.x11{left:349.146667pt;}
.x37{left:352.537333pt;}
.x5{left:354.148000pt;}
.x27{left:355.740000pt;}
.x50{left:357.498667pt;}
.x17{left:358.444000pt;}
.x4e{left:359.429333pt;}
.x12{left:361.430667pt;}
.x70{left:362.408000pt;}
.x20{left:365.297333pt;}
.x18{left:368.197333pt;}
.x58{left:369.525333pt;}
.x44{left:375.092000pt;}
.x8{left:375.998667pt;}
.x49{left:376.914667pt;}
.x69{left:379.032000pt;}
.x71{left:381.565333pt;}
.x51{left:383.313333pt;}
.x73{left:389.977333pt;}
.x4c{left:395.534667pt;}
.x21{left:396.942667pt;}
.x28{left:400.196000pt;}
.xc{left:404.098667pt;}
.x13{left:405.880000pt;}
.x56{left:410.749333pt;}
.x19{left:414.401333pt;}
.x59{left:415.729333pt;}
.x29{left:417.390667pt;}
.x6a{left:418.506667pt;}
.x43{left:420.689333pt;}
.x38{left:422.330667pt;}
.x31{left:433.509333pt;}
.x10{left:435.849333pt;}
.x6b{left:438.184000pt;}
.x22{left:439.274667pt;}
.x4f{left:441.697333pt;}
.x14{left:448.816000pt;}
.x2a{left:457.808000pt;}
.x5a{left:463.934667pt;}
.x1a{left:465.264000pt;}
.x6d{left:474.512000pt;}
.x32{left:476.776000pt;}
.x62{left:482.856000pt;}
.x23{left:484.744000pt;}
.x6c{left:487.989333pt;}
.x5b{left:488.884000pt;}
.x1b{left:490.212000pt;}
.x33{left:500.570667pt;}
.x39{left:503.481333pt;}
.x63{left:507.000000pt;}
.x2b{left:521.632000pt;}
.x3a{left:526.028000pt;}
.x41{left:530.829333pt;}
.x34{left:543.549333pt;}
.x3b{left:546.964000pt;}
.x42{left:549.986667pt;}
.x64{left:559.365333pt;}
.x35{left:566.797333pt;}
.x65{left:583.509333pt;}
.x54{left:588.333333pt;}
.x66{left:605.192000pt;}
.x67{left:629.221333pt;}
}




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