
    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_b5799496e380b772488a3ed1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.038086;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_e1fcaaead9573acb05c7e4f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_5108aa01cae28d8b59cb3d02.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_2755308f50fedd1ae733fc08.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_6f24d623e911227598483c6c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.676270;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_2ee12a90979a23fc58fd0e2e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_7b85694aa50b9c54f8802df2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.025879;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_0a2b73c586a94ff211f876d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740723;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_1e0879d6ffa996ea7db0a54e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.677246;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;}
.m5{transform:matrix(0.000000,-0.251364,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251364,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251364,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);}
.m2{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,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);}
.m3{transform:matrix(0.251363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251363,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);}
.vf{vertical-align:-46.803332px;}
.vd{vertical-align:-36.001800px;}
.v10{vertical-align:-34.558912px;}
.va{vertical-align:-29.159100px;}
.v9{vertical-align:-27.000000px;}
.vc{vertical-align:-16.200000px;}
.v2{vertical-align:-8.991360px;}
.v7{vertical-align:-6.120000px;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.800000px;}
.v6{vertical-align:2.879400px;}
.v3{vertical-align:9.000000px;}
.v5{vertical-align:16.560000px;}
.v13{vertical-align:20.899656px;}
.v1{vertical-align:27.011220px;}
.v11{vertical-align:28.081620px;}
.v12{vertical-align:34.200684px;}
.ve{vertical-align:41.041764px;}
.vb{vertical-align:65.880000px;}
.ls74{letter-spacing:-1.049643px;}
.ls4d{letter-spacing:-0.282492px;}
.ls83{letter-spacing:-0.090972px;}
.ls6e{letter-spacing:-0.090180px;}
.ls73{letter-spacing:-0.086184px;}
.ls51{letter-spacing:-0.084168px;}
.ls30{letter-spacing:-0.078156px;}
.ls50{letter-spacing:-0.072144px;}
.ls2f{letter-spacing:-0.066132px;}
.ls22{letter-spacing:-0.060120px;}
.ls80{letter-spacing:-0.058716px;}
.ls1f{letter-spacing:-0.057600px;}
.ls82{letter-spacing:-0.057456px;}
.ls28{letter-spacing:-0.054108px;}
.ls46{letter-spacing:-0.052668px;}
.ls23{letter-spacing:-0.048096px;}
.ls4b{letter-spacing:-0.046332px;}
.ls45{letter-spacing:-0.043092px;}
.ls21{letter-spacing:-0.042084px;}
.ls49{letter-spacing:-0.038304px;}
.ls29{letter-spacing:-0.036072px;}
.ls81{letter-spacing:-0.033516px;}
.ls53{letter-spacing:-0.030060px;}
.ls47{letter-spacing:-0.028728px;}
.ls4f{letter-spacing:-0.024048px;}
.ls66{letter-spacing:-0.023940px;}
.ls61{letter-spacing:-0.023328px;}
.ls84{letter-spacing:-0.020916px;}
.ls4a{letter-spacing:-0.019152px;}
.ls25{letter-spacing:-0.018036px;}
.ls48{letter-spacing:-0.014364px;}
.ls27{letter-spacing:-0.012024px;}
.ls62{letter-spacing:-0.009576px;}
.ls26{letter-spacing:-0.006012px;}
.ls63{letter-spacing:-0.004788px;}
.ls20{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.004788px;}
.lsc{letter-spacing:0.006012px;}
.ls4e{letter-spacing:0.007200px;}
.ls68{letter-spacing:0.007776px;}
.ls3d{letter-spacing:0.008424px;}
.ls0{letter-spacing:0.009576px;}
.ls6d{letter-spacing:0.011664px;}
.ls54{letter-spacing:0.012024px;}
.ls4c{letter-spacing:0.012636px;}
.ls65{letter-spacing:0.014364px;}
.ls52{letter-spacing:0.014400px;}
.ls67{letter-spacing:0.016776px;}
.ls11{letter-spacing:0.018036px;}
.ls31{letter-spacing:0.019152px;}
.ls4{letter-spacing:0.024048px;}
.ls39{letter-spacing:0.026640px;}
.ls7c{letter-spacing:0.028728px;}
.ls18{letter-spacing:0.030060px;}
.ls76{letter-spacing:0.033552px;}
.ls1e{letter-spacing:0.035964px;}
.ls6c{letter-spacing:0.036000px;}
.ls1c{letter-spacing:0.036072px;}
.ls60{letter-spacing:0.038304px;}
.ls1a{letter-spacing:0.042084px;}
.ls7f{letter-spacing:0.043092px;}
.ls42{letter-spacing:0.047880px;}
.lsd{letter-spacing:0.048096px;}
.lsa{letter-spacing:0.054108px;}
.ls3c{letter-spacing:0.057456px;}
.lsb{letter-spacing:0.058716px;}
.ls1d{letter-spacing:0.059940px;}
.ls33{letter-spacing:0.060120px;}
.ls7a{letter-spacing:0.062244px;}
.ls2e{letter-spacing:0.064800px;}
.ls41{letter-spacing:0.066132px;}
.ls3b{letter-spacing:0.067032px;}
.ls86{letter-spacing:0.067104px;}
.ls69{letter-spacing:0.071820px;}
.ls3{letter-spacing:0.072144px;}
.ls85{letter-spacing:0.076608px;}
.ls1b{letter-spacing:0.078156px;}
.ls15{letter-spacing:0.081396px;}
.ls16{letter-spacing:0.083880px;}
.ls7{letter-spacing:0.084168px;}
.ls3e{letter-spacing:0.086184px;}
.ls6{letter-spacing:0.090180px;}
.ls6f{letter-spacing:0.090972px;}
.ls71{letter-spacing:0.095760px;}
.ls9{letter-spacing:0.096192px;}
.ls70{letter-spacing:0.100548px;}
.ls2d{letter-spacing:0.100656px;}
.ls14{letter-spacing:0.102204px;}
.ls38{letter-spacing:0.105336px;}
.ls64{letter-spacing:0.107568px;}
.ls1{letter-spacing:0.108216px;}
.ls13{letter-spacing:0.109044px;}
.ls7d{letter-spacing:0.110124px;}
.ls5{letter-spacing:0.114228px;}
.ls7b{letter-spacing:0.119700px;}
.ls8{letter-spacing:0.120240px;}
.ls6a{letter-spacing:0.124488px;}
.lsf{letter-spacing:0.125820px;}
.ls34{letter-spacing:0.126252px;}
.ls6b{letter-spacing:0.129276px;}
.ls44{letter-spacing:0.132264px;}
.ls7e{letter-spacing:0.134064px;}
.ls40{letter-spacing:0.138276px;}
.ls10{letter-spacing:0.144288px;}
.ls79{letter-spacing:0.148428px;}
.ls43{letter-spacing:0.150300px;}
.ls3f{letter-spacing:0.156312px;}
.ls19{letter-spacing:0.174348px;}
.ls24{letter-spacing:0.176148px;}
.ls2{letter-spacing:0.180360px;}
.ls2c{letter-spacing:0.181944px;}
.ls77{letter-spacing:0.220248px;}
.ls72{letter-spacing:0.791023px;}
.ls75{letter-spacing:1.130385px;}
.ls37{letter-spacing:1.887768px;}
.ls57{letter-spacing:5.488956px;}
.ls5a{letter-spacing:7.531486px;}
.ls17{letter-spacing:17.424000px;}
.ls32{letter-spacing:17.784000px;}
.ls58{letter-spacing:28.583400px;}
.ls2a{letter-spacing:31.110965px;}
.ls2b{letter-spacing:31.472620px;}
.ls78{letter-spacing:32.409972px;}
.lse{letter-spacing:41.117976px;}
.ls12{letter-spacing:41.478660px;}
.ls5d{letter-spacing:82.745898px;}
.ls5c{letter-spacing:192.185490px;}
.ls55{letter-spacing:283.843620px;}
.ls56{letter-spacing:293.223240px;}
.ls59{letter-spacing:549.279036px;}
.ls5b{letter-spacing:591.581767px;}
.ls36{letter-spacing:776.048951px;}
.ls5e{letter-spacing:800.765233px;}
.ls35{letter-spacing:816.630502px;}
.ls5f{letter-spacing:1079.146770px;}
.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;}
}
.wscf{word-spacing:-64.995600px;}
.wscb{word-spacing:-64.926600px;}
.wsc2{word-spacing:-53.265600px;}
.wscd{word-spacing:-35.617589px;}
.ws1{word-spacing:-21.146148px;}
.ws2{word-spacing:-18.000000px;}
.ws5c{word-spacing:-16.326900px;}
.ws5f{word-spacing:-16.263300px;}
.wsce{word-spacing:-16.248900px;}
.wsc9{word-spacing:-16.231650px;}
.wsc4{word-spacing:-16.200000px;}
.wsc7{word-spacing:-15.210360px;}
.ws68{word-spacing:-15.168276px;}
.ws3{word-spacing:-15.108156px;}
.ws0{word-spacing:-15.102144px;}
.ws67{word-spacing:-15.084108px;}
.ws4{word-spacing:-15.072084px;}
.ws6{word-spacing:-15.030000px;}
.ws126{word-spacing:-15.023988px;}
.wsc8{word-spacing:-14.963868px;}
.ws63{word-spacing:-13.310640px;}
.ws62{word-spacing:-13.267548px;}
.ws165{word-spacing:-12.190248px;}
.ws160{word-spacing:-11.883816px;}
.ws65{word-spacing:-11.721996px;}
.ws161{word-spacing:-11.312767px;}
.ws127{word-spacing:-9.731664px;}
.ws128{word-spacing:-9.727776px;}
.ws5{word-spacing:-9.720000px;}
.wsd0{word-spacing:-9.696672px;}
.wsc5{word-spacing:-9.450000px;}
.ws66{word-spacing:-9.207360px;}
.wsd1{word-spacing:-8.414208px;}
.ws64{word-spacing:-8.306640px;}
.ws166{word-spacing:-7.449084px;}
.ws164{word-spacing:-2.619061px;}
.ws163{word-spacing:-0.439033px;}
.ws3c{word-spacing:-0.272916px;}
.ws175{word-spacing:-0.239400px;}
.ws17e{word-spacing:-0.225036px;}
.ws15a{word-spacing:-0.220248px;}
.ws159{word-spacing:-0.215460px;}
.ws2c{word-spacing:-0.201312px;}
.ws18f{word-spacing:-0.196308px;}
.ws3f{word-spacing:-0.192924px;}
.ws15c{word-spacing:-0.191520px;}
.ws162{word-spacing:-0.186732px;}
.ws15b{word-spacing:-0.181944px;}
.ws83{word-spacing:-0.177156px;}
.ws3e{word-spacing:-0.176148px;}
.ws3d{word-spacing:-0.172368px;}
.ws179{word-spacing:-0.162792px;}
.ws190{word-spacing:-0.159372px;}
.ws7e{word-spacing:-0.158004px;}
.ws7f{word-spacing:-0.148428px;}
.ws9{word-spacing:-0.143856px;}
.wsa0{word-spacing:-0.138852px;}
.wsa{word-spacing:-0.119880px;}
.ws182{word-spacing:-0.119700px;}
.ws133{word-spacing:-0.109044px;}
.ws40{word-spacing:-0.064800px;}
.wsd8{word-spacing:-0.048096px;}
.ws73{word-spacing:-0.036072px;}
.ws129{word-spacing:-0.036000px;}
.wsd7{word-spacing:-0.024048px;}
.ws121{word-spacing:-0.019152px;}
.wsc{word-spacing:-0.018036px;}
.wsbc{word-spacing:-0.014400px;}
.ws9f{word-spacing:-0.012024px;}
.ws90{word-spacing:-0.007200px;}
.ws7b{word-spacing:-0.006012px;}
.ws8{word-spacing:0.000000px;}
.wsd{word-spacing:0.006012px;}
.ws7{word-spacing:0.009576px;}
.wsda{word-spacing:0.012024px;}
.ws58{word-spacing:0.018036px;}
.ws123{word-spacing:0.019152px;}
.ws122{word-spacing:0.023940px;}
.ws72{word-spacing:0.024048px;}
.ws7d{word-spacing:0.033516px;}
.ws18{word-spacing:0.036072px;}
.ws125{word-spacing:0.038304px;}
.ws124{word-spacing:0.043092px;}
.ws120{word-spacing:0.047880px;}
.ws19{word-spacing:0.048096px;}
.ws8f{word-spacing:0.054108px;}
.ws80{word-spacing:0.057456px;}
.wsb{word-spacing:0.057600px;}
.ws95{word-spacing:0.060120px;}
.wsd9{word-spacing:0.066132px;}
.ws3b{word-spacing:0.084168px;}
.ws143{word-spacing:0.126252px;}
.ws2b{word-spacing:0.132264px;}
.ws1c{word-spacing:0.138276px;}
.ws107{word-spacing:0.156312px;}
.ws180{word-spacing:0.172368px;}
.ws189{word-spacing:0.181944px;}
.ws151{word-spacing:0.312624px;}
.wsab{word-spacing:0.318636px;}
.ws38{word-spacing:0.354708px;}
.ws94{word-spacing:0.420840px;}
.ws135{word-spacing:0.438876px;}
.wsa1{word-spacing:0.486972px;}
.ws188{word-spacing:0.521892px;}
.ws187{word-spacing:0.564984px;}
.ws17f{word-spacing:0.651168px;}
.wsf7{word-spacing:0.685368px;}
.ws6a{word-spacing:0.715428px;}
.ws10b{word-spacing:0.721440px;}
.wsbb{word-spacing:0.733464px;}
.ws141{word-spacing:0.739476px;}
.ws13b{word-spacing:0.787572px;}
.ws13a{word-spacing:0.799596px;}
.wse3{word-spacing:0.823644px;}
.wsfb{word-spacing:0.829656px;}
.ws153{word-spacing:0.883764px;}
.ws111{word-spacing:1.034064px;}
.ws10f{word-spacing:1.064124px;}
.ws20{word-spacing:1.076148px;}
.ws150{word-spacing:1.088172px;}
.ws155{word-spacing:1.220436px;}
.ws14f{word-spacing:1.232460px;}
.ws18b{word-spacing:1.268820px;}
.ws18a{word-spacing:1.374156px;}
.ws39{word-spacing:1.442880px;}
.wsf4{word-spacing:1.460916px;}
.ws10a{word-spacing:1.581156px;}
.ws12d{word-spacing:1.587168px;}
.ws158{word-spacing:1.627920px;}
.ws157{word-spacing:1.637496px;}
.ws191{word-spacing:1.767528px;}
.ws110{word-spacing:1.773540px;}
.wsf3{word-spacing:1.797588px;}
.ws86{word-spacing:1.827648px;}
.wse9{word-spacing:1.845684px;}
.ws77{word-spacing:1.869732px;}
.ws10c{word-spacing:1.929852px;}
.ws16{word-spacing:1.947888px;}
.wsa4{word-spacing:1.971936px;}
.wsb6{word-spacing:2.110212px;}
.ws137{word-spacing:2.122236px;}
.wsb7{word-spacing:2.128248px;}
.ws85{word-spacing:2.134260px;}
.ws76{word-spacing:2.146284px;}
.ws3a{word-spacing:2.164320px;}
.wsfc{word-spacing:2.200392px;}
.wsfd{word-spacing:2.218428px;}
.ws192{word-spacing:2.230452px;}
.ws169{word-spacing:2.248488px;}
.ws54{word-spacing:2.326644px;}
.ws13e{word-spacing:2.338668px;}
.ws173{word-spacing:2.350908px;}
.ws112{word-spacing:2.464920px;}
.wsb5{word-spacing:2.482956px;}
.ws146{word-spacing:2.494980px;}
.ws93{word-spacing:2.519028px;}
.wsb4{word-spacing:2.531052px;}
.ws168{word-spacing:2.567124px;}
.ws8a{word-spacing:2.573136px;}
.wsae{word-spacing:2.585160px;}
.ws25{word-spacing:2.591172px;}
.wsb2{word-spacing:2.603196px;}
.ws136{word-spacing:2.621232px;}
.wsb3{word-spacing:2.675340px;}
.ws15e{word-spacing:2.710008px;}
.ws15d{word-spacing:2.719584px;}
.ws15f{word-spacing:2.753100px;}
.ws145{word-spacing:2.819628px;}
.ws24{word-spacing:2.825640px;}
.wse1{word-spacing:2.843676px;}
.ws172{word-spacing:2.848860px;}
.ws142{word-spacing:2.849688px;}
.ws9e{word-spacing:2.861712px;}
.wse2{word-spacing:2.867724px;}
.wsa7{word-spacing:2.879748px;}
.ws132{word-spacing:2.885760px;}
.ws4c{word-spacing:2.933856px;}
.ws195{word-spacing:2.951892px;}
.ws11b{word-spacing:2.957904px;}
.ws1e{word-spacing:2.963916px;}
.wse0{word-spacing:2.981952px;}
.ws4b{word-spacing:3.006000px;}
.ws75{word-spacing:3.012012px;}
.wsed{word-spacing:3.210408px;}
.ws140{word-spacing:3.216420px;}
.ws17{word-spacing:3.234456px;}
.wsee{word-spacing:3.240468px;}
.wsbf{word-spacing:3.264516px;}
.ws1d{word-spacing:3.282552px;}
.wsf5{word-spacing:3.294576px;}
.wsbe{word-spacing:3.390768px;}
.ws13f{word-spacing:3.571128px;}
.wsa3{word-spacing:3.589164px;}
.ws108{word-spacing:3.601188px;}
.ws52{word-spacing:3.613212px;}
.ws10e{word-spacing:3.625236px;}
.wsa2{word-spacing:3.631248px;}
.ws10d{word-spacing:3.643272px;}
.ws53{word-spacing:3.667320px;}
.ws27{word-spacing:3.673332px;}
.ws28{word-spacing:3.697380px;}
.ws11e{word-spacing:3.739464px;}
.ws130{word-spacing:3.751488px;}
.ws17d{word-spacing:3.758580px;}
.ws12a{word-spacing:3.775536px;}
.ws17c{word-spacing:3.806460px;}
.ws186{word-spacing:3.825612px;}
.wsb9{word-spacing:3.931848px;}
.ws9c{word-spacing:3.943872px;}
.wsf1{word-spacing:4.100184px;}
.ws4f{word-spacing:4.118220px;}
.ws185{word-spacing:4.146408px;}
.ws18e{word-spacing:4.151196px;}
.ws17b{word-spacing:4.160772px;}
.ws17a{word-spacing:4.199076px;}
.ws171{word-spacing:4.227804px;}
.wsb8{word-spacing:4.292568px;}
.wsba{word-spacing:4.304592px;}
.ws14c{word-spacing:4.346676px;}
.ws46{word-spacing:4.364712px;}
.ws14d{word-spacing:4.376736px;}
.wsfa{word-spacing:4.382748px;}
.ws45{word-spacing:4.388760px;}
.wsd5{word-spacing:4.442868px;}
.ws100{word-spacing:4.484952px;}
.ws170{word-spacing:4.495932px;}
.ws18d{word-spacing:4.510296px;}
.ws18c{word-spacing:4.534236px;}
.ws16f{word-spacing:4.625208px;}
.ws6d{word-spacing:4.641264px;}
.ws134{word-spacing:4.659300px;}
.wsf9{word-spacing:4.689360px;}
.ws6e{word-spacing:4.695372px;}
.ws199{word-spacing:4.707396px;}
.ws1f{word-spacing:4.719420px;}
.ws198{word-spacing:4.749480px;}
.ws70{word-spacing:4.995972px;}
.ws13{word-spacing:5.007996px;}
.ws92{word-spacing:5.020020px;}
.wsf6{word-spacing:5.026032px;}
.ws14a{word-spacing:5.038056px;}
.wsd6{word-spacing:5.044068px;}
.ws6f{word-spacing:5.050080px;}
.ws14b{word-spacing:5.056092px;}
.ws9b{word-spacing:5.062104px;}
.ws8c{word-spacing:5.080140px;}
.wsec{word-spacing:5.170320px;}
.wsb0{word-spacing:5.194368px;}
.ws16c{word-spacing:5.368716px;}
.ws69{word-spacing:5.398776px;}
.ws74{word-spacing:5.404788px;}
.ws131{word-spacing:5.410800px;}
.ws181{word-spacing:5.563656px;}
.ws103{word-spacing:5.567112px;}
.ws14{word-spacing:5.741460px;}
.ws84{word-spacing:5.759496px;}
.ws55{word-spacing:5.765508px;}
.ws12b{word-spacing:5.777532px;}
.wse7{word-spacing:5.903784px;}
.ws178{word-spacing:5.908392px;}
.wsd4{word-spacing:5.909796px;}
.wsde{word-spacing:6.096168px;}
.wseb{word-spacing:6.102180px;}
.wsdd{word-spacing:6.114204px;}
.ws12{word-spacing:6.126228px;}
.ws99{word-spacing:6.162300px;}
.ws57{word-spacing:6.186348px;}
.ws9a{word-spacing:6.210396px;}
.ws36{word-spacing:6.246468px;}
.ws177{word-spacing:6.329736px;}
.ws176{word-spacing:6.401556px;}
.wsf{word-spacing:6.456888px;}
.wsac{word-spacing:6.468912px;}
.ws149{word-spacing:6.474924px;}
.ws11a{word-spacing:6.480936px;}
.ws97{word-spacing:6.498972px;}
.wsdc{word-spacing:6.547068px;}
.ws56{word-spacing:6.571116px;}
.ws98{word-spacing:6.643260px;}
.ws12c{word-spacing:6.835644px;}
.wsf2{word-spacing:6.847668px;}
.wsdf{word-spacing:6.859692px;}
.wsaa{word-spacing:6.865704px;}
.ws1b{word-spacing:6.883740px;}
.ws21{word-spacing:6.949872px;}
.ws14e{word-spacing:6.985944px;}
.ws174{word-spacing:7.052724px;}
.ws139{word-spacing:7.148268px;}
.ws193{word-spacing:7.160292px;}
.ws29{word-spacing:7.172316px;}
.ws49{word-spacing:7.190352px;}
.ws117{word-spacing:7.196364px;}
.ws194{word-spacing:7.202376px;}
.ws138{word-spacing:7.208388px;}
.wsad{word-spacing:7.214400px;}
.ws1a{word-spacing:7.286544px;}
.ws118{word-spacing:7.298568px;}
.ws71{word-spacing:7.551072px;}
.ws42{word-spacing:7.563096px;}
.wse4{word-spacing:7.707384px;}
.wsff{word-spacing:7.923816px;}
.ws96{word-spacing:7.947864px;}
.ws88{word-spacing:7.959888px;}
.ws13d{word-spacing:7.971912px;}
.ws102{word-spacing:8.086140px;}
.ws41{word-spacing:8.266500px;}
.ws10{word-spacing:8.278524px;}
.ws32{word-spacing:8.284536px;}
.ws8b{word-spacing:8.290548px;}
.ws87{word-spacing:8.326620px;}
.ws2a{word-spacing:8.350668px;}
.ws4d{word-spacing:8.362692px;}
.ws43{word-spacing:8.374716px;}
.ws44{word-spacing:8.416800px;}
.ws104{word-spacing:8.440848px;}
.ws167{word-spacing:8.621208px;}
.ws89{word-spacing:8.627220px;}
.ws147{word-spacing:8.633232px;}
.ws196{word-spacing:8.645256px;}
.ws13c{word-spacing:8.669304px;}
.ws8d{word-spacing:8.789544px;}
.ws6c{word-spacing:8.969904px;}
.ws115{word-spacing:8.987940px;}
.ws114{word-spacing:9.060084px;}
.ws9d{word-spacing:9.108180px;}
.ws154{word-spacing:9.360684px;}
.ws6b{word-spacing:9.390744px;}
.ws197{word-spacing:9.414792px;}
.ws144{word-spacing:9.721404px;}
.ws4a{word-spacing:9.733428px;}
.ws106{word-spacing:9.751464px;}
.wse{word-spacing:9.787536px;}
.ws12e{word-spacing:10.076112px;}
.ws23{word-spacing:10.184328px;}
.wsa5{word-spacing:10.418796px;}
.wsa6{word-spacing:10.527012px;}
.ws22{word-spacing:10.533024px;}
.wsc0{word-spacing:10.557072px;}
.ws105{word-spacing:10.785528px;}
.ws7a{word-spacing:11.146248px;}
.ws79{word-spacing:11.158272px;}
.wsf8{word-spacing:11.194344px;}
.ws78{word-spacing:11.494944px;}
.ws101{word-spacing:11.549052px;}
.ws91{word-spacing:11.633220px;}
.ws148{word-spacing:11.645244px;}
.ws16e{word-spacing:11.861676px;}
.ws30{word-spacing:11.873700px;}
.ws26{word-spacing:11.885724px;}
.ws11d{word-spacing:11.951856px;}
.ws31{word-spacing:11.963880px;}
.ws37{word-spacing:12.240432px;}
.ws16d{word-spacing:12.252456px;}
.ws2f{word-spacing:12.583116px;}
.wse8{word-spacing:12.733416px;}
.ws16a{word-spacing:12.877704px;}
.ws2e{word-spacing:12.907764px;}
.ws16b{word-spacing:12.913776px;}
.ws34{word-spacing:12.955860px;}
.ws12f{word-spacing:12.973896px;}
.ws2d{word-spacing:12.997944px;}
.ws116{word-spacing:13.100148px;}
.ws156{word-spacing:13.106160px;}
.wsea{word-spacing:13.340628px;}
.ws8e{word-spacing:13.388724px;}
.ws119{word-spacing:13.490928px;}
.wsfe{word-spacing:13.671288px;}
.wsa8{word-spacing:13.683312px;}
.wsa9{word-spacing:13.701348px;}
.wse6{word-spacing:13.737420px;}
.wsaf{word-spacing:14.025996px;}
.wsb1{word-spacing:14.038020px;}
.ws184{word-spacing:14.225148px;}
.ws183{word-spacing:14.344848px;}
.ws152{word-spacing:14.398740px;}
.wsc1{word-spacing:14.404752px;}
.ws35{word-spacing:14.747436px;}
.ws47{word-spacing:14.771484px;}
.ws48{word-spacing:14.843628px;}
.ws11c{word-spacing:15.114168px;}
.wsbd{word-spacing:15.120180px;}
.wsd3{word-spacing:15.474888px;}
.ws33{word-spacing:15.625188px;}
.ws11{word-spacing:16.196328px;}
.ws109{word-spacing:16.629192px;}
.wsd2{word-spacing:16.713360px;}
.ws51{word-spacing:17.633196px;}
.ws50{word-spacing:17.693316px;}
.wse5{word-spacing:18.023976px;}
.ws15{word-spacing:18.132192px;}
.ws4e{word-spacing:18.348624px;}
.ws113{word-spacing:20.176272px;}
.wsf0{word-spacing:24.805512px;}
.wsef{word-spacing:24.817536px;}
.ws81{word-spacing:101.529540px;}
.ws82{word-spacing:113.767668px;}
.ws7c{word-spacing:208.139148px;}
.wsdb{word-spacing:307.038852px;}
.wsc3{word-spacing:368.900640px;}
.wscc{word-spacing:544.079056px;}
.ws11f{word-spacing:545.425020px;}
.wsca{word-spacing:578.458663px;}
.ws60{word-spacing:625.662162px;}
.ws5a{word-spacing:648.642968px;}
.ws5d{word-spacing:667.143257px;}
.ws59{word-spacing:674.048032px;}
.wsc6{word-spacing:796.343760px;}
.ws5b{word-spacing:902.228161px;}
.ws61{word-spacing:935.743566px;}
.ws5e{word-spacing:974.386877px;}
._5f{margin-left:-707.231381px;}
._5e{margin-left:-704.006731px;}
._30{margin-left:-436.048920px;}
._39{margin-left:-385.741440px;}
._1d{margin-left:-368.893443px;}
._22{margin-left:-335.079561px;}
._3b{margin-left:-330.816960px;}
._13{margin-left:-305.817847px;}
._11{margin-left:-302.940083px;}
._1c{margin-left:-300.179853px;}
._12{margin-left:-299.007571px;}
._f{margin-left:-295.960526px;}
._10{margin-left:-294.879737px;}
._21{margin-left:-293.265739px;}
._e{margin-left:-290.556579px;}
._18{margin-left:-288.150193px;}
._19{margin-left:-286.347703px;}
._20{margin-left:-281.166436px;}
._1a{margin-left:-273.390675px;}
._33{margin-left:-270.721440px;}
._9{margin-left:-264.187920px;}
._31{margin-left:-254.521440px;}
._35{margin-left:-246.810439px;}
._c{margin-left:-243.151590px;}
._d{margin-left:-240.273825px;}
._16{margin-left:-235.695128px;}
._17{margin-left:-233.526145px;}
._37{margin-left:-230.402880px;}
._3c{margin-left:-225.698400px;}
._46{margin-left:-210.180390px;}
._24{margin-left:-208.109736px;}
._40{margin-left:-196.610730px;}
._41{margin-left:-178.716959px;}
._4a{margin-left:-168.936564px;}
._32{margin-left:-163.308960px;}
._44{margin-left:-160.634901px;}
._45{margin-left:-150.259630px;}
._43{margin-left:-143.779956px;}
._48{margin-left:-139.201077px;}
._34{margin-left:-120.605760px;}
._a{margin-left:-114.218614px;}
._1f{margin-left:-113.214797px;}
._49{margin-left:-112.149908px;}
._38{margin-left:-107.289360px;}
._3f{margin-left:-94.338350px;}
._36{margin-left:-90.363600px;}
._1b{margin-left:-88.348121px;}
._3a{margin-left:-78.459840px;}
._3d{margin-left:-75.939120px;}
._b{margin-left:-49.397288px;}
._15{margin-left:-48.312866px;}
._42{margin-left:-46.501673px;}
._2b{margin-left:-27.314172px;}
._2d{margin-left:-13.320216px;}
._2a{margin-left:-11.519928px;}
._4{margin-left:-6.763140px;}
._5{margin-left:-4.940532px;}
._5a{margin-left:-2.434932px;}
._1{margin-left:-1.046088px;}
._2{width:1.028052px;}
._3{width:2.500524px;}
._7{width:4.226436px;}
._3e{width:6.390756px;}
._6{width:8.735436px;}
._5b{width:11.609172px;}
._2f{width:12.901752px;}
._2c{width:15.492996px;}
._4c{width:24.949800px;}
._5d{width:28.163016px;}
._5c{width:29.245104px;}
._4b{width:55.029881px;}
._2e{width:89.870760px;}
._58{width:115.104888px;}
._29{width:125.900460px;}
._4f{width:137.439540px;}
._53{width:149.739732px;}
._1e{width:151.562520px;}
._25{width:159.837804px;}
._26{width:175.676508px;}
._56{width:181.705968px;}
._27{width:183.653316px;}
._59{width:189.256644px;}
._23{width:190.442124px;}
._47{width:215.277696px;}
._52{width:220.317336px;}
._28{width:225.356796px;}
._14{width:233.277624px;}
._57{width:255.862512px;}
._4e{width:262.435068px;}
._51{width:385.924680px;}
._4d{width:419.400072px;}
._50{width:429.478812px;}
._55{width:464.397696px;}
._54{width:478.424052px;}
._8{width:731.156328px;}
._0{width:1650.787488px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:28.702800px;}
.fse{font-size:29.880000px;}
.fs10{font-size:33.120000px;}
.fsd{font-size:36.000000px;}
.fs14{font-size:37.800000px;}
.fs1c{font-size:37.848000px;}
.fs18{font-size:37.873200px;}
.fs1a{font-size:37.914000px;}
.fsc{font-size:37.947600px;}
.fsa{font-size:38.095200px;}
.fs11{font-size:38.261400px;}
.fs6{font-size:38.271000px;}
.fs5{font-size:38.880000px;}
.fs12{font-size:41.091190px;}
.fsf{font-size:42.120000px;}
.fs0{font-size:47.880000px;}
.fs1d{font-size:50.463600px;}
.fs3{font-size:60.120000px;}
.fs16{font-size:63.539045px;}
.fs15{font-size:64.800000px;}
.fs17{font-size:64.926600px;}
.fs1b{font-size:64.995600px;}
.fsb{font-size:65.053200px;}
.fs8{font-size:65.107800px;}
.fs9{font-size:65.307600px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fs13{font-size:97.200000px;}
.fs19{font-size:97.494000px;}
.fs1{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:111.356202px;}
.y5b{bottom:112.254609px;}
.y123{bottom:123.678840px;}
.yce{bottom:123.958326px;}
.y97{bottom:124.229919px;}
.y156{bottom:127.200450px;}
.y2b{bottom:128.906733px;}
.y191{bottom:129.269865px;}
.y5a{bottom:129.805140px;}
.y18a{bottom:130.439865px;}
.y122{bottom:141.229371px;}
.ycd{bottom:141.508857px;}
.y96{bottom:141.780450px;}
.y190{bottom:143.400450px;}
.y189{bottom:144.570450px;}
.y2a{bottom:146.457264px;}
.y59{bottom:147.355671px;}
.y1ac{bottom:156.000819px;}
.y155{bottom:156.270450px;}
.y121{bottom:158.779902px;}
.ycc{bottom:159.059388px;}
.y18f{bottom:163.920450px;}
.y29{bottom:164.007795px;}
.y58{bottom:164.906202px;}
.y188{bottom:165.090450px;}
.y95{bottom:168.780450px;}
.y120{bottom:176.330433px;}
.ycb{bottom:176.609919px;}
.y154{bottom:179.130450px;}
.y28{bottom:181.558326px;}
.y57{bottom:182.456733px;}
.y11f{bottom:193.880964px;}
.yca{bottom:194.160450px;}
.y27{bottom:199.108857px;}
.y1ab{bottom:199.650450px;}
.y56{bottom:200.007264px;}
.y153{bottom:201.990450px;}
.y1a5{bottom:210.990450px;}
.y11e{bottom:211.431495px;}
.y94{bottom:211.888857px;}
.y26{bottom:216.659388px;}
.y55{bottom:217.557795px;}
.yc9{bottom:221.160450px;}
.y1a4{bottom:221.789952px;}
.y152{bottom:224.850450px;}
.y11d{bottom:228.982026px;}
.y93{bottom:229.439388px;}
.y25{bottom:234.209919px;}
.y54{bottom:235.108326px;}
.y197{bottom:236.730450px;}
.y11c{bottom:246.532557px;}
.y92{bottom:246.989919px;}
.y151{bottom:247.710450px;}
.y24{bottom:251.760450px;}
.y53{bottom:252.658857px;}
.y11b{bottom:264.083088px;}
.y198{bottom:264.360436px;}
.y91{bottom:264.536733px;}
.y52{bottom:270.209388px;}
.y150{bottom:270.570450px;}
.yc8{bottom:273.260928px;}
.y23{bottom:279.390051px;}
.y11a{bottom:281.633619px;}
.y90{bottom:282.087264px;}
.y51{bottom:287.759919px;}
.yc7{bottom:290.811459px;}
.y199{bottom:291.180475px;}
.y14f{bottom:293.430450px;}
.y8f{bottom:299.637795px;}
.y22{bottom:303.960600px;}
.y50{bottom:305.308290px;}
.y119{bottom:308.184114px;}
.yc6{bottom:308.361990px;}
.y14e{bottom:316.290450px;}
.y8e{bottom:317.188326px;}
.y19a{bottom:318.720572px;}
.y4f{bottom:322.858821px;}
.y118{bottom:325.734645px;}
.yc5{bottom:325.912521px;}
.y8d{bottom:334.738857px;}
.y14d{bottom:339.150450px;}
.y4e{bottom:340.409352px;}
.y117{bottom:343.285176px;}
.yc4{bottom:343.463052px;}
.y19b{bottom:346.350559px;}
.y1a6{bottom:351.120450px;}
.y8c{bottom:352.289388px;}
.y4d{bottom:357.959883px;}
.y116{bottom:360.835707px;}
.yc3{bottom:361.013583px;}
.y14c{bottom:362.010450px;}
.y21{bottom:363.447945px;}
.y8b{bottom:369.839919px;}
.y19c{bottom:373.980545px;}
.y4c{bottom:376.499388px;}
.y115{bottom:378.386238px;}
.yc2{bottom:378.564114px;}
.y20{bottom:380.998476px;}
.y14b{bottom:384.870450px;}
.y8a{bottom:387.390450px;}
.y4b{bottom:394.049919px;}
.y114{bottom:395.936769px;}
.yc1{bottom:396.114645px;}
.y1f{bottom:398.549007px;}
.y19d{bottom:400.800584px;}
.y14a{bottom:405.480654px;}
.y4a{bottom:411.600450px;}
.y89{bottom:413.400450px;}
.y113{bottom:413.487300px;}
.yc0{bottom:413.665176px;}
.y149{bottom:414.120600px;}
.y1e{bottom:416.099538px;}
.y19e{bottom:428.340681px;}
.y112{bottom:431.037831px;}
.ybf{bottom:431.215707px;}
.y1d{bottom:433.650069px;}
.y49{bottom:438.600450px;}
.y148{bottom:441.300270px;}
.y88{bottom:441.750450px;}
.y147{bottom:448.410450px;}
.y111{bottom:448.588362px;}
.ybe{bottom:448.766238px;}
.y1c{bottom:451.197795px;}
.y19f{bottom:455.970667px;}
.y87{bottom:462.990450px;}
.y110{bottom:466.138893px;}
.ybd{bottom:466.316769px;}
.y1b{bottom:468.748326px;}
.y48{bottom:469.290051px;}
.y146{bottom:476.220450px;}
.y1a0{bottom:483.510764px;}
.y10f{bottom:483.689424px;}
.ybc{bottom:483.867300px;}
.y86{bottom:484.320450px;}
.y1a{bottom:486.298857px;}
.y1aa{bottom:486.660450px;}
.y47{bottom:493.860600px;}
.ybb{bottom:501.417831px;}
.y19{bottom:503.849388px;}
.y1a9{bottom:504.030600px;}
.y85{bottom:505.380450px;}
.y145{bottom:506.100450px;}
.y10e{bottom:510.239919px;}
.y1a1{bottom:510.330803px;}
.yba{bottom:518.968362px;}
.y18{bottom:521.399919px;}
.y1a8{bottom:522.210600px;}
.y81{bottom:527.430450px;}
.y83{bottom:527.520450px;}
.y10d{bottom:527.789811px;}
.y144{bottom:530.940450px;}
.yb9{bottom:536.518893px;}
.y1a2{bottom:537.960790px;}
.y17{bottom:538.950450px;}
.y1a7{bottom:539.490450px;}
.y80{bottom:540.209928px;}
.y84{bottom:540.210450px;}
.y82{bottom:540.300450px;}
.y143{bottom:542.807175px;}
.y46{bottom:543.810450px;}
.y10c{bottom:545.340342px;}
.y7f{bottom:552.450450px;}
.yb8{bottom:554.069424px;}
.y142{bottom:560.357706px;}
.y10b{bottom:562.890873px;}
.y1a3{bottom:565.590776px;}
.y16{bottom:566.580450px;}
.y45{bottom:568.830450px;}
.y7e{bottom:568.920450px;}
.y3b{bottom:572.250450px;}
.y3a{bottom:574.051028px;}
.y141{bottom:577.908237px;}
.yb7{bottom:580.619919px;}
.yf7{bottom:590.430169px;}
.y108{bottom:590.789787px;}
.yf6{bottom:590.790009px;}
.y100{bottom:591.775578px;}
.yfd{bottom:591.777203px;}
.yfa{bottom:591.778828px;}
.y106{bottom:593.670450px;}
.y7d{bottom:594.210450px;}
.y196{bottom:595.379955px;}
.y140{bottom:595.458768px;}
.yb6{bottom:598.167795px;}
.yf9{bottom:601.050450px;}
.y104{bottom:602.310178px;}
.yf4{bottom:602.580450px;}
.y39{bottom:602.760975px;}
.yff{bottom:604.916063px;}
.yfc{bottom:604.917688px;}
.y7c{bottom:605.550450px;}
.y102{bottom:606.355716px;}
.y109{bottom:606.360450px;}
.y105{bottom:606.360841px;}
.y13f{bottom:613.009299px;}
.y101{bottom:615.264988px;}
.yfe{bottom:615.266613px;}
.yfb{bottom:615.268237px;}
.yb5{bottom:615.718326px;}
.y10a{bottom:616.439643px;}
.yf8{bottom:616.620146px;}
.y187{bottom:617.514609px;}
.y103{bottom:621.390398px;}
.y15{bottom:621.569919px;}
.y195{bottom:621.930450px;}
.y18e{bottom:625.350450px;}
.yf5{bottom:628.950450px;}
.y13e{bottom:630.559830px;}
.y38{bottom:631.470923px;}
.yb4{bottom:633.268857px;}
.y107{bottom:634.980450px;}
.y186{bottom:635.065140px;}
.y16b{bottom:635.609388px;}
.y7b{bottom:635.880450px;}
.y14{bottom:639.120450px;}
.y194{bottom:647.940450px;}
.y13d{bottom:648.110361px;}
.yb3{bottom:650.819388px;}
.y18d{bottom:651.360279px;}
.y185{bottom:652.615671px;}
.y16a{bottom:653.159919px;}
.yf2{bottom:659.010456px;}
.y37{bottom:660.180870px;}
.yef{bottom:660.899820px;}
.y7a{bottom:661.350450px;}
.y13c{bottom:665.660892px;}
.y13{bottom:666.750450px;}
.yb2{bottom:668.369919px;}
.y193{bottom:668.460450px;}
.y184{bottom:670.166202px;}
.y169{bottom:670.708857px;}
.y18c{bottom:671.880450px;}
.yf1{bottom:672.060703px;}
.yee{bottom:673.500450px;}
.yf3{bottom:682.500900px;}
.y44{bottom:683.039201px;}
.y40{bottom:683.040158px;}
.y13b{bottom:683.211423px;}
.yf0{bottom:683.671202px;}
.yb1{bottom:685.920450px;}
.y79{bottom:686.460450px;}
.y183{bottom:687.716733px;}
.y168{bottom:688.259388px;}
.y36{bottom:691.590837px;}
.y43{bottom:693.839278px;}
.y3f{bottom:693.840234px;}
.y1d7{bottom:696.084114px;}
.y13a{bottom:700.761954px;}
.y35{bottom:702.300976px;}
.y42{bottom:704.549417px;}
.y3e{bottom:704.550374px;}
.y182{bottom:705.267264px;}
.y167{bottom:705.809919px;}
.y78{bottom:709.768290px;}
.y74{bottom:709.769487px;}
.y76{bottom:709.859262px;}
.yb0{bottom:711.930450px;}
.yed{bottom:713.010450px;}
.y41{bottom:715.349493px;}
.y3d{bottom:715.350450px;}
.y139{bottom:718.312485px;}
.y12{bottom:721.734654px;}
.y1d6{bottom:722.634609px;}
.y181{bottom:722.817795px;}
.y166{bottom:723.359919px;}
.y77{bottom:723.898875px;}
.y73{bottom:723.900072px;}
.y75{bottom:723.989847px;}
.y1bf{bottom:725.696382px;}
.yec{bottom:731.545086px;}
.y34{bottom:731.910292px;}
.yaf{bottom:732.450450px;}
.yab{bottom:735.150450px;}
.y72{bottom:735.240450px;}
.y138{bottom:735.863016px;}
.y11{bottom:739.285185px;}
.y1be{bottom:739.826967px;}
.y1d5{bottom:740.185140px;}
.y180{bottom:740.368326px;}
.y165{bottom:740.908476px;}
.yeb{bottom:749.095617px;}
.y71{bottom:751.440450px;}
.y137{bottom:753.413547px;}
.y1bd{bottom:753.956355px;}
.y10{bottom:756.835716px;}
.y1d4{bottom:757.735671px;}
.y17f{bottom:757.918857px;}
.y164{bottom:758.459007px;}
.y33{bottom:760.620239px;}
.yea{bottom:766.646148px;}
.y136{bottom:770.964078px;}
.ya9{bottom:774.119790px;}
.yf{bottom:774.386247px;}
.y1d3{bottom:775.286202px;}
.y17e{bottom:775.469388px;}
.y163{bottom:776.009538px;}
.y70{bottom:776.730450px;}
.y1bc{bottom:780.056940px;}
.yae{bottom:783.570252px;}
.ye9{bottom:784.196679px;}
.y135{bottom:788.514609px;}
.y6f{bottom:788.608326px;}
.y32{bottom:789.330187px;}
.ye{bottom:791.936778px;}
.y1d2{bottom:792.836733px;}
.y17d{bottom:793.019919px;}
.y162{bottom:793.560069px;}
.y1bb{bottom:794.187525px;}
.yad{bottom:794.370488px;}
.ye8{bottom:801.747210px;}
.ya8{bottom:803.279760px;}
.y134{bottom:806.065140px;}
.y6e{bottom:806.158857px;}
.yd{bottom:809.487309px;}
.y1d1{bottom:810.387264px;}
.y17c{bottom:810.570450px;}
.y161{bottom:811.108857px;}
.y3c{bottom:815.790600px;}
.y31{bottom:817.590450px;}
.ye7{bottom:819.297741px;}
.y1ba{bottom:820.288110px;}
.y133{bottom:823.615671px;}
.y6d{bottom:823.709388px;}
.yc{bottom:827.037840px;}
.y1d0{bottom:827.937795px;}
.y160{bottom:828.659388px;}
.y1b9{bottom:834.418695px;}
.ye6{bottom:836.848272px;}
.y17b{bottom:838.200450px;}
.ya7{bottom:839.639568px;}
.y132{bottom:841.166202px;}
.y6c{bottom:841.259919px;}
.yb{bottom:844.588371px;}
.y30{bottom:844.854771px;}
.y1cf{bottom:845.488326px;}
.y15f{bottom:846.209919px;}
.y1b8{bottom:848.549280px;}
.ye5{bottom:854.398803px;}
.y131{bottom:858.716733px;}
.y6b{bottom:858.809811px;}
.ya{bottom:862.138902px;}
.y2f{bottom:862.405302px;}
.yac{bottom:862.951178px;}
.y1ce{bottom:863.038857px;}
.y15e{bottom:863.760450px;}
.ya6{bottom:868.349966px;}
.ye4{bottom:871.949334px;}
.yaa{bottom:873.660450px;}
.y1b7{bottom:874.649865px;}
.y130{bottom:876.267264px;}
.y6a{bottom:876.360342px;}
.y9{bottom:879.689433px;}
.y2e{bottom:879.955833px;}
.y1cd{bottom:880.589388px;}
.y17a{bottom:884.188857px;}
.y1b6{bottom:888.780450px;}
.ye3{bottom:889.499865px;}
.y15d{bottom:891.390450px;}
.y12f{bottom:893.817795px;}
.y69{bottom:893.910873px;}
.ya5{bottom:896.970450px;}
.y8{bottom:897.239964px;}
.y2d{bottom:897.506364px;}
.y1cc{bottom:898.139919px;}
.y179{bottom:901.739388px;}
.ye2{bottom:907.050396px;}
.y12e{bottom:911.368326px;}
.y7{bottom:915.059532px;}
.y1cb{bottom:915.690450px;}
.y1b5{bottom:916.500450px;}
.y178{bottom:919.289919px;}
.y68{bottom:919.740450px;}
.y67{bottom:923.790600px;}
.ye1{bottom:924.600927px;}
.ya4{bottom:928.283817px;}
.y12d{bottom:928.918857px;}
.y177{bottom:936.839919px;}
.y1ca{bottom:943.590450px;}
.ya3{bottom:945.834348px;}
.y12c{bottom:946.469388px;}
.y66{bottom:947.280450px;}
.y6{bottom:950.609991px;}
.y15c{bottom:950.875671px;}
.yde{bottom:951.149055px;}
.ydb{bottom:951.150000px;}
.yd9{bottom:951.150450px;}
.y65{bottom:951.420450px;}
.y176{bottom:954.387264px;}
.yd8{bottom:962.850450px;}
.ya2{bottom:963.384879px;}
.y12b{bottom:964.019919px;}
.ye0{bottom:966.630450px;}
.y15b{bottom:968.426202px;}
.y175{bottom:971.937795px;}
.ydf{bottom:973.918830px;}
.ydc{bottom:973.919775px;}
.yda{bottom:973.920225px;}
.y64{bottom:976.170450px;}
.ya1{bottom:980.935410px;}
.y12a{bottom:981.570450px;}
.ydd{bottom:983.099505px;}
.y15a{bottom:985.976733px;}
.y5{bottom:986.160450px;}
.y174{bottom:989.488326px;}
.ya0{bottom:998.485941px;}
.y1b4{bottom:1000.017264px;}
.y1c9{bottom:1002.539865px;}
.y159{bottom:1003.527264px;}
.y63{bottom:1003.529388px;}
.yd6{bottom:1006.047795px;}
.y173{bottom:1007.038857px;}
.y129{bottom:1009.200450px;}
.yd7{bottom:1012.800450px;}
.y9f{bottom:1016.036472px;}
.y1c8{bottom:1016.665536px;}
.y1b3{bottom:1017.567795px;}
.y158{bottom:1021.077795px;}
.y62{bottom:1021.079919px;}
.y4{bottom:1022.250450px;}
.yd5{bottom:1024.587300px;}
.y172{bottom:1024.589388px;}
.y1c7{bottom:1030.796121px;}
.y9e{bottom:1033.587003px;}
.y1b2{bottom:1035.118326px;}
.y157{bottom:1038.628326px;}
.y61{bottom:1038.629919px;}
.yd4{bottom:1042.137831px;}
.y171{bottom:1042.139919px;}
.y1c6{bottom:1050.955995px;}
.y9d{bottom:1051.137534px;}
.y1b1{bottom:1052.668857px;}
.y60{bottom:1056.178857px;}
.y170{bottom:1059.688893px;}
.y1c5{bottom:1065.086580px;}
.y128{bottom:1068.676563px;}
.y9c{bottom:1068.688065px;}
.yd3{bottom:1068.688326px;}
.y1b0{bottom:1070.219388px;}
.y3{bottom:1072.558956px;}
.y5f{bottom:1073.729388px;}
.y16f{bottom:1077.239424px;}
.y1c4{bottom:1079.217165px;}
.y127{bottom:1086.227094px;}
.y9b{bottom:1086.238596px;}
.yd2{bottom:1086.238857px;}
.y1af{bottom:1087.769919px;}
.y5e{bottom:1091.279919px;}
.y1c3{bottom:1093.346553px;}
.y126{bottom:1103.777625px;}
.y9a{bottom:1103.789127px;}
.yd1{bottom:1103.789388px;}
.y16e{bottom:1103.789919px;}
.y1ae{bottom:1105.320450px;}
.y2{bottom:1107.030450px;}
.y5d{bottom:1108.830450px;}
.y1c2{bottom:1113.506427px;}
.y125{bottom:1121.328156px;}
.y16d{bottom:1121.338407px;}
.y99{bottom:1121.339658px;}
.yd0{bottom:1121.339919px;}
.y1c1{bottom:1127.637012px;}
.y192{bottom:1129.890450px;}
.y18b{bottom:1132.770450px;}
.y1ad{bottom:1132.950450px;}
.y5c{bottom:1135.830450px;}
.y124{bottom:1138.878687px;}
.y16c{bottom:1138.888938px;}
.y98{bottom:1138.890189px;}
.ycf{bottom:1138.890450px;}
.y1c0{bottom:1141.766400px;}
.y1{bottom:1189.740450px;}
.ha{height:20.896423px;}
.h3f{height:27.554379px;}
.h1d{height:27.855345px;}
.h9{height:27.862334px;}
.h1a{height:30.664512px;}
.h16{height:31.587891px;}
.h26{height:33.167285px;}
.h25{height:33.259570px;}
.h30{height:33.267313px;}
.h32{height:33.359877px;}
.h21{height:34.209844px;}
.h17{height:34.857949px;}
.h19{height:34.860037px;}
.h23{height:35.012988px;}
.h2d{height:35.118583px;}
.h18{height:35.217049px;}
.h40{height:36.738881px;}
.h20{height:38.061517px;}
.h3e{height:42.011895px;}
.h41{height:42.128789px;}
.hb{height:42.526230px;}
.h1{height:42.923672px;}
.h1b{height:43.769004px;}
.h42{height:47.190554px;}
.h4{height:52.751777px;}
.h6{height:52.898555px;}
.h15{height:52.901111px;}
.h3c{height:52.904783px;}
.hf{height:52.904927px;}
.he{height:52.907195px;}
.h3d{height:52.911299px;}
.h1c{height:52.913423px;}
.h5{height:53.397598px;}
.hd{height:55.687324px;}
.h29{height:56.969287px;}
.h31{height:57.029831px;}
.h13{height:57.080371px;}
.h2a{height:57.127799px;}
.h33{height:57.188511px;}
.h11{height:57.303592px;}
.h28{height:58.854281px;}
.h2b{height:60.139531px;}
.h2f{height:60.203444px;}
.h10{height:60.307371px;}
.h27{height:61.031777px;}
.h39{height:61.117046px;}
.h3a{height:61.121294px;}
.h37{height:61.121894px;}
.h38{height:61.122818px;}
.h3b{height:61.123094px;}
.h1e{height:61.125542px;}
.h8{height:61.126142px;}
.h1f{height:61.220464px;}
.h34{height:61.391777px;}
.h35{height:62.939569px;}
.h3{height:63.351562px;}
.hc{height:63.949219px;}
.h36{height:69.058633px;}
.h24{height:69.980470px;}
.h7{height:74.500840px;}
.h14{height:76.457397px;}
.h12{height:77.052440px;}
.h22{height:90.033398px;}
.h2c{height:90.305722px;}
.h2e{height:101.245208px;}
.h2{height:106.475449px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1a{left:63.810000px;}
.x29{left:74.160000px;}
.x35{left:78.840000px;}
.x1{left:85.140000px;}
.x34{left:88.110000px;}
.x1b{left:95.670000px;}
.x2{left:99.720000px;}
.x27{left:102.780000px;}
.x1e{left:108.900000px;}
.x4b{left:110.610000px;}
.x5{left:116.730000px;}
.x4c{left:120.600000px;}
.x2b{left:128.160000px;}
.x3{left:129.869820px;}
.x5c{left:132.479442px;}
.x36{left:135.810000px;}
.x2a{left:138.509523px;}
.x52{left:145.801062px;}
.x28{left:148.230000px;}
.x21{left:150.569964px;}
.x5f{left:156.868472px;}
.x22{left:158.219991px;}
.x6b{left:162.629523px;}
.x59{left:165.871735px;}
.x4d{left:169.470000px;}
.x47{left:171.269595px;}
.x20{left:172.980000px;}
.x2d{left:175.680000px;}
.x64{left:178.471523px;}
.x4e{left:180.990000px;}
.x58{left:186.571208px;}
.x2c{left:188.640000px;}
.x6d{left:191.518911px;}
.x63{left:196.831155px;}
.x5e{left:198.719139px;}
.x53{left:202.770908px;}
.x6e{left:204.300000px;}
.x57{left:212.130728px;}
.x51{left:224.102083px;}
.x23{left:225.449496px;}
.x2f{left:229.230000px;}
.x40{left:232.290000px;}
.x50{left:233.461253px;}
.x44{left:236.160495px;}
.x2e{left:239.400000px;}
.x48{left:241.739190px;}
.x5b{left:245.159850px;}
.x5a{left:247.320000px;}
.x41{left:261.900000px;}
.x45{left:262.979955px;}
.x42{left:268.110000px;}
.x49{left:273.510000px;}
.x62{left:275.220723px;}
.x31{left:276.570000px;}
.x73{left:284.940000px;}
.x24{left:286.920234px;}
.x30{left:289.530000px;}
.x25{left:294.570261px;}
.x5d{left:296.820248px;}
.x4a{left:304.290000px;}
.x4f{left:312.300000px;}
.x1c{left:316.890000px;}
.x1f{left:319.680000px;}
.x56{left:325.260445px;}
.x43{left:327.690360px;}
.x1d{left:330.210000px;}
.x46{left:333.270000px;}
.x61{left:335.520391px;}
.x32{left:340.200000px;}
.x26{left:365.490117px;}
.x55{left:373.500179px;}
.x4{left:376.560000px;}
.x60{left:380.070000px;}
.x33{left:390.420000px;}
.x54{left:392.760000px;}
.x6{left:393.839613px;}
.x70{left:419.220000px;}
.x67{left:435.869577px;}
.x37{left:448.559370px;}
.x7{left:457.200081px;}
.x69{left:458.370000px;}
.x8{left:469.890873px;}
.x14{left:479.160240px;}
.x3f{left:480.421224px;}
.x13{left:481.860259px;}
.x12{left:490.410000px;}
.x65{left:492.030000px;}
.x74{left:495.359082px;}
.x19{left:501.749721px;}
.x3e{left:506.700000px;}
.x15{left:508.319871px;}
.x18{left:511.110000px;}
.x66{left:523.620000px;}
.x38{left:548.730000px;}
.x39{left:549.809928px;}
.x3a{left:555.659140px;}
.x3b{left:560.429380px;}
.xf{left:570.060322px;}
.xd{left:571.410331px;}
.xa{left:575.730170px;}
.x9{left:578.700000px;}
.xb{left:581.400019px;}
.x75{left:586.170000px;}
.xc{left:589.590013px;}
.x10{left:591.570000px;}
.x71{left:597.960000px;}
.xe{left:604.080370px;}
.x11{left:626.040000px;}
.x6f{left:661.768116px;}
.x3c{left:693.540000px;}
.x72{left:702.000000px;}
.x3d{left:734.310000px;}
.x16{left:740.518639px;}
.x68{left:746.100000px;}
.x6c{left:767.430000px;}
.x6a{left:768.600000px;}
.x17{left:819.900000px;}
@media print{
.vf{vertical-align:-41.602961pt;}
.vd{vertical-align:-32.001600pt;}
.v10{vertical-align:-30.719033pt;}
.va{vertical-align:-25.919200pt;}
.v9{vertical-align:-24.000000pt;}
.vc{vertical-align:-14.400000pt;}
.v2{vertical-align:-7.992320pt;}
.v7{vertical-align:-5.440000pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.600000pt;}
.v6{vertical-align:2.559467pt;}
.v3{vertical-align:8.000000pt;}
.v5{vertical-align:14.720000pt;}
.v13{vertical-align:18.577472pt;}
.v1{vertical-align:24.009973pt;}
.v11{vertical-align:24.961440pt;}
.v12{vertical-align:30.400608pt;}
.ve{vertical-align:36.481568pt;}
.vb{vertical-align:58.560000pt;}
.ls74{letter-spacing:-0.933016pt;}
.ls4d{letter-spacing:-0.251104pt;}
.ls83{letter-spacing:-0.080864pt;}
.ls6e{letter-spacing:-0.080160pt;}
.ls73{letter-spacing:-0.076608pt;}
.ls51{letter-spacing:-0.074816pt;}
.ls30{letter-spacing:-0.069472pt;}
.ls50{letter-spacing:-0.064128pt;}
.ls2f{letter-spacing:-0.058784pt;}
.ls22{letter-spacing:-0.053440pt;}
.ls80{letter-spacing:-0.052192pt;}
.ls1f{letter-spacing:-0.051200pt;}
.ls82{letter-spacing:-0.051072pt;}
.ls28{letter-spacing:-0.048096pt;}
.ls46{letter-spacing:-0.046816pt;}
.ls23{letter-spacing:-0.042752pt;}
.ls4b{letter-spacing:-0.041184pt;}
.ls45{letter-spacing:-0.038304pt;}
.ls21{letter-spacing:-0.037408pt;}
.ls49{letter-spacing:-0.034048pt;}
.ls29{letter-spacing:-0.032064pt;}
.ls81{letter-spacing:-0.029792pt;}
.ls53{letter-spacing:-0.026720pt;}
.ls47{letter-spacing:-0.025536pt;}
.ls4f{letter-spacing:-0.021376pt;}
.ls66{letter-spacing:-0.021280pt;}
.ls61{letter-spacing:-0.020736pt;}
.ls84{letter-spacing:-0.018592pt;}
.ls4a{letter-spacing:-0.017024pt;}
.ls25{letter-spacing:-0.016032pt;}
.ls48{letter-spacing:-0.012768pt;}
.ls27{letter-spacing:-0.010688pt;}
.ls62{letter-spacing:-0.008512pt;}
.ls26{letter-spacing:-0.005344pt;}
.ls63{letter-spacing:-0.004256pt;}
.ls20{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.004256pt;}
.lsc{letter-spacing:0.005344pt;}
.ls4e{letter-spacing:0.006400pt;}
.ls68{letter-spacing:0.006912pt;}
.ls3d{letter-spacing:0.007488pt;}
.ls0{letter-spacing:0.008512pt;}
.ls6d{letter-spacing:0.010368pt;}
.ls54{letter-spacing:0.010688pt;}
.ls4c{letter-spacing:0.011232pt;}
.ls65{letter-spacing:0.012768pt;}
.ls52{letter-spacing:0.012800pt;}
.ls67{letter-spacing:0.014912pt;}
.ls11{letter-spacing:0.016032pt;}
.ls31{letter-spacing:0.017024pt;}
.ls4{letter-spacing:0.021376pt;}
.ls39{letter-spacing:0.023680pt;}
.ls7c{letter-spacing:0.025536pt;}
.ls18{letter-spacing:0.026720pt;}
.ls76{letter-spacing:0.029824pt;}
.ls1e{letter-spacing:0.031968pt;}
.ls6c{letter-spacing:0.032000pt;}
.ls1c{letter-spacing:0.032064pt;}
.ls60{letter-spacing:0.034048pt;}
.ls1a{letter-spacing:0.037408pt;}
.ls7f{letter-spacing:0.038304pt;}
.ls42{letter-spacing:0.042560pt;}
.lsd{letter-spacing:0.042752pt;}
.lsa{letter-spacing:0.048096pt;}
.ls3c{letter-spacing:0.051072pt;}
.lsb{letter-spacing:0.052192pt;}
.ls1d{letter-spacing:0.053280pt;}
.ls33{letter-spacing:0.053440pt;}
.ls7a{letter-spacing:0.055328pt;}
.ls2e{letter-spacing:0.057600pt;}
.ls41{letter-spacing:0.058784pt;}
.ls3b{letter-spacing:0.059584pt;}
.ls86{letter-spacing:0.059648pt;}
.ls69{letter-spacing:0.063840pt;}
.ls3{letter-spacing:0.064128pt;}
.ls85{letter-spacing:0.068096pt;}
.ls1b{letter-spacing:0.069472pt;}
.ls15{letter-spacing:0.072352pt;}
.ls16{letter-spacing:0.074560pt;}
.ls7{letter-spacing:0.074816pt;}
.ls3e{letter-spacing:0.076608pt;}
.ls6{letter-spacing:0.080160pt;}
.ls6f{letter-spacing:0.080864pt;}
.ls71{letter-spacing:0.085120pt;}
.ls9{letter-spacing:0.085504pt;}
.ls70{letter-spacing:0.089376pt;}
.ls2d{letter-spacing:0.089472pt;}
.ls14{letter-spacing:0.090848pt;}
.ls38{letter-spacing:0.093632pt;}
.ls64{letter-spacing:0.095616pt;}
.ls1{letter-spacing:0.096192pt;}
.ls13{letter-spacing:0.096928pt;}
.ls7d{letter-spacing:0.097888pt;}
.ls5{letter-spacing:0.101536pt;}
.ls7b{letter-spacing:0.106400pt;}
.ls8{letter-spacing:0.106880pt;}
.ls6a{letter-spacing:0.110656pt;}
.lsf{letter-spacing:0.111840pt;}
.ls34{letter-spacing:0.112224pt;}
.ls6b{letter-spacing:0.114912pt;}
.ls44{letter-spacing:0.117568pt;}
.ls7e{letter-spacing:0.119168pt;}
.ls40{letter-spacing:0.122912pt;}
.ls10{letter-spacing:0.128256pt;}
.ls79{letter-spacing:0.131936pt;}
.ls43{letter-spacing:0.133600pt;}
.ls3f{letter-spacing:0.138944pt;}
.ls19{letter-spacing:0.154976pt;}
.ls24{letter-spacing:0.156576pt;}
.ls2{letter-spacing:0.160320pt;}
.ls2c{letter-spacing:0.161728pt;}
.ls77{letter-spacing:0.195776pt;}
.ls72{letter-spacing:0.703132pt;}
.ls75{letter-spacing:1.004786pt;}
.ls37{letter-spacing:1.678016pt;}
.ls57{letter-spacing:4.879072pt;}
.ls5a{letter-spacing:6.694654pt;}
.ls17{letter-spacing:15.488000pt;}
.ls32{letter-spacing:15.808000pt;}
.ls58{letter-spacing:25.407467pt;}
.ls2a{letter-spacing:27.654191pt;}
.ls2b{letter-spacing:27.975662pt;}
.ls78{letter-spacing:28.808864pt;}
.lse{letter-spacing:36.549312pt;}
.ls12{letter-spacing:36.869920pt;}
.ls5d{letter-spacing:73.551910pt;}
.ls5c{letter-spacing:170.831546pt;}
.ls55{letter-spacing:252.305440pt;}
.ls56{letter-spacing:260.642880pt;}
.ls59{letter-spacing:488.248032pt;}
.ls5b{letter-spacing:525.850460pt;}
.ls36{letter-spacing:689.821290pt;}
.ls5e{letter-spacing:711.791318pt;}
.ls35{letter-spacing:725.893779pt;}
.ls5f{letter-spacing:959.241573pt;}
.wscf{word-spacing:-57.773867pt;}
.wscb{word-spacing:-57.712533pt;}
.wsc2{word-spacing:-47.347200pt;}
.wscd{word-spacing:-31.660079pt;}
.ws1{word-spacing:-18.796576pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5c{word-spacing:-14.512800pt;}
.ws5f{word-spacing:-14.456267pt;}
.wsce{word-spacing:-14.443467pt;}
.wsc9{word-spacing:-14.428133pt;}
.wsc4{word-spacing:-14.400000pt;}
.wsc7{word-spacing:-13.520320pt;}
.ws68{word-spacing:-13.482912pt;}
.ws3{word-spacing:-13.429472pt;}
.ws0{word-spacing:-13.424128pt;}
.ws67{word-spacing:-13.408096pt;}
.ws4{word-spacing:-13.397408pt;}
.ws6{word-spacing:-13.360000pt;}
.ws126{word-spacing:-13.354656pt;}
.wsc8{word-spacing:-13.301216pt;}
.ws63{word-spacing:-11.831680pt;}
.ws62{word-spacing:-11.793376pt;}
.ws165{word-spacing:-10.835776pt;}
.ws160{word-spacing:-10.563392pt;}
.ws65{word-spacing:-10.419552pt;}
.ws161{word-spacing:-10.055793pt;}
.ws127{word-spacing:-8.650368pt;}
.ws128{word-spacing:-8.646912pt;}
.ws5{word-spacing:-8.640000pt;}
.wsd0{word-spacing:-8.619264pt;}
.wsc5{word-spacing:-8.400000pt;}
.ws66{word-spacing:-8.184320pt;}
.wsd1{word-spacing:-7.479296pt;}
.ws64{word-spacing:-7.383680pt;}
.ws166{word-spacing:-6.621408pt;}
.ws164{word-spacing:-2.328054pt;}
.ws163{word-spacing:-0.390252pt;}
.ws3c{word-spacing:-0.242592pt;}
.ws175{word-spacing:-0.212800pt;}
.ws17e{word-spacing:-0.200032pt;}
.ws15a{word-spacing:-0.195776pt;}
.ws159{word-spacing:-0.191520pt;}
.ws2c{word-spacing:-0.178944pt;}
.ws18f{word-spacing:-0.174496pt;}
.ws3f{word-spacing:-0.171488pt;}
.ws15c{word-spacing:-0.170240pt;}
.ws162{word-spacing:-0.165984pt;}
.ws15b{word-spacing:-0.161728pt;}
.ws83{word-spacing:-0.157472pt;}
.ws3e{word-spacing:-0.156576pt;}
.ws3d{word-spacing:-0.153216pt;}
.ws179{word-spacing:-0.144704pt;}
.ws190{word-spacing:-0.141664pt;}
.ws7e{word-spacing:-0.140448pt;}
.ws7f{word-spacing:-0.131936pt;}
.ws9{word-spacing:-0.127872pt;}
.wsa0{word-spacing:-0.123424pt;}
.wsa{word-spacing:-0.106560pt;}
.ws182{word-spacing:-0.106400pt;}
.ws133{word-spacing:-0.096928pt;}
.ws40{word-spacing:-0.057600pt;}
.wsd8{word-spacing:-0.042752pt;}
.ws73{word-spacing:-0.032064pt;}
.ws129{word-spacing:-0.032000pt;}
.wsd7{word-spacing:-0.021376pt;}
.ws121{word-spacing:-0.017024pt;}
.wsc{word-spacing:-0.016032pt;}
.wsbc{word-spacing:-0.012800pt;}
.ws9f{word-spacing:-0.010688pt;}
.ws90{word-spacing:-0.006400pt;}
.ws7b{word-spacing:-0.005344pt;}
.ws8{word-spacing:0.000000pt;}
.wsd{word-spacing:0.005344pt;}
.ws7{word-spacing:0.008512pt;}
.wsda{word-spacing:0.010688pt;}
.ws58{word-spacing:0.016032pt;}
.ws123{word-spacing:0.017024pt;}
.ws122{word-spacing:0.021280pt;}
.ws72{word-spacing:0.021376pt;}
.ws7d{word-spacing:0.029792pt;}
.ws18{word-spacing:0.032064pt;}
.ws125{word-spacing:0.034048pt;}
.ws124{word-spacing:0.038304pt;}
.ws120{word-spacing:0.042560pt;}
.ws19{word-spacing:0.042752pt;}
.ws8f{word-spacing:0.048096pt;}
.ws80{word-spacing:0.051072pt;}
.wsb{word-spacing:0.051200pt;}
.ws95{word-spacing:0.053440pt;}
.wsd9{word-spacing:0.058784pt;}
.ws3b{word-spacing:0.074816pt;}
.ws143{word-spacing:0.112224pt;}
.ws2b{word-spacing:0.117568pt;}
.ws1c{word-spacing:0.122912pt;}
.ws107{word-spacing:0.138944pt;}
.ws180{word-spacing:0.153216pt;}
.ws189{word-spacing:0.161728pt;}
.ws151{word-spacing:0.277888pt;}
.wsab{word-spacing:0.283232pt;}
.ws38{word-spacing:0.315296pt;}
.ws94{word-spacing:0.374080pt;}
.ws135{word-spacing:0.390112pt;}
.wsa1{word-spacing:0.432864pt;}
.ws188{word-spacing:0.463904pt;}
.ws187{word-spacing:0.502208pt;}
.ws17f{word-spacing:0.578816pt;}
.wsf7{word-spacing:0.609216pt;}
.ws6a{word-spacing:0.635936pt;}
.ws10b{word-spacing:0.641280pt;}
.wsbb{word-spacing:0.651968pt;}
.ws141{word-spacing:0.657312pt;}
.ws13b{word-spacing:0.700064pt;}
.ws13a{word-spacing:0.710752pt;}
.wse3{word-spacing:0.732128pt;}
.wsfb{word-spacing:0.737472pt;}
.ws153{word-spacing:0.785568pt;}
.ws111{word-spacing:0.919168pt;}
.ws10f{word-spacing:0.945888pt;}
.ws20{word-spacing:0.956576pt;}
.ws150{word-spacing:0.967264pt;}
.ws155{word-spacing:1.084832pt;}
.ws14f{word-spacing:1.095520pt;}
.ws18b{word-spacing:1.127840pt;}
.ws18a{word-spacing:1.221472pt;}
.ws39{word-spacing:1.282560pt;}
.wsf4{word-spacing:1.298592pt;}
.ws10a{word-spacing:1.405472pt;}
.ws12d{word-spacing:1.410816pt;}
.ws158{word-spacing:1.447040pt;}
.ws157{word-spacing:1.455552pt;}
.ws191{word-spacing:1.571136pt;}
.ws110{word-spacing:1.576480pt;}
.wsf3{word-spacing:1.597856pt;}
.ws86{word-spacing:1.624576pt;}
.wse9{word-spacing:1.640608pt;}
.ws77{word-spacing:1.661984pt;}
.ws10c{word-spacing:1.715424pt;}
.ws16{word-spacing:1.731456pt;}
.wsa4{word-spacing:1.752832pt;}
.wsb6{word-spacing:1.875744pt;}
.ws137{word-spacing:1.886432pt;}
.wsb7{word-spacing:1.891776pt;}
.ws85{word-spacing:1.897120pt;}
.ws76{word-spacing:1.907808pt;}
.ws3a{word-spacing:1.923840pt;}
.wsfc{word-spacing:1.955904pt;}
.wsfd{word-spacing:1.971936pt;}
.ws192{word-spacing:1.982624pt;}
.ws169{word-spacing:1.998656pt;}
.ws54{word-spacing:2.068128pt;}
.ws13e{word-spacing:2.078816pt;}
.ws173{word-spacing:2.089696pt;}
.ws112{word-spacing:2.191040pt;}
.wsb5{word-spacing:2.207072pt;}
.ws146{word-spacing:2.217760pt;}
.ws93{word-spacing:2.239136pt;}
.wsb4{word-spacing:2.249824pt;}
.ws168{word-spacing:2.281888pt;}
.ws8a{word-spacing:2.287232pt;}
.wsae{word-spacing:2.297920pt;}
.ws25{word-spacing:2.303264pt;}
.wsb2{word-spacing:2.313952pt;}
.ws136{word-spacing:2.329984pt;}
.wsb3{word-spacing:2.378080pt;}
.ws15e{word-spacing:2.408896pt;}
.ws15d{word-spacing:2.417408pt;}
.ws15f{word-spacing:2.447200pt;}
.ws145{word-spacing:2.506336pt;}
.ws24{word-spacing:2.511680pt;}
.wse1{word-spacing:2.527712pt;}
.ws172{word-spacing:2.532320pt;}
.ws142{word-spacing:2.533056pt;}
.ws9e{word-spacing:2.543744pt;}
.wse2{word-spacing:2.549088pt;}
.wsa7{word-spacing:2.559776pt;}
.ws132{word-spacing:2.565120pt;}
.ws4c{word-spacing:2.607872pt;}
.ws195{word-spacing:2.623904pt;}
.ws11b{word-spacing:2.629248pt;}
.ws1e{word-spacing:2.634592pt;}
.wse0{word-spacing:2.650624pt;}
.ws4b{word-spacing:2.672000pt;}
.ws75{word-spacing:2.677344pt;}
.wsed{word-spacing:2.853696pt;}
.ws140{word-spacing:2.859040pt;}
.ws17{word-spacing:2.875072pt;}
.wsee{word-spacing:2.880416pt;}
.wsbf{word-spacing:2.901792pt;}
.ws1d{word-spacing:2.917824pt;}
.wsf5{word-spacing:2.928512pt;}
.wsbe{word-spacing:3.014016pt;}
.ws13f{word-spacing:3.174336pt;}
.wsa3{word-spacing:3.190368pt;}
.ws108{word-spacing:3.201056pt;}
.ws52{word-spacing:3.211744pt;}
.ws10e{word-spacing:3.222432pt;}
.wsa2{word-spacing:3.227776pt;}
.ws10d{word-spacing:3.238464pt;}
.ws53{word-spacing:3.259840pt;}
.ws27{word-spacing:3.265184pt;}
.ws28{word-spacing:3.286560pt;}
.ws11e{word-spacing:3.323968pt;}
.ws130{word-spacing:3.334656pt;}
.ws17d{word-spacing:3.340960pt;}
.ws12a{word-spacing:3.356032pt;}
.ws17c{word-spacing:3.383520pt;}
.ws186{word-spacing:3.400544pt;}
.wsb9{word-spacing:3.494976pt;}
.ws9c{word-spacing:3.505664pt;}
.wsf1{word-spacing:3.644608pt;}
.ws4f{word-spacing:3.660640pt;}
.ws185{word-spacing:3.685696pt;}
.ws18e{word-spacing:3.689952pt;}
.ws17b{word-spacing:3.698464pt;}
.ws17a{word-spacing:3.732512pt;}
.ws171{word-spacing:3.758048pt;}
.wsb8{word-spacing:3.815616pt;}
.wsba{word-spacing:3.826304pt;}
.ws14c{word-spacing:3.863712pt;}
.ws46{word-spacing:3.879744pt;}
.ws14d{word-spacing:3.890432pt;}
.wsfa{word-spacing:3.895776pt;}
.ws45{word-spacing:3.901120pt;}
.wsd5{word-spacing:3.949216pt;}
.ws100{word-spacing:3.986624pt;}
.ws170{word-spacing:3.996384pt;}
.ws18d{word-spacing:4.009152pt;}
.ws18c{word-spacing:4.030432pt;}
.ws16f{word-spacing:4.111296pt;}
.ws6d{word-spacing:4.125568pt;}
.ws134{word-spacing:4.141600pt;}
.wsf9{word-spacing:4.168320pt;}
.ws6e{word-spacing:4.173664pt;}
.ws199{word-spacing:4.184352pt;}
.ws1f{word-spacing:4.195040pt;}
.ws198{word-spacing:4.221760pt;}
.ws70{word-spacing:4.440864pt;}
.ws13{word-spacing:4.451552pt;}
.ws92{word-spacing:4.462240pt;}
.wsf6{word-spacing:4.467584pt;}
.ws14a{word-spacing:4.478272pt;}
.wsd6{word-spacing:4.483616pt;}
.ws6f{word-spacing:4.488960pt;}
.ws14b{word-spacing:4.494304pt;}
.ws9b{word-spacing:4.499648pt;}
.ws8c{word-spacing:4.515680pt;}
.wsec{word-spacing:4.595840pt;}
.wsb0{word-spacing:4.617216pt;}
.ws16c{word-spacing:4.772192pt;}
.ws69{word-spacing:4.798912pt;}
.ws74{word-spacing:4.804256pt;}
.ws131{word-spacing:4.809600pt;}
.ws181{word-spacing:4.945472pt;}
.ws103{word-spacing:4.948544pt;}
.ws14{word-spacing:5.103520pt;}
.ws84{word-spacing:5.119552pt;}
.ws55{word-spacing:5.124896pt;}
.ws12b{word-spacing:5.135584pt;}
.wse7{word-spacing:5.247808pt;}
.ws178{word-spacing:5.251904pt;}
.wsd4{word-spacing:5.253152pt;}
.wsde{word-spacing:5.418816pt;}
.wseb{word-spacing:5.424160pt;}
.wsdd{word-spacing:5.434848pt;}
.ws12{word-spacing:5.445536pt;}
.ws99{word-spacing:5.477600pt;}
.ws57{word-spacing:5.498976pt;}
.ws9a{word-spacing:5.520352pt;}
.ws36{word-spacing:5.552416pt;}
.ws177{word-spacing:5.626432pt;}
.ws176{word-spacing:5.690272pt;}
.wsf{word-spacing:5.739456pt;}
.wsac{word-spacing:5.750144pt;}
.ws149{word-spacing:5.755488pt;}
.ws11a{word-spacing:5.760832pt;}
.ws97{word-spacing:5.776864pt;}
.wsdc{word-spacing:5.819616pt;}
.ws56{word-spacing:5.840992pt;}
.ws98{word-spacing:5.905120pt;}
.ws12c{word-spacing:6.076128pt;}
.wsf2{word-spacing:6.086816pt;}
.wsdf{word-spacing:6.097504pt;}
.wsaa{word-spacing:6.102848pt;}
.ws1b{word-spacing:6.118880pt;}
.ws21{word-spacing:6.177664pt;}
.ws14e{word-spacing:6.209728pt;}
.ws174{word-spacing:6.269088pt;}
.ws139{word-spacing:6.354016pt;}
.ws193{word-spacing:6.364704pt;}
.ws29{word-spacing:6.375392pt;}
.ws49{word-spacing:6.391424pt;}
.ws117{word-spacing:6.396768pt;}
.ws194{word-spacing:6.402112pt;}
.ws138{word-spacing:6.407456pt;}
.wsad{word-spacing:6.412800pt;}
.ws1a{word-spacing:6.476928pt;}
.ws118{word-spacing:6.487616pt;}
.ws71{word-spacing:6.712064pt;}
.ws42{word-spacing:6.722752pt;}
.wse4{word-spacing:6.851008pt;}
.wsff{word-spacing:7.043392pt;}
.ws96{word-spacing:7.064768pt;}
.ws88{word-spacing:7.075456pt;}
.ws13d{word-spacing:7.086144pt;}
.ws102{word-spacing:7.187680pt;}
.ws41{word-spacing:7.348000pt;}
.ws10{word-spacing:7.358688pt;}
.ws32{word-spacing:7.364032pt;}
.ws8b{word-spacing:7.369376pt;}
.ws87{word-spacing:7.401440pt;}
.ws2a{word-spacing:7.422816pt;}
.ws4d{word-spacing:7.433504pt;}
.ws43{word-spacing:7.444192pt;}
.ws44{word-spacing:7.481600pt;}
.ws104{word-spacing:7.502976pt;}
.ws167{word-spacing:7.663296pt;}
.ws89{word-spacing:7.668640pt;}
.ws147{word-spacing:7.673984pt;}
.ws196{word-spacing:7.684672pt;}
.ws13c{word-spacing:7.706048pt;}
.ws8d{word-spacing:7.812928pt;}
.ws6c{word-spacing:7.973248pt;}
.ws115{word-spacing:7.989280pt;}
.ws114{word-spacing:8.053408pt;}
.ws9d{word-spacing:8.096160pt;}
.ws154{word-spacing:8.320608pt;}
.ws6b{word-spacing:8.347328pt;}
.ws197{word-spacing:8.368704pt;}
.ws144{word-spacing:8.641248pt;}
.ws4a{word-spacing:8.651936pt;}
.ws106{word-spacing:8.667968pt;}
.wse{word-spacing:8.700032pt;}
.ws12e{word-spacing:8.956544pt;}
.ws23{word-spacing:9.052736pt;}
.wsa5{word-spacing:9.261152pt;}
.wsa6{word-spacing:9.357344pt;}
.ws22{word-spacing:9.362688pt;}
.wsc0{word-spacing:9.384064pt;}
.ws105{word-spacing:9.587136pt;}
.ws7a{word-spacing:9.907776pt;}
.ws79{word-spacing:9.918464pt;}
.wsf8{word-spacing:9.950528pt;}
.ws78{word-spacing:10.217728pt;}
.ws101{word-spacing:10.265824pt;}
.ws91{word-spacing:10.340640pt;}
.ws148{word-spacing:10.351328pt;}
.ws16e{word-spacing:10.543712pt;}
.ws30{word-spacing:10.554400pt;}
.ws26{word-spacing:10.565088pt;}
.ws11d{word-spacing:10.623872pt;}
.ws31{word-spacing:10.634560pt;}
.ws37{word-spacing:10.880384pt;}
.ws16d{word-spacing:10.891072pt;}
.ws2f{word-spacing:11.184992pt;}
.wse8{word-spacing:11.318592pt;}
.ws16a{word-spacing:11.446848pt;}
.ws2e{word-spacing:11.473568pt;}
.ws16b{word-spacing:11.478912pt;}
.ws34{word-spacing:11.516320pt;}
.ws12f{word-spacing:11.532352pt;}
.ws2d{word-spacing:11.553728pt;}
.ws116{word-spacing:11.644576pt;}
.ws156{word-spacing:11.649920pt;}
.wsea{word-spacing:11.858336pt;}
.ws8e{word-spacing:11.901088pt;}
.ws119{word-spacing:11.991936pt;}
.wsfe{word-spacing:12.152256pt;}
.wsa8{word-spacing:12.162944pt;}
.wsa9{word-spacing:12.178976pt;}
.wse6{word-spacing:12.211040pt;}
.wsaf{word-spacing:12.467552pt;}
.wsb1{word-spacing:12.478240pt;}
.ws184{word-spacing:12.644576pt;}
.ws183{word-spacing:12.750976pt;}
.ws152{word-spacing:12.798880pt;}
.wsc1{word-spacing:12.804224pt;}
.ws35{word-spacing:13.108832pt;}
.ws47{word-spacing:13.130208pt;}
.ws48{word-spacing:13.194336pt;}
.ws11c{word-spacing:13.434816pt;}
.wsbd{word-spacing:13.440160pt;}
.wsd3{word-spacing:13.755456pt;}
.ws33{word-spacing:13.889056pt;}
.ws11{word-spacing:14.396736pt;}
.ws109{word-spacing:14.781504pt;}
.wsd2{word-spacing:14.856320pt;}
.ws51{word-spacing:15.673952pt;}
.ws50{word-spacing:15.727392pt;}
.wse5{word-spacing:16.021312pt;}
.ws15{word-spacing:16.117504pt;}
.ws4e{word-spacing:16.309888pt;}
.ws113{word-spacing:17.934464pt;}
.wsf0{word-spacing:22.049344pt;}
.wsef{word-spacing:22.060032pt;}
.ws81{word-spacing:90.248480pt;}
.ws82{word-spacing:101.126816pt;}
.ws7c{word-spacing:185.012576pt;}
.wsdb{word-spacing:272.923424pt;}
.wsc3{word-spacing:327.911680pt;}
.wscc{word-spacing:483.625827pt;}
.ws11f{word-spacing:484.822240pt;}
.wsca{word-spacing:514.185478pt;}
.ws60{word-spacing:556.144144pt;}
.ws5a{word-spacing:576.571527pt;}
.ws5d{word-spacing:593.016228pt;}
.ws59{word-spacing:599.153806pt;}
.wsc6{word-spacing:707.861120pt;}
.ws5b{word-spacing:801.980588pt;}
.ws61{word-spacing:831.772058pt;}
.ws5e{word-spacing:866.121668pt;}
._5f{margin-left:-628.650116pt;}
._5e{margin-left:-625.783761pt;}
._30{margin-left:-387.599040pt;}
._39{margin-left:-342.881280pt;}
._1d{margin-left:-327.905282pt;}
._22{margin-left:-297.848499pt;}
._3b{margin-left:-294.059520pt;}
._13{margin-left:-271.838087pt;}
._11{margin-left:-269.280073pt;}
._1c{margin-left:-266.826536pt;}
._12{margin-left:-265.784508pt;}
._f{margin-left:-263.076024pt;}
._10{margin-left:-262.115322pt;}
._21{margin-left:-260.680657pt;}
._e{margin-left:-258.272515pt;}
._18{margin-left:-256.133505pt;}
._19{margin-left:-254.531292pt;}
._20{margin-left:-249.925721pt;}
._1a{margin-left:-243.013933pt;}
._33{margin-left:-240.641280pt;}
._9{margin-left:-234.833707pt;}
._31{margin-left:-226.241280pt;}
._35{margin-left:-219.387057pt;}
._c{margin-left:-216.134747pt;}
._d{margin-left:-213.576733pt;}
._16{margin-left:-209.506781pt;}
._17{margin-left:-207.578796pt;}
._37{margin-left:-204.802560pt;}
._3c{margin-left:-200.620800pt;}
._46{margin-left:-186.827013pt;}
._24{margin-left:-184.986432pt;}
._40{margin-left:-174.765093pt;}
._41{margin-left:-158.859519pt;}
._4a{margin-left:-150.165834pt;}
._32{margin-left:-145.163520pt;}
._44{margin-left:-142.786579pt;}
._45{margin-left:-133.564116pt;}
._43{margin-left:-127.804405pt;}
._48{margin-left:-123.734290pt;}
._34{margin-left:-107.205120pt;}
._a{margin-left:-101.527656pt;}
._1f{margin-left:-100.635375pt;}
._49{margin-left:-99.688807pt;}
._38{margin-left:-95.368320pt;}
._3f{margin-left:-83.856311pt;}
._36{margin-left:-80.323200pt;}
._1b{margin-left:-78.531663pt;}
._3a{margin-left:-69.742080pt;}
._3d{margin-left:-67.501440pt;}
._b{margin-left:-43.908700pt;}
._15{margin-left:-42.944770pt;}
._42{margin-left:-41.334820pt;}
._2b{margin-left:-24.279264pt;}
._2d{margin-left:-11.840192pt;}
._2a{margin-left:-10.239936pt;}
._4{margin-left:-6.011680pt;}
._5{margin-left:-4.391584pt;}
._5a{margin-left:-2.164384pt;}
._1{margin-left:-0.929856pt;}
._2{width:0.913824pt;}
._3{width:2.222688pt;}
._7{width:3.756832pt;}
._3e{width:5.680672pt;}
._6{width:7.764832pt;}
._5b{width:10.319264pt;}
._2f{width:11.468224pt;}
._2c{width:13.771552pt;}
._4c{width:22.177600pt;}
._5d{width:25.033792pt;}
._5c{width:25.995648pt;}
._4b{width:48.915450pt;}
._2e{width:79.885120pt;}
._58{width:102.315456pt;}
._29{width:111.911520pt;}
._4f{width:122.168480pt;}
._53{width:133.101984pt;}
._1e{width:134.722240pt;}
._25{width:142.078048pt;}
._26{width:156.156896pt;}
._56{width:161.516416pt;}
._27{width:163.247392pt;}
._59{width:168.228128pt;}
._23{width:169.281888pt;}
._47{width:191.357952pt;}
._52{width:195.837632pt;}
._28{width:200.317152pt;}
._14{width:207.357888pt;}
._57{width:227.433344pt;}
._4e{width:233.275616pt;}
._51{width:343.044160pt;}
._4d{width:372.800064pt;}
._50{width:381.758944pt;}
._55{width:412.797952pt;}
._54{width:425.265824pt;}
._8{width:649.916736pt;}
._0{width:1467.366656pt;}
.fs7{font-size:25.513600pt;}
.fse{font-size:26.560000pt;}
.fs10{font-size:29.440000pt;}
.fsd{font-size:32.000000pt;}
.fs14{font-size:33.600000pt;}
.fs1c{font-size:33.642667pt;}
.fs18{font-size:33.665067pt;}
.fs1a{font-size:33.701333pt;}
.fsc{font-size:33.731200pt;}
.fsa{font-size:33.862400pt;}
.fs11{font-size:34.010133pt;}
.fs6{font-size:34.018667pt;}
.fs5{font-size:34.560000pt;}
.fs12{font-size:36.525502pt;}
.fsf{font-size:37.440000pt;}
.fs0{font-size:42.560000pt;}
.fs1d{font-size:44.856533pt;}
.fs3{font-size:53.440000pt;}
.fs16{font-size:56.479151pt;}
.fs15{font-size:57.600000pt;}
.fs17{font-size:57.712533pt;}
.fs1b{font-size:57.773867pt;}
.fsb{font-size:57.825067pt;}
.fs8{font-size:57.873600pt;}
.fs9{font-size:58.051200pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fs13{font-size:86.400000pt;}
.fs19{font-size:86.661333pt;}
.fs1{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:98.983291pt;}
.y5b{bottom:99.781875pt;}
.y123{bottom:109.936747pt;}
.yce{bottom:110.185179pt;}
.y97{bottom:110.426595pt;}
.y156{bottom:113.067067pt;}
.y2b{bottom:114.583763pt;}
.y191{bottom:114.906547pt;}
.y5a{bottom:115.382347pt;}
.y18a{bottom:115.946547pt;}
.y122{bottom:125.537219pt;}
.ycd{bottom:125.785651pt;}
.y96{bottom:126.027067pt;}
.y190{bottom:127.467067pt;}
.y189{bottom:128.507067pt;}
.y2a{bottom:130.184235pt;}
.y59{bottom:130.982819pt;}
.y1ac{bottom:138.667395pt;}
.y155{bottom:138.907067pt;}
.y121{bottom:141.137691pt;}
.ycc{bottom:141.386123pt;}
.y18f{bottom:145.707067pt;}
.y29{bottom:145.784707pt;}
.y58{bottom:146.583291pt;}
.y188{bottom:146.747067pt;}
.y95{bottom:150.027067pt;}
.y120{bottom:156.738163pt;}
.ycb{bottom:156.986595pt;}
.y154{bottom:159.227067pt;}
.y28{bottom:161.385179pt;}
.y57{bottom:162.183763pt;}
.y11f{bottom:172.338635pt;}
.yca{bottom:172.587067pt;}
.y27{bottom:176.985651pt;}
.y1ab{bottom:177.467067pt;}
.y56{bottom:177.784235pt;}
.y153{bottom:179.547067pt;}
.y1a5{bottom:187.547067pt;}
.y11e{bottom:187.939107pt;}
.y94{bottom:188.345651pt;}
.y26{bottom:192.586123pt;}
.y55{bottom:193.384707pt;}
.yc9{bottom:196.587067pt;}
.y1a4{bottom:197.146624pt;}
.y152{bottom:199.867067pt;}
.y11d{bottom:203.539579pt;}
.y93{bottom:203.946123pt;}
.y25{bottom:208.186595pt;}
.y54{bottom:208.985179pt;}
.y197{bottom:210.427067pt;}
.y11c{bottom:219.140051pt;}
.y92{bottom:219.546595pt;}
.y151{bottom:220.187067pt;}
.y24{bottom:223.787067pt;}
.y53{bottom:224.585651pt;}
.y11b{bottom:234.740523pt;}
.y198{bottom:234.987054pt;}
.y91{bottom:235.143763pt;}
.y52{bottom:240.186123pt;}
.y150{bottom:240.507067pt;}
.yc8{bottom:242.898603pt;}
.y23{bottom:248.346712pt;}
.y11a{bottom:250.340995pt;}
.y90{bottom:250.744235pt;}
.y51{bottom:255.786595pt;}
.yc7{bottom:258.499075pt;}
.y199{bottom:258.827089pt;}
.y14f{bottom:260.827067pt;}
.y8f{bottom:266.344707pt;}
.y22{bottom:270.187200pt;}
.y50{bottom:271.385147pt;}
.y119{bottom:273.941435pt;}
.yc6{bottom:274.099547pt;}
.y14e{bottom:281.147067pt;}
.y8e{bottom:281.945179pt;}
.y19a{bottom:283.307175pt;}
.y4f{bottom:286.985619pt;}
.y118{bottom:289.541907pt;}
.yc5{bottom:289.700019pt;}
.y8d{bottom:297.545651pt;}
.y14d{bottom:301.467067pt;}
.y4e{bottom:302.586091pt;}
.y117{bottom:305.142379pt;}
.yc4{bottom:305.300491pt;}
.y19b{bottom:307.867163pt;}
.y1a6{bottom:312.107067pt;}
.y8c{bottom:313.146123pt;}
.y4d{bottom:318.186563pt;}
.y116{bottom:320.742851pt;}
.yc3{bottom:320.900963pt;}
.y14c{bottom:321.787067pt;}
.y21{bottom:323.064840pt;}
.y8b{bottom:328.746595pt;}
.y19c{bottom:332.427151pt;}
.y4c{bottom:334.666123pt;}
.y115{bottom:336.343323pt;}
.yc2{bottom:336.501435pt;}
.y20{bottom:338.665312pt;}
.y14b{bottom:342.107067pt;}
.y8a{bottom:344.347067pt;}
.y4b{bottom:350.266595pt;}
.y114{bottom:351.943795pt;}
.yc1{bottom:352.101907pt;}
.y1f{bottom:354.265784pt;}
.y19d{bottom:356.267186pt;}
.y14a{bottom:360.427248pt;}
.y4a{bottom:365.867067pt;}
.y89{bottom:367.467067pt;}
.y113{bottom:367.544267pt;}
.yc0{bottom:367.702379pt;}
.y149{bottom:368.107200pt;}
.y1e{bottom:369.866256pt;}
.y19e{bottom:380.747272pt;}
.y112{bottom:383.144739pt;}
.ybf{bottom:383.302851pt;}
.y1d{bottom:385.466728pt;}
.y49{bottom:389.867067pt;}
.y148{bottom:392.266907pt;}
.y88{bottom:392.667067pt;}
.y147{bottom:398.587067pt;}
.y111{bottom:398.745211pt;}
.ybe{bottom:398.903323pt;}
.y1c{bottom:401.064707pt;}
.y19f{bottom:405.307260pt;}
.y87{bottom:411.547067pt;}
.y110{bottom:414.345683pt;}
.ybd{bottom:414.503795pt;}
.y1b{bottom:416.665179pt;}
.y48{bottom:417.146712pt;}
.y146{bottom:423.307067pt;}
.y1a0{bottom:429.787346pt;}
.y10f{bottom:429.946155pt;}
.ybc{bottom:430.104267pt;}
.y86{bottom:430.507067pt;}
.y1a{bottom:432.265651pt;}
.y1aa{bottom:432.587067pt;}
.y47{bottom:438.987200pt;}
.ybb{bottom:445.704739pt;}
.y19{bottom:447.866123pt;}
.y1a9{bottom:448.027200pt;}
.y85{bottom:449.227067pt;}
.y145{bottom:449.867067pt;}
.y10e{bottom:453.546595pt;}
.y1a1{bottom:453.627381pt;}
.yba{bottom:461.305211pt;}
.y18{bottom:463.466595pt;}
.y1a8{bottom:464.187200pt;}
.y81{bottom:468.827067pt;}
.y83{bottom:468.907067pt;}
.y10d{bottom:469.146499pt;}
.y144{bottom:471.947067pt;}
.yb9{bottom:476.905683pt;}
.y1a2{bottom:478.187369pt;}
.y17{bottom:479.067067pt;}
.y1a7{bottom:479.547067pt;}
.y80{bottom:480.186603pt;}
.y84{bottom:480.187067pt;}
.y82{bottom:480.267067pt;}
.y143{bottom:482.495267pt;}
.y46{bottom:483.387067pt;}
.y10c{bottom:484.746971pt;}
.y7f{bottom:491.067067pt;}
.yb8{bottom:492.506155pt;}
.y142{bottom:498.095739pt;}
.y10b{bottom:500.347443pt;}
.y1a3{bottom:502.747356pt;}
.y16{bottom:503.627067pt;}
.y45{bottom:505.627067pt;}
.y7e{bottom:505.707067pt;}
.y3b{bottom:508.667067pt;}
.y3a{bottom:510.267580pt;}
.y141{bottom:513.696211pt;}
.yb7{bottom:516.106595pt;}
.yf7{bottom:524.826817pt;}
.y108{bottom:525.146478pt;}
.yf6{bottom:525.146675pt;}
.y100{bottom:526.022736pt;}
.yfd{bottom:526.024180pt;}
.yfa{bottom:526.025625pt;}
.y106{bottom:527.707067pt;}
.y7d{bottom:528.187067pt;}
.y196{bottom:529.226627pt;}
.y140{bottom:529.296683pt;}
.yb6{bottom:531.704707pt;}
.yf9{bottom:534.267067pt;}
.y104{bottom:535.386825pt;}
.yf4{bottom:535.627067pt;}
.y39{bottom:535.787534pt;}
.yff{bottom:537.703167pt;}
.yfc{bottom:537.704612pt;}
.y7c{bottom:538.267067pt;}
.y102{bottom:538.982859pt;}
.y109{bottom:538.987067pt;}
.y105{bottom:538.987414pt;}
.y13f{bottom:544.897155pt;}
.y101{bottom:546.902211pt;}
.yfe{bottom:546.903656pt;}
.yfb{bottom:546.905100pt;}
.yb5{bottom:547.305179pt;}
.y10a{bottom:547.946349pt;}
.yf8{bottom:548.106796pt;}
.y187{bottom:548.901875pt;}
.y103{bottom:552.347021pt;}
.y15{bottom:552.506595pt;}
.y195{bottom:552.827067pt;}
.y18e{bottom:555.867067pt;}
.yf5{bottom:559.067067pt;}
.y13e{bottom:560.497627pt;}
.y38{bottom:561.307487pt;}
.yb4{bottom:562.905651pt;}
.y107{bottom:564.427067pt;}
.y186{bottom:564.502347pt;}
.y16b{bottom:564.986123pt;}
.y7b{bottom:565.227067pt;}
.y14{bottom:568.107067pt;}
.y194{bottom:575.947067pt;}
.y13d{bottom:576.098099pt;}
.yb3{bottom:578.506123pt;}
.y18d{bottom:578.986915pt;}
.y185{bottom:580.102819pt;}
.y16a{bottom:580.586595pt;}
.yf2{bottom:585.787072pt;}
.y37{bottom:586.827440pt;}
.yef{bottom:587.466507pt;}
.y7a{bottom:587.867067pt;}
.y13c{bottom:591.698571pt;}
.y13{bottom:592.667067pt;}
.yb2{bottom:594.106595pt;}
.y193{bottom:594.187067pt;}
.y184{bottom:595.703291pt;}
.y169{bottom:596.185651pt;}
.y18c{bottom:597.227067pt;}
.yf1{bottom:597.387291pt;}
.yee{bottom:598.667067pt;}
.yf3{bottom:606.667467pt;}
.y44{bottom:607.145957pt;}
.y40{bottom:607.146807pt;}
.y13b{bottom:607.299043pt;}
.yf0{bottom:607.707735pt;}
.yb1{bottom:609.707067pt;}
.y79{bottom:610.187067pt;}
.y183{bottom:611.303763pt;}
.y168{bottom:611.786123pt;}
.y36{bottom:614.747410pt;}
.y43{bottom:616.746025pt;}
.y3f{bottom:616.746875pt;}
.y1d7{bottom:618.741435pt;}
.y13a{bottom:622.899515pt;}
.y35{bottom:624.267534pt;}
.y42{bottom:626.266148pt;}
.y3e{bottom:626.266999pt;}
.y182{bottom:626.904235pt;}
.y167{bottom:627.386595pt;}
.y78{bottom:630.905147pt;}
.y74{bottom:630.906211pt;}
.y76{bottom:630.986011pt;}
.yb0{bottom:632.827067pt;}
.yed{bottom:633.787067pt;}
.y41{bottom:635.866216pt;}
.y3d{bottom:635.867067pt;}
.y139{bottom:638.499987pt;}
.y12{bottom:641.541915pt;}
.y1d6{bottom:642.341875pt;}
.y181{bottom:642.504707pt;}
.y166{bottom:642.986595pt;}
.y77{bottom:643.465667pt;}
.y73{bottom:643.466731pt;}
.y75{bottom:643.546531pt;}
.y1bf{bottom:645.063451pt;}
.yec{bottom:650.262299pt;}
.y34{bottom:650.586926pt;}
.yaf{bottom:651.067067pt;}
.yab{bottom:653.467067pt;}
.y72{bottom:653.547067pt;}
.y138{bottom:654.100459pt;}
.y11{bottom:657.142387pt;}
.y1be{bottom:657.623971pt;}
.y1d5{bottom:657.942347pt;}
.y180{bottom:658.105179pt;}
.y165{bottom:658.585312pt;}
.yeb{bottom:665.862771pt;}
.y71{bottom:667.947067pt;}
.y137{bottom:669.700931pt;}
.y1bd{bottom:670.183427pt;}
.y10{bottom:672.742859pt;}
.y1d4{bottom:673.542819pt;}
.y17f{bottom:673.705651pt;}
.y164{bottom:674.185784pt;}
.y33{bottom:676.106879pt;}
.yea{bottom:681.463243pt;}
.y136{bottom:685.301403pt;}
.ya9{bottom:688.106480pt;}
.yf{bottom:688.343331pt;}
.y1d3{bottom:689.143291pt;}
.y17e{bottom:689.306123pt;}
.y163{bottom:689.786256pt;}
.y70{bottom:690.427067pt;}
.y1bc{bottom:693.383947pt;}
.yae{bottom:696.506890pt;}
.ye9{bottom:697.063715pt;}
.y135{bottom:700.901875pt;}
.y6f{bottom:700.985179pt;}
.y32{bottom:701.626833pt;}
.ye{bottom:703.943803pt;}
.y1d2{bottom:704.743763pt;}
.y17d{bottom:704.906595pt;}
.y162{bottom:705.386728pt;}
.y1bb{bottom:705.944467pt;}
.yad{bottom:706.107101pt;}
.ye8{bottom:712.664187pt;}
.ya8{bottom:714.026453pt;}
.y134{bottom:716.502347pt;}
.y6e{bottom:716.585651pt;}
.yd{bottom:719.544275pt;}
.y1d1{bottom:720.344235pt;}
.y17c{bottom:720.507067pt;}
.y161{bottom:720.985651pt;}
.y3c{bottom:725.147200pt;}
.y31{bottom:726.747067pt;}
.ye7{bottom:728.264659pt;}
.y1ba{bottom:729.144987pt;}
.y133{bottom:732.102819pt;}
.y6d{bottom:732.186123pt;}
.yc{bottom:735.144747pt;}
.y1d0{bottom:735.944707pt;}
.y160{bottom:736.586123pt;}
.y1b9{bottom:741.705507pt;}
.ye6{bottom:743.865131pt;}
.y17b{bottom:745.067067pt;}
.ya7{bottom:746.346283pt;}
.y132{bottom:747.703291pt;}
.y6c{bottom:747.786595pt;}
.yb{bottom:750.745219pt;}
.y30{bottom:750.982019pt;}
.y1cf{bottom:751.545179pt;}
.y15f{bottom:752.186595pt;}
.y1b8{bottom:754.266027pt;}
.ye5{bottom:759.465603pt;}
.y131{bottom:763.303763pt;}
.y6b{bottom:763.386499pt;}
.ya{bottom:766.345691pt;}
.y2f{bottom:766.582491pt;}
.yac{bottom:767.067714pt;}
.y1ce{bottom:767.145651pt;}
.y15e{bottom:767.787067pt;}
.ya6{bottom:771.866637pt;}
.ye4{bottom:775.066075pt;}
.yaa{bottom:776.587067pt;}
.y1b7{bottom:777.466547pt;}
.y130{bottom:778.904235pt;}
.y6a{bottom:778.986971pt;}
.y9{bottom:781.946163pt;}
.y2e{bottom:782.182963pt;}
.y1cd{bottom:782.746123pt;}
.y17a{bottom:785.945651pt;}
.y1b6{bottom:790.027067pt;}
.ye3{bottom:790.666547pt;}
.y15d{bottom:792.347067pt;}
.y12f{bottom:794.504707pt;}
.y69{bottom:794.587443pt;}
.ya5{bottom:797.307067pt;}
.y8{bottom:797.546635pt;}
.y2d{bottom:797.783435pt;}
.y1cc{bottom:798.346595pt;}
.y179{bottom:801.546123pt;}
.ye2{bottom:806.267019pt;}
.y12e{bottom:810.105179pt;}
.y7{bottom:813.386251pt;}
.y1cb{bottom:813.947067pt;}
.y1b5{bottom:814.667067pt;}
.y178{bottom:817.146595pt;}
.y68{bottom:817.547067pt;}
.y67{bottom:821.147200pt;}
.ye1{bottom:821.867491pt;}
.ya4{bottom:825.141171pt;}
.y12d{bottom:825.705651pt;}
.y177{bottom:832.746595pt;}
.y1ca{bottom:838.747067pt;}
.ya3{bottom:840.741643pt;}
.y12c{bottom:841.306123pt;}
.y66{bottom:842.027067pt;}
.y6{bottom:844.986659pt;}
.y15c{bottom:845.222819pt;}
.yde{bottom:845.465827pt;}
.ydb{bottom:845.466667pt;}
.yd9{bottom:845.467067pt;}
.y65{bottom:845.707067pt;}
.y176{bottom:848.344235pt;}
.yd8{bottom:855.867067pt;}
.ya2{bottom:856.342115pt;}
.y12b{bottom:856.906595pt;}
.ye0{bottom:859.227067pt;}
.y15b{bottom:860.823291pt;}
.y175{bottom:863.944707pt;}
.ydf{bottom:865.705627pt;}
.ydc{bottom:865.706467pt;}
.yda{bottom:865.706867pt;}
.y64{bottom:867.707067pt;}
.ya1{bottom:871.942587pt;}
.y12a{bottom:872.507067pt;}
.ydd{bottom:873.866227pt;}
.y15a{bottom:876.423763pt;}
.y5{bottom:876.587067pt;}
.y174{bottom:879.545179pt;}
.ya0{bottom:887.543059pt;}
.y1b4{bottom:888.904235pt;}
.y1c9{bottom:891.146547pt;}
.y159{bottom:892.024235pt;}
.y63{bottom:892.026123pt;}
.yd6{bottom:894.264707pt;}
.y173{bottom:895.145651pt;}
.y129{bottom:897.067067pt;}
.yd7{bottom:900.267067pt;}
.y9f{bottom:903.143531pt;}
.y1c8{bottom:903.702699pt;}
.y1b3{bottom:904.504707pt;}
.y158{bottom:907.624707pt;}
.y62{bottom:907.626595pt;}
.y4{bottom:908.667067pt;}
.yd5{bottom:910.744267pt;}
.y172{bottom:910.746123pt;}
.y1c7{bottom:916.263219pt;}
.y9e{bottom:918.744003pt;}
.y1b2{bottom:920.105179pt;}
.y157{bottom:923.225179pt;}
.y61{bottom:923.226595pt;}
.yd4{bottom:926.344739pt;}
.y171{bottom:926.346595pt;}
.y1c6{bottom:934.183107pt;}
.y9d{bottom:934.344475pt;}
.y1b1{bottom:935.705651pt;}
.y60{bottom:938.825651pt;}
.y170{bottom:941.945683pt;}
.y1c5{bottom:946.743627pt;}
.y128{bottom:949.934723pt;}
.y9c{bottom:949.944947pt;}
.yd3{bottom:949.945179pt;}
.y1b0{bottom:951.306123pt;}
.y3{bottom:953.385739pt;}
.y5f{bottom:954.426123pt;}
.y16f{bottom:957.546155pt;}
.y1c4{bottom:959.304147pt;}
.y127{bottom:965.535195pt;}
.y9b{bottom:965.545419pt;}
.yd2{bottom:965.545651pt;}
.y1af{bottom:966.906595pt;}
.y5e{bottom:970.026595pt;}
.y1c3{bottom:971.863603pt;}
.y126{bottom:981.135667pt;}
.y9a{bottom:981.145891pt;}
.yd1{bottom:981.146123pt;}
.y16e{bottom:981.146595pt;}
.y1ae{bottom:982.507067pt;}
.y2{bottom:984.027067pt;}
.y5d{bottom:985.627067pt;}
.y1c2{bottom:989.783491pt;}
.y125{bottom:996.736139pt;}
.y16d{bottom:996.745251pt;}
.y99{bottom:996.746363pt;}
.yd0{bottom:996.746595pt;}
.y1c1{bottom:1002.344011pt;}
.y192{bottom:1004.347067pt;}
.y18b{bottom:1006.907067pt;}
.y1ad{bottom:1007.067067pt;}
.y5c{bottom:1009.627067pt;}
.y124{bottom:1012.336611pt;}
.y16c{bottom:1012.345723pt;}
.y98{bottom:1012.346835pt;}
.ycf{bottom:1012.347067pt;}
.y1c0{bottom:1014.903467pt;}
.y1{bottom:1057.547067pt;}
.ha{height:18.574598pt;}
.h3f{height:24.492781pt;}
.h1d{height:24.760307pt;}
.h9{height:24.766520pt;}
.h1a{height:27.257344pt;}
.h16{height:28.078125pt;}
.h26{height:29.482031pt;}
.h25{height:29.564062pt;}
.h30{height:29.570945pt;}
.h32{height:29.653224pt;}
.h21{height:30.408750pt;}
.h17{height:30.984844pt;}
.h19{height:30.986700pt;}
.h23{height:31.122656pt;}
.h2d{height:31.216518pt;}
.h18{height:31.304044pt;}
.h40{height:32.656783pt;}
.h20{height:33.832460pt;}
.h3e{height:37.343906pt;}
.h41{height:37.447813pt;}
.hb{height:37.801094pt;}
.h1{height:38.154375pt;}
.h1b{height:38.905781pt;}
.h42{height:41.947160pt;}
.h4{height:46.890469pt;}
.h6{height:47.020937pt;}
.h15{height:47.023209pt;}
.h3c{height:47.026474pt;}
.hf{height:47.026601pt;}
.he{height:47.028618pt;}
.h3d{height:47.032266pt;}
.h1c{height:47.034154pt;}
.h5{height:47.464531pt;}
.hd{height:49.499844pt;}
.h29{height:50.639366pt;}
.h31{height:50.693183pt;}
.h13{height:50.738108pt;}
.h2a{height:50.780266pt;}
.h33{height:50.834232pt;}
.h11{height:50.936527pt;}
.h28{height:52.314917pt;}
.h2b{height:53.457361pt;}
.h2f{height:53.514172pt;}
.h10{height:53.606552pt;}
.h27{height:54.250469pt;}
.h39{height:54.326263pt;}
.h3a{height:54.330039pt;}
.h37{height:54.330572pt;}
.h38{height:54.331394pt;}
.h3b{height:54.331639pt;}
.h1e{height:54.333815pt;}
.h8{height:54.334348pt;}
.h1f{height:54.418190pt;}
.h34{height:54.570469pt;}
.h35{height:55.946284pt;}
.h3{height:56.312500pt;}
.hc{height:56.843750pt;}
.h36{height:61.385452pt;}
.h24{height:62.204862pt;}
.h7{height:66.222969pt;}
.h14{height:67.962131pt;}
.h12{height:68.491058pt;}
.h22{height:80.029687pt;}
.h2c{height:80.271753pt;}
.h2e{height:89.995740pt;}
.h2{height:94.644844pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1a{left:56.720000pt;}
.x29{left:65.920000pt;}
.x35{left:70.080000pt;}
.x1{left:75.680000pt;}
.x34{left:78.320000pt;}
.x1b{left:85.040000pt;}
.x2{left:88.640000pt;}
.x27{left:91.360000pt;}
.x1e{left:96.800000pt;}
.x4b{left:98.320000pt;}
.x5{left:103.760000pt;}
.x4c{left:107.200000pt;}
.x2b{left:113.920000pt;}
.x3{left:115.439840pt;}
.x5c{left:117.759504pt;}
.x36{left:120.720000pt;}
.x2a{left:123.119576pt;}
.x52{left:129.600944pt;}
.x28{left:131.760000pt;}
.x21{left:133.839968pt;}
.x5f{left:139.438642pt;}
.x22{left:140.639992pt;}
.x6b{left:144.559576pt;}
.x59{left:147.441542pt;}
.x4d{left:150.640000pt;}
.x47{left:152.239640pt;}
.x20{left:153.760000pt;}
.x2d{left:156.160000pt;}
.x64{left:158.641353pt;}
.x4e{left:160.880000pt;}
.x58{left:165.841074pt;}
.x2c{left:167.680000pt;}
.x6d{left:170.239032pt;}
.x63{left:174.961026pt;}
.x5e{left:176.639235pt;}
.x53{left:180.240807pt;}
.x6e{left:181.600000pt;}
.x57{left:188.560647pt;}
.x51{left:199.201852pt;}
.x23{left:200.399552pt;}
.x2f{left:203.760000pt;}
.x40{left:206.480000pt;}
.x50{left:207.521114pt;}
.x44{left:209.920440pt;}
.x2e{left:212.800000pt;}
.x48{left:214.879280pt;}
.x5b{left:217.919867pt;}
.x5a{left:219.840000pt;}
.x41{left:232.800000pt;}
.x45{left:233.759960pt;}
.x42{left:238.320000pt;}
.x49{left:243.120000pt;}
.x62{left:244.640643pt;}
.x31{left:245.840000pt;}
.x73{left:253.280000pt;}
.x24{left:255.040208pt;}
.x30{left:257.360000pt;}
.x25{left:261.840232pt;}
.x5d{left:263.840220pt;}
.x4a{left:270.480000pt;}
.x4f{left:277.600000pt;}
.x1c{left:281.680000pt;}
.x1f{left:284.160000pt;}
.x56{left:289.120395pt;}
.x43{left:291.280320pt;}
.x1d{left:293.520000pt;}
.x46{left:296.240000pt;}
.x61{left:298.240347pt;}
.x32{left:302.400000pt;}
.x26{left:324.880104pt;}
.x55{left:332.000159pt;}
.x4{left:334.720000pt;}
.x60{left:337.840000pt;}
.x33{left:347.040000pt;}
.x54{left:349.120000pt;}
.x6{left:350.079656pt;}
.x70{left:372.640000pt;}
.x67{left:387.439624pt;}
.x37{left:398.719440pt;}
.x7{left:406.400072pt;}
.x69{left:407.440000pt;}
.x8{left:417.680776pt;}
.x14{left:425.920213pt;}
.x3f{left:427.041088pt;}
.x13{left:428.320230pt;}
.x12{left:435.920000pt;}
.x65{left:437.360000pt;}
.x74{left:440.319184pt;}
.x19{left:445.999752pt;}
.x3e{left:450.400000pt;}
.x15{left:451.839886pt;}
.x18{left:454.320000pt;}
.x66{left:465.440000pt;}
.x38{left:487.760000pt;}
.x39{left:488.719936pt;}
.x3a{left:493.919235pt;}
.x3b{left:498.159449pt;}
.xf{left:506.720286pt;}
.xd{left:507.920294pt;}
.xa{left:511.760151pt;}
.x9{left:514.400000pt;}
.xb{left:516.800017pt;}
.x75{left:521.040000pt;}
.xc{left:524.080012pt;}
.x10{left:525.840000pt;}
.x71{left:531.520000pt;}
.xe{left:536.960329pt;}
.x11{left:556.480000pt;}
.x6f{left:588.238325pt;}
.x3c{left:616.480000pt;}
.x72{left:624.000000pt;}
.x3d{left:652.720000pt;}
.x16{left:658.238790pt;}
.x68{left:663.200000pt;}
.x6c{left:682.160000pt;}
.x6a{left:683.200000pt;}
.x17{left:728.800000pt;}
}




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