
    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_a4235ca3e05169e5f5d72b10.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_01ff80b6ce52ad455d2eb306.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_8149045c25a4de8d44b146c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.303000;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_bb774c9f17d89d1c0f22d64b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925293;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_bd7a4d5248f2eee9f16481b9.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.v3{vertical-align:-26.997600px;}
.v1{vertical-align:-9.002400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:26.997600px;}
.ls17{letter-spacing:-0.108000px;}
.ls4e{letter-spacing:-0.102204px;}
.ls16{letter-spacing:-0.100800px;}
.ls41{letter-spacing:-0.090972px;}
.ls61{letter-spacing:-0.090180px;}
.ls47{letter-spacing:-0.078156px;}
.ls51{letter-spacing:-0.072144px;}
.ls44{letter-spacing:-0.066132px;}
.ls1b{letter-spacing:-0.065880px;}
.ls4f{letter-spacing:-0.060120px;}
.ls45{letter-spacing:-0.054108px;}
.ls2d{letter-spacing:-0.048600px;}
.ls43{letter-spacing:-0.048096px;}
.ls29{letter-spacing:-0.042084px;}
.ls48{letter-spacing:-0.036072px;}
.ls39{letter-spacing:-0.030060px;}
.ls1a{letter-spacing:-0.026352px;}
.ls28{letter-spacing:-0.024048px;}
.ls6d{letter-spacing:-0.023940px;}
.ls19{letter-spacing:-0.019764px;}
.ls2e{letter-spacing:-0.018036px;}
.ls63{letter-spacing:-0.014364px;}
.ls50{letter-spacing:-0.012024px;}
.ls6c{letter-spacing:-0.009576px;}
.ls3c{letter-spacing:-0.006012px;}
.ls62{letter-spacing:-0.004788px;}
.ls15{letter-spacing:0.000000px;}
.ls5e{letter-spacing:0.004788px;}
.ls22{letter-spacing:0.006012px;}
.ls1{letter-spacing:0.006588px;}
.ls54{letter-spacing:0.009576px;}
.lse{letter-spacing:0.012024px;}
.ls18{letter-spacing:0.013176px;}
.ls1d{letter-spacing:0.016200px;}
.lsf{letter-spacing:0.018036px;}
.ls64{letter-spacing:0.019152px;}
.ls5{letter-spacing:0.019764px;}
.ls3f{letter-spacing:0.023940px;}
.lsd{letter-spacing:0.024048px;}
.ls3{letter-spacing:0.026352px;}
.ls6b{letter-spacing:0.028728px;}
.ls10{letter-spacing:0.030060px;}
.ls2{letter-spacing:0.032940px;}
.ls4c{letter-spacing:0.033516px;}
.ls13{letter-spacing:0.036072px;}
.ls59{letter-spacing:0.038304px;}
.ls4{letter-spacing:0.039528px;}
.ls27{letter-spacing:0.042084px;}
.ls52{letter-spacing:0.043092px;}
.ls7{letter-spacing:0.046116px;}
.ls56{letter-spacing:0.047880px;}
.lsb{letter-spacing:0.048096px;}
.ls5b{letter-spacing:0.052668px;}
.ls8{letter-spacing:0.052704px;}
.ls23{letter-spacing:0.054108px;}
.ls5c{letter-spacing:0.057456px;}
.ls6{letter-spacing:0.059292px;}
.ls1e{letter-spacing:0.060120px;}
.ls5a{letter-spacing:0.062244px;}
.lsa{letter-spacing:0.065880px;}
.ls24{letter-spacing:0.066132px;}
.ls2c{letter-spacing:0.067032px;}
.ls40{letter-spacing:0.071820px;}
.lsc{letter-spacing:0.072144px;}
.ls2b{letter-spacing:0.076608px;}
.ls21{letter-spacing:0.078156px;}
.ls9{letter-spacing:0.079056px;}
.ls38{letter-spacing:0.081396px;}
.ls12{letter-spacing:0.084168px;}
.ls4b{letter-spacing:0.086184px;}
.ls3e{letter-spacing:0.090000px;}
.ls1c{letter-spacing:0.090180px;}
.ls60{letter-spacing:0.090972px;}
.ls42{letter-spacing:0.092232px;}
.ls57{letter-spacing:0.095760px;}
.ls11{letter-spacing:0.096192px;}
.ls5f{letter-spacing:0.100548px;}
.ls20{letter-spacing:0.102204px;}
.ls66{letter-spacing:0.105336px;}
.ls25{letter-spacing:0.108216px;}
.ls53{letter-spacing:0.110124px;}
.ls14{letter-spacing:0.114228px;}
.ls4a{letter-spacing:0.114912px;}
.ls5d{letter-spacing:0.119700px;}
.ls1f{letter-spacing:0.120240px;}
.ls65{letter-spacing:0.124488px;}
.ls34{letter-spacing:0.126252px;}
.ls68{letter-spacing:0.129276px;}
.ls26{letter-spacing:0.132264px;}
.ls35{letter-spacing:0.138276px;}
.ls67{letter-spacing:0.143640px;}
.ls31{letter-spacing:0.144288px;}
.ls69{letter-spacing:0.148428px;}
.ls3b{letter-spacing:0.150300px;}
.ls3d{letter-spacing:0.152064px;}
.ls33{letter-spacing:0.156312px;}
.ls32{letter-spacing:0.162324px;}
.ls55{letter-spacing:0.167580px;}
.ls2a{letter-spacing:0.168336px;}
.ls36{letter-spacing:0.174348px;}
.ls6a{letter-spacing:0.177156px;}
.ls30{letter-spacing:0.180360px;}
.ls58{letter-spacing:0.181944px;}
.ls49{letter-spacing:3.330000px;}
.ls4d{letter-spacing:362.968488px;}
.ls46{letter-spacing:373.411332px;}
.ls3a{letter-spacing:506.252484px;}
.ls37{letter-spacing:1024.288488px;}
.ls2f{letter-spacing:1036.168200px;}
.ls0{letter-spacing:1288.800000px;}
.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;}
}
.ws0{word-spacing:-16.476588px;}
.wsbf{word-spacing:-16.470000px;}
.wsc0{word-spacing:-15.030000px;}
.ws194{word-spacing:-12.118428px;}
.ws161{word-spacing:-12.084912px;}
.ws195{word-spacing:-12.060972px;}
.ws15f{word-spacing:-12.037032px;}
.ws160{word-spacing:-12.032244px;}
.wsc1{word-spacing:-11.970000px;}
.ws15e{word-spacing:-11.965212px;}
.wsbe{word-spacing:-9.720000px;}
.ws10b{word-spacing:-0.396792px;}
.ws140{word-spacing:-0.384768px;}
.ws13d{word-spacing:-0.360720px;}
.ws98{word-spacing:-0.354708px;}
.wsc8{word-spacing:-0.348696px;}
.ws10c{word-spacing:-0.324648px;}
.ws13c{word-spacing:-0.318636px;}
.ws174{word-spacing:-0.272916px;}
.ws1a0{word-spacing:-0.268128px;}
.ws170{word-spacing:-0.258552px;}
.ws19e{word-spacing:-0.220248px;}
.ws196{word-spacing:-0.215460px;}
.ws186{word-spacing:-0.210672px;}
.ws193{word-spacing:-0.205884px;}
.ws198{word-spacing:-0.196308px;}
.ws18f{word-spacing:-0.191520px;}
.ws185{word-spacing:-0.186732px;}
.ws191{word-spacing:-0.181944px;}
.ws18a{word-spacing:-0.177156px;}
.ws9d{word-spacing:-0.172368px;}
.ws81{word-spacing:-0.167580px;}
.wsde{word-spacing:-0.162792px;}
.ws82{word-spacing:-0.158004px;}
.ws17e{word-spacing:-0.153216px;}
.ws197{word-spacing:-0.148428px;}
.ws190{word-spacing:-0.143640px;}
.ws184{word-spacing:-0.138852px;}
.ws192{word-spacing:-0.134064px;}
.ws183{word-spacing:-0.129276px;}
.ws101{word-spacing:-0.124488px;}
.ws1a3{word-spacing:-0.119700px;}
.wsdd{word-spacing:-0.114912px;}
.ws199{word-spacing:-0.110124px;}
.ws1a2{word-spacing:-0.100548px;}
.ws18e{word-spacing:-0.095760px;}
.ws19f{word-spacing:-0.081396px;}
.ws1a1{word-spacing:-0.067032px;}
.wsc5{word-spacing:-0.060120px;}
.ws8c{word-spacing:-0.054108px;}
.ws93{word-spacing:-0.048096px;}
.ws91{word-spacing:-0.036072px;}
.ws33{word-spacing:-0.024048px;}
.wsa7{word-spacing:-0.018036px;}
.ws8a{word-spacing:-0.012024px;}
.ws86{word-spacing:-0.006012px;}
.ws1{word-spacing:0.000000px;}
.ws85{word-spacing:0.006012px;}
.ws70{word-spacing:0.012024px;}
.ws4e{word-spacing:0.018036px;}
.ws89{word-spacing:0.024048px;}
.ws26{word-spacing:0.026352px;}
.ws83{word-spacing:0.030060px;}
.ws5{word-spacing:0.032940px;}
.ws5c{word-spacing:0.036072px;}
.ws2d{word-spacing:0.042084px;}
.ws6f{word-spacing:0.048096px;}
.ws23{word-spacing:0.052704px;}
.wsc2{word-spacing:0.054108px;}
.ws4{word-spacing:0.059292px;}
.ws2c{word-spacing:0.060120px;}
.ws84{word-spacing:0.066132px;}
.ws2b{word-spacing:0.072144px;}
.ws24{word-spacing:0.072468px;}
.wsfb{word-spacing:0.078156px;}
.ws47{word-spacing:0.084168px;}
.ws92{word-spacing:0.090180px;}
.ws16{word-spacing:0.092232px;}
.wsc3{word-spacing:0.096192px;}
.ws2{word-spacing:0.100800px;}
.ws14c{word-spacing:0.102204px;}
.ws3{word-spacing:0.108000px;}
.wsc6{word-spacing:0.108216px;}
.ws17{word-spacing:0.111996px;}
.wsc4{word-spacing:0.114228px;}
.wsf9{word-spacing:0.120240px;}
.wsfc{word-spacing:0.126252px;}
.wsef{word-spacing:0.132264px;}
.wsc7{word-spacing:0.138276px;}
.wsfa{word-spacing:0.144288px;}
.ws25{word-spacing:0.158112px;}
.ws34{word-spacing:0.162000px;}
.ws7a{word-spacing:0.226800px;}
.ws141{word-spacing:0.330660px;}
.ws142{word-spacing:0.342684px;}
.ws124{word-spacing:0.348696px;}
.ws12f{word-spacing:0.354708px;}
.ws134{word-spacing:0.360720px;}
.ws123{word-spacing:0.372744px;}
.ws13e{word-spacing:0.390780px;}
.ws110{word-spacing:0.432864px;}
.ws10f{word-spacing:0.438876px;}
.ws6c{word-spacing:0.492984px;}
.ws133{word-spacing:0.703404px;}
.ws58{word-spacing:0.721440px;}
.ws12e{word-spacing:0.727452px;}
.ws166{word-spacing:0.733464px;}
.ws11a{word-spacing:0.745488px;}
.ws10e{word-spacing:0.781560px;}
.ws42{word-spacing:0.799596px;}
.ws57{word-spacing:1.064124px;}
.ws12d{word-spacing:1.076148px;}
.wsa0{word-spacing:1.082160px;}
.wsdc{word-spacing:1.088172px;}
.wsaa{word-spacing:1.094184px;}
.wsdb{word-spacing:1.100196px;}
.ws10a{word-spacing:1.112220px;}
.wsa1{word-spacing:1.118232px;}
.wsd0{word-spacing:1.142280px;}
.ws152{word-spacing:1.148292px;}
.ws41{word-spacing:1.160316px;}
.ws153{word-spacing:1.172340px;}
.ws53{word-spacing:1.424844px;}
.ws114{word-spacing:1.430856px;}
.ws13a{word-spacing:1.436868px;}
.ws103{word-spacing:1.442880px;}
.ws155{word-spacing:1.448892px;}
.ws151{word-spacing:1.454904px;}
.ws156{word-spacing:1.466928px;}
.ws164{word-spacing:1.472940px;}
.ws157{word-spacing:1.478952px;}
.ws115{word-spacing:1.490976px;}
.ws7d{word-spacing:1.496988px;}
.wscf{word-spacing:1.509012px;}
.ws7c{word-spacing:1.515024px;}
.ws16b{word-spacing:1.563120px;}
.ws52{word-spacing:1.785564px;}
.wsc9{word-spacing:1.797588px;}
.ws9f{word-spacing:1.803600px;}
.ws3e{word-spacing:1.809612px;}
.ws9e{word-spacing:1.815624px;}
.ws149{word-spacing:1.821636px;}
.ws1e{word-spacing:1.831464px;}
.ws128{word-spacing:1.839672px;}
.ws1f{word-spacing:1.857816px;}
.ws112{word-spacing:1.863720px;}
.ws7b{word-spacing:1.869732px;}
.ws159{word-spacing:1.875744px;}
.ws16c{word-spacing:1.977948px;}
.ws3d{word-spacing:2.170332px;}
.ws16a{word-spacing:2.194380px;}
.ws118{word-spacing:2.200392px;}
.ws121{word-spacing:2.206404px;}
.ws1b{word-spacing:2.206980px;}
.ws117{word-spacing:2.212416px;}
.ws158{word-spacing:2.224440px;}
.ws116{word-spacing:2.236464px;}
.ws11f{word-spacing:2.254500px;}
.wsb1{word-spacing:2.290572px;}
.ws188{word-spacing:2.355696px;}
.ws189{word-spacing:2.379636px;}
.ws187{word-spacing:2.384424px;}
.ws5d{word-spacing:2.519028px;}
.wsca{word-spacing:2.531052px;}
.ws37{word-spacing:2.549088px;}
.ws1a{word-spacing:2.556144px;}
.wsd5{word-spacing:2.561112px;}
.wsd3{word-spacing:2.567124px;}
.ws169{word-spacing:2.597184px;}
.wsd4{word-spacing:2.615220px;}
.wsfe{word-spacing:2.676492px;}
.wsff{word-spacing:2.705220px;}
.ws100{word-spacing:2.791404px;}
.wsce{word-spacing:2.879748px;}
.wsa3{word-spacing:2.897784px;}
.ws4d{word-spacing:2.903796px;}
.wsd{word-spacing:2.911896px;}
.ws119{word-spacing:2.915820px;}
.wsed{word-spacing:2.933856px;}
.wsee{word-spacing:2.939868px;}
.ws19d{word-spacing:2.968560px;}
.ws182{word-spacing:3.035592px;}
.ws19c{word-spacing:3.054744px;}
.ws17a{word-spacing:3.069108px;}
.ws18d{word-spacing:3.078684px;}
.ws179{word-spacing:3.083472px;}
.ws181{word-spacing:3.093048px;}
.ws180{word-spacing:3.097836px;}
.ws178{word-spacing:3.107412px;}
.ws113{word-spacing:3.216420px;}
.ws10d{word-spacing:3.234456px;}
.wsec{word-spacing:3.240468px;}
.ws4c{word-spacing:3.246480px;}
.wsd8{word-spacing:3.252492px;}
.wsa2{word-spacing:3.258504px;}
.ws11{word-spacing:3.280824px;}
.ws67{word-spacing:3.282552px;}
.wsa8{word-spacing:3.294576px;}
.wsae{word-spacing:3.306600px;}
.wsc{word-spacing:3.307176px;}
.wsd7{word-spacing:3.312612px;}
.ws18c{word-spacing:3.442572px;}
.ws19a{word-spacing:3.452148px;}
.ws19b{word-spacing:3.456936px;}
.ws17f{word-spacing:3.466512px;}
.ws18b{word-spacing:3.476088px;}
.wscd{word-spacing:3.577140px;}
.wseb{word-spacing:3.589164px;}
.ws5b{word-spacing:3.595176px;}
.ws6d{word-spacing:3.607200px;}
.ws6e{word-spacing:3.625236px;}
.ws65{word-spacing:3.637260px;}
.ws10{word-spacing:3.643164px;}
.ws77{word-spacing:3.649284px;}
.ws31{word-spacing:3.655296px;}
.wsa{word-spacing:3.656340px;}
.ws66{word-spacing:3.661308px;}
.ws32{word-spacing:3.667320px;}
.wsb{word-spacing:3.669516px;}
.wsb4{word-spacing:3.727440px;}
.wsb3{word-spacing:3.733452px;}
.ws11d{word-spacing:3.943872px;}
.wsad{word-spacing:3.955896px;}
.ws76{word-spacing:3.961908px;}
.wscc{word-spacing:3.967920px;}
.wsb2{word-spacing:3.973932px;}
.ws122{word-spacing:3.985956px;}
.wscb{word-spacing:3.997980px;}
.ws109{word-spacing:4.003992px;}
.ws9{word-spacing:4.012092px;}
.ws8{word-spacing:4.018680px;}
.ws30{word-spacing:4.022028px;}
.ws143{word-spacing:4.034052px;}
.wsd6{word-spacing:4.334652px;}
.ws11c{word-spacing:4.358700px;}
.ws38{word-spacing:4.647276px;}
.ws3a{word-spacing:4.665312px;}
.ws40{word-spacing:4.677336px;}
.ws11e{word-spacing:4.683348px;}
.ws39{word-spacing:4.695372px;}
.ws137{word-spacing:4.731444px;}
.ws5a{word-spacing:4.749480px;}
.ws69{word-spacing:4.995972px;}
.ws3f{word-spacing:5.050080px;}
.ws106{word-spacing:5.056092px;}
.ws68{word-spacing:5.062104px;}
.ws59{word-spacing:5.098176px;}
.ws136{word-spacing:5.116212px;}
.wsd2{word-spacing:5.182344px;}
.ws125{word-spacing:5.188356px;}
.wse8{word-spacing:5.398776px;}
.ws3c{word-spacing:5.410800px;}
.ws3b{word-spacing:5.470920px;}
.ws154{word-spacing:5.531040px;}
.wsd1{word-spacing:5.555088px;}
.ws148{word-spacing:5.759496px;}
.ws15{word-spacing:5.836968px;}
.ws13f{word-spacing:5.891760px;}
.ws51{word-spacing:6.096168px;}
.ws147{word-spacing:6.120216px;}
.wsa6{word-spacing:6.132240px;}
.ws50{word-spacing:6.144264px;}
.ws14{word-spacing:6.166368px;}
.ws49{word-spacing:6.180336px;}
.ws4f{word-spacing:6.186348px;}
.wsa4{word-spacing:6.198372px;}
.wsa5{word-spacing:6.216408px;}
.ws48{word-spacing:6.234444px;}
.ws16e{word-spacing:6.281856px;}
.ws16d{word-spacing:6.348888px;}
.ws16f{word-spacing:6.382404px;}
.ws55{word-spacing:6.468912px;}
.ws56{word-spacing:6.486948px;}
.ws28{word-spacing:6.498972px;}
.ws146{word-spacing:6.865704px;}
.ws27{word-spacing:6.883740px;}
.ws19{word-spacing:6.891048px;}
.ws145{word-spacing:7.214400px;}
.ws18{word-spacing:7.240212px;}
.ws5f{word-spacing:7.262496px;}
.ws60{word-spacing:7.274520px;}
.ws120{word-spacing:7.358688px;}
.ws17d{word-spacing:7.430976px;}
.wsb0{word-spacing:7.545060px;}
.ws165{word-spacing:7.551072px;}
.ws5e{word-spacing:7.611192px;}
.ws14b{word-spacing:7.635240px;}
.ws17c{word-spacing:7.761348px;}
.ws17b{word-spacing:7.780500px;}
.ws2e{word-spacing:7.911792px;}
.ws2f{word-spacing:7.923816px;}
.ws127{word-spacing:7.941852px;}
.ws14a{word-spacing:7.947864px;}
.ws15c{word-spacing:8.044056px;}
.ws72{word-spacing:8.350668px;}
.ws71{word-spacing:8.362692px;}
.ws130{word-spacing:8.639244px;}
.ws11b{word-spacing:8.645256px;}
.ws13{word-spacing:8.702748px;}
.ws54{word-spacing:9.024012px;}
.ws74{word-spacing:9.036036px;}
.ws12{word-spacing:9.038736px;}
.ws2a{word-spacing:9.078120px;}
.ws64{word-spacing:9.372708px;}
.ws73{word-spacing:9.384732px;}
.ws29{word-spacing:9.426816px;}
.ws36{word-spacing:9.438840px;}
.ws173{word-spacing:9.532908px;}
.ws108{word-spacing:9.709380px;}
.ws35{word-spacing:9.721404px;}
.ws102{word-spacing:9.733428px;}
.ws63{word-spacing:9.745452px;}
.wse{word-spacing:9.763416px;}
.wsf{word-spacing:9.770004px;}
.ws177{word-spacing:9.872856px;}
.ws172{word-spacing:9.935100px;}
.ws171{word-spacing:9.939888px;}
.wsaf{word-spacing:10.076112px;}
.ws144{word-spacing:10.088136px;}
.ws107{word-spacing:10.100160px;}
.ws175{word-spacing:10.265472px;}
.ws176{word-spacing:10.270260px;}
.ws79{word-spacing:10.767492px;}
.ws46{word-spacing:10.791540px;}
.ws78{word-spacing:10.797552px;}
.ws45{word-spacing:10.803564px;}
.ws6b{word-spacing:10.815588px;}
.ws14f{word-spacing:10.857672px;}
.ws14d{word-spacing:11.188332px;}
.ws6a{word-spacing:11.212380px;}
.ws14e{word-spacing:11.254464px;}
.ws4b{word-spacing:11.879712px;}
.ws44{word-spacing:12.240432px;}
.ws43{word-spacing:12.258468px;}
.wsab{word-spacing:12.264480px;}
.ws4a{word-spacing:12.276504px;}
.ws139{word-spacing:12.282516px;}
.wsac{word-spacing:12.318588px;}
.ws12c{word-spacing:12.571092px;}
.ws138{word-spacing:12.619188px;}
.ws12b{word-spacing:12.631212px;}
.ws22{word-spacing:12.642372px;}
.ws21{word-spacing:12.648960px;}
.ws162{word-spacing:12.955860px;}
.ws132{word-spacing:12.967884px;}
.ws163{word-spacing:12.973896px;}
.ws20{word-spacing:13.011300px;}
.ws131{word-spacing:13.328604px;}
.ws75{word-spacing:13.340628px;}
.ws12a{word-spacing:14.044032px;}
.ws15d{word-spacing:14.200344px;}
.ws129{word-spacing:14.422788px;}
.wsa9{word-spacing:14.765472px;}
.ws15b{word-spacing:14.807556px;}
.ws15a{word-spacing:15.126192px;}
.wsd9{word-spacing:15.180300px;}
.wsda{word-spacing:15.198336px;}
.wsea{word-spacing:16.593120px;}
.ws105{word-spacing:16.623180px;}
.wse9{word-spacing:16.917768px;}
.ws104{word-spacing:16.965864px;}
.ws135{word-spacing:17.657244px;}
.ws1c{word-spacing:18.011592px;}
.ws1d{word-spacing:18.044532px;}
.ws150{word-spacing:18.150228px;}
.ws126{word-spacing:18.841608px;}
.ws167{word-spacing:20.867652px;}
.ws168{word-spacing:20.909736px;}
.ws13b{word-spacing:23.068044px;}
.ws6{word-spacing:23.815620px;}
.ws7{word-spacing:23.822208px;}
.ws62{word-spacing:24.883668px;}
.ws61{word-spacing:24.913728px;}
.ws88{word-spacing:158.428224px;}
.ws7f{word-spacing:179.025336px;}
.ws87{word-spacing:180.035352px;}
.ws9c{word-spacing:209.079324px;}
.ws9b{word-spacing:209.091348px;}
.ws9a{word-spacing:209.103372px;}
.ws8b{word-spacing:221.307732px;}
.ws99{word-spacing:224.187480px;}
.ws94{word-spacing:236.445948px;}
.ws80{word-spacing:240.041124px;}
.ws97{word-spacing:251.554104px;}
.ws8f{word-spacing:251.926848px;}
.wsb7{word-spacing:265.255452px;}
.ws95{word-spacing:266.680296px;}
.ws90{word-spacing:266.692320px;}
.ws96{word-spacing:266.704344px;}
.wsb8{word-spacing:277.153200px;}
.wse6{word-spacing:282.407688px;}
.wsbb{word-spacing:289.375596px;}
.wsb9{word-spacing:292.267368px;}
.wsba{word-spacing:300.545892px;}
.wsf3{word-spacing:305.223228px;}
.wse5{word-spacing:308.084940px;}
.wse1{word-spacing:308.090952px;}
.wse0{word-spacing:308.096964px;}
.wsf0{word-spacing:308.102976px;}
.wsf2{word-spacing:308.108988px;}
.wsf1{word-spacing:308.121012px;}
.wsfd{word-spacing:308.325420px;}
.wsbc{word-spacing:311.108976px;}
.wsb5{word-spacing:312.058872px;}
.wsdf{word-spacing:323.187084px;}
.wsb6{word-spacing:324.299304px;}
.wsbd{word-spacing:327.191076px;}
.wse2{word-spacing:338.331312px;}
.wse4{word-spacing:338.343336px;}
.wsf8{word-spacing:338.355360px;}
.ws8e{word-spacing:339.040728px;}
.wse3{word-spacing:345.906432px;}
.wse7{word-spacing:353.433456px;}
.ws111{word-spacing:362.908368px;}
.wsf4{word-spacing:368.583696px;}
.wsf6{word-spacing:368.589708px;}
.wsf5{word-spacing:368.595720px;}
.wsf7{word-spacing:368.806140px;}
.ws7e{word-spacing:748.800612px;}
.ws8d{word-spacing:867.904344px;}
._55{margin-left:-1981.707408px;}
._11{margin-left:-616.392324px;}
._10{margin-left:-601.127856px;}
._1c{margin-left:-210.011508px;}
._13{margin-left:-102.600792px;}
._14{margin-left:-87.480612px;}
._4{margin-left:-84.522708px;}
._41{margin-left:-82.442556px;}
._12{margin-left:-79.677360px;}
._4e{margin-left:-76.935564px;}
._4f{margin-left:-74.879460px;}
._4a{margin-left:-66.757248px;}
._40{margin-left:-61.827408px;}
._50{margin-left:-60.041844px;}
._39{margin-left:-57.041856px;}
._53{margin-left:-55.899576px;}
._a{margin-left:-53.999784px;}
._52{margin-left:-47.519172px;}
._7{margin-left:-46.436688px;}
._43{margin-left:-44.927676px;}
._4d{margin-left:-43.593012px;}
._9{margin-left:-40.304448px;}
._42{margin-left:-38.158164px;}
._44{margin-left:-32.423040px;}
._8{margin-left:-31.316508px;}
._48{margin-left:-29.290464px;}
._3e{margin-left:-26.146512px;}
._5{margin-left:-24.901704px;}
._29{margin-left:-19.436796px;}
._51{margin-left:-15.841620px;}
._3a{margin-left:-14.759460px;}
._3f{margin-left:-13.388724px;}
._28{margin-left:-12.240432px;}
._27{margin-left:-10.895472px;}
._26{margin-left:-7.070436px;}
._b{margin-left:-2.879748px;}
._0{margin-left:-1.027728px;}
._1{width:1.119960px;}
._6{width:2.879748px;}
._49{width:3.961908px;}
._16{width:7.202376px;}
._56{width:12.213756px;}
._34{width:14.398740px;}
._33{width:16.519248px;}
._30{width:19.508940px;}
._15{width:22.322556px;}
._18{width:23.765436px;}
._31{width:25.196292px;}
._32{width:27.354600px;}
._35{width:28.436436px;}
._37{width:30.595068px;}
._38{width:32.043960px;}
._4c{width:33.835536px;}
._2a{width:36.450756px;}
._36{width:37.797444px;}
._2f{width:40.316472px;}
._57{width:41.772888px;}
._2d{width:44.639100px;}
._2b{width:47.158128px;}
._4b{width:48.197880px;}
._2e{width:50.037876px;}
._2c{width:51.835464px;}
._47{width:56.741256px;}
._45{width:64.062144px;}
._3{width:70.400520px;}
._46{width:79.358400px;}
._1f{width:86.644620px;}
._2{width:105.119820px;}
._5b{width:125.716932px;}
._5e{width:129.702888px;}
._24{width:131.398272px;}
._59{width:133.616700px;}
._5d{width:137.229912px;}
._5a{width:138.666780px;}
._5c{width:142.201836px;}
._23{width:146.157732px;}
._3d{width:152.638668px;}
._3b{width:167.037408px;}
._25{width:195.480180px;}
._3c{width:197.277768px;}
._f{width:236.518092px;}
._d{width:259.562088px;}
._e{width:281.878632px;}
._1d{width:294.263352px;}
._58{width:362.893356px;}
._54{width:486.238212px;}
._c{width:530.594424px;}
._19{width:567.430596px;}
._21{width:582.899472px;}
._20{width:586.879092px;}
._17{width:594.075456px;}
._1e{width:616.380300px;}
._1b{width:671.985288px;}
._22{width:673.259832px;}
._1a{width:680.474232px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.210000px;}
.y173{bottom:87.900315px;}
.ydc{bottom:95.189400px;}
.yb8{bottom:96.720396px;}
.y1a9{bottom:102.120450px;}
.y1c3{bottom:103.023045px;}
.y1ab{bottom:103.023285px;}
.ydb{bottom:106.350000px;}
.y172{bottom:108.959400px;}
.y14f{bottom:110.490300px;}
.y1eb{bottom:112.732494px;}
.yb7{bottom:113.910207px;}
.ya7{bottom:116.250009px;}
.y1a8{bottom:117.059400px;}
.y2b{bottom:118.500630px;}
.y171{bottom:120.120000px;}
.y1c2{bottom:120.212856px;}
.y59{bottom:120.213096px;}
.y1ea{bottom:126.592557px;}
.y14e{bottom:127.500000px;}
.yda{bottom:127.771638px;}
.yb6{bottom:131.190198px;}
.ya6{bottom:133.530000px;}
.y1a7{bottom:135.240432px;}
.y2a{bottom:135.780621px;}
.y1c1{bottom:137.492847px;}
.y58{bottom:137.493087px;}
.y1e9{bottom:140.362845px;}
.y7d{bottom:143.250414px;}
.yd9{bottom:145.051629px;}
.y14d{bottom:147.390000px;}
.yb5{bottom:148.470189px;}
.y12d{bottom:148.471215px;}
.ya5{bottom:150.180450px;}
.y1a6{bottom:152.520423px;}
.y29{bottom:153.060612px;}
.y1e8{bottom:154.133133px;}
.y1c0{bottom:154.772838px;}
.y57{bottom:154.773078px;}
.y7c{bottom:160.530405px;}
.y103{bottom:160.890603px;}
.yd8{bottom:162.241440px;}
.yb4{bottom:165.660000px;}
.y12c{bottom:165.661026px;}
.ya4{bottom:167.190000px;}
.y14c{bottom:167.280000px;}
.y1e7{bottom:167.993196px;}
.y1a5{bottom:169.800414px;}
.y28{bottom:170.250423px;}
.y1bf{bottom:171.962649px;}
.y56{bottom:171.962889px;}
.y7b{bottom:177.720216px;}
.y102{bottom:178.080414px;}
.yd7{bottom:179.521431px;}
.y1e6{bottom:181.763484px;}
.yb3{bottom:182.310450px;}
.y12b{bottom:182.941017px;}
.y19f{bottom:186.990225px;}
.ya3{bottom:187.080000px;}
.y14b{bottom:187.170000px;}
.y27{bottom:187.530414px;}
.y1be{bottom:189.242640px;}
.y55{bottom:189.242880px;}
.y7a{bottom:195.000207px;}
.y101{bottom:195.360405px;}
.y1e5{bottom:195.533772px;}
.yd6{bottom:196.711242px;}
.yb2{bottom:199.410000px;}
.y12a{bottom:200.130828px;}
.y1a4{bottom:204.089400px;}
.y19e{bottom:204.270216px;}
.y26{bottom:204.720225px;}
.y1bd{bottom:206.522631px;}
.y54{bottom:206.522871px;}
.ya2{bottom:206.970000px;}
.y14a{bottom:207.060000px;}
.y1e4{bottom:209.393835px;}
.y79{bottom:212.280198px;}
.y100{bottom:212.640396px;}
.yd5{bottom:213.991233px;}
.y129{bottom:217.410819px;}
.yb1{bottom:219.210000px;}
.y1a3{bottom:221.369400px;}
.y19d{bottom:221.550207px;}
.y25{bottom:222.000216px;}
.y1e3{bottom:223.164123px;}
.y1bc{bottom:223.712442px;}
.y53{bottom:223.712682px;}
.ya1{bottom:224.969829px;}
.y149{bottom:226.860000px;}
.y78{bottom:229.470009px;}
.yff{bottom:229.830207px;}
.yd4{bottom:231.271224px;}
.y170{bottom:234.690612px;}
.y128{bottom:234.690810px;}
.y1e2{bottom:236.934411px;}
.y1a2{bottom:238.559400px;}
.y19c{bottom:238.740018px;}
.yb0{bottom:239.100000px;}
.y24{bottom:239.280207px;}
.y52{bottom:240.812313px;}
.y1bb{bottom:240.992433px;}
.y1aa{bottom:240.992673px;}
.ya0{bottom:242.159640px;}
.y77{bottom:246.750000px;}
.yfe{bottom:247.110198px;}
.yd3{bottom:248.461035px;}
.y1e1{bottom:250.794474px;}
.y16f{bottom:251.880423px;}
.y127{bottom:251.880621px;}
.y1a1{bottom:255.839400px;}
.y19b{bottom:256.020009px;}
.y23{bottom:256.289658px;}
.y1ba{bottom:258.272424px;}
.y51{bottom:258.272664px;}
.yaf{bottom:258.990000px;}
.y9e{bottom:260.160009px;}
.y76{bottom:263.400450px;}
.yfd{bottom:264.390189px;}
.y1e0{bottom:264.564762px;}
.yd2{bottom:265.741026px;}
.y148{bottom:266.640000px;}
.y16e{bottom:269.160414px;}
.y126{bottom:269.160612px;}
.y1a0{bottom:273.119400px;}
.y19a{bottom:273.300000px;}
.y22{bottom:273.750009px;}
.y1b9{bottom:275.462235px;}
.y50{bottom:275.462475px;}
.y9d{bottom:277.440000px;}
.y1df{bottom:278.335050px;}
.yae{bottom:278.880000px;}
.y75{bottom:280.410000px;}
.yfc{bottom:281.580000px;}
.yd1{bottom:283.021017px;}
.y16d{bottom:286.440405px;}
.y125{bottom:286.440603px;}
.y147{bottom:286.530000px;}
.y21{bottom:291.030000px;}
.y198{bottom:291.300594px;}
.y1de{bottom:292.195113px;}
.y1b8{bottom:292.742226px;}
.y4f{bottom:292.742466px;}
.y9c{bottom:295.440009px;}
.yfb{bottom:298.320300px;}
.yad{bottom:298.770000px;}
.yd0{bottom:300.210828px;}
.y74{bottom:300.300000px;}
.y16c{bottom:303.630216px;}
.y124{bottom:303.630414px;}
.y1dd{bottom:305.965401px;}
.y146{bottom:306.421296px;}
.y197{bottom:308.490405px;}
.y18d{bottom:308.490693px;}
.y20{bottom:308.579400px;}
.y1b7{bottom:310.022217px;}
.y4e{bottom:310.022457px;}
.y9b{bottom:312.720000px;}
.yfa{bottom:315.330000px;}
.y9f{bottom:315.330189px;}
.ycf{bottom:317.490819px;}
.yac{bottom:318.660000px;}
.y1dc{bottom:319.735689px;}
.y73{bottom:320.190000px;}
.y16b{bottom:320.910207px;}
.y123{bottom:320.910405px;}
.y145{bottom:324.331044px;}
.y196{bottom:325.770396px;}
.y18c{bottom:325.770684px;}
.y1f{bottom:327.210000px;}
.y1b6{bottom:327.212028px;}
.y4d{bottom:327.212268px;}
.y9a{bottom:332.520000px;}
.y1db{bottom:333.595752px;}
.yce{bottom:334.770810px;}
.yf9{bottom:335.220000px;}
.y16a{bottom:338.190198px;}
.y122{bottom:338.190396px;}
.yab{bottom:338.460000px;}
.y72{bottom:340.080000px;}
.y144{bottom:341.611035px;}
.y191{bottom:342.869550px;}
.y195{bottom:343.050387px;}
.y18b{bottom:343.050675px;}
.y1b5{bottom:344.492019px;}
.y4c{bottom:344.492259px;}
.y1e{bottom:344.761380px;}
.y1da{bottom:347.366040px;}
.ycd{bottom:351.960621px;}
.y99{bottom:352.410000px;}
.yf8{bottom:355.110000px;}
.y169{bottom:355.380009px;}
.y121{bottom:355.380207px;}
.yaa{bottom:358.350000px;}
.y143{bottom:358.891026px;}
.y71{bottom:359.970000px;}
.y190{bottom:360.059400px;}
.y194{bottom:360.240198px;}
.y18a{bottom:360.240486px;}
.y1d9{bottom:361.136328px;}
.y1b4{bottom:361.681830px;}
.y4b{bottom:361.682070px;}
.y1d{bottom:363.751290px;}
.ycc{bottom:369.240612px;}
.y98{bottom:372.300000px;}
.y168{bottom:372.660000px;}
.y120{bottom:372.660198px;}
.y1d8{bottom:374.906616px;}
.yf7{bottom:374.910000px;}
.y142{bottom:376.080837px;}
.y18f{bottom:377.339400px;}
.y193{bottom:377.520189px;}
.y189{bottom:377.520477px;}
.ya9{bottom:378.242124px;}
.y1b3{bottom:378.961821px;}
.y4a{bottom:378.962061px;}
.y70{bottom:379.680729px;}
.y1c{bottom:382.741200px;}
.ycb{bottom:386.520603px;}
.y1d7{bottom:388.766679px;}
.y167{bottom:389.310450px;}
.y11f{bottom:389.940189px;}
.y97{bottom:392.190684px;}
.y141{bottom:393.360828px;}
.y18e{bottom:394.529550px;}
.y192{bottom:394.710000px;}
.y188{bottom:394.710288px;}
.yf6{bottom:394.800000px;}
.y1b2{bottom:396.241812px;}
.y49{bottom:396.242052px;}
.y6f{bottom:397.770837px;}
.y1b{bottom:401.640525px;}
.y1d6{bottom:402.536967px;}
.yca{bottom:403.710414px;}
.y166{bottom:406.320000px;}
.y11e{bottom:407.130000px;}
.y96{bottom:410.190612px;}
.y140{bottom:410.640819px;}
.y187{bottom:412.710216px;}
.y1b1{bottom:413.431623px;}
.y48{bottom:413.431863px;}
.yf5{bottom:414.690000px;}
.y6e{bottom:415.050828px;}
.y1d5{bottom:416.307255px;}
.y1a{bottom:420.630435px;}
.yc9{bottom:420.990405px;}
.y11d{bottom:423.870450px;}
.y165{bottom:426.210000px;}
.y95{bottom:427.380423px;}
.y13f{bottom:427.830630px;}
.y186{bottom:429.990207px;}
.y1d4{bottom:430.167318px;}
.y1b0{bottom:430.711614px;}
.y47{bottom:430.711854px;}
.y6d{bottom:432.240639px;}
.yf4{bottom:434.580000px;}
.yc8{bottom:438.090036px;}
.y19{bottom:439.620345px;}
.y11c{bottom:440.880000px;}
.y1d3{bottom:443.937606px;}
.y94{bottom:444.660414px;}
.y13e{bottom:445.110621px;}
.y164{bottom:446.100000px;}
.y182{bottom:447.089400px;}
.y185{bottom:447.270198px;}
.y17f{bottom:447.271668px;}
.y1af{bottom:447.991605px;}
.y46{bottom:447.991845px;}
.y6c{bottom:449.520630px;}
.yf3{bottom:454.470000px;}
.yc7{bottom:455.460207px;}
.y1d2{bottom:457.707894px;}
.y18{bottom:458.610255px;}
.y11b{bottom:460.770000px;}
.y93{bottom:461.940405px;}
.y13d{bottom:462.390612px;}
.y181{bottom:464.279550px;}
.y184{bottom:464.460009px;}
.y17e{bottom:464.461479px;}
.y1ae{bottom:465.181416px;}
.y45{bottom:465.181656px;}
.y163{bottom:465.990000px;}
.y6b{bottom:466.800621px;}
.y1d1{bottom:471.567957px;}
.yc6{bottom:472.740198px;}
.yf2{bottom:474.360000px;}
.y17{bottom:477.509580px;}
.y92{bottom:479.130216px;}
.y13c{bottom:479.580423px;}
.y11a{bottom:480.570000px;}
.y180{bottom:481.559400px;}
.y183{bottom:481.740000px;}
.y199{bottom:481.741215px;}
.y17d{bottom:481.741470px;}
.y1ad{bottom:482.461407px;}
.y44{bottom:482.461647px;}
.y6a{bottom:483.990432px;}
.y1d0{bottom:485.338245px;}
.y162{bottom:485.880000px;}
.yc5{bottom:490.020189px;}
.yf1{bottom:494.160693px;}
.y207{bottom:496.230009px;}
.y91{bottom:496.410207px;}
.y16{bottom:496.590075px;}
.y13b{bottom:496.680054px;}
.y1cf{bottom:499.108533px;}
.y17c{bottom:499.561038px;}
.y1ac{bottom:499.741398px;}
.y43{bottom:499.741638px;}
.y119{bottom:500.460000px;}
.y69{bottom:501.270423px;}
.y161{bottom:505.770000px;}
.yc4{bottom:507.210639px;}
.yf0{bottom:512.160621px;}
.y1ce{bottom:512.968596px;}
.y206{bottom:513.510000px;}
.y90{bottom:513.690198px;}
.y13a{bottom:514.050225px;}
.y15{bottom:515.489400px;}
.y17b{bottom:516.931209px;}
.y42{bottom:516.931449px;}
.y68{bottom:518.550414px;}
.y118{bottom:520.350000px;}
.yc3{bottom:524.490630px;}
.y160{bottom:525.570000px;}
.y1cd{bottom:526.738884px;}
.yef{bottom:529.440612px;}
.y8f{bottom:530.880009px;}
.y139{bottom:531.330216px;}
.y205{bottom:531.420000px;}
.y17a{bottom:534.211200px;}
.y41{bottom:534.211440px;}
.y14{bottom:534.840000px;}
.y67{bottom:535.740225px;}
.y117{bottom:540.240000px;}
.y1cc{bottom:540.509172px;}
.yc2{bottom:541.680441px;}
.y15f{bottom:545.460000px;}
.yee{bottom:546.630423px;}
.y8e{bottom:548.160000px;}
.y138{bottom:548.610207px;}
.y204{bottom:550.855338px;}
.y179{bottom:551.491191px;}
.y40{bottom:551.491431px;}
.y66{bottom:553.020216px;}
.y1cb{bottom:554.369235px;}
.y13{bottom:555.182055px;}
.yc1{bottom:558.960432px;}
.y116{bottom:560.130000px;}
.yed{bottom:563.910414px;}
.y203{bottom:564.715401px;}
.y8d{bottom:564.810450px;}
.y15e{bottom:565.350000px;}
.y137{bottom:565.800018px;}
.y1ca{bottom:568.139523px;}
.y178{bottom:568.681002px;}
.y3f{bottom:568.681242px;}
.y65{bottom:570.300207px;}
.y12{bottom:574.171965px;}
.yc0{bottom:576.150243px;}
.y202{bottom:578.485689px;}
.y115{bottom:580.020000px;}
.yec{bottom:581.190405px;}
.y8c{bottom:581.820000px;}
.y1c9{bottom:581.909811px;}
.y136{bottom:583.080009px;}
.y15d{bottom:585.241089px;}
.y177{bottom:585.960993px;}
.y3e{bottom:585.961233px;}
.y64{bottom:587.490018px;}
.y201{bottom:592.255977px;}
.y11{bottom:593.161875px;}
.ybf{bottom:594.599568px;}
.y1c8{bottom:595.769874px;}
.yeb{bottom:598.380216px;}
.y114{bottom:599.820000px;}
.y135{bottom:600.360000px;}
.y8b{bottom:601.710000px;}
.y176{bottom:603.240984px;}
.y15c{bottom:603.241017px;}
.y3d{bottom:603.241224px;}
.y63{bottom:604.770009px;}
.y200{bottom:606.116040px;}
.y1c7{bottom:609.540162px;}
.y10{bottom:612.151785px;}
.ybe{bottom:612.960216px;}
.yea{bottom:615.660207px;}
.y134{bottom:617.010162px;}
.y113{bottom:619.710858px;}
.y1ff{bottom:619.886328px;}
.y175{bottom:620.430795px;}
.y15b{bottom:620.430828px;}
.y3c{bottom:620.431035px;}
.y8a{bottom:621.600000px;}
.y62{bottom:622.050000px;}
.y1c6{bottom:623.310450px;}
.ybd{bottom:630.150027px;}
.y133{bottom:630.780450px;}
.yf{bottom:631.051110px;}
.ye9{bottom:632.940198px;}
.y1fe{bottom:633.656616px;}
.y112{bottom:637.710786px;}
.y15a{bottom:637.710819px;}
.y3b{bottom:637.711026px;}
.y1c5{bottom:638.340000px;}
.y61{bottom:638.700450px;}
.y89{bottom:641.490000px;}
.y1fd{bottom:647.516679px;}
.y132{bottom:647.880000px;}
.ybc{bottom:648.599352px;}
.ye{bottom:650.041020px;}
.ye8{bottom:650.130009px;}
.y111{bottom:654.990777px;}
.y159{bottom:654.990810px;}
.y3a{bottom:654.991017px;}
.y60{bottom:655.710000px;}
.y1c4{bottom:657.607050px;}
.y88{bottom:659.489649px;}
.y1fc{bottom:661.286967px;}
.ybb{bottom:666.960495px;}
.ye7{bottom:667.410000px;}
.y131{bottom:667.680000px;}
.yd{bottom:669.030930px;}
.y110{bottom:672.180588px;}
.y158{bottom:672.180621px;}
.y39{bottom:672.180828px;}
.y1fb{bottom:675.057255px;}
.y5f{bottom:675.600000px;}
.y87{bottom:676.679460px;}
.ye6{bottom:684.060450px;}
.yba{bottom:685.500621px;}
.y130{bottom:687.570000px;}
.yc{bottom:688.020840px;}
.y1fa{bottom:688.917318px;}
.y10f{bottom:689.460579px;}
.y157{bottom:689.460612px;}
.y38{bottom:689.460819px;}
.y85{bottom:694.680009px;}
.y5e{bottom:695.490000px;}
.ye5{bottom:699.180000px;}
.y1f9{bottom:702.687606px;}
.yb9{bottom:705.481296px;}
.y10e{bottom:706.650390px;}
.y156{bottom:706.650423px;}
.y37{bottom:706.650630px;}
.yb{bottom:707.010750px;}
.y12f{bottom:707.460000px;}
.y84{bottom:711.960000px;}
.y5d{bottom:715.380000px;}
.y1f8{bottom:716.457894px;}
.ye4{bottom:717.180000px;}
.y10d{bottom:723.930381px;}
.y155{bottom:723.930414px;}
.y36{bottom:723.930621px;}
.ya{bottom:725.910075px;}
.y12e{bottom:727.350000px;}
.y83{bottom:729.960009px;}
.y1f7{bottom:730.228182px;}
.y5c{bottom:735.180000px;}
.y10c{bottom:741.210372px;}
.y154{bottom:741.210405px;}
.y35{bottom:741.210612px;}
.y1f6{bottom:744.088245px;}
.y9{bottom:744.809400px;}
.y82{bottom:747.240000px;}
.y86{bottom:749.850009px;}
.ye3{bottom:753.180000px;}
.y5b{bottom:754.889400px;}
.y1f5{bottom:757.858533px;}
.y10b{bottom:758.400183px;}
.y153{bottom:758.400216px;}
.y34{bottom:758.400423px;}
.y8{bottom:763.439550px;}
.y81{bottom:767.130000px;}
.ye2{bottom:771.180000px;}
.y1f4{bottom:771.628821px;}
.y5a{bottom:774.780117px;}
.y10a{bottom:775.680174px;}
.y152{bottom:775.680207px;}
.y33{bottom:775.680414px;}
.y7{bottom:781.080330px;}
.y1f3{bottom:785.488884px;}
.y80{bottom:786.930000px;}
.ye1{bottom:789.180000px;}
.y109{bottom:792.960165px;}
.y151{bottom:792.960198px;}
.y32{bottom:792.960405px;}
.y1f2{bottom:799.259172px;}
.y6{bottom:800.160825px;}
.y7f{bottom:806.820000px;}
.ye0{bottom:807.180000px;}
.ya8{bottom:809.969856px;}
.y108{bottom:810.149976px;}
.y150{bottom:810.150009px;}
.y31{bottom:810.150216px;}
.y1f1{bottom:813.029460px;}
.y5{bottom:819.060150px;}
.ydf{bottom:825.180000px;}
.y7e{bottom:826.710270px;}
.y1f0{bottom:826.889523px;}
.y107{bottom:827.429967px;}
.y30{bottom:827.430207px;}
.y4{bottom:837.780000px;}
.y1ef{bottom:840.659811px;}
.yde{bottom:843.180000px;}
.y106{bottom:844.709958px;}
.y2f{bottom:844.710198px;}
.y1ee{bottom:854.430099px;}
.y3{bottom:855.510000px;}
.ydd{bottom:861.180072px;}
.y174{bottom:861.719409px;}
.y105{bottom:861.899769px;}
.y2e{bottom:861.900009px;}
.y1ed{bottom:868.290162px;}
.y2{bottom:876.210000px;}
.y104{bottom:878.999400px;}
.y2d{bottom:879.180000px;}
.y1ec{bottom:882.060450px;}
.y2c{bottom:912.570300px;}
.he{height:34.114922px;}
.h8{height:42.011895px;}
.h12{height:42.128789px;}
.h11{height:42.526230px;}
.h7{height:47.381836px;}
.h3{height:52.751777px;}
.h6{height:53.397598px;}
.h10{height:53.473217px;}
.h4{height:57.805840px;}
.h5{height:58.513535px;}
.h9{height:60.716016px;}
.hc{height:60.721200px;}
.hd{height:61.109966px;}
.hb{height:61.110542px;}
.hf{height:61.111694px;}
.h1{height:63.175781px;}
.h2{height:63.949219px;}
.ha{height:66.533916px;}
.h0{height:978.000000px;}
.w0{width:850.500000px;}
.x0{left:0.000000px;}
.x1{left:85.050000px;}
.x9{left:89.279442px;}
.x23{left:92.069010px;}
.x19{left:106.560000px;}
.xd{left:109.709721px;}
.x16{left:111.510000px;}
.x14{left:112.950000px;}
.x18{left:114.930000px;}
.xb{left:116.730000px;}
.xa{left:118.440000px;}
.x15{left:119.970000px;}
.x1b{left:122.310000px;}
.x17{left:124.110000px;}
.x1c{left:126.450000px;}
.x1a{left:139.769721px;}
.x8{left:166.861296px;}
.x1f{left:179.729388px;}
.x1e{left:189.179343px;}
.x24{left:198.358164px;}
.x1d{left:204.570063px;}
.x13{left:210.240000px;}
.xf{left:211.860000px;}
.x12{left:217.710792px;}
.xe{left:220.770306px;}
.x22{left:275.039784px;}
.x6{left:280.530000px;}
.x25{left:292.857786px;}
.x21{left:302.761053px;}
.x5{left:347.940000px;}
.x10{left:354.960630px;}
.x11{left:358.740675px;}
.x26{left:387.360000px;}
.x20{left:398.700549px;}
.x7{left:402.480594px;}
.xc{left:425.249541px;}
.x27{left:481.860000px;}
.x2{left:578.070000px;}
.x3{left:582.029388px;}
.x28{left:583.739352px;}
.x29{left:676.349703px;}
.x4{left:765.449190px;}
@media print{
.v3{vertical-align:-23.997867pt;}
.v1{vertical-align:-8.002133pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.997867pt;}
.ls17{letter-spacing:-0.096000pt;}
.ls4e{letter-spacing:-0.090848pt;}
.ls16{letter-spacing:-0.089600pt;}
.ls41{letter-spacing:-0.080864pt;}
.ls61{letter-spacing:-0.080160pt;}
.ls47{letter-spacing:-0.069472pt;}
.ls51{letter-spacing:-0.064128pt;}
.ls44{letter-spacing:-0.058784pt;}
.ls1b{letter-spacing:-0.058560pt;}
.ls4f{letter-spacing:-0.053440pt;}
.ls45{letter-spacing:-0.048096pt;}
.ls2d{letter-spacing:-0.043200pt;}
.ls43{letter-spacing:-0.042752pt;}
.ls29{letter-spacing:-0.037408pt;}
.ls48{letter-spacing:-0.032064pt;}
.ls39{letter-spacing:-0.026720pt;}
.ls1a{letter-spacing:-0.023424pt;}
.ls28{letter-spacing:-0.021376pt;}
.ls6d{letter-spacing:-0.021280pt;}
.ls19{letter-spacing:-0.017568pt;}
.ls2e{letter-spacing:-0.016032pt;}
.ls63{letter-spacing:-0.012768pt;}
.ls50{letter-spacing:-0.010688pt;}
.ls6c{letter-spacing:-0.008512pt;}
.ls3c{letter-spacing:-0.005344pt;}
.ls62{letter-spacing:-0.004256pt;}
.ls15{letter-spacing:0.000000pt;}
.ls5e{letter-spacing:0.004256pt;}
.ls22{letter-spacing:0.005344pt;}
.ls1{letter-spacing:0.005856pt;}
.ls54{letter-spacing:0.008512pt;}
.lse{letter-spacing:0.010688pt;}
.ls18{letter-spacing:0.011712pt;}
.ls1d{letter-spacing:0.014400pt;}
.lsf{letter-spacing:0.016032pt;}
.ls64{letter-spacing:0.017024pt;}
.ls5{letter-spacing:0.017568pt;}
.ls3f{letter-spacing:0.021280pt;}
.lsd{letter-spacing:0.021376pt;}
.ls3{letter-spacing:0.023424pt;}
.ls6b{letter-spacing:0.025536pt;}
.ls10{letter-spacing:0.026720pt;}
.ls2{letter-spacing:0.029280pt;}
.ls4c{letter-spacing:0.029792pt;}
.ls13{letter-spacing:0.032064pt;}
.ls59{letter-spacing:0.034048pt;}
.ls4{letter-spacing:0.035136pt;}
.ls27{letter-spacing:0.037408pt;}
.ls52{letter-spacing:0.038304pt;}
.ls7{letter-spacing:0.040992pt;}
.ls56{letter-spacing:0.042560pt;}
.lsb{letter-spacing:0.042752pt;}
.ls5b{letter-spacing:0.046816pt;}
.ls8{letter-spacing:0.046848pt;}
.ls23{letter-spacing:0.048096pt;}
.ls5c{letter-spacing:0.051072pt;}
.ls6{letter-spacing:0.052704pt;}
.ls1e{letter-spacing:0.053440pt;}
.ls5a{letter-spacing:0.055328pt;}
.lsa{letter-spacing:0.058560pt;}
.ls24{letter-spacing:0.058784pt;}
.ls2c{letter-spacing:0.059584pt;}
.ls40{letter-spacing:0.063840pt;}
.lsc{letter-spacing:0.064128pt;}
.ls2b{letter-spacing:0.068096pt;}
.ls21{letter-spacing:0.069472pt;}
.ls9{letter-spacing:0.070272pt;}
.ls38{letter-spacing:0.072352pt;}
.ls12{letter-spacing:0.074816pt;}
.ls4b{letter-spacing:0.076608pt;}
.ls3e{letter-spacing:0.080000pt;}
.ls1c{letter-spacing:0.080160pt;}
.ls60{letter-spacing:0.080864pt;}
.ls42{letter-spacing:0.081984pt;}
.ls57{letter-spacing:0.085120pt;}
.ls11{letter-spacing:0.085504pt;}
.ls5f{letter-spacing:0.089376pt;}
.ls20{letter-spacing:0.090848pt;}
.ls66{letter-spacing:0.093632pt;}
.ls25{letter-spacing:0.096192pt;}
.ls53{letter-spacing:0.097888pt;}
.ls14{letter-spacing:0.101536pt;}
.ls4a{letter-spacing:0.102144pt;}
.ls5d{letter-spacing:0.106400pt;}
.ls1f{letter-spacing:0.106880pt;}
.ls65{letter-spacing:0.110656pt;}
.ls34{letter-spacing:0.112224pt;}
.ls68{letter-spacing:0.114912pt;}
.ls26{letter-spacing:0.117568pt;}
.ls35{letter-spacing:0.122912pt;}
.ls67{letter-spacing:0.127680pt;}
.ls31{letter-spacing:0.128256pt;}
.ls69{letter-spacing:0.131936pt;}
.ls3b{letter-spacing:0.133600pt;}
.ls3d{letter-spacing:0.135168pt;}
.ls33{letter-spacing:0.138944pt;}
.ls32{letter-spacing:0.144288pt;}
.ls55{letter-spacing:0.148960pt;}
.ls2a{letter-spacing:0.149632pt;}
.ls36{letter-spacing:0.154976pt;}
.ls6a{letter-spacing:0.157472pt;}
.ls30{letter-spacing:0.160320pt;}
.ls58{letter-spacing:0.161728pt;}
.ls49{letter-spacing:2.960000pt;}
.ls4d{letter-spacing:322.638656pt;}
.ls46{letter-spacing:331.921184pt;}
.ls3a{letter-spacing:450.002208pt;}
.ls37{letter-spacing:910.478656pt;}
.ls2f{letter-spacing:921.038400pt;}
.ls0{letter-spacing:1145.600000pt;}
.ws0{word-spacing:-14.645856pt;}
.wsbf{word-spacing:-14.640000pt;}
.wsc0{word-spacing:-13.360000pt;}
.ws194{word-spacing:-10.771936pt;}
.ws161{word-spacing:-10.742144pt;}
.ws195{word-spacing:-10.720864pt;}
.ws15f{word-spacing:-10.699584pt;}
.ws160{word-spacing:-10.695328pt;}
.wsc1{word-spacing:-10.640000pt;}
.ws15e{word-spacing:-10.635744pt;}
.wsbe{word-spacing:-8.640000pt;}
.ws10b{word-spacing:-0.352704pt;}
.ws140{word-spacing:-0.342016pt;}
.ws13d{word-spacing:-0.320640pt;}
.ws98{word-spacing:-0.315296pt;}
.wsc8{word-spacing:-0.309952pt;}
.ws10c{word-spacing:-0.288576pt;}
.ws13c{word-spacing:-0.283232pt;}
.ws174{word-spacing:-0.242592pt;}
.ws1a0{word-spacing:-0.238336pt;}
.ws170{word-spacing:-0.229824pt;}
.ws19e{word-spacing:-0.195776pt;}
.ws196{word-spacing:-0.191520pt;}
.ws186{word-spacing:-0.187264pt;}
.ws193{word-spacing:-0.183008pt;}
.ws198{word-spacing:-0.174496pt;}
.ws18f{word-spacing:-0.170240pt;}
.ws185{word-spacing:-0.165984pt;}
.ws191{word-spacing:-0.161728pt;}
.ws18a{word-spacing:-0.157472pt;}
.ws9d{word-spacing:-0.153216pt;}
.ws81{word-spacing:-0.148960pt;}
.wsde{word-spacing:-0.144704pt;}
.ws82{word-spacing:-0.140448pt;}
.ws17e{word-spacing:-0.136192pt;}
.ws197{word-spacing:-0.131936pt;}
.ws190{word-spacing:-0.127680pt;}
.ws184{word-spacing:-0.123424pt;}
.ws192{word-spacing:-0.119168pt;}
.ws183{word-spacing:-0.114912pt;}
.ws101{word-spacing:-0.110656pt;}
.ws1a3{word-spacing:-0.106400pt;}
.wsdd{word-spacing:-0.102144pt;}
.ws199{word-spacing:-0.097888pt;}
.ws1a2{word-spacing:-0.089376pt;}
.ws18e{word-spacing:-0.085120pt;}
.ws19f{word-spacing:-0.072352pt;}
.ws1a1{word-spacing:-0.059584pt;}
.wsc5{word-spacing:-0.053440pt;}
.ws8c{word-spacing:-0.048096pt;}
.ws93{word-spacing:-0.042752pt;}
.ws91{word-spacing:-0.032064pt;}
.ws33{word-spacing:-0.021376pt;}
.wsa7{word-spacing:-0.016032pt;}
.ws8a{word-spacing:-0.010688pt;}
.ws86{word-spacing:-0.005344pt;}
.ws1{word-spacing:0.000000pt;}
.ws85{word-spacing:0.005344pt;}
.ws70{word-spacing:0.010688pt;}
.ws4e{word-spacing:0.016032pt;}
.ws89{word-spacing:0.021376pt;}
.ws26{word-spacing:0.023424pt;}
.ws83{word-spacing:0.026720pt;}
.ws5{word-spacing:0.029280pt;}
.ws5c{word-spacing:0.032064pt;}
.ws2d{word-spacing:0.037408pt;}
.ws6f{word-spacing:0.042752pt;}
.ws23{word-spacing:0.046848pt;}
.wsc2{word-spacing:0.048096pt;}
.ws4{word-spacing:0.052704pt;}
.ws2c{word-spacing:0.053440pt;}
.ws84{word-spacing:0.058784pt;}
.ws2b{word-spacing:0.064128pt;}
.ws24{word-spacing:0.064416pt;}
.wsfb{word-spacing:0.069472pt;}
.ws47{word-spacing:0.074816pt;}
.ws92{word-spacing:0.080160pt;}
.ws16{word-spacing:0.081984pt;}
.wsc3{word-spacing:0.085504pt;}
.ws2{word-spacing:0.089600pt;}
.ws14c{word-spacing:0.090848pt;}
.ws3{word-spacing:0.096000pt;}
.wsc6{word-spacing:0.096192pt;}
.ws17{word-spacing:0.099552pt;}
.wsc4{word-spacing:0.101536pt;}
.wsf9{word-spacing:0.106880pt;}
.wsfc{word-spacing:0.112224pt;}
.wsef{word-spacing:0.117568pt;}
.wsc7{word-spacing:0.122912pt;}
.wsfa{word-spacing:0.128256pt;}
.ws25{word-spacing:0.140544pt;}
.ws34{word-spacing:0.144000pt;}
.ws7a{word-spacing:0.201600pt;}
.ws141{word-spacing:0.293920pt;}
.ws142{word-spacing:0.304608pt;}
.ws124{word-spacing:0.309952pt;}
.ws12f{word-spacing:0.315296pt;}
.ws134{word-spacing:0.320640pt;}
.ws123{word-spacing:0.331328pt;}
.ws13e{word-spacing:0.347360pt;}
.ws110{word-spacing:0.384768pt;}
.ws10f{word-spacing:0.390112pt;}
.ws6c{word-spacing:0.438208pt;}
.ws133{word-spacing:0.625248pt;}
.ws58{word-spacing:0.641280pt;}
.ws12e{word-spacing:0.646624pt;}
.ws166{word-spacing:0.651968pt;}
.ws11a{word-spacing:0.662656pt;}
.ws10e{word-spacing:0.694720pt;}
.ws42{word-spacing:0.710752pt;}
.ws57{word-spacing:0.945888pt;}
.ws12d{word-spacing:0.956576pt;}
.wsa0{word-spacing:0.961920pt;}
.wsdc{word-spacing:0.967264pt;}
.wsaa{word-spacing:0.972608pt;}
.wsdb{word-spacing:0.977952pt;}
.ws10a{word-spacing:0.988640pt;}
.wsa1{word-spacing:0.993984pt;}
.wsd0{word-spacing:1.015360pt;}
.ws152{word-spacing:1.020704pt;}
.ws41{word-spacing:1.031392pt;}
.ws153{word-spacing:1.042080pt;}
.ws53{word-spacing:1.266528pt;}
.ws114{word-spacing:1.271872pt;}
.ws13a{word-spacing:1.277216pt;}
.ws103{word-spacing:1.282560pt;}
.ws155{word-spacing:1.287904pt;}
.ws151{word-spacing:1.293248pt;}
.ws156{word-spacing:1.303936pt;}
.ws164{word-spacing:1.309280pt;}
.ws157{word-spacing:1.314624pt;}
.ws115{word-spacing:1.325312pt;}
.ws7d{word-spacing:1.330656pt;}
.wscf{word-spacing:1.341344pt;}
.ws7c{word-spacing:1.346688pt;}
.ws16b{word-spacing:1.389440pt;}
.ws52{word-spacing:1.587168pt;}
.wsc9{word-spacing:1.597856pt;}
.ws9f{word-spacing:1.603200pt;}
.ws3e{word-spacing:1.608544pt;}
.ws9e{word-spacing:1.613888pt;}
.ws149{word-spacing:1.619232pt;}
.ws1e{word-spacing:1.627968pt;}
.ws128{word-spacing:1.635264pt;}
.ws1f{word-spacing:1.651392pt;}
.ws112{word-spacing:1.656640pt;}
.ws7b{word-spacing:1.661984pt;}
.ws159{word-spacing:1.667328pt;}
.ws16c{word-spacing:1.758176pt;}
.ws3d{word-spacing:1.929184pt;}
.ws16a{word-spacing:1.950560pt;}
.ws118{word-spacing:1.955904pt;}
.ws121{word-spacing:1.961248pt;}
.ws1b{word-spacing:1.961760pt;}
.ws117{word-spacing:1.966592pt;}
.ws158{word-spacing:1.977280pt;}
.ws116{word-spacing:1.987968pt;}
.ws11f{word-spacing:2.004000pt;}
.wsb1{word-spacing:2.036064pt;}
.ws188{word-spacing:2.093952pt;}
.ws189{word-spacing:2.115232pt;}
.ws187{word-spacing:2.119488pt;}
.ws5d{word-spacing:2.239136pt;}
.wsca{word-spacing:2.249824pt;}
.ws37{word-spacing:2.265856pt;}
.ws1a{word-spacing:2.272128pt;}
.wsd5{word-spacing:2.276544pt;}
.wsd3{word-spacing:2.281888pt;}
.ws169{word-spacing:2.308608pt;}
.wsd4{word-spacing:2.324640pt;}
.wsfe{word-spacing:2.379104pt;}
.wsff{word-spacing:2.404640pt;}
.ws100{word-spacing:2.481248pt;}
.wsce{word-spacing:2.559776pt;}
.wsa3{word-spacing:2.575808pt;}
.ws4d{word-spacing:2.581152pt;}
.wsd{word-spacing:2.588352pt;}
.ws119{word-spacing:2.591840pt;}
.wsed{word-spacing:2.607872pt;}
.wsee{word-spacing:2.613216pt;}
.ws19d{word-spacing:2.638720pt;}
.ws182{word-spacing:2.698304pt;}
.ws19c{word-spacing:2.715328pt;}
.ws17a{word-spacing:2.728096pt;}
.ws18d{word-spacing:2.736608pt;}
.ws179{word-spacing:2.740864pt;}
.ws181{word-spacing:2.749376pt;}
.ws180{word-spacing:2.753632pt;}
.ws178{word-spacing:2.762144pt;}
.ws113{word-spacing:2.859040pt;}
.ws10d{word-spacing:2.875072pt;}
.wsec{word-spacing:2.880416pt;}
.ws4c{word-spacing:2.885760pt;}
.wsd8{word-spacing:2.891104pt;}
.wsa2{word-spacing:2.896448pt;}
.ws11{word-spacing:2.916288pt;}
.ws67{word-spacing:2.917824pt;}
.wsa8{word-spacing:2.928512pt;}
.wsae{word-spacing:2.939200pt;}
.wsc{word-spacing:2.939712pt;}
.wsd7{word-spacing:2.944544pt;}
.ws18c{word-spacing:3.060064pt;}
.ws19a{word-spacing:3.068576pt;}
.ws19b{word-spacing:3.072832pt;}
.ws17f{word-spacing:3.081344pt;}
.ws18b{word-spacing:3.089856pt;}
.wscd{word-spacing:3.179680pt;}
.wseb{word-spacing:3.190368pt;}
.ws5b{word-spacing:3.195712pt;}
.ws6d{word-spacing:3.206400pt;}
.ws6e{word-spacing:3.222432pt;}
.ws65{word-spacing:3.233120pt;}
.ws10{word-spacing:3.238368pt;}
.ws77{word-spacing:3.243808pt;}
.ws31{word-spacing:3.249152pt;}
.wsa{word-spacing:3.250080pt;}
.ws66{word-spacing:3.254496pt;}
.ws32{word-spacing:3.259840pt;}
.wsb{word-spacing:3.261792pt;}
.wsb4{word-spacing:3.313280pt;}
.wsb3{word-spacing:3.318624pt;}
.ws11d{word-spacing:3.505664pt;}
.wsad{word-spacing:3.516352pt;}
.ws76{word-spacing:3.521696pt;}
.wscc{word-spacing:3.527040pt;}
.wsb2{word-spacing:3.532384pt;}
.ws122{word-spacing:3.543072pt;}
.wscb{word-spacing:3.553760pt;}
.ws109{word-spacing:3.559104pt;}
.ws9{word-spacing:3.566304pt;}
.ws8{word-spacing:3.572160pt;}
.ws30{word-spacing:3.575136pt;}
.ws143{word-spacing:3.585824pt;}
.wsd6{word-spacing:3.853024pt;}
.ws11c{word-spacing:3.874400pt;}
.ws38{word-spacing:4.130912pt;}
.ws3a{word-spacing:4.146944pt;}
.ws40{word-spacing:4.157632pt;}
.ws11e{word-spacing:4.162976pt;}
.ws39{word-spacing:4.173664pt;}
.ws137{word-spacing:4.205728pt;}
.ws5a{word-spacing:4.221760pt;}
.ws69{word-spacing:4.440864pt;}
.ws3f{word-spacing:4.488960pt;}
.ws106{word-spacing:4.494304pt;}
.ws68{word-spacing:4.499648pt;}
.ws59{word-spacing:4.531712pt;}
.ws136{word-spacing:4.547744pt;}
.wsd2{word-spacing:4.606528pt;}
.ws125{word-spacing:4.611872pt;}
.wse8{word-spacing:4.798912pt;}
.ws3c{word-spacing:4.809600pt;}
.ws3b{word-spacing:4.863040pt;}
.ws154{word-spacing:4.916480pt;}
.wsd1{word-spacing:4.937856pt;}
.ws148{word-spacing:5.119552pt;}
.ws15{word-spacing:5.188416pt;}
.ws13f{word-spacing:5.237120pt;}
.ws51{word-spacing:5.418816pt;}
.ws147{word-spacing:5.440192pt;}
.wsa6{word-spacing:5.450880pt;}
.ws50{word-spacing:5.461568pt;}
.ws14{word-spacing:5.481216pt;}
.ws49{word-spacing:5.493632pt;}
.ws4f{word-spacing:5.498976pt;}
.wsa4{word-spacing:5.509664pt;}
.wsa5{word-spacing:5.525696pt;}
.ws48{word-spacing:5.541728pt;}
.ws16e{word-spacing:5.583872pt;}
.ws16d{word-spacing:5.643456pt;}
.ws16f{word-spacing:5.673248pt;}
.ws55{word-spacing:5.750144pt;}
.ws56{word-spacing:5.766176pt;}
.ws28{word-spacing:5.776864pt;}
.ws146{word-spacing:6.102848pt;}
.ws27{word-spacing:6.118880pt;}
.ws19{word-spacing:6.125376pt;}
.ws145{word-spacing:6.412800pt;}
.ws18{word-spacing:6.435744pt;}
.ws5f{word-spacing:6.455552pt;}
.ws60{word-spacing:6.466240pt;}
.ws120{word-spacing:6.541056pt;}
.ws17d{word-spacing:6.605312pt;}
.wsb0{word-spacing:6.706720pt;}
.ws165{word-spacing:6.712064pt;}
.ws5e{word-spacing:6.765504pt;}
.ws14b{word-spacing:6.786880pt;}
.ws17c{word-spacing:6.898976pt;}
.ws17b{word-spacing:6.916000pt;}
.ws2e{word-spacing:7.032704pt;}
.ws2f{word-spacing:7.043392pt;}
.ws127{word-spacing:7.059424pt;}
.ws14a{word-spacing:7.064768pt;}
.ws15c{word-spacing:7.150272pt;}
.ws72{word-spacing:7.422816pt;}
.ws71{word-spacing:7.433504pt;}
.ws130{word-spacing:7.679328pt;}
.ws11b{word-spacing:7.684672pt;}
.ws13{word-spacing:7.735776pt;}
.ws54{word-spacing:8.021344pt;}
.ws74{word-spacing:8.032032pt;}
.ws12{word-spacing:8.034432pt;}
.ws2a{word-spacing:8.069440pt;}
.ws64{word-spacing:8.331296pt;}
.ws73{word-spacing:8.341984pt;}
.ws29{word-spacing:8.379392pt;}
.ws36{word-spacing:8.390080pt;}
.ws173{word-spacing:8.473696pt;}
.ws108{word-spacing:8.630560pt;}
.ws35{word-spacing:8.641248pt;}
.ws102{word-spacing:8.651936pt;}
.ws63{word-spacing:8.662624pt;}
.wse{word-spacing:8.678592pt;}
.wsf{word-spacing:8.684448pt;}
.ws177{word-spacing:8.775872pt;}
.ws172{word-spacing:8.831200pt;}
.ws171{word-spacing:8.835456pt;}
.wsaf{word-spacing:8.956544pt;}
.ws144{word-spacing:8.967232pt;}
.ws107{word-spacing:8.977920pt;}
.ws175{word-spacing:9.124864pt;}
.ws176{word-spacing:9.129120pt;}
.ws79{word-spacing:9.571104pt;}
.ws46{word-spacing:9.592480pt;}
.ws78{word-spacing:9.597824pt;}
.ws45{word-spacing:9.603168pt;}
.ws6b{word-spacing:9.613856pt;}
.ws14f{word-spacing:9.651264pt;}
.ws14d{word-spacing:9.945184pt;}
.ws6a{word-spacing:9.966560pt;}
.ws14e{word-spacing:10.003968pt;}
.ws4b{word-spacing:10.559744pt;}
.ws44{word-spacing:10.880384pt;}
.ws43{word-spacing:10.896416pt;}
.wsab{word-spacing:10.901760pt;}
.ws4a{word-spacing:10.912448pt;}
.ws139{word-spacing:10.917792pt;}
.wsac{word-spacing:10.949856pt;}
.ws12c{word-spacing:11.174304pt;}
.ws138{word-spacing:11.217056pt;}
.ws12b{word-spacing:11.227744pt;}
.ws22{word-spacing:11.237664pt;}
.ws21{word-spacing:11.243520pt;}
.ws162{word-spacing:11.516320pt;}
.ws132{word-spacing:11.527008pt;}
.ws163{word-spacing:11.532352pt;}
.ws20{word-spacing:11.565600pt;}
.ws131{word-spacing:11.847648pt;}
.ws75{word-spacing:11.858336pt;}
.ws12a{word-spacing:12.483584pt;}
.ws15d{word-spacing:12.622528pt;}
.ws129{word-spacing:12.820256pt;}
.wsa9{word-spacing:13.124864pt;}
.ws15b{word-spacing:13.162272pt;}
.ws15a{word-spacing:13.445504pt;}
.wsd9{word-spacing:13.493600pt;}
.wsda{word-spacing:13.509632pt;}
.wsea{word-spacing:14.749440pt;}
.ws105{word-spacing:14.776160pt;}
.wse9{word-spacing:15.038016pt;}
.ws104{word-spacing:15.080768pt;}
.ws135{word-spacing:15.695328pt;}
.ws1c{word-spacing:16.010304pt;}
.ws1d{word-spacing:16.039584pt;}
.ws150{word-spacing:16.133536pt;}
.ws126{word-spacing:16.748096pt;}
.ws167{word-spacing:18.549024pt;}
.ws168{word-spacing:18.586432pt;}
.ws13b{word-spacing:20.504928pt;}
.ws6{word-spacing:21.169440pt;}
.ws7{word-spacing:21.175296pt;}
.ws62{word-spacing:22.118816pt;}
.ws61{word-spacing:22.145536pt;}
.ws88{word-spacing:140.825088pt;}
.ws7f{word-spacing:159.133632pt;}
.ws87{word-spacing:160.031424pt;}
.ws9c{word-spacing:185.848288pt;}
.ws9b{word-spacing:185.858976pt;}
.ws9a{word-spacing:185.869664pt;}
.ws8b{word-spacing:196.717984pt;}
.ws99{word-spacing:199.277760pt;}
.ws94{word-spacing:210.174176pt;}
.ws80{word-spacing:213.369888pt;}
.ws97{word-spacing:223.603648pt;}
.ws8f{word-spacing:223.934976pt;}
.wsb7{word-spacing:235.782624pt;}
.ws95{word-spacing:237.049152pt;}
.ws90{word-spacing:237.059840pt;}
.ws96{word-spacing:237.070528pt;}
.wsb8{word-spacing:246.358400pt;}
.wse6{word-spacing:251.029056pt;}
.wsbb{word-spacing:257.222752pt;}
.wsb9{word-spacing:259.793216pt;}
.wsba{word-spacing:267.151904pt;}
.wsf3{word-spacing:271.309536pt;}
.wse5{word-spacing:273.853280pt;}
.wse1{word-spacing:273.858624pt;}
.wse0{word-spacing:273.863968pt;}
.wsf0{word-spacing:273.869312pt;}
.wsf2{word-spacing:273.874656pt;}
.wsf1{word-spacing:273.885344pt;}
.wsfd{word-spacing:274.067040pt;}
.wsbc{word-spacing:276.541312pt;}
.wsb5{word-spacing:277.385664pt;}
.wsdf{word-spacing:287.277408pt;}
.wsb6{word-spacing:288.266048pt;}
.wsbd{word-spacing:290.836512pt;}
.wse2{word-spacing:300.738944pt;}
.wse4{word-spacing:300.749632pt;}
.wsf8{word-spacing:300.760320pt;}
.ws8e{word-spacing:301.369536pt;}
.wse3{word-spacing:307.472384pt;}
.wse7{word-spacing:314.163072pt;}
.ws111{word-spacing:322.585216pt;}
.wsf4{word-spacing:327.629952pt;}
.wsf6{word-spacing:327.635296pt;}
.wsf5{word-spacing:327.640640pt;}
.wsf7{word-spacing:327.827680pt;}
.ws7e{word-spacing:665.600544pt;}
.ws8d{word-spacing:771.470528pt;}
._55{margin-left:-1761.517696pt;}
._11{margin-left:-547.904288pt;}
._10{margin-left:-534.335872pt;}
._1c{margin-left:-186.676896pt;}
._13{margin-left:-91.200704pt;}
._14{margin-left:-77.760544pt;}
._4{margin-left:-75.131296pt;}
._41{margin-left:-73.282272pt;}
._12{margin-left:-70.824320pt;}
._4e{margin-left:-68.387168pt;}
._4f{margin-left:-66.559520pt;}
._4a{margin-left:-59.339776pt;}
._40{margin-left:-54.957696pt;}
._50{margin-left:-53.370528pt;}
._39{margin-left:-50.703872pt;}
._53{margin-left:-49.688512pt;}
._a{margin-left:-47.999808pt;}
._52{margin-left:-42.239264pt;}
._7{margin-left:-41.277056pt;}
._43{margin-left:-39.935712pt;}
._4d{margin-left:-38.749344pt;}
._9{margin-left:-35.826176pt;}
._42{margin-left:-33.918368pt;}
._44{margin-left:-28.820480pt;}
._8{margin-left:-27.836896pt;}
._48{margin-left:-26.035968pt;}
._3e{margin-left:-23.241344pt;}
._5{margin-left:-22.134848pt;}
._29{margin-left:-17.277152pt;}
._51{margin-left:-14.081440pt;}
._3a{margin-left:-13.119520pt;}
._3f{margin-left:-11.901088pt;}
._28{margin-left:-10.880384pt;}
._27{margin-left:-9.684864pt;}
._26{margin-left:-6.284832pt;}
._b{margin-left:-2.559776pt;}
._0{margin-left:-0.913536pt;}
._1{width:0.995520pt;}
._6{width:2.559776pt;}
._49{width:3.521696pt;}
._16{width:6.402112pt;}
._56{width:10.856672pt;}
._34{width:12.798880pt;}
._33{width:14.683776pt;}
._30{width:17.341280pt;}
._15{width:19.842272pt;}
._18{width:21.124832pt;}
._31{width:22.396704pt;}
._32{width:24.315200pt;}
._35{width:25.276832pt;}
._37{width:27.195616pt;}
._38{width:28.483520pt;}
._4c{width:30.076032pt;}
._2a{width:32.400672pt;}
._36{width:33.597728pt;}
._2f{width:35.836864pt;}
._57{width:37.131456pt;}
._2d{width:39.679200pt;}
._2b{width:41.918336pt;}
._4b{width:42.842560pt;}
._2e{width:44.478112pt;}
._2c{width:46.075968pt;}
._47{width:50.436672pt;}
._45{width:56.944128pt;}
._3{width:62.578240pt;}
._46{width:70.540800pt;}
._1f{width:77.017440pt;}
._2{width:93.439840pt;}
._5b{width:111.748384pt;}
._5e{width:115.291456pt;}
._24{width:116.798464pt;}
._59{width:118.770400pt;}
._5d{width:121.982144pt;}
._5a{width:123.259360pt;}
._5c{width:126.401632pt;}
._23{width:129.917984pt;}
._3d{width:135.678816pt;}
._3b{width:148.477696pt;}
._25{width:173.760160pt;}
._3c{width:175.358016pt;}
._f{width:210.238304pt;}
._d{width:230.721856pt;}
._e{width:250.558784pt;}
._1d{width:261.567424pt;}
._58{width:322.571872pt;}
._54{width:432.211744pt;}
._c{width:471.639488pt;}
._19{width:504.382752pt;}
._21{width:518.132864pt;}
._20{width:521.670304pt;}
._17{width:528.067072pt;}
._1e{width:547.893600pt;}
._1b{width:597.320256pt;}
._22{width:598.453184pt;}
._1a{width:604.865984pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:50.853333pt;}
.y173{bottom:78.133613pt;}
.ydc{bottom:84.612800pt;}
.yb8{bottom:85.973685pt;}
.y1a9{bottom:90.773733pt;}
.y1c3{bottom:91.576040pt;}
.y1ab{bottom:91.576253pt;}
.ydb{bottom:94.533333pt;}
.y172{bottom:96.852800pt;}
.y14f{bottom:98.213600pt;}
.y1eb{bottom:100.206661pt;}
.yb7{bottom:101.253517pt;}
.ya7{bottom:103.333341pt;}
.y1a8{bottom:104.052800pt;}
.y2b{bottom:105.333893pt;}
.y171{bottom:106.773333pt;}
.y1c2{bottom:106.855872pt;}
.y59{bottom:106.856085pt;}
.y1ea{bottom:112.526717pt;}
.y14e{bottom:113.333333pt;}
.yda{bottom:113.574789pt;}
.yb6{bottom:116.613509pt;}
.ya6{bottom:118.693333pt;}
.y1a7{bottom:120.213717pt;}
.y2a{bottom:120.693885pt;}
.y1c1{bottom:122.215864pt;}
.y58{bottom:122.216077pt;}
.y1e9{bottom:124.766973pt;}
.y7d{bottom:127.333701pt;}
.yd9{bottom:128.934781pt;}
.y14d{bottom:131.013333pt;}
.yb5{bottom:131.973501pt;}
.y12d{bottom:131.974413pt;}
.ya5{bottom:133.493733pt;}
.y1a6{bottom:135.573709pt;}
.y29{bottom:136.053877pt;}
.y1e8{bottom:137.007229pt;}
.y1c0{bottom:137.575856pt;}
.y57{bottom:137.576069pt;}
.y7c{bottom:142.693693pt;}
.y103{bottom:143.013869pt;}
.yd8{bottom:144.214613pt;}
.yb4{bottom:147.253333pt;}
.y12c{bottom:147.254245pt;}
.ya4{bottom:148.613333pt;}
.y14c{bottom:148.693333pt;}
.y1e7{bottom:149.327285pt;}
.y1a5{bottom:150.933701pt;}
.y28{bottom:151.333709pt;}
.y1bf{bottom:152.855688pt;}
.y56{bottom:152.855901pt;}
.y7b{bottom:157.973525pt;}
.y102{bottom:158.293701pt;}
.yd7{bottom:159.574605pt;}
.y1e6{bottom:161.567541pt;}
.yb3{bottom:162.053733pt;}
.y12b{bottom:162.614237pt;}
.y19f{bottom:166.213533pt;}
.ya3{bottom:166.293333pt;}
.y14b{bottom:166.373333pt;}
.y27{bottom:166.693701pt;}
.y1be{bottom:168.215680pt;}
.y55{bottom:168.215893pt;}
.y7a{bottom:173.333517pt;}
.y101{bottom:173.653693pt;}
.y1e5{bottom:173.807797pt;}
.yd6{bottom:174.854437pt;}
.yb2{bottom:177.253333pt;}
.y12a{bottom:177.894069pt;}
.y1a4{bottom:181.412800pt;}
.y19e{bottom:181.573525pt;}
.y26{bottom:181.973533pt;}
.y1bd{bottom:183.575672pt;}
.y54{bottom:183.575885pt;}
.ya2{bottom:183.973333pt;}
.y14a{bottom:184.053333pt;}
.y1e4{bottom:186.127853pt;}
.y79{bottom:188.693509pt;}
.y100{bottom:189.013685pt;}
.yd5{bottom:190.214429pt;}
.y129{bottom:193.254061pt;}
.yb1{bottom:194.853333pt;}
.y1a3{bottom:196.772800pt;}
.y19d{bottom:196.933517pt;}
.y25{bottom:197.333525pt;}
.y1e3{bottom:198.368109pt;}
.y1bc{bottom:198.855504pt;}
.y53{bottom:198.855717pt;}
.ya1{bottom:199.973181pt;}
.y149{bottom:201.653333pt;}
.y78{bottom:203.973341pt;}
.yff{bottom:204.293517pt;}
.yd4{bottom:205.574421pt;}
.y170{bottom:208.613877pt;}
.y128{bottom:208.614053pt;}
.y1e2{bottom:210.608365pt;}
.y1a2{bottom:212.052800pt;}
.y19c{bottom:212.213349pt;}
.yb0{bottom:212.533333pt;}
.y24{bottom:212.693517pt;}
.y52{bottom:214.055389pt;}
.y1bb{bottom:214.215496pt;}
.y1aa{bottom:214.215709pt;}
.ya0{bottom:215.253013pt;}
.y77{bottom:219.333333pt;}
.yfe{bottom:219.653509pt;}
.yd3{bottom:220.854253pt;}
.y1e1{bottom:222.928421pt;}
.y16f{bottom:223.893709pt;}
.y127{bottom:223.893885pt;}
.y1a1{bottom:227.412800pt;}
.y19b{bottom:227.573341pt;}
.y23{bottom:227.813029pt;}
.y1ba{bottom:229.575488pt;}
.y51{bottom:229.575701pt;}
.yaf{bottom:230.213333pt;}
.y9e{bottom:231.253341pt;}
.y76{bottom:234.133733pt;}
.yfd{bottom:235.013501pt;}
.y1e0{bottom:235.168677pt;}
.yd2{bottom:236.214245pt;}
.y148{bottom:237.013333pt;}
.y16e{bottom:239.253701pt;}
.y126{bottom:239.253877pt;}
.y1a0{bottom:242.772800pt;}
.y19a{bottom:242.933333pt;}
.y22{bottom:243.333341pt;}
.y1b9{bottom:244.855320pt;}
.y50{bottom:244.855533pt;}
.y9d{bottom:246.613333pt;}
.y1df{bottom:247.408933pt;}
.yae{bottom:247.893333pt;}
.y75{bottom:249.253333pt;}
.yfc{bottom:250.293333pt;}
.yd1{bottom:251.574237pt;}
.y16d{bottom:254.613693pt;}
.y125{bottom:254.613869pt;}
.y147{bottom:254.693333pt;}
.y21{bottom:258.693333pt;}
.y198{bottom:258.933861pt;}
.y1de{bottom:259.728989pt;}
.y1b8{bottom:260.215312pt;}
.y4f{bottom:260.215525pt;}
.y9c{bottom:262.613341pt;}
.yfb{bottom:265.173600pt;}
.yad{bottom:265.573333pt;}
.yd0{bottom:266.854069pt;}
.y74{bottom:266.933333pt;}
.y16c{bottom:269.893525pt;}
.y124{bottom:269.893701pt;}
.y1dd{bottom:271.969245pt;}
.y146{bottom:272.374485pt;}
.y197{bottom:274.213693pt;}
.y18d{bottom:274.213949pt;}
.y20{bottom:274.292800pt;}
.y1b7{bottom:275.575304pt;}
.y4e{bottom:275.575517pt;}
.y9b{bottom:277.973333pt;}
.yfa{bottom:280.293333pt;}
.y9f{bottom:280.293501pt;}
.ycf{bottom:282.214061pt;}
.yac{bottom:283.253333pt;}
.y1dc{bottom:284.209501pt;}
.y73{bottom:284.613333pt;}
.y16b{bottom:285.253517pt;}
.y123{bottom:285.253693pt;}
.y145{bottom:288.294261pt;}
.y196{bottom:289.573685pt;}
.y18c{bottom:289.573941pt;}
.y1f{bottom:290.853333pt;}
.y1b6{bottom:290.855136pt;}
.y4d{bottom:290.855349pt;}
.y9a{bottom:295.573333pt;}
.y1db{bottom:296.529557pt;}
.yce{bottom:297.574053pt;}
.yf9{bottom:297.973333pt;}
.y16a{bottom:300.613509pt;}
.y122{bottom:300.613685pt;}
.yab{bottom:300.853333pt;}
.y72{bottom:302.293333pt;}
.y144{bottom:303.654253pt;}
.y191{bottom:304.772933pt;}
.y195{bottom:304.933677pt;}
.y18b{bottom:304.933933pt;}
.y1b5{bottom:306.215128pt;}
.y4c{bottom:306.215341pt;}
.y1e{bottom:306.454560pt;}
.y1da{bottom:308.769813pt;}
.ycd{bottom:312.853885pt;}
.y99{bottom:313.253333pt;}
.yf8{bottom:315.653333pt;}
.y169{bottom:315.893341pt;}
.y121{bottom:315.893517pt;}
.yaa{bottom:318.533333pt;}
.y143{bottom:319.014245pt;}
.y71{bottom:319.973333pt;}
.y190{bottom:320.052800pt;}
.y194{bottom:320.213509pt;}
.y18a{bottom:320.213765pt;}
.y1d9{bottom:321.010069pt;}
.y1b4{bottom:321.494960pt;}
.y4b{bottom:321.495173pt;}
.y1d{bottom:323.334480pt;}
.ycc{bottom:328.213877pt;}
.y98{bottom:330.933333pt;}
.y168{bottom:331.253333pt;}
.y120{bottom:331.253509pt;}
.y1d8{bottom:333.250325pt;}
.yf7{bottom:333.253333pt;}
.y142{bottom:334.294077pt;}
.y18f{bottom:335.412800pt;}
.y193{bottom:335.573501pt;}
.y189{bottom:335.573757pt;}
.ya9{bottom:336.215221pt;}
.y1b3{bottom:336.854952pt;}
.y4a{bottom:336.855165pt;}
.y70{bottom:337.493981pt;}
.y1c{bottom:340.214400pt;}
.ycb{bottom:343.573869pt;}
.y1d7{bottom:345.570381pt;}
.y167{bottom:346.053733pt;}
.y11f{bottom:346.613501pt;}
.y97{bottom:348.613941pt;}
.y141{bottom:349.654069pt;}
.y18e{bottom:350.692933pt;}
.y192{bottom:350.853333pt;}
.y188{bottom:350.853589pt;}
.yf6{bottom:350.933333pt;}
.y1b2{bottom:352.214944pt;}
.y49{bottom:352.215157pt;}
.y6f{bottom:353.574077pt;}
.y1b{bottom:357.013800pt;}
.y1d6{bottom:357.810637pt;}
.yca{bottom:358.853701pt;}
.y166{bottom:361.173333pt;}
.y11e{bottom:361.893333pt;}
.y96{bottom:364.613877pt;}
.y140{bottom:365.014061pt;}
.y187{bottom:366.853525pt;}
.y1b1{bottom:367.494776pt;}
.y48{bottom:367.494989pt;}
.yf5{bottom:368.613333pt;}
.y6e{bottom:368.934069pt;}
.y1d5{bottom:370.050893pt;}
.y1a{bottom:373.893720pt;}
.yc9{bottom:374.213693pt;}
.y11d{bottom:376.773733pt;}
.y165{bottom:378.853333pt;}
.y95{bottom:379.893709pt;}
.y13f{bottom:380.293893pt;}
.y186{bottom:382.213517pt;}
.y1d4{bottom:382.370949pt;}
.y1b0{bottom:382.854768pt;}
.y47{bottom:382.854981pt;}
.y6d{bottom:384.213901pt;}
.yf4{bottom:386.293333pt;}
.yc8{bottom:389.413365pt;}
.y19{bottom:390.773640pt;}
.y11c{bottom:391.893333pt;}
.y1d3{bottom:394.611205pt;}
.y94{bottom:395.253701pt;}
.y13e{bottom:395.653885pt;}
.y164{bottom:396.533333pt;}
.y182{bottom:397.412800pt;}
.y185{bottom:397.573509pt;}
.y17f{bottom:397.574816pt;}
.y1af{bottom:398.214760pt;}
.y46{bottom:398.214973pt;}
.y6c{bottom:399.573893pt;}
.yf3{bottom:403.973333pt;}
.yc7{bottom:404.853517pt;}
.y1d2{bottom:406.851461pt;}
.y18{bottom:407.653560pt;}
.y11b{bottom:409.573333pt;}
.y93{bottom:410.613693pt;}
.y13d{bottom:411.013877pt;}
.y181{bottom:412.692933pt;}
.y184{bottom:412.853341pt;}
.y17e{bottom:412.854648pt;}
.y1ae{bottom:413.494592pt;}
.y45{bottom:413.494805pt;}
.y163{bottom:414.213333pt;}
.y6b{bottom:414.933885pt;}
.y1d1{bottom:419.171517pt;}
.yc6{bottom:420.213509pt;}
.yf2{bottom:421.653333pt;}
.y17{bottom:424.452960pt;}
.y92{bottom:425.893525pt;}
.y13c{bottom:426.293709pt;}
.y11a{bottom:427.173333pt;}
.y180{bottom:428.052800pt;}
.y183{bottom:428.213333pt;}
.y199{bottom:428.214413pt;}
.y17d{bottom:428.214640pt;}
.y1ad{bottom:428.854584pt;}
.y44{bottom:428.854797pt;}
.y6a{bottom:430.213717pt;}
.y1d0{bottom:431.411773pt;}
.y162{bottom:431.893333pt;}
.yc5{bottom:435.573501pt;}
.yf1{bottom:439.253949pt;}
.y207{bottom:441.093341pt;}
.y91{bottom:441.253517pt;}
.y16{bottom:441.413400pt;}
.y13b{bottom:441.493381pt;}
.y1cf{bottom:443.652029pt;}
.y17c{bottom:444.054256pt;}
.y1ac{bottom:444.214576pt;}
.y43{bottom:444.214789pt;}
.y119{bottom:444.853333pt;}
.y69{bottom:445.573709pt;}
.y161{bottom:449.573333pt;}
.yc4{bottom:450.853901pt;}
.yf0{bottom:455.253885pt;}
.y1ce{bottom:455.972085pt;}
.y206{bottom:456.453333pt;}
.y90{bottom:456.613509pt;}
.y13a{bottom:456.933533pt;}
.y15{bottom:458.212800pt;}
.y17b{bottom:459.494408pt;}
.y42{bottom:459.494621pt;}
.y68{bottom:460.933701pt;}
.y118{bottom:462.533333pt;}
.yc3{bottom:466.213893pt;}
.y160{bottom:467.173333pt;}
.y1cd{bottom:468.212341pt;}
.yef{bottom:470.613877pt;}
.y8f{bottom:471.893341pt;}
.y139{bottom:472.293525pt;}
.y205{bottom:472.373333pt;}
.y17a{bottom:474.854400pt;}
.y41{bottom:474.854613pt;}
.y14{bottom:475.413333pt;}
.y67{bottom:476.213533pt;}
.y117{bottom:480.213333pt;}
.y1cc{bottom:480.452597pt;}
.yc2{bottom:481.493725pt;}
.y15f{bottom:484.853333pt;}
.yee{bottom:485.893709pt;}
.y8e{bottom:487.253333pt;}
.y138{bottom:487.653517pt;}
.y204{bottom:489.649189pt;}
.y179{bottom:490.214392pt;}
.y40{bottom:490.214605pt;}
.y66{bottom:491.573525pt;}
.y1cb{bottom:492.772653pt;}
.y13{bottom:493.495160pt;}
.yc1{bottom:496.853717pt;}
.y116{bottom:497.893333pt;}
.yed{bottom:501.253701pt;}
.y203{bottom:501.969245pt;}
.y8d{bottom:502.053733pt;}
.y15e{bottom:502.533333pt;}
.y137{bottom:502.933349pt;}
.y1ca{bottom:505.012909pt;}
.y178{bottom:505.494224pt;}
.y3f{bottom:505.494437pt;}
.y65{bottom:506.933517pt;}
.y12{bottom:510.375080pt;}
.yc0{bottom:512.133549pt;}
.y202{bottom:514.209501pt;}
.y115{bottom:515.573333pt;}
.yec{bottom:516.613693pt;}
.y8c{bottom:517.173333pt;}
.y1c9{bottom:517.253165pt;}
.y136{bottom:518.293341pt;}
.y15d{bottom:520.214301pt;}
.y177{bottom:520.854216pt;}
.y3e{bottom:520.854429pt;}
.y64{bottom:522.213349pt;}
.y201{bottom:526.449757pt;}
.y11{bottom:527.255000pt;}
.ybf{bottom:528.532949pt;}
.y1c8{bottom:529.573221pt;}
.yeb{bottom:531.893525pt;}
.y114{bottom:533.173333pt;}
.y135{bottom:533.653333pt;}
.y8b{bottom:534.853333pt;}
.y176{bottom:536.214208pt;}
.y15c{bottom:536.214237pt;}
.y3d{bottom:536.214421pt;}
.y63{bottom:537.573341pt;}
.y200{bottom:538.769813pt;}
.y1c7{bottom:541.813477pt;}
.y10{bottom:544.134920pt;}
.ybe{bottom:544.853525pt;}
.yea{bottom:547.253517pt;}
.y134{bottom:548.453477pt;}
.y113{bottom:550.854096pt;}
.y1ff{bottom:551.010069pt;}
.y175{bottom:551.494040pt;}
.y15b{bottom:551.494069pt;}
.y3c{bottom:551.494253pt;}
.y8a{bottom:552.533333pt;}
.y62{bottom:552.933333pt;}
.y1c6{bottom:554.053733pt;}
.ybd{bottom:560.133357pt;}
.y133{bottom:560.693733pt;}
.yf{bottom:560.934320pt;}
.ye9{bottom:562.613509pt;}
.y1fe{bottom:563.250325pt;}
.y112{bottom:566.854032pt;}
.y15a{bottom:566.854061pt;}
.y3b{bottom:566.854245pt;}
.y1c5{bottom:567.413333pt;}
.y61{bottom:567.733733pt;}
.y89{bottom:570.213333pt;}
.y1fd{bottom:575.570381pt;}
.y132{bottom:575.893333pt;}
.ybc{bottom:576.532757pt;}
.ye{bottom:577.814240pt;}
.ye8{bottom:577.893341pt;}
.y111{bottom:582.214024pt;}
.y159{bottom:582.214053pt;}
.y3a{bottom:582.214237pt;}
.y60{bottom:582.853333pt;}
.y1c4{bottom:584.539600pt;}
.y88{bottom:586.213021pt;}
.y1fc{bottom:587.810637pt;}
.ybb{bottom:592.853773pt;}
.ye7{bottom:593.253333pt;}
.y131{bottom:593.493333pt;}
.yd{bottom:594.694160pt;}
.y110{bottom:597.493856pt;}
.y158{bottom:597.493885pt;}
.y39{bottom:597.494069pt;}
.y1fb{bottom:600.050893pt;}
.y5f{bottom:600.533333pt;}
.y87{bottom:601.492853pt;}
.ye6{bottom:608.053733pt;}
.yba{bottom:609.333885pt;}
.y130{bottom:611.173333pt;}
.yc{bottom:611.574080pt;}
.y1fa{bottom:612.370949pt;}
.y10f{bottom:612.853848pt;}
.y157{bottom:612.853877pt;}
.y38{bottom:612.854061pt;}
.y85{bottom:617.493341pt;}
.y5e{bottom:618.213333pt;}
.ye5{bottom:621.493333pt;}
.y1f9{bottom:624.611205pt;}
.yb9{bottom:627.094485pt;}
.y10e{bottom:628.133680pt;}
.y156{bottom:628.133709pt;}
.y37{bottom:628.133893pt;}
.yb{bottom:628.454000pt;}
.y12f{bottom:628.853333pt;}
.y84{bottom:632.853333pt;}
.y5d{bottom:635.893333pt;}
.y1f8{bottom:636.851461pt;}
.ye4{bottom:637.493333pt;}
.y10d{bottom:643.493672pt;}
.y155{bottom:643.493701pt;}
.y36{bottom:643.493885pt;}
.ya{bottom:645.253400pt;}
.y12e{bottom:646.533333pt;}
.y83{bottom:648.853341pt;}
.y1f7{bottom:649.091717pt;}
.y5c{bottom:653.493333pt;}
.y10c{bottom:658.853664pt;}
.y154{bottom:658.853693pt;}
.y35{bottom:658.853877pt;}
.y1f6{bottom:661.411773pt;}
.y9{bottom:662.052800pt;}
.y82{bottom:664.213333pt;}
.y86{bottom:666.533341pt;}
.ye3{bottom:669.493333pt;}
.y5b{bottom:671.012800pt;}
.y1f5{bottom:673.652029pt;}
.y10b{bottom:674.133496pt;}
.y153{bottom:674.133525pt;}
.y34{bottom:674.133709pt;}
.y8{bottom:678.612933pt;}
.y81{bottom:681.893333pt;}
.ye2{bottom:685.493333pt;}
.y1f4{bottom:685.892285pt;}
.y5a{bottom:688.693437pt;}
.y10a{bottom:689.493488pt;}
.y152{bottom:689.493517pt;}
.y33{bottom:689.493701pt;}
.y7{bottom:694.293627pt;}
.y1f3{bottom:698.212341pt;}
.y80{bottom:699.493333pt;}
.ye1{bottom:701.493333pt;}
.y109{bottom:704.853480pt;}
.y151{bottom:704.853509pt;}
.y32{bottom:704.853693pt;}
.y1f2{bottom:710.452597pt;}
.y6{bottom:711.254067pt;}
.y7f{bottom:717.173333pt;}
.ye0{bottom:717.493333pt;}
.ya8{bottom:719.973205pt;}
.y108{bottom:720.133312pt;}
.y150{bottom:720.133341pt;}
.y31{bottom:720.133525pt;}
.y1f1{bottom:722.692853pt;}
.y5{bottom:728.053467pt;}
.ydf{bottom:733.493333pt;}
.y7e{bottom:734.853573pt;}
.y1f0{bottom:735.012909pt;}
.y107{bottom:735.493304pt;}
.y30{bottom:735.493517pt;}
.y4{bottom:744.693333pt;}
.y1ef{bottom:747.253165pt;}
.yde{bottom:749.493333pt;}
.y106{bottom:750.853296pt;}
.y2f{bottom:750.853509pt;}
.y1ee{bottom:759.493421pt;}
.y3{bottom:760.453333pt;}
.ydd{bottom:765.493397pt;}
.y174{bottom:765.972808pt;}
.y105{bottom:766.133128pt;}
.y2e{bottom:766.133341pt;}
.y1ed{bottom:771.813477pt;}
.y2{bottom:778.853333pt;}
.y104{bottom:781.332800pt;}
.y2d{bottom:781.493333pt;}
.y1ec{bottom:784.053733pt;}
.y2c{bottom:811.173600pt;}
.he{height:30.324375pt;}
.h8{height:37.343906pt;}
.h12{height:37.447813pt;}
.h11{height:37.801094pt;}
.h7{height:42.117188pt;}
.h3{height:46.890469pt;}
.h6{height:47.464531pt;}
.h10{height:47.531749pt;}
.h4{height:51.382969pt;}
.h5{height:52.012031pt;}
.h9{height:53.969792pt;}
.hc{height:53.974400pt;}
.hd{height:54.319970pt;}
.hb{height:54.320482pt;}
.hf{height:54.321506pt;}
.h1{height:56.156250pt;}
.h2{height:56.843750pt;}
.ha{height:59.141259pt;}
.h0{height:869.333333pt;}
.w0{width:756.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.600000pt;}
.x9{left:79.359504pt;}
.x23{left:81.839120pt;}
.x19{left:94.720000pt;}
.xd{left:97.519752pt;}
.x16{left:99.120000pt;}
.x14{left:100.400000pt;}
.x18{left:102.160000pt;}
.xb{left:103.760000pt;}
.xa{left:105.280000pt;}
.x15{left:106.640000pt;}
.x1b{left:108.720000pt;}
.x17{left:110.320000pt;}
.x1c{left:112.400000pt;}
.x1a{left:124.239752pt;}
.x8{left:148.321152pt;}
.x1f{left:159.759456pt;}
.x1e{left:168.159416pt;}
.x24{left:176.318368pt;}
.x1d{left:181.840056pt;}
.x13{left:186.880000pt;}
.xf{left:188.320000pt;}
.x12{left:193.520704pt;}
.xe{left:196.240272pt;}
.x22{left:244.479808pt;}
.x6{left:249.360000pt;}
.x25{left:260.318032pt;}
.x21{left:269.120936pt;}
.x5{left:309.280000pt;}
.x10{left:315.520560pt;}
.x11{left:318.880600pt;}
.x26{left:344.320000pt;}
.x20{left:354.400488pt;}
.x7{left:357.760528pt;}
.xc{left:377.999592pt;}
.x27{left:428.320000pt;}
.x2{left:513.840000pt;}
.x3{left:517.359456pt;}
.x28{left:518.879424pt;}
.x29{left:601.199736pt;}
.x4{left:680.399280pt;}
}




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