
    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_f536a2995330cdc6f1fa9404.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_ba870e05f8787e3ef8b7e30a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_6e84e09694f4507d39d45ff0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_fea7c02570a263e648de7bc1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966309;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_3e1f752af98b3f56df57a6ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_ae641159d87dea3424764052.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_ba3c37ccab407e2eb45e3d0a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_224fbf4303ebd3302b9c2ce3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_02b2bcb1184c9d06d62c25b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_77259cc1e19e28465bdd0444.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.891113;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_61abd2246faacd9b2eb4e3cc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.773926;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);}
.v3{vertical-align:-27.360000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.481760px;}
.v8{vertical-align:18.031680px;}
.v5{vertical-align:21.211200px;}
.v6{vertical-align:22.361760px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:27.360000px;}
.v9{vertical-align:42.489360px;}
.ls1e{letter-spacing:-1.736640px;}
.ls14{letter-spacing:-1.728000px;}
.ls1c{letter-spacing:-1.688400px;}
.ls8e{letter-spacing:-1.673280px;}
.ls1b{letter-spacing:-1.640160px;}
.ls22{letter-spacing:-1.591920px;}
.ls10{letter-spacing:-1.584000px;}
.ls61{letter-spacing:-1.553760px;}
.ls1d{letter-spacing:-1.543680px;}
.ls3f{letter-spacing:-1.494000px;}
.ls12{letter-spacing:-1.440000px;}
.ls40{letter-spacing:-1.314720px;}
.ls13{letter-spacing:-1.296000px;}
.ls95{letter-spacing:-1.254960px;}
.ls11{letter-spacing:-1.254240px;}
.ls20{letter-spacing:-1.206000px;}
.ls1f{letter-spacing:-1.109520px;}
.ls3e{letter-spacing:-1.075680px;}
.ls1a{letter-spacing:-0.964800px;}
.ls35{letter-spacing:-0.956160px;}
.ls16{letter-spacing:-0.936000px;}
.ls48{letter-spacing:-0.776880px;}
.ls62{letter-spacing:-0.723600px;}
.ls49{letter-spacing:-0.657360px;}
.ls3d{letter-spacing:-0.597600px;}
.ls59{letter-spacing:-0.537840px;}
.ls32{letter-spacing:-0.530640px;}
.ls4b{letter-spacing:-0.482400px;}
.ls36{letter-spacing:-0.478080px;}
.lse{letter-spacing:-0.378000px;}
.lsf{letter-spacing:-0.358560px;}
.ls57{letter-spacing:-0.289440px;}
.ls15{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.241200px;}
.ls33{letter-spacing:-0.239040px;}
.lsc{letter-spacing:-0.216000px;}
.ls4d{letter-spacing:-0.192960px;}
.ls55{letter-spacing:-0.179280px;}
.ls4a{letter-spacing:-0.144720px;}
.lsb{letter-spacing:-0.144000px;}
.ls56{letter-spacing:-0.119520px;}
.ls4c{letter-spacing:-0.096480px;}
.ls18{letter-spacing:-0.059760px;}
.lsa{letter-spacing:0.000000px;}
.ls65{letter-spacing:0.005976px;}
.ls29{letter-spacing:0.011952px;}
.ls47{letter-spacing:0.048240px;}
.ls34{letter-spacing:0.059760px;}
.ls58{letter-spacing:0.072000px;}
.ls7b{letter-spacing:0.095616px;}
.ls19{letter-spacing:0.096480px;}
.ls2e{letter-spacing:0.107568px;}
.ls45{letter-spacing:0.113544px;}
.ls17{letter-spacing:0.119520px;}
.ls8b{letter-spacing:0.125496px;}
.ls44{letter-spacing:0.131472px;}
.ls74{letter-spacing:0.137448px;}
.ls79{letter-spacing:0.149400px;}
.ls30{letter-spacing:0.161352px;}
.ls28{letter-spacing:0.179280px;}
.ls4f{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.192960px;}
.ls2d{letter-spacing:0.197208px;}
.ls42{letter-spacing:0.209160px;}
.ls78{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.239040px;}
.ls46{letter-spacing:0.241200px;}
.ls43{letter-spacing:0.245016px;}
.ls50{letter-spacing:0.259920px;}
.ls27{letter-spacing:0.262944px;}
.ls54{letter-spacing:0.268920px;}
.ls88{letter-spacing:0.274896px;}
.ls3b{letter-spacing:0.286848px;}
.ls25{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.289440px;}
.ls39{letter-spacing:0.292824px;}
.ls3c{letter-spacing:0.298800px;}
.ls7c{letter-spacing:0.304776px;}
.ls53{letter-spacing:0.316728px;}
.ls41{letter-spacing:0.328680px;}
.ls2b{letter-spacing:0.346608px;}
.ls2{letter-spacing:0.358560px;}
.ls6{letter-spacing:0.360000px;}
.ls84{letter-spacing:0.370512px;}
.ls5{letter-spacing:0.376488px;}
.lsd{letter-spacing:0.378000px;}
.ls2a{letter-spacing:0.406368px;}
.ls67{letter-spacing:0.430272px;}
.ls5f{letter-spacing:0.454176px;}
.ls52{letter-spacing:0.482400px;}
.ls92{letter-spacing:0.657360px;}
.ls96{letter-spacing:0.836640px;}
.ls60{letter-spacing:0.842616px;}
.ls7d{letter-spacing:0.896400px;}
.ls64{letter-spacing:0.956160px;}
.ls93{letter-spacing:1.009944px;}
.ls80{letter-spacing:1.021896px;}
.ls97{letter-spacing:1.075680px;}
.ls7{letter-spacing:1.080000px;}
.ls66{letter-spacing:1.613520px;}
.ls85{letter-spacing:2.330640px;}
.ls3a{letter-spacing:3.047760px;}
.ls81{letter-spacing:4.482000px;}
.ls21{letter-spacing:5.065200px;}
.ls7f{letter-spacing:5.199120px;}
.ls75{letter-spacing:5.294736px;}
.ls9{letter-spacing:5.788800px;}
.ls31{letter-spacing:5.916240px;}
.ls8{letter-spacing:6.512400px;}
.ls7e{letter-spacing:6.633360px;}
.ls38{letter-spacing:7.350480px;}
.ls1{letter-spacing:7.398000px;}
.ls8f{letter-spacing:8.844480px;}
.ls8d{letter-spacing:9.561600px;}
.ls87{letter-spacing:11.712960px;}
.ls89{letter-spacing:13.864320px;}
.ls2f{letter-spacing:15.298560px;}
.ls0{letter-spacing:17.280000px;}
.ls82{letter-spacing:17.449920px;}
.ls83{letter-spacing:17.461872px;}
.ls2c{letter-spacing:19.601280px;}
.ls8a{letter-spacing:20.318400px;}
.ls76{letter-spacing:23.963760px;}
.ls90{letter-spacing:24.680880px;}
.ls8c{letter-spacing:25.398000px;}
.ls91{letter-spacing:26.115120px;}
.ls77{letter-spacing:34.720560px;}
.ls86{letter-spacing:46.254240px;}
.ls94{letter-spacing:60.656400px;}
.ls7a{letter-spacing:75.775680px;}
.ls69{letter-spacing:88.743600px;}
.ls6a{letter-spacing:103.145760px;}
.ls6b{letter-spacing:149.220720px;}
.ls71{letter-spacing:162.188640px;}
.ls72{letter-spacing:162.905760px;}
.ls6d{letter-spacing:177.307920px;}
.ls6e{letter-spacing:193.144320px;}
.ls73{letter-spacing:250.035840px;}
.ls6f{letter-spacing:279.557280px;}
.ls5b{letter-spacing:301.847760px;}
.ls5e{letter-spacing:322.763760px;}
.ls5d{letter-spacing:464.574240px;}
.ls6c{letter-spacing:753.991920px;}
.ls70{letter-spacing:823.134240px;}
.ls4{letter-spacing:1060.022880px;}
.ls37{letter-spacing:1074.420000px;}
.ls68{letter-spacing:1140.639120px;}
.ls5c{letter-spacing:1173.805920px;}
.ls5a{letter-spacing:1392.647040px;}
.ls63{letter-spacing:1600.014240px;}
.ls51{letter-spacing:1779.294240px;}
.ls4e{letter-spacing:2057.238000px;}
.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;}
}
.wsc{word-spacing:-48.240000px;}
.wsd{word-spacing:-18.288000px;}
.wsf9{word-spacing:-18.072000px;}
.ws55{word-spacing:-18.000000px;}
.ws12f{word-spacing:-17.784000px;}
.ws59{word-spacing:-17.712000px;}
.ws4{word-spacing:-15.298560px;}
.ws108{word-spacing:-15.292080px;}
.wsab{word-spacing:-15.238800px;}
.ws58{word-spacing:-15.179040px;}
.ws5e{word-spacing:-15.119280px;}
.ws8{word-spacing:-15.099120px;}
.wsaa{word-spacing:-15.059520px;}
.wsad{word-spacing:-14.999760px;}
.ws57{word-spacing:-14.940000px;}
.wse0{word-spacing:-14.906160px;}
.ws5a{word-spacing:-14.880240px;}
.wsf7{word-spacing:-14.857920px;}
.wsf6{word-spacing:-14.820480px;}
.wsf8{word-spacing:-14.809680px;}
.wsf5{word-spacing:-14.760720px;}
.ws5c{word-spacing:-14.700960px;}
.wsdb{word-spacing:-14.581440px;}
.ws109{word-spacing:-14.568480px;}
.ws5d{word-spacing:-14.461920px;}
.wsdc{word-spacing:-14.282640px;}
.ws7{word-spacing:-14.230800px;}
.wsdf{word-spacing:-14.134320px;}
.wsdd{word-spacing:-13.989600px;}
.wsa{word-spacing:-13.893120px;}
.ws0{word-spacing:-13.878000px;}
.ws14e{word-spacing:-13.864320px;}
.wsde{word-spacing:-13.651920px;}
.wsb{word-spacing:-13.507200px;}
.ws3{word-spacing:-13.500000px;}
.wsac{word-spacing:-13.446000px;}
.ws9{word-spacing:-13.410720px;}
.ws107{word-spacing:-13.386240px;}
.ws2{word-spacing:-13.284000px;}
.ws1{word-spacing:-13.122000px;}
.ws6{word-spacing:-12.060000px;}
.ws56{word-spacing:-11.529360px;}
.ws5{word-spacing:-10.805760px;}
.ws5b{word-spacing:-9.720000px;}
.wse1{word-spacing:-9.465120px;}
.ws3b{word-spacing:-5.065200px;}
.ws21{word-spacing:-0.896400px;}
.ws4d{word-spacing:-0.723600px;}
.ws70{word-spacing:-0.358560px;}
.ws12a{word-spacing:-0.298800px;}
.ws130{word-spacing:-0.288000px;}
.ws17{word-spacing:-0.191520px;}
.ws15{word-spacing:-0.179280px;}
.ws1b{word-spacing:-0.144000px;}
.ws1f{word-spacing:-0.119520px;}
.wsae{word-spacing:-0.096480px;}
.wsfb{word-spacing:-0.059760px;}
.wse{word-spacing:0.000000px;}
.ws60{word-spacing:0.059760px;}
.wsf1{word-spacing:0.096480px;}
.ws10a{word-spacing:0.119520px;}
.ws19{word-spacing:0.144000px;}
.ws50{word-spacing:0.144720px;}
.ws51{word-spacing:0.192960px;}
.ws137{word-spacing:0.216000px;}
.ws20{word-spacing:0.239040px;}
.ws52{word-spacing:0.241200px;}
.ws1c{word-spacing:0.288000px;}
.wsf0{word-spacing:0.289440px;}
.ws114{word-spacing:0.298800px;}
.wsfe{word-spacing:0.337680px;}
.ws86{word-spacing:0.358560px;}
.ws14{word-spacing:0.378000px;}
.wsfc{word-spacing:0.418320px;}
.wse4{word-spacing:0.478080px;}
.ws16{word-spacing:0.537840px;}
.ws1a{word-spacing:0.576000px;}
.wsc5{word-spacing:0.597600px;}
.ws5f{word-spacing:0.723600px;}
.wsfa{word-spacing:0.771840px;}
.ws10f{word-spacing:0.776880px;}
.ws18{word-spacing:0.864000px;}
.ws1e{word-spacing:0.936000px;}
.ws13c{word-spacing:0.956160px;}
.ws4c{word-spacing:0.964800px;}
.ws49{word-spacing:1.013040px;}
.wsda{word-spacing:1.075680px;}
.ws37{word-spacing:1.109520px;}
.ws14a{word-spacing:1.135440px;}
.wsb2{word-spacing:1.254960px;}
.ws101{word-spacing:1.374480px;}
.ws1d{word-spacing:1.440000px;}
.ws12c{word-spacing:1.494000px;}
.ws4f{word-spacing:1.543680px;}
.ws2d{word-spacing:1.591920px;}
.ws31{word-spacing:1.640160px;}
.ws10c{word-spacing:1.673280px;}
.ws2e{word-spacing:1.688400px;}
.ws3d{word-spacing:1.736640px;}
.wsed{word-spacing:1.852560px;}
.ws90{word-spacing:1.972080px;}
.ws98{word-spacing:2.211120px;}
.ws8f{word-spacing:2.390400px;}
.ws10b{word-spacing:2.460240px;}
.wsee{word-spacing:2.569680px;}
.ws76{word-spacing:2.689200px;}
.wsbc{word-spacing:2.928240px;}
.ws146{word-spacing:3.107520px;}
.ws3c{word-spacing:3.135600px;}
.wsc1{word-spacing:3.406320px;}
.wsc0{word-spacing:3.645360px;}
.wsce{word-spacing:3.824640px;}
.ws46{word-spacing:3.907440px;}
.ws7e{word-spacing:4.123440px;}
.ws105{word-spacing:4.362480px;}
.ws142{word-spacing:4.422240px;}
.ws111{word-spacing:4.541760px;}
.wsfd{word-spacing:4.631040px;}
.ws143{word-spacing:4.721040px;}
.ws9d{word-spacing:4.840560px;}
.ws11e{word-spacing:5.079600px;}
.ws2f{word-spacing:5.209920px;}
.wscf{word-spacing:5.258880px;}
.ws30{word-spacing:5.306400px;}
.ws24{word-spacing:5.354640px;}
.ws120{word-spacing:5.438160px;}
.ws83{word-spacing:5.557680px;}
.wsb1{word-spacing:5.796720px;}
.wsa9{word-spacing:5.976000px;}
.ws3e{word-spacing:6.030000px;}
.ws25{word-spacing:6.078240px;}
.ws65{word-spacing:6.274800px;}
.ws122{word-spacing:6.513840px;}
.ws9e{word-spacing:6.573600px;}
.wsd1{word-spacing:6.693120px;}
.ws12{word-spacing:7.020000px;}
.wsbe{word-spacing:7.051680px;}
.ws119{word-spacing:7.171200px;}
.wsb0{word-spacing:7.290720px;}
.ws34{word-spacing:7.332480px;}
.ws4e{word-spacing:7.428960px;}
.ws9a{word-spacing:7.470000px;}
.ws32{word-spacing:7.477200px;}
.ws13{word-spacing:7.614000px;}
.wse2{word-spacing:7.768800px;}
.ws8c{word-spacing:8.007840px;}
.ws116{word-spacing:8.366400px;}
.ws88{word-spacing:8.485920px;}
.ws118{word-spacing:8.724960px;}
.ws14d{word-spacing:8.904240px;}
.ws14f{word-spacing:9.083520px;}
.ws91{word-spacing:9.203040px;}
.wscd{word-spacing:9.442080px;}
.ws47{word-spacing:9.599760px;}
.ws3a{word-spacing:9.648000px;}
.ws93{word-spacing:9.920160px;}
.wsaf{word-spacing:10.159200px;}
.ws6e{word-spacing:10.338480px;}
.ws33{word-spacing:10.371600px;}
.ws48{word-spacing:10.419840px;}
.wsf4{word-spacing:10.612800px;}
.ws87{word-spacing:10.637280px;}
.ws7b{word-spacing:10.876320px;}
.wsf3{word-spacing:11.095200px;}
.ws148{word-spacing:11.354400px;}
.wsa8{word-spacing:11.593440px;}
.wsf2{word-spacing:11.818800px;}
.ws11a{word-spacing:12.071520px;}
.wsa4{word-spacing:12.310560px;}
.ws14c{word-spacing:12.489840px;}
.ws28{word-spacing:12.494160px;}
.ws75{word-spacing:12.788640px;}
.ws66{word-spacing:13.027680px;}
.ws38{word-spacing:13.121280px;}
.ws13e{word-spacing:13.206960px;}
.ws39{word-spacing:13.217760px;}
.wsd9{word-spacing:13.505760px;}
.wsc7{word-spacing:13.744800px;}
.ws147{word-spacing:13.924080px;}
.ws35{word-spacing:13.941360px;}
.ws22{word-spacing:13.989600px;}
.ws36{word-spacing:14.037840px;}
.ws84{word-spacing:14.222880px;}
.ws129{word-spacing:14.461920px;}
.wsc3{word-spacing:14.641200px;}
.ws4a{word-spacing:14.664960px;}
.ws4b{word-spacing:14.713200px;}
.ws82{word-spacing:14.940000px;}
.wsd5{word-spacing:15.179040px;}
.ws23{word-spacing:15.388560px;}
.wsbf{word-spacing:15.657120px;}
.wsa1{word-spacing:15.896160px;}
.ws136{word-spacing:16.075440px;}
.wsa2{word-spacing:16.254720px;}
.wsd7{word-spacing:16.374240px;}
.wsba{word-spacing:16.434000px;}
.wsb9{word-spacing:16.613280px;}
.ws9c{word-spacing:16.792560px;}
.ws81{word-spacing:17.091360px;}
.ws10{word-spacing:17.280000px;}
.ws145{word-spacing:17.330400px;}
.wsf{word-spacing:17.424000px;}
.ws2a{word-spacing:17.511120px;}
.ws11{word-spacing:17.658000px;}
.wsc2{word-spacing:17.808480px;}
.wsff{word-spacing:18.226800px;}
.ws7a{word-spacing:18.525600px;}
.ws62{word-spacing:18.764640px;}
.ws29{word-spacing:19.006560px;}
.ws117{word-spacing:19.242720px;}
.ws128{word-spacing:19.362240px;}
.ws7f{word-spacing:19.481760px;}
.ws80{word-spacing:19.661040px;}
.wsca{word-spacing:19.959840px;}
.ws10d{word-spacing:20.079360px;}
.wsc6{word-spacing:20.198880px;}
.ws125{word-spacing:20.378160px;}
.ws42{word-spacing:20.405520px;}
.ws41{word-spacing:20.453760px;}
.ws9b{word-spacing:20.676960px;}
.ws53{word-spacing:20.916000px;}
.ws26{word-spacing:21.177360px;}
.ws149{word-spacing:21.394080px;}
.wsb8{word-spacing:21.453840px;}
.ws151{word-spacing:21.573360px;}
.ws14b{word-spacing:21.633120px;}
.wsa3{word-spacing:21.692880px;}
.ws110{word-spacing:21.872160px;}
.wsd4{word-spacing:22.170960px;}
.ws100{word-spacing:22.410000px;}
.wseb{word-spacing:22.589280px;}
.ws12b{word-spacing:22.768560px;}
.ws63{word-spacing:22.888080px;}
.wse7{word-spacing:23.127120px;}
.wsbb{word-spacing:23.605200px;}
.ws7d{word-spacing:23.844240px;}
.ws2c{word-spacing:24.023520px;}
.ws2b{word-spacing:24.071760px;}
.ws8b{word-spacing:24.322320px;}
.ws95{word-spacing:24.561360px;}
.ws78{word-spacing:25.039440px;}
.wsa0{word-spacing:25.278480px;}
.ws77{word-spacing:25.457760px;}
.ws8d{word-spacing:25.756560px;}
.wsb5{word-spacing:26.174880px;}
.ws54{word-spacing:26.473680px;}
.ws150{word-spacing:26.892000px;}
.ws64{word-spacing:27.190800px;}
.ws13f{word-spacing:27.429840px;}
.ws124{word-spacing:27.609120px;}
.ws126{word-spacing:27.907920px;}
.ws131{word-spacing:28.146960px;}
.wsb4{word-spacing:28.326240px;}
.wsd2{word-spacing:28.625040px;}
.wse6{word-spacing:29.043360px;}
.ws102{word-spacing:29.342160px;}
.ws9f{word-spacing:29.939760px;}
.wsc4{word-spacing:30.059280px;}
.ws92{word-spacing:30.776400px;}
.wsd6{word-spacing:31.015440px;}
.ws85{word-spacing:31.493520px;}
.ws115{word-spacing:31.732560px;}
.wse5{word-spacing:32.210640px;}
.ws3f{word-spacing:32.706720px;}
.ws40{word-spacing:32.754960px;}
.wsbd{word-spacing:32.927760px;}
.ws67{word-spacing:33.644880px;}
.wsa5{word-spacing:34.362000px;}
.ws123{word-spacing:34.601040px;}
.wsd8{word-spacing:34.780320px;}
.wsd3{word-spacing:35.079120px;}
.ws27{word-spacing:35.504640px;}
.ws72{word-spacing:36.035280px;}
.ws45{word-spacing:36.228240px;}
.ws44{word-spacing:36.276480px;}
.ws43{word-spacing:36.324720px;}
.ws73{word-spacing:36.812160px;}
.ws74{word-spacing:37.708560px;}
.ws71{word-spacing:38.007360px;}
.wsec{word-spacing:38.246400px;}
.wse9{word-spacing:38.425680px;}
.wsc9{word-spacing:38.724480px;}
.ws7c{word-spacing:38.963520px;}
.ws113{word-spacing:39.322080px;}
.ws10e{word-spacing:39.680640px;}
.wsc8{word-spacing:40.158720px;}
.ws134{word-spacing:40.397760px;}
.ws132{word-spacing:40.577040px;}
.ws6b{word-spacing:40.875840px;}
.ws6a{word-spacing:41.114880px;}
.ws12d{word-spacing:41.294160px;}
.ws6c{word-spacing:41.592960px;}
.ws112{word-spacing:42.310080px;}
.wsef{word-spacing:43.027200px;}
.ws68{word-spacing:43.744320px;}
.ws13b{word-spacing:43.983360px;}
.ws69{word-spacing:44.162640px;}
.ws79{word-spacing:44.461440px;}
.ws11b{word-spacing:44.879760px;}
.ws106{word-spacing:45.178560px;}
.ws138{word-spacing:45.417600px;}
.ws133{word-spacing:45.596880px;}
.ws94{word-spacing:45.895680px;}
.ws11d{word-spacing:46.134720px;}
.ws139{word-spacing:46.314000px;}
.ws104{word-spacing:46.612800px;}
.ws89{word-spacing:47.031120px;}
.ws13d{word-spacing:48.764160px;}
.wsa6{word-spacing:49.003200px;}
.ws8e{word-spacing:49.481280px;}
.ws99{word-spacing:49.899600px;}
.ws11f{word-spacing:50.915520px;}
.ws144{word-spacing:51.035040px;}
.ws11c{word-spacing:51.154560px;}
.ws103{word-spacing:51.692400px;}
.ws61{word-spacing:51.931440px;}
.ws135{word-spacing:52.409520px;}
.ws6f{word-spacing:52.827840px;}
.wscc{word-spacing:53.126640px;}
.wscb{word-spacing:53.365680px;}
.ws121{word-spacing:53.843760px;}
.ws96{word-spacing:54.979200px;}
.wse3{word-spacing:55.278000px;}
.wsa7{word-spacing:55.995120px;}
.wsd0{word-spacing:56.712240px;}
.ws97{word-spacing:57.130560px;}
.wsb6{word-spacing:57.429360px;}
.ws141{word-spacing:59.580720px;}
.wsb7{word-spacing:59.819760px;}
.ws140{word-spacing:59.999040px;}
.ws153{word-spacing:60.297840px;}
.ws152{word-spacing:60.716160px;}
.ws8a{word-spacing:61.254000px;}
.ws12e{word-spacing:63.883440px;}
.ws13a{word-spacing:66.333600px;}
.wsb3{word-spacing:66.811680px;}
.wse8{word-spacing:68.963040px;}
.wsea{word-spacing:73.684080px;}
.ws6d{word-spacing:84.321360px;}
.ws127{word-spacing:86.472720px;}
._1f{margin-left:-83.826720px;}
._2e{margin-left:-72.401760px;}
._2b{margin-left:-67.615200px;}
._38{margin-left:-65.200320px;}
._2a{margin-left:-56.057328px;}
._34{margin-left:-54.018720px;}
._20{margin-left:-52.470720px;}
._25{margin-left:-50.374440px;}
._39{margin-left:-45.013680px;}
._1e{margin-left:-41.499792px;}
._21{margin-left:-39.874320px;}
._22{margin-left:-38.067120px;}
._15{margin-left:-35.593128px;}
._2f{margin-left:-32.855760px;}
._11{margin-left:-31.275360px;}
._33{margin-left:-28.998000px;}
._1d{margin-left:-27.855504px;}
._2d{margin-left:-26.829792px;}
._35{margin-left:-25.317360px;}
._1c{margin-left:-24.204960px;}
._2c{margin-left:-23.153760px;}
._40{margin-left:-21.170880px;}
._27{margin-left:-20.094912px;}
._1{margin-left:-17.280000px;}
._32{margin-left:-16.085520px;}
._42{margin-left:-13.058640px;}
._30{margin-left:-11.240640px;}
._41{margin-left:-10.028880px;}
._4{margin-left:-8.606736px;}
._c{margin-left:-6.974568px;}
._d{margin-left:-5.753952px;}
._5{margin-left:-4.673088px;}
._16{margin-left:-2.227680px;}
._2{margin-left:-1.224000px;}
._0{width:1.584000px;}
._6{width:3.026016px;}
._7{width:4.152096px;}
._e{width:5.549544px;}
._3{width:6.642000px;}
._8{width:7.658856px;}
._b{width:8.961264px;}
._a{width:10.564560px;}
._9{width:12.182832px;}
._3a{width:13.682880px;}
._12{width:18.610992px;}
._31{width:19.639872px;}
._36{width:21.258000px;}
._3e{width:23.634720px;}
._37{width:24.680880px;}
._28{width:26.724672px;}
._26{width:28.110024px;}
._f{width:29.701368px;}
._10{width:31.600440px;}
._13{width:33.993432px;}
._14{width:35.075304px;}
._23{width:38.308320px;}
._18{width:39.839688px;}
._17{width:41.978448px;}
._3d{width:43.326000px;}
._3c{width:44.521200px;}
._3f{width:46.134720px;}
._24{width:49.750200px;}
._1b{width:51.243120px;}
._29{width:56.246112px;}
._3b{width:66.393360px;}
._19{width:959.602320px;}
._1a{width:1337.238000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:3.600000px;}
.y118{bottom:4.140000px;}
.y6{bottom:21.600000px;}
.y4{bottom:39.600000px;}
.y9{bottom:40.140000px;}
.y2{bottom:54.540000px;}
.y3{bottom:57.600000px;}
.y7{bottom:76.140000px;}
.y5{bottom:94.140000px;}
.y1c3{bottom:113.886000px;}
.y1a7{bottom:114.035400px;}
.y114{bottom:119.875320px;}
.y178{bottom:125.344080px;}
.y142{bottom:125.380800px;}
.y16d{bottom:125.403840px;}
.y1fe{bottom:129.790260px;}
.y1ee{bottom:129.879900px;}
.yc2{bottom:130.409280px;}
.yb9{bottom:130.460040px;}
.y88{bottom:130.646160px;}
.yf3{bottom:130.663080px;}
.y27b{bottom:131.568480px;}
.y1{bottom:131.760000px;}
.y113{bottom:134.817660px;}
.y1c2{bottom:134.951400px;}
.y1a6{bottom:135.100800px;}
.y151{bottom:146.356560px;}
.y177{bottom:146.409480px;}
.y141{bottom:146.446200px;}
.y16c{bottom:146.469240px;}
.y112{bottom:149.752080px;}
.y1fd{bottom:150.855660px;}
.y1ed{bottom:150.945300px;}
.yc1{bottom:151.474680px;}
.yb8{bottom:151.525440px;}
.y87{bottom:151.711560px;}
.yf2{bottom:151.728480px;}
.y247{bottom:151.740000px;}
.y27a{bottom:152.454600px;}
.y1c1{bottom:156.016800px;}
.y1a5{bottom:156.166200px;}
.y111{bottom:164.875320px;}
.y54{bottom:165.769200px;}
.y3a{bottom:165.868200px;}
.y150{bottom:167.242680px;}
.y176{bottom:167.295600px;}
.y140{bottom:167.332320px;}
.y16b{bottom:167.355360px;}
.y1fc{bottom:171.741780px;}
.y1ec{bottom:171.831420px;}
.yc0{bottom:172.360800px;}
.yb7{bottom:172.411560px;}
.y86{bottom:172.597680px;}
.y246{bottom:172.609200px;}
.yf1{bottom:172.614600px;}
.y279{bottom:173.520000px;}
.y1c0{bottom:176.902920px;}
.y1a4{bottom:177.052320px;}
.y110{bottom:179.817660px;}
.y53{bottom:186.834600px;}
.y39{bottom:186.924960px;}
.y14f{bottom:188.308080px;}
.y175{bottom:188.361000px;}
.y13f{bottom:188.397720px;}
.y16a{bottom:188.420760px;}
.y1fb{bottom:192.807180px;}
.y1eb{bottom:192.896820px;}
.ybf{bottom:193.426200px;}
.yb6{bottom:193.476960px;}
.y85{bottom:193.663080px;}
.y245{bottom:193.674600px;}
.yf0{bottom:193.680000px;}
.y278{bottom:194.573880px;}
.y10f{bottom:194.760000px;}
.y1bf{bottom:197.968320px;}
.y1a3{bottom:198.117720px;}
.y10e{bottom:206.558460px;}
.y52{bottom:207.900000px;}
.y38{bottom:207.981720px;}
.y14e{bottom:209.373480px;}
.y174{bottom:209.426400px;}
.y13e{bottom:209.463120px;}
.y169{bottom:209.486160px;}
.y1fa{bottom:213.872580px;}
.y1ea{bottom:213.962220px;}
.ybe{bottom:214.491600px;}
.yb5{bottom:214.542360px;}
.y84{bottom:214.728480px;}
.yef{bottom:214.740000px;}
.y277{bottom:215.460000px;}
.y1be{bottom:219.033720px;}
.y1a2{bottom:219.183120px;}
.y51{bottom:228.780000px;}
.y37{bottom:228.857580px;}
.y14d{bottom:230.259600px;}
.y173{bottom:230.312520px;}
.y13d{bottom:230.349240px;}
.y168{bottom:230.372280px;}
.y1f9{bottom:234.758700px;}
.y1e9{bottom:234.848340px;}
.ybd{bottom:235.377720px;}
.yb4{bottom:235.428480px;}
.yee{bottom:235.479240px;}
.y244{bottom:235.603080px;}
.y83{bottom:235.614600px;}
.y276{bottom:236.508480px;}
.y1bd{bottom:239.919840px;}
.y1a1{bottom:240.069240px;}
.y50{bottom:249.840000px;}
.y36{bottom:249.914340px;}
.y14c{bottom:251.325000px;}
.y172{bottom:251.377920px;}
.y13c{bottom:251.414640px;}
.y167{bottom:251.437680px;}
.y1f8{bottom:255.824100px;}
.y1e8{bottom:255.913740px;}
.ybc{bottom:256.443120px;}
.yb3{bottom:256.493880px;}
.yed{bottom:256.544640px;}
.y243{bottom:256.668480px;}
.y82{bottom:256.680000px;}
.y275{bottom:257.573880px;}
.y1bc{bottom:260.985240px;}
.y1a0{bottom:261.134640px;}
.y35{bottom:270.971100px;}
.y4f{bottom:271.055520px;}
.y14b{bottom:272.390400px;}
.y171{bottom:272.443320px;}
.y13b{bottom:272.480040px;}
.y166{bottom:272.503080px;}
.y1f7{bottom:276.889500px;}
.y1e7{bottom:276.979140px;}
.ybb{bottom:277.508520px;}
.yb2{bottom:277.559280px;}
.yec{bottom:277.610040px;}
.y242{bottom:277.733880px;}
.y81{bottom:277.740000px;}
.y274{bottom:278.460000px;}
.y1bb{bottom:282.050640px;}
.y19f{bottom:282.200040px;}
.y34{bottom:291.846960px;}
.y4e{bottom:291.931380px;}
.y14a{bottom:293.276520px;}
.y170{bottom:293.329440px;}
.y13a{bottom:293.366160px;}
.y165{bottom:293.389200px;}
.y1f6{bottom:297.775620px;}
.y1e6{bottom:297.865260px;}
.y80{bottom:298.394640px;}
.yb1{bottom:298.445400px;}
.yeb{bottom:298.496160px;}
.y241{bottom:298.620000px;}
.y273{bottom:299.514600px;}
.y1ba{bottom:302.936760px;}
.y19e{bottom:303.086160px;}
.y33{bottom:312.903720px;}
.y4d{bottom:312.988140px;}
.y149{bottom:314.341920px;}
.y16f{bottom:314.394840px;}
.y139{bottom:314.431560px;}
.y164{bottom:314.454600px;}
.y1f5{bottom:318.841020px;}
.y1e5{bottom:318.930660px;}
.y7f{bottom:319.460040px;}
.yb0{bottom:319.510800px;}
.yea{bottom:319.561560px;}
.y240{bottom:319.668480px;}
.y272{bottom:320.580000px;}
.y1b9{bottom:324.002160px;}
.y19d{bottom:324.151560px;}
.y32{bottom:333.960480px;}
.y4c{bottom:334.044900px;}
.y148{bottom:335.407320px;}
.y16e{bottom:335.460240px;}
.y138{bottom:335.496960px;}
.y163{bottom:335.520000px;}
.y1f4{bottom:339.906420px;}
.y1e4{bottom:339.996060px;}
.y7e{bottom:340.525440px;}
.yaf{bottom:340.576200px;}
.ye9{bottom:340.626960px;}
.y23f{bottom:340.733880px;}
.y271{bottom:341.449200px;}
.y1b8{bottom:345.067560px;}
.y19c{bottom:345.216960px;}
.y31{bottom:354.836340px;}
.y4b{bottom:354.920760px;}
.y162{bottom:355.304160px;}
.y147{bottom:356.293440px;}
.y137{bottom:356.383080px;}
.y1f3{bottom:360.792540px;}
.y1e3{bottom:360.882180px;}
.y7d{bottom:361.411560px;}
.yae{bottom:361.462320px;}
.ye8{bottom:361.513080px;}
.y23e{bottom:361.620000px;}
.y270{bottom:362.514600px;}
.y1b7{bottom:365.953680px;}
.y19b{bottom:366.103080px;}
.y161{bottom:370.246500px;}
.y30{bottom:375.893100px;}
.y4a{bottom:375.977520px;}
.y146{bottom:377.358840px;}
.y136{bottom:377.448480px;}
.y1f2{bottom:381.857940px;}
.y1e2{bottom:381.947580px;}
.y7c{bottom:382.476960px;}
.yad{bottom:382.527720px;}
.ye7{bottom:382.578480px;}
.y23d{bottom:382.663080px;}
.y26f{bottom:383.580000px;}
.y160{bottom:385.188840px;}
.y1b6{bottom:387.019080px;}
.y19a{bottom:387.168480px;}
.y2f{bottom:396.949860px;}
.y49{bottom:397.034280px;}
.y145{bottom:398.424240px;}
.y135{bottom:398.513880px;}
.y15f{bottom:400.312080px;}
.y1f1{bottom:402.923340px;}
.y1e1{bottom:403.012980px;}
.y7b{bottom:403.542360px;}
.yac{bottom:403.593120px;}
.ye6{bottom:403.643880px;}
.y23c{bottom:403.728480px;}
.y26e{bottom:404.449200px;}
.y1b5{bottom:408.084480px;}
.y199{bottom:408.233880px;}
.y15e{bottom:415.254420px;}
.y2e{bottom:417.825720px;}
.y48{bottom:417.910140px;}
.y144{bottom:419.310360px;}
.y134{bottom:419.400000px;}
.y1f0{bottom:423.809460px;}
.y1e0{bottom:423.899100px;}
.y7a{bottom:424.428480px;}
.yab{bottom:424.479240px;}
.ye5{bottom:424.530000px;}
.y23b{bottom:424.614600px;}
.y26d{bottom:425.514600px;}
.y1b4{bottom:428.970600px;}
.y198{bottom:429.057540px;}
.y15d{bottom:430.196760px;}
.y2d{bottom:438.882480px;}
.y47{bottom:438.966900px;}
.y143{bottom:440.375760px;}
.y133{bottom:440.460000px;}
.y1ef{bottom:444.874860px;}
.y1df{bottom:444.964500px;}
.y15c{bottom:445.320000px;}
.y79{bottom:445.493880px;}
.yaa{bottom:445.544640px;}
.ye4{bottom:445.595400px;}
.y23a{bottom:445.680000px;}
.y26c{bottom:446.580000px;}
.y1b3{bottom:450.036000px;}
.y197{bottom:450.122940px;}
.y2c{bottom:459.939240px;}
.y46{bottom:460.023660px;}
.y132{bottom:460.260000px;}
.y1de{bottom:464.760000px;}
.y78{bottom:466.559280px;}
.y15b{bottom:466.560000px;}
.ya9{bottom:466.610040px;}
.ye3{bottom:466.660800px;}
.y239{bottom:466.740000px;}
.y26b{bottom:467.454600px;}
.y1b2{bottom:471.101400px;}
.y196{bottom:471.188340px;}
.y131{bottom:475.200000px;}
.y1dd{bottom:479.700000px;}
.y2b{bottom:480.815100px;}
.y45{bottom:480.899520px;}
.y15a{bottom:483.480000px;}
.y77{bottom:487.445400px;}
.ya8{bottom:487.496160px;}
.ye2{bottom:487.546920px;}
.y238{bottom:487.620000px;}
.y26a{bottom:488.520000px;}
.y130{bottom:490.309740px;}
.y1b1{bottom:491.987520px;}
.y195{bottom:492.074460px;}
.y1dc{bottom:494.817660px;}
.y2a{bottom:501.871860px;}
.y44{bottom:501.956280px;}
.y159{bottom:504.540000px;}
.y12f{bottom:505.252080px;}
.y76{bottom:508.510800px;}
.ya7{bottom:508.561560px;}
.ye1{bottom:508.612320px;}
.y237{bottom:508.680000px;}
.y269{bottom:509.563080px;}
.y1db{bottom:509.760000px;}
.y1b0{bottom:513.052920px;}
.y194{bottom:513.139860px;}
.y12e{bottom:520.194420px;}
.y29{bottom:522.928620px;}
.y43{bottom:523.013040px;}
.y158{bottom:525.600000px;}
.y75{bottom:529.576200px;}
.ya6{bottom:529.626960px;}
.y236{bottom:529.666200px;}
.ye0{bottom:529.677720px;}
.y21a{bottom:529.711560px;}
.y268{bottom:530.449200px;}
.y1da{bottom:531.180000px;}
.y1af{bottom:534.118320px;}
.y193{bottom:534.205260px;}
.y12d{bottom:535.317660px;}
.y28{bottom:543.804480px;}
.y42{bottom:543.888900px;}
.y157{bottom:546.480000px;}
.y1d9{bottom:548.100000px;}
.y12c{bottom:550.260000px;}
.y74{bottom:550.462320px;}
.ya5{bottom:550.513080px;}
.y235{bottom:550.552320px;}
.ydf{bottom:550.563840px;}
.y219{bottom:550.597680px;}
.y267{bottom:551.514600px;}
.y1ae{bottom:555.004440px;}
.y192{bottom:555.091380px;}
.y27{bottom:564.861240px;}
.y41{bottom:564.945660px;}
.y156{bottom:567.540000px;}
.y1d8{bottom:568.980000px;}
.y73{bottom:571.527720px;}
.ya4{bottom:571.578480px;}
.y234{bottom:571.617720px;}
.yde{bottom:571.629240px;}
.y218{bottom:571.663080px;}
.y12b{bottom:571.680000px;}
.y266{bottom:572.580000px;}
.y1ad{bottom:576.069840px;}
.y191{bottom:576.156780px;}
.y26{bottom:585.918000px;}
.y40{bottom:586.002420px;}
.y12a{bottom:588.600000px;}
.y1d7{bottom:590.040000px;}
.y72{bottom:592.593120px;}
.ya3{bottom:592.643880px;}
.y233{bottom:592.683120px;}
.ydd{bottom:592.694640px;}
.y217{bottom:592.728480px;}
.y265{bottom:593.443080px;}
.y1ac{bottom:597.135240px;}
.y190{bottom:597.222180px;}
.y25{bottom:606.793860px;}
.y3f{bottom:606.878280px;}
.y129{bottom:609.480000px;}
.y1d6{bottom:611.100000px;}
.y71{bottom:613.479240px;}
.ya2{bottom:613.530000px;}
.y232{bottom:613.569240px;}
.ydc{bottom:613.580760px;}
.y216{bottom:613.614600px;}
.y264{bottom:614.508480px;}
.y1ab{bottom:618.021360px;}
.y18f{bottom:618.108300px;}
.y10d{bottom:624.161340px;}
.y24{bottom:627.850620px;}
.y3e{bottom:627.935040px;}
.y128{bottom:630.540000px;}
.y1d5{bottom:631.980000px;}
.y70{bottom:634.544640px;}
.ya1{bottom:634.595400px;}
.y231{bottom:634.634640px;}
.ydb{bottom:634.646160px;}
.y215{bottom:634.680000px;}
.y263{bottom:635.573880px;}
.y1aa{bottom:639.086760px;}
.y18e{bottom:639.173700px;}
.y10c{bottom:639.280620px;}
.y23{bottom:648.907380px;}
.y3d{bottom:648.991800px;}
.y127{bottom:651.600000px;}
.y1d4{bottom:653.040000px;}
.y10b{bottom:655.475580px;}
.y6f{bottom:655.610040px;}
.ya0{bottom:655.660800px;}
.y230{bottom:655.700040px;}
.yda{bottom:655.711560px;}
.y214{bottom:655.740000px;}
.y262{bottom:656.460000px;}
.y1a9{bottom:660.152160px;}
.y18d{bottom:660.239100px;}
.y22{bottom:669.783240px;}
.y3c{bottom:669.867660px;}
.y126{bottom:672.480000px;}
.y1d3{bottom:674.100000px;}
.y10a{bottom:676.361700px;}
.y6e{bottom:676.496160px;}
.y213{bottom:676.518480px;}
.y9f{bottom:676.546920px;}
.y22f{bottom:676.586160px;}
.yd9{bottom:676.597680px;}
.y261{bottom:677.508480px;}
.y1a8{bottom:681.038280px;}
.y18c{bottom:681.125220px;}
.y21{bottom:690.840000px;}
.y3b{bottom:690.924420px;}
.y125{bottom:693.540000px;}
.y1d2{bottom:694.980000px;}
.y109{bottom:697.427100px;}
.y6d{bottom:697.561560px;}
.y212{bottom:697.583880px;}
.y9e{bottom:697.612320px;}
.y22e{bottom:697.651560px;}
.yd8{bottom:697.663080px;}
.y260{bottom:698.573880px;}
.y18b{bottom:700.920720px;}
.y20{bottom:711.900000px;}
.y124{bottom:714.600000px;}
.y18a{bottom:716.040000px;}
.y108{bottom:718.492500px;}
.y6c{bottom:718.626960px;}
.y211{bottom:718.649280px;}
.y9d{bottom:718.677720px;}
.y22d{bottom:718.716960px;}
.yd7{bottom:718.728480px;}
.y25f{bottom:719.460000px;}
.y123{bottom:735.480000px;}
.y1f{bottom:735.647760px;}
.y1d1{bottom:737.100000px;}
.y189{bottom:737.460000px;}
.y107{bottom:739.378620px;}
.y6b{bottom:739.513080px;}
.y210{bottom:739.535400px;}
.y9c{bottom:739.563840px;}
.y22c{bottom:739.603080px;}
.yd6{bottom:739.614600px;}
.y25e{bottom:740.508480px;}
.y188{bottom:754.380000px;}
.y1e{bottom:756.533880px;}
.y122{bottom:756.540000px;}
.y1d0{bottom:757.980000px;}
.yd5{bottom:760.309560px;}
.y106{bottom:760.444020px;}
.y6a{bottom:760.578480px;}
.y20f{bottom:760.600800px;}
.y9b{bottom:760.629240px;}
.y22b{bottom:760.668480px;}
.y25d{bottom:761.573880px;}
.y187{bottom:775.260000px;}
.y1d{bottom:777.420000px;}
.y121{bottom:777.600000px;}
.y1cf{bottom:779.040000px;}
.yd4{bottom:781.374960px;}
.y105{bottom:781.509420px;}
.y69{bottom:781.643880px;}
.y20e{bottom:781.666200px;}
.y9a{bottom:781.694640px;}
.y22a{bottom:781.733880px;}
.y25c{bottom:782.460000px;}
.y186{bottom:796.320000px;}
.y1c{bottom:798.479850px;}
.y120{bottom:798.480000px;}
.y1ce{bottom:800.100000px;}
.yd3{bottom:802.261080px;}
.y104{bottom:802.395540px;}
.y68{bottom:802.530000px;}
.y20d{bottom:802.552320px;}
.y99{bottom:802.580760px;}
.y229{bottom:802.620000px;}
.y25b{bottom:803.508480px;}
.y185{bottom:817.380000px;}
.y1b{bottom:819.539850px;}
.y11f{bottom:819.540000px;}
.y1cd{bottom:820.980000px;}
.yd2{bottom:823.326480px;}
.y103{bottom:823.460940px;}
.y67{bottom:823.595400px;}
.y20c{bottom:823.617720px;}
.y98{bottom:823.646160px;}
.y228{bottom:823.680000px;}
.y25a{bottom:824.573880px;}
.y184{bottom:838.260000px;}
.y1a{bottom:840.419850px;}
.y11e{bottom:840.600000px;}
.y1cb{bottom:842.040000px;}
.yd1{bottom:844.391880px;}
.y102{bottom:844.526340px;}
.y66{bottom:844.660800px;}
.y20b{bottom:844.683120px;}
.y227{bottom:844.694640px;}
.y97{bottom:844.711560px;}
.y259{bottom:845.460000px;}
.y1cc{bottom:851.400000px;}
.y287{bottom:857.160000px;}
.y183{bottom:859.320000px;}
.y19{bottom:861.480000px;}
.y1c9{bottom:863.100000px;}
.yd0{bottom:865.278000px;}
.y101{bottom:865.412460px;}
.y65{bottom:865.546920px;}
.y20a{bottom:865.569240px;}
.y226{bottom:865.580760px;}
.y96{bottom:865.597680px;}
.y258{bottom:866.503080px;}
.y1ca{bottom:872.460000px;}
.y286{bottom:873.356040px;}
.y182{bottom:880.380000px;}
.y18{bottom:882.540000px;}
.y1c8{bottom:883.980000px;}
.ycf{bottom:886.343400px;}
.y100{bottom:886.477860px;}
.y64{bottom:886.612320px;}
.y209{bottom:886.634640px;}
.y225{bottom:886.646160px;}
.y95{bottom:886.663080px;}
.y257{bottom:887.568480px;}
.y285{bottom:894.780000px;}
.y181{bottom:901.260000px;}
.y17{bottom:903.420000px;}
.y11d{bottom:903.600000px;}
.y1c7{bottom:905.040000px;}
.yce{bottom:907.408800px;}
.yff{bottom:907.543260px;}
.y63{bottom:907.677720px;}
.y208{bottom:907.700040px;}
.y224{bottom:907.711560px;}
.y94{bottom:907.728480px;}
.y284{bottom:908.443080px;}
.y256{bottom:908.454600px;}
.y180{bottom:922.320000px;}
.y16{bottom:924.480000px;}
.y1c6{bottom:926.100000px;}
.ycd{bottom:928.294920px;}
.yfe{bottom:928.429380px;}
.y62{bottom:928.563840px;}
.y207{bottom:928.586160px;}
.y223{bottom:928.597680px;}
.y93{bottom:928.614600px;}
.y283{bottom:929.508480px;}
.y255{bottom:929.520000px;}
.y17f{bottom:943.380000px;}
.y11c{bottom:945.540000px;}
.ycc{bottom:949.360320px;}
.yfd{bottom:949.494780px;}
.y92{bottom:949.597200px;}
.y61{bottom:949.629240px;}
.y206{bottom:949.651560px;}
.y222{bottom:949.663080px;}
.y254{bottom:950.568480px;}
.y282{bottom:950.573880px;}
.y15{bottom:952.380000px;}
.y1c5{bottom:960.843600px;}
.y17d{bottom:964.260000px;}
.y14{bottom:966.420000px;}
.y11b{bottom:966.600000px;}
.ycb{bottom:970.425720px;}
.yfc{bottom:970.560180px;}
.y91{bottom:970.662600px;}
.y60{bottom:970.694640px;}
.y205{bottom:970.716960px;}
.y221{bottom:970.728480px;}
.y253{bottom:971.454600px;}
.y281{bottom:971.460000px;}
.y17e{bottom:973.620000px;}
.y17c{bottom:985.320000px;}
.y13{bottom:987.480000px;}
.yca{bottom:991.311840px;}
.yfb{bottom:991.446300px;}
.y90{bottom:991.548720px;}
.y5f{bottom:991.580760px;}
.y204{bottom:991.603080px;}
.y220{bottom:991.614600px;}
.y1c4{bottom:991.620000px;}
.y252{bottom:992.520000px;}
.y17b{bottom:1006.380000px;}
.y12{bottom:1008.540000px;}
.yc9{bottom:1012.377240px;}
.yfa{bottom:1012.511700px;}
.y8f{bottom:1012.614120px;}
.y5e{bottom:1012.646160px;}
.y203{bottom:1012.668480px;}
.y21f{bottom:1012.680000px;}
.y280{bottom:1013.563080px;}
.y251{bottom:1013.568480px;}
.y155{bottom:1017.900000px;}
.y17a{bottom:1027.980000px;}
.y11{bottom:1029.420000px;}
.y119{bottom:1029.600000px;}
.yc8{bottom:1033.442640px;}
.yf9{bottom:1033.577100px;}
.y8e{bottom:1033.679520px;}
.y5d{bottom:1033.711560px;}
.y202{bottom:1033.733880px;}
.y21e{bottom:1033.740000px;}
.y27f{bottom:1034.449200px;}
.y250{bottom:1034.454600px;}
.y11a{bottom:1038.960000px;}
.y179{bottom:1049.760000px;}
.y10{bottom:1050.480000px;}
.yc7{bottom:1054.328760px;}
.yf8{bottom:1054.463220px;}
.y8d{bottom:1054.565640px;}
.y5c{bottom:1054.597680px;}
.y21d{bottom:1054.614600px;}
.y201{bottom:1054.620000px;}
.y27e{bottom:1055.514600px;}
.y24f{bottom:1055.520000px;}
.yf{bottom:1071.540000px;}
.yc6{bottom:1075.394160px;}
.yf7{bottom:1075.528620px;}
.y8c{bottom:1075.631040px;}
.y5b{bottom:1075.663080px;}
.y200{bottom:1075.680000px;}
.y24e{bottom:1076.563080px;}
.y27d{bottom:1076.580000px;}
.y153{bottom:1085.396940px;}
.ye{bottom:1093.667040px;}
.y152{bottom:1095.840000px;}
.yc5{bottom:1096.459560px;}
.yf6{bottom:1096.594020px;}
.y8b{bottom:1096.696440px;}
.y5a{bottom:1096.728480px;}
.y1ff{bottom:1096.740000px;}
.y24d{bottom:1097.449200px;}
.y117{bottom:1106.460000px;}
.y154{bottom:1106.462340px;}
.yc4{bottom:1117.345680px;}
.yf5{bottom:1117.480140px;}
.y8a{bottom:1117.582560px;}
.y59{bottom:1117.614600px;}
.y21c{bottom:1117.620000px;}
.y24c{bottom:1118.514600px;}
.yd{bottom:1120.671360px;}
.y116{bottom:1130.937300px;}
.yc3{bottom:1138.411080px;}
.yf4{bottom:1138.545540px;}
.y89{bottom:1138.647960px;}
.y21b{bottom:1138.651020px;}
.y58{bottom:1138.680000px;}
.y24b{bottom:1139.580000px;}
.y115{bottom:1143.540000px;}
.yc{bottom:1147.675680px;}
.y57{bottom:1159.740000px;}
.y24a{bottom:1160.460000px;}
.yb{bottom:1174.680000px;}
.y56{bottom:1180.975500px;}
.yba{bottom:1180.980000px;}
.y249{bottom:1181.875500px;}
.y27c{bottom:1181.880000px;}
.y55{bottom:1192.140000px;}
.y248{bottom:1193.040000px;}
.ya{bottom:1201.140000px;}
.h15{height:20.878500px;}
.h17{height:20.880000px;}
.h14{height:21.060000px;}
.h1b{height:25.380000px;}
.h13{height:25.561500px;}
.h16{height:26.995781px;}
.h9{height:33.518320px;}
.hb{height:36.651094px;}
.hc{height:36.886641px;}
.h5{height:37.520508px;}
.h10{height:40.501406px;}
.h12{height:41.154649px;}
.hf{height:41.493516px;}
.h2{height:41.522695px;}
.h1a{height:48.144606px;}
.he{height:48.225966px;}
.hd{height:48.796875px;}
.h11{height:49.376526px;}
.h4{height:50.027344px;}
.h8{height:56.453906px;}
.h7{height:57.092344px;}
.ha{height:60.878320px;}
.h6{height:64.899844px;}
.h3{height:72.000000px;}
.h19{height:82.273646px;}
.h18{height:82.990766px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:79.020000px;}
.w3{width:84.960000px;}
.wc{width:91.981500px;}
.wd{width:102.060000px;}
.wb{width:102.241500px;}
.we{width:142.740000px;}
.w7{width:168.660000px;}
.w8{width:168.661500px;}
.wa{width:284.040000px;}
.w6{width:306.540000px;}
.w5{width:361.440000px;}
.w4{width:361.441500px;}
.w2{width:723.060000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x36{left:9.720000px;}
.x32{left:11.700000px;}
.x38{left:13.140000px;}
.x3b{left:15.660000px;}
.x34{left:17.820000px;}
.x3c{left:19.260000px;}
.x15{left:20.880000px;}
.x22{left:22.500000px;}
.x2c{left:24.300000px;}
.x3d{left:26.280000px;}
.x39{left:28.260000px;}
.x3e{left:30.060000px;}
.x27{left:35.460000px;}
.x2b{left:37.440000px;}
.x29{left:38.880000px;}
.x43{left:41.400000px;}
.x1e{left:42.660000px;}
.x44{left:45.000000px;}
.x25{left:46.440000px;}
.x3a{left:48.420000px;}
.x20{left:50.220000px;}
.x28{left:52.020000px;}
.x23{left:54.360000px;}
.x24{left:57.960000px;}
.x2a{left:59.940000px;}
.x26{left:61.740000px;}
.x2d{left:67.500000px;}
.x40{left:72.180000px;}
.x11{left:76.320000px;}
.x1{left:84.960000px;}
.xb{left:93.060000px;}
.x42{left:97.200000px;}
.x30{left:105.840000px;}
.x2f{left:109.980000px;}
.x45{left:118.978380px;}
.x18{left:124.380000px;}
.x17{left:131.940000px;}
.x9{left:138.041820px;}
.xe{left:139.140000px;}
.x12{left:142.740000px;}
.x16{left:146.520000px;}
.xf{left:150.660000px;}
.x3f{left:152.100000px;}
.x13{left:154.440000px;}
.x10{left:156.420000px;}
.x19{left:158.220000px;}
.x41{left:177.300000px;}
.x14{left:180.720000px;}
.x2e{left:190.080000px;}
.x4{left:327.420000px;}
.x2{left:331.740000px;}
.x31{left:369.000000px;}
.x1d{left:391.500000px;}
.x3{left:405.000000px;}
.xd{left:446.400000px;}
.x1a{left:454.847040px;}
.x7{left:459.217980px;}
.x33{left:471.060000px;}
.x8{left:512.276760px;}
.x1f{left:560.160000px;}
.x35{left:563.040000px;}
.x1b{left:597.583800px;}
.x1c{left:623.504700px;}
.x5{left:655.020000px;}
.xa{left:659.746620px;}
.x37{left:665.100000px;}
.x21{left:728.820000px;}
.x6{left:808.020000px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.317120pt;}
.v8{vertical-align:16.028160pt;}
.v5{vertical-align:18.854400pt;}
.v6{vertical-align:19.877120pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:24.320000pt;}
.v9{vertical-align:37.768320pt;}
.ls1e{letter-spacing:-1.543680pt;}
.ls14{letter-spacing:-1.536000pt;}
.ls1c{letter-spacing:-1.500800pt;}
.ls8e{letter-spacing:-1.487360pt;}
.ls1b{letter-spacing:-1.457920pt;}
.ls22{letter-spacing:-1.415040pt;}
.ls10{letter-spacing:-1.408000pt;}
.ls61{letter-spacing:-1.381120pt;}
.ls1d{letter-spacing:-1.372160pt;}
.ls3f{letter-spacing:-1.328000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls40{letter-spacing:-1.168640pt;}
.ls13{letter-spacing:-1.152000pt;}
.ls95{letter-spacing:-1.115520pt;}
.ls11{letter-spacing:-1.114880pt;}
.ls20{letter-spacing:-1.072000pt;}
.ls1f{letter-spacing:-0.986240pt;}
.ls3e{letter-spacing:-0.956160pt;}
.ls1a{letter-spacing:-0.857600pt;}
.ls35{letter-spacing:-0.849920pt;}
.ls16{letter-spacing:-0.832000pt;}
.ls48{letter-spacing:-0.690560pt;}
.ls62{letter-spacing:-0.643200pt;}
.ls49{letter-spacing:-0.584320pt;}
.ls3d{letter-spacing:-0.531200pt;}
.ls59{letter-spacing:-0.478080pt;}
.ls32{letter-spacing:-0.471680pt;}
.ls4b{letter-spacing:-0.428800pt;}
.ls36{letter-spacing:-0.424960pt;}
.lse{letter-spacing:-0.336000pt;}
.lsf{letter-spacing:-0.318720pt;}
.ls57{letter-spacing:-0.257280pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.214400pt;}
.ls33{letter-spacing:-0.212480pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls4d{letter-spacing:-0.171520pt;}
.ls55{letter-spacing:-0.159360pt;}
.ls4a{letter-spacing:-0.128640pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls56{letter-spacing:-0.106240pt;}
.ls4c{letter-spacing:-0.085760pt;}
.ls18{letter-spacing:-0.053120pt;}
.lsa{letter-spacing:0.000000pt;}
.ls65{letter-spacing:0.005312pt;}
.ls29{letter-spacing:0.010624pt;}
.ls47{letter-spacing:0.042880pt;}
.ls34{letter-spacing:0.053120pt;}
.ls58{letter-spacing:0.064000pt;}
.ls7b{letter-spacing:0.084992pt;}
.ls19{letter-spacing:0.085760pt;}
.ls2e{letter-spacing:0.095616pt;}
.ls45{letter-spacing:0.100928pt;}
.ls17{letter-spacing:0.106240pt;}
.ls8b{letter-spacing:0.111552pt;}
.ls44{letter-spacing:0.116864pt;}
.ls74{letter-spacing:0.122176pt;}
.ls79{letter-spacing:0.132800pt;}
.ls30{letter-spacing:0.143424pt;}
.ls28{letter-spacing:0.159360pt;}
.ls4f{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.171520pt;}
.ls2d{letter-spacing:0.175296pt;}
.ls42{letter-spacing:0.185920pt;}
.ls78{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.212480pt;}
.ls46{letter-spacing:0.214400pt;}
.ls43{letter-spacing:0.217792pt;}
.ls50{letter-spacing:0.231040pt;}
.ls27{letter-spacing:0.233728pt;}
.ls54{letter-spacing:0.239040pt;}
.ls88{letter-spacing:0.244352pt;}
.ls3b{letter-spacing:0.254976pt;}
.ls25{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.257280pt;}
.ls39{letter-spacing:0.260288pt;}
.ls3c{letter-spacing:0.265600pt;}
.ls7c{letter-spacing:0.270912pt;}
.ls53{letter-spacing:0.281536pt;}
.ls41{letter-spacing:0.292160pt;}
.ls2b{letter-spacing:0.308096pt;}
.ls2{letter-spacing:0.318720pt;}
.ls6{letter-spacing:0.320000pt;}
.ls84{letter-spacing:0.329344pt;}
.ls5{letter-spacing:0.334656pt;}
.lsd{letter-spacing:0.336000pt;}
.ls2a{letter-spacing:0.361216pt;}
.ls67{letter-spacing:0.382464pt;}
.ls5f{letter-spacing:0.403712pt;}
.ls52{letter-spacing:0.428800pt;}
.ls92{letter-spacing:0.584320pt;}
.ls96{letter-spacing:0.743680pt;}
.ls60{letter-spacing:0.748992pt;}
.ls7d{letter-spacing:0.796800pt;}
.ls64{letter-spacing:0.849920pt;}
.ls93{letter-spacing:0.897728pt;}
.ls80{letter-spacing:0.908352pt;}
.ls97{letter-spacing:0.956160pt;}
.ls7{letter-spacing:0.960000pt;}
.ls66{letter-spacing:1.434240pt;}
.ls85{letter-spacing:2.071680pt;}
.ls3a{letter-spacing:2.709120pt;}
.ls81{letter-spacing:3.984000pt;}
.ls21{letter-spacing:4.502400pt;}
.ls7f{letter-spacing:4.621440pt;}
.ls75{letter-spacing:4.706432pt;}
.ls9{letter-spacing:5.145600pt;}
.ls31{letter-spacing:5.258880pt;}
.ls8{letter-spacing:5.788800pt;}
.ls7e{letter-spacing:5.896320pt;}
.ls38{letter-spacing:6.533760pt;}
.ls1{letter-spacing:6.576000pt;}
.ls8f{letter-spacing:7.861760pt;}
.ls8d{letter-spacing:8.499200pt;}
.ls87{letter-spacing:10.411520pt;}
.ls89{letter-spacing:12.323840pt;}
.ls2f{letter-spacing:13.598720pt;}
.ls0{letter-spacing:15.360000pt;}
.ls82{letter-spacing:15.511040pt;}
.ls83{letter-spacing:15.521664pt;}
.ls2c{letter-spacing:17.423360pt;}
.ls8a{letter-spacing:18.060800pt;}
.ls76{letter-spacing:21.301120pt;}
.ls90{letter-spacing:21.938560pt;}
.ls8c{letter-spacing:22.576000pt;}
.ls91{letter-spacing:23.213440pt;}
.ls77{letter-spacing:30.862720pt;}
.ls86{letter-spacing:41.114880pt;}
.ls94{letter-spacing:53.916800pt;}
.ls7a{letter-spacing:67.356160pt;}
.ls69{letter-spacing:78.883200pt;}
.ls6a{letter-spacing:91.685120pt;}
.ls6b{letter-spacing:132.640640pt;}
.ls71{letter-spacing:144.167680pt;}
.ls72{letter-spacing:144.805120pt;}
.ls6d{letter-spacing:157.607040pt;}
.ls6e{letter-spacing:171.683840pt;}
.ls73{letter-spacing:222.254080pt;}
.ls6f{letter-spacing:248.495360pt;}
.ls5b{letter-spacing:268.309120pt;}
.ls5e{letter-spacing:286.901120pt;}
.ls5d{letter-spacing:412.954880pt;}
.ls6c{letter-spacing:670.215040pt;}
.ls70{letter-spacing:731.674880pt;}
.ls4{letter-spacing:942.242560pt;}
.ls37{letter-spacing:955.040000pt;}
.ls68{letter-spacing:1013.901440pt;}
.ls5c{letter-spacing:1043.383040pt;}
.ls5a{letter-spacing:1237.908480pt;}
.ls63{letter-spacing:1422.234880pt;}
.ls51{letter-spacing:1581.594880pt;}
.ls4e{letter-spacing:1828.656000pt;}
.wsc{word-spacing:-42.880000pt;}
.wsd{word-spacing:-16.256000pt;}
.wsf9{word-spacing:-16.064000pt;}
.ws55{word-spacing:-16.000000pt;}
.ws12f{word-spacing:-15.808000pt;}
.ws59{word-spacing:-15.744000pt;}
.ws4{word-spacing:-13.598720pt;}
.ws108{word-spacing:-13.592960pt;}
.wsab{word-spacing:-13.545600pt;}
.ws58{word-spacing:-13.492480pt;}
.ws5e{word-spacing:-13.439360pt;}
.ws8{word-spacing:-13.421440pt;}
.wsaa{word-spacing:-13.386240pt;}
.wsad{word-spacing:-13.333120pt;}
.ws57{word-spacing:-13.280000pt;}
.wse0{word-spacing:-13.249920pt;}
.ws5a{word-spacing:-13.226880pt;}
.wsf7{word-spacing:-13.207040pt;}
.wsf6{word-spacing:-13.173760pt;}
.wsf8{word-spacing:-13.164160pt;}
.wsf5{word-spacing:-13.120640pt;}
.ws5c{word-spacing:-13.067520pt;}
.wsdb{word-spacing:-12.961280pt;}
.ws109{word-spacing:-12.949760pt;}
.ws5d{word-spacing:-12.855040pt;}
.wsdc{word-spacing:-12.695680pt;}
.ws7{word-spacing:-12.649600pt;}
.wsdf{word-spacing:-12.563840pt;}
.wsdd{word-spacing:-12.435200pt;}
.wsa{word-spacing:-12.349440pt;}
.ws0{word-spacing:-12.336000pt;}
.ws14e{word-spacing:-12.323840pt;}
.wsde{word-spacing:-12.135040pt;}
.wsb{word-spacing:-12.006400pt;}
.ws3{word-spacing:-12.000000pt;}
.wsac{word-spacing:-11.952000pt;}
.ws9{word-spacing:-11.920640pt;}
.ws107{word-spacing:-11.898880pt;}
.ws2{word-spacing:-11.808000pt;}
.ws1{word-spacing:-11.664000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws56{word-spacing:-10.248320pt;}
.ws5{word-spacing:-9.605120pt;}
.ws5b{word-spacing:-8.640000pt;}
.wse1{word-spacing:-8.413440pt;}
.ws3b{word-spacing:-4.502400pt;}
.ws21{word-spacing:-0.796800pt;}
.ws4d{word-spacing:-0.643200pt;}
.ws70{word-spacing:-0.318720pt;}
.ws12a{word-spacing:-0.265600pt;}
.ws130{word-spacing:-0.256000pt;}
.ws17{word-spacing:-0.170240pt;}
.ws15{word-spacing:-0.159360pt;}
.ws1b{word-spacing:-0.128000pt;}
.ws1f{word-spacing:-0.106240pt;}
.wsae{word-spacing:-0.085760pt;}
.wsfb{word-spacing:-0.053120pt;}
.wse{word-spacing:0.000000pt;}
.ws60{word-spacing:0.053120pt;}
.wsf1{word-spacing:0.085760pt;}
.ws10a{word-spacing:0.106240pt;}
.ws19{word-spacing:0.128000pt;}
.ws50{word-spacing:0.128640pt;}
.ws51{word-spacing:0.171520pt;}
.ws137{word-spacing:0.192000pt;}
.ws20{word-spacing:0.212480pt;}
.ws52{word-spacing:0.214400pt;}
.ws1c{word-spacing:0.256000pt;}
.wsf0{word-spacing:0.257280pt;}
.ws114{word-spacing:0.265600pt;}
.wsfe{word-spacing:0.300160pt;}
.ws86{word-spacing:0.318720pt;}
.ws14{word-spacing:0.336000pt;}
.wsfc{word-spacing:0.371840pt;}
.wse4{word-spacing:0.424960pt;}
.ws16{word-spacing:0.478080pt;}
.ws1a{word-spacing:0.512000pt;}
.wsc5{word-spacing:0.531200pt;}
.ws5f{word-spacing:0.643200pt;}
.wsfa{word-spacing:0.686080pt;}
.ws10f{word-spacing:0.690560pt;}
.ws18{word-spacing:0.768000pt;}
.ws1e{word-spacing:0.832000pt;}
.ws13c{word-spacing:0.849920pt;}
.ws4c{word-spacing:0.857600pt;}
.ws49{word-spacing:0.900480pt;}
.wsda{word-spacing:0.956160pt;}
.ws37{word-spacing:0.986240pt;}
.ws14a{word-spacing:1.009280pt;}
.wsb2{word-spacing:1.115520pt;}
.ws101{word-spacing:1.221760pt;}
.ws1d{word-spacing:1.280000pt;}
.ws12c{word-spacing:1.328000pt;}
.ws4f{word-spacing:1.372160pt;}
.ws2d{word-spacing:1.415040pt;}
.ws31{word-spacing:1.457920pt;}
.ws10c{word-spacing:1.487360pt;}
.ws2e{word-spacing:1.500800pt;}
.ws3d{word-spacing:1.543680pt;}
.wsed{word-spacing:1.646720pt;}
.ws90{word-spacing:1.752960pt;}
.ws98{word-spacing:1.965440pt;}
.ws8f{word-spacing:2.124800pt;}
.ws10b{word-spacing:2.186880pt;}
.wsee{word-spacing:2.284160pt;}
.ws76{word-spacing:2.390400pt;}
.wsbc{word-spacing:2.602880pt;}
.ws146{word-spacing:2.762240pt;}
.ws3c{word-spacing:2.787200pt;}
.wsc1{word-spacing:3.027840pt;}
.wsc0{word-spacing:3.240320pt;}
.wsce{word-spacing:3.399680pt;}
.ws46{word-spacing:3.473280pt;}
.ws7e{word-spacing:3.665280pt;}
.ws105{word-spacing:3.877760pt;}
.ws142{word-spacing:3.930880pt;}
.ws111{word-spacing:4.037120pt;}
.wsfd{word-spacing:4.116480pt;}
.ws143{word-spacing:4.196480pt;}
.ws9d{word-spacing:4.302720pt;}
.ws11e{word-spacing:4.515200pt;}
.ws2f{word-spacing:4.631040pt;}
.wscf{word-spacing:4.674560pt;}
.ws30{word-spacing:4.716800pt;}
.ws24{word-spacing:4.759680pt;}
.ws120{word-spacing:4.833920pt;}
.ws83{word-spacing:4.940160pt;}
.wsb1{word-spacing:5.152640pt;}
.wsa9{word-spacing:5.312000pt;}
.ws3e{word-spacing:5.360000pt;}
.ws25{word-spacing:5.402880pt;}
.ws65{word-spacing:5.577600pt;}
.ws122{word-spacing:5.790080pt;}
.ws9e{word-spacing:5.843200pt;}
.wsd1{word-spacing:5.949440pt;}
.ws12{word-spacing:6.240000pt;}
.wsbe{word-spacing:6.268160pt;}
.ws119{word-spacing:6.374400pt;}
.wsb0{word-spacing:6.480640pt;}
.ws34{word-spacing:6.517760pt;}
.ws4e{word-spacing:6.603520pt;}
.ws9a{word-spacing:6.640000pt;}
.ws32{word-spacing:6.646400pt;}
.ws13{word-spacing:6.768000pt;}
.wse2{word-spacing:6.905600pt;}
.ws8c{word-spacing:7.118080pt;}
.ws116{word-spacing:7.436800pt;}
.ws88{word-spacing:7.543040pt;}
.ws118{word-spacing:7.755520pt;}
.ws14d{word-spacing:7.914880pt;}
.ws14f{word-spacing:8.074240pt;}
.ws91{word-spacing:8.180480pt;}
.wscd{word-spacing:8.392960pt;}
.ws47{word-spacing:8.533120pt;}
.ws3a{word-spacing:8.576000pt;}
.ws93{word-spacing:8.817920pt;}
.wsaf{word-spacing:9.030400pt;}
.ws6e{word-spacing:9.189760pt;}
.ws33{word-spacing:9.219200pt;}
.ws48{word-spacing:9.262080pt;}
.wsf4{word-spacing:9.433600pt;}
.ws87{word-spacing:9.455360pt;}
.ws7b{word-spacing:9.667840pt;}
.wsf3{word-spacing:9.862400pt;}
.ws148{word-spacing:10.092800pt;}
.wsa8{word-spacing:10.305280pt;}
.wsf2{word-spacing:10.505600pt;}
.ws11a{word-spacing:10.730240pt;}
.wsa4{word-spacing:10.942720pt;}
.ws14c{word-spacing:11.102080pt;}
.ws28{word-spacing:11.105920pt;}
.ws75{word-spacing:11.367680pt;}
.ws66{word-spacing:11.580160pt;}
.ws38{word-spacing:11.663360pt;}
.ws13e{word-spacing:11.739520pt;}
.ws39{word-spacing:11.749120pt;}
.wsd9{word-spacing:12.005120pt;}
.wsc7{word-spacing:12.217600pt;}
.ws147{word-spacing:12.376960pt;}
.ws35{word-spacing:12.392320pt;}
.ws22{word-spacing:12.435200pt;}
.ws36{word-spacing:12.478080pt;}
.ws84{word-spacing:12.642560pt;}
.ws129{word-spacing:12.855040pt;}
.wsc3{word-spacing:13.014400pt;}
.ws4a{word-spacing:13.035520pt;}
.ws4b{word-spacing:13.078400pt;}
.ws82{word-spacing:13.280000pt;}
.wsd5{word-spacing:13.492480pt;}
.ws23{word-spacing:13.678720pt;}
.wsbf{word-spacing:13.917440pt;}
.wsa1{word-spacing:14.129920pt;}
.ws136{word-spacing:14.289280pt;}
.wsa2{word-spacing:14.448640pt;}
.wsd7{word-spacing:14.554880pt;}
.wsba{word-spacing:14.608000pt;}
.wsb9{word-spacing:14.767360pt;}
.ws9c{word-spacing:14.926720pt;}
.ws81{word-spacing:15.192320pt;}
.ws10{word-spacing:15.360000pt;}
.ws145{word-spacing:15.404800pt;}
.wsf{word-spacing:15.488000pt;}
.ws2a{word-spacing:15.565440pt;}
.ws11{word-spacing:15.696000pt;}
.wsc2{word-spacing:15.829760pt;}
.wsff{word-spacing:16.201600pt;}
.ws7a{word-spacing:16.467200pt;}
.ws62{word-spacing:16.679680pt;}
.ws29{word-spacing:16.894720pt;}
.ws117{word-spacing:17.104640pt;}
.ws128{word-spacing:17.210880pt;}
.ws7f{word-spacing:17.317120pt;}
.ws80{word-spacing:17.476480pt;}
.wsca{word-spacing:17.742080pt;}
.ws10d{word-spacing:17.848320pt;}
.wsc6{word-spacing:17.954560pt;}
.ws125{word-spacing:18.113920pt;}
.ws42{word-spacing:18.138240pt;}
.ws41{word-spacing:18.181120pt;}
.ws9b{word-spacing:18.379520pt;}
.ws53{word-spacing:18.592000pt;}
.ws26{word-spacing:18.824320pt;}
.ws149{word-spacing:19.016960pt;}
.wsb8{word-spacing:19.070080pt;}
.ws151{word-spacing:19.176320pt;}
.ws14b{word-spacing:19.229440pt;}
.wsa3{word-spacing:19.282560pt;}
.ws110{word-spacing:19.441920pt;}
.wsd4{word-spacing:19.707520pt;}
.ws100{word-spacing:19.920000pt;}
.wseb{word-spacing:20.079360pt;}
.ws12b{word-spacing:20.238720pt;}
.ws63{word-spacing:20.344960pt;}
.wse7{word-spacing:20.557440pt;}
.wsbb{word-spacing:20.982400pt;}
.ws7d{word-spacing:21.194880pt;}
.ws2c{word-spacing:21.354240pt;}
.ws2b{word-spacing:21.397120pt;}
.ws8b{word-spacing:21.619840pt;}
.ws95{word-spacing:21.832320pt;}
.ws78{word-spacing:22.257280pt;}
.wsa0{word-spacing:22.469760pt;}
.ws77{word-spacing:22.629120pt;}
.ws8d{word-spacing:22.894720pt;}
.wsb5{word-spacing:23.266560pt;}
.ws54{word-spacing:23.532160pt;}
.ws150{word-spacing:23.904000pt;}
.ws64{word-spacing:24.169600pt;}
.ws13f{word-spacing:24.382080pt;}
.ws124{word-spacing:24.541440pt;}
.ws126{word-spacing:24.807040pt;}
.ws131{word-spacing:25.019520pt;}
.wsb4{word-spacing:25.178880pt;}
.wsd2{word-spacing:25.444480pt;}
.wse6{word-spacing:25.816320pt;}
.ws102{word-spacing:26.081920pt;}
.ws9f{word-spacing:26.613120pt;}
.wsc4{word-spacing:26.719360pt;}
.ws92{word-spacing:27.356800pt;}
.wsd6{word-spacing:27.569280pt;}
.ws85{word-spacing:27.994240pt;}
.ws115{word-spacing:28.206720pt;}
.wse5{word-spacing:28.631680pt;}
.ws3f{word-spacing:29.072640pt;}
.ws40{word-spacing:29.115520pt;}
.wsbd{word-spacing:29.269120pt;}
.ws67{word-spacing:29.906560pt;}
.wsa5{word-spacing:30.544000pt;}
.ws123{word-spacing:30.756480pt;}
.wsd8{word-spacing:30.915840pt;}
.wsd3{word-spacing:31.181440pt;}
.ws27{word-spacing:31.559680pt;}
.ws72{word-spacing:32.031360pt;}
.ws45{word-spacing:32.202880pt;}
.ws44{word-spacing:32.245760pt;}
.ws43{word-spacing:32.288640pt;}
.ws73{word-spacing:32.721920pt;}
.ws74{word-spacing:33.518720pt;}
.ws71{word-spacing:33.784320pt;}
.wsec{word-spacing:33.996800pt;}
.wse9{word-spacing:34.156160pt;}
.wsc9{word-spacing:34.421760pt;}
.ws7c{word-spacing:34.634240pt;}
.ws113{word-spacing:34.952960pt;}
.ws10e{word-spacing:35.271680pt;}
.wsc8{word-spacing:35.696640pt;}
.ws134{word-spacing:35.909120pt;}
.ws132{word-spacing:36.068480pt;}
.ws6b{word-spacing:36.334080pt;}
.ws6a{word-spacing:36.546560pt;}
.ws12d{word-spacing:36.705920pt;}
.ws6c{word-spacing:36.971520pt;}
.ws112{word-spacing:37.608960pt;}
.wsef{word-spacing:38.246400pt;}
.ws68{word-spacing:38.883840pt;}
.ws13b{word-spacing:39.096320pt;}
.ws69{word-spacing:39.255680pt;}
.ws79{word-spacing:39.521280pt;}
.ws11b{word-spacing:39.893120pt;}
.ws106{word-spacing:40.158720pt;}
.ws138{word-spacing:40.371200pt;}
.ws133{word-spacing:40.530560pt;}
.ws94{word-spacing:40.796160pt;}
.ws11d{word-spacing:41.008640pt;}
.ws139{word-spacing:41.168000pt;}
.ws104{word-spacing:41.433600pt;}
.ws89{word-spacing:41.805440pt;}
.ws13d{word-spacing:43.345920pt;}
.wsa6{word-spacing:43.558400pt;}
.ws8e{word-spacing:43.983360pt;}
.ws99{word-spacing:44.355200pt;}
.ws11f{word-spacing:45.258240pt;}
.ws144{word-spacing:45.364480pt;}
.ws11c{word-spacing:45.470720pt;}
.ws103{word-spacing:45.948800pt;}
.ws61{word-spacing:46.161280pt;}
.ws135{word-spacing:46.586240pt;}
.ws6f{word-spacing:46.958080pt;}
.wscc{word-spacing:47.223680pt;}
.wscb{word-spacing:47.436160pt;}
.ws121{word-spacing:47.861120pt;}
.ws96{word-spacing:48.870400pt;}
.wse3{word-spacing:49.136000pt;}
.wsa7{word-spacing:49.773440pt;}
.wsd0{word-spacing:50.410880pt;}
.ws97{word-spacing:50.782720pt;}
.wsb6{word-spacing:51.048320pt;}
.ws141{word-spacing:52.960640pt;}
.wsb7{word-spacing:53.173120pt;}
.ws140{word-spacing:53.332480pt;}
.ws153{word-spacing:53.598080pt;}
.ws152{word-spacing:53.969920pt;}
.ws8a{word-spacing:54.448000pt;}
.ws12e{word-spacing:56.785280pt;}
.ws13a{word-spacing:58.963200pt;}
.wsb3{word-spacing:59.388160pt;}
.wse8{word-spacing:61.300480pt;}
.wsea{word-spacing:65.496960pt;}
.ws6d{word-spacing:74.952320pt;}
.ws127{word-spacing:76.864640pt;}
._1f{margin-left:-74.512640pt;}
._2e{margin-left:-64.357120pt;}
._2b{margin-left:-60.102400pt;}
._38{margin-left:-57.955840pt;}
._2a{margin-left:-49.828736pt;}
._34{margin-left:-48.016640pt;}
._20{margin-left:-46.640640pt;}
._25{margin-left:-44.777280pt;}
._39{margin-left:-40.012160pt;}
._1e{margin-left:-36.888704pt;}
._21{margin-left:-35.443840pt;}
._22{margin-left:-33.837440pt;}
._15{margin-left:-31.638336pt;}
._2f{margin-left:-29.205120pt;}
._11{margin-left:-27.800320pt;}
._33{margin-left:-25.776000pt;}
._1d{margin-left:-24.760448pt;}
._2d{margin-left:-23.848704pt;}
._35{margin-left:-22.504320pt;}
._1c{margin-left:-21.515520pt;}
._2c{margin-left:-20.581120pt;}
._40{margin-left:-18.818560pt;}
._27{margin-left:-17.862144pt;}
._1{margin-left:-15.360000pt;}
._32{margin-left:-14.298240pt;}
._42{margin-left:-11.607680pt;}
._30{margin-left:-9.991680pt;}
._41{margin-left:-8.914560pt;}
._4{margin-left:-7.650432pt;}
._c{margin-left:-6.199616pt;}
._d{margin-left:-5.114624pt;}
._5{margin-left:-4.153856pt;}
._16{margin-left:-1.980160pt;}
._2{margin-left:-1.088000pt;}
._0{width:1.408000pt;}
._6{width:2.689792pt;}
._7{width:3.690752pt;}
._e{width:4.932928pt;}
._3{width:5.904000pt;}
._8{width:6.807872pt;}
._b{width:7.965568pt;}
._a{width:9.390720pt;}
._9{width:10.829184pt;}
._3a{width:12.162560pt;}
._12{width:16.543104pt;}
._31{width:17.457664pt;}
._36{width:18.896000pt;}
._3e{width:21.008640pt;}
._37{width:21.938560pt;}
._28{width:23.755264pt;}
._26{width:24.986688pt;}
._f{width:26.401216pt;}
._10{width:28.089280pt;}
._13{width:30.216384pt;}
._14{width:31.178048pt;}
._23{width:34.051840pt;}
._18{width:35.413056pt;}
._17{width:37.314176pt;}
._3d{width:38.512000pt;}
._3c{width:39.574400pt;}
._3f{width:41.008640pt;}
._24{width:44.222400pt;}
._1b{width:45.549440pt;}
._29{width:49.996544pt;}
._3b{width:59.016320pt;}
._19{width:852.979840pt;}
._1a{width:1188.656000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.200000pt;}
.y118{bottom:3.680000pt;}
.y6{bottom:19.200000pt;}
.y4{bottom:35.200000pt;}
.y9{bottom:35.680000pt;}
.y2{bottom:48.480000pt;}
.y3{bottom:51.200000pt;}
.y7{bottom:67.680000pt;}
.y5{bottom:83.680000pt;}
.y1c3{bottom:101.232000pt;}
.y1a7{bottom:101.364800pt;}
.y114{bottom:106.555840pt;}
.y178{bottom:111.416960pt;}
.y142{bottom:111.449600pt;}
.y16d{bottom:111.470080pt;}
.y1fe{bottom:115.369120pt;}
.y1ee{bottom:115.448800pt;}
.yc2{bottom:115.919360pt;}
.yb9{bottom:115.964480pt;}
.y88{bottom:116.129920pt;}
.yf3{bottom:116.144960pt;}
.y27b{bottom:116.949760pt;}
.y1{bottom:117.120000pt;}
.y113{bottom:119.837920pt;}
.y1c2{bottom:119.956800pt;}
.y1a6{bottom:120.089600pt;}
.y151{bottom:130.094720pt;}
.y177{bottom:130.141760pt;}
.y141{bottom:130.174400pt;}
.y16c{bottom:130.194880pt;}
.y112{bottom:133.112960pt;}
.y1fd{bottom:134.093920pt;}
.y1ed{bottom:134.173600pt;}
.yc1{bottom:134.644160pt;}
.yb8{bottom:134.689280pt;}
.y87{bottom:134.854720pt;}
.yf2{bottom:134.869760pt;}
.y247{bottom:134.880000pt;}
.y27a{bottom:135.515200pt;}
.y1c1{bottom:138.681600pt;}
.y1a5{bottom:138.814400pt;}
.y111{bottom:146.555840pt;}
.y54{bottom:147.350400pt;}
.y3a{bottom:147.438400pt;}
.y150{bottom:148.660160pt;}
.y176{bottom:148.707200pt;}
.y140{bottom:148.739840pt;}
.y16b{bottom:148.760320pt;}
.y1fc{bottom:152.659360pt;}
.y1ec{bottom:152.739040pt;}
.yc0{bottom:153.209600pt;}
.yb7{bottom:153.254720pt;}
.y86{bottom:153.420160pt;}
.y246{bottom:153.430400pt;}
.yf1{bottom:153.435200pt;}
.y279{bottom:154.240000pt;}
.y1c0{bottom:157.247040pt;}
.y1a4{bottom:157.379840pt;}
.y110{bottom:159.837920pt;}
.y53{bottom:166.075200pt;}
.y39{bottom:166.155520pt;}
.y14f{bottom:167.384960pt;}
.y175{bottom:167.432000pt;}
.y13f{bottom:167.464640pt;}
.y16a{bottom:167.485120pt;}
.y1fb{bottom:171.384160pt;}
.y1eb{bottom:171.463840pt;}
.ybf{bottom:171.934400pt;}
.yb6{bottom:171.979520pt;}
.y85{bottom:172.144960pt;}
.y245{bottom:172.155200pt;}
.yf0{bottom:172.160000pt;}
.y278{bottom:172.954560pt;}
.y10f{bottom:173.120000pt;}
.y1bf{bottom:175.971840pt;}
.y1a3{bottom:176.104640pt;}
.y10e{bottom:183.607520pt;}
.y52{bottom:184.800000pt;}
.y38{bottom:184.872640pt;}
.y14e{bottom:186.109760pt;}
.y174{bottom:186.156800pt;}
.y13e{bottom:186.189440pt;}
.y169{bottom:186.209920pt;}
.y1fa{bottom:190.108960pt;}
.y1ea{bottom:190.188640pt;}
.ybe{bottom:190.659200pt;}
.yb5{bottom:190.704320pt;}
.y84{bottom:190.869760pt;}
.yef{bottom:190.880000pt;}
.y277{bottom:191.520000pt;}
.y1be{bottom:194.696640pt;}
.y1a2{bottom:194.829440pt;}
.y51{bottom:203.360000pt;}
.y37{bottom:203.428960pt;}
.y14d{bottom:204.675200pt;}
.y173{bottom:204.722240pt;}
.y13d{bottom:204.754880pt;}
.y168{bottom:204.775360pt;}
.y1f9{bottom:208.674400pt;}
.y1e9{bottom:208.754080pt;}
.ybd{bottom:209.224640pt;}
.yb4{bottom:209.269760pt;}
.yee{bottom:209.314880pt;}
.y244{bottom:209.424960pt;}
.y83{bottom:209.435200pt;}
.y276{bottom:210.229760pt;}
.y1bd{bottom:213.262080pt;}
.y1a1{bottom:213.394880pt;}
.y50{bottom:222.080000pt;}
.y36{bottom:222.146080pt;}
.y14c{bottom:223.400000pt;}
.y172{bottom:223.447040pt;}
.y13c{bottom:223.479680pt;}
.y167{bottom:223.500160pt;}
.y1f8{bottom:227.399200pt;}
.y1e8{bottom:227.478880pt;}
.ybc{bottom:227.949440pt;}
.yb3{bottom:227.994560pt;}
.yed{bottom:228.039680pt;}
.y243{bottom:228.149760pt;}
.y82{bottom:228.160000pt;}
.y275{bottom:228.954560pt;}
.y1bc{bottom:231.986880pt;}
.y1a0{bottom:232.119680pt;}
.y35{bottom:240.863200pt;}
.y4f{bottom:240.938240pt;}
.y14b{bottom:242.124800pt;}
.y171{bottom:242.171840pt;}
.y13b{bottom:242.204480pt;}
.y166{bottom:242.224960pt;}
.y1f7{bottom:246.124000pt;}
.y1e7{bottom:246.203680pt;}
.ybb{bottom:246.674240pt;}
.yb2{bottom:246.719360pt;}
.yec{bottom:246.764480pt;}
.y242{bottom:246.874560pt;}
.y81{bottom:246.880000pt;}
.y274{bottom:247.520000pt;}
.y1bb{bottom:250.711680pt;}
.y19f{bottom:250.844480pt;}
.y34{bottom:259.419520pt;}
.y4e{bottom:259.494560pt;}
.y14a{bottom:260.690240pt;}
.y170{bottom:260.737280pt;}
.y13a{bottom:260.769920pt;}
.y165{bottom:260.790400pt;}
.y1f6{bottom:264.689440pt;}
.y1e6{bottom:264.769120pt;}
.y80{bottom:265.239680pt;}
.yb1{bottom:265.284800pt;}
.yeb{bottom:265.329920pt;}
.y241{bottom:265.440000pt;}
.y273{bottom:266.235200pt;}
.y1ba{bottom:269.277120pt;}
.y19e{bottom:269.409920pt;}
.y33{bottom:278.136640pt;}
.y4d{bottom:278.211680pt;}
.y149{bottom:279.415040pt;}
.y16f{bottom:279.462080pt;}
.y139{bottom:279.494720pt;}
.y164{bottom:279.515200pt;}
.y1f5{bottom:283.414240pt;}
.y1e5{bottom:283.493920pt;}
.y7f{bottom:283.964480pt;}
.yb0{bottom:284.009600pt;}
.yea{bottom:284.054720pt;}
.y240{bottom:284.149760pt;}
.y272{bottom:284.960000pt;}
.y1b9{bottom:288.001920pt;}
.y19d{bottom:288.134720pt;}
.y32{bottom:296.853760pt;}
.y4c{bottom:296.928800pt;}
.y148{bottom:298.139840pt;}
.y16e{bottom:298.186880pt;}
.y138{bottom:298.219520pt;}
.y163{bottom:298.240000pt;}
.y1f4{bottom:302.139040pt;}
.y1e4{bottom:302.218720pt;}
.y7e{bottom:302.689280pt;}
.yaf{bottom:302.734400pt;}
.ye9{bottom:302.779520pt;}
.y23f{bottom:302.874560pt;}
.y271{bottom:303.510400pt;}
.y1b8{bottom:306.726720pt;}
.y19c{bottom:306.859520pt;}
.y31{bottom:315.410080pt;}
.y4b{bottom:315.485120pt;}
.y162{bottom:315.825920pt;}
.y147{bottom:316.705280pt;}
.y137{bottom:316.784960pt;}
.y1f3{bottom:320.704480pt;}
.y1e3{bottom:320.784160pt;}
.y7d{bottom:321.254720pt;}
.yae{bottom:321.299840pt;}
.ye8{bottom:321.344960pt;}
.y23e{bottom:321.440000pt;}
.y270{bottom:322.235200pt;}
.y1b7{bottom:325.292160pt;}
.y19b{bottom:325.424960pt;}
.y161{bottom:329.108000pt;}
.y30{bottom:334.127200pt;}
.y4a{bottom:334.202240pt;}
.y146{bottom:335.430080pt;}
.y136{bottom:335.509760pt;}
.y1f2{bottom:339.429280pt;}
.y1e2{bottom:339.508960pt;}
.y7c{bottom:339.979520pt;}
.yad{bottom:340.024640pt;}
.ye7{bottom:340.069760pt;}
.y23d{bottom:340.144960pt;}
.y26f{bottom:340.960000pt;}
.y160{bottom:342.390080pt;}
.y1b6{bottom:344.016960pt;}
.y19a{bottom:344.149760pt;}
.y2f{bottom:352.844320pt;}
.y49{bottom:352.919360pt;}
.y145{bottom:354.154880pt;}
.y135{bottom:354.234560pt;}
.y15f{bottom:355.832960pt;}
.y1f1{bottom:358.154080pt;}
.y1e1{bottom:358.233760pt;}
.y7b{bottom:358.704320pt;}
.yac{bottom:358.749440pt;}
.ye6{bottom:358.794560pt;}
.y23c{bottom:358.869760pt;}
.y26e{bottom:359.510400pt;}
.y1b5{bottom:362.741760pt;}
.y199{bottom:362.874560pt;}
.y15e{bottom:369.115040pt;}
.y2e{bottom:371.400640pt;}
.y48{bottom:371.475680pt;}
.y144{bottom:372.720320pt;}
.y134{bottom:372.800000pt;}
.y1f0{bottom:376.719520pt;}
.y1e0{bottom:376.799200pt;}
.y7a{bottom:377.269760pt;}
.yab{bottom:377.314880pt;}
.ye5{bottom:377.360000pt;}
.y23b{bottom:377.435200pt;}
.y26d{bottom:378.235200pt;}
.y1b4{bottom:381.307200pt;}
.y198{bottom:381.384480pt;}
.y15d{bottom:382.397120pt;}
.y2d{bottom:390.117760pt;}
.y47{bottom:390.192800pt;}
.y143{bottom:391.445120pt;}
.y133{bottom:391.520000pt;}
.y1ef{bottom:395.444320pt;}
.y1df{bottom:395.524000pt;}
.y15c{bottom:395.840000pt;}
.y79{bottom:395.994560pt;}
.yaa{bottom:396.039680pt;}
.ye4{bottom:396.084800pt;}
.y23a{bottom:396.160000pt;}
.y26c{bottom:396.960000pt;}
.y1b3{bottom:400.032000pt;}
.y197{bottom:400.109280pt;}
.y2c{bottom:408.834880pt;}
.y46{bottom:408.909920pt;}
.y132{bottom:409.120000pt;}
.y1de{bottom:413.120000pt;}
.y78{bottom:414.719360pt;}
.y15b{bottom:414.720000pt;}
.ya9{bottom:414.764480pt;}
.ye3{bottom:414.809600pt;}
.y239{bottom:414.880000pt;}
.y26b{bottom:415.515200pt;}
.y1b2{bottom:418.756800pt;}
.y196{bottom:418.834080pt;}
.y131{bottom:422.400000pt;}
.y1dd{bottom:426.400000pt;}
.y2b{bottom:427.391200pt;}
.y45{bottom:427.466240pt;}
.y15a{bottom:429.760000pt;}
.y77{bottom:433.284800pt;}
.ya8{bottom:433.329920pt;}
.ye2{bottom:433.375040pt;}
.y238{bottom:433.440000pt;}
.y26a{bottom:434.240000pt;}
.y130{bottom:435.830880pt;}
.y1b1{bottom:437.322240pt;}
.y195{bottom:437.399520pt;}
.y1dc{bottom:439.837920pt;}
.y2a{bottom:446.108320pt;}
.y44{bottom:446.183360pt;}
.y159{bottom:448.480000pt;}
.y12f{bottom:449.112960pt;}
.y76{bottom:452.009600pt;}
.ya7{bottom:452.054720pt;}
.ye1{bottom:452.099840pt;}
.y237{bottom:452.160000pt;}
.y269{bottom:452.944960pt;}
.y1db{bottom:453.120000pt;}
.y1b0{bottom:456.047040pt;}
.y194{bottom:456.124320pt;}
.y12e{bottom:462.395040pt;}
.y29{bottom:464.825440pt;}
.y43{bottom:464.900480pt;}
.y158{bottom:467.200000pt;}
.y75{bottom:470.734400pt;}
.ya6{bottom:470.779520pt;}
.y236{bottom:470.814400pt;}
.ye0{bottom:470.824640pt;}
.y21a{bottom:470.854720pt;}
.y268{bottom:471.510400pt;}
.y1da{bottom:472.160000pt;}
.y1af{bottom:474.771840pt;}
.y193{bottom:474.849120pt;}
.y12d{bottom:475.837920pt;}
.y28{bottom:483.381760pt;}
.y42{bottom:483.456800pt;}
.y157{bottom:485.760000pt;}
.y1d9{bottom:487.200000pt;}
.y12c{bottom:489.120000pt;}
.y74{bottom:489.299840pt;}
.ya5{bottom:489.344960pt;}
.y235{bottom:489.379840pt;}
.ydf{bottom:489.390080pt;}
.y219{bottom:489.420160pt;}
.y267{bottom:490.235200pt;}
.y1ae{bottom:493.337280pt;}
.y192{bottom:493.414560pt;}
.y27{bottom:502.098880pt;}
.y41{bottom:502.173920pt;}
.y156{bottom:504.480000pt;}
.y1d8{bottom:505.760000pt;}
.y73{bottom:508.024640pt;}
.ya4{bottom:508.069760pt;}
.y234{bottom:508.104640pt;}
.yde{bottom:508.114880pt;}
.y218{bottom:508.144960pt;}
.y12b{bottom:508.160000pt;}
.y266{bottom:508.960000pt;}
.y1ad{bottom:512.062080pt;}
.y191{bottom:512.139360pt;}
.y26{bottom:520.816000pt;}
.y40{bottom:520.891040pt;}
.y12a{bottom:523.200000pt;}
.y1d7{bottom:524.480000pt;}
.y72{bottom:526.749440pt;}
.ya3{bottom:526.794560pt;}
.y233{bottom:526.829440pt;}
.ydd{bottom:526.839680pt;}
.y217{bottom:526.869760pt;}
.y265{bottom:527.504960pt;}
.y1ac{bottom:530.786880pt;}
.y190{bottom:530.864160pt;}
.y25{bottom:539.372320pt;}
.y3f{bottom:539.447360pt;}
.y129{bottom:541.760000pt;}
.y1d6{bottom:543.200000pt;}
.y71{bottom:545.314880pt;}
.ya2{bottom:545.360000pt;}
.y232{bottom:545.394880pt;}
.ydc{bottom:545.405120pt;}
.y216{bottom:545.435200pt;}
.y264{bottom:546.229760pt;}
.y1ab{bottom:549.352320pt;}
.y18f{bottom:549.429600pt;}
.y10d{bottom:554.810080pt;}
.y24{bottom:558.089440pt;}
.y3e{bottom:558.164480pt;}
.y128{bottom:560.480000pt;}
.y1d5{bottom:561.760000pt;}
.y70{bottom:564.039680pt;}
.ya1{bottom:564.084800pt;}
.y231{bottom:564.119680pt;}
.ydb{bottom:564.129920pt;}
.y215{bottom:564.160000pt;}
.y263{bottom:564.954560pt;}
.y1aa{bottom:568.077120pt;}
.y18e{bottom:568.154400pt;}
.y10c{bottom:568.249440pt;}
.y23{bottom:576.806560pt;}
.y3d{bottom:576.881600pt;}
.y127{bottom:579.200000pt;}
.y1d4{bottom:580.480000pt;}
.y10b{bottom:582.644960pt;}
.y6f{bottom:582.764480pt;}
.ya0{bottom:582.809600pt;}
.y230{bottom:582.844480pt;}
.yda{bottom:582.854720pt;}
.y214{bottom:582.880000pt;}
.y262{bottom:583.520000pt;}
.y1a9{bottom:586.801920pt;}
.y18d{bottom:586.879200pt;}
.y22{bottom:595.362880pt;}
.y3c{bottom:595.437920pt;}
.y126{bottom:597.760000pt;}
.y1d3{bottom:599.200000pt;}
.y10a{bottom:601.210400pt;}
.y6e{bottom:601.329920pt;}
.y213{bottom:601.349760pt;}
.y9f{bottom:601.375040pt;}
.y22f{bottom:601.409920pt;}
.yd9{bottom:601.420160pt;}
.y261{bottom:602.229760pt;}
.y1a8{bottom:605.367360pt;}
.y18c{bottom:605.444640pt;}
.y21{bottom:614.080000pt;}
.y3b{bottom:614.155040pt;}
.y125{bottom:616.480000pt;}
.y1d2{bottom:617.760000pt;}
.y109{bottom:619.935200pt;}
.y6d{bottom:620.054720pt;}
.y212{bottom:620.074560pt;}
.y9e{bottom:620.099840pt;}
.y22e{bottom:620.134720pt;}
.yd8{bottom:620.144960pt;}
.y260{bottom:620.954560pt;}
.y18b{bottom:623.040640pt;}
.y20{bottom:632.800000pt;}
.y124{bottom:635.200000pt;}
.y18a{bottom:636.480000pt;}
.y108{bottom:638.660000pt;}
.y6c{bottom:638.779520pt;}
.y211{bottom:638.799360pt;}
.y9d{bottom:638.824640pt;}
.y22d{bottom:638.859520pt;}
.yd7{bottom:638.869760pt;}
.y25f{bottom:639.520000pt;}
.y123{bottom:653.760000pt;}
.y1f{bottom:653.909120pt;}
.y1d1{bottom:655.200000pt;}
.y189{bottom:655.520000pt;}
.y107{bottom:657.225440pt;}
.y6b{bottom:657.344960pt;}
.y210{bottom:657.364800pt;}
.y9c{bottom:657.390080pt;}
.y22c{bottom:657.424960pt;}
.yd6{bottom:657.435200pt;}
.y25e{bottom:658.229760pt;}
.y188{bottom:670.560000pt;}
.y1e{bottom:672.474560pt;}
.y122{bottom:672.480000pt;}
.y1d0{bottom:673.760000pt;}
.yd5{bottom:675.830720pt;}
.y106{bottom:675.950240pt;}
.y6a{bottom:676.069760pt;}
.y20f{bottom:676.089600pt;}
.y9b{bottom:676.114880pt;}
.y22b{bottom:676.149760pt;}
.y25d{bottom:676.954560pt;}
.y187{bottom:689.120000pt;}
.y1d{bottom:691.040000pt;}
.y121{bottom:691.200000pt;}
.y1cf{bottom:692.480000pt;}
.yd4{bottom:694.555520pt;}
.y105{bottom:694.675040pt;}
.y69{bottom:694.794560pt;}
.y20e{bottom:694.814400pt;}
.y9a{bottom:694.839680pt;}
.y22a{bottom:694.874560pt;}
.y25c{bottom:695.520000pt;}
.y186{bottom:707.840000pt;}
.y1c{bottom:709.759867pt;}
.y120{bottom:709.760000pt;}
.y1ce{bottom:711.200000pt;}
.yd3{bottom:713.120960pt;}
.y104{bottom:713.240480pt;}
.y68{bottom:713.360000pt;}
.y20d{bottom:713.379840pt;}
.y99{bottom:713.405120pt;}
.y229{bottom:713.440000pt;}
.y25b{bottom:714.229760pt;}
.y185{bottom:726.560000pt;}
.y1b{bottom:728.479867pt;}
.y11f{bottom:728.480000pt;}
.y1cd{bottom:729.760000pt;}
.yd2{bottom:731.845760pt;}
.y103{bottom:731.965280pt;}
.y67{bottom:732.084800pt;}
.y20c{bottom:732.104640pt;}
.y98{bottom:732.129920pt;}
.y228{bottom:732.160000pt;}
.y25a{bottom:732.954560pt;}
.y184{bottom:745.120000pt;}
.y1a{bottom:747.039867pt;}
.y11e{bottom:747.200000pt;}
.y1cb{bottom:748.480000pt;}
.yd1{bottom:750.570560pt;}
.y102{bottom:750.690080pt;}
.y66{bottom:750.809600pt;}
.y20b{bottom:750.829440pt;}
.y227{bottom:750.839680pt;}
.y97{bottom:750.854720pt;}
.y259{bottom:751.520000pt;}
.y1cc{bottom:756.800000pt;}
.y287{bottom:761.920000pt;}
.y183{bottom:763.840000pt;}
.y19{bottom:765.760000pt;}
.y1c9{bottom:767.200000pt;}
.yd0{bottom:769.136000pt;}
.y101{bottom:769.255520pt;}
.y65{bottom:769.375040pt;}
.y20a{bottom:769.394880pt;}
.y226{bottom:769.405120pt;}
.y96{bottom:769.420160pt;}
.y258{bottom:770.224960pt;}
.y1ca{bottom:775.520000pt;}
.y286{bottom:776.316480pt;}
.y182{bottom:782.560000pt;}
.y18{bottom:784.480000pt;}
.y1c8{bottom:785.760000pt;}
.ycf{bottom:787.860800pt;}
.y100{bottom:787.980320pt;}
.y64{bottom:788.099840pt;}
.y209{bottom:788.119680pt;}
.y225{bottom:788.129920pt;}
.y95{bottom:788.144960pt;}
.y257{bottom:788.949760pt;}
.y285{bottom:795.360000pt;}
.y181{bottom:801.120000pt;}
.y17{bottom:803.040000pt;}
.y11d{bottom:803.200000pt;}
.y1c7{bottom:804.480000pt;}
.yce{bottom:806.585600pt;}
.yff{bottom:806.705120pt;}
.y63{bottom:806.824640pt;}
.y208{bottom:806.844480pt;}
.y224{bottom:806.854720pt;}
.y94{bottom:806.869760pt;}
.y284{bottom:807.504960pt;}
.y256{bottom:807.515200pt;}
.y180{bottom:819.840000pt;}
.y16{bottom:821.760000pt;}
.y1c6{bottom:823.200000pt;}
.ycd{bottom:825.151040pt;}
.yfe{bottom:825.270560pt;}
.y62{bottom:825.390080pt;}
.y207{bottom:825.409920pt;}
.y223{bottom:825.420160pt;}
.y93{bottom:825.435200pt;}
.y283{bottom:826.229760pt;}
.y255{bottom:826.240000pt;}
.y17f{bottom:838.560000pt;}
.y11c{bottom:840.480000pt;}
.ycc{bottom:843.875840pt;}
.yfd{bottom:843.995360pt;}
.y92{bottom:844.086400pt;}
.y61{bottom:844.114880pt;}
.y206{bottom:844.134720pt;}
.y222{bottom:844.144960pt;}
.y254{bottom:844.949760pt;}
.y282{bottom:844.954560pt;}
.y15{bottom:846.560000pt;}
.y1c5{bottom:854.083200pt;}
.y17d{bottom:857.120000pt;}
.y14{bottom:859.040000pt;}
.y11b{bottom:859.200000pt;}
.ycb{bottom:862.600640pt;}
.yfc{bottom:862.720160pt;}
.y91{bottom:862.811200pt;}
.y60{bottom:862.839680pt;}
.y205{bottom:862.859520pt;}
.y221{bottom:862.869760pt;}
.y253{bottom:863.515200pt;}
.y281{bottom:863.520000pt;}
.y17e{bottom:865.440000pt;}
.y17c{bottom:875.840000pt;}
.y13{bottom:877.760000pt;}
.yca{bottom:881.166080pt;}
.yfb{bottom:881.285600pt;}
.y90{bottom:881.376640pt;}
.y5f{bottom:881.405120pt;}
.y204{bottom:881.424960pt;}
.y220{bottom:881.435200pt;}
.y1c4{bottom:881.440000pt;}
.y252{bottom:882.240000pt;}
.y17b{bottom:894.560000pt;}
.y12{bottom:896.480000pt;}
.yc9{bottom:899.890880pt;}
.yfa{bottom:900.010400pt;}
.y8f{bottom:900.101440pt;}
.y5e{bottom:900.129920pt;}
.y203{bottom:900.149760pt;}
.y21f{bottom:900.160000pt;}
.y280{bottom:900.944960pt;}
.y251{bottom:900.949760pt;}
.y155{bottom:904.800000pt;}
.y17a{bottom:913.760000pt;}
.y11{bottom:915.040000pt;}
.y119{bottom:915.200000pt;}
.yc8{bottom:918.615680pt;}
.yf9{bottom:918.735200pt;}
.y8e{bottom:918.826240pt;}
.y5d{bottom:918.854720pt;}
.y202{bottom:918.874560pt;}
.y21e{bottom:918.880000pt;}
.y27f{bottom:919.510400pt;}
.y250{bottom:919.515200pt;}
.y11a{bottom:923.520000pt;}
.y179{bottom:933.120000pt;}
.y10{bottom:933.760000pt;}
.yc7{bottom:937.181120pt;}
.yf8{bottom:937.300640pt;}
.y8d{bottom:937.391680pt;}
.y5c{bottom:937.420160pt;}
.y21d{bottom:937.435200pt;}
.y201{bottom:937.440000pt;}
.y27e{bottom:938.235200pt;}
.y24f{bottom:938.240000pt;}
.yf{bottom:952.480000pt;}
.yc6{bottom:955.905920pt;}
.yf7{bottom:956.025440pt;}
.y8c{bottom:956.116480pt;}
.y5b{bottom:956.144960pt;}
.y200{bottom:956.160000pt;}
.y24e{bottom:956.944960pt;}
.y27d{bottom:956.960000pt;}
.y153{bottom:964.797280pt;}
.ye{bottom:972.148480pt;}
.y152{bottom:974.080000pt;}
.yc5{bottom:974.630720pt;}
.yf6{bottom:974.750240pt;}
.y8b{bottom:974.841280pt;}
.y5a{bottom:974.869760pt;}
.y1ff{bottom:974.880000pt;}
.y24d{bottom:975.510400pt;}
.y117{bottom:983.520000pt;}
.y154{bottom:983.522080pt;}
.yc4{bottom:993.196160pt;}
.yf5{bottom:993.315680pt;}
.y8a{bottom:993.406720pt;}
.y59{bottom:993.435200pt;}
.y21c{bottom:993.440000pt;}
.y24c{bottom:994.235200pt;}
.yd{bottom:996.152320pt;}
.y116{bottom:1005.277600pt;}
.yc3{bottom:1011.920960pt;}
.yf4{bottom:1012.040480pt;}
.y89{bottom:1012.131520pt;}
.y21b{bottom:1012.134240pt;}
.y58{bottom:1012.160000pt;}
.y24b{bottom:1012.960000pt;}
.y115{bottom:1016.480000pt;}
.yc{bottom:1020.156160pt;}
.y57{bottom:1030.880000pt;}
.y24a{bottom:1031.520000pt;}
.yb{bottom:1044.160000pt;}
.y56{bottom:1049.756000pt;}
.yba{bottom:1049.760000pt;}
.y249{bottom:1050.556000pt;}
.y27c{bottom:1050.560000pt;}
.y55{bottom:1059.680000pt;}
.y248{bottom:1060.480000pt;}
.ya{bottom:1067.680000pt;}
.h15{height:18.558667pt;}
.h17{height:18.560000pt;}
.h14{height:18.720000pt;}
.h1b{height:22.560000pt;}
.h13{height:22.721333pt;}
.h16{height:23.996250pt;}
.h9{height:29.794062pt;}
.hb{height:32.578750pt;}
.hc{height:32.788125pt;}
.h5{height:33.351562pt;}
.h10{height:36.001250pt;}
.h12{height:36.581910pt;}
.hf{height:36.883125pt;}
.h2{height:36.909063pt;}
.h1a{height:42.795205pt;}
.he{height:42.867525pt;}
.hd{height:43.375000pt;}
.h11{height:43.890245pt;}
.h4{height:44.468750pt;}
.h8{height:50.181250pt;}
.h7{height:50.748750pt;}
.ha{height:54.114063pt;}
.h6{height:57.688750pt;}
.h3{height:64.000000pt;}
.h19{height:73.132130pt;}
.h18{height:73.769570pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:70.240000pt;}
.w3{width:75.520000pt;}
.wc{width:81.761333pt;}
.wd{width:90.720000pt;}
.wb{width:90.881333pt;}
.we{width:126.880000pt;}
.w7{width:149.920000pt;}
.w8{width:149.921333pt;}
.wa{width:252.480000pt;}
.w6{width:272.480000pt;}
.w5{width:321.280000pt;}
.w4{width:321.281333pt;}
.w2{width:642.720000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x36{left:8.640000pt;}
.x32{left:10.400000pt;}
.x38{left:11.680000pt;}
.x3b{left:13.920000pt;}
.x34{left:15.840000pt;}
.x3c{left:17.120000pt;}
.x15{left:18.560000pt;}
.x22{left:20.000000pt;}
.x2c{left:21.600000pt;}
.x3d{left:23.360000pt;}
.x39{left:25.120000pt;}
.x3e{left:26.720000pt;}
.x27{left:31.520000pt;}
.x2b{left:33.280000pt;}
.x29{left:34.560000pt;}
.x43{left:36.800000pt;}
.x1e{left:37.920000pt;}
.x44{left:40.000000pt;}
.x25{left:41.280000pt;}
.x3a{left:43.040000pt;}
.x20{left:44.640000pt;}
.x28{left:46.240000pt;}
.x23{left:48.320000pt;}
.x24{left:51.520000pt;}
.x2a{left:53.280000pt;}
.x26{left:54.880000pt;}
.x2d{left:60.000000pt;}
.x40{left:64.160000pt;}
.x11{left:67.840000pt;}
.x1{left:75.520000pt;}
.xb{left:82.720000pt;}
.x42{left:86.400000pt;}
.x30{left:94.080000pt;}
.x2f{left:97.760000pt;}
.x45{left:105.758560pt;}
.x18{left:110.560000pt;}
.x17{left:117.280000pt;}
.x9{left:122.703840pt;}
.xe{left:123.680000pt;}
.x12{left:126.880000pt;}
.x16{left:130.240000pt;}
.xf{left:133.920000pt;}
.x3f{left:135.200000pt;}
.x13{left:137.280000pt;}
.x10{left:139.040000pt;}
.x19{left:140.640000pt;}
.x41{left:157.600000pt;}
.x14{left:160.640000pt;}
.x2e{left:168.960000pt;}
.x4{left:291.040000pt;}
.x2{left:294.880000pt;}
.x31{left:328.000000pt;}
.x1d{left:348.000000pt;}
.x3{left:360.000000pt;}
.xd{left:396.800000pt;}
.x1a{left:404.308480pt;}
.x7{left:408.193760pt;}
.x33{left:418.720000pt;}
.x8{left:455.357120pt;}
.x1f{left:497.920000pt;}
.x35{left:500.480000pt;}
.x1b{left:531.185600pt;}
.x1c{left:554.226400pt;}
.x5{left:582.240000pt;}
.xa{left:586.441440pt;}
.x37{left:591.200000pt;}
.x21{left:647.840000pt;}
.x6{left:718.240000pt;}
}




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