
    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_9385297c7f989e7966dced51.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_c433c67b357b284ee31ddc9b.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_611a3167a225841956a6d71c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.918000;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_e046f659c0cd778483aea9b9.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_1240f609787e47eef7c3210b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.715000;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_0ceec7d0afcb9839938faba9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_7803346e1cfe17143427f9c0.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_2a7869b92d36bf2b4c3fbfcd.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_0138368efc333bb6a6382a72.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3da9a496a2e209a064ef483e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.528000;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_2a9dbc43637f387b31314bd1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.769000;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_3358fa2e5cbd386914978ec4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.831000;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_eaf6dcc367e8a899b7ed174e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_aa2cc56ad7b5b217947b9626.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v6{vertical-align:-64.758000px;}
.v16{vertical-align:-18.930000px;}
.v11{vertical-align:-16.056000px;}
.v7{vertical-align:-10.758000px;}
.v13{vertical-align:-8.034000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:8.604000px;}
.v14{vertical-align:13.980000px;}
.v17{vertical-align:15.348000px;}
.v2{vertical-align:18.132000px;}
.vb{vertical-align:20.718000px;}
.v12{vertical-align:22.242000px;}
.ve{vertical-align:24.738000px;}
.vf{vertical-align:26.028000px;}
.vc{vertical-align:28.242000px;}
.v3{vertical-align:29.616000px;}
.v19{vertical-align:32.280000px;}
.va{vertical-align:38.442000px;}
.v18{vertical-align:43.038000px;}
.vd{vertical-align:45.120000px;}
.v8{vertical-align:48.522000px;}
.v15{vertical-align:52.980000px;}
.v9{vertical-align:78.822000px;}
.v1a{vertical-align:86.970000px;}
.v5{vertical-align:97.632000px;}
.v4{vertical-align:101.142000px;}
.v10{vertical-align:150.342000px;}
.ls0{letter-spacing:0.000000px;}
.ls76{letter-spacing:0.000499px;}
.ls1f{letter-spacing:0.000760px;}
.ls4{letter-spacing:0.000764px;}
.ls9{letter-spacing:0.001114px;}
.ls3d{letter-spacing:0.002523px;}
.ls39{letter-spacing:0.002759px;}
.ls33{letter-spacing:0.003056px;}
.ls7c{letter-spacing:0.004613px;}
.lse{letter-spacing:0.004664px;}
.ls40{letter-spacing:0.005226px;}
.ls29{letter-spacing:0.005587px;}
.ls2{letter-spacing:2.573587px;}
.ls6{letter-spacing:2.579587px;}
.ls8{letter-spacing:2.688179px;}
.ls64{letter-spacing:2.984915px;}
.ls4d{letter-spacing:2.987543px;}
.ls83{letter-spacing:2.988960px;}
.ls15{letter-spacing:2.990915px;}
.ls34{letter-spacing:3.121301px;}
.ls3a{letter-spacing:3.189477px;}
.ls4c{letter-spacing:3.195477px;}
.lsf{letter-spacing:3.615160px;}
.ls38{letter-spacing:4.205226px;}
.ls27{letter-spacing:4.524445px;}
.ls36{letter-spacing:5.005059px;}
.ls14{letter-spacing:5.149910px;}
.ls7{letter-spacing:5.150294px;}
.ls16{letter-spacing:5.155910px;}
.ls17{letter-spacing:5.156294px;}
.ls65{letter-spacing:6.361460px;}
.ls5f{letter-spacing:6.367460px;}
.ls4b{letter-spacing:6.854519px;}
.ls1e{letter-spacing:7.168404px;}
.ls60{letter-spacing:7.168664px;}
.ls1d{letter-spacing:7.171473px;}
.ls5c{letter-spacing:7.172915px;}
.ls46{letter-spacing:7.174404px;}
.ls43{letter-spacing:7.174664px;}
.ls13{letter-spacing:7.492752px;}
.ls3c{letter-spacing:8.083860px;}
.lsb{letter-spacing:9.760765px;}
.ls66{letter-spacing:10.014760px;}
.ls7d{letter-spacing:10.016759px;}
.ls6c{letter-spacing:10.020760px;}
.ls10{letter-spacing:10.042177px;}
.lsa{letter-spacing:10.048177px;}
.ls7e{letter-spacing:10.158248px;}
.ls54{letter-spacing:11.954759px;}
.ls12{letter-spacing:11.956664px;}
.ls47{letter-spacing:12.049473px;}
.ls73{letter-spacing:15.367473px;}
.ls72{letter-spacing:15.368759px;}
.ls11{letter-spacing:15.611831px;}
.ls87{letter-spacing:15.757473px;}
.ls30{letter-spacing:15.934404px;}
.ls3f{letter-spacing:15.935518px;}
.ls6f{letter-spacing:15.937114px;}
.ls26{letter-spacing:15.937473px;}
.ls69{letter-spacing:15.938759px;}
.ls25{letter-spacing:15.940404px;}
.ls4f{letter-spacing:15.941518px;}
.ls82{letter-spacing:15.943114px;}
.ls5e{letter-spacing:15.943473px;}
.ls3e{letter-spacing:18.924960px;}
.ls63{letter-spacing:18.928059px;}
.ls1c{letter-spacing:19.919518px;}
.ls8d{letter-spacing:19.921114px;}
.ls8e{letter-spacing:19.921473px;}
.ls1b{letter-spacing:19.922202px;}
.ls74{letter-spacing:19.922759px;}
.ls62{letter-spacing:19.922809px;}
.ls75{letter-spacing:19.924800px;}
.ls2c{letter-spacing:19.925518px;}
.ls59{letter-spacing:19.926760px;}
.ls4a{letter-spacing:19.927114px;}
.lsc{letter-spacing:19.941274px;}
.ls86{letter-spacing:19.961226px;}
.ls5b{letter-spacing:20.705518px;}
.ls19{letter-spacing:21.752632px;}
.lsd{letter-spacing:22.000177px;}
.ls58{letter-spacing:22.237114px;}
.ls81{letter-spacing:22.303460px;}
.ls3b{letter-spacing:22.309460px;}
.ls42{letter-spacing:22.908960px;}
.ls80{letter-spacing:22.912200px;}
.ls2d{letter-spacing:22.913447px;}
.ls45{letter-spacing:23.105518px;}
.ls56{letter-spacing:23.111518px;}
.ls71{letter-spacing:23.131114px;}
.ls79{letter-spacing:23.138759px;}
.ls48{letter-spacing:24.007114px;}
.ls5d{letter-spacing:24.019860px;}
.ls5a{letter-spacing:24.359236px;}
.ls23{letter-spacing:24.803518px;}
.ls5{letter-spacing:25.002000px;}
.ls89{letter-spacing:25.058915px;}
.ls67{letter-spacing:26.100248px;}
.ls85{letter-spacing:26.287460px;}
.ls88{letter-spacing:26.306915px;}
.ls21{letter-spacing:27.095518px;}
.ls22{letter-spacing:27.239518px;}
.ls52{letter-spacing:27.419566px;}
.ls1a{letter-spacing:28.153289px;}
.ls55{letter-spacing:28.341848px;}
.ls44{letter-spacing:28.347848px;}
.ls3{letter-spacing:29.046000px;}
.ls53{letter-spacing:29.105566px;}
.ls78{letter-spacing:29.503460px;}
.ls50{letter-spacing:29.746404px;}
.ls37{letter-spacing:30.986915px;}
.ls6b{letter-spacing:31.876145px;}
.ls6d{letter-spacing:31.878760px;}
.ls51{letter-spacing:32.327566px;}
.ls7b{letter-spacing:33.379860px;}
.ls1{letter-spacing:35.865600px;}
.ls8a{letter-spacing:37.201114px;}
.ls8b{letter-spacing:37.201473px;}
.ls77{letter-spacing:43.916915px;}
.ls7a{letter-spacing:47.126915px;}
.ls35{letter-spacing:53.432915px;}
.ls2a{letter-spacing:56.177518px;}
.ls84{letter-spacing:67.982759px;}
.ls4e{letter-spacing:68.008059px;}
.ls24{letter-spacing:75.791518px;}
.ls70{letter-spacing:88.949518px;}
.ls6e{letter-spacing:103.271518px;}
.ls31{letter-spacing:104.345518px;}
.ls8c{letter-spacing:111.020915px;}
.ls41{letter-spacing:148.555860px;}
.ls28{letter-spacing:150.626915px;}
.ls2b{letter-spacing:150.632915px;}
.ls68{letter-spacing:167.263460px;}
.ls49{letter-spacing:224.670273px;}
.ls32{letter-spacing:411.860759px;}
.ls6a{letter-spacing:550.336527px;}
.ls7f{letter-spacing:589.309460px;}
.ls61{letter-spacing:636.877460px;}
.ls57{letter-spacing:649.099860px;}
.ls2e{letter-spacing:704.686404px;}
.ls2f{letter-spacing:729.912760px;}
.ls18{letter-spacing:899.759831px;}
.ls20{letter-spacing:910.892915px;}
.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;}
}
.wse4{word-spacing:-71.731200px;}
.ws5a{word-spacing:-56.789591px;}
.wsce{word-spacing:-51.789926px;}
.ws5c{word-spacing:-50.809387px;}
.wse1{word-spacing:-46.912205px;}
.ws58{word-spacing:-45.664082px;}
.ws59{word-spacing:-39.452160px;}
.wscc{word-spacing:-33.745025px;}
.wsd2{word-spacing:-33.211407px;}
.ws1e{word-spacing:-33.068083px;}
.ws100{word-spacing:-32.278875px;}
.ws5{word-spacing:-27.493058px;}
.wsda{word-spacing:-26.899125px;}
.ws22{word-spacing:-24.245146px;}
.ws6c{word-spacing:-23.149359px;}
.ws51{word-spacing:-22.416000px;}
.ws12{word-spacing:-20.906199px;}
.ws53{word-spacing:-19.510886px;}
.ws20{word-spacing:-19.439155px;}
.ws75{word-spacing:-18.538664px;}
.ws6e{word-spacing:-18.502664px;}
.ws74{word-spacing:-18.373899px;}
.ws107{word-spacing:-17.932800px;}
.ws71{word-spacing:-15.961899px;}
.ws1f{word-spacing:-10.831411px;}
.ws79{word-spacing:-10.302962px;}
.ws7b{word-spacing:-10.296962px;}
.ws6d{word-spacing:-10.296408px;}
.ws7a{word-spacing:-8.592260px;}
.ws70{word-spacing:-8.591707px;}
.ws7c{word-spacing:-8.586287px;}
.ws73{word-spacing:-8.580287px;}
.ws10{word-spacing:-7.818701px;}
.wse5{word-spacing:-7.531776px;}
.ws4a{word-spacing:-5.379825px;}
.ws4e{word-spacing:-4.554841px;}
.ws4f{word-spacing:-4.552614px;}
.wsc3{word-spacing:-3.945216px;}
.ws11{word-spacing:-3.873485px;}
.wsc5{word-spacing:-3.730022px;}
.ws7d{word-spacing:-3.586560px;}
.wsed{word-spacing:-3.573723px;}
.wsec{word-spacing:-3.570964px;}
.ws97{word-spacing:-3.299635px;}
.ws77{word-spacing:-3.239833px;}
.ws78{word-spacing:-3.233833px;}
.ws6a{word-spacing:-3.227904px;}
.ws10d{word-spacing:-3.156173px;}
.ws99{word-spacing:-3.012710px;}
.wsa4{word-spacing:-2.940979px;}
.ws7e{word-spacing:-2.869248px;}
.wsfb{word-spacing:-2.797517px;}
.ws3e{word-spacing:-2.725786px;}
.ws14{word-spacing:-2.670548px;}
.wsc4{word-spacing:-2.654054px;}
.ws21{word-spacing:-2.438861px;}
.wsca{word-spacing:-2.151936px;}
.wsb1{word-spacing:-2.133564px;}
.wsa7{word-spacing:-2.080205px;}
.wsf1{word-spacing:-2.008474px;}
.wsd{word-spacing:-1.936742px;}
.ws27{word-spacing:-1.721549px;}
.ws4d{word-spacing:-1.655530px;}
.ws4c{word-spacing:-1.649818px;}
.wsb{word-spacing:-1.578086px;}
.wsf2{word-spacing:-1.506355px;}
.ws56{word-spacing:-1.075968px;}
.wsf4{word-spacing:-0.868456px;}
.ws43{word-spacing:-0.860774px;}
.wsc{word-spacing:-0.789043px;}
.ws8{word-spacing:-0.645581px;}
.ws24{word-spacing:-0.609715px;}
.ws2a{word-spacing:-0.573850px;}
.ws6b{word-spacing:-0.286925px;}
.ws8c{word-spacing:-0.215194px;}
.ws7f{word-spacing:-0.047821px;}
.ws7{word-spacing:0.000000px;}
.ws41{word-spacing:0.071731px;}
.ws47{word-spacing:0.143462px;}
.wsbe{word-spacing:0.215194px;}
.ws5f{word-spacing:0.286925px;}
.ws54{word-spacing:0.358656px;}
.ws5e{word-spacing:0.394472px;}
.ws72{word-spacing:0.430387px;}
.wsef{word-spacing:0.444651px;}
.ws42{word-spacing:0.486196px;}
.wsac{word-spacing:0.487188px;}
.wsc2{word-spacing:0.502118px;}
.wsd8{word-spacing:0.517974px;}
.wsb4{word-spacing:0.645581px;}
.wsfe{word-spacing:0.717312px;}
.wscd{word-spacing:0.789043px;}
.wsbb{word-spacing:0.896532px;}
.ws82{word-spacing:0.932506px;}
.wsc7{word-spacing:1.004237px;}
.wscf{word-spacing:1.179876px;}
.ws8e{word-spacing:1.291162px;}
.wsfd{word-spacing:1.362893px;}
.wscb{word-spacing:1.434624px;}
.ws3d{word-spacing:1.506355px;}
.ws26{word-spacing:1.578086px;}
.ws48{word-spacing:1.588765px;}
.wsc9{word-spacing:1.649818px;}
.ws93{word-spacing:1.793280px;}
.ws62{word-spacing:1.865011px;}
.ws23{word-spacing:1.936742px;}
.ws32{word-spacing:2.008474px;}
.wsd5{word-spacing:2.080205px;}
.ws2e{word-spacing:2.151936px;}
.wsf5{word-spacing:2.288177px;}
.ws98{word-spacing:2.295398px;}
.wsfa{word-spacing:2.438861px;}
.ws66{word-spacing:2.510592px;}
.wsb6{word-spacing:2.517521px;}
.ws96{word-spacing:2.582323px;}
.ws87{word-spacing:2.654054px;}
.wse3{word-spacing:2.696160px;}
.ws91{word-spacing:2.725786px;}
.ws92{word-spacing:2.761651px;}
.ws104{word-spacing:2.797517px;}
.wse{word-spacing:2.869248px;}
.wsc6{word-spacing:2.940979px;}
.ws2d{word-spacing:3.012710px;}
.ws40{word-spacing:3.084442px;}
.wseb{word-spacing:3.156173px;}
.wsa8{word-spacing:3.299613px;}
.wsfc{word-spacing:3.299635px;}
.wsd9{word-spacing:3.313972px;}
.wsd4{word-spacing:3.371366px;}
.ws36{word-spacing:3.443098px;}
.wse2{word-spacing:3.514829px;}
.ws15{word-spacing:3.613094px;}
.wsa9{word-spacing:3.655098px;}
.ws2f{word-spacing:3.658291px;}
.wsf0{word-spacing:3.801754px;}
.wsd3{word-spacing:3.869305px;}
.wsa{word-spacing:3.873485px;}
.ws57{word-spacing:3.890984px;}
.wsf{word-spacing:3.945216px;}
.wsae{word-spacing:4.011166px;}
.ws31{word-spacing:4.016947px;}
.wsb3{word-spacing:4.088678px;}
.ws9f{word-spacing:4.160410px;}
.wsbc{word-spacing:4.232141px;}
.ws76{word-spacing:4.303872px;}
.wsad{word-spacing:4.339738px;}
.ws16{word-spacing:4.398549px;}
.ws1c{word-spacing:4.483200px;}
.ws67{word-spacing:4.590797px;}
.ws6{word-spacing:4.648169px;}
.wsd1{word-spacing:4.662528px;}
.ws4{word-spacing:4.687938px;}
.wsc8{word-spacing:4.734259px;}
.wsa2{word-spacing:4.805990px;}
.ws8f{word-spacing:4.877722px;}
.ws49{word-spacing:5.021184px;}
.wsb5{word-spacing:5.035516px;}
.wsc0{word-spacing:5.164646px;}
.wse0{word-spacing:5.308109px;}
.ws38{word-spacing:5.379825px;}
.ws95{word-spacing:5.379840px;}
.wsdc{word-spacing:5.396542px;}
.ws52{word-spacing:5.451571px;}
.ws18{word-spacing:5.511277px;}
.ws44{word-spacing:5.523302px;}
.ws2{word-spacing:5.577097px;}
.ws60{word-spacing:5.666765px;}
.ws86{word-spacing:5.738496px;}
.wse8{word-spacing:5.760217px;}
.wse9{word-spacing:5.788454px;}
.wsea{word-spacing:5.810227px;}
.ws8d{word-spacing:5.881958px;}
.wsb7{word-spacing:5.953690px;}
.ws46{word-spacing:6.025421px;}
.ws0{word-spacing:6.052935px;}
.wsd6{word-spacing:6.097152px;}
.ws105{word-spacing:6.168883px;}
.ws2b{word-spacing:6.240614px;}
.ws63{word-spacing:6.312346px;}
.ws35{word-spacing:6.384077px;}
.ws17{word-spacing:6.427642px;}
.ws1a{word-spacing:6.455775px;}
.ws112{word-spacing:6.455808px;}
.ws110{word-spacing:6.527539px;}
.ws83{word-spacing:6.552388px;}
.ws50{word-spacing:6.626400px;}
.ws3f{word-spacing:6.671002px;}
.wsbd{word-spacing:6.727918px;}
.ws89{word-spacing:6.742733px;}
.wsdf{word-spacing:6.814464px;}
.ws61{word-spacing:6.886195px;}
.wsa3{word-spacing:6.957926px;}
.wsaa{word-spacing:7.101389px;}
.ws102{word-spacing:7.173120px;}
.ws9{word-spacing:7.244851px;}
.wsaf{word-spacing:7.388314px;}
.ws3c{word-spacing:7.460045px;}
.wsf6{word-spacing:7.531776px;}
.ws10c{word-spacing:7.603507px;}
.ws39{word-spacing:7.746970px;}
.wsc1{word-spacing:7.890432px;}
.ws4b{word-spacing:8.033894px;}
.ws65{word-spacing:8.105626px;}
.ws28{word-spacing:8.177357px;}
.ws13{word-spacing:8.260371px;}
.ws45{word-spacing:8.392550px;}
.wsa0{word-spacing:8.464282px;}
.wsf9{word-spacing:8.536013px;}
.ws3{word-spacing:8.607720px;}
.wsa6{word-spacing:8.607744px;}
.wsdd{word-spacing:8.751206px;}
.wsff{word-spacing:8.822938px;}
.ws10e{word-spacing:8.894669px;}
.ws8a{word-spacing:9.109862px;}
.ws9b{word-spacing:9.181594px;}
.ws34{word-spacing:9.253325px;}
.ws1{word-spacing:9.295162px;}
.ws9e{word-spacing:9.325056px;}
.ws30{word-spacing:9.540250px;}
.ws64{word-spacing:9.611981px;}
.ws68{word-spacing:9.827174px;}
.ws84{word-spacing:9.970637px;}
.ws69{word-spacing:10.114099px;}
.ws19{word-spacing:10.158554px;}
.wsbf{word-spacing:10.687949px;}
.wsde{word-spacing:10.759680px;}
.ws9c{word-spacing:10.831411px;}
.ws3b{word-spacing:10.903142px;}
.wsf8{word-spacing:11.405261px;}
.ws108{word-spacing:11.620454px;}
.ws2c{word-spacing:11.763917px;}
.ws10a{word-spacing:11.835648px;}
.ws88{word-spacing:12.050842px;}
.ws9d{word-spacing:12.122573px;}
.wse7{word-spacing:12.337766px;}
.ws3a{word-spacing:12.409498px;}
.wsa5{word-spacing:12.768154px;}
.ws90{word-spacing:12.839885px;}
.ws94{word-spacing:12.911616px;}
.ws111{word-spacing:13.055078px;}
.ws85{word-spacing:13.270272px;}
.wsab{word-spacing:13.342003px;}
.ws103{word-spacing:13.413734px;}
.ws8b{word-spacing:13.557197px;}
.wsb8{word-spacing:13.700659px;}
.wsa1{word-spacing:13.844122px;}
.ws106{word-spacing:13.987584px;}
.wsf3{word-spacing:14.059315px;}
.wsd0{word-spacing:14.274509px;}
.wsf7{word-spacing:14.346240px;}
.wsdb{word-spacing:14.382106px;}
.ws10b{word-spacing:14.417971px;}
.wsb0{word-spacing:14.453837px;}
.ws81{word-spacing:15.063552px;}
.wsb9{word-spacing:15.445400px;}
.ws9a{word-spacing:15.565670px;}
.ws101{word-spacing:15.607745px;}
.ws37{word-spacing:15.637402px;}
.ws1d{word-spacing:16.354714px;}
.ws33{word-spacing:16.856832px;}
.ws10f{word-spacing:17.143757px;}
.ws109{word-spacing:17.215488px;}
.ws80{word-spacing:18.219725px;}
.wsba{word-spacing:18.865306px;}
.wsb2{word-spacing:30.213027px;}
.ws1b{word-spacing:42.572467px;}
.wsd7{word-spacing:52.215441px;}
.ws29{word-spacing:83.925075px;}
.wse6{word-spacing:94.785608px;}
.ws6f{word-spacing:97.367931px;}
.wsee{word-spacing:129.403085px;}
.ws5b{word-spacing:589.989120px;}
.ws5d{word-spacing:989.101517px;}
.ws55{word-spacing:1045.338778px;}
.ws25{word-spacing:2467.571188px;}
._5{margin-left:-79.120423px;}
._30{margin-left:-69.813584px;}
._2e{margin-left:-68.040222px;}
._1c{margin-left:-54.969671px;}
._4b{margin-left:-48.031078px;}
._42{margin-left:-46.189031px;}
._5a{margin-left:-43.899494px;}
._9{margin-left:-40.766167px;}
._20{margin-left:-39.354629px;}
._1f{margin-left:-38.226996px;}
._f{margin-left:-37.151028px;}
._54{margin-left:-36.149690px;}
._e{margin-left:-35.148288px;}
._19{margin-left:-33.933754px;}
._b{margin-left:-32.875855px;}
._16{margin-left:-30.894571px;}
._40{margin-left:-27.699779px;}
._1a{margin-left:-25.003251px;}
._44{margin-left:-20.420952px;}
._56{margin-left:-18.685422px;}
._2{margin-left:-13.979924px;}
._34{margin-left:-12.661958px;}
._2d{margin-left:-11.526880px;}
._4{margin-left:-9.220801px;}
._59{margin-left:-7.964563px;}
._0{margin-left:-6.920591px;}
._10{margin-left:-5.881958px;}
._3{margin-left:-4.610401px;}
._8{margin-left:-3.569342px;}
._1{margin-left:-2.272433px;}
._d{margin-left:-1.001402px;}
._12{width:1.265362px;}
._a{width:2.410162px;}
._3e{width:3.569342px;}
._6{width:4.610401px;}
._35{width:8.205873px;}
._14{width:11.692186px;}
._17{width:13.498928px;}
._4a{width:14.633165px;}
._11{width:15.973092px;}
._c{width:17.528213px;}
._4d{width:18.796409px;}
._18{width:20.086685px;}
._13{width:21.954684px;}
._23{width:23.456102px;}
._15{width:24.610930px;}
._43{width:26.256454px;}
._1b{width:27.292406px;}
._3a{width:28.699438px;}
._37{width:30.181603px;}
._49{width:32.570861px;}
._26{width:33.767285px;}
._39{width:35.104757px;}
._29{width:36.119214px;}
._5b{width:38.276261px;}
._38{width:39.410352px;}
._3b{width:40.868714px;}
._4c{width:43.182182px;}
._31{width:48.180360px;}
._33{width:51.838652px;}
._2f{width:52.939402px;}
._7{width:55.027362px;}
._5c{width:56.168863px;}
._28{width:59.062559px;}
._2b{width:60.974354px;}
._2a{width:63.602609px;}
._1e{width:64.988467px;}
._24{width:66.189828px;}
._22{width:71.802931px;}
._27{width:80.410675px;}
._57{width:86.907596px;}
._32{width:89.448806px;}
._41{width:96.836850px;}
._4f{width:103.929256px;}
._58{width:111.273596px;}
._3f{width:116.203950px;}
._25{width:124.525363px;}
._46{width:140.752791px;}
._45{width:143.032013px;}
._4e{width:185.329175px;}
._52{width:295.113923px;}
._53{width:322.432404px;}
._50{width:350.527069px;}
._47{width:387.939547px;}
._55{width:495.447398px;}
._51{width:565.328327px;}
._48{width:583.963286px;}
._21{width:1193.053385px;}
._2c{width:1243.236526px;}
._36{width:1607.636755px;}
._3d{width:2253.292186px;}
._1d{width:2320.653516px;}
._3c{width:2338.508851px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.fs2{font-size:148.722600px;}
.y58{bottom:-23.572500px;}
.y0{bottom:0.000000px;}
.y57{bottom:48.715500px;}
.y16{bottom:82.726500px;}
.y7e{bottom:82.728000px;}
.y56{bottom:87.943500px;}
.y18d{bottom:123.328500px;}
.y55{bottom:127.171500px;}
.y8b{bottom:127.558500px;}
.y110{bottom:127.599000px;}
.yab{bottom:134.356500px;}
.y18c{bottom:135.628500px;}
.y7d{bottom:136.419000px;}
.y114{bottom:138.355500px;}
.y54{bottom:148.839000px;}
.y8a{bottom:149.227500px;}
.y166{bottom:151.711500px;}
.y1a8{bottom:151.929000px;}
.y18f{bottom:152.211000px;}
.y1b5{bottom:156.184500px;}
.y150{bottom:157.584000px;}
.y7c{bottom:158.086500px;}
.y130{bottom:159.690000px;}
.y113{bottom:160.024500px;}
.y18e{bottom:161.787000px;}
.yfb{bottom:165.534000px;}
.ydb{bottom:169.996500px;}
.y53{bottom:170.508000px;}
.ya8{bottom:170.896500px;}
.y179{bottom:170.916000px;}
.y165{bottom:173.380500px;}
.y1b4{bottom:177.852000px;}
.y12c{bottom:179.085000px;}
.y14f{bottom:179.253000px;}
.y7b{bottom:179.755500px;}
.y12f{bottom:181.359000px;}
.y89{bottom:182.478000px;}
.yfa{bottom:187.203000px;}
.y2d{bottom:188.038500px;}
.y18b{bottom:189.345000px;}
.yda{bottom:191.665500px;}
.y52{bottom:192.177000px;}
.ya7{bottom:192.565500px;}
.y178{bottom:192.585000px;}
.y164{bottom:195.049500px;}
.y1e5{bottom:198.714000px;}
.y12b{bottom:200.754000px;}
.y7a{bottom:201.424500px;}
.y18a{bottom:204.829500px;}
.y2c{bottom:208.362000px;}
.yf9{bottom:208.872000px;}
.y189{bottom:211.014000px;}
.yd9{bottom:213.333000px;}
.y51{bottom:213.846000px;}
.ya6{bottom:214.234500px;}
.y14e{bottom:215.869500px;}
.y163{bottom:216.718500px;}
.y1e4{bottom:220.383000px;}
.y79{bottom:223.093500px;}
.y175{bottom:224.976000px;}
.y14d{bottom:228.169500px;}
.y2b{bottom:228.685500px;}
.yf8{bottom:230.541000px;}
.y188{bottom:232.683000px;}
.yd8{bottom:235.002000px;}
.y50{bottom:235.515000px;}
.yc9{bottom:235.902000px;}
.ya5{bottom:235.903500px;}
.y162{bottom:238.387500px;}
.y1e3{bottom:242.050500px;}
.y78{bottom:244.762500px;}
.y174{bottom:246.645000px;}
.y2a{bottom:249.009000px;}
.yf7{bottom:252.210000px;}
.y187{bottom:254.352000px;}
.y88{bottom:255.379500px;}
.yd7{bottom:256.671000px;}
.y4f{bottom:257.184000px;}
.ya4{bottom:257.571000px;}
.y77{bottom:266.431500px;}
.y29{bottom:269.332500px;}
.y1e2{bottom:269.868000px;}
.yf6{bottom:273.877500px;}
.y87{bottom:277.048500px;}
.y14c{bottom:277.501500px;}
.y4e{bottom:278.851500px;}
.ya3{bottom:279.240000px;}
.y161{bottom:281.724000px;}
.y128{bottom:286.557000px;}
.y76{bottom:288.099000px;}
.y28{bottom:289.657500px;}
.yc8{bottom:290.821500px;}
.y186{bottom:290.829000px;}
.y1e1{bottom:291.537000px;}
.yf5{bottom:295.546500px;}
.y14b{bottom:299.170500px;}
.yd6{bottom:300.009000px;}
.y4d{bottom:300.520500px;}
.ya2{bottom:300.909000px;}
.y185{bottom:303.130500px;}
.y160{bottom:303.393000px;}
.y127{bottom:308.224500px;}
.y75{bottom:309.768000px;}
.y27{bottom:309.981000px;}
.y1e0{bottom:313.206000px;}
.yf4{bottom:317.215500px;}
.y15f{bottom:318.877500px;}
.y14a{bottom:320.839500px;}
.yd5{bottom:321.678000px;}
.y15e{bottom:325.062000px;}
.y11c{bottom:329.640000px;}
.y126{bottom:329.893500px;}
.y26{bottom:330.304500px;}
.y11e{bottom:331.347000px;}
.y74{bottom:331.437000px;}
.ya1{bottom:334.159500px;}
.yc7{bottom:336.288000px;}
.yf3{bottom:338.884500px;}
.y4c{bottom:339.748500px;}
.y1df{bottom:341.023500px;}
.yc6{bottom:342.472500px;}
.y149{bottom:342.508500px;}
.yd4{bottom:343.345500px;}
.y15d{bottom:346.731000px;}
.y11b{bottom:351.309000px;}
.y184{bottom:351.327000px;}
.y11d{bottom:353.016000px;}
.y73{bottom:353.106000px;}
.yf2{bottom:360.553500px;}
.y25{bottom:360.646500px;}
.y4b{bottom:361.417500px;}
.y15c{bottom:362.215500px;}
.y1de{bottom:362.692500px;}
.y11a{bottom:363.498000px;}
.yc5{bottom:364.141500px;}
.y148{bottom:364.177500px;}
.yd3{bottom:365.014500px;}
.y15b{bottom:368.398500px;}
.ya0{bottom:380.145000px;}
.yf1{bottom:382.222500px;}
.y119{bottom:382.729500px;}
.y4a{bottom:383.086500px;}
.y183{bottom:384.577500px;}
.y147{bottom:385.845000px;}
.y72{bottom:386.356500px;}
.yd2{bottom:386.683500px;}
.y15a{bottom:390.067500px;}
.y1dd{bottom:390.508500px;}
.yc4{bottom:391.293000px;}
.y9f{bottom:401.814000px;}
.yc3{bottom:403.593000px;}
.yf0{bottom:403.890000px;}
.y49{bottom:404.754000px;}
.y146{bottom:407.514000px;}
.yd1{bottom:408.352500px;}
.y159{bottom:411.736500px;}
.y1dc{bottom:412.177500px;}
.y112{bottom:421.320000px;}
.y9e{bottom:423.481500px;}
.y48{bottom:426.423000px;}
.yd0{bottom:430.021500px;}
.y158{bottom:433.405500px;}
.y182{bottom:436.402500px;}
.yef{bottom:437.140500px;}
.y71{bottom:438.348000px;}
.y1db{bottom:439.995000px;}
.y9d{bottom:445.150500px;}
.y47{bottom:448.092000px;}
.yc2{bottom:450.105000px;}
.y145{bottom:450.852000px;}
.ycf{bottom:451.690500px;}
.y157{bottom:455.074500px;}
.y181{bottom:458.071500px;}
.y70{bottom:460.017000px;}
.y1da{bottom:461.664000px;}
.y1b1{bottom:462.711000px;}
.y24{bottom:463.162500px;}
.y9c{bottom:466.819500px;}
.y23{bottom:467.695500px;}
.y46{bottom:469.761000px;}
.y144{bottom:472.521000px;}
.yce{bottom:473.358000px;}
.y156{bottom:476.743500px;}
.y180{bottom:479.740500px;}
.y6f{bottom:481.686000px;}
.y1d9{bottom:483.333000px;}
.yee{bottom:483.903000px;}
.y1b0{bottom:484.380000px;}
.y22{bottom:484.831500px;}
.yc1{bottom:487.389000px;}
.y9b{bottom:488.488500px;}
.y143{bottom:494.190000px;}
.ycd{bottom:495.027000px;}
.y155{bottom:498.411000px;}
.y17f{bottom:501.409500px;}
.y6e{bottom:503.355000px;}
.yed{bottom:505.572000px;}
.y1af{bottom:506.049000px;}
.y45{bottom:508.989000px;}
.yc0{bottom:510.057000px;}
.y9a{bottom:510.157500px;}
.y1d8{bottom:511.150500px;}
.y142{bottom:515.857500px;}
.ycc{bottom:516.696000px;}
.y154{bottom:520.080000px;}
.ybf{bottom:522.358500px;}
.y17e{bottom:523.078500px;}
.y6d{bottom:525.024000px;}
.yec{bottom:527.241000px;}
.y1ae{bottom:527.716500px;}
.y15{bottom:527.863500px;}
.yaa{bottom:528.774000px;}
.y44{bottom:530.658000px;}
.y1d7{bottom:532.818000px;}
.y10f{bottom:535.783500px;}
.y141{bottom:537.526500px;}
.y1c4{bottom:540.814500px;}
.y99{bottom:543.408000px;}
.y6c{bottom:546.693000px;}
.yeb{bottom:548.908500px;}
.y1ad{bottom:549.385500px;}
.ybe{bottom:551.028000px;}
.y43{bottom:552.325500px;}
.yb{bottom:552.657000px;}
.y12a{bottom:552.777000px;}
.y153{bottom:553.330500px;}
.y1a7{bottom:554.547000px;}
.y17d{bottom:556.327500px;}
.y10e{bottom:557.452500px;}
.y140{bottom:559.195500px;}
.y1d6{bottom:560.635500px;}
.y1c3{bottom:562.483500px;}
.y1a6{bottom:566.848500px;}
.y6b{bottom:568.360500px;}
.ycb{bottom:568.999500px;}
.yea{bottom:570.577500px;}
.y1ac{bottom:571.054500px;}
.ybd{bottom:572.697000px;}
.y42{bottom:573.994500px;}
.y129{bottom:574.446000px;}
.y10d{bottom:579.121500px;}
.y13f{bottom:580.864500px;}
.y1d5{bottom:582.304500px;}
.y1c2{bottom:584.152500px;}
.y21{bottom:588.691500px;}
.y17c{bottom:589.578000px;}
.y6a{bottom:590.029500px;}
.yca{bottom:590.668500px;}
.ye9{bottom:592.246500px;}
.y1ab{bottom:592.723500px;}
.y41{bottom:595.663500px;}
.ybc{bottom:596.860500px;}
.y98{bottom:600.576000px;}
.y10c{bottom:600.789000px;}
.y12e{bottom:601.092000px;}
.y13e{bottom:602.533500px;}
.y1d4{bottom:603.973500px;}
.y1c1{bottom:605.821500px;}
.y152{bottom:606.531000px;}
.ybb{bottom:609.160500px;}
.y69{bottom:611.698500px;}
.ye8{bottom:613.915500px;}
.y1a5{bottom:614.082000px;}
.y86{bottom:614.620500px;}
.y40{bottom:617.332500px;}
.y10b{bottom:622.458000px;}
.y12d{bottom:622.759500px;}
.y13d{bottom:624.202500px;}
.y1aa{bottom:625.974000px;}
.y1c0{bottom:627.489000px;}
.y151{bottom:628.200000px;}
.y1b3{bottom:630.319500px;}
.y1d3{bottom:631.791000px;}
.y20{bottom:632.028000px;}
.y177{bottom:633.145500px;}
.y68{bottom:633.367500px;}
.ye7{bottom:635.584500px;}
.y85{bottom:636.289500px;}
.y3f{bottom:639.001500px;}
.y17b{bottom:640.237500px;}
.y10a{bottom:644.127000px;}
.y13c{bottom:645.870000px;}
.yba{bottom:647.248500px;}
.y97{bottom:648.147000px;}
.y1bf{bottom:649.158000px;}
.y1b2{bottom:651.988500px;}
.y8{bottom:653.472000px;}
.y1a3{bottom:653.616000px;}
.y176{bottom:654.813000px;}
.y67{bottom:655.036500px;}
.ya{bottom:656.311500px;}
.y1a4{bottom:656.332500px;}
.ye6{bottom:657.253500px;}
.y84{bottom:657.958500px;}
.yb9{bottom:659.550000px;}
.y1d2{bottom:659.608500px;}
.y3e{bottom:660.670500px;}
.y17a{bottom:661.906500px;}
.y13b{bottom:667.539000px;}
.y1be{bottom:670.827000px;}
.y1f{bottom:675.366000px;}
.y66{bottom:676.705500px;}
.y96{bottom:677.274000px;}
.y1a9{bottom:677.281500px;}
.y109{bottom:677.377500px;}
.ye5{bottom:678.921000px;}
.y83{bottom:679.627500px;}
.y7{bottom:680.371500px;}
.y1d1{bottom:681.276000px;}
.y3d{bottom:682.338000px;}
.y9{bottom:683.211000px;}
.y6{bottom:685.810500px;}
.y13a{bottom:689.208000px;}
.y1bd{bottom:692.496000px;}
.y1a2{bottom:693.151500px;}
.y65{bottom:698.373000px;}
.ye4{bottom:700.590000px;}
.y82{bottom:701.296500px;}
.y1d0{bottom:702.945000px;}
.y3c{bottom:704.007000px;}
.yb8{bottom:707.298000px;}
.y139{bottom:710.877000px;}
.y173{bottom:711.201000px;}
.y1a1{bottom:714.820500px;}
.y111{bottom:715.897500px;}
.y1e{bottom:718.704000px;}
.y64{bottom:720.042000px;}
.y95{bottom:720.612000px;}
.ye3{bottom:722.259000px;}
.y81{bottom:722.964000px;}
.y108{bottom:724.140000px;}
.y3b{bottom:725.676000px;}
.y1cf{bottom:730.762500px;}
.y1a0{bottom:731.557500px;}
.y172{bottom:732.870000px;}
.y1bc{bottom:735.832500px;}
.yb7{bottom:736.861500px;}
.y63{bottom:741.711000px;}
.y19f{bottom:742.317000px;}
.ye2{bottom:743.928000px;}
.y80{bottom:744.633000px;}
.y107{bottom:745.809000px;}
.y3a{bottom:747.345000px;}
.ya9{bottom:747.409500px;}
.yb6{bottom:749.163000px;}
.y1ce{bottom:752.431500px;}
.y138{bottom:753.442500px;}
.y1bb{bottom:757.501500px;}
.y19e{bottom:759.054000px;}
.y1d{bottom:762.040500px;}
.y62{bottom:763.380000px;}
.y94{bottom:764.266500px;}
.ye1{bottom:765.597000px;}
.y106{bottom:767.476500px;}
.y39{bottom:769.014000px;}
.y171{bottom:769.183500px;}
.y19d{bottom:769.813500px;}
.y1ba{bottom:772.987500px;}
.y1cd{bottom:774.100500px;}
.y1b9{bottom:779.170500px;}
.y14{bottom:781.558500px;}
.y1c{bottom:783.709500px;}
.ye0{bottom:787.266000px;}
.y105{bottom:789.145500px;}
.yb5{bottom:793.447500px;}
.y7f{bottom:795.139500px;}
.y170{bottom:796.083000px;}
.y1b8{bottom:800.839500px;}
.y1cc{bottom:801.916500px;}
.y13{bottom:803.227500px;}
.y5{bottom:804.705000px;}
.y19c{bottom:804.912000px;}
.y61{bottom:805.945500px;}
.y197{bottom:807.699000px;}
.y93{bottom:807.919500px;}
.y38{bottom:808.240500px;}
.y104{bottom:810.814500px;}
.y19b{bottom:811.096500px;}
.y19a{bottom:811.588500px;}
.y137{bottom:813.342000px;}
.yb4{bottom:815.116500px;}
.y125{bottom:819.084000px;}
.ydf{bottom:820.515000px;}
.y1b7{bottom:822.508500px;}
.y1cb{bottom:823.585500px;}
.y198{bottom:823.888500px;}
.y12{bottom:824.895000px;}
.y199{bottom:826.605000px;}
.y1b{bottom:827.047500px;}
.y92{bottom:829.588500px;}
.y37{bottom:829.909500px;}
.y4{bottom:832.020000px;}
.y103{bottom:832.483500px;}
.y136{bottom:835.011000px;}
.yb3{bottom:836.785500px;}
.y1b6{bottom:844.177500px;}
.y1ca{bottom:845.254500px;}
.y124{bottom:845.982000px;}
.y11{bottom:846.564000px;}
.y16f{bottom:848.287500px;}
.y196{bottom:848.298000px;}
.y36{bottom:851.578500px;}
.y102{bottom:854.152500px;}
.y135{bottom:856.680000px;}
.y91{bottom:863.928000px;}
.y60{bottom:865.845000px;}
.y3{bottom:866.563500px;}
.yde{bottom:867.277500px;}
.y10{bottom:868.233000px;}
.yb2{bottom:870.036000px;}
.y1a{bottom:870.385500px;}
.y1c9{bottom:873.072000px;}
.y35{bottom:873.247500px;}
.y195{bottom:874.117500px;}
.y101{bottom:875.821500px;}
.y134{bottom:878.349000px;}
.y5f{bottom:887.514000px;}
.y16e{bottom:888.810000px;}
.ydd{bottom:888.946500px;}
.y1c8{bottom:894.741000px;}
.y34{bottom:894.916500px;}
.y100{bottom:897.489000px;}
.y123{bottom:897.975000px;}
.y90{bottom:898.266000px;}
.y133{bottom:900.018000px;}
.y1e8{bottom:906.319500px;}
.y5e{bottom:909.183000px;}
.y16d{bottom:911.076000px;}
.yf{bottom:911.571000px;}
.y19{bottom:913.722000px;}
.y1c7{bottom:916.410000px;}
.yb1{bottom:916.456500px;}
.y33{bottom:916.585500px;}
.y193{bottom:917.587500px;}
.y118{bottom:918.261000px;}
.y122{bottom:919.644000px;}
.y8f{bottom:919.935000px;}
.y194{bottom:920.304000px;}
.y132{bottom:921.687000px;}
.ydc{bottom:922.197000px;}
.y1e7{bottom:927.987000px;}
.yff{bottom:930.739500px;}
.y5d{bottom:930.852000px;}
.ye{bottom:933.238500px;}
.y16c{bottom:933.343500px;}
.yb0{bottom:938.124000px;}
.y32{bottom:938.253000px;}
.y121{bottom:941.313000px;}
.y8e{bottom:941.604000px;}
.y131{bottom:943.354500px;}
.y1c6{bottom:944.226000px;}
.y1e6{bottom:949.656000px;}
.y5c{bottom:952.521000px;}
.y2{bottom:953.814000px;}
.yd{bottom:954.907500px;}
.y16b{bottom:955.609500px;}
.y18{bottom:957.060000px;}
.yaf{bottom:959.793000px;}
.y31{bottom:959.922000px;}
.y192{bottom:961.059000px;}
.y120{bottom:962.982000px;}
.y8d{bottom:963.273000px;}
.y117{bottom:965.023500px;}
.y5b{bottom:974.190000px;}
.yfe{bottom:977.502000px;}
.y16a{bottom:977.875500px;}
.yae{bottom:981.462000px;}
.y30{bottom:981.591000px;}
.y116{bottom:986.692500px;}
.y1c5{bottom:986.791500px;}
.y5a{bottom:995.857500px;}
.y8c{bottom:996.523500px;}
.yfd{bottom:999.171000px;}
.y169{bottom:1000.141500px;}
.y190{bottom:1000.594500px;}
.y191{bottom:1003.309500px;}
.y11f{bottom:1004.550000px;}
.y115{bottom:1008.361500px;}
.yad{bottom:1014.712500px;}
.y2f{bottom:1020.819000px;}
.yfc{bottom:1020.840000px;}
.y168{bottom:1022.409000px;}
.y59{bottom:1037.427000px;}
.y1{bottom:1039.261500px;}
.yc{bottom:1040.356500px;}
.yac{bottom:1041.612000px;}
.y17{bottom:1042.507500px;}
.y167{bottom:1044.675000px;}
.y2e{bottom:1079.947500px;}
.h27{height:12.870699px;}
.h21{height:23.850624px;}
.h22{height:25.249382px;}
.h1d{height:31.800699px;}
.h2b{height:33.665702px;}
.h19{height:42.141798px;}
.h2e{height:42.932400px;}
.h24{height:42.938400px;}
.h9{height:46.080038px;}
.ha{height:46.145493px;}
.h30{height:51.216077px;}
.h7{height:53.798400px;}
.h18{height:57.828699px;}
.h2a{height:60.042699px;}
.hd{height:61.422699px;}
.h4{height:61.459121px;}
.h1f{height:61.907702px;}
.hf{height:63.281702px;}
.h1e{height:63.935702px;}
.h1c{height:63.941702px;}
.h5{height:64.557900px;}
.h16{height:68.970624px;}
.h2c{height:69.146400px;}
.h31{height:69.348077px;}
.h26{height:71.629248px;}
.h8{height:71.930400px;}
.h23{height:73.014624px;}
.h28{height:73.020624px;}
.h2{height:73.957358px;}
.hb{height:77.469300px;}
.h2f{height:78.530400px;}
.h17{height:78.536400px;}
.h25{height:82.495248px;}
.h6{height:82.561358px;}
.h20{height:84.780699px;}
.h1{height:88.766100px;}
.h29{height:91.460400px;}
.h2d{height:96.836400px;}
.he{height:100.501248px;}
.h10{height:102.320400px;}
.h14{height:102.326400px;}
.h15{height:102.998400px;}
.h13{height:103.004400px;}
.hc{height:104.011248px;}
.h11{height:110.622699px;}
.h3{height:111.541950px;}
.h12{height:151.526400px;}
.h1b{height:153.211248px;}
.h1a{height:167.951702px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:95.181000px;}
.x16{left:121.519500px;}
.xd{left:127.558500px;}
.x11{left:129.142500px;}
.x64{left:136.338000px;}
.x36{left:146.425500px;}
.xc{left:153.897000px;}
.x39{left:156.159000px;}
.x3a{left:158.230500px;}
.x38{left:160.354500px;}
.x18{left:161.905500px;}
.x65{left:163.653000px;}
.x5f{left:164.788500px;}
.x3{left:166.668000px;}
.x45{left:170.236500px;}
.x15{left:171.456000px;}
.x34{left:180.235500px;}
.x23{left:182.701500px;}
.x7{left:185.071500px;}
.x6{left:188.190000px;}
.x3b{left:189.202500px;}
.x44{left:192.919500px;}
.x14{left:196.002000px;}
.x52{left:198.999000px;}
.x22{left:208.957500px;}
.x3c{left:214.942500px;}
.x19{left:218.094000px;}
.x1a{left:220.663500px;}
.x46{left:226.084500px;}
.x47{left:232.912500px;}
.x4{left:241.956000px;}
.x60{left:243.831000px;}
.x26{left:246.901500px;}
.x5{left:257.697000px;}
.x10{left:259.356000px;}
.x66{left:261.324000px;}
.x21{left:262.650000px;}
.x2{left:266.242500px;}
.xa{left:278.565000px;}
.x55{left:282.615000px;}
.x37{left:290.292000px;}
.x43{left:293.043000px;}
.x27{left:295.587000px;}
.x1c{left:302.367000px;}
.x5d{left:304.510500px;}
.x56{left:310.635000px;}
.x4e{left:316.402500px;}
.x30{left:317.709000px;}
.x48{left:319.029000px;}
.x2d{left:324.375000px;}
.x2f{left:332.473500px;}
.x2b{left:346.437000px;}
.x57{left:362.466000px;}
.x1f{left:371.032500px;}
.x5c{left:375.504000px;}
.x24{left:376.972500px;}
.x61{left:395.518500px;}
.x1{left:397.486500px;}
.x1e{left:402.153000px;}
.x9{left:403.396500px;}
.x42{left:406.716000px;}
.x4c{left:413.419500px;}
.x1b{left:416.212500px;}
.x12{left:423.238500px;}
.x13{left:426.538500px;}
.x28{left:433.345500px;}
.x20{left:441.562500px;}
.x4d{left:442.930500px;}
.x35{left:450.220500px;}
.xf{left:454.611000px;}
.x58{left:456.717000px;}
.x31{left:459.097500px;}
.x8{left:467.779500px;}
.x1d{left:470.485500px;}
.x2c{left:480.505500px;}
.x49{left:485.037000px;}
.x4f{left:488.457000px;}
.x25{left:513.379500px;}
.x3d{left:515.350500px;}
.x4a{left:517.899000px;}
.x33{left:520.651500px;}
.x59{left:522.817500px;}
.x50{left:546.885000px;}
.x3e{left:548.212500px;}
.x5e{left:551.949000px;}
.x4b{left:554.110500px;}
.x51{left:560.313000px;}
.x62{left:566.692500px;}
.x5a{left:570.297000px;}
.x29{left:571.626000px;}
.x54{left:573.034500px;}
.x2e{left:583.053000px;}
.x32{left:593.608500px;}
.x2a{left:616.683000px;}
.x3f{left:618.547500px;}
.xb{left:625.030500px;}
.x40{left:662.788500px;}
.x53{left:664.288500px;}
.x63{left:667.303500px;}
.xe{left:673.140000px;}
.x41{left:683.020500px;}
.x5b{left:709.198500px;}
@media print{
.v6{vertical-align:-57.562667pt;}
.v16{vertical-align:-16.826667pt;}
.v11{vertical-align:-14.272000pt;}
.v7{vertical-align:-9.562667pt;}
.v13{vertical-align:-7.141333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:7.648000pt;}
.v14{vertical-align:12.426667pt;}
.v17{vertical-align:13.642667pt;}
.v2{vertical-align:16.117333pt;}
.vb{vertical-align:18.416000pt;}
.v12{vertical-align:19.770667pt;}
.ve{vertical-align:21.989333pt;}
.vf{vertical-align:23.136000pt;}
.vc{vertical-align:25.104000pt;}
.v3{vertical-align:26.325333pt;}
.v19{vertical-align:28.693333pt;}
.va{vertical-align:34.170667pt;}
.v18{vertical-align:38.256000pt;}
.vd{vertical-align:40.106667pt;}
.v8{vertical-align:43.130667pt;}
.v15{vertical-align:47.093333pt;}
.v9{vertical-align:70.064000pt;}
.v1a{vertical-align:77.306667pt;}
.v5{vertical-align:86.784000pt;}
.v4{vertical-align:89.904000pt;}
.v10{vertical-align:133.637333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls76{letter-spacing:0.000444pt;}
.ls1f{letter-spacing:0.000676pt;}
.ls4{letter-spacing:0.000679pt;}
.ls9{letter-spacing:0.000990pt;}
.ls3d{letter-spacing:0.002243pt;}
.ls39{letter-spacing:0.002452pt;}
.ls33{letter-spacing:0.002717pt;}
.ls7c{letter-spacing:0.004100pt;}
.lse{letter-spacing:0.004145pt;}
.ls40{letter-spacing:0.004646pt;}
.ls29{letter-spacing:0.004966pt;}
.ls2{letter-spacing:2.287633pt;}
.ls6{letter-spacing:2.292966pt;}
.ls8{letter-spacing:2.389492pt;}
.ls64{letter-spacing:2.653258pt;}
.ls4d{letter-spacing:2.655594pt;}
.ls83{letter-spacing:2.656853pt;}
.ls15{letter-spacing:2.658591pt;}
.ls34{letter-spacing:2.774489pt;}
.ls3a{letter-spacing:2.835091pt;}
.ls4c{letter-spacing:2.840424pt;}
.lsf{letter-spacing:3.213476pt;}
.ls38{letter-spacing:3.737979pt;}
.ls27{letter-spacing:4.021729pt;}
.ls36{letter-spacing:4.448942pt;}
.ls14{letter-spacing:4.577698pt;}
.ls7{letter-spacing:4.578039pt;}
.ls16{letter-spacing:4.583031pt;}
.ls17{letter-spacing:4.583373pt;}
.ls65{letter-spacing:5.654631pt;}
.ls5f{letter-spacing:5.659964pt;}
.ls4b{letter-spacing:6.092906pt;}
.ls1e{letter-spacing:6.371915pt;}
.ls60{letter-spacing:6.372145pt;}
.ls1d{letter-spacing:6.374642pt;}
.ls5c{letter-spacing:6.375925pt;}
.ls46{letter-spacing:6.377248pt;}
.ls43{letter-spacing:6.377479pt;}
.ls13{letter-spacing:6.660224pt;}
.ls3c{letter-spacing:7.185653pt;}
.lsb{letter-spacing:8.676236pt;}
.ls66{letter-spacing:8.902009pt;}
.ls7d{letter-spacing:8.903786pt;}
.ls6c{letter-spacing:8.907343pt;}
.ls10{letter-spacing:8.926379pt;}
.lsa{letter-spacing:8.931713pt;}
.ls7e{letter-spacing:9.029553pt;}
.ls54{letter-spacing:10.626452pt;}
.ls12{letter-spacing:10.628145pt;}
.ls47{letter-spacing:10.710642pt;}
.ls73{letter-spacing:13.659976pt;}
.ls72{letter-spacing:13.661119pt;}
.ls11{letter-spacing:13.877183pt;}
.ls87{letter-spacing:14.006642pt;}
.ls30{letter-spacing:14.163915pt;}
.ls3f{letter-spacing:14.164905pt;}
.ls6f{letter-spacing:14.166323pt;}
.ls26{letter-spacing:14.166642pt;}
.ls69{letter-spacing:14.167786pt;}
.ls25{letter-spacing:14.169248pt;}
.ls4f{letter-spacing:14.170238pt;}
.ls82{letter-spacing:14.171657pt;}
.ls5e{letter-spacing:14.171976pt;}
.ls3e{letter-spacing:16.822187pt;}
.ls63{letter-spacing:16.824941pt;}
.ls1c{letter-spacing:17.706238pt;}
.ls8d{letter-spacing:17.707657pt;}
.ls8e{letter-spacing:17.707976pt;}
.ls1b{letter-spacing:17.708624pt;}
.ls74{letter-spacing:17.709119pt;}
.ls62{letter-spacing:17.709164pt;}
.ls75{letter-spacing:17.710933pt;}
.ls2c{letter-spacing:17.711572pt;}
.ls59{letter-spacing:17.712676pt;}
.ls4a{letter-spacing:17.712990pt;}
.lsc{letter-spacing:17.725577pt;}
.ls86{letter-spacing:17.743312pt;}
.ls5b{letter-spacing:18.404905pt;}
.ls19{letter-spacing:19.335673pt;}
.lsd{letter-spacing:19.555713pt;}
.ls58{letter-spacing:19.766323pt;}
.ls81{letter-spacing:19.825297pt;}
.ls3b{letter-spacing:19.830631pt;}
.ls42{letter-spacing:20.363520pt;}
.ls80{letter-spacing:20.366400pt;}
.ls2d{letter-spacing:20.367508pt;}
.ls45{letter-spacing:20.538238pt;}
.ls56{letter-spacing:20.543572pt;}
.ls71{letter-spacing:20.560990pt;}
.ls79{letter-spacing:20.567786pt;}
.ls48{letter-spacing:21.339657pt;}
.ls5d{letter-spacing:21.350986pt;}
.ls5a{letter-spacing:21.652654pt;}
.ls23{letter-spacing:22.047572pt;}
.ls5{letter-spacing:22.224000pt;}
.ls89{letter-spacing:22.274591pt;}
.ls67{letter-spacing:23.200220pt;}
.ls85{letter-spacing:23.366631pt;}
.ls88{letter-spacing:23.383925pt;}
.ls21{letter-spacing:24.084905pt;}
.ls22{letter-spacing:24.212905pt;}
.ls52{letter-spacing:24.372948pt;}
.ls1a{letter-spacing:25.025146pt;}
.ls55{letter-spacing:25.192753pt;}
.ls44{letter-spacing:25.198087pt;}
.ls3{letter-spacing:25.818667pt;}
.ls53{letter-spacing:25.871614pt;}
.ls78{letter-spacing:26.225297pt;}
.ls50{letter-spacing:26.441248pt;}
.ls37{letter-spacing:27.543925pt;}
.ls6b{letter-spacing:28.334351pt;}
.ls6d{letter-spacing:28.336676pt;}
.ls51{letter-spacing:28.735614pt;}
.ls7b{letter-spacing:29.670986pt;}
.ls1{letter-spacing:31.880533pt;}
.ls8a{letter-spacing:33.067657pt;}
.ls8b{letter-spacing:33.067976pt;}
.ls77{letter-spacing:39.037258pt;}
.ls7a{letter-spacing:41.890591pt;}
.ls35{letter-spacing:47.495925pt;}
.ls2a{letter-spacing:49.935572pt;}
.ls84{letter-spacing:60.429119pt;}
.ls4e{letter-spacing:60.451608pt;}
.ls24{letter-spacing:67.370238pt;}
.ls70{letter-spacing:79.066238pt;}
.ls6e{letter-spacing:91.796905pt;}
.ls31{letter-spacing:92.751572pt;}
.ls8c{letter-spacing:98.685258pt;}
.ls41{letter-spacing:132.049653pt;}
.ls28{letter-spacing:133.890591pt;}
.ls2b{letter-spacing:133.895925pt;}
.ls68{letter-spacing:148.678631pt;}
.ls49{letter-spacing:199.706909pt;}
.ls32{letter-spacing:366.098452pt;}
.ls6a{letter-spacing:489.188024pt;}
.ls7f{letter-spacing:523.830631pt;}
.ls61{letter-spacing:566.113297pt;}
.ls57{letter-spacing:576.977653pt;}
.ls2e{letter-spacing:626.387915pt;}
.ls2f{letter-spacing:648.811343pt;}
.ls18{letter-spacing:799.786516pt;}
.ls20{letter-spacing:809.682591pt;}
.wse4{word-spacing:-63.761067pt;}
.ws5a{word-spacing:-50.479636pt;}
.wsce{word-spacing:-46.035490pt;}
.ws5c{word-spacing:-45.163900pt;}
.wse1{word-spacing:-41.699738pt;}
.ws58{word-spacing:-40.590295pt;}
.ws59{word-spacing:-35.068587pt;}
.wscc{word-spacing:-29.995578pt;}
.wsd2{word-spacing:-29.521250pt;}
.ws1e{word-spacing:-29.393852pt;}
.ws100{word-spacing:-28.692333pt;}
.ws5{word-spacing:-24.438273pt;}
.wsda{word-spacing:-23.910333pt;}
.ws22{word-spacing:-21.551241pt;}
.ws6c{word-spacing:-20.577208pt;}
.ws51{word-spacing:-19.925333pt;}
.ws12{word-spacing:-18.583288pt;}
.ws53{word-spacing:-17.343010pt;}
.ws20{word-spacing:-17.279249pt;}
.ws75{word-spacing:-16.478812pt;}
.ws6e{word-spacing:-16.446812pt;}
.ws74{word-spacing:-16.332355pt;}
.ws107{word-spacing:-15.940267pt;}
.ws71{word-spacing:-14.188355pt;}
.ws1f{word-spacing:-9.627921pt;}
.ws79{word-spacing:-9.158188pt;}
.ws7b{word-spacing:-9.152855pt;}
.ws6d{word-spacing:-9.152363pt;}
.ws7a{word-spacing:-7.637564pt;}
.ws70{word-spacing:-7.637072pt;}
.ws7c{word-spacing:-7.632255pt;}
.ws73{word-spacing:-7.626921pt;}
.ws10{word-spacing:-6.949956pt;}
.wse5{word-spacing:-6.694912pt;}
.ws4a{word-spacing:-4.782067pt;}
.ws4e{word-spacing:-4.048748pt;}
.ws4f{word-spacing:-4.046768pt;}
.wsc3{word-spacing:-3.506859pt;}
.ws11{word-spacing:-3.443098pt;}
.wsc5{word-spacing:-3.315575pt;}
.ws7d{word-spacing:-3.188053pt;}
.wsed{word-spacing:-3.176643pt;}
.wsec{word-spacing:-3.174190pt;}
.ws97{word-spacing:-2.933009pt;}
.ws77{word-spacing:-2.879852pt;}
.ws78{word-spacing:-2.874518pt;}
.ws6a{word-spacing:-2.869248pt;}
.ws10d{word-spacing:-2.805487pt;}
.ws99{word-spacing:-2.677965pt;}
.wsa4{word-spacing:-2.614204pt;}
.ws7e{word-spacing:-2.550443pt;}
.wsfb{word-spacing:-2.486682pt;}
.ws3e{word-spacing:-2.422921pt;}
.ws14{word-spacing:-2.373820pt;}
.wsc4{word-spacing:-2.359159pt;}
.ws21{word-spacing:-2.167876pt;}
.wsca{word-spacing:-1.912832pt;}
.wsb1{word-spacing:-1.896501pt;}
.wsa7{word-spacing:-1.849071pt;}
.wsf1{word-spacing:-1.785310pt;}
.wsd{word-spacing:-1.721549pt;}
.ws27{word-spacing:-1.530266pt;}
.ws4d{word-spacing:-1.471582pt;}
.ws4c{word-spacing:-1.466505pt;}
.wsb{word-spacing:-1.402743pt;}
.wsf2{word-spacing:-1.338982pt;}
.ws56{word-spacing:-0.956416pt;}
.wsf4{word-spacing:-0.771961pt;}
.ws43{word-spacing:-0.765133pt;}
.wsc{word-spacing:-0.701372pt;}
.ws8{word-spacing:-0.573850pt;}
.ws24{word-spacing:-0.541969pt;}
.ws2a{word-spacing:-0.510089pt;}
.ws6b{word-spacing:-0.255044pt;}
.ws8c{word-spacing:-0.191283pt;}
.ws7f{word-spacing:-0.042507pt;}
.ws7{word-spacing:0.000000pt;}
.ws41{word-spacing:0.063761pt;}
.ws47{word-spacing:0.127522pt;}
.wsbe{word-spacing:0.191283pt;}
.ws5f{word-spacing:0.255044pt;}
.ws54{word-spacing:0.318805pt;}
.ws5e{word-spacing:0.350641pt;}
.ws72{word-spacing:0.382566pt;}
.wsef{word-spacing:0.395245pt;}
.ws42{word-spacing:0.432174pt;}
.wsac{word-spacing:0.433056pt;}
.wsc2{word-spacing:0.446327pt;}
.wsd8{word-spacing:0.460421pt;}
.wsb4{word-spacing:0.573850pt;}
.wsfe{word-spacing:0.637611pt;}
.wscd{word-spacing:0.701372pt;}
.wsbb{word-spacing:0.796918pt;}
.ws82{word-spacing:0.828894pt;}
.wsc7{word-spacing:0.892655pt;}
.wscf{word-spacing:1.048779pt;}
.ws8e{word-spacing:1.147699pt;}
.wsfd{word-spacing:1.211460pt;}
.wscb{word-spacing:1.275221pt;}
.ws3d{word-spacing:1.338982pt;}
.ws26{word-spacing:1.402743pt;}
.ws48{word-spacing:1.412236pt;}
.wsc9{word-spacing:1.466505pt;}
.ws93{word-spacing:1.594027pt;}
.ws62{word-spacing:1.657788pt;}
.ws23{word-spacing:1.721549pt;}
.ws32{word-spacing:1.785310pt;}
.wsd5{word-spacing:1.849071pt;}
.ws2e{word-spacing:1.912832pt;}
.wsf5{word-spacing:2.033935pt;}
.ws98{word-spacing:2.040354pt;}
.wsfa{word-spacing:2.167876pt;}
.ws66{word-spacing:2.231637pt;}
.wsb6{word-spacing:2.237797pt;}
.ws96{word-spacing:2.295398pt;}
.ws87{word-spacing:2.359159pt;}
.wse3{word-spacing:2.396587pt;}
.ws91{word-spacing:2.422921pt;}
.ws92{word-spacing:2.454801pt;}
.ws104{word-spacing:2.486682pt;}
.wse{word-spacing:2.550443pt;}
.wsc6{word-spacing:2.614204pt;}
.ws2d{word-spacing:2.677965pt;}
.ws40{word-spacing:2.741726pt;}
.wseb{word-spacing:2.805487pt;}
.wsa8{word-spacing:2.932989pt;}
.wsfc{word-spacing:2.933009pt;}
.wsd9{word-spacing:2.945753pt;}
.wsd4{word-spacing:2.996770pt;}
.ws36{word-spacing:3.060531pt;}
.wse2{word-spacing:3.124292pt;}
.ws15{word-spacing:3.211639pt;}
.wsa9{word-spacing:3.248976pt;}
.ws2f{word-spacing:3.251814pt;}
.wsf0{word-spacing:3.379337pt;}
.wsd3{word-spacing:3.439382pt;}
.wsa{word-spacing:3.443098pt;}
.ws57{word-spacing:3.458652pt;}
.wsf{word-spacing:3.506859pt;}
.wsae{word-spacing:3.565481pt;}
.ws31{word-spacing:3.570620pt;}
.wsb3{word-spacing:3.634381pt;}
.ws9f{word-spacing:3.698142pt;}
.wsbc{word-spacing:3.761903pt;}
.ws76{word-spacing:3.825664pt;}
.wsad{word-spacing:3.857545pt;}
.ws16{word-spacing:3.909821pt;}
.ws1c{word-spacing:3.985067pt;}
.ws67{word-spacing:4.080708pt;}
.ws6{word-spacing:4.131706pt;}
.wsd1{word-spacing:4.144469pt;}
.ws4{word-spacing:4.167056pt;}
.wsc8{word-spacing:4.208230pt;}
.wsa2{word-spacing:4.271991pt;}
.ws8f{word-spacing:4.335753pt;}
.ws49{word-spacing:4.463275pt;}
.wsb5{word-spacing:4.476014pt;}
.wsc0{word-spacing:4.590797pt;}
.wse0{word-spacing:4.718319pt;}
.ws38{word-spacing:4.782067pt;}
.ws95{word-spacing:4.782080pt;}
.wsdc{word-spacing:4.796926pt;}
.ws52{word-spacing:4.845841pt;}
.ws18{word-spacing:4.898913pt;}
.ws44{word-spacing:4.909602pt;}
.ws2{word-spacing:4.957420pt;}
.ws60{word-spacing:5.037124pt;}
.ws86{word-spacing:5.100885pt;}
.wse8{word-spacing:5.120193pt;}
.wse9{word-spacing:5.145293pt;}
.wsea{word-spacing:5.164646pt;}
.ws8d{word-spacing:5.228407pt;}
.wsb7{word-spacing:5.292169pt;}
.ws46{word-spacing:5.355930pt;}
.ws0{word-spacing:5.380386pt;}
.wsd6{word-spacing:5.419691pt;}
.ws105{word-spacing:5.483452pt;}
.ws2b{word-spacing:5.547213pt;}
.ws63{word-spacing:5.610974pt;}
.ws35{word-spacing:5.674735pt;}
.ws17{word-spacing:5.713459pt;}
.ws1a{word-spacing:5.738467pt;}
.ws112{word-spacing:5.738496pt;}
.ws110{word-spacing:5.802257pt;}
.ws83{word-spacing:5.824345pt;}
.ws50{word-spacing:5.890133pt;}
.ws3f{word-spacing:5.929779pt;}
.wsbd{word-spacing:5.980372pt;}
.ws89{word-spacing:5.993540pt;}
.wsdf{word-spacing:6.057301pt;}
.ws61{word-spacing:6.121062pt;}
.wsa3{word-spacing:6.184823pt;}
.wsaa{word-spacing:6.312346pt;}
.ws102{word-spacing:6.376107pt;}
.ws9{word-spacing:6.439868pt;}
.wsaf{word-spacing:6.567390pt;}
.ws3c{word-spacing:6.631151pt;}
.wsf6{word-spacing:6.694912pt;}
.ws10c{word-spacing:6.758673pt;}
.ws39{word-spacing:6.886195pt;}
.wsc1{word-spacing:7.013717pt;}
.ws4b{word-spacing:7.141239pt;}
.ws65{word-spacing:7.205001pt;}
.ws28{word-spacing:7.268762pt;}
.ws13{word-spacing:7.342552pt;}
.ws45{word-spacing:7.460045pt;}
.wsa0{word-spacing:7.523806pt;}
.wsf9{word-spacing:7.587567pt;}
.ws3{word-spacing:7.651307pt;}
.wsa6{word-spacing:7.651328pt;}
.wsdd{word-spacing:7.778850pt;}
.wsff{word-spacing:7.842611pt;}
.ws10e{word-spacing:7.906372pt;}
.ws8a{word-spacing:8.097655pt;}
.ws9b{word-spacing:8.161417pt;}
.ws34{word-spacing:8.225178pt;}
.ws1{word-spacing:8.262367pt;}
.ws9e{word-spacing:8.288939pt;}
.ws30{word-spacing:8.480222pt;}
.ws64{word-spacing:8.543983pt;}
.ws68{word-spacing:8.735266pt;}
.ws84{word-spacing:8.862788pt;}
.ws69{word-spacing:8.990310pt;}
.ws19{word-spacing:9.029826pt;}
.wsbf{word-spacing:9.500399pt;}
.wsde{word-spacing:9.564160pt;}
.ws9c{word-spacing:9.627921pt;}
.ws3b{word-spacing:9.691682pt;}
.wsf8{word-spacing:10.138010pt;}
.ws108{word-spacing:10.329293pt;}
.ws2c{word-spacing:10.456815pt;}
.ws10a{word-spacing:10.520576pt;}
.ws88{word-spacing:10.711859pt;}
.ws9d{word-spacing:10.775620pt;}
.wse7{word-spacing:10.966903pt;}
.ws3a{word-spacing:11.030665pt;}
.wsa5{word-spacing:11.349470pt;}
.ws90{word-spacing:11.413231pt;}
.ws94{word-spacing:11.476992pt;}
.ws111{word-spacing:11.604514pt;}
.ws85{word-spacing:11.795797pt;}
.wsab{word-spacing:11.859558pt;}
.ws103{word-spacing:11.923319pt;}
.ws8b{word-spacing:12.050842pt;}
.wsb8{word-spacing:12.178364pt;}
.wsa1{word-spacing:12.305886pt;}
.ws106{word-spacing:12.433408pt;}
.wsf3{word-spacing:12.497169pt;}
.wsd0{word-spacing:12.688452pt;}
.wsf7{word-spacing:12.752213pt;}
.wsdb{word-spacing:12.784094pt;}
.ws10b{word-spacing:12.815974pt;}
.wsb0{word-spacing:12.847855pt;}
.ws81{word-spacing:13.389824pt;}
.wsb9{word-spacing:13.729244pt;}
.ws9a{word-spacing:13.836151pt;}
.ws101{word-spacing:13.873551pt;}
.ws37{word-spacing:13.899913pt;}
.ws1d{word-spacing:14.537523pt;}
.ws33{word-spacing:14.983851pt;}
.ws10f{word-spacing:15.238895pt;}
.ws109{word-spacing:15.302656pt;}
.ws80{word-spacing:16.195311pt;}
.wsba{word-spacing:16.769161pt;}
.wsb2{word-spacing:26.856024pt;}
.ws1b{word-spacing:37.842193pt;}
.wsd7{word-spacing:46.413725pt;}
.ws29{word-spacing:74.600067pt;}
.wse6{word-spacing:84.253873pt;}
.ws6f{word-spacing:86.549272pt;}
.wsee{word-spacing:115.024964pt;}
.ws5b{word-spacing:524.434773pt;}
.ws5d{word-spacing:879.201348pt;}
.ws55{word-spacing:929.190025pt;}
.ws25{word-spacing:2193.396611pt;}
._5{margin-left:-70.329265pt;}
._30{margin-left:-62.056519pt;}
._2e{margin-left:-60.480197pt;}
._1c{margin-left:-48.861930pt;}
._4b{margin-left:-42.694291pt;}
._42{margin-left:-41.056916pt;}
._5a{margin-left:-39.021773pt;}
._9{margin-left:-36.236593pt;}
._20{margin-left:-34.981892pt;}
._1f{margin-left:-33.979552pt;}
._f{margin-left:-33.023136pt;}
._54{margin-left:-32.133058pt;}
._e{margin-left:-31.242923pt;}
._19{margin-left:-30.163337pt;}
._b{margin-left:-29.222982pt;}
._16{margin-left:-27.461841pt;}
._40{margin-left:-24.622026pt;}
._1a{margin-left:-22.225112pt;}
._44{margin-left:-18.151958pt;}
._56{margin-left:-16.609264pt;}
._2{margin-left:-12.426599pt;}
._34{margin-left:-11.255074pt;}
._2d{margin-left:-10.246116pt;}
._4{margin-left:-8.196268pt;}
._59{margin-left:-7.079612pt;}
._0{margin-left:-6.151636pt;}
._10{margin-left:-5.228407pt;}
._3{margin-left:-4.098134pt;}
._8{margin-left:-3.172749pt;}
._1{margin-left:-2.019940pt;}
._d{margin-left:-0.890135pt;}
._12{width:1.124766pt;}
._a{width:2.142366pt;}
._3e{width:3.172749pt;}
._6{width:4.098134pt;}
._35{width:7.294109pt;}
._14{width:10.393054pt;}
._17{width:11.999047pt;}
._4a{width:13.007258pt;}
._11{width:14.198304pt;}
._c{width:15.580634pt;}
._4d{width:16.707919pt;}
._18{width:17.854831pt;}
._13{width:19.515274pt;}
._23{width:20.849869pt;}
._15{width:21.876382pt;}
._43{width:23.339070pt;}
._1b{width:24.259916pt;}
._3a{width:25.510611pt;}
._37{width:26.828092pt;}
._49{width:28.951876pt;}
._26{width:30.015365pt;}
._39{width:31.204228pt;}
._29{width:32.105968pt;}
._5b{width:34.023343pt;}
._38{width:35.031424pt;}
._3b{width:36.327746pt;}
._4c{width:38.384162pt;}
._31{width:42.826987pt;}
._33{width:46.078801pt;}
._2f{width:47.057247pt;}
._7{width:48.913211pt;}
._5c{width:49.927879pt;}
._28{width:52.500052pt;}
._2b{width:54.199426pt;}
._2a{width:56.535652pt;}
._1e{width:57.767526pt;}
._24{width:58.835403pt;}
._22{width:63.824828pt;}
._27{width:71.476156pt;}
._57{width:77.251197pt;}
._32{width:79.510050pt;}
._41{width:86.077200pt;}
._4f{width:92.381561pt;}
._58{width:98.909863pt;}
._3f{width:103.292400pt;}
._25{width:110.689212pt;}
._46{width:125.113592pt;}
._45{width:127.139567pt;}
._4e{width:164.737044pt;}
._52{width:262.323487pt;}
._53{width:286.606582pt;}
._50{width:311.579617pt;}
._47{width:344.835153pt;}
._55{width:440.397687pt;}
._51{width:502.514068pt;}
._48{width:519.078477pt;}
._21{width:1060.491898pt;}
._2c{width:1105.099134pt;}
._36{width:1429.010449pt;}
._3d{width:2002.926387pt;}
._1d{width:2062.803125pt;}
._3c{width:2078.674534pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.fs2{font-size:132.197867pt;}
.y58{bottom:-20.953333pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:43.302667pt;}
.y16{bottom:73.534667pt;}
.y7e{bottom:73.536000pt;}
.y56{bottom:78.172000pt;}
.y18d{bottom:109.625333pt;}
.y55{bottom:113.041333pt;}
.y8b{bottom:113.385333pt;}
.y110{bottom:113.421333pt;}
.yab{bottom:119.428000pt;}
.y18c{bottom:120.558667pt;}
.y7d{bottom:121.261333pt;}
.y114{bottom:122.982667pt;}
.y54{bottom:132.301333pt;}
.y8a{bottom:132.646667pt;}
.y166{bottom:134.854667pt;}
.y1a8{bottom:135.048000pt;}
.y18f{bottom:135.298667pt;}
.y1b5{bottom:138.830667pt;}
.y150{bottom:140.074667pt;}
.y7c{bottom:140.521333pt;}
.y130{bottom:141.946667pt;}
.y113{bottom:142.244000pt;}
.y18e{bottom:143.810667pt;}
.yfb{bottom:147.141333pt;}
.ydb{bottom:151.108000pt;}
.y53{bottom:151.562667pt;}
.ya8{bottom:151.908000pt;}
.y179{bottom:151.925333pt;}
.y165{bottom:154.116000pt;}
.y1b4{bottom:158.090667pt;}
.y12c{bottom:159.186667pt;}
.y14f{bottom:159.336000pt;}
.y7b{bottom:159.782667pt;}
.y12f{bottom:161.208000pt;}
.y89{bottom:162.202667pt;}
.yfa{bottom:166.402667pt;}
.y2d{bottom:167.145333pt;}
.y18b{bottom:168.306667pt;}
.yda{bottom:170.369333pt;}
.y52{bottom:170.824000pt;}
.ya7{bottom:171.169333pt;}
.y178{bottom:171.186667pt;}
.y164{bottom:173.377333pt;}
.y1e5{bottom:176.634667pt;}
.y12b{bottom:178.448000pt;}
.y7a{bottom:179.044000pt;}
.y18a{bottom:182.070667pt;}
.y2c{bottom:185.210667pt;}
.yf9{bottom:185.664000pt;}
.y189{bottom:187.568000pt;}
.yd9{bottom:189.629333pt;}
.y51{bottom:190.085333pt;}
.ya6{bottom:190.430667pt;}
.y14e{bottom:191.884000pt;}
.y163{bottom:192.638667pt;}
.y1e4{bottom:195.896000pt;}
.y79{bottom:198.305333pt;}
.y175{bottom:199.978667pt;}
.y14d{bottom:202.817333pt;}
.y2b{bottom:203.276000pt;}
.yf8{bottom:204.925333pt;}
.y188{bottom:206.829333pt;}
.yd8{bottom:208.890667pt;}
.y50{bottom:209.346667pt;}
.yc9{bottom:209.690667pt;}
.ya5{bottom:209.692000pt;}
.y162{bottom:211.900000pt;}
.y1e3{bottom:215.156000pt;}
.y78{bottom:217.566667pt;}
.y174{bottom:219.240000pt;}
.y2a{bottom:221.341333pt;}
.yf7{bottom:224.186667pt;}
.y187{bottom:226.090667pt;}
.y88{bottom:227.004000pt;}
.yd7{bottom:228.152000pt;}
.y4f{bottom:228.608000pt;}
.ya4{bottom:228.952000pt;}
.y77{bottom:236.828000pt;}
.y29{bottom:239.406667pt;}
.y1e2{bottom:239.882667pt;}
.yf6{bottom:243.446667pt;}
.y87{bottom:246.265333pt;}
.y14c{bottom:246.668000pt;}
.y4e{bottom:247.868000pt;}
.ya3{bottom:248.213333pt;}
.y161{bottom:250.421333pt;}
.y128{bottom:254.717333pt;}
.y76{bottom:256.088000pt;}
.y28{bottom:257.473333pt;}
.yc8{bottom:258.508000pt;}
.y186{bottom:258.514667pt;}
.y1e1{bottom:259.144000pt;}
.yf5{bottom:262.708000pt;}
.y14b{bottom:265.929333pt;}
.yd6{bottom:266.674667pt;}
.y4d{bottom:267.129333pt;}
.ya2{bottom:267.474667pt;}
.y185{bottom:269.449333pt;}
.y160{bottom:269.682667pt;}
.y127{bottom:273.977333pt;}
.y75{bottom:275.349333pt;}
.y27{bottom:275.538667pt;}
.y1e0{bottom:278.405333pt;}
.yf4{bottom:281.969333pt;}
.y15f{bottom:283.446667pt;}
.y14a{bottom:285.190667pt;}
.yd5{bottom:285.936000pt;}
.y15e{bottom:288.944000pt;}
.y11c{bottom:293.013333pt;}
.y126{bottom:293.238667pt;}
.y26{bottom:293.604000pt;}
.y11e{bottom:294.530667pt;}
.y74{bottom:294.610667pt;}
.ya1{bottom:297.030667pt;}
.yc7{bottom:298.922667pt;}
.yf3{bottom:301.230667pt;}
.y4c{bottom:301.998667pt;}
.y1df{bottom:303.132000pt;}
.yc6{bottom:304.420000pt;}
.y149{bottom:304.452000pt;}
.yd4{bottom:305.196000pt;}
.y15d{bottom:308.205333pt;}
.y11b{bottom:312.274667pt;}
.y184{bottom:312.290667pt;}
.y11d{bottom:313.792000pt;}
.y73{bottom:313.872000pt;}
.yf2{bottom:320.492000pt;}
.y25{bottom:320.574667pt;}
.y4b{bottom:321.260000pt;}
.y15c{bottom:321.969333pt;}
.y1de{bottom:322.393333pt;}
.y11a{bottom:323.109333pt;}
.yc5{bottom:323.681333pt;}
.y148{bottom:323.713333pt;}
.yd3{bottom:324.457333pt;}
.y15b{bottom:327.465333pt;}
.ya0{bottom:337.906667pt;}
.yf1{bottom:339.753333pt;}
.y119{bottom:340.204000pt;}
.y4a{bottom:340.521333pt;}
.y183{bottom:341.846667pt;}
.y147{bottom:342.973333pt;}
.y72{bottom:343.428000pt;}
.yd2{bottom:343.718667pt;}
.y15a{bottom:346.726667pt;}
.y1dd{bottom:347.118667pt;}
.yc4{bottom:347.816000pt;}
.y9f{bottom:357.168000pt;}
.yc3{bottom:358.749333pt;}
.yf0{bottom:359.013333pt;}
.y49{bottom:359.781333pt;}
.y146{bottom:362.234667pt;}
.yd1{bottom:362.980000pt;}
.y159{bottom:365.988000pt;}
.y1dc{bottom:366.380000pt;}
.y112{bottom:374.506667pt;}
.y9e{bottom:376.428000pt;}
.y48{bottom:379.042667pt;}
.yd0{bottom:382.241333pt;}
.y158{bottom:385.249333pt;}
.y182{bottom:387.913333pt;}
.yef{bottom:388.569333pt;}
.y71{bottom:389.642667pt;}
.y1db{bottom:391.106667pt;}
.y9d{bottom:395.689333pt;}
.y47{bottom:398.304000pt;}
.yc2{bottom:400.093333pt;}
.y145{bottom:400.757333pt;}
.ycf{bottom:401.502667pt;}
.y157{bottom:404.510667pt;}
.y181{bottom:407.174667pt;}
.y70{bottom:408.904000pt;}
.y1da{bottom:410.368000pt;}
.y1b1{bottom:411.298667pt;}
.y24{bottom:411.700000pt;}
.y9c{bottom:414.950667pt;}
.y23{bottom:415.729333pt;}
.y46{bottom:417.565333pt;}
.y144{bottom:420.018667pt;}
.yce{bottom:420.762667pt;}
.y156{bottom:423.772000pt;}
.y180{bottom:426.436000pt;}
.y6f{bottom:428.165333pt;}
.y1d9{bottom:429.629333pt;}
.yee{bottom:430.136000pt;}
.y1b0{bottom:430.560000pt;}
.y22{bottom:430.961333pt;}
.yc1{bottom:433.234667pt;}
.y9b{bottom:434.212000pt;}
.y143{bottom:439.280000pt;}
.ycd{bottom:440.024000pt;}
.y155{bottom:443.032000pt;}
.y17f{bottom:445.697333pt;}
.y6e{bottom:447.426667pt;}
.yed{bottom:449.397333pt;}
.y1af{bottom:449.821333pt;}
.y45{bottom:452.434667pt;}
.yc0{bottom:453.384000pt;}
.y9a{bottom:453.473333pt;}
.y1d8{bottom:454.356000pt;}
.y142{bottom:458.540000pt;}
.ycc{bottom:459.285333pt;}
.y154{bottom:462.293333pt;}
.ybf{bottom:464.318667pt;}
.y17e{bottom:464.958667pt;}
.y6d{bottom:466.688000pt;}
.yec{bottom:468.658667pt;}
.y1ae{bottom:469.081333pt;}
.y15{bottom:469.212000pt;}
.yaa{bottom:470.021333pt;}
.y44{bottom:471.696000pt;}
.y1d7{bottom:473.616000pt;}
.y10f{bottom:476.252000pt;}
.y141{bottom:477.801333pt;}
.y1c4{bottom:480.724000pt;}
.y99{bottom:483.029333pt;}
.y6c{bottom:485.949333pt;}
.yeb{bottom:487.918667pt;}
.y1ad{bottom:488.342667pt;}
.ybe{bottom:489.802667pt;}
.y43{bottom:490.956000pt;}
.yb{bottom:491.250667pt;}
.y12a{bottom:491.357333pt;}
.y153{bottom:491.849333pt;}
.y1a7{bottom:492.930667pt;}
.y17d{bottom:494.513333pt;}
.y10e{bottom:495.513333pt;}
.y140{bottom:497.062667pt;}
.y1d6{bottom:498.342667pt;}
.y1c3{bottom:499.985333pt;}
.y1a6{bottom:503.865333pt;}
.y6b{bottom:505.209333pt;}
.ycb{bottom:505.777333pt;}
.yea{bottom:507.180000pt;}
.y1ac{bottom:507.604000pt;}
.ybd{bottom:509.064000pt;}
.y42{bottom:510.217333pt;}
.y129{bottom:510.618667pt;}
.y10d{bottom:514.774667pt;}
.y13f{bottom:516.324000pt;}
.y1d5{bottom:517.604000pt;}
.y1c2{bottom:519.246667pt;}
.y21{bottom:523.281333pt;}
.y17c{bottom:524.069333pt;}
.y6a{bottom:524.470667pt;}
.yca{bottom:525.038667pt;}
.ye9{bottom:526.441333pt;}
.y1ab{bottom:526.865333pt;}
.y41{bottom:529.478667pt;}
.ybc{bottom:530.542667pt;}
.y98{bottom:533.845333pt;}
.y10c{bottom:534.034667pt;}
.y12e{bottom:534.304000pt;}
.y13e{bottom:535.585333pt;}
.y1d4{bottom:536.865333pt;}
.y1c1{bottom:538.508000pt;}
.y152{bottom:539.138667pt;}
.ybb{bottom:541.476000pt;}
.y69{bottom:543.732000pt;}
.ye8{bottom:545.702667pt;}
.y1a5{bottom:545.850667pt;}
.y86{bottom:546.329333pt;}
.y40{bottom:548.740000pt;}
.y10b{bottom:553.296000pt;}
.y12d{bottom:553.564000pt;}
.y13d{bottom:554.846667pt;}
.y1aa{bottom:556.421333pt;}
.y1c0{bottom:557.768000pt;}
.y151{bottom:558.400000pt;}
.y1b3{bottom:560.284000pt;}
.y1d3{bottom:561.592000pt;}
.y20{bottom:561.802667pt;}
.y177{bottom:562.796000pt;}
.y68{bottom:562.993333pt;}
.ye7{bottom:564.964000pt;}
.y85{bottom:565.590667pt;}
.y3f{bottom:568.001333pt;}
.y17b{bottom:569.100000pt;}
.y10a{bottom:572.557333pt;}
.y13c{bottom:574.106667pt;}
.yba{bottom:575.332000pt;}
.y97{bottom:576.130667pt;}
.y1bf{bottom:577.029333pt;}
.y1b2{bottom:579.545333pt;}
.y8{bottom:580.864000pt;}
.y1a3{bottom:580.992000pt;}
.y176{bottom:582.056000pt;}
.y67{bottom:582.254667pt;}
.ya{bottom:583.388000pt;}
.y1a4{bottom:583.406667pt;}
.ye6{bottom:584.225333pt;}
.y84{bottom:584.852000pt;}
.yb9{bottom:586.266667pt;}
.y1d2{bottom:586.318667pt;}
.y3e{bottom:587.262667pt;}
.y17a{bottom:588.361333pt;}
.y13b{bottom:593.368000pt;}
.y1be{bottom:596.290667pt;}
.y1f{bottom:600.325333pt;}
.y66{bottom:601.516000pt;}
.y96{bottom:602.021333pt;}
.y1a9{bottom:602.028000pt;}
.y109{bottom:602.113333pt;}
.ye5{bottom:603.485333pt;}
.y83{bottom:604.113333pt;}
.y7{bottom:604.774667pt;}
.y1d1{bottom:605.578667pt;}
.y3d{bottom:606.522667pt;}
.y9{bottom:607.298667pt;}
.y6{bottom:609.609333pt;}
.y13a{bottom:612.629333pt;}
.y1bd{bottom:615.552000pt;}
.y1a2{bottom:616.134667pt;}
.y65{bottom:620.776000pt;}
.ye4{bottom:622.746667pt;}
.y82{bottom:623.374667pt;}
.y1d0{bottom:624.840000pt;}
.y3c{bottom:625.784000pt;}
.yb8{bottom:628.709333pt;}
.y139{bottom:631.890667pt;}
.y173{bottom:632.178667pt;}
.y1a1{bottom:635.396000pt;}
.y111{bottom:636.353333pt;}
.y1e{bottom:638.848000pt;}
.y64{bottom:640.037333pt;}
.y95{bottom:640.544000pt;}
.ye3{bottom:642.008000pt;}
.y81{bottom:642.634667pt;}
.y108{bottom:643.680000pt;}
.y3b{bottom:645.045333pt;}
.y1cf{bottom:649.566667pt;}
.y1a0{bottom:650.273333pt;}
.y172{bottom:651.440000pt;}
.y1bc{bottom:654.073333pt;}
.yb7{bottom:654.988000pt;}
.y63{bottom:659.298667pt;}
.y19f{bottom:659.837333pt;}
.ye2{bottom:661.269333pt;}
.y80{bottom:661.896000pt;}
.y107{bottom:662.941333pt;}
.y3a{bottom:664.306667pt;}
.ya9{bottom:664.364000pt;}
.yb6{bottom:665.922667pt;}
.y1ce{bottom:668.828000pt;}
.y138{bottom:669.726667pt;}
.y1bb{bottom:673.334667pt;}
.y19e{bottom:674.714667pt;}
.y1d{bottom:677.369333pt;}
.y62{bottom:678.560000pt;}
.y94{bottom:679.348000pt;}
.ye1{bottom:680.530667pt;}
.y106{bottom:682.201333pt;}
.y39{bottom:683.568000pt;}
.y171{bottom:683.718667pt;}
.y19d{bottom:684.278667pt;}
.y1ba{bottom:687.100000pt;}
.y1cd{bottom:688.089333pt;}
.y1b9{bottom:692.596000pt;}
.y14{bottom:694.718667pt;}
.y1c{bottom:696.630667pt;}
.ye0{bottom:699.792000pt;}
.y105{bottom:701.462667pt;}
.yb5{bottom:705.286667pt;}
.y7f{bottom:706.790667pt;}
.y170{bottom:707.629333pt;}
.y1b8{bottom:711.857333pt;}
.y1cc{bottom:712.814667pt;}
.y13{bottom:713.980000pt;}
.y5{bottom:715.293333pt;}
.y19c{bottom:715.477333pt;}
.y61{bottom:716.396000pt;}
.y197{bottom:717.954667pt;}
.y93{bottom:718.150667pt;}
.y38{bottom:718.436000pt;}
.y104{bottom:720.724000pt;}
.y19b{bottom:720.974667pt;}
.y19a{bottom:721.412000pt;}
.y137{bottom:722.970667pt;}
.yb4{bottom:724.548000pt;}
.y125{bottom:728.074667pt;}
.ydf{bottom:729.346667pt;}
.y1b7{bottom:731.118667pt;}
.y1cb{bottom:732.076000pt;}
.y198{bottom:732.345333pt;}
.y12{bottom:733.240000pt;}
.y199{bottom:734.760000pt;}
.y1b{bottom:735.153333pt;}
.y92{bottom:737.412000pt;}
.y37{bottom:737.697333pt;}
.y4{bottom:739.573333pt;}
.y103{bottom:739.985333pt;}
.y136{bottom:742.232000pt;}
.yb3{bottom:743.809333pt;}
.y1b6{bottom:750.380000pt;}
.y1ca{bottom:751.337333pt;}
.y124{bottom:751.984000pt;}
.y11{bottom:752.501333pt;}
.y16f{bottom:754.033333pt;}
.y196{bottom:754.042667pt;}
.y36{bottom:756.958667pt;}
.y102{bottom:759.246667pt;}
.y135{bottom:761.493333pt;}
.y91{bottom:767.936000pt;}
.y60{bottom:769.640000pt;}
.y3{bottom:770.278667pt;}
.yde{bottom:770.913333pt;}
.y10{bottom:771.762667pt;}
.yb2{bottom:773.365333pt;}
.y1a{bottom:773.676000pt;}
.y1c9{bottom:776.064000pt;}
.y35{bottom:776.220000pt;}
.y195{bottom:776.993333pt;}
.y101{bottom:778.508000pt;}
.y134{bottom:780.754667pt;}
.y5f{bottom:788.901333pt;}
.y16e{bottom:790.053333pt;}
.ydd{bottom:790.174667pt;}
.y1c8{bottom:795.325333pt;}
.y34{bottom:795.481333pt;}
.y100{bottom:797.768000pt;}
.y123{bottom:798.200000pt;}
.y90{bottom:798.458667pt;}
.y133{bottom:800.016000pt;}
.y1e8{bottom:805.617333pt;}
.y5e{bottom:808.162667pt;}
.y16d{bottom:809.845333pt;}
.yf{bottom:810.285333pt;}
.y19{bottom:812.197333pt;}
.y1c7{bottom:814.586667pt;}
.yb1{bottom:814.628000pt;}
.y33{bottom:814.742667pt;}
.y193{bottom:815.633333pt;}
.y118{bottom:816.232000pt;}
.y122{bottom:817.461333pt;}
.y8f{bottom:817.720000pt;}
.y194{bottom:818.048000pt;}
.y132{bottom:819.277333pt;}
.ydc{bottom:819.730667pt;}
.y1e7{bottom:824.877333pt;}
.yff{bottom:827.324000pt;}
.y5d{bottom:827.424000pt;}
.ye{bottom:829.545333pt;}
.y16c{bottom:829.638667pt;}
.yb0{bottom:833.888000pt;}
.y32{bottom:834.002667pt;}
.y121{bottom:836.722667pt;}
.y8e{bottom:836.981333pt;}
.y131{bottom:838.537333pt;}
.y1c6{bottom:839.312000pt;}
.y1e6{bottom:844.138667pt;}
.y5c{bottom:846.685333pt;}
.y2{bottom:847.834667pt;}
.yd{bottom:848.806667pt;}
.y16b{bottom:849.430667pt;}
.y18{bottom:850.720000pt;}
.yaf{bottom:853.149333pt;}
.y31{bottom:853.264000pt;}
.y192{bottom:854.274667pt;}
.y120{bottom:855.984000pt;}
.y8d{bottom:856.242667pt;}
.y117{bottom:857.798667pt;}
.y5b{bottom:865.946667pt;}
.yfe{bottom:868.890667pt;}
.y16a{bottom:869.222667pt;}
.yae{bottom:872.410667pt;}
.y30{bottom:872.525333pt;}
.y116{bottom:877.060000pt;}
.y1c5{bottom:877.148000pt;}
.y5a{bottom:885.206667pt;}
.y8c{bottom:885.798667pt;}
.yfd{bottom:888.152000pt;}
.y169{bottom:889.014667pt;}
.y190{bottom:889.417333pt;}
.y191{bottom:891.830667pt;}
.y11f{bottom:892.933333pt;}
.y115{bottom:896.321333pt;}
.yad{bottom:901.966667pt;}
.y2f{bottom:907.394667pt;}
.yfc{bottom:907.413333pt;}
.y168{bottom:908.808000pt;}
.y59{bottom:922.157333pt;}
.y1{bottom:923.788000pt;}
.yc{bottom:924.761333pt;}
.yac{bottom:925.877333pt;}
.y17{bottom:926.673333pt;}
.y167{bottom:928.600000pt;}
.y2e{bottom:959.953333pt;}
.h27{height:11.440621pt;}
.h21{height:21.200555pt;}
.h22{height:22.443895pt;}
.h1d{height:28.267288pt;}
.h2b{height:29.925069pt;}
.h19{height:37.459376pt;}
.h2e{height:38.162133pt;}
.h24{height:38.167467pt;}
.h9{height:40.960034pt;}
.ha{height:41.018216pt;}
.h30{height:45.525402pt;}
.h7{height:47.820800pt;}
.h18{height:51.403288pt;}
.h2a{height:53.371288pt;}
.hd{height:54.597955pt;}
.h4{height:54.630330pt;}
.h1f{height:55.029069pt;}
.hf{height:56.250402pt;}
.h1e{height:56.831735pt;}
.h1c{height:56.837069pt;}
.h5{height:57.384800pt;}
.h16{height:61.307221pt;}
.h2c{height:61.463467pt;}
.h31{height:61.642735pt;}
.h26{height:63.670443pt;}
.h8{height:63.938133pt;}
.h23{height:64.901888pt;}
.h28{height:64.907221pt;}
.h2{height:65.739874pt;}
.hb{height:68.861600pt;}
.h2f{height:69.804800pt;}
.h17{height:69.810133pt;}
.h25{height:73.329109pt;}
.h6{height:73.387874pt;}
.h20{height:75.360621pt;}
.h1{height:78.903200pt;}
.h29{height:81.298133pt;}
.h2d{height:86.076800pt;}
.he{height:89.334443pt;}
.h10{height:90.951467pt;}
.h14{height:90.956800pt;}
.h15{height:91.554133pt;}
.h13{height:91.559467pt;}
.hc{height:92.454443pt;}
.h11{height:98.331288pt;}
.h3{height:99.148400pt;}
.h12{height:134.690133pt;}
.h1b{height:136.187776pt;}
.h1a{height:149.290402pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:84.605333pt;}
.x16{left:108.017333pt;}
.xd{left:113.385333pt;}
.x11{left:114.793333pt;}
.x64{left:121.189333pt;}
.x36{left:130.156000pt;}
.xc{left:136.797333pt;}
.x39{left:138.808000pt;}
.x3a{left:140.649333pt;}
.x38{left:142.537333pt;}
.x18{left:143.916000pt;}
.x65{left:145.469333pt;}
.x5f{left:146.478667pt;}
.x3{left:148.149333pt;}
.x45{left:151.321333pt;}
.x15{left:152.405333pt;}
.x34{left:160.209333pt;}
.x23{left:162.401333pt;}
.x7{left:164.508000pt;}
.x6{left:167.280000pt;}
.x3b{left:168.180000pt;}
.x44{left:171.484000pt;}
.x14{left:174.224000pt;}
.x52{left:176.888000pt;}
.x22{left:185.740000pt;}
.x3c{left:191.060000pt;}
.x19{left:193.861333pt;}
.x1a{left:196.145333pt;}
.x46{left:200.964000pt;}
.x47{left:207.033333pt;}
.x4{left:215.072000pt;}
.x60{left:216.738667pt;}
.x26{left:219.468000pt;}
.x5{left:229.064000pt;}
.x10{left:230.538667pt;}
.x66{left:232.288000pt;}
.x21{left:233.466667pt;}
.x2{left:236.660000pt;}
.xa{left:247.613333pt;}
.x55{left:251.213333pt;}
.x37{left:258.037333pt;}
.x43{left:260.482667pt;}
.x27{left:262.744000pt;}
.x1c{left:268.770667pt;}
.x5d{left:270.676000pt;}
.x56{left:276.120000pt;}
.x4e{left:281.246667pt;}
.x30{left:282.408000pt;}
.x48{left:283.581333pt;}
.x2d{left:288.333333pt;}
.x2f{left:295.532000pt;}
.x2b{left:307.944000pt;}
.x57{left:322.192000pt;}
.x1f{left:329.806667pt;}
.x5c{left:333.781333pt;}
.x24{left:335.086667pt;}
.x61{left:351.572000pt;}
.x1{left:353.321333pt;}
.x1e{left:357.469333pt;}
.x9{left:358.574667pt;}
.x42{left:361.525333pt;}
.x4c{left:367.484000pt;}
.x1b{left:369.966667pt;}
.x12{left:376.212000pt;}
.x13{left:379.145333pt;}
.x28{left:385.196000pt;}
.x20{left:392.500000pt;}
.x4d{left:393.716000pt;}
.x35{left:400.196000pt;}
.xf{left:404.098667pt;}
.x58{left:405.970667pt;}
.x31{left:408.086667pt;}
.x8{left:415.804000pt;}
.x1d{left:418.209333pt;}
.x2c{left:427.116000pt;}
.x49{left:431.144000pt;}
.x4f{left:434.184000pt;}
.x25{left:456.337333pt;}
.x3d{left:458.089333pt;}
.x4a{left:460.354667pt;}
.x33{left:462.801333pt;}
.x59{left:464.726667pt;}
.x50{left:486.120000pt;}
.x3e{left:487.300000pt;}
.x5e{left:490.621333pt;}
.x4b{left:492.542667pt;}
.x51{left:498.056000pt;}
.x62{left:503.726667pt;}
.x5a{left:506.930667pt;}
.x29{left:508.112000pt;}
.x54{left:509.364000pt;}
.x2e{left:518.269333pt;}
.x32{left:527.652000pt;}
.x2a{left:548.162667pt;}
.x3f{left:549.820000pt;}
.xb{left:555.582667pt;}
.x40{left:589.145333pt;}
.x53{left:590.478667pt;}
.x63{left:593.158667pt;}
.xe{left:598.346667pt;}
.x41{left:607.129333pt;}
.x5b{left:630.398667pt;}
}




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