
    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_8fda6e562b524f64fbe3dfb3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_447d06bab5df3246bc238d88.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_5d68c8e96c462c8138855892.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_56f6701ba34551c2e15fbb84.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.049805;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_737d48fbdf3e3b533aca8a57.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_427af5f0660f9dcad0e84ebd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.699707;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_e37d9c74eb7f2ef106ae27f0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.142090;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_99c5fd202d51decbc883c165.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.880371;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;}
.m3{transform:matrix(0.000000,-0.250251,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250251,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250251,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250547,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250547,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250547,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250902,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250902,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250902,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,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);}
.m2{transform:matrix(0.250251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250251,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-57.602282px;}
.v6{vertical-align:-34.921165px;}
.v2{vertical-align:-27.000000px;}
.vb{vertical-align:-19.080000px;}
.va{vertical-align:-12.962705px;}
.v4{vertical-align:-8.995752px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:6.480000px;}
.vc{vertical-align:7.920000px;}
.v3{vertical-align:10.440000px;}
.v5{vertical-align:13.320000px;}
.v9{vertical-align:19.078816px;}
.ve{vertical-align:20.887884px;}
.vd{vertical-align:27.000000px;}
.v1{vertical-align:33.120000px;}
.ls65{letter-spacing:-0.957731px;}
.ls5e{letter-spacing:-0.956171px;}
.ls7f{letter-spacing:-0.659651px;}
.ls62{letter-spacing:-0.563603px;}
.ls5c{letter-spacing:-0.561059px;}
.ls63{letter-spacing:-0.551779px;}
.ls5d{letter-spacing:-0.549206px;}
.ls64{letter-spacing:-0.547838px;}
.ls58{letter-spacing:-0.108216px;}
.ls93{letter-spacing:-0.107568px;}
.ls92{letter-spacing:-0.105336px;}
.ls2e{letter-spacing:-0.102204px;}
.ls7d{letter-spacing:-0.096192px;}
.ls8d{letter-spacing:-0.095760px;}
.ls22{letter-spacing:-0.090972px;}
.ls67{letter-spacing:-0.090180px;}
.ls45{letter-spacing:-0.084168px;}
.ls26{letter-spacing:-0.078156px;}
.ls8c{letter-spacing:-0.076608px;}
.ls2c{letter-spacing:-0.072144px;}
.ls41{letter-spacing:-0.066132px;}
.ls2a{letter-spacing:-0.060120px;}
.ls81{letter-spacing:-0.058716px;}
.ls82{letter-spacing:-0.057456px;}
.ls44{letter-spacing:-0.054108px;}
.ls8b{letter-spacing:-0.052668px;}
.ls28{letter-spacing:-0.048096px;}
.ls85{letter-spacing:-0.047880px;}
.ls84{letter-spacing:-0.043092px;}
.ls27{letter-spacing:-0.042084px;}
.ls8a{letter-spacing:-0.038304px;}
.ls2f{letter-spacing:-0.036072px;}
.ls86{letter-spacing:-0.033516px;}
.ls57{letter-spacing:-0.030060px;}
.ls23{letter-spacing:-0.028800px;}
.ls87{letter-spacing:-0.028728px;}
.ls2d{letter-spacing:-0.024048px;}
.ls46{letter-spacing:-0.023940px;}
.ls83{letter-spacing:-0.020916px;}
.ls89{letter-spacing:-0.019152px;}
.ls2b{letter-spacing:-0.018036px;}
.ls91{letter-spacing:-0.014364px;}
.ls80{letter-spacing:-0.012024px;}
.ls88{letter-spacing:-0.009576px;}
.ls25{letter-spacing:-0.006012px;}
.ls90{letter-spacing:-0.004788px;}
.ls40{letter-spacing:-0.003888px;}
.ls21{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.004320px;}
.ls0{letter-spacing:0.004788px;}
.ls9{letter-spacing:0.006012px;}
.ls4f{letter-spacing:0.008640px;}
.ls1f{letter-spacing:0.009576px;}
.ls4d{letter-spacing:0.010116px;}
.lsc{letter-spacing:0.012024px;}
.lsd{letter-spacing:0.018036px;}
.ls73{letter-spacing:0.019152px;}
.ls31{letter-spacing:0.021600px;}
.ls8e{letter-spacing:0.023940px;}
.ls5{letter-spacing:0.024048px;}
.ls1{letter-spacing:0.028800px;}
.lse{letter-spacing:0.030060px;}
.ls32{letter-spacing:0.033516px;}
.ls55{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.036072px;}
.ls3e{letter-spacing:0.041940px;}
.ls24{letter-spacing:0.042084px;}
.ls6e{letter-spacing:0.047880px;}
.ls20{letter-spacing:0.047952px;}
.ls14{letter-spacing:0.048096px;}
.ls10{letter-spacing:0.050328px;}
.ls43{letter-spacing:0.050400px;}
.ls78{letter-spacing:0.052668px;}
.lsb{letter-spacing:0.054108px;}
.ls6b{letter-spacing:0.057456px;}
.ls1a{letter-spacing:0.060120px;}
.ls36{letter-spacing:0.062244px;}
.ls18{letter-spacing:0.066132px;}
.ls79{letter-spacing:0.067032px;}
.ls38{letter-spacing:0.071820px;}
.ls3{letter-spacing:0.072144px;}
.ls30{letter-spacing:0.075492px;}
.ls52{letter-spacing:0.076608px;}
.ls2{letter-spacing:0.078156px;}
.ls37{letter-spacing:0.081396px;}
.ls59{letter-spacing:0.083880px;}
.lsf{letter-spacing:0.084168px;}
.ls51{letter-spacing:0.086184px;}
.ls6{letter-spacing:0.090180px;}
.ls3f{letter-spacing:0.090972px;}
.ls53{letter-spacing:0.095760px;}
.ls15{letter-spacing:0.096192px;}
.ls77{letter-spacing:0.100548px;}
.lsa{letter-spacing:0.102204px;}
.ls39{letter-spacing:0.105336px;}
.ls7{letter-spacing:0.108216px;}
.ls75{letter-spacing:0.110124px;}
.ls13{letter-spacing:0.114228px;}
.ls70{letter-spacing:0.114912px;}
.ls7c{letter-spacing:0.119700px;}
.ls8{letter-spacing:0.120240px;}
.ls72{letter-spacing:0.124488px;}
.ls12{letter-spacing:0.125820px;}
.ls16{letter-spacing:0.126252px;}
.ls1e{letter-spacing:0.132264px;}
.ls4e{letter-spacing:0.138024px;}
.ls1c{letter-spacing:0.138276px;}
.ls71{letter-spacing:0.138852px;}
.ls8f{letter-spacing:0.143640px;}
.ls56{letter-spacing:0.150300px;}
.ls19{letter-spacing:0.162324px;}
.ls74{letter-spacing:0.167580px;}
.ls6f{letter-spacing:0.172368px;}
.ls29{letter-spacing:0.176148px;}
.ls76{letter-spacing:0.177156px;}
.ls33{letter-spacing:0.178092px;}
.ls34{letter-spacing:0.178992px;}
.ls1d{letter-spacing:0.180360px;}
.ls42{letter-spacing:0.181944px;}
.ls7a{letter-spacing:0.201096px;}
.ls6c{letter-spacing:0.220248px;}
.ls66{letter-spacing:0.571486px;}
.ls5f{letter-spacing:0.576864px;}
.ls54{letter-spacing:0.677900px;}
.ls50{letter-spacing:0.683544px;}
.ls6a{letter-spacing:0.890131px;}
.ls60{letter-spacing:1.036557px;}
.ls5a{letter-spacing:1.043096px;}
.ls69{letter-spacing:1.527048px;}
.ls4b{letter-spacing:4.052088px;}
.ls94{letter-spacing:11.919348px;}
.ls68{letter-spacing:13.412772px;}
.ls7b{letter-spacing:14.407092px;}
.ls17{letter-spacing:23.184000px;}
.ls6d{letter-spacing:38.529036px;}
.ls11{letter-spacing:41.117976px;}
.ls48{letter-spacing:78.191988px;}
.ls7e{letter-spacing:86.382464px;}
.ls61{letter-spacing:87.843249px;}
.ls5b{letter-spacing:88.074416px;}
.ls3c{letter-spacing:289.096891px;}
.ls3a{letter-spacing:320.415858px;}
.ls47{letter-spacing:389.954899px;}
.ls49{letter-spacing:405.845371px;}
.ls4a{letter-spacing:466.266000px;}
.ls3d{letter-spacing:596.820113px;}
.ls3b{letter-spacing:612.300113px;}
.ls1b{letter-spacing:940.200557px;}
.ls35{letter-spacing:957.775680px;}
.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;}
}
.ws9c{word-spacing:-99.058530px;}
.ws9e{word-spacing:-98.800007px;}
.wsf7{word-spacing:-97.429628px;}
.ws4{word-spacing:-30.631666px;}
.ws58{word-spacing:-29.986560px;}
.ws5a{word-spacing:-29.863918px;}
.ws2{word-spacing:-21.146148px;}
.ws3{word-spacing:-18.000000px;}
.wsf6{word-spacing:-15.180300px;}
.ws1{word-spacing:-15.102144px;}
.ws9a{word-spacing:-15.030000px;}
.ws5{word-spacing:-13.974300px;}
.ws59{word-spacing:-13.680000px;}
.ws5b{word-spacing:-13.624050px;}
.ws99{word-spacing:-13.581600px;}
.wsf8{word-spacing:-12.190248px;}
.wsfc{word-spacing:-12.171096px;}
.wsf9{word-spacing:-12.151944px;}
.ws16f{word-spacing:-12.113640px;}
.ws16c{word-spacing:-12.017880px;}
.wsfb{word-spacing:-11.970000px;}
.wsfe{word-spacing:-11.879028px;}
.wsfd{word-spacing:-11.874240px;}
.ws16d{word-spacing:-11.864664px;}
.ws9b{word-spacing:-11.667657px;}
.ws9d{word-spacing:-11.634659px;}
.ws0{word-spacing:-9.720000px;}
.ws57{word-spacing:-9.716112px;}
.wsfa{word-spacing:-7.449084px;}
.ws16e{word-spacing:-7.362432px;}
.ws119{word-spacing:-1.514018px;}
.wsc9{word-spacing:-1.225738px;}
.wsc2{word-spacing:-1.126069px;}
.wscc{word-spacing:-1.119324px;}
.wsbf{word-spacing:-0.347699px;}
.wsc8{word-spacing:-0.342891px;}
.ws67{word-spacing:-0.272916px;}
.ws145{word-spacing:-0.268128px;}
.ws132{word-spacing:-0.263340px;}
.ws149{word-spacing:-0.258552px;}
.ws136{word-spacing:-0.229824px;}
.ws164{word-spacing:-0.210672px;}
.ws15f{word-spacing:-0.205884px;}
.ws6d{word-spacing:-0.196308px;}
.wscd{word-spacing:-0.191520px;}
.ws144{word-spacing:-0.181944px;}
.wsc7{word-spacing:-0.177156px;}
.wsb6{word-spacing:-0.176148px;}
.ws45{word-spacing:-0.167760px;}
.ws167{word-spacing:-0.167580px;}
.ws17d{word-spacing:-0.162792px;}
.ws15a{word-spacing:-0.158004px;}
.ws11c{word-spacing:-0.148428px;}
.ws155{word-spacing:-0.143640px;}
.ws185{word-spacing:-0.142596px;}
.ws86{word-spacing:-0.134208px;}
.ws8{word-spacing:-0.131868px;}
.ws14d{word-spacing:-0.071820px;}
.ws96{word-spacing:-0.067032px;}
.ws148{word-spacing:-0.062244px;}
.ws6a{word-spacing:-0.050400px;}
.ws53{word-spacing:-0.048096px;}
.ws60{word-spacing:-0.042084px;}
.ws154{word-spacing:-0.038304px;}
.wse7{word-spacing:-0.036072px;}
.wsa2{word-spacing:-0.036000px;}
.ws9{word-spacing:-0.028800px;}
.wsb5{word-spacing:-0.024048px;}
.ws48{word-spacing:-0.021600px;}
.wsf{word-spacing:-0.018036px;}
.ws5c{word-spacing:-0.014364px;}
.ws3d{word-spacing:-0.012024px;}
.ws52{word-spacing:-0.006012px;}
.ws7{word-spacing:0.000000px;}
.wsca{word-spacing:0.003941px;}
.ws25{word-spacing:0.006012px;}
.wsb{word-spacing:0.012024px;}
.ws6{word-spacing:0.014364px;}
.wsc0{word-spacing:0.015804px;}
.wsc{word-spacing:0.018036px;}
.wsa{word-spacing:0.028800px;}
.ws11a{word-spacing:0.035764px;}
.ws10e{word-spacing:0.036072px;}
.ws35{word-spacing:0.042084px;}
.wsd{word-spacing:0.054108px;}
.ws94{word-spacing:0.060120px;}
.wse{word-spacing:0.066132px;}
.wsdf{word-spacing:0.084168px;}
.ws122{word-spacing:0.102204px;}
.ws78{word-spacing:0.114228px;}
.wsd6{word-spacing:0.120240px;}
.ws44{word-spacing:0.126252px;}
.ws105{word-spacing:0.132264px;}
.ws27{word-spacing:0.138276px;}
.ws197{word-spacing:0.324648px;}
.ws120{word-spacing:0.336672px;}
.ws77{word-spacing:0.384768px;}
.wse8{word-spacing:0.402804px;}
.wsc1{word-spacing:0.406965px;}
.wscb{word-spacing:0.409893px;}
.ws109{word-spacing:0.505008px;}
.ws157{word-spacing:0.641592px;}
.ws171{word-spacing:0.919296px;}
.ws11{word-spacing:1.052100px;}
.ws87{word-spacing:1.064124px;}
.ws5e{word-spacing:1.070136px;}
.ws4a{word-spacing:1.076148px;}
.ws114{word-spacing:1.166328px;}
.ws19b{word-spacing:1.172340px;}
.ws32{word-spacing:1.232460px;}
.ws17a{word-spacing:1.273608px;}
.ws12f{word-spacing:1.340640px;}
.ws195{word-spacing:1.436868px;}
.ws83{word-spacing:1.448892px;}
.wse2{word-spacing:1.466928px;}
.ws111{word-spacing:1.478952px;}
.ws17{word-spacing:1.490976px;}
.wsb4{word-spacing:1.503000px;}
.ws65{word-spacing:1.527048px;}
.ws192{word-spacing:1.575144px;}
.ws17e{word-spacing:1.690164px;}
.ws160{word-spacing:1.761984px;}
.ws37{word-spacing:1.785564px;}
.ws10c{word-spacing:1.791576px;}
.ws19e{word-spacing:1.821636px;}
.ws1d{word-spacing:1.851696px;}
.ws19d{word-spacing:1.869732px;}
.ws16{word-spacing:1.875744px;}
.ws1e{word-spacing:1.887768px;}
.wse0{word-spacing:1.917828px;}
.ws134{word-spacing:1.953504px;}
.ws135{word-spacing:1.991808px;}
.ws41{word-spacing:2.158308px;}
.wse4{word-spacing:2.182356px;}
.ws198{word-spacing:2.224440px;}
.ws127{word-spacing:2.519028px;}
.ws92{word-spacing:2.597184px;}
.ws93{word-spacing:2.615220px;}
.ws9f{word-spacing:2.657304px;}
.wsd0{word-spacing:2.669328px;}
.ws166{word-spacing:2.695644px;}
.ws33{word-spacing:2.885760px;}
.ws80{word-spacing:2.903796px;}
.wsf2{word-spacing:2.939868px;}
.ws126{word-spacing:2.993976px;}
.ws1f{word-spacing:3.210408px;}
.ws10{word-spacing:3.252492px;}
.wsf1{word-spacing:3.264516px;}
.wsb1{word-spacing:3.294576px;}
.ws14a{word-spacing:3.519180px;}
.ws8c{word-spacing:3.589164px;}
.wsa7{word-spacing:3.595176px;}
.ws36{word-spacing:3.601188px;}
.ws106{word-spacing:3.661308px;}
.ws18f{word-spacing:3.691368px;}
.ws18e{word-spacing:3.703392px;}
.ws116{word-spacing:3.727440px;}
.ws6b{word-spacing:3.757500px;}
.wsde{word-spacing:3.769524px;}
.ws180{word-spacing:3.782520px;}
.wsf5{word-spacing:3.937860px;}
.wsda{word-spacing:3.955896px;}
.ws19a{word-spacing:3.967920px;}
.ws1a0{word-spacing:3.973932px;}
.wseb{word-spacing:3.985956px;}
.ws10b{word-spacing:3.991968px;}
.ws10a{word-spacing:4.046076px;}
.wsa6{word-spacing:4.082148px;}
.ws17f{word-spacing:4.117680px;}
.ws95{word-spacing:4.136832px;}
.ws5d{word-spacing:4.322628px;}
.ws12a{word-spacing:4.352688px;}
.ws7f{word-spacing:4.364712px;}
.wsa4{word-spacing:4.454892px;}
.ws2e{word-spacing:4.484952px;}
.ws16b{word-spacing:4.491144px;}
.ws14e{word-spacing:4.629996px;}
.ws73{word-spacing:4.665312px;}
.ws42{word-spacing:4.719420px;}
.wsdd{word-spacing:4.725432px;}
.ws125{word-spacing:4.737456px;}
.wsdc{word-spacing:4.857696px;}
.ws47{word-spacing:5.014008px;}
.wsbd{word-spacing:5.026032px;}
.wsb3{word-spacing:5.032044px;}
.ws22{word-spacing:5.056092px;}
.ws124{word-spacing:5.098176px;}
.wsb7{word-spacing:5.116212px;}
.ws13d{word-spacing:5.142312px;}
.ws151{word-spacing:5.348196px;}
.ws18a{word-spacing:5.380740px;}
.ws128{word-spacing:5.386752px;}
.wscf{word-spacing:5.446872px;}
.ws13b{word-spacing:5.544504px;}
.ws13c{word-spacing:5.649840px;}
.ws12e{word-spacing:5.747472px;}
.ws31{word-spacing:5.753484px;}
.ws89{word-spacing:5.765508px;}
.ws79{word-spacing:5.777532px;}
.ws7a{word-spacing:5.801580px;}
.ws4b{word-spacing:5.831640px;}
.wsce{word-spacing:5.843664px;}
.ws3c{word-spacing:6.126228px;}
.wsf3{word-spacing:6.180336px;}
.wsf4{word-spacing:6.288552px;}
.ws140{word-spacing:6.372828px;}
.ws38{word-spacing:6.444864px;}
.ws133{word-spacing:6.449436px;}
.wsad{word-spacing:6.456888px;}
.wsb8{word-spacing:6.468912px;}
.wsb2{word-spacing:6.480936px;}
.ws113{word-spacing:6.486948px;}
.wsbb{word-spacing:6.492960px;}
.ws11d{word-spacing:6.498972px;}
.ws129{word-spacing:6.523020px;}
.ws19{word-spacing:6.529032px;}
.ws2d{word-spacing:6.547068px;}
.ws91{word-spacing:6.655284px;}
.wsac{word-spacing:6.679332px;}
.ws13f{word-spacing:6.798960px;}
.ws7e{word-spacing:6.823620px;}
.wse5{word-spacing:6.835644px;}
.ws20{word-spacing:6.841656px;}
.wsb9{word-spacing:6.847668px;}
.ws18{word-spacing:6.859692px;}
.wse1{word-spacing:6.877728px;}
.ws90{word-spacing:6.931836px;}
.ws2c{word-spacing:6.949872px;}
.ws13a{word-spacing:6.985692px;}
.ws88{word-spacing:7.202376px;}
.ws12b{word-spacing:7.256484px;}
.wsab{word-spacing:7.268508px;}
.wsba{word-spacing:7.286544px;}
.ws142{word-spacing:7.354368px;}
.ws6c{word-spacing:7.387884px;}
.ws139{word-spacing:7.397460px;}
.ws143{word-spacing:7.502796px;}
.ws170{word-spacing:7.517160px;}
.ws2a{word-spacing:7.533036px;}
.wsb0{word-spacing:7.557084px;}
.wsaa{word-spacing:7.611192px;}
.ws188{word-spacing:7.623216px;}
.ws187{word-spacing:7.635240px;}
.ws76{word-spacing:7.701372px;}
.ws141{word-spacing:7.718256px;}
.ws3b{word-spacing:7.893756px;}
.ws29{word-spacing:7.899768px;}
.ws115{word-spacing:7.911792px;}
.ws85{word-spacing:7.917804px;}
.ws112{word-spacing:7.923816px;}
.ws10f{word-spacing:7.965900px;}
.ws5f{word-spacing:7.971912px;}
.ws121{word-spacing:7.983936px;}
.ws186{word-spacing:7.989948px;}
.wsbc{word-spacing:8.050068px;}
.ws43{word-spacing:8.284536px;}
.ws118{word-spacing:8.296560px;}
.wsea{word-spacing:8.320608px;}
.ws23{word-spacing:8.338644px;}
.wsae{word-spacing:8.350668px;}
.ws24{word-spacing:8.362692px;}
.wsaf{word-spacing:8.386740px;}
.ws34{word-spacing:8.392752px;}
.wsa3{word-spacing:8.627220px;}
.ws196{word-spacing:8.633232px;}
.ws117{word-spacing:8.693352px;}
.wse9{word-spacing:8.711388px;}
.ws72{word-spacing:8.723412px;}
.ws26{word-spacing:8.771508px;}
.ws69{word-spacing:8.829072px;}
.ws15{word-spacing:9.078120px;}
.ws21{word-spacing:9.168300px;}
.ws68{word-spacing:9.207324px;}
.ws7d{word-spacing:9.324612px;}
.ws3a{word-spacing:9.360684px;}
.ws14{word-spacing:9.396756px;}
.ws19f{word-spacing:9.432828px;}
.ws146{word-spacing:9.662184px;}
.ws108{word-spacing:9.703368px;}
.ws13{word-spacing:9.709380px;}
.ws100{word-spacing:9.727416px;}
.ws64{word-spacing:9.787536px;}
.wsd5{word-spacing:9.901764px;}
.ws2f{word-spacing:10.070100px;}
.ws63{word-spacing:10.112184px;}
.wsdb{word-spacing:10.136232px;}
.ws12d{word-spacing:10.208376px;}
.ws172{word-spacing:10.279836px;}
.ws173{word-spacing:10.375596px;}
.ws168{word-spacing:10.399536px;}
.ws102{word-spacing:10.400760px;}
.ws4d{word-spacing:10.424808px;}
.ws104{word-spacing:10.430820px;}
.ws4c{word-spacing:10.460880px;}
.ws14c{word-spacing:10.595844px;}
.ws103{word-spacing:10.605168px;}
.ws14b{word-spacing:10.619784px;}
.ws101{word-spacing:10.779516px;}
.ws46{word-spacing:10.929816px;}
.wsd7{word-spacing:10.965888px;}
.ws82{word-spacing:11.152260px;}
.ws18c{word-spacing:11.182320px;}
.ws2b{word-spacing:11.200356px;}
.ws4f{word-spacing:11.218392px;}
.ws50{word-spacing:11.248452px;}
.wsa9{word-spacing:11.302560px;}
.wsa8{word-spacing:11.561076px;}
.ws18b{word-spacing:11.597148px;}
.ws7c{word-spacing:11.933820px;}
.ws123{word-spacing:12.024000px;}
.wsc6{word-spacing:12.051396px;}
.ws51{word-spacing:12.216384px;}
.ws8f{word-spacing:12.228408px;}
.wsa1{word-spacing:12.252456px;}
.wsff{word-spacing:12.264480px;}
.wsc5{word-spacing:12.415284px;}
.wsd1{word-spacing:12.619188px;}
.ws107{word-spacing:12.661272px;}
.ws1c{word-spacing:12.673296px;}
.ws12{word-spacing:12.685320px;}
.ws17c{word-spacing:12.750444px;}
.ws130{word-spacing:12.783960px;}
.ws131{word-spacing:12.793536px;}
.ws17b{word-spacing:12.798324px;}
.ws66{word-spacing:13.088124px;}
.wsc3{word-spacing:13.143060px;}
.ws138{word-spacing:13.171788px;}
.ws8e{word-spacing:13.310568px;}
.ws10d{word-spacing:13.322592px;}
.ws110{word-spacing:13.334616px;}
.wsc4{word-spacing:13.511736px;}
.ws137{word-spacing:13.631436px;}
.wsd4{word-spacing:13.689324px;}
.ws11f{word-spacing:13.761468px;}
.ws15b{word-spacing:13.889988px;}
.ws11e{word-spacing:14.116176px;}
.ws49{word-spacing:14.410764px;}
.ws71{word-spacing:14.464872px;}
.wse3{word-spacing:14.537016px;}
.wsa0{word-spacing:14.789520px;}
.ws1b{word-spacing:14.795532px;}
.ws11b{word-spacing:14.952924px;}
.ws74{word-spacing:15.204348px;}
.ws1a{word-spacing:15.216372px;}
.wsbe{word-spacing:15.450840px;}
.ws56{word-spacing:15.474888px;}
.ws40{word-spacing:15.901740px;}
.ws12c{word-spacing:15.973884px;}
.ws3f{word-spacing:16.262460px;}
.wsd8{word-spacing:16.514964px;}
.wsd9{word-spacing:16.563060px;}
.wse6{word-spacing:16.569072px;}
.ws62{word-spacing:16.713360px;}
.ws70{word-spacing:16.911756px;}
.ws4e{word-spacing:16.929792px;}
.ws153{word-spacing:17.093160px;}
.ws152{word-spacing:17.097948px;}
.wsef{word-spacing:17.272476px;}
.ws191{word-spacing:17.398728px;}
.ws150{word-spacing:17.437896px;}
.ws14f{word-spacing:17.452260px;}
.ws165{word-spacing:17.600688px;}
.ws39{word-spacing:17.627184px;}
.ws190{word-spacing:17.705340px;}
.ws6f{word-spacing:17.735400px;}
.ws55{word-spacing:17.957844px;}
.wsd3{word-spacing:17.975880px;}
.ws8d{word-spacing:17.993916px;}
.ws54{word-spacing:18.017964px;}
.ws6e{word-spacing:18.048024px;}
.wsd2{word-spacing:18.402732px;}
.ws19c{word-spacing:18.408744px;}
.ws194{word-spacing:18.432792px;}
.ws193{word-spacing:18.799524px;}
.ws179{word-spacing:19.013148px;}
.ws13e{word-spacing:19.032300px;}
.ws199{word-spacing:19.058040px;}
.ws8b{word-spacing:19.094112px;}
.ws174{word-spacing:19.635588px;}
.ws175{word-spacing:19.716984px;}
.ws158{word-spacing:20.353788px;}
.ws159{word-spacing:20.507004px;}
.ws189{word-spacing:20.579076px;}
.ws75{word-spacing:21.246408px;}
.ws15e{word-spacing:21.325752px;}
.ws15d{word-spacing:21.383208px;}
.ws161{word-spacing:21.416724px;}
.ws176{word-spacing:21.483756px;}
.ws15c{word-spacing:21.546000px;}
.ws3e{word-spacing:21.709332px;}
.ws28{word-spacing:21.751416px;}
.ws178{word-spacing:22.604148px;}
.ws177{word-spacing:22.862700px;}
.ws163{word-spacing:22.867488px;}
.ws162{word-spacing:23.274468px;}
.wsf0{word-spacing:23.735376px;}
.ws8a{word-spacing:24.468840px;}
.ws156{word-spacing:25.515252px;}
.ws184{word-spacing:26.104176px;}
.ws84{word-spacing:26.272440px;}
.ws183{word-spacing:26.578188px;}
.ws18d{word-spacing:26.621136px;}
.wsee{word-spacing:26.693280px;}
.ws30{word-spacing:27.372636px;}
.ws147{word-spacing:28.981764px;}
.ws98{word-spacing:30.815939px;}
.wsed{word-spacing:32.098068px;}
.ws16a{word-spacing:32.251968px;}
.wsec{word-spacing:32.464800px;}
.ws169{word-spacing:32.658948px;}
.ws182{word-spacing:38.342304px;}
.ws181{word-spacing:38.706192px;}
.ws61{word-spacing:211.995144px;}
.ws97{word-spacing:430.784916px;}
.ws7b{word-spacing:557.955684px;}
.ws81{word-spacing:573.436584px;}
.wsa5{word-spacing:594.298224px;}
._2d{margin-left:-328.212946px;}
._2e{margin-left:-264.531540px;}
._8{margin-left:-236.551361px;}
._2a{margin-left:-232.900410px;}
._25{margin-left:-230.037408px;}
._23{margin-left:-228.959424px;}
._c{margin-left:-227.093554px;}
._b{margin-left:-224.673206px;}
._14{margin-left:-214.656427px;}
._22{margin-left:-209.878560px;}
._11{margin-left:-208.177942px;}
._5{margin-left:-207.032049px;}
._1a{margin-left:-205.303968px;}
._6{margin-left:-202.711196px;}
._4{margin-left:-197.669268px;}
._d{margin-left:-195.936455px;}
._13{margin-left:-191.978933px;}
._2b{margin-left:-190.656767px;}
._24{margin-left:-189.562198px;}
._1d{margin-left:-186.228576px;}
._19{margin-left:-184.783968px;}
._1b{margin-left:-183.705984px;}
._9{margin-left:-182.549076px;}
._15{margin-left:-179.379705px;}
._7{margin-left:-173.912958px;}
._a{margin-left:-170.670921px;}
._e{margin-left:-167.630113px;}
._12{margin-left:-164.974996px;}
._1c{margin-left:-162.824832px;}
._1f{margin-left:-161.637408px;}
._2c{margin-left:-146.491981px;}
._16{margin-left:-98.535584px;}
._26{margin-left:-96.701184px;}
._34{margin-left:-87.390872px;}
._39{margin-left:-85.492333px;}
._10{margin-left:-69.413143px;}
._21{margin-left:-68.400000px;}
._1e{margin-left:-67.246385px;}
._f{margin-left:-41.989977px;}
._20{margin-left:-40.678848px;}
._29{margin-left:-21.240396px;}
._33{margin-left:-14.745580px;}
._36{margin-left:-12.533277px;}
._38{margin-left:-11.473464px;}
._31{margin-left:-6.601176px;}
._28{margin-left:-4.803588px;}
._32{margin-left:-2.752671px;}
._1{margin-left:-1.202400px;}
._2{width:1.034064px;}
._35{width:2.144895px;}
._2f{width:4.094172px;}
._30{width:6.432840px;}
._3{width:11.428812px;}
._37{width:17.366076px;}
._27{width:30.686292px;}
._17{width:228.961008px;}
._18{width:465.115896px;}
._0{width:1797.324228px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:29.880000px;}
.fsd{font-size:38.028000px;}
.fsb{font-size:38.147400px;}
.fs9{font-size:38.303400px;}
.fs3{font-size:38.880000px;}
.fs7{font-size:39.127800px;}
.fs10{font-size:39.412800px;}
.fsf{font-size:39.511200px;}
.fs11{font-size:39.738000px;}
.fs0{font-size:47.880000px;}
.fsc{font-size:54.326400px;}
.fsa{font-size:54.496200px;}
.fs8{font-size:54.720000px;}
.fs6{font-size:55.897200px;}
.fse{font-size:57.416059px;}
.fs4{font-size:60.120000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs1{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.yfd{bottom:122.972286px;}
.y13b{bottom:123.595176px;}
.y89{bottom:124.317414px;}
.y171{bottom:124.679919px;}
.y2d{bottom:125.662521px;}
.y63{bottom:127.379820px;}
.y1aa{bottom:128.002305px;}
.y1df{bottom:130.890450px;}
.ybb{bottom:132.871062px;}
.yfc{bottom:137.101674px;}
.y13a{bottom:141.145707px;}
.y88{bottom:141.867945px;}
.y1a9{bottom:142.132890px;}
.y170{bottom:142.230450px;}
.y2c{bottom:143.213052px;}
.y62{bottom:144.930351px;}
.yba{bottom:147.000450px;}
.yfb{bottom:151.231062px;}
.y1a8{bottom:156.262278px;}
.y1de{bottom:158.520450px;}
.y87{bottom:159.418476px;}
.y2b{bottom:160.763583px;}
.yfa{bottom:165.360450px;}
.yb9{bottom:167.520450px;}
.y139{bottom:167.696202px;}
.y16f{bottom:169.860450px;}
.y1a7{bottom:170.392863px;}
.y86{bottom:176.969007px;}
.y54{bottom:177.777641px;}
.y4e{bottom:177.779039px;}
.y2a{bottom:178.314114px;}
.y5b{bottom:181.377421px;}
.y56{bottom:181.378819px;}
.yf9{bottom:181.380450px;}
.y138{bottom:185.246733px;}
.y50{bottom:186.689053px;}
.y4a{bottom:186.690450px;}
.yf3{bottom:188.851194px;}
.y1a6{bottom:193.522494px;}
.y85{bottom:194.519538px;}
.y51{bottom:197.488392px;}
.y4b{bottom:197.489789px;}
.y5c{bottom:198.836912px;}
.y57{bottom:198.838309px;}
.yf2{bottom:199.470817px;}
.y137{bottom:202.797264px;}
.y60{bottom:202.890450px;}
.y29{bottom:204.864609px;}
.y1dd{bottom:205.680450px;}
.y1a5{bottom:207.653079px;}
.y5f{bottom:207.745528px;}
.y5a{bottom:207.746925px;}
.y61{bottom:207.750450px;}
.y52{bottom:210.717861px;}
.y4c{bottom:210.719259px;}
.y84{bottom:212.070069px;}
.ye7{bottom:214.050450px;}
.y5d{bottom:216.296402px;}
.y58{bottom:216.297799px;}
.y136{bottom:220.347795px;}
.y1a4{bottom:221.783664px;}
.yf8{bottom:222.330450px;}
.y28{bottom:222.415140px;}
.y53{bottom:224.038164px;}
.y4d{bottom:224.039562px;}
.y16e{bottom:229.346388px;}
.y83{bottom:229.620600px;}
.ye8{bottom:230.700470px;}
.y55{bottom:232.948178px;}
.y4f{bottom:232.949575px;}
.y5e{bottom:233.755892px;}
.y59{bottom:233.757290px;}
.y135{bottom:237.898326px;}
.yf7{bottom:238.530600px;}
.y27{bottom:239.965671px;}
.y1a3{bottom:244.913295px;}
.ye9{bottom:246.810174px;}
.y16d{bottom:246.896919px;}
.yf6{bottom:255.090450px;}
.y134{bottom:255.448857px;}
.y82{bottom:255.629865px;}
.y26{bottom:257.516202px;}
.y1a2{bottom:259.043880px;}
.y49{bottom:262.106760px;}
.yea{bottom:263.460193px;}
.y16c{bottom:264.447450px;}
.yf4{bottom:267.150450px;}
.y81{bottom:269.760450px;}
.yf5{bottom:271.740450px;}
.y133{bottom:272.999388px;}
.y1a1{bottom:273.174465px;}
.y25{bottom:275.066733px;}
.yeb{bottom:280.110213px;}
.y16b{bottom:281.997981px;}
.y48{bottom:287.127201px;}
.y1a0{bottom:287.305050px;}
.y80{bottom:290.280450px;}
.y132{bottom:290.549919px;}
.y24{bottom:292.617264px;}
.yec{bottom:296.219917px;}
.y47{bottom:304.677732px;}
.y131{bottom:308.100450px;}
.y16a{bottom:308.548476px;}
.y23{bottom:310.167795px;}
.y19f{bottom:310.434681px;}
.yed{bottom:312.869937px;}
.y46{bottom:322.228263px;}
.y19e{bottom:324.565266px;}
.y169{bottom:326.099007px;}
.y22{bottom:327.718326px;}
.yee{bottom:329.430068px;}
.y130{bottom:335.100450px;}
.y19d{bottom:338.695851px;}
.y45{bottom:339.778794px;}
.y168{bottom:343.649538px;}
.y21{bottom:345.268857px;}
.yef{bottom:346.080088px;}
.y44{bottom:357.329325px;}
.y167{bottom:361.200069px;}
.y19c{bottom:361.825482px;}
.yf0{bottom:362.189792px;}
.y20{bottom:362.819388px;}
.y19b{bottom:375.956067px;}
.y166{bottom:378.750600px;}
.yf1{bottom:378.839812px;}
.y1f{bottom:380.369919px;}
.y12f{bottom:382.696716px;}
.y43{bottom:384.148857px;}
.y19a{bottom:390.086652px;}
.y1e{bottom:397.920450px;}
.y12e{bottom:400.247247px;}
.y42{bottom:401.699388px;}
.y199{bottom:404.217237px;}
.y165{bottom:404.759865px;}
.ye6{bottom:405.385671px;}
.yb8{bottom:414.834078px;}
.y12d{bottom:417.797778px;}
.y164{bottom:418.890450px;}
.y41{bottom:419.249919px;}
.ye5{bottom:422.936202px;}
.y1d{bottom:425.550450px;}
.y198{bottom:427.346868px;}
.yb7{bottom:432.384609px;}
.y12c{bottom:435.348309px;}
.y40{bottom:436.800450px;}
.y163{bottom:439.410600px;}
.ye4{bottom:440.486733px;}
.y197{bottom:441.477453px;}
.y15d{bottom:447.059353px;}
.yb6{bottom:449.935140px;}
.y12b{bottom:452.898840px;}
.y196{bottom:455.608038px;}
.ye3{bottom:458.037264px;}
.y15c{bottom:458.309180px;}
.y3f{bottom:463.800450px;}
.yb5{bottom:467.485671px;}
.y12a{bottom:470.449371px;}
.y151{bottom:472.980450px;}
.ye2{bottom:475.587795px;}
.y195{bottom:478.737669px;}
.y162{bottom:480.810450px;}
.yb4{bottom:485.036202px;}
.y1c{bottom:485.040069px;}
.y129{bottom:487.999902px;}
.y152{bottom:489.180639px;}
.y194{bottom:492.868254px;}
.ye1{bottom:493.138326px;}
.y161{bottom:497.010450px;}
.yb3{bottom:502.586733px;}
.y1b{bottom:502.590600px;}
.y128{bottom:505.550433px;}
.y153{bottom:505.920272px;}
.y193{bottom:506.998839px;}
.ye0{bottom:510.688857px;}
.y3e{bottom:511.409388px;}
.y160{bottom:513.750600px;}
.yb2{bottom:520.137264px;}
.y154{bottom:522.120461px;}
.y127{bottom:523.100964px;}
.y15e{bottom:525.270600px;}
.ydf{bottom:528.239388px;}
.y3d{bottom:528.959919px;}
.y15f{bottom:529.950450px;}
.y192{bottom:530.128470px;}
.y1a{bottom:530.220450px;}
.yb1{bottom:537.687795px;}
.y155{bottom:538.860093px;}
.y191{bottom:544.259055px;}
.y7f{bottom:544.979919px;}
.yde{bottom:545.789919px;}
.y3c{bottom:546.510450px;}
.y126{bottom:549.651459px;}
.y156{bottom:555.060282px;}
.yb0{bottom:555.238326px;}
.y190{bottom:558.388443px;}
.y7e{bottom:562.530450px;}
.ydd{bottom:563.340450px;}
.y125{bottom:567.201990px;}
.y157{bottom:571.260472px;}
.yaf{bottom:572.788857px;}
.y3b{bottom:574.140450px;}
.y18f{bottom:581.518074px;}
.y124{bottom:584.752521px;}
.y158{bottom:588.000104px;}
.y7d{bottom:589.530450px;}
.yae{bottom:590.339388px;}
.ydc{bottom:590.340450px;}
.y18e{bottom:595.648659px;}
.y19{bottom:598.701999px;}
.y123{bottom:602.303052px;}
.y159{bottom:604.200293px;}
.yad{bottom:607.889919px;}
.y18d{bottom:609.779244px;}
.y18{bottom:616.252530px;}
.y122{bottom:619.853583px;}
.y15a{bottom:620.939926px;}
.yac{bottom:625.440450px;}
.ydb{bottom:630.030450px;}
.y18c{bottom:632.908875px;}
.y3a{bottom:633.616401px;}
.y17{bottom:633.803061px;}
.y7c{bottom:636.601062px;}
.y15b{bottom:637.140115px;}
.y121{bottom:637.404114px;}
.y18b{bottom:647.039460px;}
.y7b{bottom:650.730450px;}
.y39{bottom:651.166932px;}
.y16{bottom:651.353592px;}
.yab{bottom:652.440450px;}
.y120{bottom:654.954645px;}
.y18a{bottom:661.170045px;}
.y38{bottom:668.717463px;}
.y15{bottom:668.904123px;}
.y1dc{bottom:670.788372px;}
.y7a{bottom:671.250450px;}
.y11f{bottom:672.505176px;}
.y150{bottom:672.677886px;}
.y189{bottom:675.299433px;}
.yda{bottom:685.017201px;}
.y37{bottom:686.267994px;}
.y14{bottom:686.454654px;}
.y11e{bottom:690.055707px;}
.y14f{bottom:690.228417px;}
.y1c2{bottom:697.349388px;}
.y188{bottom:698.429064px;}
.y1db{bottom:699.137958px;}
.yaa{bottom:701.130450px;}
.yd9{bottom:702.567732px;}
.y13{bottom:704.005185px;}
.y11d{bottom:707.606238px;}
.y14e{bottom:707.778948px;}
.y187{bottom:712.559649px;}
.y36{bottom:712.818489px;}
.y1c1{bottom:714.899919px;}
.y1da{bottom:716.688489px;}
.yd8{bottom:720.118263px;}
.y12{bottom:721.555716px;}
.y14d{bottom:725.329479px;}
.y186{bottom:726.690234px;}
.y35{bottom:730.369020px;}
.y1c0{bottom:732.450450px;}
.y11c{bottom:734.156733px;}
.y1d9{bottom:734.239020px;}
.yd7{bottom:737.668794px;}
.y11{bottom:739.106247px;}
.y185{bottom:740.820819px;}
.y14c{bottom:742.880010px;}
.y34{bottom:747.919551px;}
.y11b{bottom:751.707264px;}
.y1d8{bottom:751.789551px;}
.yd6{bottom:755.488362px;}
.y10{bottom:756.656778px;}
.y1bf{bottom:760.350450px;}
.y14b{bottom:760.430541px;}
.ya9{bottom:760.618731px;}
.y184{bottom:763.948479px;}
.y11a{bottom:769.257795px;}
.y1d7{bottom:769.340082px;}
.yd5{bottom:773.038893px;}
.yf{bottom:774.207309px;}
.y33{bottom:774.470046px;}
.y14a{bottom:777.981072px;}
.y183{bottom:778.079064px;}
.ya8{bottom:778.169262px;}
.y119{bottom:786.808326px;}
.y1d6{bottom:786.890613px;}
.yd4{bottom:790.589424px;}
.ye{bottom:791.757840px;}
.y32{bottom:792.020577px;}
.y182{bottom:792.209649px;}
.y149{bottom:795.531603px;}
.ya7{bottom:795.719793px;}
.y118{bottom:804.358857px;}
.y1d5{bottom:804.441144px;}
.yd{bottom:809.308371px;}
.y31{bottom:809.571108px;}
.y148{bottom:813.082134px;}
.ya6{bottom:813.270324px;}
.y181{bottom:815.339280px;}
.yd3{bottom:817.139919px;}
.y117{bottom:821.909388px;}
.y1d4{bottom:821.991675px;}
.yc{bottom:826.858902px;}
.y30{bottom:827.121639px;}
.y1be{bottom:828.300657px;}
.y180{bottom:829.469865px;}
.y147{bottom:830.632665px;}
.ya5{bottom:830.820855px;}
.yd2{bottom:834.689970px;}
.y116{bottom:839.459919px;}
.y1d3{bottom:839.542206px;}
.y1bd{bottom:842.431242px;}
.y17f{bottom:843.600450px;}
.yb{bottom:844.409433px;}
.y2f{bottom:844.672170px;}
.yd1{bottom:852.240501px;}
.y115{bottom:857.010450px;}
.y1d2{bottom:857.092737px;}
.y146{bottom:857.183160px;}
.y9e{bottom:858.090828px;}
.ya0{bottom:861.600383px;}
.ya{bottom:861.959964px;}
.y2e{bottom:862.222701px;}
.ya3{bottom:865.560450px;}
.y1bc{bottom:865.560873px;}
.y17e{bottom:868.350450px;}
.y9d{bottom:869.070450px;}
.yd0{bottom:869.791032px;}
.ya4{bottom:870.330450px;}
.ya2{bottom:870.330675px;}
.y9f{bottom:877.800741px;}
.ya1{bottom:878.610010px;}
.y1bb{bottom:879.691458px;}
.y9{bottom:879.779532px;}
.y114{bottom:883.018695px;}
.y145{bottom:883.733655px;}
.y1d1{bottom:883.912269px;}
.ycf{bottom:887.610909px;}
.y1ba{bottom:893.820846px;}
.y113{bottom:897.149280px;}
.y144{bottom:901.284186px;}
.y1d0{bottom:901.462800px;}
.y9c{bottom:905.877669px;}
.y1b9{bottom:907.951431px;}
.y79{bottom:908.218749px;}
.yc3{bottom:910.650898px;}
.y112{bottom:911.279865px;}
.yc6{bottom:912.090548px;}
.yc9{bottom:912.450528px;}
.y8{bottom:915.329991px;}
.y143{bottom:918.834717px;}
.y1cf{bottom:919.013331px;}
.ycb{bottom:920.461126px;}
.yc8{bottom:920.729804px;}
.yc2{bottom:922.260450px;}
.y9b{bottom:923.428200px;}
.yc5{bottom:925.050111px;}
.yce{bottom:925.230450px;}
.ycc{bottom:925.230878px;}
.y111{bottom:925.410450px;}
.y78{bottom:925.769280px;}
.yca{bottom:929.820768px;}
.y1b8{bottom:931.081062px;}
.yc7{bottom:933.780363px;}
.ycd{bottom:934.590450px;}
.yc4{bottom:935.130374px;}
.y142{bottom:936.385248px;}
.y1ce{bottom:936.563862px;}
.y17d{bottom:936.833484px;}
.y9a{bottom:940.978731px;}
.y110{bottom:941.430450px;}
.y77{bottom:943.319811px;}
.y1b7{bottom:945.209064px;}
.y10a{bottom:948.902862px;}
.y141{bottom:953.935779px;}
.y1cd{bottom:954.114393px;}
.y17c{bottom:954.384015px;}
.y7{bottom:957.630450px;}
.y99{bottom:958.529262px;}
.yc1{bottom:958.979388px;}
.y1b6{bottom:959.339649px;}
.y109{bottom:959.612305px;}
.y76{bottom:960.870342px;}
.y140{bottom:971.486310px;}
.y1cc{bottom:971.664924px;}
.y17b{bottom:971.934546px;}
.y1b5{bottom:973.470234px;}
.yfe{bottom:974.100450px;}
.y6{bottom:975.180450px;}
.y98{bottom:976.079793px;}
.yc0{bottom:976.529919px;}
.y75{bottom:978.420873px;}
.y10f{bottom:982.380450px;}
.y13f{bottom:989.036841px;}
.y1cb{bottom:989.215455px;}
.y17a{bottom:989.485077px;}
.yff{bottom:990.660723px;}
.y5{bottom:992.730450px;}
.y97{bottom:993.630324px;}
.ybf{bottom:994.080450px;}
.y1b4{bottom:996.599865px;}
.y10e{bottom:998.490450px;}
.y6c{bottom:1006.409874px;}
.y1ca{bottom:1006.765986px;}
.y100{bottom:1007.310661px;}
.y6e{bottom:1009.920162px;}
.y1b3{bottom:1010.730072px;}
.y96{bottom:1011.180855px;}
.y10d{bottom:1015.050450px;}
.y68{bottom:1015.140450px;}
.y13e{bottom:1015.587336px;}
.y179{bottom:1016.035572px;}
.ybe{bottom:1021.080450px;}
.y4{bottom:1022.160450px;}
.y101{bottom:1023.330978px;}
.y1b2{bottom:1024.860657px;}
.y69{bottom:1025.669946px;}
.y6f{bottom:1027.020162px;}
.y10b{bottom:1027.020450px;}
.y73{bottom:1030.980450px;}
.y10c{bottom:1031.700450px;}
.y13d{bottom:1033.137867px;}
.y1c9{bottom:1033.585518px;}
.y178{bottom:1033.586103px;}
.y74{bottom:1035.750450px;}
.y72{bottom:1035.750738px;}
.y8f{bottom:1038.450828px;}
.y6a{bottom:1038.630378px;}
.y1b1{bottom:1038.991242px;}
.y102{bottom:1039.980916px;}
.y91{bottom:1041.960383px;}
.y70{bottom:1044.120162px;}
.y94{bottom:1045.920450px;}
.y8e{bottom:1049.430450px;}
.y95{bottom:1050.690450px;}
.y93{bottom:1050.690675px;}
.y1c8{bottom:1051.136049px;}
.y177{bottom:1051.136634px;}
.y6b{bottom:1051.679730px;}
.y103{bottom:1056.541189px;}
.y90{bottom:1058.160741px;}
.y92{bottom:1058.970010px;}
.y13c{bottom:1059.688362px;}
.y6d{bottom:1060.410306px;}
.y71{bottom:1061.220162px;}
.y1b0{bottom:1062.120873px;}
.y1c7{bottom:1068.686580px;}
.y176{bottom:1068.687165px;}
.ybd{bottom:1068.688326px;}
.y3{bottom:1072.558956px;}
.y104{bottom:1073.191126px;}
.y1af{bottom:1076.251458px;}
.y8d{bottom:1086.235911px;}
.y1c6{bottom:1086.237111px;}
.y175{bottom:1086.237696px;}
.ybc{bottom:1086.238857px;}
.y67{bottom:1086.239919px;}
.y105{bottom:1089.751400px;}
.y1ae{bottom:1099.381089px;}
.y8c{bottom:1103.786442px;}
.y1c5{bottom:1103.787642px;}
.y174{bottom:1103.788227px;}
.y66{bottom:1103.789388px;}
.y106{bottom:1105.861382px;}
.y2{bottom:1107.030450px;}
.y1ad{bottom:1113.511674px;}
.y8b{bottom:1121.336973px;}
.y1c4{bottom:1121.338173px;}
.y173{bottom:1121.338758px;}
.y65{bottom:1121.339919px;}
.y107{bottom:1122.421655px;}
.y1ac{bottom:1127.641062px;}
.y8a{bottom:1138.887504px;}
.y1c3{bottom:1138.888704px;}
.y172{bottom:1138.889289px;}
.y64{bottom:1138.890450px;}
.y108{bottom:1138.981928px;}
.y1ab{bottom:1141.770450px;}
.y1{bottom:1189.740450px;}
.h1c{height:26.404207px;}
.h19{height:26.487111px;}
.h13{height:26.595427px;}
.hd{height:27.167838px;}
.h4{height:32.425313px;}
.h16{height:39.931172px;}
.h22{height:41.106319px;}
.h21{height:41.208947px;}
.h23{height:41.445492px;}
.h25{height:41.628270px;}
.h26{height:41.632302px;}
.h24{height:41.634642px;}
.h7{height:41.743477px;}
.h18{height:45.448979px;}
.h12{height:45.635625px;}
.hc{height:46.617391px;}
.h15{height:48.254063px;}
.h1{height:49.937344px;}
.h5{height:50.139141px;}
.h10{height:50.141265px;}
.hf{height:50.143389px;}
.h1b{height:50.320889px;}
.h17{height:50.478170px;}
.h11{height:50.685469px;}
.hb{height:51.775873px;}
.h1e{height:53.182746px;}
.h20{height:53.997701px;}
.h1d{height:54.750825px;}
.h1a{height:56.619141px;}
.h1f{height:58.059141px;}
.he{height:60.579141px;}
.h6{height:60.589687px;}
.h14{height:63.459141px;}
.h3{height:73.051172px;}
.ha{height:75.093750px;}
.h8{height:84.535312px;}
.h9{height:87.484219px;}
.h2{height:120.816562px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x16{left:63.810000px;}
.x1{left:85.140000px;}
.x21{left:95.670576px;}
.x20{left:97.830000px;}
.x4b{left:101.880309px;}
.x1f{left:105.750000px;}
.x4a{left:107.640000px;}
.x4f{left:110.609766px;}
.x37{left:114.930000px;}
.x9{left:117.000000px;}
.x3d{left:119.070049px;}
.x40{left:123.570415px;}
.x23{left:127.619136px;}
.x3f{left:129.330000px;}
.x3{left:136.980288px;}
.x41{left:140.221302px;}
.x45{left:148.950333px;}
.x39{left:157.949029px;}
.x3e{left:162.630000px;}
.x1e{left:166.325904px;}
.x1b{left:170.641944px;}
.x18{left:177.569496px;}
.x7{left:181.530000px;}
.x3c{left:190.529319px;}
.x2{left:215.190000px;}
.x4{left:217.530000px;}
.x5{left:219.870000px;}
.x3b{left:221.399499px;}
.x6{left:228.870000px;}
.x42{left:237.421348px;}
.x3a{left:260.639507px;}
.x38{left:265.590000px;}
.x51{left:291.510000px;}
.x1a{left:304.830432px;}
.x19{left:309.959064px;}
.x1c{left:317.251872px;}
.x4c{left:321.660000px;}
.x1d{left:329.224608px;}
.x43{left:333.000000px;}
.x17{left:336.330000px;}
.x24{left:401.490000px;}
.x4d{left:404.820000px;}
.x22{left:411.840000px;}
.x44{left:425.610000px;}
.x25{left:448.559964px;}
.x8{left:457.200540px;}
.xa{left:469.889370px;}
.x4e{left:474.029766px;}
.x2e{left:480.420711px;}
.x2d{left:482.490000px;}
.x2c{left:490.410000px;}
.xb{left:501.749964px;}
.x15{left:503.910000px;}
.x47{left:508.049803px;}
.x14{left:510.750000px;}
.x36{left:512.370333px;}
.x46{left:513.810000px;}
.x48{left:524.699492px;}
.x2b{left:529.111974px;}
.x34{left:532.262915px;}
.x29{left:533.429435px;}
.x32{left:536.581739px;}
.x27{left:540.359990px;}
.x30{left:543.510931px;}
.x13{left:569.883932px;}
.x10{left:574.382260px;}
.xd{left:581.400153px;}
.x28{left:596.519686px;}
.x31{left:599.310953px;}
.x2a{left:620.280029px;}
.x33{left:622.711621px;}
.x2f{left:630.540000px;}
.x26{left:635.400000px;}
.xf{left:718.200165px;}
.xe{left:721.169704px;}
.x12{left:724.234268px;}
.x11{left:728.012919px;}
.xc{left:739.170000px;}
.x50{left:755.909850px;}
.x35{left:788.040000px;}
.x49{left:810.630000px;}
@media print{
.v8{vertical-align:-51.202028pt;}
.v6{vertical-align:-31.041036pt;}
.v2{vertical-align:-24.000000pt;}
.vb{vertical-align:-16.960000pt;}
.va{vertical-align:-11.522404pt;}
.v4{vertical-align:-7.996224pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.760000pt;}
.vc{vertical-align:7.040000pt;}
.v3{vertical-align:9.280000pt;}
.v5{vertical-align:11.840000pt;}
.v9{vertical-align:16.958948pt;}
.ve{vertical-align:18.567008pt;}
.vd{vertical-align:24.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls65{letter-spacing:-0.851316pt;}
.ls5e{letter-spacing:-0.849930pt;}
.ls7f{letter-spacing:-0.586356pt;}
.ls62{letter-spacing:-0.500980pt;}
.ls5c{letter-spacing:-0.498719pt;}
.ls63{letter-spacing:-0.490470pt;}
.ls5d{letter-spacing:-0.488183pt;}
.ls64{letter-spacing:-0.486967pt;}
.ls58{letter-spacing:-0.096192pt;}
.ls93{letter-spacing:-0.095616pt;}
.ls92{letter-spacing:-0.093632pt;}
.ls2e{letter-spacing:-0.090848pt;}
.ls7d{letter-spacing:-0.085504pt;}
.ls8d{letter-spacing:-0.085120pt;}
.ls22{letter-spacing:-0.080864pt;}
.ls67{letter-spacing:-0.080160pt;}
.ls45{letter-spacing:-0.074816pt;}
.ls26{letter-spacing:-0.069472pt;}
.ls8c{letter-spacing:-0.068096pt;}
.ls2c{letter-spacing:-0.064128pt;}
.ls41{letter-spacing:-0.058784pt;}
.ls2a{letter-spacing:-0.053440pt;}
.ls81{letter-spacing:-0.052192pt;}
.ls82{letter-spacing:-0.051072pt;}
.ls44{letter-spacing:-0.048096pt;}
.ls8b{letter-spacing:-0.046816pt;}
.ls28{letter-spacing:-0.042752pt;}
.ls85{letter-spacing:-0.042560pt;}
.ls84{letter-spacing:-0.038304pt;}
.ls27{letter-spacing:-0.037408pt;}
.ls8a{letter-spacing:-0.034048pt;}
.ls2f{letter-spacing:-0.032064pt;}
.ls86{letter-spacing:-0.029792pt;}
.ls57{letter-spacing:-0.026720pt;}
.ls23{letter-spacing:-0.025600pt;}
.ls87{letter-spacing:-0.025536pt;}
.ls2d{letter-spacing:-0.021376pt;}
.ls46{letter-spacing:-0.021280pt;}
.ls83{letter-spacing:-0.018592pt;}
.ls89{letter-spacing:-0.017024pt;}
.ls2b{letter-spacing:-0.016032pt;}
.ls91{letter-spacing:-0.012768pt;}
.ls80{letter-spacing:-0.010688pt;}
.ls88{letter-spacing:-0.008512pt;}
.ls25{letter-spacing:-0.005344pt;}
.ls90{letter-spacing:-0.004256pt;}
.ls40{letter-spacing:-0.003456pt;}
.ls21{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.003840pt;}
.ls0{letter-spacing:0.004256pt;}
.ls9{letter-spacing:0.005344pt;}
.ls4f{letter-spacing:0.007680pt;}
.ls1f{letter-spacing:0.008512pt;}
.ls4d{letter-spacing:0.008992pt;}
.lsc{letter-spacing:0.010688pt;}
.lsd{letter-spacing:0.016032pt;}
.ls73{letter-spacing:0.017024pt;}
.ls31{letter-spacing:0.019200pt;}
.ls8e{letter-spacing:0.021280pt;}
.ls5{letter-spacing:0.021376pt;}
.ls1{letter-spacing:0.025600pt;}
.lse{letter-spacing:0.026720pt;}
.ls32{letter-spacing:0.029792pt;}
.ls55{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.032064pt;}
.ls3e{letter-spacing:0.037280pt;}
.ls24{letter-spacing:0.037408pt;}
.ls6e{letter-spacing:0.042560pt;}
.ls20{letter-spacing:0.042624pt;}
.ls14{letter-spacing:0.042752pt;}
.ls10{letter-spacing:0.044736pt;}
.ls43{letter-spacing:0.044800pt;}
.ls78{letter-spacing:0.046816pt;}
.lsb{letter-spacing:0.048096pt;}
.ls6b{letter-spacing:0.051072pt;}
.ls1a{letter-spacing:0.053440pt;}
.ls36{letter-spacing:0.055328pt;}
.ls18{letter-spacing:0.058784pt;}
.ls79{letter-spacing:0.059584pt;}
.ls38{letter-spacing:0.063840pt;}
.ls3{letter-spacing:0.064128pt;}
.ls30{letter-spacing:0.067104pt;}
.ls52{letter-spacing:0.068096pt;}
.ls2{letter-spacing:0.069472pt;}
.ls37{letter-spacing:0.072352pt;}
.ls59{letter-spacing:0.074560pt;}
.lsf{letter-spacing:0.074816pt;}
.ls51{letter-spacing:0.076608pt;}
.ls6{letter-spacing:0.080160pt;}
.ls3f{letter-spacing:0.080864pt;}
.ls53{letter-spacing:0.085120pt;}
.ls15{letter-spacing:0.085504pt;}
.ls77{letter-spacing:0.089376pt;}
.lsa{letter-spacing:0.090848pt;}
.ls39{letter-spacing:0.093632pt;}
.ls7{letter-spacing:0.096192pt;}
.ls75{letter-spacing:0.097888pt;}
.ls13{letter-spacing:0.101536pt;}
.ls70{letter-spacing:0.102144pt;}
.ls7c{letter-spacing:0.106400pt;}
.ls8{letter-spacing:0.106880pt;}
.ls72{letter-spacing:0.110656pt;}
.ls12{letter-spacing:0.111840pt;}
.ls16{letter-spacing:0.112224pt;}
.ls1e{letter-spacing:0.117568pt;}
.ls4e{letter-spacing:0.122688pt;}
.ls1c{letter-spacing:0.122912pt;}
.ls71{letter-spacing:0.123424pt;}
.ls8f{letter-spacing:0.127680pt;}
.ls56{letter-spacing:0.133600pt;}
.ls19{letter-spacing:0.144288pt;}
.ls74{letter-spacing:0.148960pt;}
.ls6f{letter-spacing:0.153216pt;}
.ls29{letter-spacing:0.156576pt;}
.ls76{letter-spacing:0.157472pt;}
.ls33{letter-spacing:0.158304pt;}
.ls34{letter-spacing:0.159104pt;}
.ls1d{letter-spacing:0.160320pt;}
.ls42{letter-spacing:0.161728pt;}
.ls7a{letter-spacing:0.178752pt;}
.ls6c{letter-spacing:0.195776pt;}
.ls66{letter-spacing:0.507987pt;}
.ls5f{letter-spacing:0.512768pt;}
.ls54{letter-spacing:0.602578pt;}
.ls50{letter-spacing:0.607594pt;}
.ls6a{letter-spacing:0.791228pt;}
.ls60{letter-spacing:0.921384pt;}
.ls5a{letter-spacing:0.927196pt;}
.ls69{letter-spacing:1.357376pt;}
.ls4b{letter-spacing:3.601856pt;}
.ls94{letter-spacing:10.594976pt;}
.ls68{letter-spacing:11.922464pt;}
.ls7b{letter-spacing:12.806304pt;}
.ls17{letter-spacing:20.608000pt;}
.ls6d{letter-spacing:34.248032pt;}
.ls11{letter-spacing:36.549312pt;}
.ls48{letter-spacing:69.503989pt;}
.ls7e{letter-spacing:76.784413pt;}
.ls61{letter-spacing:78.082888pt;}
.ls5b{letter-spacing:78.288370pt;}
.ls3c{letter-spacing:256.975015pt;}
.ls3a{letter-spacing:284.814096pt;}
.ls47{letter-spacing:346.626577pt;}
.ls49{letter-spacing:360.751441pt;}
.ls4a{letter-spacing:414.458667pt;}
.ls3d{letter-spacing:530.506767pt;}
.ls3b{letter-spacing:544.266767pt;}
.ls1b{letter-spacing:835.733828pt;}
.ls35{letter-spacing:851.356160pt;}
.ws9c{word-spacing:-88.052026pt;}
.ws9e{word-spacing:-87.822228pt;}
.wsf7{word-spacing:-86.604114pt;}
.ws4{word-spacing:-27.228147pt;}
.ws58{word-spacing:-26.654720pt;}
.ws5a{word-spacing:-26.545705pt;}
.ws2{word-spacing:-18.796576pt;}
.ws3{word-spacing:-16.000000pt;}
.wsf6{word-spacing:-13.493600pt;}
.ws1{word-spacing:-13.424128pt;}
.ws9a{word-spacing:-13.360000pt;}
.ws5{word-spacing:-12.421600pt;}
.ws59{word-spacing:-12.160000pt;}
.ws5b{word-spacing:-12.110267pt;}
.ws99{word-spacing:-12.072533pt;}
.wsf8{word-spacing:-10.835776pt;}
.wsfc{word-spacing:-10.818752pt;}
.wsf9{word-spacing:-10.801728pt;}
.ws16f{word-spacing:-10.767680pt;}
.ws16c{word-spacing:-10.682560pt;}
.wsfb{word-spacing:-10.640000pt;}
.wsfe{word-spacing:-10.559136pt;}
.wsfd{word-spacing:-10.554880pt;}
.ws16d{word-spacing:-10.546368pt;}
.ws9b{word-spacing:-10.371251pt;}
.ws9d{word-spacing:-10.341919pt;}
.ws0{word-spacing:-8.640000pt;}
.ws57{word-spacing:-8.636544pt;}
.wsfa{word-spacing:-6.621408pt;}
.ws16e{word-spacing:-6.544384pt;}
.ws119{word-spacing:-1.345794pt;}
.wsc9{word-spacing:-1.089545pt;}
.wsc2{word-spacing:-1.000950pt;}
.wscc{word-spacing:-0.994954pt;}
.wsbf{word-spacing:-0.309065pt;}
.wsc8{word-spacing:-0.304792pt;}
.ws67{word-spacing:-0.242592pt;}
.ws145{word-spacing:-0.238336pt;}
.ws132{word-spacing:-0.234080pt;}
.ws149{word-spacing:-0.229824pt;}
.ws136{word-spacing:-0.204288pt;}
.ws164{word-spacing:-0.187264pt;}
.ws15f{word-spacing:-0.183008pt;}
.ws6d{word-spacing:-0.174496pt;}
.wscd{word-spacing:-0.170240pt;}
.ws144{word-spacing:-0.161728pt;}
.wsc7{word-spacing:-0.157472pt;}
.wsb6{word-spacing:-0.156576pt;}
.ws45{word-spacing:-0.149120pt;}
.ws167{word-spacing:-0.148960pt;}
.ws17d{word-spacing:-0.144704pt;}
.ws15a{word-spacing:-0.140448pt;}
.ws11c{word-spacing:-0.131936pt;}
.ws155{word-spacing:-0.127680pt;}
.ws185{word-spacing:-0.126752pt;}
.ws86{word-spacing:-0.119296pt;}
.ws8{word-spacing:-0.117216pt;}
.ws14d{word-spacing:-0.063840pt;}
.ws96{word-spacing:-0.059584pt;}
.ws148{word-spacing:-0.055328pt;}
.ws6a{word-spacing:-0.044800pt;}
.ws53{word-spacing:-0.042752pt;}
.ws60{word-spacing:-0.037408pt;}
.ws154{word-spacing:-0.034048pt;}
.wse7{word-spacing:-0.032064pt;}
.wsa2{word-spacing:-0.032000pt;}
.ws9{word-spacing:-0.025600pt;}
.wsb5{word-spacing:-0.021376pt;}
.ws48{word-spacing:-0.019200pt;}
.wsf{word-spacing:-0.016032pt;}
.ws5c{word-spacing:-0.012768pt;}
.ws3d{word-spacing:-0.010688pt;}
.ws52{word-spacing:-0.005344pt;}
.ws7{word-spacing:0.000000pt;}
.wsca{word-spacing:0.003503pt;}
.ws25{word-spacing:0.005344pt;}
.wsb{word-spacing:0.010688pt;}
.ws6{word-spacing:0.012768pt;}
.wsc0{word-spacing:0.014048pt;}
.wsc{word-spacing:0.016032pt;}
.wsa{word-spacing:0.025600pt;}
.ws11a{word-spacing:0.031790pt;}
.ws10e{word-spacing:0.032064pt;}
.ws35{word-spacing:0.037408pt;}
.wsd{word-spacing:0.048096pt;}
.ws94{word-spacing:0.053440pt;}
.wse{word-spacing:0.058784pt;}
.wsdf{word-spacing:0.074816pt;}
.ws122{word-spacing:0.090848pt;}
.ws78{word-spacing:0.101536pt;}
.wsd6{word-spacing:0.106880pt;}
.ws44{word-spacing:0.112224pt;}
.ws105{word-spacing:0.117568pt;}
.ws27{word-spacing:0.122912pt;}
.ws197{word-spacing:0.288576pt;}
.ws120{word-spacing:0.299264pt;}
.ws77{word-spacing:0.342016pt;}
.wse8{word-spacing:0.358048pt;}
.wsc1{word-spacing:0.361747pt;}
.wscb{word-spacing:0.364349pt;}
.ws109{word-spacing:0.448896pt;}
.ws157{word-spacing:0.570304pt;}
.ws171{word-spacing:0.817152pt;}
.ws11{word-spacing:0.935200pt;}
.ws87{word-spacing:0.945888pt;}
.ws5e{word-spacing:0.951232pt;}
.ws4a{word-spacing:0.956576pt;}
.ws114{word-spacing:1.036736pt;}
.ws19b{word-spacing:1.042080pt;}
.ws32{word-spacing:1.095520pt;}
.ws17a{word-spacing:1.132096pt;}
.ws12f{word-spacing:1.191680pt;}
.ws195{word-spacing:1.277216pt;}
.ws83{word-spacing:1.287904pt;}
.wse2{word-spacing:1.303936pt;}
.ws111{word-spacing:1.314624pt;}
.ws17{word-spacing:1.325312pt;}
.wsb4{word-spacing:1.336000pt;}
.ws65{word-spacing:1.357376pt;}
.ws192{word-spacing:1.400128pt;}
.ws17e{word-spacing:1.502368pt;}
.ws160{word-spacing:1.566208pt;}
.ws37{word-spacing:1.587168pt;}
.ws10c{word-spacing:1.592512pt;}
.ws19e{word-spacing:1.619232pt;}
.ws1d{word-spacing:1.645952pt;}
.ws19d{word-spacing:1.661984pt;}
.ws16{word-spacing:1.667328pt;}
.ws1e{word-spacing:1.678016pt;}
.wse0{word-spacing:1.704736pt;}
.ws134{word-spacing:1.736448pt;}
.ws135{word-spacing:1.770496pt;}
.ws41{word-spacing:1.918496pt;}
.wse4{word-spacing:1.939872pt;}
.ws198{word-spacing:1.977280pt;}
.ws127{word-spacing:2.239136pt;}
.ws92{word-spacing:2.308608pt;}
.ws93{word-spacing:2.324640pt;}
.ws9f{word-spacing:2.362048pt;}
.wsd0{word-spacing:2.372736pt;}
.ws166{word-spacing:2.396128pt;}
.ws33{word-spacing:2.565120pt;}
.ws80{word-spacing:2.581152pt;}
.wsf2{word-spacing:2.613216pt;}
.ws126{word-spacing:2.661312pt;}
.ws1f{word-spacing:2.853696pt;}
.ws10{word-spacing:2.891104pt;}
.wsf1{word-spacing:2.901792pt;}
.wsb1{word-spacing:2.928512pt;}
.ws14a{word-spacing:3.128160pt;}
.ws8c{word-spacing:3.190368pt;}
.wsa7{word-spacing:3.195712pt;}
.ws36{word-spacing:3.201056pt;}
.ws106{word-spacing:3.254496pt;}
.ws18f{word-spacing:3.281216pt;}
.ws18e{word-spacing:3.291904pt;}
.ws116{word-spacing:3.313280pt;}
.ws6b{word-spacing:3.340000pt;}
.wsde{word-spacing:3.350688pt;}
.ws180{word-spacing:3.362240pt;}
.wsf5{word-spacing:3.500320pt;}
.wsda{word-spacing:3.516352pt;}
.ws19a{word-spacing:3.527040pt;}
.ws1a0{word-spacing:3.532384pt;}
.wseb{word-spacing:3.543072pt;}
.ws10b{word-spacing:3.548416pt;}
.ws10a{word-spacing:3.596512pt;}
.wsa6{word-spacing:3.628576pt;}
.ws17f{word-spacing:3.660160pt;}
.ws95{word-spacing:3.677184pt;}
.ws5d{word-spacing:3.842336pt;}
.ws12a{word-spacing:3.869056pt;}
.ws7f{word-spacing:3.879744pt;}
.wsa4{word-spacing:3.959904pt;}
.ws2e{word-spacing:3.986624pt;}
.ws16b{word-spacing:3.992128pt;}
.ws14e{word-spacing:4.115552pt;}
.ws73{word-spacing:4.146944pt;}
.ws42{word-spacing:4.195040pt;}
.wsdd{word-spacing:4.200384pt;}
.ws125{word-spacing:4.211072pt;}
.wsdc{word-spacing:4.317952pt;}
.ws47{word-spacing:4.456896pt;}
.wsbd{word-spacing:4.467584pt;}
.wsb3{word-spacing:4.472928pt;}
.ws22{word-spacing:4.494304pt;}
.ws124{word-spacing:4.531712pt;}
.wsb7{word-spacing:4.547744pt;}
.ws13d{word-spacing:4.570944pt;}
.ws151{word-spacing:4.753952pt;}
.ws18a{word-spacing:4.782880pt;}
.ws128{word-spacing:4.788224pt;}
.wscf{word-spacing:4.841664pt;}
.ws13b{word-spacing:4.928448pt;}
.ws13c{word-spacing:5.022080pt;}
.ws12e{word-spacing:5.108864pt;}
.ws31{word-spacing:5.114208pt;}
.ws89{word-spacing:5.124896pt;}
.ws79{word-spacing:5.135584pt;}
.ws7a{word-spacing:5.156960pt;}
.ws4b{word-spacing:5.183680pt;}
.wsce{word-spacing:5.194368pt;}
.ws3c{word-spacing:5.445536pt;}
.wsf3{word-spacing:5.493632pt;}
.wsf4{word-spacing:5.589824pt;}
.ws140{word-spacing:5.664736pt;}
.ws38{word-spacing:5.728768pt;}
.ws133{word-spacing:5.732832pt;}
.wsad{word-spacing:5.739456pt;}
.wsb8{word-spacing:5.750144pt;}
.wsb2{word-spacing:5.760832pt;}
.ws113{word-spacing:5.766176pt;}
.wsbb{word-spacing:5.771520pt;}
.ws11d{word-spacing:5.776864pt;}
.ws129{word-spacing:5.798240pt;}
.ws19{word-spacing:5.803584pt;}
.ws2d{word-spacing:5.819616pt;}
.ws91{word-spacing:5.915808pt;}
.wsac{word-spacing:5.937184pt;}
.ws13f{word-spacing:6.043520pt;}
.ws7e{word-spacing:6.065440pt;}
.wse5{word-spacing:6.076128pt;}
.ws20{word-spacing:6.081472pt;}
.wsb9{word-spacing:6.086816pt;}
.ws18{word-spacing:6.097504pt;}
.wse1{word-spacing:6.113536pt;}
.ws90{word-spacing:6.161632pt;}
.ws2c{word-spacing:6.177664pt;}
.ws13a{word-spacing:6.209504pt;}
.ws88{word-spacing:6.402112pt;}
.ws12b{word-spacing:6.450208pt;}
.wsab{word-spacing:6.460896pt;}
.wsba{word-spacing:6.476928pt;}
.ws142{word-spacing:6.537216pt;}
.ws6c{word-spacing:6.567008pt;}
.ws139{word-spacing:6.575520pt;}
.ws143{word-spacing:6.669152pt;}
.ws170{word-spacing:6.681920pt;}
.ws2a{word-spacing:6.696032pt;}
.wsb0{word-spacing:6.717408pt;}
.wsaa{word-spacing:6.765504pt;}
.ws188{word-spacing:6.776192pt;}
.ws187{word-spacing:6.786880pt;}
.ws76{word-spacing:6.845664pt;}
.ws141{word-spacing:6.860672pt;}
.ws3b{word-spacing:7.016672pt;}
.ws29{word-spacing:7.022016pt;}
.ws115{word-spacing:7.032704pt;}
.ws85{word-spacing:7.038048pt;}
.ws112{word-spacing:7.043392pt;}
.ws10f{word-spacing:7.080800pt;}
.ws5f{word-spacing:7.086144pt;}
.ws121{word-spacing:7.096832pt;}
.ws186{word-spacing:7.102176pt;}
.wsbc{word-spacing:7.155616pt;}
.ws43{word-spacing:7.364032pt;}
.ws118{word-spacing:7.374720pt;}
.wsea{word-spacing:7.396096pt;}
.ws23{word-spacing:7.412128pt;}
.wsae{word-spacing:7.422816pt;}
.ws24{word-spacing:7.433504pt;}
.wsaf{word-spacing:7.454880pt;}
.ws34{word-spacing:7.460224pt;}
.wsa3{word-spacing:7.668640pt;}
.ws196{word-spacing:7.673984pt;}
.ws117{word-spacing:7.727424pt;}
.wse9{word-spacing:7.743456pt;}
.ws72{word-spacing:7.754144pt;}
.ws26{word-spacing:7.796896pt;}
.ws69{word-spacing:7.848064pt;}
.ws15{word-spacing:8.069440pt;}
.ws21{word-spacing:8.149600pt;}
.ws68{word-spacing:8.184288pt;}
.ws7d{word-spacing:8.288544pt;}
.ws3a{word-spacing:8.320608pt;}
.ws14{word-spacing:8.352672pt;}
.ws19f{word-spacing:8.384736pt;}
.ws146{word-spacing:8.588608pt;}
.ws108{word-spacing:8.625216pt;}
.ws13{word-spacing:8.630560pt;}
.ws100{word-spacing:8.646592pt;}
.ws64{word-spacing:8.700032pt;}
.wsd5{word-spacing:8.801568pt;}
.ws2f{word-spacing:8.951200pt;}
.ws63{word-spacing:8.988608pt;}
.wsdb{word-spacing:9.009984pt;}
.ws12d{word-spacing:9.074112pt;}
.ws172{word-spacing:9.137632pt;}
.ws173{word-spacing:9.222752pt;}
.ws168{word-spacing:9.244032pt;}
.ws102{word-spacing:9.245120pt;}
.ws4d{word-spacing:9.266496pt;}
.ws104{word-spacing:9.271840pt;}
.ws4c{word-spacing:9.298560pt;}
.ws14c{word-spacing:9.418528pt;}
.ws103{word-spacing:9.426816pt;}
.ws14b{word-spacing:9.439808pt;}
.ws101{word-spacing:9.581792pt;}
.ws46{word-spacing:9.715392pt;}
.wsd7{word-spacing:9.747456pt;}
.ws82{word-spacing:9.913120pt;}
.ws18c{word-spacing:9.939840pt;}
.ws2b{word-spacing:9.955872pt;}
.ws4f{word-spacing:9.971904pt;}
.ws50{word-spacing:9.998624pt;}
.wsa9{word-spacing:10.046720pt;}
.wsa8{word-spacing:10.276512pt;}
.ws18b{word-spacing:10.308576pt;}
.ws7c{word-spacing:10.607840pt;}
.ws123{word-spacing:10.688000pt;}
.wsc6{word-spacing:10.712352pt;}
.ws51{word-spacing:10.859008pt;}
.ws8f{word-spacing:10.869696pt;}
.wsa1{word-spacing:10.891072pt;}
.wsff{word-spacing:10.901760pt;}
.wsc5{word-spacing:11.035808pt;}
.wsd1{word-spacing:11.217056pt;}
.ws107{word-spacing:11.254464pt;}
.ws1c{word-spacing:11.265152pt;}
.ws12{word-spacing:11.275840pt;}
.ws17c{word-spacing:11.333728pt;}
.ws130{word-spacing:11.363520pt;}
.ws131{word-spacing:11.372032pt;}
.ws17b{word-spacing:11.376288pt;}
.ws66{word-spacing:11.633888pt;}
.wsc3{word-spacing:11.682720pt;}
.ws138{word-spacing:11.708256pt;}
.ws8e{word-spacing:11.831616pt;}
.ws10d{word-spacing:11.842304pt;}
.ws110{word-spacing:11.852992pt;}
.wsc4{word-spacing:12.010432pt;}
.ws137{word-spacing:12.116832pt;}
.wsd4{word-spacing:12.168288pt;}
.ws11f{word-spacing:12.232416pt;}
.ws15b{word-spacing:12.346656pt;}
.ws11e{word-spacing:12.547712pt;}
.ws49{word-spacing:12.809568pt;}
.ws71{word-spacing:12.857664pt;}
.wse3{word-spacing:12.921792pt;}
.wsa0{word-spacing:13.146240pt;}
.ws1b{word-spacing:13.151584pt;}
.ws11b{word-spacing:13.291488pt;}
.ws74{word-spacing:13.514976pt;}
.ws1a{word-spacing:13.525664pt;}
.wsbe{word-spacing:13.734080pt;}
.ws56{word-spacing:13.755456pt;}
.ws40{word-spacing:14.134880pt;}
.ws12c{word-spacing:14.199008pt;}
.ws3f{word-spacing:14.455520pt;}
.wsd8{word-spacing:14.679968pt;}
.wsd9{word-spacing:14.722720pt;}
.wse6{word-spacing:14.728064pt;}
.ws62{word-spacing:14.856320pt;}
.ws70{word-spacing:15.032672pt;}
.ws4e{word-spacing:15.048704pt;}
.ws153{word-spacing:15.193920pt;}
.ws152{word-spacing:15.198176pt;}
.wsef{word-spacing:15.353312pt;}
.ws191{word-spacing:15.465536pt;}
.ws150{word-spacing:15.500352pt;}
.ws14f{word-spacing:15.513120pt;}
.ws165{word-spacing:15.645056pt;}
.ws39{word-spacing:15.668608pt;}
.ws190{word-spacing:15.738080pt;}
.ws6f{word-spacing:15.764800pt;}
.ws55{word-spacing:15.962528pt;}
.wsd3{word-spacing:15.978560pt;}
.ws8d{word-spacing:15.994592pt;}
.ws54{word-spacing:16.015968pt;}
.ws6e{word-spacing:16.042688pt;}
.wsd2{word-spacing:16.357984pt;}
.ws19c{word-spacing:16.363328pt;}
.ws194{word-spacing:16.384704pt;}
.ws193{word-spacing:16.710688pt;}
.ws179{word-spacing:16.900576pt;}
.ws13e{word-spacing:16.917600pt;}
.ws199{word-spacing:16.940480pt;}
.ws8b{word-spacing:16.972544pt;}
.ws174{word-spacing:17.453856pt;}
.ws175{word-spacing:17.526208pt;}
.ws158{word-spacing:18.092256pt;}
.ws159{word-spacing:18.228448pt;}
.ws189{word-spacing:18.292512pt;}
.ws75{word-spacing:18.885696pt;}
.ws15e{word-spacing:18.956224pt;}
.ws15d{word-spacing:19.007296pt;}
.ws161{word-spacing:19.037088pt;}
.ws176{word-spacing:19.096672pt;}
.ws15c{word-spacing:19.152000pt;}
.ws3e{word-spacing:19.297184pt;}
.ws28{word-spacing:19.334592pt;}
.ws178{word-spacing:20.092576pt;}
.ws177{word-spacing:20.322400pt;}
.ws163{word-spacing:20.326656pt;}
.ws162{word-spacing:20.688416pt;}
.wsf0{word-spacing:21.098112pt;}
.ws8a{word-spacing:21.750080pt;}
.ws156{word-spacing:22.680224pt;}
.ws184{word-spacing:23.203712pt;}
.ws84{word-spacing:23.353280pt;}
.ws183{word-spacing:23.625056pt;}
.ws18d{word-spacing:23.663232pt;}
.wsee{word-spacing:23.727360pt;}
.ws30{word-spacing:24.331232pt;}
.ws147{word-spacing:25.761568pt;}
.ws98{word-spacing:27.391946pt;}
.wsed{word-spacing:28.531616pt;}
.ws16a{word-spacing:28.668416pt;}
.wsec{word-spacing:28.857600pt;}
.ws169{word-spacing:29.030176pt;}
.ws182{word-spacing:34.082048pt;}
.ws181{word-spacing:34.405504pt;}
.ws61{word-spacing:188.440128pt;}
.ws97{word-spacing:382.919926pt;}
.ws7b{word-spacing:495.960608pt;}
.ws81{word-spacing:509.721408pt;}
.wsa5{word-spacing:528.265088pt;}
._2d{margin-left:-291.744841pt;}
._2e{margin-left:-235.139146pt;}
._8{margin-left:-210.267876pt;}
._2a{margin-left:-207.022587pt;}
._25{margin-left:-204.477696pt;}
._23{margin-left:-203.519488pt;}
._c{margin-left:-201.860937pt;}
._b{margin-left:-199.709516pt;}
._14{margin-left:-190.805713pt;}
._22{margin-left:-186.558720pt;}
._11{margin-left:-185.047060pt;}
._5{margin-left:-184.028488pt;}
._1a{margin-left:-182.492416pt;}
._6{margin-left:-180.187730pt;}
._4{margin-left:-175.706016pt;}
._d{margin-left:-174.165738pt;}
._13{margin-left:-170.647941pt;}
._2b{margin-left:-169.472681pt;}
._24{margin-left:-168.499732pt;}
._1d{margin-left:-165.536512pt;}
._19{margin-left:-164.252416pt;}
._1b{margin-left:-163.294208pt;}
._9{margin-left:-162.265845pt;}
._15{margin-left:-159.448626pt;}
._7{margin-left:-154.589296pt;}
._a{margin-left:-151.707485pt;}
._e{margin-left:-149.004545pt;}
._12{margin-left:-146.644441pt;}
._1c{margin-left:-144.733184pt;}
._1f{margin-left:-143.677696pt;}
._2c{margin-left:-130.215094pt;}
._16{margin-left:-87.587186pt;}
._26{margin-left:-85.956608pt;}
._34{margin-left:-77.680775pt;}
._39{margin-left:-75.993185pt;}
._10{margin-left:-61.700572pt;}
._21{margin-left:-60.800000pt;}
._1e{margin-left:-59.774565pt;}
._f{margin-left:-37.324424pt;}
._20{margin-left:-36.158976pt;}
._29{margin-left:-18.880352pt;}
._33{margin-left:-13.107182pt;}
._36{margin-left:-11.140691pt;}
._38{margin-left:-10.198635pt;}
._31{margin-left:-5.867712pt;}
._28{margin-left:-4.269856pt;}
._32{margin-left:-2.446819pt;}
._1{margin-left:-1.068800pt;}
._2{width:0.919168pt;}
._35{width:1.906574pt;}
._2f{width:3.639264pt;}
._30{width:5.718080pt;}
._3{width:10.158944pt;}
._37{width:15.436512pt;}
._27{width:27.276704pt;}
._17{width:203.520896pt;}
._18{width:413.436352pt;}
._0{width:1597.621536pt;}
.fs12{font-size:26.560000pt;}
.fsd{font-size:33.802667pt;}
.fsb{font-size:33.908800pt;}
.fs9{font-size:34.047467pt;}
.fs3{font-size:34.560000pt;}
.fs7{font-size:34.780267pt;}
.fs10{font-size:35.033600pt;}
.fsf{font-size:35.121067pt;}
.fs11{font-size:35.322667pt;}
.fs0{font-size:42.560000pt;}
.fsc{font-size:48.290133pt;}
.fsa{font-size:48.441067pt;}
.fs8{font-size:48.640000pt;}
.fs6{font-size:49.686400pt;}
.fse{font-size:51.036497pt;}
.fs4{font-size:53.440000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs1{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.yfd{bottom:109.308699pt;}
.y13b{bottom:109.862379pt;}
.y89{bottom:110.504368pt;}
.y171{bottom:110.826595pt;}
.y2d{bottom:111.700019pt;}
.y63{bottom:113.226507pt;}
.y1aa{bottom:113.779827pt;}
.y1df{bottom:116.347067pt;}
.ybb{bottom:118.107611pt;}
.yfc{bottom:121.868155pt;}
.y13a{bottom:125.462851pt;}
.y88{bottom:126.104840pt;}
.y1a9{bottom:126.340347pt;}
.y170{bottom:126.427067pt;}
.y2c{bottom:127.300491pt;}
.y62{bottom:128.826979pt;}
.yba{bottom:130.667067pt;}
.yfb{bottom:134.427611pt;}
.y1a8{bottom:138.899803pt;}
.y1de{bottom:140.907067pt;}
.y87{bottom:141.705312pt;}
.y2b{bottom:142.900963pt;}
.yfa{bottom:146.987067pt;}
.yb9{bottom:148.907067pt;}
.y139{bottom:149.063291pt;}
.y16f{bottom:150.987067pt;}
.y1a7{bottom:151.460323pt;}
.y86{bottom:157.305784pt;}
.y54{bottom:158.024570pt;}
.y4e{bottom:158.025812pt;}
.y2a{bottom:158.501435pt;}
.y5b{bottom:161.224374pt;}
.y56{bottom:161.225617pt;}
.yf9{bottom:161.227067pt;}
.y138{bottom:164.663763pt;}
.y50{bottom:165.945825pt;}
.y4a{bottom:165.947067pt;}
.yf3{bottom:167.867728pt;}
.y1a6{bottom:172.019995pt;}
.y85{bottom:172.906256pt;}
.y51{bottom:175.545237pt;}
.y4b{bottom:175.546479pt;}
.y5c{bottom:176.743921pt;}
.y57{bottom:176.745164pt;}
.yf2{bottom:177.307393pt;}
.y137{bottom:180.264235pt;}
.y60{bottom:180.347067pt;}
.y29{bottom:182.101875pt;}
.y1dd{bottom:182.827067pt;}
.y1a5{bottom:184.580515pt;}
.y5f{bottom:184.662691pt;}
.y5a{bottom:184.663934pt;}
.y61{bottom:184.667067pt;}
.y52{bottom:187.304766pt;}
.y4c{bottom:187.306008pt;}
.y84{bottom:188.506728pt;}
.ye7{bottom:190.267067pt;}
.y5d{bottom:192.263468pt;}
.y58{bottom:192.264711pt;}
.y136{bottom:195.864707pt;}
.y1a4{bottom:197.141035pt;}
.yf8{bottom:197.627067pt;}
.y28{bottom:197.702347pt;}
.y53{bottom:199.145035pt;}
.y4d{bottom:199.146277pt;}
.y16e{bottom:203.863456pt;}
.y83{bottom:204.107200pt;}
.ye8{bottom:205.067084pt;}
.y55{bottom:207.065047pt;}
.y4f{bottom:207.066289pt;}
.y5e{bottom:207.783015pt;}
.y59{bottom:207.784258pt;}
.y135{bottom:211.465179pt;}
.yf7{bottom:212.027200pt;}
.y27{bottom:213.302819pt;}
.y1a3{bottom:217.700707pt;}
.ye9{bottom:219.386821pt;}
.y16d{bottom:219.463928pt;}
.yf6{bottom:226.747067pt;}
.y134{bottom:227.065651pt;}
.y82{bottom:227.226547pt;}
.y26{bottom:228.903291pt;}
.y1a2{bottom:230.261227pt;}
.y49{bottom:232.983787pt;}
.yea{bottom:234.186839pt;}
.y16c{bottom:235.064400pt;}
.yf4{bottom:237.467067pt;}
.y81{bottom:239.787067pt;}
.yf5{bottom:241.547067pt;}
.y133{bottom:242.666123pt;}
.y1a1{bottom:242.821747pt;}
.y25{bottom:244.503763pt;}
.yeb{bottom:248.986856pt;}
.y16b{bottom:250.664872pt;}
.y48{bottom:255.224179pt;}
.y1a0{bottom:255.382267pt;}
.y80{bottom:258.027067pt;}
.y132{bottom:258.266595pt;}
.y24{bottom:260.104235pt;}
.yec{bottom:263.306593pt;}
.y47{bottom:270.824651pt;}
.y131{bottom:273.867067pt;}
.y16a{bottom:274.265312pt;}
.y23{bottom:275.704707pt;}
.y19f{bottom:275.941939pt;}
.yed{bottom:278.106610pt;}
.y46{bottom:286.425123pt;}
.y19e{bottom:288.502459pt;}
.y169{bottom:289.865784pt;}
.y22{bottom:291.305179pt;}
.yee{bottom:292.826728pt;}
.y130{bottom:297.867067pt;}
.y19d{bottom:301.062979pt;}
.y45{bottom:302.025595pt;}
.y168{bottom:305.466256pt;}
.y21{bottom:306.905651pt;}
.yef{bottom:307.626745pt;}
.y44{bottom:317.626067pt;}
.y167{bottom:321.066728pt;}
.y19c{bottom:321.622651pt;}
.yf0{bottom:321.946482pt;}
.y20{bottom:322.506123pt;}
.y19b{bottom:334.183171pt;}
.y166{bottom:336.667200pt;}
.yf1{bottom:336.746499pt;}
.y1f{bottom:338.106595pt;}
.y12f{bottom:340.174859pt;}
.y43{bottom:341.465651pt;}
.y19a{bottom:346.743691pt;}
.y1e{bottom:353.707067pt;}
.y12e{bottom:355.775331pt;}
.y42{bottom:357.066123pt;}
.y199{bottom:359.304211pt;}
.y165{bottom:359.786547pt;}
.ye6{bottom:360.342819pt;}
.yb8{bottom:368.741403pt;}
.y12d{bottom:371.375803pt;}
.y164{bottom:372.347067pt;}
.y41{bottom:372.666595pt;}
.ye5{bottom:375.943291pt;}
.y1d{bottom:378.267067pt;}
.y198{bottom:379.863883pt;}
.yb7{bottom:384.341875pt;}
.y12c{bottom:386.976275pt;}
.y40{bottom:388.267067pt;}
.y163{bottom:390.587200pt;}
.ye4{bottom:391.543763pt;}
.y197{bottom:392.424403pt;}
.y15d{bottom:397.386091pt;}
.yb6{bottom:399.942347pt;}
.y12b{bottom:402.576747pt;}
.y196{bottom:404.984923pt;}
.ye3{bottom:407.144235pt;}
.y15c{bottom:407.385938pt;}
.y3f{bottom:412.267067pt;}
.yb5{bottom:415.542819pt;}
.y12a{bottom:418.177219pt;}
.y151{bottom:420.427067pt;}
.ye2{bottom:422.744707pt;}
.y195{bottom:425.544595pt;}
.y162{bottom:427.387067pt;}
.yb4{bottom:431.143291pt;}
.y1c{bottom:431.146728pt;}
.y129{bottom:433.777691pt;}
.y152{bottom:434.827235pt;}
.y194{bottom:438.105115pt;}
.ye1{bottom:438.345179pt;}
.y161{bottom:441.787067pt;}
.yb3{bottom:446.743763pt;}
.y1b{bottom:446.747200pt;}
.y128{bottom:449.378163pt;}
.y153{bottom:449.706908pt;}
.y193{bottom:450.665635pt;}
.ye0{bottom:453.945651pt;}
.y3e{bottom:454.586123pt;}
.y160{bottom:456.667200pt;}
.yb2{bottom:462.344235pt;}
.y154{bottom:464.107076pt;}
.y127{bottom:464.978635pt;}
.y15e{bottom:466.907200pt;}
.ydf{bottom:469.546123pt;}
.y3d{bottom:470.186595pt;}
.y15f{bottom:471.067067pt;}
.y192{bottom:471.225307pt;}
.y1a{bottom:471.307067pt;}
.yb1{bottom:477.944707pt;}
.y155{bottom:478.986750pt;}
.y191{bottom:483.785827pt;}
.y7f{bottom:484.426595pt;}
.yde{bottom:485.146595pt;}
.y3c{bottom:485.787067pt;}
.y126{bottom:488.579075pt;}
.y156{bottom:493.386918pt;}
.yb0{bottom:493.545179pt;}
.y190{bottom:496.345283pt;}
.y7e{bottom:500.027067pt;}
.ydd{bottom:500.747067pt;}
.y125{bottom:504.179547pt;}
.y157{bottom:507.787086pt;}
.yaf{bottom:509.145651pt;}
.y3b{bottom:510.347067pt;}
.y18f{bottom:516.904955pt;}
.y124{bottom:519.780019pt;}
.y158{bottom:522.666759pt;}
.y7d{bottom:524.027067pt;}
.yae{bottom:524.746123pt;}
.ydc{bottom:524.747067pt;}
.y18e{bottom:529.465475pt;}
.y19{bottom:532.179555pt;}
.y123{bottom:535.380491pt;}
.y159{bottom:537.066927pt;}
.yad{bottom:540.346595pt;}
.y18d{bottom:542.025995pt;}
.y18{bottom:547.780027pt;}
.y122{bottom:550.980963pt;}
.y15a{bottom:551.946601pt;}
.yac{bottom:555.947067pt;}
.ydb{bottom:560.027067pt;}
.y18c{bottom:562.585667pt;}
.y3a{bottom:563.214579pt;}
.y17{bottom:563.380499pt;}
.y7c{bottom:565.867611pt;}
.y15b{bottom:566.346769pt;}
.y121{bottom:566.581435pt;}
.y18b{bottom:575.146187pt;}
.y7b{bottom:578.427067pt;}
.y39{bottom:578.815051pt;}
.y16{bottom:578.980971pt;}
.yab{bottom:579.947067pt;}
.y120{bottom:582.181907pt;}
.y18a{bottom:587.706707pt;}
.y38{bottom:594.415523pt;}
.y15{bottom:594.581443pt;}
.y1dc{bottom:596.256331pt;}
.y7a{bottom:596.667067pt;}
.y11f{bottom:597.782379pt;}
.y150{bottom:597.935899pt;}
.y189{bottom:600.266163pt;}
.yda{bottom:608.904179pt;}
.y37{bottom:610.015995pt;}
.y14{bottom:610.181915pt;}
.y11e{bottom:613.382851pt;}
.y14f{bottom:613.536371pt;}
.y1c2{bottom:619.866123pt;}
.y188{bottom:620.825835pt;}
.y1db{bottom:621.455963pt;}
.yaa{bottom:623.227067pt;}
.yd9{bottom:624.504651pt;}
.y13{bottom:625.782387pt;}
.y11d{bottom:628.983323pt;}
.y14e{bottom:629.136843pt;}
.y187{bottom:633.386355pt;}
.y36{bottom:633.616435pt;}
.y1c1{bottom:635.466595pt;}
.y1da{bottom:637.056435pt;}
.yd8{bottom:640.105123pt;}
.y12{bottom:641.382859pt;}
.y14d{bottom:644.737315pt;}
.y186{bottom:645.946875pt;}
.y35{bottom:649.216907pt;}
.y1c0{bottom:651.067067pt;}
.y11c{bottom:652.583763pt;}
.y1d9{bottom:652.656907pt;}
.yd7{bottom:655.705595pt;}
.y11{bottom:656.983331pt;}
.y185{bottom:658.507395pt;}
.y14c{bottom:660.337787pt;}
.y34{bottom:664.817379pt;}
.y11b{bottom:668.184235pt;}
.y1d8{bottom:668.257379pt;}
.yd6{bottom:671.545211pt;}
.y10{bottom:672.583803pt;}
.y1bf{bottom:675.867067pt;}
.y14b{bottom:675.938259pt;}
.ya9{bottom:676.105539pt;}
.y184{bottom:679.065315pt;}
.y11a{bottom:683.784707pt;}
.y1d7{bottom:683.857851pt;}
.yd5{bottom:687.145683pt;}
.yf{bottom:688.184275pt;}
.y33{bottom:688.417819pt;}
.y14a{bottom:691.538731pt;}
.y183{bottom:691.625835pt;}
.ya8{bottom:691.706011pt;}
.y119{bottom:699.385179pt;}
.y1d6{bottom:699.458323pt;}
.yd4{bottom:702.746155pt;}
.ye{bottom:703.784747pt;}
.y32{bottom:704.018291pt;}
.y182{bottom:704.186355pt;}
.y149{bottom:707.139203pt;}
.ya7{bottom:707.306483pt;}
.y118{bottom:714.985651pt;}
.y1d5{bottom:715.058795pt;}
.yd{bottom:719.385219pt;}
.y31{bottom:719.618763pt;}
.y148{bottom:722.739675pt;}
.ya6{bottom:722.906955pt;}
.y181{bottom:724.746027pt;}
.yd3{bottom:726.346595pt;}
.y117{bottom:730.586123pt;}
.y1d4{bottom:730.659267pt;}
.yc{bottom:734.985691pt;}
.y30{bottom:735.219235pt;}
.y1be{bottom:736.267251pt;}
.y180{bottom:737.306547pt;}
.y147{bottom:738.340147pt;}
.ya5{bottom:738.507427pt;}
.yd2{bottom:741.946640pt;}
.y116{bottom:746.186595pt;}
.y1d3{bottom:746.259739pt;}
.y1bd{bottom:748.827771pt;}
.y17f{bottom:749.867067pt;}
.yb{bottom:750.586163pt;}
.y2f{bottom:750.819707pt;}
.yd1{bottom:757.547112pt;}
.y115{bottom:761.787067pt;}
.y1d2{bottom:761.860211pt;}
.y146{bottom:761.940587pt;}
.y9e{bottom:762.747403pt;}
.ya0{bottom:765.867007pt;}
.ya{bottom:766.186635pt;}
.y2e{bottom:766.420179pt;}
.ya3{bottom:769.387067pt;}
.y1bc{bottom:769.387443pt;}
.y17e{bottom:771.867067pt;}
.y9d{bottom:772.507067pt;}
.yd0{bottom:773.147584pt;}
.ya4{bottom:773.627067pt;}
.ya2{bottom:773.627266pt;}
.y9f{bottom:780.267326pt;}
.ya1{bottom:780.986675pt;}
.y1bb{bottom:781.947963pt;}
.y9{bottom:782.026251pt;}
.y114{bottom:784.905507pt;}
.y145{bottom:785.541027pt;}
.y1d1{bottom:785.699795pt;}
.ycf{bottom:788.987475pt;}
.y1ba{bottom:794.507419pt;}
.y113{bottom:797.466027pt;}
.y144{bottom:801.141499pt;}
.y1d0{bottom:801.300267pt;}
.y9c{bottom:805.224595pt;}
.y1b9{bottom:807.067939pt;}
.y79{bottom:807.305555pt;}
.yc3{bottom:809.467465pt;}
.y112{bottom:810.026547pt;}
.yc6{bottom:810.747154pt;}
.yc9{bottom:811.067136pt;}
.y8{bottom:813.626659pt;}
.y143{bottom:816.741971pt;}
.y1cf{bottom:816.900739pt;}
.ycb{bottom:818.187668pt;}
.yc8{bottom:818.426492pt;}
.yc2{bottom:819.787067pt;}
.y9b{bottom:820.825067pt;}
.yc5{bottom:822.266765pt;}
.yce{bottom:822.427067pt;}
.ycc{bottom:822.427447pt;}
.y111{bottom:822.587067pt;}
.y78{bottom:822.906027pt;}
.yca{bottom:826.507349pt;}
.y1b8{bottom:827.627611pt;}
.yc7{bottom:830.026989pt;}
.ycd{bottom:830.747067pt;}
.yc4{bottom:831.226999pt;}
.y142{bottom:832.342443pt;}
.y1ce{bottom:832.501211pt;}
.y17d{bottom:832.740875pt;}
.y9a{bottom:836.425539pt;}
.y110{bottom:836.827067pt;}
.y77{bottom:838.506499pt;}
.y1b7{bottom:840.185835pt;}
.y10a{bottom:843.469210pt;}
.y141{bottom:847.942915pt;}
.y1cd{bottom:848.101683pt;}
.y17c{bottom:848.341347pt;}
.y7{bottom:851.227067pt;}
.y99{bottom:852.026011pt;}
.yc1{bottom:852.426123pt;}
.y1b6{bottom:852.746355pt;}
.y109{bottom:852.988715pt;}
.y76{bottom:854.106971pt;}
.y140{bottom:863.543387pt;}
.y1cc{bottom:863.702155pt;}
.y17b{bottom:863.941819pt;}
.y1b5{bottom:865.306875pt;}
.yfe{bottom:865.867067pt;}
.y6{bottom:866.827067pt;}
.y98{bottom:867.626483pt;}
.yc0{bottom:868.026595pt;}
.y75{bottom:869.707443pt;}
.y10f{bottom:873.227067pt;}
.y13f{bottom:879.143859pt;}
.y1cb{bottom:879.302627pt;}
.y17a{bottom:879.542291pt;}
.yff{bottom:880.587310pt;}
.y5{bottom:882.427067pt;}
.y97{bottom:883.226955pt;}
.ybf{bottom:883.627067pt;}
.y1b4{bottom:885.866547pt;}
.y10e{bottom:887.547067pt;}
.y6c{bottom:894.586555pt;}
.y1ca{bottom:894.903099pt;}
.y100{bottom:895.387254pt;}
.y6e{bottom:897.706811pt;}
.y1b3{bottom:898.426731pt;}
.y96{bottom:898.827427pt;}
.y10d{bottom:902.267067pt;}
.y68{bottom:902.347067pt;}
.y13e{bottom:902.744299pt;}
.y179{bottom:903.142731pt;}
.ybe{bottom:907.627067pt;}
.y4{bottom:908.587067pt;}
.y101{bottom:909.627536pt;}
.y1b2{bottom:910.987251pt;}
.y69{bottom:911.706619pt;}
.y6f{bottom:912.906811pt;}
.y10b{bottom:912.907067pt;}
.y73{bottom:916.427067pt;}
.y10c{bottom:917.067067pt;}
.y13d{bottom:918.344771pt;}
.y1c9{bottom:918.742683pt;}
.y178{bottom:918.743203pt;}
.y74{bottom:920.667067pt;}
.y72{bottom:920.667323pt;}
.y8f{bottom:923.067403pt;}
.y6a{bottom:923.227003pt;}
.y1b1{bottom:923.547771pt;}
.y102{bottom:924.427481pt;}
.y91{bottom:926.187007pt;}
.y70{bottom:928.106811pt;}
.y94{bottom:929.707067pt;}
.y8e{bottom:932.827067pt;}
.y95{bottom:933.947067pt;}
.y93{bottom:933.947266pt;}
.y1c8{bottom:934.343155pt;}
.y177{bottom:934.343675pt;}
.y6b{bottom:934.826427pt;}
.y103{bottom:939.147724pt;}
.y90{bottom:940.587326pt;}
.y92{bottom:941.306675pt;}
.y13c{bottom:941.945211pt;}
.y6d{bottom:942.586939pt;}
.y71{bottom:943.306811pt;}
.y1b0{bottom:944.107443pt;}
.y1c7{bottom:949.943627pt;}
.y176{bottom:949.944147pt;}
.ybd{bottom:949.945179pt;}
.y3{bottom:953.385739pt;}
.y104{bottom:953.947668pt;}
.y1af{bottom:956.667963pt;}
.y8d{bottom:965.543032pt;}
.y1c6{bottom:965.544099pt;}
.y175{bottom:965.544619pt;}
.ybc{bottom:965.545651pt;}
.y67{bottom:965.546595pt;}
.y105{bottom:968.667911pt;}
.y1ae{bottom:977.227635pt;}
.y8c{bottom:981.143504pt;}
.y1c5{bottom:981.144571pt;}
.y174{bottom:981.145091pt;}
.y66{bottom:981.146123pt;}
.y106{bottom:982.987895pt;}
.y2{bottom:984.027067pt;}
.y1ad{bottom:989.788155pt;}
.y8b{bottom:996.743976pt;}
.y1c4{bottom:996.745043pt;}
.y173{bottom:996.745563pt;}
.y65{bottom:996.746595pt;}
.y107{bottom:997.708138pt;}
.y1ac{bottom:1002.347611pt;}
.y8a{bottom:1012.344448pt;}
.y1c3{bottom:1012.345515pt;}
.y172{bottom:1012.346035pt;}
.y64{bottom:1012.347067pt;}
.y108{bottom:1012.428381pt;}
.y1ab{bottom:1014.907067pt;}
.y1{bottom:1057.547067pt;}
.h1c{height:23.470406pt;}
.h19{height:23.544098pt;}
.h13{height:23.640380pt;}
.hd{height:24.149189pt;}
.h4{height:28.822500pt;}
.h16{height:35.494375pt;}
.h22{height:36.538950pt;}
.h21{height:36.630175pt;}
.h23{height:36.840438pt;}
.h25{height:37.002906pt;}
.h26{height:37.006491pt;}
.h24{height:37.008571pt;}
.h7{height:37.105312pt;}
.h18{height:40.399093pt;}
.h12{height:40.565000pt;}
.hc{height:41.437681pt;}
.h15{height:42.892500pt;}
.h1{height:44.388750pt;}
.h5{height:44.568125pt;}
.h10{height:44.570013pt;}
.hf{height:44.571901pt;}
.h1b{height:44.729679pt;}
.h17{height:44.869484pt;}
.h11{height:45.053750pt;}
.hb{height:46.022998pt;}
.h1e{height:47.273552pt;}
.h20{height:47.997957pt;}
.h1d{height:48.667400pt;}
.h1a{height:50.328125pt;}
.h1f{height:51.608125pt;}
.he{height:53.848125pt;}
.h6{height:53.857500pt;}
.h14{height:56.408125pt;}
.h3{height:64.934375pt;}
.ha{height:66.750000pt;}
.h8{height:75.142500pt;}
.h9{height:77.763750pt;}
.h2{height:107.392500pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x16{left:56.720000pt;}
.x1{left:75.680000pt;}
.x21{left:85.040512pt;}
.x20{left:86.960000pt;}
.x4b{left:90.560275pt;}
.x1f{left:94.000000pt;}
.x4a{left:95.680000pt;}
.x4f{left:98.319792pt;}
.x37{left:102.160000pt;}
.x9{left:104.000000pt;}
.x3d{left:105.840043pt;}
.x40{left:109.840369pt;}
.x23{left:113.439232pt;}
.x3f{left:114.960000pt;}
.x3{left:121.760256pt;}
.x41{left:124.641157pt;}
.x45{left:132.400296pt;}
.x39{left:140.399137pt;}
.x3e{left:144.560000pt;}
.x1e{left:147.845248pt;}
.x1b{left:151.681728pt;}
.x18{left:157.839552pt;}
.x7{left:161.360000pt;}
.x3c{left:169.359395pt;}
.x2{left:191.280000pt;}
.x4{left:193.360000pt;}
.x5{left:195.440000pt;}
.x3b{left:196.799555pt;}
.x6{left:203.440000pt;}
.x42{left:211.041198pt;}
.x3a{left:231.679562pt;}
.x38{left:236.080000pt;}
.x51{left:259.120000pt;}
.x1a{left:270.960384pt;}
.x19{left:275.519168pt;}
.x1c{left:282.001664pt;}
.x4c{left:285.920000pt;}
.x1d{left:292.644096pt;}
.x43{left:296.000000pt;}
.x17{left:298.960000pt;}
.x24{left:356.880000pt;}
.x4d{left:359.840000pt;}
.x22{left:366.080000pt;}
.x44{left:378.320000pt;}
.x25{left:398.719968pt;}
.x8{left:406.400480pt;}
.xa{left:417.679440pt;}
.x4e{left:421.359792pt;}
.x2e{left:427.040632pt;}
.x2d{left:428.880000pt;}
.x2c{left:435.920000pt;}
.xb{left:445.999968pt;}
.x15{left:447.920000pt;}
.x47{left:451.599825pt;}
.x14{left:454.000000pt;}
.x36{left:455.440296pt;}
.x46{left:456.720000pt;}
.x48{left:466.399548pt;}
.x2b{left:470.321755pt;}
.x34{left:473.122591pt;}
.x29{left:474.159498pt;}
.x32{left:476.961546pt;}
.x27{left:480.319991pt;}
.x30{left:483.120828pt;}
.x13{left:506.563495pt;}
.x10{left:510.562008pt;}
.xd{left:516.800136pt;}
.x28{left:530.239721pt;}
.x31{left:532.720847pt;}
.x2a{left:551.360026pt;}
.x33{left:553.521441pt;}
.x2f{left:560.480000pt;}
.x26{left:564.800000pt;}
.xf{left:638.400147pt;}
.xe{left:641.039737pt;}
.x12{left:643.763794pt;}
.x11{left:647.122595pt;}
.xc{left:657.040000pt;}
.x50{left:671.919867pt;}
.x35{left:700.480000pt;}
.x49{left:720.560000pt;}
}




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