
    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_a62b5dc0f9874d4899237621.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.870117;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_db915ad412afd688670262ca.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e52e3f10bb6ed118f889d26b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9ccc908b353686a33a11d732.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_80bd58f2c9b30c92c8d7f5f8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_14698b11a93a08b0fc2a475a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.007812;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);}
.v5{vertical-align:-57.583692px;}
.v2{vertical-align:-27.000000px;}
.v3{vertical-align:-8.976780px;}
.v4{vertical-align:-1.798944px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:7.198873px;}
.v8{vertical-align:15.847829px;}
.v6{vertical-align:25.918873px;}
.v9{vertical-align:27.024012px;}
.v1{vertical-align:33.120000px;}
.ls2c{letter-spacing:-0.685368px;}
.ls50{letter-spacing:-0.583164px;}
.ls7a{letter-spacing:-0.498996px;}
.ls51{letter-spacing:-0.144288px;}
.ls70{letter-spacing:-0.105336px;}
.ls1d{letter-spacing:-0.090972px;}
.ls25{letter-spacing:-0.078156px;}
.ls29{letter-spacing:-0.072144px;}
.ls2b{letter-spacing:-0.066132px;}
.ls1c{letter-spacing:-0.064800px;}
.ls78{letter-spacing:-0.062244px;}
.ls3a{letter-spacing:-0.060120px;}
.ls6c{letter-spacing:-0.058716px;}
.ls24{letter-spacing:-0.054108px;}
.ls3f{letter-spacing:-0.052668px;}
.ls27{letter-spacing:-0.048096px;}
.ls6d{letter-spacing:-0.047880px;}
.ls58{letter-spacing:-0.043092px;}
.ls28{letter-spacing:-0.042084px;}
.ls6e{letter-spacing:-0.038304px;}
.ls23{letter-spacing:-0.036072px;}
.ls77{letter-spacing:-0.033516px;}
.ls3b{letter-spacing:-0.030060px;}
.ls20{letter-spacing:-0.028800px;}
.ls6f{letter-spacing:-0.028728px;}
.ls5a{letter-spacing:-0.024048px;}
.ls76{letter-spacing:-0.023940px;}
.ls3c{letter-spacing:-0.018036px;}
.ls1f{letter-spacing:-0.014400px;}
.ls22{letter-spacing:-0.012024px;}
.ls3e{letter-spacing:-0.009576px;}
.ls2a{letter-spacing:-0.006012px;}
.ls71{letter-spacing:-0.004788px;}
.ls1e{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004788px;}
.ls15{letter-spacing:0.006012px;}
.ls1a{letter-spacing:0.009576px;}
.ls12{letter-spacing:0.012024px;}
.ls14{letter-spacing:0.014364px;}
.ls59{letter-spacing:0.016776px;}
.ls43{letter-spacing:0.017280px;}
.ls17{letter-spacing:0.018036px;}
.ls2d{letter-spacing:0.019152px;}
.ls5b{letter-spacing:0.023940px;}
.ls3{letter-spacing:0.024048px;}
.ls4b{letter-spacing:0.028728px;}
.ls52{letter-spacing:0.028800px;}
.ls16{letter-spacing:0.030060px;}
.ls38{letter-spacing:0.033516px;}
.ls5e{letter-spacing:0.033552px;}
.ls1b{letter-spacing:0.035964px;}
.ls40{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.036072px;}
.ls68{letter-spacing:0.038304px;}
.ls79{letter-spacing:0.041940px;}
.ls2{letter-spacing:0.042084px;}
.ls61{letter-spacing:0.043092px;}
.ls41{letter-spacing:0.043200px;}
.ls4c{letter-spacing:0.047880px;}
.ls37{letter-spacing:0.048096px;}
.lsd{letter-spacing:0.050328px;}
.ls67{letter-spacing:0.052668px;}
.ls18{letter-spacing:0.054108px;}
.ls48{letter-spacing:0.056592px;}
.ls5d{letter-spacing:0.057456px;}
.ls36{letter-spacing:0.057600px;}
.ls8{letter-spacing:0.060120px;}
.ls4d{letter-spacing:0.062244px;}
.ls4{letter-spacing:0.066132px;}
.ls53{letter-spacing:0.067032px;}
.ls3d{letter-spacing:0.067104px;}
.ls64{letter-spacing:0.071820px;}
.ls6{letter-spacing:0.072144px;}
.ls55{letter-spacing:0.076608px;}
.lsa{letter-spacing:0.078156px;}
.ls56{letter-spacing:0.081396px;}
.ls4f{letter-spacing:0.083880px;}
.lsb{letter-spacing:0.084168px;}
.ls33{letter-spacing:0.086184px;}
.ls5{letter-spacing:0.090180px;}
.ls13{letter-spacing:0.090972px;}
.ls6b{letter-spacing:0.092268px;}
.ls5c{letter-spacing:0.095760px;}
.ls7{letter-spacing:0.096192px;}
.ls39{letter-spacing:0.100548px;}
.ls2e{letter-spacing:0.100656px;}
.lsc{letter-spacing:0.102204px;}
.ls54{letter-spacing:0.105336px;}
.lse{letter-spacing:0.108216px;}
.ls9{letter-spacing:0.114228px;}
.ls4e{letter-spacing:0.114912px;}
.ls32{letter-spacing:0.120240px;}
.ls57{letter-spacing:0.124488px;}
.ls10{letter-spacing:0.125820px;}
.ls30{letter-spacing:0.126252px;}
.ls31{letter-spacing:0.132264px;}
.ls62{letter-spacing:0.134064px;}
.ls45{letter-spacing:0.138276px;}
.ls34{letter-spacing:0.138852px;}
.ls63{letter-spacing:0.143640px;}
.ls42{letter-spacing:0.144288px;}
.ls69{letter-spacing:0.148428px;}
.ls65{letter-spacing:0.153216px;}
.ls19{letter-spacing:0.156312px;}
.ls74{letter-spacing:0.162792px;}
.ls66{letter-spacing:0.172368px;}
.ls26{letter-spacing:0.176148px;}
.ls73{letter-spacing:0.177156px;}
.ls1{letter-spacing:0.180000px;}
.ls49{letter-spacing:0.180108px;}
.ls4a{letter-spacing:0.180360px;}
.ls21{letter-spacing:0.181944px;}
.ls72{letter-spacing:0.201096px;}
.ls5f{letter-spacing:0.220248px;}
.ls6a{letter-spacing:1.709316px;}
.ls75{letter-spacing:7.828380px;}
.ls60{letter-spacing:12.247704px;}
.ls35{letter-spacing:23.184000px;}
.ls2f{letter-spacing:40.887612px;}
.lsf{letter-spacing:41.117976px;}
.ls44{letter-spacing:771.929208px;}
.ls46{letter-spacing:824.852916px;}
.ls47{letter-spacing:1041.303197px;}
.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;}
}
.ws1{word-spacing:-21.146148px;}
.ws57{word-spacing:-18.000000px;}
.wsab{word-spacing:-16.164750px;}
.wsae{word-spacing:-16.143000px;}
.wsa8{word-spacing:-16.122750px;}
.wsa7{word-spacing:-15.120180px;}
.wsa6{word-spacing:-15.030000px;}
.ws14a{word-spacing:-12.190248px;}
.ws191{word-spacing:-12.171096px;}
.ws14c{word-spacing:-12.151944px;}
.ws190{word-spacing:-12.084912px;}
.ws193{word-spacing:-12.051396px;}
.ws192{word-spacing:-12.046608px;}
.ws14b{word-spacing:-11.970000px;}
.ws149{word-spacing:-11.917332px;}
.ws0{word-spacing:-9.720000px;}
.wsaa{word-spacing:-9.429600px;}
.wsad{word-spacing:-9.416550px;}
.ws5b{word-spacing:-1.627272px;}
.ws36{word-spacing:-0.272916px;}
.ws1a5{word-spacing:-0.268128px;}
.ws17c{word-spacing:-0.263340px;}
.ws1ac{word-spacing:-0.253764px;}
.ws178{word-spacing:-0.244188px;}
.ws171{word-spacing:-0.234612px;}
.ws7e{word-spacing:-0.229824px;}
.ws169{word-spacing:-0.225036px;}
.ws103{word-spacing:-0.205884px;}
.wsa2{word-spacing:-0.191520px;}
.ws18f{word-spacing:-0.186732px;}
.ws155{word-spacing:-0.181944px;}
.ws1b2{word-spacing:-0.177156px;}
.ws10c{word-spacing:-0.176148px;}
.ws126{word-spacing:-0.167580px;}
.ws17b{word-spacing:-0.162792px;}
.ws77{word-spacing:-0.159372px;}
.ws189{word-spacing:-0.153216px;}
.wsf1{word-spacing:-0.138852px;}
.ws1c4{word-spacing:-0.134208px;}
.ws11d{word-spacing:-0.124488px;}
.ws4{word-spacing:-0.119880px;}
.wsf0{word-spacing:-0.119700px;}
.ws150{word-spacing:-0.114912px;}
.ws38{word-spacing:-0.105336px;}
.wsf4{word-spacing:-0.100548px;}
.ws56{word-spacing:-0.066132px;}
.wsbe{word-spacing:-0.054108px;}
.wsc5{word-spacing:-0.048096px;}
.wsa3{word-spacing:-0.043200px;}
.wsce{word-spacing:-0.042084px;}
.ws98{word-spacing:-0.038304px;}
.ws99{word-spacing:-0.036000px;}
.wsdd{word-spacing:-0.028800px;}
.ws25{word-spacing:-0.018036px;}
.ws22{word-spacing:-0.012024px;}
.ws63{word-spacing:-0.006012px;}
.ws3{word-spacing:0.000000px;}
.ws101{word-spacing:0.006012px;}
.wsb5{word-spacing:0.012024px;}
.ws2{word-spacing:0.014364px;}
.ws6{word-spacing:0.014400px;}
.ws122{word-spacing:0.018036px;}
.wsa{word-spacing:0.024048px;}
.ws7{word-spacing:0.028800px;}
.wsc{word-spacing:0.030060px;}
.ws7c{word-spacing:0.036072px;}
.ws8{word-spacing:0.048096px;}
.ws6f{word-spacing:0.054108px;}
.ws5{word-spacing:0.064800px;}
.ws9{word-spacing:0.066132px;}
.ws5a{word-spacing:0.072144px;}
.ws1cb{word-spacing:0.096192px;}
.wsb{word-spacing:0.102204px;}
.ws1e8{word-spacing:0.108216px;}
.ws117{word-spacing:0.126252px;}
.ws2b{word-spacing:0.138276px;}
.wsc1{word-spacing:0.144288px;}
.wsc4{word-spacing:0.150300px;}
.ws1e3{word-spacing:0.168336px;}
.ws7d{word-spacing:0.181944px;}
.ws55{word-spacing:0.366732px;}
.ws1ca{word-spacing:0.402804px;}
.wsd5{word-spacing:0.408816px;}
.wsd6{word-spacing:0.420840px;}
.ws139{word-spacing:0.545832px;}
.wsc7{word-spacing:0.709416px;}
.ws27{word-spacing:0.739476px;}
.wsc6{word-spacing:0.745488px;}
.ws6e{word-spacing:0.781560px;}
.ws102{word-spacing:0.943236px;}
.ws16a{word-spacing:0.986328px;}
.ws97{word-spacing:1.000692px;}
.ws94{word-spacing:1.082160px;}
.ws83{word-spacing:1.088172px;}
.wsd8{word-spacing:1.136268px;}
.ws105{word-spacing:1.142280px;}
.ws1e{word-spacing:1.148292px;}
.ws165{word-spacing:1.331064px;}
.ws96{word-spacing:1.340640px;}
.ws1d{word-spacing:1.442880px;}
.ws11f{word-spacing:1.472940px;}
.ws52{word-spacing:1.478952px;}
.wsd7{word-spacing:1.521036px;}
.ws51{word-spacing:1.527048px;}
.ws18e{word-spacing:1.560888px;}
.ws11a{word-spacing:1.623132px;}
.ws18d{word-spacing:1.627920px;}
.ws164{word-spacing:1.642284px;}
.ws11b{word-spacing:1.752408px;}
.ws162{word-spacing:1.761984px;}
.ws112{word-spacing:1.785564px;}
.wsd0{word-spacing:1.803600px;}
.ws3a{word-spacing:1.809612px;}
.ws16{word-spacing:1.845684px;}
.ws85{word-spacing:1.929852px;}
.ws13a{word-spacing:1.943928px;}
.ws1a3{word-spacing:1.972656px;}
.ws187{word-spacing:1.996596px;}
.ws12b{word-spacing:2.116224px;}
.ws1bf{word-spacing:2.116296px;}
.ws148{word-spacing:2.122236px;}
.wsf9{word-spacing:2.158308px;}
.ws9b{word-spacing:2.164320px;}
.ws84{word-spacing:2.224440px;}
.ws15{word-spacing:2.248488px;}
.wse4{word-spacing:2.290572px;}
.ws186{word-spacing:2.374848px;}
.ws20{word-spacing:2.500992px;}
.ws7b{word-spacing:2.507004px;}
.wsb1{word-spacing:2.525040px;}
.ws104{word-spacing:2.531052px;}
.ws9f{word-spacing:2.537064px;}
.ws60{word-spacing:2.579148px;}
.ws107{word-spacing:2.585160px;}
.ws157{word-spacing:2.591172px;}
.ws138{word-spacing:2.710008px;}
.ws14e{word-spacing:2.743524px;}
.ws1c0{word-spacing:2.800980px;}
.ws72{word-spacing:2.867724px;}
.ws1c6{word-spacing:2.873736px;}
.ws78{word-spacing:2.885760px;}
.ws113{word-spacing:2.897784px;}
.ws1c5{word-spacing:2.915820px;}
.ws159{word-spacing:2.933856px;}
.ws54{word-spacing:2.945880px;}
.ws73{word-spacing:2.969928px;}
.ws5f{word-spacing:2.981952px;}
.ws6d{word-spacing:2.999988px;}
.ws18b{word-spacing:3.155292px;}
.ws1b1{word-spacing:3.188808px;}
.ws13{word-spacing:3.216420px;}
.ws116{word-spacing:3.228444px;}
.ws6b{word-spacing:3.234456px;}
.ws12f{word-spacing:3.258504px;}
.ws9e{word-spacing:3.270528px;}
.ws1dd{word-spacing:3.282552px;}
.ws136{word-spacing:3.288564px;}
.ws115{word-spacing:3.300588px;}
.ws5d{word-spacing:3.324636px;}
.ws5e{word-spacing:3.360708px;}
.ws5c{word-spacing:3.390768px;}
.ws180{word-spacing:3.447360px;}
.ws154{word-spacing:3.452148px;}
.ws17f{word-spacing:3.456936px;}
.ws19e{word-spacing:3.490452px;}
.ws62{word-spacing:3.565116px;}
.wsd3{word-spacing:3.601188px;}
.ws18{word-spacing:3.607200px;}
.ws26{word-spacing:3.619224px;}
.wsb2{word-spacing:3.679344px;}
.wsd4{word-spacing:3.685356px;}
.ws2e{word-spacing:3.733452px;}
.ws1b5{word-spacing:3.878280px;}
.ws74{word-spacing:3.943872px;}
.ws156{word-spacing:3.979944px;}
.wsf{word-spacing:3.991968px;}
.wsee{word-spacing:4.003992px;}
.wsfd{word-spacing:4.016016px;}
.ws42{word-spacing:4.028040px;}
.ws6c{word-spacing:4.040064px;}
.ws1b4{word-spacing:4.146408px;}
.ws1a9{word-spacing:4.237380px;}
.ws128{word-spacing:4.304592px;}
.ws2d{word-spacing:4.310604px;}
.wscd{word-spacing:4.334652px;}
.ws12e{word-spacing:4.352688px;}
.ws120{word-spacing:4.358700px;}
.ws1c8{word-spacing:4.370724px;}
.wsdb{word-spacing:4.376736px;}
.wsed{word-spacing:4.382748px;}
.ws1c9{word-spacing:4.388760px;}
.ws39{word-spacing:4.683348px;}
.wsd{word-spacing:4.689360px;}
.ws44{word-spacing:4.725432px;}
.wsda{word-spacing:4.755492px;}
.ws177{word-spacing:4.768848px;}
.ws2c{word-spacing:4.803588px;}
.ws163{word-spacing:4.883760px;}
.ws1a4{word-spacing:4.955580px;}
.ws1b8{word-spacing:5.003460px;}
.ws1db{word-spacing:5.020020px;}
.ws67{word-spacing:5.032044px;}
.wsca{word-spacing:5.044068px;}
.ws1dc{word-spacing:5.056092px;}
.wse3{word-spacing:5.110200px;}
.ws168{word-spacing:5.233284px;}
.ws176{word-spacing:5.238072px;}
.ws19d{word-spacing:5.348196px;}
.ws1ce{word-spacing:5.374728px;}
.ws14d{word-spacing:5.380740px;}
.wscc{word-spacing:5.398776px;}
.ws143{word-spacing:5.404788px;}
.ws182{word-spacing:5.415228px;}
.ws28{word-spacing:5.416812px;}
.wsfb{word-spacing:5.428836px;}
.ws93{word-spacing:5.434848px;}
.wsbc{word-spacing:5.440860px;}
.wsaf{word-spacing:5.446872px;}
.ws110{word-spacing:5.452884px;}
.wsde{word-spacing:5.482944px;}
.ws88{word-spacing:5.549076px;}
.ws181{word-spacing:5.630688px;}
.ws161{word-spacing:5.721660px;}
.wscb{word-spacing:5.747472px;}
.ws147{word-spacing:5.753484px;}
.ws43{word-spacing:5.765508px;}
.ws10b{word-spacing:5.771520px;}
.ws8d{word-spacing:5.819616px;}
.wsfa{word-spacing:5.825628px;}
.ws4f{word-spacing:5.831640px;}
.ws66{word-spacing:6.090156px;}
.ws15e{word-spacing:6.138252px;}
.ws8c{word-spacing:6.162300px;}
.ws50{word-spacing:6.174324px;}
.ws15f{word-spacing:6.222420px;}
.ws1b9{word-spacing:6.310584px;}
.ws65{word-spacing:6.438852px;}
.ws129{word-spacing:6.462900px;}
.ws1d2{word-spacing:6.498972px;}
.ws1e6{word-spacing:6.517008px;}
.wsa4{word-spacing:6.541056px;}
.ws9d{word-spacing:6.571116px;}
.ws29{word-spacing:6.619212px;}
.ws9c{word-spacing:6.829632px;}
.ws41{word-spacing:6.835644px;}
.ws10d{word-spacing:6.853680px;}
.wsc9{word-spacing:6.877728px;}
.wsa5{word-spacing:6.883740px;}
.wsf8{word-spacing:6.925824px;}
.ws184{word-spacing:7.023996px;}
.ws185{word-spacing:7.153272px;}
.ws8b{word-spacing:7.184340px;}
.wsd9{word-spacing:7.202376px;}
.ws76{word-spacing:7.208388px;}
.ws1da{word-spacing:7.214400px;}
.ws8a{word-spacing:7.232436px;}
.wse0{word-spacing:7.256484px;}
.wse1{word-spacing:7.298568px;}
.ws1b{word-spacing:7.328628px;}
.ws183{word-spacing:7.335216px;}
.ws111{word-spacing:7.340652px;}
.ws151{word-spacing:7.373520px;}
.wsea{word-spacing:7.436844px;}
.ws197{word-spacing:7.521948px;}
.ws35{word-spacing:7.539048px;}
.wse{word-spacing:7.551072px;}
.ws12{word-spacing:7.557084px;}
.ws40{word-spacing:7.563096px;}
.ws4d{word-spacing:7.617204px;}
.ws158{word-spacing:7.635240px;}
.ws3f{word-spacing:7.689348px;}
.ws4e{word-spacing:7.713396px;}
.ws119{word-spacing:7.723044px;}
.ws17e{word-spacing:7.881048px;}
.ws12a{word-spacing:7.893756px;}
.ws134{word-spacing:7.905780px;}
.ws1e7{word-spacing:7.911792px;}
.wse2{word-spacing:7.935840px;}
.ws34{word-spacing:7.995960px;}
.ws1be{word-spacing:8.019900px;}
.ws1b3{word-spacing:8.235360px;}
.ws53{word-spacing:8.260488px;}
.wsb6{word-spacing:8.266500px;}
.ws13e{word-spacing:8.278524px;}
.ws30{word-spacing:8.308584px;}
.ws108{word-spacing:8.314596px;}
.ws13b{word-spacing:8.356680px;}
.ws109{word-spacing:8.374716px;}
.ws14f{word-spacing:8.460396px;}
.ws1a0{word-spacing:8.484336px;}
.ws1bd{word-spacing:8.489124px;}
.ws1cf{word-spacing:8.506980px;}
.ws1bc{word-spacing:8.508276px;}
.ws1b7{word-spacing:8.604036px;}
.ws33{word-spacing:8.633232px;}
.ws140{word-spacing:8.645256px;}
.wsf5{word-spacing:8.651268px;}
.ws15c{word-spacing:8.693352px;}
.ws1c7{word-spacing:8.729424px;}
.ws15b{word-spacing:8.741448px;}
.ws114{word-spacing:8.789544px;}
.ws19f{word-spacing:8.824284px;}
.ws118{word-spacing:8.843436px;}
.wsba{word-spacing:8.987940px;}
.ws12d{word-spacing:8.999964px;}
.ws80{word-spacing:9.005976px;}
.wsbb{word-spacing:9.060084px;}
.ws199{word-spacing:9.197748px;}
.ws19a{word-spacing:9.202536px;}
.ws19{word-spacing:9.360684px;}
.ws81{word-spacing:9.432828px;}
.ws12c{word-spacing:9.438840px;}
.wsb4{word-spacing:9.444852px;}
.ws16f{word-spacing:9.585576px;}
.ws170{word-spacing:9.595152px;}
.ws59{word-spacing:9.703368px;}
.ws145{word-spacing:9.727416px;}
.ws11e{word-spacing:9.739440px;}
.wse9{word-spacing:9.757476px;}
.ws79{word-spacing:9.781524px;}
.wsb3{word-spacing:9.853668px;}
.ws37{word-spacing:9.896796px;}
.wsc3{word-spacing:10.070100px;}
.ws10a{word-spacing:10.076112px;}
.ws1e2{word-spacing:10.412784px;}
.ws45{word-spacing:10.418796px;}
.ws131{word-spacing:10.430820px;}
.wsa1{word-spacing:10.442844px;}
.ws1d0{word-spacing:10.448856px;}
.ws9a{word-spacing:10.490940px;}
.ws1d1{word-spacing:10.508976px;}
.ws124{word-spacing:10.710756px;}
.ws1f{word-spacing:10.785528px;}
.ws2a{word-spacing:10.809576px;}
.ws1d3{word-spacing:10.845648px;}
.wsb8{word-spacing:10.875708px;}
.ws3d{word-spacing:10.881720px;}
.ws3e{word-spacing:10.893744px;}
.ws17d{word-spacing:11.122524px;}
.ws86{word-spacing:11.158272px;}
.wsef{word-spacing:11.164284px;}
.ws8e{word-spacing:11.170296px;}
.wsdf{word-spacing:11.176308px;}
.ws92{word-spacing:11.194344px;}
.ws91{word-spacing:11.218392px;}
.wsb7{word-spacing:11.296548px;}
.wsb0{word-spacing:11.302560px;}
.ws1aa{word-spacing:11.328408px;}
.ws18c{word-spacing:11.347560px;}
.ws3b{word-spacing:11.500956px;}
.wscf{word-spacing:11.506968px;}
.ws70{word-spacing:11.512980px;}
.ws7a{word-spacing:11.531016px;}
.wsb9{word-spacing:11.549052px;}
.ws10{word-spacing:11.645244px;}
.ws11{word-spacing:11.663280px;}
.ws10e{word-spacing:11.867688px;}
.ws1e4{word-spacing:11.897748px;}
.ws75{word-spacing:11.903760px;}
.wsd1{word-spacing:11.915784px;}
.ws89{word-spacing:11.933820px;}
.ws58{word-spacing:11.957868px;}
.wsd2{word-spacing:11.963880px;}
.ws1c3{word-spacing:11.970000px;}
.ws1c{word-spacing:12.024000px;}
.ws1af{word-spacing:12.060972px;}
.ws1c2{word-spacing:12.089700px;}
.ws1b0{word-spacing:12.128004px;}
.ws100{word-spacing:12.234420px;}
.ws68{word-spacing:12.300552px;}
.ws146{word-spacing:12.366684px;}
.ws196{word-spacing:12.429648px;}
.ws1c1{word-spacing:12.496680px;}
.wsa0{word-spacing:12.637224px;}
.ws195{word-spacing:12.755232px;}
.ws90{word-spacing:13.064076px;}
.ws14{word-spacing:13.334616px;}
.wsfc{word-spacing:13.340628px;}
.ws3c{word-spacing:13.370688px;}
.ws8f{word-spacing:13.382712px;}
.ws106{word-spacing:13.659264px;}
.ws13d{word-spacing:13.677300px;}
.ws61{word-spacing:13.695336px;}
.ws1d8{word-spacing:13.701348px;}
.ws87{word-spacing:13.707360px;}
.ws31{word-spacing:13.731408px;}
.ws1d7{word-spacing:13.737420px;}
.ws1a8{word-spacing:13.870836px;}
.ws69{word-spacing:14.032008px;}
.ws32{word-spacing:14.050044px;}
.ws141{word-spacing:14.098140px;}
.ws1d6{word-spacing:14.104152px;}
.ws2f{word-spacing:14.200344px;}
.ws15a{word-spacing:14.410764px;}
.ws142{word-spacing:14.428800px;}
.ws6a{word-spacing:14.458860px;}
.ws10f{word-spacing:14.464872px;}
.ws19b{word-spacing:14.584248px;}
.ws19c{word-spacing:14.656068px;}
.ws4a{word-spacing:14.759460px;}
.wsc8{word-spacing:14.777496px;}
.ws47{word-spacing:14.789520px;}
.wse7{word-spacing:14.807556px;}
.ws135{word-spacing:14.813568px;}
.ws46{word-spacing:14.843628px;}
.ws1d5{word-spacing:14.867676px;}
.ws174{word-spacing:14.928984px;}
.ws175{word-spacing:14.957712px;}
.ws1bb{word-spacing:14.991228px;}
.ws1d4{word-spacing:15.108156px;}
.ws82{word-spacing:15.132204px;}
.wse6{word-spacing:15.180300px;}
.ws127{word-spacing:15.234408px;}
.wse8{word-spacing:15.270480px;}
.ws64{word-spacing:15.474888px;}
.wsfe{word-spacing:15.486912px;}
.ws7f{word-spacing:15.619176px;}
.ws133{word-spacing:15.865668px;}
.ws1cd{word-spacing:15.895728px;}
.wse5{word-spacing:15.925788px;}
.ws125{word-spacing:16.011072px;}
.ws16e{word-spacing:16.020648px;}
.ws16d{word-spacing:16.044588px;}
.ws17a{word-spacing:16.140348px;}
.ws172{word-spacing:16.159500px;}
.ws1cc{word-spacing:16.268472px;}
.ws160{word-spacing:16.513812px;}
.ws15d{word-spacing:16.605144px;}
.ws144{word-spacing:16.977888px;}
.wsec{word-spacing:17.068068px;}
.ws194{word-spacing:17.212860px;}
.ws1b6{word-spacing:17.241588px;}
.wseb{word-spacing:17.326584px;}
.ws49{word-spacing:17.332596px;}
.ws48{word-spacing:17.356644px;}
.ws1e5{word-spacing:17.645220px;}
.ws21{word-spacing:18.144216px;}
.ws166{word-spacing:18.227916px;}
.ws167{word-spacing:18.247068px;}
.ws179{word-spacing:18.309312px;}
.ws1a{word-spacing:18.372672px;}
.ws4c{word-spacing:19.130184px;}
.ws121{word-spacing:19.148220px;}
.ws130{word-spacing:19.196316px;}
.ws132{word-spacing:19.448820px;}
.ws4b{word-spacing:19.484892px;}
.ws137{word-spacing:19.791504px;}
.ws1de{word-spacing:19.917756px;}
.ws153{word-spacing:19.980324px;}
.ws1df{word-spacing:20.170260px;}
.wsdc{word-spacing:20.176272px;}
.ws1e0{word-spacing:20.224368px;}
.ws152{word-spacing:20.363364px;}
.ws16c{word-spacing:20.387304px;}
.ws1d9{word-spacing:20.518956px;}
.ws1ae{word-spacing:20.688948px;}
.ws16b{word-spacing:20.741616px;}
.ws1ad{word-spacing:20.827800px;}
.ws24{word-spacing:20.903724px;}
.ws1a7{word-spacing:21.143808px;}
.ws13c{word-spacing:21.288492px;}
.ws23{word-spacing:21.408732px;}
.wsff{word-spacing:21.751416px;}
.ws18a{word-spacing:21.924252px;}
.ws17{word-spacing:21.979872px;}
.ws11c{word-spacing:22.139712px;}
.wsbf{word-spacing:22.767444px;}
.ws1a2{word-spacing:22.896216px;}
.wsbd{word-spacing:23.037984px;}
.ws1a1{word-spacing:23.260104px;}
.ws95{word-spacing:23.638356px;}
.ws71{word-spacing:24.102108px;}
.ws173{word-spacing:25.812108px;}
.ws1ba{word-spacing:26.108964px;}
.wsc2{word-spacing:27.396684px;}
.wsc0{word-spacing:27.408708px;}
.ws123{word-spacing:27.545364px;}
.wsf7{word-spacing:29.224332px;}
.wsf6{word-spacing:29.591064px;}
.ws1ab{word-spacing:30.834720px;}
.ws1e1{word-spacing:31.749372px;}
.ws188{word-spacing:31.854564px;}
.ws198{word-spacing:31.955112px;}
.ws13f{word-spacing:34.983828px;}
.ws1a6{word-spacing:63.302148px;}
.wsf3{word-spacing:249.928812px;}
.wsa9{word-spacing:252.283392px;}
.wsf2{word-spacing:273.686868px;}
.wsac{word-spacing:463.403348px;}
._18{margin-left:-864.774519px;}
._1d{margin-left:-307.382092px;}
._16{margin-left:-197.229348px;}
._10{margin-left:-196.033293px;}
._21{margin-left:-194.271319px;}
._1e{margin-left:-191.042719px;}
._24{margin-left:-188.752861px;}
._14{margin-left:-180.139307px;}
._23{margin-left:-167.516785px;}
._12{margin-left:-156.455382px;}
._15{margin-left:-153.668579px;}
._13{margin-left:-136.220002px;}
._20{margin-left:-133.354094px;}
._22{margin-left:-124.643332px;}
._1f{margin-left:-111.470644px;}
._1a{margin-left:-108.623018px;}
._1b{margin-left:-95.340558px;}
._1c{margin-left:-91.343551px;}
._25{margin-left:-44.393383px;}
._19{margin-left:-42.174844px;}
._27{margin-left:-30.150036px;}
._2c{margin-left:-28.322316px;}
._e{margin-left:-23.993964px;}
._32{margin-left:-20.158236px;}
._28{margin-left:-18.634896px;}
._2e{margin-left:-17.089020px;}
._2f{margin-left:-16.052040px;}
._2b{margin-left:-14.813568px;}
._a{margin-left:-13.677300px;}
._7{margin-left:-12.180312px;}
._2d{margin-left:-10.558836px;}
._9{margin-left:-9.264492px;}
._5{margin-left:-8.069256px;}
._b{margin-left:-6.120216px;}
._c{margin-left:-4.394772px;}
._6{margin-left:-3.240468px;}
._1{margin-left:-1.454904px;}
._2{width:1.190376px;}
._3{width:4.713408px;}
._d{width:7.282548px;}
._29{width:15.838704px;}
._2a{width:19.166364px;}
._f{width:23.356764px;}
._30{width:28.163016px;}
._8{width:30.686292px;}
._31{width:32.702040px;}
._26{width:111.823740px;}
._17{width:345.599820px;}
._4{width:347.398128px;}
._11{width:502.561116px;}
._0{width:1770.683796px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.000000px;}
.fs9{font-size:37.666200px;}
.fs8{font-size:37.718400px;}
.fs3{font-size:38.880000px;}
.fs0{font-size:47.880000px;}
.fs4{font-size:60.120000px;}
.fs6{font-size:64.491000px;}
.fsa{font-size:64.572000px;}
.fs7{font-size:64.659000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs1{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.yac{bottom:3.510450px;}
.y4c{bottom:56.550450px;}
.y4b{bottom:109.819830px;}
.y2e{bottom:111.264645px;}
.y15d{bottom:122.521089px;}
.y10d{bottom:123.418893px;}
.ya0{bottom:123.689919px;}
.ydf{bottom:123.957264px;}
.y77{bottom:124.141062px;}
.y193{bottom:124.668705px;}
.y12c{bottom:126.745671px;}
.y4a{bottom:127.370361px;}
.y152{bottom:128.181078px;}
.y2d{bottom:128.815176px;}
.y15c{bottom:136.650477px;}
.y76{bottom:138.270450px;}
.y192{bottom:138.799290px;}
.y10c{bottom:140.969424px;}
.y9f{bottom:141.240450px;}
.yde{bottom:141.507795px;}
.y12b{bottom:144.296202px;}
.y49{bottom:144.920892px;}
.y151{bottom:145.731609px;}
.y2c{bottom:146.365707px;}
.y15b{bottom:150.779865px;}
.y191{bottom:152.929875px;}
.y75{bottom:158.790600px;}
.ydd{bottom:159.058326px;}
.y12a{bottom:161.846733px;}
.y48{bottom:162.471423px;}
.y150{bottom:163.282140px;}
.y2b{bottom:163.916238px;}
.y15a{bottom:164.910450px;}
.y190{bottom:167.060460px;}
.y10b{bottom:167.519919px;}
.y9e{bottom:168.240450px;}
.ydc{bottom:176.608857px;}
.y129{bottom:179.397264px;}
.y47{bottom:180.021954px;}
.y14f{bottom:180.832671px;}
.y18f{bottom:181.191045px;}
.y2a{bottom:181.466769px;}
.y159{bottom:182.460600px;}
.y10a{bottom:185.070450px;}
.ydb{bottom:194.159388px;}
.y128{bottom:196.947795px;}
.y46{bottom:197.572485px;}
.y14e{bottom:198.383202px;}
.y29{bottom:199.017300px;}
.y18e{bottom:204.320676px;}
.yda{bottom:211.709919px;}
.y109{bottom:212.700600px;}
.y127{bottom:214.498326px;}
.y45{bottom:215.123016px;}
.y9d{bottom:215.310450px;}
.y18d{bottom:218.451261px;}
.y14d{bottom:224.933697px;}
.y28{bottom:225.567795px;}
.yd9{bottom:229.260450px;}
.y126{bottom:232.048857px;}
.y18c{bottom:232.580649px;}
.y44{bottom:232.673547px;}
.y9c{bottom:235.830450px;}
.y14c{bottom:242.484228px;}
.y27{bottom:243.118326px;}
.y18b{bottom:246.711234px;}
.y125{bottom:249.599388px;}
.y43{bottom:250.224078px;}
.yd8{bottom:256.260450px;}
.y14b{bottom:260.034759px;}
.y26{bottom:260.668857px;}
.y124{bottom:267.149919px;}
.y42{bottom:267.774609px;}
.y108{bottom:269.215671px;}
.y18a{bottom:269.840865px;}
.y14a{bottom:277.585290px;}
.y25{bottom:278.219388px;}
.y189{bottom:283.971450px;}
.y123{bottom:284.700450px;}
.y41{bottom:285.325140px;}
.y107{bottom:286.766202px;}
.y74{bottom:292.437264px;}
.y149{bottom:295.135821px;}
.y24{bottom:295.769919px;}
.y188{bottom:298.102035px;}
.y40{bottom:302.875671px;}
.yd7{bottom:303.866352px;}
.y106{bottom:304.316733px;}
.y73{bottom:309.987795px;}
.y187{bottom:312.232620px;}
.y122{bottom:312.330450px;}
.y148{bottom:312.686352px;}
.y23{bottom:313.320450px;}
.y3f{bottom:320.426202px;}
.yd6{bottom:321.416883px;}
.y105{bottom:321.867264px;}
.y186{bottom:326.363205px;}
.y9b{bottom:327.536352px;}
.y72{bottom:327.538326px;}
.y147{bottom:330.236883px;}
.y3e{bottom:337.976733px;}
.yd5{bottom:338.967414px;}
.y104{bottom:339.417795px;}
.y185{bottom:340.493790px;}
.y22{bottom:340.950450px;}
.y9a{bottom:345.086883px;}
.y71{bottom:345.088857px;}
.y146{bottom:347.787414px;}
.y3d{bottom:355.527264px;}
.yd4{bottom:356.517945px;}
.y103{bottom:356.968326px;}
.y99{bottom:362.637414px;}
.y70{bottom:362.639388px;}
.y184{bottom:363.623421px;}
.y145{bottom:365.337945px;}
.y121{bottom:371.278695px;}
.y3c{bottom:373.077795px;}
.yd3{bottom:374.068476px;}
.y102{bottom:374.518857px;}
.y183{bottom:377.754006px;}
.y98{bottom:380.187945px;}
.y6f{bottom:380.189919px;}
.y144{bottom:382.888476px;}
.y120{bottom:385.409280px;}
.y3b{bottom:390.628326px;}
.yd2{bottom:391.619007px;}
.y182{bottom:391.884591px;}
.y101{bottom:392.069388px;}
.y97{bottom:397.738476px;}
.y6e{bottom:397.740450px;}
.y11f{bottom:399.539865px;}
.y143{bottom:400.439007px;}
.y21{bottom:400.439919px;}
.y181{bottom:406.015176px;}
.y3a{bottom:408.178857px;}
.yd1{bottom:409.169538px;}
.y100{bottom:409.619919px;}
.y11e{bottom:413.670450px;}
.y96{bottom:415.289007px;}
.y142{bottom:417.989538px;}
.y20{bottom:417.990450px;}
.y6d{bottom:425.370600px;}
.y39{bottom:425.729388px;}
.yd0{bottom:426.720069px;}
.yff{bottom:427.170450px;}
.y180{bottom:429.144807px;}
.y1e1{bottom:432.287265px;}
.y95{bottom:432.839538px;}
.y11d{bottom:434.190450px;}
.y141{bottom:435.540069px;}
.y17f{bottom:443.275392px;}
.y38{bottom:443.279919px;}
.ycf{bottom:444.271149px;}
.y1f{bottom:445.620600px;}
.y158{bottom:445.709844px;}
.y94{bottom:450.390069px;}
.y140{bottom:453.090600px;}
.yfe{bottom:453.181062px;}
.y17e{bottom:457.404780px;}
.y1be{bottom:458.308587px;}
.y1e0{bottom:459.467517px;}
.y157{bottom:459.840429px;}
.y37{bottom:460.830450px;}
.yfd{bottom:467.310450px;}
.y93{bottom:467.940600px;}
.y17d{bottom:471.535365px;}
.y1bd{bottom:472.439172px;}
.yc8{bottom:473.790332px;}
.yc1{bottom:474.150450px;}
.y1df{bottom:477.018048px;}
.ycc{bottom:478.198986px;}
.yc4{bottom:478.200600px;}
.y156{bottom:480.360600px;}
.y13f{bottom:483.602286px;}
.yc7{bottom:484.139610px;}
.y6c{bottom:484.850433px;}
.yfc{bottom:484.860600px;}
.y17c{bottom:485.665950px;}
.y1de{bottom:494.568579px;}
.y92{bottom:494.940600px;}
.y1bc{bottom:495.568803px;}
.y36{bottom:495.841062px;}
.y13e{bottom:497.731674px;}
.yc3{bottom:498.360400px;}
.yca{bottom:499.619132px;}
.y6b{bottom:502.400964px;}
.yce{bottom:502.408643px;}
.yc5{bottom:502.410257px;}
.yc0{bottom:506.369739px;}
.y17b{bottom:508.795581px;}
.y1bb{bottom:509.699388px;}
.y35{bottom:509.970450px;}
.y1e{bottom:511.129344px;}
.yc9{bottom:511.679568px;}
.y13d{bottom:511.861062px;}
.y1dd{bottom:512.119110px;}
.y6a{bottom:519.951495px;}
.yc2{bottom:522.570350px;}
.y17a{bottom:522.926166px;}
.y1ba{bottom:523.828776px;}
.ycb{bottom:525.449547px;}
.y13c{bottom:525.990450px;}
.ycd{bottom:526.618300px;}
.yc6{bottom:526.619914px;}
.y1d{bottom:528.679875px;}
.y1dc{bottom:529.669641px;}
.y34{bottom:530.490450px;}
.y179{bottom:537.055554px;}
.y69{bottom:537.502026px;}
.y1b9{bottom:537.958164px;}
.y91{bottom:542.009280px;}
.y1c{bottom:546.230406px;}
.y13b{bottom:546.510450px;}
.ybf{bottom:550.469262px;}
.y178{bottom:551.186139px;}
.y1b8{bottom:552.087552px;}
.y68{bottom:555.052557px;}
.y90{bottom:556.139865px;}
.y1db{bottom:556.489173px;}
.y1b{bottom:563.780937px;}
.y177{bottom:565.316724px;}
.y1b7{bottom:566.216940px;}
.ybe{bottom:568.019793px;}
.y8f{bottom:570.270450px;}
.y67{bottom:572.603088px;}
.y1da{bottom:574.039704px;}
.y1b6{bottom:580.346328px;}
.y1a{bottom:581.331468px;}
.ybd{bottom:585.570324px;}
.y176{bottom:588.446355px;}
.y66{bottom:590.153619px;}
.y8e{bottom:590.790450px;}
.y1d9{bottom:591.590235px;}
.y1b5{bottom:594.475716px;}
.y19{bottom:598.881999px;}
.y175{bottom:602.576940px;}
.ybc{bottom:603.120855px;}
.y1d8{bottom:609.140766px;}
.y11c{bottom:610.048326px;}
.y18{bottom:616.432530px;}
.y65{bottom:616.704114px;}
.y174{bottom:616.707525px;}
.y1b4{bottom:617.605347px;}
.y1d7{bottom:626.691297px;}
.y11b{bottom:627.598857px;}
.y173{bottom:630.838110px;}
.y1b3{bottom:631.734735px;}
.y17{bottom:633.983061px;}
.y64{bottom:634.254645px;}
.yb9{bottom:638.400416px;}
.ybb{bottom:642.450732px;}
.y1d6{bottom:644.241828px;}
.yb7{bottom:644.246373px;}
.y172{bottom:644.968695px;}
.y11a{bottom:645.149388px;}
.y1b2{bottom:645.865320px;}
.yb8{bottom:648.930450px;}
.y16{bottom:651.533592px;}
.y63{bottom:651.805176px;}
.yba{bottom:652.980450px;}
.y171{bottom:659.099280px;}
.y1d5{bottom:661.792359px;}
.y119{bottom:662.699919px;}
.y1b1{bottom:668.994951px;}
.y15{bottom:669.084123px;}
.y62{bottom:669.355707px;}
.yfb{bottom:670.614609px;}
.y170{bottom:673.229865px;}
.y118{bottom:680.250450px;}
.yb6{bottom:680.426589px;}
.y1b0{bottom:683.124339px;}
.y14{bottom:686.634654px;}
.y61{bottom:686.906238px;}
.y16f{bottom:687.360450px;}
.yfa{bottom:688.165140px;}
.y1d4{bottom:688.611891px;}
.yb5{bottom:697.977120px;}
.y155{bottom:700.949865px;}
.y13{bottom:704.185185px;}
.y60{bottom:704.456769px;}
.yf9{bottom:705.715671px;}
.y1d3{bottom:706.162422px;}
.y1af{bottom:706.253970px;}
.y117{bottom:706.260504px;}
.y154{bottom:715.080450px;}
.yb4{bottom:715.527651px;}
.y1ae{bottom:720.383358px;}
.y116{bottom:720.391089px;}
.y16e{bottom:721.110450px;}
.y12{bottom:721.735716px;}
.yf8{bottom:723.266202px;}
.y1d2{bottom:723.712953px;}
.y8d{bottom:730.823547px;}
.y5f{bottom:731.007264px;}
.y153{bottom:732.630450px;}
.yb3{bottom:733.078182px;}
.y1ad{bottom:734.513943px;}
.y115{bottom:734.521674px;}
.y11{bottom:739.286247px;}
.yf7{bottom:740.816733px;}
.y1d1{bottom:741.263484px;}
.y8c{bottom:748.374078px;}
.y5e{bottom:748.557795px;}
.y114{bottom:748.651062px;}
.yb2{bottom:750.628713px;}
.y10{bottom:756.836778px;}
.y1ac{bottom:757.643574px;}
.yf6{bottom:758.367264px;}
.y1d0{bottom:758.814015px;}
.y113{bottom:762.780450px;}
.y8b{bottom:765.924609px;}
.y5d{bottom:766.108326px;}
.yb1{bottom:768.179244px;}
.y1ab{bottom:771.772962px;}
.yf{bottom:774.387309px;}
.y33{bottom:774.652773px;}
.yf5{bottom:775.917795px;}
.y1cf{bottom:776.364546px;}
.y112{bottom:783.300450px;}
.y8a{bottom:783.475140px;}
.y1aa{bottom:785.903547px;}
.y16d{bottom:789.599919px;}
.ye{bottom:791.937840px;}
.y32{bottom:792.203304px;}
.yf4{bottom:793.468326px;}
.y5c{bottom:793.647795px;}
.y1ce{bottom:793.915077px;}
.yb0{bottom:794.729739px;}
.y1a9{bottom:800.034132px;}
.y89{bottom:801.025671px;}
.y16c{bottom:807.150450px;}
.yd{bottom:809.488371px;}
.y31{bottom:809.753835px;}
.yf3{bottom:811.018857px;}
.y5b{bottom:811.198326px;}
.y1cd{bottom:811.465608px;}
.yaf{bottom:812.280270px;}
.y88{bottom:818.576202px;}
.y1a8{bottom:823.163763px;}
.yc{bottom:827.038902px;}
.y30{bottom:827.304366px;}
.yf2{bottom:828.569388px;}
.y5a{bottom:828.748857px;}
.y1cc{bottom:829.016139px;}
.yae{bottom:829.830801px;}
.y87{bottom:836.126733px;}
.y1a7{bottom:837.294348px;}
.y16b{bottom:843.780450px;}
.yb{bottom:844.589433px;}
.y2f{bottom:844.854897px;}
.yf1{bottom:846.119919px;}
.y1cb{bottom:846.566670px;}
.y1a6{bottom:851.424933px;}
.yab{bottom:853.500000px;}
.y86{bottom:853.677264px;}
.y59{bottom:856.288326px;}
.yaa{bottom:857.460186px;}
.yad{bottom:857.460450px;}
.ya{bottom:862.409001px;}
.yf0{bottom:863.670450px;}
.y1ca{bottom:864.117201px;}
.y1a5{bottom:865.555518px;}
.y85{bottom:871.227795px;}
.y58{bottom:873.838857px;}
.ya9{bottom:884.189538px;}
.y1a4{bottom:888.685149px;}
.y84{bottom:888.778326px;}
.yef{bottom:889.680600px;}
.y1c9{bottom:890.936733px;}
.y9{bottom:897.959460px;}
.y57{bottom:901.378326px;}
.ya8{bottom:901.740069px;}
.y1a3{bottom:902.815734px;}
.y83{bottom:906.328857px;}
.y1c8{bottom:908.487264px;}
.y13a{bottom:910.728507px;}
.y16a{bottom:912.264609px;}
.yee{bottom:913.800450px;}
.y1a2{bottom:916.946319px;}
.y56{bottom:918.928857px;}
.ya7{bottom:919.289919px;}
.y82{bottom:923.879388px;}
.y1c7{bottom:926.037795px;}
.y139{bottom:928.279038px;}
.yed{bottom:928.650450px;}
.y169{bottom:929.815140px;}
.y8{bottom:933.509919px;}
.ya6{bottom:936.834645px;}
.y1a1{bottom:940.075950px;}
.y81{bottom:941.429919px;}
.yec{bottom:943.500450px;}
.y1c6{bottom:943.588326px;}
.y138{bottom:945.829569px;}
.y55{bottom:946.468326px;}
.y168{bottom:947.365671px;}
.y1a0{bottom:954.206535px;}
.ya5{bottom:954.385176px;}
.y7{bottom:957.810450px;}
.yeb{bottom:958.349865px;}
.y80{bottom:958.980450px;}
.y1c5{bottom:961.138857px;}
.y137{bottom:963.380100px;}
.y54{bottom:964.018857px;}
.y167{bottom:964.916202px;}
.y19f{bottom:968.337120px;}
.y6{bottom:968.609919px;}
.ya4{bottom:971.935707px;}
.yea{bottom:972.480450px;}
.y1c4{bottom:978.689388px;}
.y136{bottom:980.930631px;}
.y53{bottom:981.569388px;}
.y166{bottom:982.466733px;}
.y19e{bottom:982.467705px;}
.y7f{bottom:985.980450px;}
.ye9{bottom:986.610450px;}
.ya3{bottom:989.486238px;}
.y5{bottom:992.910450px;}
.y1c3{bottom:996.239919px;}
.y19d{bottom:996.598290px;}
.y135{bottom:998.481162px;}
.ye8{bottom:998.488326px;}
.y52{bottom:999.119919px;}
.y165{bottom:1000.017264px;}
.ya2{bottom:1007.036769px;}
.y19c{bottom:1010.728875px;}
.y1c2{bottom:1013.790450px;}
.y134{bottom:1016.031693px;}
.ye7{bottom:1016.038857px;}
.y51{bottom:1016.670450px;}
.y164{bottom:1017.567795px;}
.y4{bottom:1022.250450px;}
.ya1{bottom:1024.587300px;}
.y133{bottom:1033.582224px;}
.y7e{bottom:1033.587264px;}
.y111{bottom:1033.587624px;}
.ye6{bottom:1033.589388px;}
.y19b{bottom:1033.858506px;}
.y163{bottom:1035.118326px;}
.y1c1{bottom:1041.690450px;}
.y50{bottom:1044.300450px;}
.y19a{bottom:1047.989091px;}
.y132{bottom:1051.132755px;}
.y7d{bottom:1051.137795px;}
.y110{bottom:1051.138155px;}
.ye5{bottom:1051.139919px;}
.y162{bottom:1052.668857px;}
.y199{bottom:1062.119676px;}
.y131{bottom:1068.683286px;}
.ye4{bottom:1068.684447px;}
.y7c{bottom:1068.688326px;}
.y10f{bottom:1068.688686px;}
.y161{bottom:1070.219388px;}
.y3{bottom:1072.558956px;}
.y198{bottom:1076.250261px;}
.y130{bottom:1086.233817px;}
.ye3{bottom:1086.234978px;}
.y7b{bottom:1086.238857px;}
.y10e{bottom:1086.239217px;}
.y160{bottom:1087.769919px;}
.y197{bottom:1090.380846px;}
.y12f{bottom:1103.784348px;}
.ye2{bottom:1103.785509px;}
.y7a{bottom:1103.789388px;}
.y4f{bottom:1103.789748px;}
.y15f{bottom:1105.320450px;}
.y2{bottom:1107.030450px;}
.y196{bottom:1113.510477px;}
.y12e{bottom:1121.334879px;}
.ye1{bottom:1121.336040px;}
.y79{bottom:1121.339919px;}
.y4e{bottom:1121.340279px;}
.y1c0{bottom:1127.638668px;}
.y195{bottom:1127.641062px;}
.y15e{bottom:1132.950450px;}
.y12d{bottom:1138.885410px;}
.ye0{bottom:1138.886571px;}
.y78{bottom:1138.890450px;}
.y4d{bottom:1138.890810px;}
.y1bf{bottom:1141.768056px;}
.y194{bottom:1141.770450px;}
.y1{bottom:1189.740450px;}
.he{height:18.270000px;}
.h1c{height:25.013672px;}
.h19{height:26.152996px;}
.h16{height:26.171388px;}
.h13{height:26.189241px;}
.h10{height:26.207658px;}
.h4{height:27.014766px;}
.h8{height:33.268184px;}
.h1{height:34.881328px;}
.h11{height:34.937405px;}
.h6{height:41.743477px;}
.h5{height:41.772832px;}
.hc{height:41.775556px;}
.hb{height:41.796052px;}
.hd{height:42.979475px;}
.h18{height:44.834660px;}
.h17{height:44.866189px;}
.h14{height:44.895067px;}
.ha{height:48.796875px;}
.h15{height:48.971705px;}
.h1b{height:54.038778px;}
.h9{height:55.687324px;}
.h7{height:56.848359px;}
.hf{height:59.736048px;}
.h1a{height:59.811076px;}
.h12{height:59.891662px;}
.h3{height:66.364805px;}
.h2{height:81.246797px;}
.h0{height:1263.000000px;}
.w2{width:8.820000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x10{left:63.810000px;}
.x12{left:74.431107px;}
.x43{left:79.560000px;}
.x1{left:85.140000px;}
.x7{left:90.900000px;}
.x11{left:95.670000px;}
.x44{left:99.989199px;}
.x2b{left:114.124508px;}
.xb{left:117.000000px;}
.x5{left:127.440000px;}
.x14{left:138.240108px;}
.x33{left:151.471694px;}
.x3e{left:159.570108px;}
.x2{left:162.810000px;}
.x31{left:164.161706px;}
.x4{left:171.810000px;}
.x9{left:185.940000px;}
.x2a{left:189.362188px;}
.x25{left:199.171669px;}
.x1e{left:214.289657px;}
.x1c{left:218.969567px;}
.x32{left:221.942346px;}
.x3{left:231.839901px;}
.x27{left:233.190433px;}
.x23{left:240.570110px;}
.x2e{left:243.361328px;}
.x21{left:249.300013px;}
.x20{left:259.109654px;}
.x1a{left:269.100000px;}
.x1f{left:290.070000px;}
.x1b{left:293.670000px;}
.x22{left:300.960000px;}
.x6{left:309.780252px;}
.x1d{left:314.910090px;}
.x8{left:319.950486px;}
.x13{left:329.310000px;}
.x2d{left:346.230545px;}
.x30{left:355.230254px;}
.x2c{left:359.280000px;}
.x3b{left:363.600000px;}
.x26{left:365.040000px;}
.x29{left:367.921526px;}
.x2f{left:376.560000px;}
.x3c{left:379.710000px;}
.x28{left:389.249657px;}
.x24{left:399.150000px;}
.x3d{left:401.310000px;}
.x40{left:405.270000px;}
.x3f{left:417.420000px;}
.x15{left:448.560000px;}
.xa{left:457.199937px;}
.xc{left:469.889370px;}
.x16{left:480.420000px;}
.x41{left:485.640000px;}
.xe{left:501.750000px;}
.x42{left:506.069199px;}
.x18{left:522.990108px;}
.x34{left:530.730000px;}
.xf{left:544.320108px;}
.x45{left:550.350000px;}
.x39{left:558.360000px;}
.x38{left:561.420000px;}
.x35{left:617.129460px;}
.x37{left:699.479469px;}
.x36{left:713.159982px;}
.x17{left:789.210000px;}
.x19{left:807.120000px;}
.xd{left:808.740000px;}
.x3a{left:829.080000px;}
@media print{
.v5{vertical-align:-51.185504pt;}
.v2{vertical-align:-24.000000pt;}
.v3{vertical-align:-7.979360pt;}
.v4{vertical-align:-1.599061pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:6.398998pt;}
.v8{vertical-align:14.086959pt;}
.v6{vertical-align:23.038998pt;}
.v9{vertical-align:24.021344pt;}
.v1{vertical-align:29.440000pt;}
.ls2c{letter-spacing:-0.609216pt;}
.ls50{letter-spacing:-0.518368pt;}
.ls7a{letter-spacing:-0.443552pt;}
.ls51{letter-spacing:-0.128256pt;}
.ls70{letter-spacing:-0.093632pt;}
.ls1d{letter-spacing:-0.080864pt;}
.ls25{letter-spacing:-0.069472pt;}
.ls29{letter-spacing:-0.064128pt;}
.ls2b{letter-spacing:-0.058784pt;}
.ls1c{letter-spacing:-0.057600pt;}
.ls78{letter-spacing:-0.055328pt;}
.ls3a{letter-spacing:-0.053440pt;}
.ls6c{letter-spacing:-0.052192pt;}
.ls24{letter-spacing:-0.048096pt;}
.ls3f{letter-spacing:-0.046816pt;}
.ls27{letter-spacing:-0.042752pt;}
.ls6d{letter-spacing:-0.042560pt;}
.ls58{letter-spacing:-0.038304pt;}
.ls28{letter-spacing:-0.037408pt;}
.ls6e{letter-spacing:-0.034048pt;}
.ls23{letter-spacing:-0.032064pt;}
.ls77{letter-spacing:-0.029792pt;}
.ls3b{letter-spacing:-0.026720pt;}
.ls20{letter-spacing:-0.025600pt;}
.ls6f{letter-spacing:-0.025536pt;}
.ls5a{letter-spacing:-0.021376pt;}
.ls76{letter-spacing:-0.021280pt;}
.ls3c{letter-spacing:-0.016032pt;}
.ls1f{letter-spacing:-0.012800pt;}
.ls22{letter-spacing:-0.010688pt;}
.ls3e{letter-spacing:-0.008512pt;}
.ls2a{letter-spacing:-0.005344pt;}
.ls71{letter-spacing:-0.004256pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004256pt;}
.ls15{letter-spacing:0.005344pt;}
.ls1a{letter-spacing:0.008512pt;}
.ls12{letter-spacing:0.010688pt;}
.ls14{letter-spacing:0.012768pt;}
.ls59{letter-spacing:0.014912pt;}
.ls43{letter-spacing:0.015360pt;}
.ls17{letter-spacing:0.016032pt;}
.ls2d{letter-spacing:0.017024pt;}
.ls5b{letter-spacing:0.021280pt;}
.ls3{letter-spacing:0.021376pt;}
.ls4b{letter-spacing:0.025536pt;}
.ls52{letter-spacing:0.025600pt;}
.ls16{letter-spacing:0.026720pt;}
.ls38{letter-spacing:0.029792pt;}
.ls5e{letter-spacing:0.029824pt;}
.ls1b{letter-spacing:0.031968pt;}
.ls40{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.032064pt;}
.ls68{letter-spacing:0.034048pt;}
.ls79{letter-spacing:0.037280pt;}
.ls2{letter-spacing:0.037408pt;}
.ls61{letter-spacing:0.038304pt;}
.ls41{letter-spacing:0.038400pt;}
.ls4c{letter-spacing:0.042560pt;}
.ls37{letter-spacing:0.042752pt;}
.lsd{letter-spacing:0.044736pt;}
.ls67{letter-spacing:0.046816pt;}
.ls18{letter-spacing:0.048096pt;}
.ls48{letter-spacing:0.050304pt;}
.ls5d{letter-spacing:0.051072pt;}
.ls36{letter-spacing:0.051200pt;}
.ls8{letter-spacing:0.053440pt;}
.ls4d{letter-spacing:0.055328pt;}
.ls4{letter-spacing:0.058784pt;}
.ls53{letter-spacing:0.059584pt;}
.ls3d{letter-spacing:0.059648pt;}
.ls64{letter-spacing:0.063840pt;}
.ls6{letter-spacing:0.064128pt;}
.ls55{letter-spacing:0.068096pt;}
.lsa{letter-spacing:0.069472pt;}
.ls56{letter-spacing:0.072352pt;}
.ls4f{letter-spacing:0.074560pt;}
.lsb{letter-spacing:0.074816pt;}
.ls33{letter-spacing:0.076608pt;}
.ls5{letter-spacing:0.080160pt;}
.ls13{letter-spacing:0.080864pt;}
.ls6b{letter-spacing:0.082016pt;}
.ls5c{letter-spacing:0.085120pt;}
.ls7{letter-spacing:0.085504pt;}
.ls39{letter-spacing:0.089376pt;}
.ls2e{letter-spacing:0.089472pt;}
.lsc{letter-spacing:0.090848pt;}
.ls54{letter-spacing:0.093632pt;}
.lse{letter-spacing:0.096192pt;}
.ls9{letter-spacing:0.101536pt;}
.ls4e{letter-spacing:0.102144pt;}
.ls32{letter-spacing:0.106880pt;}
.ls57{letter-spacing:0.110656pt;}
.ls10{letter-spacing:0.111840pt;}
.ls30{letter-spacing:0.112224pt;}
.ls31{letter-spacing:0.117568pt;}
.ls62{letter-spacing:0.119168pt;}
.ls45{letter-spacing:0.122912pt;}
.ls34{letter-spacing:0.123424pt;}
.ls63{letter-spacing:0.127680pt;}
.ls42{letter-spacing:0.128256pt;}
.ls69{letter-spacing:0.131936pt;}
.ls65{letter-spacing:0.136192pt;}
.ls19{letter-spacing:0.138944pt;}
.ls74{letter-spacing:0.144704pt;}
.ls66{letter-spacing:0.153216pt;}
.ls26{letter-spacing:0.156576pt;}
.ls73{letter-spacing:0.157472pt;}
.ls1{letter-spacing:0.160000pt;}
.ls49{letter-spacing:0.160096pt;}
.ls4a{letter-spacing:0.160320pt;}
.ls21{letter-spacing:0.161728pt;}
.ls72{letter-spacing:0.178752pt;}
.ls5f{letter-spacing:0.195776pt;}
.ls6a{letter-spacing:1.519392pt;}
.ls75{letter-spacing:6.958560pt;}
.ls60{letter-spacing:10.886848pt;}
.ls35{letter-spacing:20.608000pt;}
.ls2f{letter-spacing:36.344544pt;}
.lsf{letter-spacing:36.549312pt;}
.ls44{letter-spacing:686.159296pt;}
.ls46{letter-spacing:733.202592pt;}
.ls47{letter-spacing:925.602842pt;}
.ws1{word-spacing:-18.796576pt;}
.ws57{word-spacing:-16.000000pt;}
.wsab{word-spacing:-14.368667pt;}
.wsae{word-spacing:-14.349333pt;}
.wsa8{word-spacing:-14.331333pt;}
.wsa7{word-spacing:-13.440160pt;}
.wsa6{word-spacing:-13.360000pt;}
.ws14a{word-spacing:-10.835776pt;}
.ws191{word-spacing:-10.818752pt;}
.ws14c{word-spacing:-10.801728pt;}
.ws190{word-spacing:-10.742144pt;}
.ws193{word-spacing:-10.712352pt;}
.ws192{word-spacing:-10.708096pt;}
.ws14b{word-spacing:-10.640000pt;}
.ws149{word-spacing:-10.593184pt;}
.ws0{word-spacing:-8.640000pt;}
.wsaa{word-spacing:-8.381867pt;}
.wsad{word-spacing:-8.370267pt;}
.ws5b{word-spacing:-1.446464pt;}
.ws36{word-spacing:-0.242592pt;}
.ws1a5{word-spacing:-0.238336pt;}
.ws17c{word-spacing:-0.234080pt;}
.ws1ac{word-spacing:-0.225568pt;}
.ws178{word-spacing:-0.217056pt;}
.ws171{word-spacing:-0.208544pt;}
.ws7e{word-spacing:-0.204288pt;}
.ws169{word-spacing:-0.200032pt;}
.ws103{word-spacing:-0.183008pt;}
.wsa2{word-spacing:-0.170240pt;}
.ws18f{word-spacing:-0.165984pt;}
.ws155{word-spacing:-0.161728pt;}
.ws1b2{word-spacing:-0.157472pt;}
.ws10c{word-spacing:-0.156576pt;}
.ws126{word-spacing:-0.148960pt;}
.ws17b{word-spacing:-0.144704pt;}
.ws77{word-spacing:-0.141664pt;}
.ws189{word-spacing:-0.136192pt;}
.wsf1{word-spacing:-0.123424pt;}
.ws1c4{word-spacing:-0.119296pt;}
.ws11d{word-spacing:-0.110656pt;}
.ws4{word-spacing:-0.106560pt;}
.wsf0{word-spacing:-0.106400pt;}
.ws150{word-spacing:-0.102144pt;}
.ws38{word-spacing:-0.093632pt;}
.wsf4{word-spacing:-0.089376pt;}
.ws56{word-spacing:-0.058784pt;}
.wsbe{word-spacing:-0.048096pt;}
.wsc5{word-spacing:-0.042752pt;}
.wsa3{word-spacing:-0.038400pt;}
.wsce{word-spacing:-0.037408pt;}
.ws98{word-spacing:-0.034048pt;}
.ws99{word-spacing:-0.032000pt;}
.wsdd{word-spacing:-0.025600pt;}
.ws25{word-spacing:-0.016032pt;}
.ws22{word-spacing:-0.010688pt;}
.ws63{word-spacing:-0.005344pt;}
.ws3{word-spacing:0.000000pt;}
.ws101{word-spacing:0.005344pt;}
.wsb5{word-spacing:0.010688pt;}
.ws2{word-spacing:0.012768pt;}
.ws6{word-spacing:0.012800pt;}
.ws122{word-spacing:0.016032pt;}
.wsa{word-spacing:0.021376pt;}
.ws7{word-spacing:0.025600pt;}
.wsc{word-spacing:0.026720pt;}
.ws7c{word-spacing:0.032064pt;}
.ws8{word-spacing:0.042752pt;}
.ws6f{word-spacing:0.048096pt;}
.ws5{word-spacing:0.057600pt;}
.ws9{word-spacing:0.058784pt;}
.ws5a{word-spacing:0.064128pt;}
.ws1cb{word-spacing:0.085504pt;}
.wsb{word-spacing:0.090848pt;}
.ws1e8{word-spacing:0.096192pt;}
.ws117{word-spacing:0.112224pt;}
.ws2b{word-spacing:0.122912pt;}
.wsc1{word-spacing:0.128256pt;}
.wsc4{word-spacing:0.133600pt;}
.ws1e3{word-spacing:0.149632pt;}
.ws7d{word-spacing:0.161728pt;}
.ws55{word-spacing:0.325984pt;}
.ws1ca{word-spacing:0.358048pt;}
.wsd5{word-spacing:0.363392pt;}
.wsd6{word-spacing:0.374080pt;}
.ws139{word-spacing:0.485184pt;}
.wsc7{word-spacing:0.630592pt;}
.ws27{word-spacing:0.657312pt;}
.wsc6{word-spacing:0.662656pt;}
.ws6e{word-spacing:0.694720pt;}
.ws102{word-spacing:0.838432pt;}
.ws16a{word-spacing:0.876736pt;}
.ws97{word-spacing:0.889504pt;}
.ws94{word-spacing:0.961920pt;}
.ws83{word-spacing:0.967264pt;}
.wsd8{word-spacing:1.010016pt;}
.ws105{word-spacing:1.015360pt;}
.ws1e{word-spacing:1.020704pt;}
.ws165{word-spacing:1.183168pt;}
.ws96{word-spacing:1.191680pt;}
.ws1d{word-spacing:1.282560pt;}
.ws11f{word-spacing:1.309280pt;}
.ws52{word-spacing:1.314624pt;}
.wsd7{word-spacing:1.352032pt;}
.ws51{word-spacing:1.357376pt;}
.ws18e{word-spacing:1.387456pt;}
.ws11a{word-spacing:1.442784pt;}
.ws18d{word-spacing:1.447040pt;}
.ws164{word-spacing:1.459808pt;}
.ws11b{word-spacing:1.557696pt;}
.ws162{word-spacing:1.566208pt;}
.ws112{word-spacing:1.587168pt;}
.wsd0{word-spacing:1.603200pt;}
.ws3a{word-spacing:1.608544pt;}
.ws16{word-spacing:1.640608pt;}
.ws85{word-spacing:1.715424pt;}
.ws13a{word-spacing:1.727936pt;}
.ws1a3{word-spacing:1.753472pt;}
.ws187{word-spacing:1.774752pt;}
.ws12b{word-spacing:1.881088pt;}
.ws1bf{word-spacing:1.881152pt;}
.ws148{word-spacing:1.886432pt;}
.wsf9{word-spacing:1.918496pt;}
.ws9b{word-spacing:1.923840pt;}
.ws84{word-spacing:1.977280pt;}
.ws15{word-spacing:1.998656pt;}
.wse4{word-spacing:2.036064pt;}
.ws186{word-spacing:2.110976pt;}
.ws20{word-spacing:2.223104pt;}
.ws7b{word-spacing:2.228448pt;}
.wsb1{word-spacing:2.244480pt;}
.ws104{word-spacing:2.249824pt;}
.ws9f{word-spacing:2.255168pt;}
.ws60{word-spacing:2.292576pt;}
.ws107{word-spacing:2.297920pt;}
.ws157{word-spacing:2.303264pt;}
.ws138{word-spacing:2.408896pt;}
.ws14e{word-spacing:2.438688pt;}
.ws1c0{word-spacing:2.489760pt;}
.ws72{word-spacing:2.549088pt;}
.ws1c6{word-spacing:2.554432pt;}
.ws78{word-spacing:2.565120pt;}
.ws113{word-spacing:2.575808pt;}
.ws1c5{word-spacing:2.591840pt;}
.ws159{word-spacing:2.607872pt;}
.ws54{word-spacing:2.618560pt;}
.ws73{word-spacing:2.639936pt;}
.ws5f{word-spacing:2.650624pt;}
.ws6d{word-spacing:2.666656pt;}
.ws18b{word-spacing:2.804704pt;}
.ws1b1{word-spacing:2.834496pt;}
.ws13{word-spacing:2.859040pt;}
.ws116{word-spacing:2.869728pt;}
.ws6b{word-spacing:2.875072pt;}
.ws12f{word-spacing:2.896448pt;}
.ws9e{word-spacing:2.907136pt;}
.ws1dd{word-spacing:2.917824pt;}
.ws136{word-spacing:2.923168pt;}
.ws115{word-spacing:2.933856pt;}
.ws5d{word-spacing:2.955232pt;}
.ws5e{word-spacing:2.987296pt;}
.ws5c{word-spacing:3.014016pt;}
.ws180{word-spacing:3.064320pt;}
.ws154{word-spacing:3.068576pt;}
.ws17f{word-spacing:3.072832pt;}
.ws19e{word-spacing:3.102624pt;}
.ws62{word-spacing:3.168992pt;}
.wsd3{word-spacing:3.201056pt;}
.ws18{word-spacing:3.206400pt;}
.ws26{word-spacing:3.217088pt;}
.wsb2{word-spacing:3.270528pt;}
.wsd4{word-spacing:3.275872pt;}
.ws2e{word-spacing:3.318624pt;}
.ws1b5{word-spacing:3.447360pt;}
.ws74{word-spacing:3.505664pt;}
.ws156{word-spacing:3.537728pt;}
.wsf{word-spacing:3.548416pt;}
.wsee{word-spacing:3.559104pt;}
.wsfd{word-spacing:3.569792pt;}
.ws42{word-spacing:3.580480pt;}
.ws6c{word-spacing:3.591168pt;}
.ws1b4{word-spacing:3.685696pt;}
.ws1a9{word-spacing:3.766560pt;}
.ws128{word-spacing:3.826304pt;}
.ws2d{word-spacing:3.831648pt;}
.wscd{word-spacing:3.853024pt;}
.ws12e{word-spacing:3.869056pt;}
.ws120{word-spacing:3.874400pt;}
.ws1c8{word-spacing:3.885088pt;}
.wsdb{word-spacing:3.890432pt;}
.wsed{word-spacing:3.895776pt;}
.ws1c9{word-spacing:3.901120pt;}
.ws39{word-spacing:4.162976pt;}
.wsd{word-spacing:4.168320pt;}
.ws44{word-spacing:4.200384pt;}
.wsda{word-spacing:4.227104pt;}
.ws177{word-spacing:4.238976pt;}
.ws2c{word-spacing:4.269856pt;}
.ws163{word-spacing:4.341120pt;}
.ws1a4{word-spacing:4.404960pt;}
.ws1b8{word-spacing:4.447520pt;}
.ws1db{word-spacing:4.462240pt;}
.ws67{word-spacing:4.472928pt;}
.wsca{word-spacing:4.483616pt;}
.ws1dc{word-spacing:4.494304pt;}
.wse3{word-spacing:4.542400pt;}
.ws168{word-spacing:4.651808pt;}
.ws176{word-spacing:4.656064pt;}
.ws19d{word-spacing:4.753952pt;}
.ws1ce{word-spacing:4.777536pt;}
.ws14d{word-spacing:4.782880pt;}
.wscc{word-spacing:4.798912pt;}
.ws143{word-spacing:4.804256pt;}
.ws182{word-spacing:4.813536pt;}
.ws28{word-spacing:4.814944pt;}
.wsfb{word-spacing:4.825632pt;}
.ws93{word-spacing:4.830976pt;}
.wsbc{word-spacing:4.836320pt;}
.wsaf{word-spacing:4.841664pt;}
.ws110{word-spacing:4.847008pt;}
.wsde{word-spacing:4.873728pt;}
.ws88{word-spacing:4.932512pt;}
.ws181{word-spacing:5.005056pt;}
.ws161{word-spacing:5.085920pt;}
.wscb{word-spacing:5.108864pt;}
.ws147{word-spacing:5.114208pt;}
.ws43{word-spacing:5.124896pt;}
.ws10b{word-spacing:5.130240pt;}
.ws8d{word-spacing:5.172992pt;}
.wsfa{word-spacing:5.178336pt;}
.ws4f{word-spacing:5.183680pt;}
.ws66{word-spacing:5.413472pt;}
.ws15e{word-spacing:5.456224pt;}
.ws8c{word-spacing:5.477600pt;}
.ws50{word-spacing:5.488288pt;}
.ws15f{word-spacing:5.531040pt;}
.ws1b9{word-spacing:5.609408pt;}
.ws65{word-spacing:5.723424pt;}
.ws129{word-spacing:5.744800pt;}
.ws1d2{word-spacing:5.776864pt;}
.ws1e6{word-spacing:5.792896pt;}
.wsa4{word-spacing:5.814272pt;}
.ws9d{word-spacing:5.840992pt;}
.ws29{word-spacing:5.883744pt;}
.ws9c{word-spacing:6.070784pt;}
.ws41{word-spacing:6.076128pt;}
.ws10d{word-spacing:6.092160pt;}
.wsc9{word-spacing:6.113536pt;}
.wsa5{word-spacing:6.118880pt;}
.wsf8{word-spacing:6.156288pt;}
.ws184{word-spacing:6.243552pt;}
.ws185{word-spacing:6.358464pt;}
.ws8b{word-spacing:6.386080pt;}
.wsd9{word-spacing:6.402112pt;}
.ws76{word-spacing:6.407456pt;}
.ws1da{word-spacing:6.412800pt;}
.ws8a{word-spacing:6.428832pt;}
.wse0{word-spacing:6.450208pt;}
.wse1{word-spacing:6.487616pt;}
.ws1b{word-spacing:6.514336pt;}
.ws183{word-spacing:6.520192pt;}
.ws111{word-spacing:6.525024pt;}
.ws151{word-spacing:6.554240pt;}
.wsea{word-spacing:6.610528pt;}
.ws197{word-spacing:6.686176pt;}
.ws35{word-spacing:6.701376pt;}
.wse{word-spacing:6.712064pt;}
.ws12{word-spacing:6.717408pt;}
.ws40{word-spacing:6.722752pt;}
.ws4d{word-spacing:6.770848pt;}
.ws158{word-spacing:6.786880pt;}
.ws3f{word-spacing:6.834976pt;}
.ws4e{word-spacing:6.856352pt;}
.ws119{word-spacing:6.864928pt;}
.ws17e{word-spacing:7.005376pt;}
.ws12a{word-spacing:7.016672pt;}
.ws134{word-spacing:7.027360pt;}
.ws1e7{word-spacing:7.032704pt;}
.wse2{word-spacing:7.054080pt;}
.ws34{word-spacing:7.107520pt;}
.ws1be{word-spacing:7.128800pt;}
.ws1b3{word-spacing:7.320320pt;}
.ws53{word-spacing:7.342656pt;}
.wsb6{word-spacing:7.348000pt;}
.ws13e{word-spacing:7.358688pt;}
.ws30{word-spacing:7.385408pt;}
.ws108{word-spacing:7.390752pt;}
.ws13b{word-spacing:7.428160pt;}
.ws109{word-spacing:7.444192pt;}
.ws14f{word-spacing:7.520352pt;}
.ws1a0{word-spacing:7.541632pt;}
.ws1bd{word-spacing:7.545888pt;}
.ws1cf{word-spacing:7.561760pt;}
.ws1bc{word-spacing:7.562912pt;}
.ws1b7{word-spacing:7.648032pt;}
.ws33{word-spacing:7.673984pt;}
.ws140{word-spacing:7.684672pt;}
.wsf5{word-spacing:7.690016pt;}
.ws15c{word-spacing:7.727424pt;}
.ws1c7{word-spacing:7.759488pt;}
.ws15b{word-spacing:7.770176pt;}
.ws114{word-spacing:7.812928pt;}
.ws19f{word-spacing:7.843808pt;}
.ws118{word-spacing:7.860832pt;}
.wsba{word-spacing:7.989280pt;}
.ws12d{word-spacing:7.999968pt;}
.ws80{word-spacing:8.005312pt;}
.wsbb{word-spacing:8.053408pt;}
.ws199{word-spacing:8.175776pt;}
.ws19a{word-spacing:8.180032pt;}
.ws19{word-spacing:8.320608pt;}
.ws81{word-spacing:8.384736pt;}
.ws12c{word-spacing:8.390080pt;}
.wsb4{word-spacing:8.395424pt;}
.ws16f{word-spacing:8.520512pt;}
.ws170{word-spacing:8.529024pt;}
.ws59{word-spacing:8.625216pt;}
.ws145{word-spacing:8.646592pt;}
.ws11e{word-spacing:8.657280pt;}
.wse9{word-spacing:8.673312pt;}
.ws79{word-spacing:8.694688pt;}
.wsb3{word-spacing:8.758816pt;}
.ws37{word-spacing:8.797152pt;}
.wsc3{word-spacing:8.951200pt;}
.ws10a{word-spacing:8.956544pt;}
.ws1e2{word-spacing:9.255808pt;}
.ws45{word-spacing:9.261152pt;}
.ws131{word-spacing:9.271840pt;}
.wsa1{word-spacing:9.282528pt;}
.ws1d0{word-spacing:9.287872pt;}
.ws9a{word-spacing:9.325280pt;}
.ws1d1{word-spacing:9.341312pt;}
.ws124{word-spacing:9.520672pt;}
.ws1f{word-spacing:9.587136pt;}
.ws2a{word-spacing:9.608512pt;}
.ws1d3{word-spacing:9.640576pt;}
.wsb8{word-spacing:9.667296pt;}
.ws3d{word-spacing:9.672640pt;}
.ws3e{word-spacing:9.683328pt;}
.ws17d{word-spacing:9.886688pt;}
.ws86{word-spacing:9.918464pt;}
.wsef{word-spacing:9.923808pt;}
.ws8e{word-spacing:9.929152pt;}
.wsdf{word-spacing:9.934496pt;}
.ws92{word-spacing:9.950528pt;}
.ws91{word-spacing:9.971904pt;}
.wsb7{word-spacing:10.041376pt;}
.wsb0{word-spacing:10.046720pt;}
.ws1aa{word-spacing:10.069696pt;}
.ws18c{word-spacing:10.086720pt;}
.ws3b{word-spacing:10.223072pt;}
.wscf{word-spacing:10.228416pt;}
.ws70{word-spacing:10.233760pt;}
.ws7a{word-spacing:10.249792pt;}
.wsb9{word-spacing:10.265824pt;}
.ws10{word-spacing:10.351328pt;}
.ws11{word-spacing:10.367360pt;}
.ws10e{word-spacing:10.549056pt;}
.ws1e4{word-spacing:10.575776pt;}
.ws75{word-spacing:10.581120pt;}
.wsd1{word-spacing:10.591808pt;}
.ws89{word-spacing:10.607840pt;}
.ws58{word-spacing:10.629216pt;}
.wsd2{word-spacing:10.634560pt;}
.ws1c3{word-spacing:10.640000pt;}
.ws1c{word-spacing:10.688000pt;}
.ws1af{word-spacing:10.720864pt;}
.ws1c2{word-spacing:10.746400pt;}
.ws1b0{word-spacing:10.780448pt;}
.ws100{word-spacing:10.875040pt;}
.ws68{word-spacing:10.933824pt;}
.ws146{word-spacing:10.992608pt;}
.ws196{word-spacing:11.048576pt;}
.ws1c1{word-spacing:11.108160pt;}
.wsa0{word-spacing:11.233088pt;}
.ws195{word-spacing:11.337984pt;}
.ws90{word-spacing:11.612512pt;}
.ws14{word-spacing:11.852992pt;}
.wsfc{word-spacing:11.858336pt;}
.ws3c{word-spacing:11.885056pt;}
.ws8f{word-spacing:11.895744pt;}
.ws106{word-spacing:12.141568pt;}
.ws13d{word-spacing:12.157600pt;}
.ws61{word-spacing:12.173632pt;}
.ws1d8{word-spacing:12.178976pt;}
.ws87{word-spacing:12.184320pt;}
.ws31{word-spacing:12.205696pt;}
.ws1d7{word-spacing:12.211040pt;}
.ws1a8{word-spacing:12.329632pt;}
.ws69{word-spacing:12.472896pt;}
.ws32{word-spacing:12.488928pt;}
.ws141{word-spacing:12.531680pt;}
.ws1d6{word-spacing:12.537024pt;}
.ws2f{word-spacing:12.622528pt;}
.ws15a{word-spacing:12.809568pt;}
.ws142{word-spacing:12.825600pt;}
.ws6a{word-spacing:12.852320pt;}
.ws10f{word-spacing:12.857664pt;}
.ws19b{word-spacing:12.963776pt;}
.ws19c{word-spacing:13.027616pt;}
.ws4a{word-spacing:13.119520pt;}
.wsc8{word-spacing:13.135552pt;}
.ws47{word-spacing:13.146240pt;}
.wse7{word-spacing:13.162272pt;}
.ws135{word-spacing:13.167616pt;}
.ws46{word-spacing:13.194336pt;}
.ws1d5{word-spacing:13.215712pt;}
.ws174{word-spacing:13.270208pt;}
.ws175{word-spacing:13.295744pt;}
.ws1bb{word-spacing:13.325536pt;}
.ws1d4{word-spacing:13.429472pt;}
.ws82{word-spacing:13.450848pt;}
.wse6{word-spacing:13.493600pt;}
.ws127{word-spacing:13.541696pt;}
.wse8{word-spacing:13.573760pt;}
.ws64{word-spacing:13.755456pt;}
.wsfe{word-spacing:13.766144pt;}
.ws7f{word-spacing:13.883712pt;}
.ws133{word-spacing:14.102816pt;}
.ws1cd{word-spacing:14.129536pt;}
.wse5{word-spacing:14.156256pt;}
.ws125{word-spacing:14.232064pt;}
.ws16e{word-spacing:14.240576pt;}
.ws16d{word-spacing:14.261856pt;}
.ws17a{word-spacing:14.346976pt;}
.ws172{word-spacing:14.364000pt;}
.ws1cc{word-spacing:14.460864pt;}
.ws160{word-spacing:14.678944pt;}
.ws15d{word-spacing:14.760128pt;}
.ws144{word-spacing:15.091456pt;}
.wsec{word-spacing:15.171616pt;}
.ws194{word-spacing:15.300320pt;}
.ws1b6{word-spacing:15.325856pt;}
.wseb{word-spacing:15.401408pt;}
.ws49{word-spacing:15.406752pt;}
.ws48{word-spacing:15.428128pt;}
.ws1e5{word-spacing:15.684640pt;}
.ws21{word-spacing:16.128192pt;}
.ws166{word-spacing:16.202592pt;}
.ws167{word-spacing:16.219616pt;}
.ws179{word-spacing:16.274944pt;}
.ws1a{word-spacing:16.331264pt;}
.ws4c{word-spacing:17.004608pt;}
.ws121{word-spacing:17.020640pt;}
.ws130{word-spacing:17.063392pt;}
.ws132{word-spacing:17.287840pt;}
.ws4b{word-spacing:17.319904pt;}
.ws137{word-spacing:17.592448pt;}
.ws1de{word-spacing:17.704672pt;}
.ws153{word-spacing:17.760288pt;}
.ws1df{word-spacing:17.929120pt;}
.wsdc{word-spacing:17.934464pt;}
.ws1e0{word-spacing:17.977216pt;}
.ws152{word-spacing:18.100768pt;}
.ws16c{word-spacing:18.122048pt;}
.ws1d9{word-spacing:18.239072pt;}
.ws1ae{word-spacing:18.390176pt;}
.ws16b{word-spacing:18.436992pt;}
.ws1ad{word-spacing:18.513600pt;}
.ws24{word-spacing:18.581088pt;}
.ws1a7{word-spacing:18.794496pt;}
.ws13c{word-spacing:18.923104pt;}
.ws23{word-spacing:19.029984pt;}
.wsff{word-spacing:19.334592pt;}
.ws18a{word-spacing:19.488224pt;}
.ws17{word-spacing:19.537664pt;}
.ws11c{word-spacing:19.679744pt;}
.wsbf{word-spacing:20.237728pt;}
.ws1a2{word-spacing:20.352192pt;}
.wsbd{word-spacing:20.478208pt;}
.ws1a1{word-spacing:20.675648pt;}
.ws95{word-spacing:21.011872pt;}
.ws71{word-spacing:21.424096pt;}
.ws173{word-spacing:22.944096pt;}
.ws1ba{word-spacing:23.207968pt;}
.wsc2{word-spacing:24.352608pt;}
.wsc0{word-spacing:24.363296pt;}
.ws123{word-spacing:24.484768pt;}
.wsf7{word-spacing:25.977184pt;}
.wsf6{word-spacing:26.303168pt;}
.ws1ab{word-spacing:27.408640pt;}
.ws1e1{word-spacing:28.221664pt;}
.ws188{word-spacing:28.315168pt;}
.ws198{word-spacing:28.404544pt;}
.ws13f{word-spacing:31.096736pt;}
.ws1a6{word-spacing:56.268576pt;}
.wsf3{word-spacing:222.158944pt;}
.wsa9{word-spacing:224.251904pt;}
.wsf2{word-spacing:243.277216pt;}
.wsac{word-spacing:411.914087pt;}
._18{margin-left:-768.688461pt;}
._1d{margin-left:-273.228526pt;}
._16{margin-left:-175.314976pt;}
._10{margin-left:-174.251816pt;}
._21{margin-left:-172.685617pt;}
._1e{margin-left:-169.815750pt;}
._24{margin-left:-167.780321pt;}
._14{margin-left:-160.123828pt;}
._23{margin-left:-148.903809pt;}
._12{margin-left:-139.071451pt;}
._15{margin-left:-136.594293pt;}
._13{margin-left:-121.084446pt;}
._20{margin-left:-118.536973pt;}
._22{margin-left:-110.794073pt;}
._1f{margin-left:-99.085017pt;}
._1a{margin-left:-96.553794pt;}
._1b{margin-left:-84.747163pt;}
._1c{margin-left:-81.194268pt;}
._25{margin-left:-39.460785pt;}
._19{margin-left:-37.488750pt;}
._27{margin-left:-26.800032pt;}
._2c{margin-left:-25.175392pt;}
._e{margin-left:-21.327968pt;}
._32{margin-left:-17.918432pt;}
._28{margin-left:-16.564352pt;}
._2e{margin-left:-15.190240pt;}
._2f{margin-left:-14.268480pt;}
._2b{margin-left:-13.167616pt;}
._a{margin-left:-12.157600pt;}
._7{margin-left:-10.826944pt;}
._2d{margin-left:-9.385632pt;}
._9{margin-left:-8.235104pt;}
._5{margin-left:-7.172672pt;}
._b{margin-left:-5.440192pt;}
._c{margin-left:-3.906464pt;}
._6{margin-left:-2.880416pt;}
._1{margin-left:-1.293248pt;}
._2{width:1.058112pt;}
._3{width:4.189696pt;}
._d{width:6.473376pt;}
._29{width:14.078848pt;}
._2a{width:17.036768pt;}
._f{width:20.761568pt;}
._30{width:25.033792pt;}
._8{width:27.276704pt;}
._31{width:29.068480pt;}
._26{width:99.398880pt;}
._17{width:307.199840pt;}
._4{width:308.798336pt;}
._11{width:446.720992pt;}
._0{width:1573.941152pt;}
.fsb{font-size:32.000000pt;}
.fs9{font-size:33.481067pt;}
.fs8{font-size:33.527467pt;}
.fs3{font-size:34.560000pt;}
.fs0{font-size:42.560000pt;}
.fs4{font-size:53.440000pt;}
.fs6{font-size:57.325333pt;}
.fsa{font-size:57.397333pt;}
.fs7{font-size:57.474667pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs1{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:3.120400pt;}
.y4c{bottom:50.267067pt;}
.y4b{bottom:97.617627pt;}
.y2e{bottom:98.901907pt;}
.y15d{bottom:108.907635pt;}
.y10d{bottom:109.705683pt;}
.ya0{bottom:109.946595pt;}
.ydf{bottom:110.184235pt;}
.y77{bottom:110.347611pt;}
.y193{bottom:110.816627pt;}
.y12c{bottom:112.662819pt;}
.y4a{bottom:113.218099pt;}
.y152{bottom:113.938736pt;}
.y2d{bottom:114.502379pt;}
.y15c{bottom:121.467091pt;}
.y76{bottom:122.907067pt;}
.y192{bottom:123.377147pt;}
.y10c{bottom:125.306155pt;}
.y9f{bottom:125.547067pt;}
.yde{bottom:125.784707pt;}
.y12b{bottom:128.263291pt;}
.y49{bottom:128.818571pt;}
.y151{bottom:129.539208pt;}
.y2c{bottom:130.102851pt;}
.y15b{bottom:134.026547pt;}
.y191{bottom:135.937667pt;}
.y75{bottom:141.147200pt;}
.ydd{bottom:141.385179pt;}
.y12a{bottom:143.863763pt;}
.y48{bottom:144.419043pt;}
.y150{bottom:145.139680pt;}
.y2b{bottom:145.703323pt;}
.y15a{bottom:146.587067pt;}
.y190{bottom:148.498187pt;}
.y10b{bottom:148.906595pt;}
.y9e{bottom:149.547067pt;}
.ydc{bottom:156.985651pt;}
.y129{bottom:159.464235pt;}
.y47{bottom:160.019515pt;}
.y14f{bottom:160.740152pt;}
.y18f{bottom:161.058707pt;}
.y2a{bottom:161.303795pt;}
.y159{bottom:162.187200pt;}
.y10a{bottom:164.507067pt;}
.ydb{bottom:172.586123pt;}
.y128{bottom:175.064707pt;}
.y46{bottom:175.619987pt;}
.y14e{bottom:176.340624pt;}
.y29{bottom:176.904267pt;}
.y18e{bottom:181.618379pt;}
.yda{bottom:188.186595pt;}
.y109{bottom:189.067200pt;}
.y127{bottom:190.665179pt;}
.y45{bottom:191.220459pt;}
.y9d{bottom:191.387067pt;}
.y18d{bottom:194.178899pt;}
.y14d{bottom:199.941064pt;}
.y28{bottom:200.504707pt;}
.yd9{bottom:203.787067pt;}
.y126{bottom:206.265651pt;}
.y18c{bottom:206.738355pt;}
.y44{bottom:206.820931pt;}
.y9c{bottom:209.627067pt;}
.y14c{bottom:215.541536pt;}
.y27{bottom:216.105179pt;}
.y18b{bottom:219.298875pt;}
.y125{bottom:221.866123pt;}
.y43{bottom:222.421403pt;}
.yd8{bottom:227.787067pt;}
.y14b{bottom:231.142008pt;}
.y26{bottom:231.705651pt;}
.y124{bottom:237.466595pt;}
.y42{bottom:238.021875pt;}
.y108{bottom:239.302819pt;}
.y18a{bottom:239.858547pt;}
.y14a{bottom:246.742480pt;}
.y25{bottom:247.306123pt;}
.y189{bottom:252.419067pt;}
.y123{bottom:253.067067pt;}
.y41{bottom:253.622347pt;}
.y107{bottom:254.903291pt;}
.y74{bottom:259.944235pt;}
.y149{bottom:262.342952pt;}
.y24{bottom:262.906595pt;}
.y188{bottom:264.979587pt;}
.y40{bottom:269.222819pt;}
.yd7{bottom:270.103424pt;}
.y106{bottom:270.503763pt;}
.y73{bottom:275.544707pt;}
.y187{bottom:277.540107pt;}
.y122{bottom:277.627067pt;}
.y148{bottom:277.943424pt;}
.y23{bottom:278.507067pt;}
.y3f{bottom:284.823291pt;}
.yd6{bottom:285.703896pt;}
.y105{bottom:286.104235pt;}
.y186{bottom:290.100627pt;}
.y9b{bottom:291.143424pt;}
.y72{bottom:291.145179pt;}
.y147{bottom:293.543896pt;}
.y3e{bottom:300.423763pt;}
.yd5{bottom:301.304368pt;}
.y104{bottom:301.704707pt;}
.y185{bottom:302.661147pt;}
.y22{bottom:303.067067pt;}
.y9a{bottom:306.743896pt;}
.y71{bottom:306.745651pt;}
.y146{bottom:309.144368pt;}
.y3d{bottom:316.024235pt;}
.yd4{bottom:316.904840pt;}
.y103{bottom:317.305179pt;}
.y99{bottom:322.344368pt;}
.y70{bottom:322.346123pt;}
.y184{bottom:323.220819pt;}
.y145{bottom:324.744840pt;}
.y121{bottom:330.025507pt;}
.y3c{bottom:331.624707pt;}
.yd3{bottom:332.505312pt;}
.y102{bottom:332.905651pt;}
.y183{bottom:335.781339pt;}
.y98{bottom:337.944840pt;}
.y6f{bottom:337.946595pt;}
.y144{bottom:340.345312pt;}
.y120{bottom:342.586027pt;}
.y3b{bottom:347.225179pt;}
.yd2{bottom:348.105784pt;}
.y182{bottom:348.341859pt;}
.y101{bottom:348.506123pt;}
.y97{bottom:353.545312pt;}
.y6e{bottom:353.547067pt;}
.y11f{bottom:355.146547pt;}
.y143{bottom:355.945784pt;}
.y21{bottom:355.946595pt;}
.y181{bottom:360.902379pt;}
.y3a{bottom:362.825651pt;}
.yd1{bottom:363.706256pt;}
.y100{bottom:364.106595pt;}
.y11e{bottom:367.707067pt;}
.y96{bottom:369.145784pt;}
.y142{bottom:371.546256pt;}
.y20{bottom:371.547067pt;}
.y6d{bottom:378.107200pt;}
.y39{bottom:378.426123pt;}
.yd0{bottom:379.306728pt;}
.yff{bottom:379.707067pt;}
.y180{bottom:381.462051pt;}
.y1e1{bottom:384.255347pt;}
.y95{bottom:384.746256pt;}
.y11d{bottom:385.947067pt;}
.y141{bottom:387.146728pt;}
.y17f{bottom:394.022571pt;}
.y38{bottom:394.026595pt;}
.ycf{bottom:394.907688pt;}
.y1f{bottom:396.107200pt;}
.y158{bottom:396.186528pt;}
.y94{bottom:400.346728pt;}
.y140{bottom:402.747200pt;}
.yfe{bottom:402.827611pt;}
.y17e{bottom:406.582027pt;}
.y1be{bottom:407.385411pt;}
.y1e0{bottom:408.415571pt;}
.y157{bottom:408.747048pt;}
.y37{bottom:409.627067pt;}
.yfd{bottom:415.387067pt;}
.y93{bottom:415.947200pt;}
.y17d{bottom:419.142547pt;}
.y1bd{bottom:419.945931pt;}
.yc8{bottom:421.146962pt;}
.yc1{bottom:421.467067pt;}
.y1df{bottom:424.016043pt;}
.ycc{bottom:425.065765pt;}
.yc4{bottom:425.067200pt;}
.y156{bottom:426.987200pt;}
.y13f{bottom:429.868699pt;}
.yc7{bottom:430.346320pt;}
.y6c{bottom:430.978163pt;}
.yfc{bottom:430.987200pt;}
.y17c{bottom:431.703067pt;}
.y1de{bottom:439.616515pt;}
.y92{bottom:439.947200pt;}
.y1bc{bottom:440.505603pt;}
.y36{bottom:440.747611pt;}
.y13e{bottom:442.428155pt;}
.yc3{bottom:442.987022pt;}
.yca{bottom:444.105895pt;}
.y6b{bottom:446.578635pt;}
.yce{bottom:446.585460pt;}
.yc5{bottom:446.586895pt;}
.yc0{bottom:450.106435pt;}
.y17b{bottom:452.262739pt;}
.y1bb{bottom:453.066123pt;}
.y35{bottom:453.307067pt;}
.y1e{bottom:454.337195pt;}
.yc9{bottom:454.826282pt;}
.y13d{bottom:454.987611pt;}
.y1dd{bottom:455.216987pt;}
.y6a{bottom:462.179107pt;}
.yc2{bottom:464.506978pt;}
.y17a{bottom:464.823259pt;}
.y1ba{bottom:465.625579pt;}
.ycb{bottom:467.066264pt;}
.y13c{bottom:467.547067pt;}
.ycd{bottom:468.105155pt;}
.yc6{bottom:468.106590pt;}
.y1d{bottom:469.937667pt;}
.y1dc{bottom:470.817459pt;}
.y34{bottom:471.547067pt;}
.y179{bottom:477.382715pt;}
.y69{bottom:477.779579pt;}
.y1b9{bottom:478.185035pt;}
.y91{bottom:481.786027pt;}
.y1c{bottom:485.538139pt;}
.y13b{bottom:485.787067pt;}
.ybf{bottom:489.306011pt;}
.y178{bottom:489.943235pt;}
.y1b8{bottom:490.744491pt;}
.y68{bottom:493.380051pt;}
.y90{bottom:494.346547pt;}
.y1db{bottom:494.657043pt;}
.y1b{bottom:501.138611pt;}
.y177{bottom:502.503755pt;}
.y1b7{bottom:503.303947pt;}
.ybe{bottom:504.906483pt;}
.y8f{bottom:506.907067pt;}
.y67{bottom:508.980523pt;}
.y1da{bottom:510.257515pt;}
.y1b6{bottom:515.863403pt;}
.y1a{bottom:516.739083pt;}
.ybd{bottom:520.506955pt;}
.y176{bottom:523.063427pt;}
.y66{bottom:524.580995pt;}
.y8e{bottom:525.147067pt;}
.y1d9{bottom:525.857987pt;}
.y1b5{bottom:528.422859pt;}
.y19{bottom:532.339555pt;}
.y175{bottom:535.623947pt;}
.ybc{bottom:536.107427pt;}
.y1d8{bottom:541.458459pt;}
.y11c{bottom:542.265179pt;}
.y18{bottom:547.940027pt;}
.y65{bottom:548.181435pt;}
.y174{bottom:548.184467pt;}
.y1b4{bottom:548.982531pt;}
.y1d7{bottom:557.058931pt;}
.y11b{bottom:557.865651pt;}
.y173{bottom:560.744987pt;}
.y1b3{bottom:561.541987pt;}
.y17{bottom:563.540499pt;}
.y64{bottom:563.781907pt;}
.yb9{bottom:567.467036pt;}
.ybb{bottom:571.067317pt;}
.y1d6{bottom:572.659403pt;}
.yb7{bottom:572.663443pt;}
.y172{bottom:573.305507pt;}
.y11a{bottom:573.466123pt;}
.y1b2{bottom:574.102507pt;}
.yb8{bottom:576.827067pt;}
.y16{bottom:579.140971pt;}
.y63{bottom:579.382379pt;}
.yba{bottom:580.427067pt;}
.y171{bottom:585.866027pt;}
.y1d5{bottom:588.259875pt;}
.y119{bottom:589.066595pt;}
.y1b1{bottom:594.662179pt;}
.y15{bottom:594.741443pt;}
.y62{bottom:594.982851pt;}
.yfb{bottom:596.101875pt;}
.y170{bottom:598.426547pt;}
.y118{bottom:604.667067pt;}
.yb6{bottom:604.823635pt;}
.y1b0{bottom:607.221635pt;}
.y14{bottom:610.341915pt;}
.y61{bottom:610.583323pt;}
.y16f{bottom:610.987067pt;}
.yfa{bottom:611.702347pt;}
.y1d4{bottom:612.099459pt;}
.yb5{bottom:620.424107pt;}
.y155{bottom:623.066547pt;}
.y13{bottom:625.942387pt;}
.y60{bottom:626.183795pt;}
.yf9{bottom:627.302819pt;}
.y1d3{bottom:627.699931pt;}
.y1af{bottom:627.781307pt;}
.y117{bottom:627.787115pt;}
.y154{bottom:635.627067pt;}
.yb4{bottom:636.024579pt;}
.y1ae{bottom:640.340763pt;}
.y116{bottom:640.347635pt;}
.y16e{bottom:640.987067pt;}
.y12{bottom:641.542859pt;}
.yf8{bottom:642.903291pt;}
.y1d2{bottom:643.300403pt;}
.y8d{bottom:649.620931pt;}
.y5f{bottom:649.784235pt;}
.y153{bottom:651.227067pt;}
.yb3{bottom:651.625051pt;}
.y1ad{bottom:652.901283pt;}
.y115{bottom:652.908155pt;}
.y11{bottom:657.143331pt;}
.yf7{bottom:658.503763pt;}
.y1d1{bottom:658.900875pt;}
.y8c{bottom:665.221403pt;}
.y5e{bottom:665.384707pt;}
.y114{bottom:665.467611pt;}
.yb2{bottom:667.225523pt;}
.y10{bottom:672.743803pt;}
.y1ac{bottom:673.460955pt;}
.yf6{bottom:674.104235pt;}
.y1d0{bottom:674.501347pt;}
.y113{bottom:678.027067pt;}
.y8b{bottom:680.821875pt;}
.y5d{bottom:680.985179pt;}
.yb1{bottom:682.825995pt;}
.y1ab{bottom:686.020411pt;}
.yf{bottom:688.344275pt;}
.y33{bottom:688.580243pt;}
.yf5{bottom:689.704707pt;}
.y1cf{bottom:690.101819pt;}
.y112{bottom:696.267067pt;}
.y8a{bottom:696.422347pt;}
.y1aa{bottom:698.580931pt;}
.y16d{bottom:701.866595pt;}
.ye{bottom:703.944747pt;}
.y32{bottom:704.180715pt;}
.yf4{bottom:705.305179pt;}
.y5c{bottom:705.464707pt;}
.y1ce{bottom:705.702291pt;}
.yb0{bottom:706.426435pt;}
.y1a9{bottom:711.141451pt;}
.y89{bottom:712.022819pt;}
.y16c{bottom:717.467067pt;}
.yd{bottom:719.545219pt;}
.y31{bottom:719.781187pt;}
.yf3{bottom:720.905651pt;}
.y5b{bottom:721.065179pt;}
.y1cd{bottom:721.302763pt;}
.yaf{bottom:722.026907pt;}
.y88{bottom:727.623291pt;}
.y1a8{bottom:731.701123pt;}
.yc{bottom:735.145691pt;}
.y30{bottom:735.381659pt;}
.yf2{bottom:736.506123pt;}
.y5a{bottom:736.665651pt;}
.y1cc{bottom:736.903235pt;}
.yae{bottom:737.627379pt;}
.y87{bottom:743.223763pt;}
.y1a7{bottom:744.261643pt;}
.y16b{bottom:750.027067pt;}
.yb{bottom:750.746163pt;}
.y2f{bottom:750.982131pt;}
.yf1{bottom:752.106595pt;}
.y1cb{bottom:752.503707pt;}
.y1a6{bottom:756.822163pt;}
.yab{bottom:758.666667pt;}
.y86{bottom:758.824235pt;}
.y59{bottom:761.145179pt;}
.yaa{bottom:762.186832pt;}
.yad{bottom:762.187067pt;}
.ya{bottom:766.585779pt;}
.yf0{bottom:767.707067pt;}
.y1ca{bottom:768.104179pt;}
.y1a5{bottom:769.382683pt;}
.y85{bottom:774.424707pt;}
.y58{bottom:776.745651pt;}
.ya9{bottom:785.946256pt;}
.y1a4{bottom:789.942355pt;}
.y84{bottom:790.025179pt;}
.yef{bottom:790.827200pt;}
.y1c9{bottom:791.943763pt;}
.y9{bottom:798.186187pt;}
.y57{bottom:801.225179pt;}
.ya8{bottom:801.546728pt;}
.y1a3{bottom:802.502875pt;}
.y83{bottom:805.625651pt;}
.y1c8{bottom:807.544235pt;}
.y13a{bottom:809.536451pt;}
.y16a{bottom:810.901875pt;}
.yee{bottom:812.267067pt;}
.y1a2{bottom:815.063395pt;}
.y56{bottom:816.825651pt;}
.ya7{bottom:817.146595pt;}
.y82{bottom:821.226123pt;}
.y1c7{bottom:823.144707pt;}
.y139{bottom:825.136923pt;}
.yed{bottom:825.467067pt;}
.y169{bottom:826.502347pt;}
.y8{bottom:829.786595pt;}
.ya6{bottom:832.741907pt;}
.y1a1{bottom:835.623067pt;}
.y81{bottom:836.826595pt;}
.yec{bottom:838.667067pt;}
.y1c6{bottom:838.745179pt;}
.y138{bottom:840.737395pt;}
.y55{bottom:841.305179pt;}
.y168{bottom:842.102819pt;}
.y1a0{bottom:848.183587pt;}
.ya5{bottom:848.342379pt;}
.y7{bottom:851.387067pt;}
.yeb{bottom:851.866547pt;}
.y80{bottom:852.427067pt;}
.y1c5{bottom:854.345651pt;}
.y137{bottom:856.337867pt;}
.y54{bottom:856.905651pt;}
.y167{bottom:857.703291pt;}
.y19f{bottom:860.744107pt;}
.y6{bottom:860.986595pt;}
.ya4{bottom:863.942851pt;}
.yea{bottom:864.427067pt;}
.y1c4{bottom:869.946123pt;}
.y136{bottom:871.938339pt;}
.y53{bottom:872.506123pt;}
.y166{bottom:873.303763pt;}
.y19e{bottom:873.304627pt;}
.y7f{bottom:876.427067pt;}
.ye9{bottom:876.987067pt;}
.ya3{bottom:879.543323pt;}
.y5{bottom:882.587067pt;}
.y1c3{bottom:885.546595pt;}
.y19d{bottom:885.865147pt;}
.y135{bottom:887.538811pt;}
.ye8{bottom:887.545179pt;}
.y52{bottom:888.106595pt;}
.y165{bottom:888.904235pt;}
.ya2{bottom:895.143795pt;}
.y19c{bottom:898.425667pt;}
.y1c2{bottom:901.147067pt;}
.y134{bottom:903.139283pt;}
.ye7{bottom:903.145651pt;}
.y51{bottom:903.707067pt;}
.y164{bottom:904.504707pt;}
.y4{bottom:908.667067pt;}
.ya1{bottom:910.744267pt;}
.y133{bottom:918.739755pt;}
.y7e{bottom:918.744235pt;}
.y111{bottom:918.744555pt;}
.ye6{bottom:918.746123pt;}
.y19b{bottom:918.985339pt;}
.y163{bottom:920.105179pt;}
.y1c1{bottom:925.947067pt;}
.y50{bottom:928.267067pt;}
.y19a{bottom:931.545859pt;}
.y132{bottom:934.340227pt;}
.y7d{bottom:934.344707pt;}
.y110{bottom:934.345027pt;}
.ye5{bottom:934.346595pt;}
.y162{bottom:935.705651pt;}
.y199{bottom:944.106379pt;}
.y131{bottom:949.940699pt;}
.ye4{bottom:949.941731pt;}
.y7c{bottom:949.945179pt;}
.y10f{bottom:949.945499pt;}
.y161{bottom:951.306123pt;}
.y3{bottom:953.385739pt;}
.y198{bottom:956.666899pt;}
.y130{bottom:965.541171pt;}
.ye3{bottom:965.542203pt;}
.y7b{bottom:965.545651pt;}
.y10e{bottom:965.545971pt;}
.y160{bottom:966.906595pt;}
.y197{bottom:969.227419pt;}
.y12f{bottom:981.141643pt;}
.ye2{bottom:981.142675pt;}
.y7a{bottom:981.146123pt;}
.y4f{bottom:981.146443pt;}
.y15f{bottom:982.507067pt;}
.y2{bottom:984.027067pt;}
.y196{bottom:989.787091pt;}
.y12e{bottom:996.742115pt;}
.ye1{bottom:996.743147pt;}
.y79{bottom:996.746595pt;}
.y4e{bottom:996.746915pt;}
.y1c0{bottom:1002.345483pt;}
.y195{bottom:1002.347611pt;}
.y15e{bottom:1007.067067pt;}
.y12d{bottom:1012.342587pt;}
.ye0{bottom:1012.343619pt;}
.y78{bottom:1012.347067pt;}
.y4d{bottom:1012.347387pt;}
.y1bf{bottom:1014.904939pt;}
.y194{bottom:1014.907067pt;}
.y1{bottom:1057.547067pt;}
.he{height:16.240000pt;}
.h1c{height:22.234375pt;}
.h19{height:23.247108pt;}
.h16{height:23.263456pt;}
.h13{height:23.279325pt;}
.h10{height:23.295696pt;}
.h4{height:24.013125pt;}
.h8{height:29.571719pt;}
.h1{height:31.005625pt;}
.h11{height:31.055471pt;}
.h6{height:37.105312pt;}
.h5{height:37.131406pt;}
.hc{height:37.133828pt;}
.hb{height:37.152046pt;}
.hd{height:38.203978pt;}
.h18{height:39.853031pt;}
.h17{height:39.881057pt;}
.h14{height:39.906727pt;}
.ha{height:43.375000pt;}
.h15{height:43.530404pt;}
.h1b{height:48.034469pt;}
.h9{height:49.499844pt;}
.h7{height:50.531875pt;}
.hf{height:53.098710pt;}
.h1a{height:53.165401pt;}
.h12{height:53.237033pt;}
.h3{height:58.990937pt;}
.h2{height:72.219375pt;}
.h0{height:1122.666667pt;}
.w2{width:7.840000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x10{left:56.720000pt;}
.x12{left:66.160984pt;}
.x43{left:70.720000pt;}
.x1{left:75.680000pt;}
.x7{left:80.800000pt;}
.x11{left:85.040000pt;}
.x44{left:88.879288pt;}
.x2b{left:101.444007pt;}
.xb{left:104.000000pt;}
.x5{left:113.280000pt;}
.x14{left:122.880096pt;}
.x33{left:134.641506pt;}
.x3e{left:141.840096pt;}
.x2{left:144.720000pt;}
.x31{left:145.921517pt;}
.x4{left:152.720000pt;}
.x9{left:165.280000pt;}
.x2a{left:168.321945pt;}
.x25{left:177.041484pt;}
.x1e{left:190.479695pt;}
.x1c{left:194.639615pt;}
.x32{left:197.282085pt;}
.x3{left:206.079912pt;}
.x27{left:207.280385pt;}
.x23{left:213.840098pt;}
.x2e{left:216.321180pt;}
.x21{left:221.600011pt;}
.x20{left:230.319693pt;}
.x1a{left:239.200000pt;}
.x1f{left:257.840000pt;}
.x1b{left:261.040000pt;}
.x22{left:267.520000pt;}
.x6{left:275.360224pt;}
.x1d{left:279.920080pt;}
.x8{left:284.400432pt;}
.x13{left:292.720000pt;}
.x2d{left:307.760484pt;}
.x30{left:315.760226pt;}
.x2c{left:319.360000pt;}
.x3b{left:323.200000pt;}
.x26{left:324.480000pt;}
.x29{left:327.041356pt;}
.x2f{left:334.720000pt;}
.x3c{left:337.520000pt;}
.x28{left:345.999695pt;}
.x24{left:354.800000pt;}
.x3d{left:356.720000pt;}
.x40{left:360.240000pt;}
.x3f{left:371.040000pt;}
.x15{left:398.720000pt;}
.xa{left:406.399944pt;}
.xc{left:417.679440pt;}
.x16{left:427.040000pt;}
.x41{left:431.680000pt;}
.xe{left:446.000000pt;}
.x42{left:449.839288pt;}
.x18{left:464.880096pt;}
.x34{left:471.760000pt;}
.xf{left:483.840096pt;}
.x45{left:489.200000pt;}
.x39{left:496.320000pt;}
.x38{left:499.040000pt;}
.x35{left:548.559520pt;}
.x37{left:621.759528pt;}
.x36{left:633.919984pt;}
.x17{left:701.520000pt;}
.x19{left:717.440000pt;}
.xd{left:718.880000pt;}
.x3a{left:736.960000pt;}
}




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