
    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_4302a198a9e7555e227f32a5.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_f5b9c15c8ea0de04d9a41c9f.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_bfe2d60ad2943a7641e91c8d.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_b8cd62a449de5c78c1cc263f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c3085211c1082c727eac09d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0438b926168fc5d5983403da.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.178740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178740,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m4{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);}
.m1{transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-31.317319px;}
.v5{vertical-align:-29.162469px;}
.v1{vertical-align:-26.642160px;}
.ve{vertical-align:-24.120000px;}
.v7{vertical-align:-23.039820px;}
.v3{vertical-align:-9.001548px;}
.v4{vertical-align:-6.115752px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:2.518488px;}
.vf{vertical-align:6.120000px;}
.vb{vertical-align:9.000000px;}
.va{vertical-align:11.521068px;}
.v6{vertical-align:16.917839px;}
.v8{vertical-align:23.756940px;}
.v2{vertical-align:25.200300px;}
.vd{vertical-align:26.640000px;}
.v10{vertical-align:36.000000px;}
.ls7a{letter-spacing:-0.685368px;}
.ls58{letter-spacing:-0.144288px;}
.ls82{letter-spacing:-0.114228px;}
.ls77{letter-spacing:-0.108216px;}
.ls52{letter-spacing:-0.096192px;}
.lsa4{letter-spacing:-0.090972px;}
.ls81{letter-spacing:-0.090180px;}
.lsa9{letter-spacing:-0.086184px;}
.ls59{letter-spacing:-0.084168px;}
.lsa5{letter-spacing:-0.081396px;}
.ls26{letter-spacing:-0.078156px;}
.ls21{letter-spacing:-0.072144px;}
.lsa3{letter-spacing:-0.067032px;}
.ls56{letter-spacing:-0.066132px;}
.ls74{letter-spacing:-0.062244px;}
.ls24{letter-spacing:-0.060120px;}
.lsa2{letter-spacing:-0.058716px;}
.lsa7{letter-spacing:-0.057456px;}
.ls4f{letter-spacing:-0.054108px;}
.ls5b{letter-spacing:-0.048096px;}
.ls25{letter-spacing:-0.042084px;}
.lsa6{letter-spacing:-0.038304px;}
.ls5a{letter-spacing:-0.036072px;}
.ls4b{letter-spacing:-0.030060px;}
.lsa8{letter-spacing:-0.028728px;}
.ls80{letter-spacing:-0.024048px;}
.ls83{letter-spacing:-0.020916px;}
.lsaa{letter-spacing:-0.019152px;}
.lsab{letter-spacing:-0.018036px;}
.ls1e{letter-spacing:-0.014400px;}
.ls9f{letter-spacing:-0.014364px;}
.ls20{letter-spacing:-0.012024px;}
.ls51{letter-spacing:-0.011664px;}
.ls85{letter-spacing:-0.007776px;}
.ls4e{letter-spacing:-0.006012px;}
.ls79{letter-spacing:-0.004788px;}
.ls57{letter-spacing:-0.003888px;}
.ls1f{letter-spacing:0.000000px;}
.ls6c{letter-spacing:0.000600px;}
.ls4d{letter-spacing:0.003888px;}
.ls36{letter-spacing:0.004320px;}
.ls46{letter-spacing:0.004788px;}
.ls68{letter-spacing:0.004920px;}
.lsa{letter-spacing:0.006012px;}
.ls69{letter-spacing:0.009360px;}
.ls0{letter-spacing:0.009576px;}
.ls55{letter-spacing:0.011664px;}
.ls1d{letter-spacing:0.011988px;}
.ls27{letter-spacing:0.012024px;}
.ls4a{letter-spacing:0.014364px;}
.ls15{letter-spacing:0.016776px;}
.ls31{letter-spacing:0.017280px;}
.ls19{letter-spacing:0.018036px;}
.ls84{letter-spacing:0.019152px;}
.ls75{letter-spacing:0.020916px;}
.ls29{letter-spacing:0.023940px;}
.ls6{letter-spacing:0.024048px;}
.ls6a{letter-spacing:0.028728px;}
.ls13{letter-spacing:0.030060px;}
.ls7c{letter-spacing:0.033516px;}
.ls11{letter-spacing:0.036072px;}
.ls18{letter-spacing:0.041940px;}
.ls22{letter-spacing:0.042084px;}
.ls95{letter-spacing:0.043092px;}
.ls99{letter-spacing:0.047880px;}
.ls1c{letter-spacing:0.047952px;}
.ls1b{letter-spacing:0.048096px;}
.lsb{letter-spacing:0.050328px;}
.ls93{letter-spacing:0.052668px;}
.ls12{letter-spacing:0.054108px;}
.ls50{letter-spacing:0.056772px;}
.ls92{letter-spacing:0.057456px;}
.ls7{letter-spacing:0.060120px;}
.ls96{letter-spacing:0.062244px;}
.lsf{letter-spacing:0.066132px;}
.ls2a{letter-spacing:0.067032px;}
.ls9e{letter-spacing:0.071712px;}
.ls9b{letter-spacing:0.071820px;}
.ls4{letter-spacing:0.072144px;}
.ls14{letter-spacing:0.075492px;}
.ls78{letter-spacing:0.076608px;}
.ls1{letter-spacing:0.078156px;}
.lsa1{letter-spacing:0.083880px;}
.ls1a{letter-spacing:0.084168px;}
.ls49{letter-spacing:0.086184px;}
.ls6e{letter-spacing:0.089640px;}
.lse{letter-spacing:0.090180px;}
.ls98{letter-spacing:0.090972px;}
.ls17{letter-spacing:0.095760px;}
.ls9{letter-spacing:0.096192px;}
.ls48{letter-spacing:0.100548px;}
.ls2{letter-spacing:0.102204px;}
.ls6b{letter-spacing:0.103320px;}
.ls7b{letter-spacing:0.104040px;}
.ls47{letter-spacing:0.105336px;}
.ls5c{letter-spacing:0.107568px;}
.ls7f{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.108216px;}
.ls5{letter-spacing:0.114228px;}
.ls3{letter-spacing:0.120240px;}
.lsd{letter-spacing:0.125820px;}
.ls2d{letter-spacing:0.126252px;}
.ls5e{letter-spacing:0.128484px;}
.ls63{letter-spacing:0.131256px;}
.ls76{letter-spacing:0.131472px;}
.ls33{letter-spacing:0.132264px;}
.ls66{letter-spacing:0.133884px;}
.ls62{letter-spacing:0.135612px;}
.ls60{letter-spacing:0.136836px;}
.ls35{letter-spacing:0.136872px;}
.ls8e{letter-spacing:0.137304px;}
.ls5f{letter-spacing:0.137772px;}
.ls65{letter-spacing:0.138168px;}
.ls30{letter-spacing:0.138276px;}
.ls9a{letter-spacing:0.138852px;}
.ls3f{letter-spacing:0.140004px;}
.ls64{letter-spacing:0.140220px;}
.ls61{letter-spacing:0.140796px;}
.ls67{letter-spacing:0.141600px;}
.lsa0{letter-spacing:0.144288px;}
.ls4c{letter-spacing:0.150300px;}
.ls6f{letter-spacing:0.158940px;}
.ls45{letter-spacing:0.163296px;}
.ls89{letter-spacing:0.164484px;}
.ls97{letter-spacing:0.167580px;}
.ls94{letter-spacing:0.172368px;}
.ls42{letter-spacing:0.174348px;}
.ls72{letter-spacing:0.174744px;}
.ls88{letter-spacing:0.175968px;}
.ls23{letter-spacing:0.176148px;}
.ls87{letter-spacing:0.176220px;}
.ls8f{letter-spacing:0.177372px;}
.ls86{letter-spacing:0.177912px;}
.ls34{letter-spacing:0.179100px;}
.ls8d{letter-spacing:0.179604px;}
.ls7d{letter-spacing:0.180252px;}
.ls73{letter-spacing:0.180360px;}
.ls8c{letter-spacing:0.180864px;}
.ls8a{letter-spacing:0.180900px;}
.ls2e{letter-spacing:0.181800px;}
.ls28{letter-spacing:0.181944px;}
.ls8b{letter-spacing:0.182268px;}
.ls2b{letter-spacing:0.183132px;}
.ls90{letter-spacing:0.220248px;}
.ls32{letter-spacing:0.360000px;}
.ls6d{letter-spacing:0.401760px;}
.ls71{letter-spacing:0.535068px;}
.ls16{letter-spacing:1.172340px;}
.ls41{letter-spacing:1.799136px;}
.ls40{letter-spacing:5.399136px;}
.ls3b{letter-spacing:6.571116px;}
.ls70{letter-spacing:7.651476px;}
.ls43{letter-spacing:7.919136px;}
.ls9c{letter-spacing:10.080000px;}
.ls2f{letter-spacing:11.518704px;}
.ls39{letter-spacing:13.319136px;}
.ls3a{letter-spacing:13.320000px;}
.ls7e{letter-spacing:14.868000px;}
.ls10{letter-spacing:15.030000px;}
.ls3e{letter-spacing:15.480696px;}
.ls3d{letter-spacing:15.838704px;}
.ls3c{letter-spacing:15.840000px;}
.ls38{letter-spacing:16.198704px;}
.ls37{letter-spacing:16.201296px;}
.ls9d{letter-spacing:18.360000px;}
.ls2c{letter-spacing:19.800000px;}
.ls91{letter-spacing:32.409972px;}
.lsc{letter-spacing:41.117976px;}
.ls44{letter-spacing:213.487344px;}
.ls5d{letter-spacing:304.215156px;}
.ls54{letter-spacing:306.188488px;}
.ls53{letter-spacing:372.151108px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5b{word-spacing:-328.734538px;}
.ws60{word-spacing:-33.319295px;}
.ws5a{word-spacing:-32.945760px;}
.ws56{word-spacing:-32.551200px;}
.ws5c{word-spacing:-31.526330px;}
.ws54{word-spacing:-31.088946px;}
.ws66{word-spacing:-26.238240px;}
.ws1{word-spacing:-21.146148px;}
.ws65{word-spacing:-15.168276px;}
.ws0{word-spacing:-15.102144px;}
.ws4c{word-spacing:-15.030000px;}
.ws4d{word-spacing:-15.023988px;}
.ws59{word-spacing:-14.933808px;}
.ws64{word-spacing:-14.885712px;}
.ws49{word-spacing:-14.850000px;}
.ws5f{word-spacing:-14.382450px;}
.ws53{word-spacing:-13.419750px;}
.wsba{word-spacing:-13.387248px;}
.ws123{word-spacing:-13.310640px;}
.ws125{word-spacing:-12.190248px;}
.ws127{word-spacing:-12.041820px;}
.wsb8{word-spacing:-11.970000px;}
.ws126{word-spacing:-11.888604px;}
.ws62{word-spacing:-9.731664px;}
.ws4b{word-spacing:-9.723888px;}
.ws4e{word-spacing:-9.720000px;}
.ws63{word-spacing:-9.716112px;}
.ws50{word-spacing:-9.708336px;}
.ws47{word-spacing:-9.450000px;}
.ws5d{word-spacing:-9.152250px;}
.ws51{word-spacing:-8.539800px;}
.wsb7{word-spacing:-8.438112px;}
.ws69{word-spacing:-8.435124px;}
.ws67{word-spacing:-8.414208px;}
.wsb9{word-spacing:-8.396280px;}
.ws124{word-spacing:-8.378352px;}
.wsb6{word-spacing:-8.327556px;}
.ws68{word-spacing:-8.306640px;}
.wsfb{word-spacing:-8.285724px;}
.ws6a{word-spacing:-7.577568px;}
.ws4f{word-spacing:-7.526772px;}
.wsbb{word-spacing:-7.490916px;}
.wsfa{word-spacing:-7.470000px;}
.wsfc{word-spacing:-7.449084px;}
.ws39{word-spacing:-0.272916px;}
.ws15c{word-spacing:-0.258552px;}
.ws160{word-spacing:-0.229824px;}
.ws10e{word-spacing:-0.196308px;}
.ws3a{word-spacing:-0.186732px;}
.wsb5{word-spacing:-0.177156px;}
.ws2a{word-spacing:-0.167760px;}
.ws15b{word-spacing:-0.167580px;}
.ws70{word-spacing:-0.158004px;}
.ws157{word-spacing:-0.153216px;}
.ws14d{word-spacing:-0.148428px;}
.ws164{word-spacing:-0.142596px;}
.ws15f{word-spacing:-0.138852px;}
.ws3e{word-spacing:-0.134208px;}
.ws4{word-spacing:-0.131868px;}
.wse4{word-spacing:-0.119700px;}
.ws5{word-spacing:-0.107892px;}
.wsde{word-spacing:-0.076608px;}
.wsd6{word-spacing:-0.036072px;}
.ws9{word-spacing:-0.030060px;}
.wsc3{word-spacing:-0.028728px;}
.wsff{word-spacing:-0.024048px;}
.ws11b{word-spacing:-0.018036px;}
.ws8{word-spacing:-0.012024px;}
.ws42{word-spacing:-0.006012px;}
.ws6b{word-spacing:-0.004788px;}
.ws3{word-spacing:0.000000px;}
.ws6c{word-spacing:0.004788px;}
.wsce{word-spacing:0.006012px;}
.ws2{word-spacing:0.009576px;}
.ws7{word-spacing:0.012024px;}
.ws6{word-spacing:0.014400px;}
.ws92{word-spacing:0.018036px;}
.wse0{word-spacing:0.019152px;}
.ws86{word-spacing:0.024048px;}
.ws10{word-spacing:0.030060px;}
.wsd5{word-spacing:0.036072px;}
.ws135{word-spacing:0.042084px;}
.ws149{word-spacing:0.048096px;}
.wsad{word-spacing:0.060120px;}
.ws3d{word-spacing:0.066132px;}
.ws122{word-spacing:0.072144px;}
.ws38{word-spacing:0.078156px;}
.ws144{word-spacing:0.102204px;}
.ws107{word-spacing:0.114228px;}
.ws78{word-spacing:0.120240px;}
.ws29{word-spacing:0.132264px;}
.ws9f{word-spacing:0.162324px;}
.wsbf{word-spacing:0.270540px;}
.ws85{word-spacing:0.318636px;}
.ws159{word-spacing:0.325584px;}
.ws6f{word-spacing:0.348696px;}
.wsdd{word-spacing:0.360720px;}
.wsbe{word-spacing:0.408816px;}
.ws16{word-spacing:0.444888px;}
.ws158{word-spacing:0.670320px;}
.ws129{word-spacing:0.715428px;}
.ws44{word-spacing:0.727452px;}
.ws128{word-spacing:0.775548px;}
.ws14b{word-spacing:0.885780px;}
.ws168{word-spacing:1.088172px;}
.ws35{word-spacing:1.148292px;}
.ws14a{word-spacing:1.417248px;}
.ws34{word-spacing:1.418832px;}
.ws2c{word-spacing:1.436868px;}
.wsa1{word-spacing:1.478952px;}
.wsa2{word-spacing:1.503000px;}
.ws152{word-spacing:1.536948px;}
.ws151{word-spacing:1.651860px;}
.ws16d{word-spacing:1.785564px;}
.ws171{word-spacing:1.821636px;}
.ws150{word-spacing:2.015748px;}
.ws137{word-spacing:2.146284px;}
.wsa4{word-spacing:2.164320px;}
.ws134{word-spacing:2.182356px;}
.ws13e{word-spacing:2.320632px;}
.ws83{word-spacing:2.470932px;}
.ws11a{word-spacing:2.482956px;}
.wse9{word-spacing:2.513016px;}
.ws119{word-spacing:2.519028px;}
.ws84{word-spacing:2.531052px;}
.wsea{word-spacing:2.567124px;}
.wsac{word-spacing:2.843676px;}
.ws100{word-spacing:2.867724px;}
.ws93{word-spacing:2.873736px;}
.ws7d{word-spacing:2.879748px;}
.ws118{word-spacing:2.903796px;}
.wsab{word-spacing:2.927844px;}
.ws131{word-spacing:2.999988px;}
.ws46{word-spacing:3.030048px;}
.ws2f{word-spacing:3.048084px;}
.ws109{word-spacing:3.060108px;}
.ws11{word-spacing:3.222432px;}
.ws177{word-spacing:3.282552px;}
.ws10d{word-spacing:3.288564px;}
.ws108{word-spacing:3.306600px;}
.wsd{word-spacing:3.342672px;}
.ws145{word-spacing:3.565116px;}
.ws1f{word-spacing:3.589164px;}
.ws13c{word-spacing:3.601188px;}
.wsf{word-spacing:3.613212px;}
.wsc{word-spacing:3.667320px;}
.ws176{word-spacing:3.673332px;}
.wsc6{word-spacing:3.685356px;}
.ws146{word-spacing:3.781548px;}
.wsdc{word-spacing:3.871728px;}
.wsc5{word-spacing:3.925836px;}
.ws77{word-spacing:3.949884px;}
.wsd9{word-spacing:3.955896px;}
.ws1d{word-spacing:3.961908px;}
.ws17{word-spacing:3.973932px;}
.ws94{word-spacing:4.304592px;}
.wsd1{word-spacing:4.316616px;}
.wsda{word-spacing:4.328640px;}
.ws143{word-spacing:4.352688px;}
.wsdb{word-spacing:4.358700px;}
.wsa3{word-spacing:4.478940px;}
.wsca{word-spacing:4.486356px;}
.wscb{word-spacing:4.495932px;}
.ws16e{word-spacing:4.671324px;}
.ws18{word-spacing:4.683348px;}
.ws13{word-spacing:4.725432px;}
.ws27{word-spacing:4.731444px;}
.ws24{word-spacing:4.743468px;}
.ws43{word-spacing:5.026032px;}
.ws12{word-spacing:5.068116px;}
.ws26{word-spacing:5.098176px;}
.ws97{word-spacing:5.116212px;}
.wsb3{word-spacing:5.204556px;}
.wsb4{word-spacing:5.209344px;}
.wsb2{word-spacing:5.214132px;}
.ws12d{word-spacing:5.386752px;}
.ws15{word-spacing:5.392764px;}
.wsbd{word-spacing:5.404788px;}
.wsc7{word-spacing:5.416812px;}
.ws22{word-spacing:5.452884px;}
.ws30{word-spacing:5.464908px;}
.ws96{word-spacing:5.525028px;}
.ws154{word-spacing:5.664204px;}
.ws133{word-spacing:5.735448px;}
.ws130{word-spacing:5.759496px;}
.ws147{word-spacing:5.765508px;}
.ws3f{word-spacing:5.771520px;}
.ws132{word-spacing:5.789556px;}
.wsbc{word-spacing:5.807592px;}
.wsa0{word-spacing:5.903784px;}
.ws113{word-spacing:5.963904px;}
.ws10c{word-spacing:6.126228px;}
.wsa9{word-spacing:6.144264px;}
.wsa8{word-spacing:6.174324px;}
.wsc0{word-spacing:6.180336px;}
.ws112{word-spacing:6.186348px;}
.wsc1{word-spacing:6.204384px;}
.ws173{word-spacing:6.468912px;}
.ws2b{word-spacing:6.474924px;}
.wse7{word-spacing:6.517008px;}
.ws169{word-spacing:6.535044px;}
.wsa7{word-spacing:6.547068px;}
.ws90{word-spacing:6.553080px;}
.ws16a{word-spacing:6.631236px;}
.wse8{word-spacing:6.679332px;}
.ws8f{word-spacing:6.805584px;}
.ws142{word-spacing:6.925824px;}
.ws116{word-spacing:7.004844px;}
.ws117{word-spacing:7.009632px;}
.ws141{word-spacing:7.166304px;}
.wsf0{word-spacing:7.363944px;}
.wsf1{word-spacing:7.368732px;}
.ws153{word-spacing:7.507584px;}
.wsd2{word-spacing:7.539048px;}
.ws148{word-spacing:7.545060px;}
.ws7a{word-spacing:7.563096px;}
.ws28{word-spacing:7.575120px;}
.ws72{word-spacing:7.587144px;}
.ws73{word-spacing:7.653276px;}
.ws9c{word-spacing:7.689348px;}
.ws9b{word-spacing:7.875720px;}
.ws33{word-spacing:7.917804px;}
.wsf2{word-spacing:7.947864px;}
.ws14{word-spacing:8.440848px;}
.ws163{word-spacing:8.843436px;}
.ws162{word-spacing:8.862588px;}
.wsa6{word-spacing:8.975916px;}
.ws7c{word-spacing:8.981928px;}
.ws7b{word-spacing:8.987940px;}
.ws41{word-spacing:8.999964px;}
.ws2d{word-spacing:9.024012px;}
.wsa5{word-spacing:9.066096px;}
.ws105{word-spacing:9.084132px;}
.ws106{word-spacing:9.090144px;}
.ws15e{word-spacing:9.178596px;}
.ws161{word-spacing:9.288720px;}
.ws15d{word-spacing:9.298296px;}
.ws170{word-spacing:9.426816px;}
.ws166{word-spacing:9.703368px;}
.wsaa{word-spacing:9.733428px;}
.ws104{word-spacing:9.887220px;}
.wsb{word-spacing:10.058076px;}
.ws1a{word-spacing:10.070100px;}
.ws98{word-spacing:10.088136px;}
.ws99{word-spacing:10.106172px;}
.ws165{word-spacing:10.190340px;}
.ws103{word-spacing:10.246320px;}
.wse6{word-spacing:10.251108px;}
.wsc9{word-spacing:10.424808px;}
.ws32{word-spacing:10.436832px;}
.ws45{word-spacing:10.478916px;}
.wsd7{word-spacing:10.484928px;}
.ws11e{word-spacing:10.490940px;}
.ws3c{word-spacing:10.587132px;}
.wse5{word-spacing:10.605420px;}
.wsc8{word-spacing:10.845648px;}
.ws23{word-spacing:10.947852px;}
.ws95{word-spacing:11.488932px;}
.ws1c{word-spacing:11.506968px;}
.ws1e{word-spacing:11.543040px;}
.ws81{word-spacing:11.561076px;}
.ws80{word-spacing:11.639232px;}
.ws89{word-spacing:11.675304px;}
.wsf6{word-spacing:11.879712px;}
.wsf3{word-spacing:11.897748px;}
.ws40{word-spacing:11.951856px;}
.ws88{word-spacing:11.999952px;}
.ws138{word-spacing:12.246444px;}
.ws12c{word-spacing:12.955860px;}
.ws25{word-spacing:12.997944px;}
.wsfd{word-spacing:13.124196px;}
.wsfe{word-spacing:13.136220px;}
.ws16f{word-spacing:13.322592px;}
.ws8d{word-spacing:13.358664px;}
.ws8e{word-spacing:13.496940px;}
.ws3b{word-spacing:13.689324px;}
.ws9e{word-spacing:13.713372px;}
.ws172{word-spacing:14.062068px;}
.ws9d{word-spacing:14.098140px;}
.wse{word-spacing:14.200344px;}
.ws10b{word-spacing:14.386716px;}
.ws11f{word-spacing:14.392728px;}
.ws120{word-spacing:14.398740px;}
.ws16c{word-spacing:14.416776px;}
.ws121{word-spacing:14.458860px;}
.ws10a{word-spacing:14.723388px;}
.ws16b{word-spacing:14.825592px;}
.ws20{word-spacing:15.108156px;}
.ws21{word-spacing:15.120180px;}
.ws7e{word-spacing:15.126192px;}
.ws136{word-spacing:15.283296px;}
.ws82{word-spacing:15.625188px;}
.ws11d{word-spacing:15.829596px;}
.ws91{word-spacing:15.859656px;}
.ws14f{word-spacing:16.035012px;}
.ws13a{word-spacing:16.244424px;}
.ws37{word-spacing:16.286508px;}
.ws8c{word-spacing:16.298532px;}
.ws14e{word-spacing:16.465932px;}
.ws139{word-spacing:16.502940px;}
.wsd3{word-spacing:16.545024px;}
.ws8a{word-spacing:16.551036px;}
.wsd4{word-spacing:16.563060px;}
.ws8b{word-spacing:16.623180px;}
.ws36{word-spacing:16.659252px;}
.wsa{word-spacing:16.935804px;}
.ws14c{word-spacing:17.179344px;}
.ws19{word-spacing:17.272476px;}
.ws140{word-spacing:17.278488px;}
.ws31{word-spacing:17.446824px;}
.ws15a{word-spacing:17.543232px;}
.ws6e{word-spacing:17.711352px;}
.ws6d{word-spacing:17.759448px;}
.ws1b{word-spacing:17.987904px;}
.wsf8{word-spacing:17.999928px;}
.ws12f{word-spacing:18.017964px;}
.ws13b{word-spacing:18.029988px;}
.ws12e{word-spacing:18.036000px;}
.wsf9{word-spacing:18.102132px;}
.wsf4{word-spacing:18.342612px;}
.ws175{word-spacing:18.354636px;}
.ws174{word-spacing:18.384696px;}
.ws74{word-spacing:18.504936px;}
.wseb{word-spacing:18.715356px;}
.ws2e{word-spacing:18.721368px;}
.ws13d{word-spacing:19.070064px;}
.wsf7{word-spacing:19.136196px;}
.ws76{word-spacing:19.881684px;}
.ws75{word-spacing:20.170260px;}
.ws13f{word-spacing:20.530980px;}
.wsc4{word-spacing:20.567052px;}
.ws167{word-spacing:20.933784px;}
.ws156{word-spacing:22.489236px;}
.ws155{word-spacing:22.546692px;}
.wsd8{word-spacing:23.056020px;}
.wsd0{word-spacing:25.015932px;}
.wsf5{word-spacing:25.220340px;}
.wscf{word-spacing:25.256412px;}
.ws101{word-spacing:25.929756px;}
.wscd{word-spacing:28.448784px;}
.wscc{word-spacing:28.496880px;}
.ws178{word-spacing:29.194272px;}
.wsc2{word-spacing:31.485888px;}
.ws12b{word-spacing:31.653180px;}
.ws12a{word-spacing:31.683240px;}
.ws111{word-spacing:33.504876px;}
.ws9a{word-spacing:33.619104px;}
.ws87{word-spacing:35.969796px;}
.ws11c{word-spacing:36.023904px;}
.ws10f{word-spacing:44.693208px;}
.ws110{word-spacing:44.705232px;}
.ws114{word-spacing:138.617388px;}
.wsb1{word-spacing:145.090764px;}
.wsef{word-spacing:151.937604px;}
.wsec{word-spacing:158.420556px;}
.wse2{word-spacing:165.253032px;}
.wse1{word-spacing:165.257820px;}
.ws115{word-spacing:165.262608px;}
.wsaf{word-spacing:171.735984px;}
.wsdf{word-spacing:178.578036px;}
.wsee{word-spacing:178.582824px;}
.ws102{word-spacing:179.262720px;}
.wse3{word-spacing:185.056200px;}
.wsb0{word-spacing:198.376416px;}
.wsed{word-spacing:210.978432px;}
.ws55{word-spacing:248.024569px;}
.wsae{word-spacing:301.591332px;}
.ws71{word-spacing:401.337072px;}
.ws48{word-spacing:431.394480px;}
.ws7f{word-spacing:444.539304px;}
.ws61{word-spacing:446.352013px;}
.ws57{word-spacing:485.388720px;}
.ws52{word-spacing:489.962866px;}
.ws79{word-spacing:561.196152px;}
.ws58{word-spacing:710.786340px;}
.ws4a{word-spacing:749.665440px;}
.ws5e{word-spacing:1077.219422px;}
._25{margin-left:-593.845608px;}
._31{margin-left:-511.955832px;}
._17{margin-left:-363.621537px;}
._26{margin-left:-258.326061px;}
._33{margin-left:-233.107382px;}
._2e{margin-left:-230.746527px;}
._2b{margin-left:-226.280229px;}
._32{margin-left:-220.515363px;}
._1c{margin-left:-218.673000px;}
._4a{margin-left:-211.113540px;}
._22{margin-left:-204.662700px;}
._30{margin-left:-195.781259px;}
._49{margin-left:-184.642488px;}
._29{margin-left:-178.139394px;}
._2c{margin-left:-164.568438px;}
._2f{margin-left:-161.359583px;}
._c{margin-left:-154.707300px;}
._e{margin-left:-153.626220px;}
._4d{margin-left:-151.559352px;}
._2a{margin-left:-147.080318px;}
._3d{margin-left:-145.076400px;}
._1f{margin-left:-137.784240px;}
._21{margin-left:-136.709100px;}
._2d{margin-left:-134.329404px;}
._10{margin-left:-123.299820px;}
._a{margin-left:-120.694860px;}
._14{margin-left:-117.534975px;}
._9{margin-left:-115.989300px;}
._1d{margin-left:-114.933060px;}
._7{margin-left:-112.334040px;}
._19{margin-left:-110.530980px;}
._28{margin-left:-107.535277px;}
._f{margin-left:-105.571620px;}
._d{margin-left:-103.973760px;}
._1b{margin-left:-99.070020px;}
._20{margin-left:-95.331060px;}
._16{margin-left:-92.558700px;}
._b{margin-left:-91.375020px;}
._13{margin-left:-87.854046px;}
._15{margin-left:-85.117895px;}
._1e{margin-left:-82.375920px;}
._18{margin-left:-80.576100px;}
._24{margin-left:-79.431395px;}
._8{margin-left:-77.410620px;}
._27{margin-left:-72.097765px;}
._1a{margin-left:-70.727580px;}
._12{margin-left:-67.095501px;}
._3e{margin-left:-31.231008px;}
._4e{margin-left:-17.994744px;}
._40{margin-left:-16.725384px;}
._5{margin-left:-7.867908px;}
._53{margin-left:-6.743952px;}
._3{margin-left:-4.940532px;}
._1{margin-left:-1.581156px;}
._2{width:1.190376px;}
._3b{width:2.523276px;}
._3f{width:3.929940px;}
._34{width:6.120216px;}
._11{width:7.689348px;}
._48{width:9.001440px;}
._23{width:11.651256px;}
._35{width:15.808032px;}
._51{width:22.685544px;}
._47{width:25.558344px;}
._50{width:27.717732px;}
._3c{width:29.163708px;}
._4{width:30.686292px;}
._52{width:32.041296px;}
._46{width:35.282772px;}
._4b{width:36.326646px;}
._4f{width:37.437372px;}
._42{width:38.878560px;}
._4c{width:44.279424px;}
._36{width:45.720612px;}
._3a{width:52.198776px;}
._37{width:55.799352px;}
._39{width:82.439784px;}
._38{width:85.681260px;}
._6{width:160.196904px;}
._41{width:189.707724px;}
._43{width:198.357264px;}
._45{width:220.678920px;}
._44{width:250.919928px;}
._0{width:1600.149600px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:27.000000px;}
.fsa{font-size:29.880000px;}
.fsc{font-size:34.159200px;}
.fs13{font-size:36.000000px;}
.fs10{font-size:36.609000px;}
.fs7{font-size:37.800000px;}
.fs9{font-size:38.880000px;}
.fs0{font-size:47.880000px;}
.fs14{font-size:50.602976px;}
.fsb{font-size:53.679000px;}
.fs15{font-size:54.000000px;}
.fsd{font-size:56.731654px;}
.fsf{font-size:57.529800px;}
.fs6{font-size:59.400000px;}
.fs3{font-size:60.120000px;}
.fs11{font-size:60.801633px;}
.fs12{font-size:63.539045px;}
.fs2{font-size:72.000000px;}
.fse{font-size:76.978200px;}
.fs4{font-size:83.880000px;}
.fs5{font-size:86.400000px;}
.fs1{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y89{bottom:4.140450px;}
.y2b{bottom:110.820069px;}
.y46{bottom:111.626769px;}
.y19d{bottom:124.588857px;}
.y1d4{bottom:126.118326px;}
.y177{bottom:127.200450px;}
.y2a{bottom:128.370600px;}
.y176{bottom:128.730450px;}
.y45{bottom:129.177300px;}
.y14f{bottom:129.897795px;}
.yd4{bottom:134.311062px;}
.y6d{bottom:135.210342px;}
.y19c{bottom:142.139388px;}
.y1d3{bottom:143.668857px;}
.y44{bottom:146.727831px;}
.yd3{bottom:146.910450px;}
.y14e{bottom:147.448326px;}
.yd2{bottom:148.440450px;}
.y175{bottom:149.790600px;}
.y6c{bottom:152.760873px;}
.y29{bottom:155.999901px;}
.y19b{bottom:159.689919px;}
.y1d2{bottom:161.219388px;}
.y43{bottom:164.278362px;}
.y14d{bottom:164.998857px;}
.yfc{bottom:165.089919px;}
.y131{bottom:173.100450px;}
.y130{bottom:175.350450px;}
.y19a{bottom:177.240450px;}
.yd1{bottom:177.420450px;}
.y1d1{bottom:178.769919px;}
.y63{bottom:179.850727px;}
.y66{bottom:180.120600px;}
.y28{bottom:180.570450px;}
.y14c{bottom:182.549388px;}
.yfb{bottom:182.639388px;}
.y6a{bottom:183.540600px;}
.y61{bottom:188.400450px;}
.y42{bottom:190.828857px;}
.y68{bottom:190.831217px;}
.y12f{bottom:191.640450px;}
.y12d{bottom:193.889352px;}
.y12e{bottom:193.890450px;}
.y65{bottom:194.160207px;}
.y6b{bottom:194.160990px;}
.y62{bottom:195.330409px;}
.y1d0{bottom:196.315014px;}
.yd0{bottom:199.020450px;}
.y67{bottom:199.470933px;}
.y14b{bottom:200.099919px;}
.yfa{bottom:200.189919px;}
.y69{bottom:202.800625px;}
.y64{bottom:203.880132px;}
.y199{bottom:204.870600px;}
.y41{bottom:208.379388px;}
.y12c{bottom:212.428857px;}
.y14a{bottom:217.650069px;}
.yf9{bottom:217.739478px;}
.ycf{bottom:220.620600px;}
.y1cf{bottom:223.134546px;}
.y40{bottom:225.929919px;}
.y12b{bottom:229.979388px;}
.y60{bottom:232.139424px;}
.y149{bottom:232.950600px;}
.y148{bottom:235.200600px;}
.y27{bottom:237.086733px;}
.y1ce{bottom:240.685077px;}
.yce{bottom:242.220450px;}
.yf8{bottom:242.759919px;}
.y3f{bottom:243.480450px;}
.y12a{bottom:247.529919px;}
.y5f{bottom:249.689955px;}
.y26{bottom:254.637264px;}
.y1cd{bottom:258.235608px;}
.y198{bottom:259.320450px;}
.yf7{bottom:260.309388px;}
.y147{bottom:262.200450px;}
.ycc{bottom:264.540450px;}
.y129{bottom:265.080414px;}
.y3e{bottom:271.109901px;}
.ycd{bottom:271.200450px;}
.y25{bottom:272.187795px;}
.y1cc{bottom:275.786139px;}
.y5e{bottom:276.239919px;}
.yf6{bottom:277.859919px;}
.y197{bottom:279.840450px;}
.y146{bottom:282.720450px;}
.y128{bottom:283.619919px;}
.ycb{bottom:283.980450px;}
.y24{bottom:289.738326px;}
.y1cb{bottom:293.336670px;}
.y5d{bottom:293.789388px;}
.yf5{bottom:295.410069px;}
.y3d{bottom:295.680450px;}
.yca{bottom:295.859919px;}
.y127{bottom:298.920450px;}
.y126{bottom:301.170450px;}
.y23{bottom:307.288857px;}
.y1ca{bottom:310.887201px;}
.yc9{bottom:311.160450px;}
.y5c{bottom:311.339919px;}
.yf4{bottom:312.959097px;}
.yc7{bottom:313.409352px;}
.yc8{bottom:313.410450px;}
.y22{bottom:324.839388px;}
.y125{bottom:328.169865px;}
.y1c9{bottom:328.437732px;}
.y5b{bottom:328.890837px;}
.yc6{bottom:331.948857px;}
.yf3{bottom:337.979538px;}
.y124{bottom:340.770450px;}
.y123{bottom:342.300450px;}
.y21{bottom:342.389919px;}
.y1c8{bottom:345.988263px;}
.y54{bottom:347.790585px;}
.y59{bottom:347.790600px;}
.y52{bottom:348.600450px;}
.yc5{bottom:349.499388px;}
.y56{bottom:351.570135px;}
.y3c{bottom:355.169538px;}
.yf2{bottom:355.530069px;}
.y58{bottom:357.150450px;}
.y5a{bottom:359.220375px;}
.y53{bottom:359.580405px;}
.y20{bottom:359.936883px;}
.y50{bottom:360.030450px;}
.y51{bottom:363.270450px;}
.y1c7{bottom:363.538794px;}
.yc4{bottom:367.049919px;}
.y55{bottom:369.930990px;}
.yf1{bottom:370.830600px;}
.y122{bottom:371.280450px;}
.y3b{bottom:372.720069px;}
.yf0{bottom:373.080600px;}
.y57{bottom:373.619415px;}
.y1f{bottom:377.487414px;}
.yc3{bottom:382.350450px;}
.yc2{bottom:384.600450px;}
.yc1{bottom:384.600945px;}
.y3a{bottom:390.270600px;}
.y1c6{bottom:390.358326px;}
.y121{bottom:392.880450px;}
.y1e{bottom:395.037945px;}
.yef{bottom:398.550015px;}
.yc0{bottom:400.890450px;}
.y4f{bottom:401.340600px;}
.y174{bottom:402.779919px;}
.ybf{bottom:403.140450px;}
.y1c5{bottom:407.908857px;}
.yee{bottom:411.150450px;}
.y1d{bottom:412.588476px;}
.yed{bottom:412.680600px;}
.y120{bottom:414.480450px;}
.y39{bottom:416.280450px;}
.y173{bottom:418.080450px;}
.ybe{bottom:419.430600px;}
.y171{bottom:420.330414px;}
.y172{bottom:420.330450px;}
.ybd{bottom:421.680600px;}
.ybc{bottom:421.680945px;}
.y1c4{bottom:425.459388px;}
.y4e{bottom:427.350450px;}
.y1c{bottom:430.139007px;}
.yec{bottom:433.740450px;}
.y11f{bottom:436.080450px;}
.y38{bottom:436.800450px;}
.ybb{bottom:437.970450px;}
.y170{bottom:438.869919px;}
.yba{bottom:440.220450px;}
.yb9{bottom:440.220945px;}
.y1c3{bottom:443.009919px;}
.y1b{bottom:447.689538px;}
.y4d{bottom:447.870600px;}
.y16f{bottom:454.170450px;}
.y16e{bottom:456.420450px;}
.yb8{bottom:456.510450px;}
.y11c{bottom:458.400015px;}
.yb7{bottom:458.760450px;}
.yb6{bottom:458.760945px;}
.y1c2{bottom:460.560450px;}
.y1a{bottom:465.240069px;}
.y11b{bottom:472.530600px;}
.y11d{bottom:473.160657px;}
.y16d{bottom:474.959388px;}
.yb5{bottom:477.300450px;}
.yb4{bottom:477.301095px;}
.y11e{bottom:479.190600px;}
.y19{bottom:482.790600px;}
.y1c1{bottom:488.460600px;}
.y11a{bottom:491.970450px;}
.y16c{bottom:492.509919px;}
.yb3{bottom:493.590600px;}
.yb2{bottom:495.840600px;}
.y119{bottom:503.849388px;}
.y16b{bottom:507.810450px;}
.y16a{bottom:510.060450px;}
.y18{bottom:510.420450px;}
.yb1{bottom:514.375176px;}
.y118{bottom:521.399919px;}
.y196{bottom:526.619388px;}
.yb0{bottom:531.925707px;}
.y117{bottom:536.700450px;}
.y169{bottom:537.059865px;}
.y115{bottom:538.950414px;}
.y116{bottom:538.950450px;}
.y195{bottom:544.169919px;}
.y1c0{bottom:547.409865px;}
.yaf{bottom:549.476238px;}
.y168{bottom:549.660450px;}
.y167{bottom:551.190450px;}
.y114{bottom:557.489919px;}
.y145{bottom:559.019919px;}
.y1bf{bottom:561.540450px;}
.y194{bottom:561.719388px;}
.y17{bottom:566.940450px;}
.yae{bottom:567.026769px;}
.y113{bottom:572.790450px;}
.y112{bottom:575.040450px;}
.y111{bottom:575.040945px;}
.y144{bottom:576.570450px;}
.y193{bottom:579.269919px;}
.y166{bottom:580.170450px;}
.yad{bottom:584.577300px;}
.y1be{bottom:584.667642px;}
.y110{bottom:591.330450px;}
.y10f{bottom:593.580450px;}
.y16{bottom:594.570450px;}
.y192{bottom:596.820450px;}
.y1bd{bottom:598.798227px;}
.y165{bottom:601.770450px;}
.yac{bottom:602.127831px;}
.y143{bottom:602.579865px;}
.y142{bottom:616.710450px;}
.yab{bottom:619.678362px;}
.y10e{bottom:620.580450px;}
.y1bc{bottom:621.927858px;}
.y191{bottom:622.831062px;}
.y164{bottom:623.370450px;}
.y4c{bottom:631.380450px;}
.y1bb{bottom:636.058443px;}
.y190{bottom:636.960450px;}
.yaa{bottom:637.228893px;}
.y10d{bottom:641.100450px;}
.y163{bottom:644.970450px;}
.y141{bottom:645.150450px;}
.y1ba{bottom:650.189028px;}
.ya9{bottom:654.779424px;}
.y15{bottom:660.083097px;}
.y18f{bottom:665.400450px;}
.y162{bottom:666.570450px;}
.y140{bottom:666.750450px;}
.ya8{bottom:672.329955px;}
.y1b9{bottom:673.318659px;}
.y14{bottom:677.633628px;}
.yeb{bottom:685.919919px;}
.y18e{bottom:687.000450px;}
.y1b8{bottom:687.449244px;}
.y161{bottom:688.170450px;}
.y13f{bottom:688.350450px;}
.y13{bottom:695.184159px;}
.y37{bottom:695.454003px;}
.ya7{bottom:698.880450px;}
.yea{bottom:701.220450px;}
.y1b7{bottom:701.579829px;}
.ye9{bottom:703.470450px;}
.ye8{bottom:703.470945px;}
.y18d{bottom:708.600450px;}
.y160{bottom:709.770450px;}
.y13e{bottom:709.950450px;}
.y12{bottom:712.734690px;}
.y36{bottom:713.004534px;}
.ya6{bottom:714.180450px;}
.y1b6{bottom:715.710414px;}
.ya5{bottom:716.430450px;}
.ye7{bottom:719.760450px;}
.ye5{bottom:722.010414px;}
.ye6{bottom:722.010450px;}
.y18c{bottom:730.200450px;}
.y11{bottom:730.285221px;}
.y35{bottom:730.555065px;}
.y15f{bottom:731.370450px;}
.y13d{bottom:731.550450px;}
.ya4{bottom:732.720450px;}
.ya3{bottom:734.970450px;}
.ya2{bottom:734.970945px;}
.y1b5{bottom:738.840045px;}
.ye4{bottom:740.549919px;}
.y10{bottom:747.835752px;}
.y34{bottom:748.105596px;}
.y18b{bottom:751.800450px;}
.y1b4{bottom:752.970630px;}
.ya1{bottom:753.509919px;}
.y15c{bottom:753.691062px;}
.y13b{bottom:753.870450px;}
.ye3{bottom:755.850450px;}
.ye2{bottom:758.100450px;}
.ye1{bottom:758.100945px;}
.y13c{bottom:759.900450px;}
.yf{bottom:765.386283px;}
.y1b3{bottom:767.101215px;}
.y15b{bottom:767.820450px;}
.y15d{bottom:768.450657px;}
.ya0{bottom:768.810450px;}
.y9f{bottom:771.060450px;}
.y9e{bottom:771.060945px;}
.y13a{bottom:772.680450px;}
.y18a{bottom:773.400450px;}
.y15e{bottom:774.480450px;}
.y33{bottom:774.656091px;}
.ye0{bottom:776.640450px;}
.ye{bottom:782.936814px;}
.y139{bottom:784.558857px;}
.y15a{bottom:787.260450px;}
.y9d{bottom:787.350450px;}
.y9b{bottom:789.600396px;}
.y9c{bottom:789.600450px;}
.y1b2{bottom:790.230846px;}
.y32{bottom:792.206622px;}
.y189{bottom:795.000450px;}
.y159{bottom:799.139919px;}
.ydf{bottom:801.120450px;}
.y138{bottom:802.109388px;}
.yde{bottom:802.650450px;}
.y1b1{bottom:804.361431px;}
.yd{bottom:809.487309px;}
.y31{bottom:809.757153px;}
.y158{bottom:814.440450px;}
.y188{bottom:816.600450px;}
.y157{bottom:816.690450px;}
.y156{bottom:816.690945px;}
.y8d{bottom:817.590132px;}
.y92{bottom:818.310450px;}
.y137{bottom:819.659919px;}
.y98{bottom:821.910450px;}
.y8f{bottom:821.910620px;}
.y8a{bottom:822.000450px;}
.ydd{bottom:823.710450px;}
.y8b{bottom:826.770450px;}
.yc{bottom:827.037840px;}
.y30{bottom:827.307684px;}
.y1b0{bottom:827.491062px;}
.y96{bottom:829.739780px;}
.y9a{bottom:833.340183px;}
.y99{bottom:833.341621px;}
.y91{bottom:833.341791px;}
.y8c{bottom:834.959817px;}
.y155{bottom:835.229388px;}
.y136{bottom:837.209919px;}
.y187{bottom:838.200450px;}
.y88{bottom:838.560000px;}
.y94{bottom:839.010094px;}
.y95{bottom:839.820068px;}
.y1af{bottom:841.620450px;}
.y4b{bottom:841.890450px;}
.y97{bottom:842.611110px;}
.y90{bottom:842.611280px;}
.y8e{bottom:844.140135px;}
.yb{bottom:844.588371px;}
.y2f{bottom:844.858215px;}
.y93{bottom:849.090382px;}
.y154{bottom:852.779919px;}
.y135{bottom:854.760450px;}
.y186{bottom:859.800450px;}
.ya{bottom:862.138902px;}
.y2e{bottom:862.408746px;}
.y4a{bottom:862.410450px;}
.y1ae{bottom:866.370450px;}
.y153{bottom:868.080450px;}
.y152{bottom:870.330450px;}
.y87{bottom:873.299424px;}
.y134{bottom:879.240450px;}
.y9{bottom:879.689433px;}
.y2d{bottom:879.959277px;}
.y133{bottom:880.770450px;}
.y184{bottom:882.120351px;}
.y86{bottom:890.849955px;}
.y8{bottom:897.239964px;}
.y151{bottom:897.330450px;}
.y2c{bottom:897.509808px;}
.y132{bottom:901.830450px;}
.y183{bottom:902.190450px;}
.y10c{bottom:903.269865px;}
.y185{bottom:908.220450px;}
.y7{bottom:915.059532px;}
.y10b{bottom:917.400450px;}
.y85{bottom:917.400945px;}
.y150{bottom:917.850450px;}
.y182{bottom:921.000450px;}
.y1ad{bottom:925.858326px;}
.y181{bottom:932.879919px;}
.y84{bottom:935.939919px;}
.y1ac{bottom:943.408857px;}
.y10a{bottom:945.840450px;}
.y180{bottom:950.429919px;}
.y6{bottom:950.609991px;}
.y83{bottom:953.489388px;}
.y1ab{bottom:960.959388px;}
.y109{bottom:967.440450px;}
.y17f{bottom:967.978857px;}
.y82{bottom:971.039919px;}
.y1aa{bottom:978.509919px;}
.y17e{bottom:985.529388px;}
.y5{bottom:986.160450px;}
.y81{bottom:988.590837px;}
.y108{bottom:989.040600px;}
.y1a9{bottom:996.059919px;}
.y17d{bottom:1003.079919px;}
.y7e{bottom:1007.490450px;}
.y78{bottom:1007.490585px;}
.y76{bottom:1008.300450px;}
.y107{bottom:1010.640450px;}
.y7a{bottom:1011.270135px;}
.y1a8{bottom:1011.360450px;}
.y1a6{bottom:1013.609919px;}
.y1a7{bottom:1013.610450px;}
.y7c{bottom:1016.850450px;}
.y77{bottom:1019.280405px;}
.y80{bottom:1019.281215px;}
.y73{bottom:1019.730450px;}
.y17c{bottom:1020.629955px;}
.y4{bottom:1022.250450px;}
.y75{bottom:1022.969910px;}
.y7d{bottom:1022.970450px;}
.y79{bottom:1028.730405px;}
.y7f{bottom:1029.630855px;}
.y106{bottom:1032.240450px;}
.y7b{bottom:1032.419505px;}
.y74{bottom:1032.420450px;}
.y1a5{bottom:1041.149388px;}
.y17b{bottom:1044.930450px;}
.y17a{bottom:1047.180450px;}
.y104{bottom:1054.560450px;}
.y1a4{bottom:1058.699919px;}
.y72{bottom:1059.687606px;}
.y105{bottom:1060.590450px;}
.y179{bottom:1065.719919px;}
.y3{bottom:1072.558956px;}
.y103{bottom:1073.370450px;}
.y1a3{bottom:1074.000450px;}
.y1a1{bottom:1076.247876px;}
.y1a2{bottom:1076.250450px;}
.y71{bottom:1077.238137px;}
.ydc{bottom:1081.020450px;}
.y178{bottom:1083.270414px;}
.ydb{bottom:1083.270450px;}
.y102{bottom:1085.249388px;}
.y1a0{bottom:1094.787381px;}
.yda{bottom:1101.809919px;}
.y101{bottom:1102.799919px;}
.y70{bottom:1103.788632px;}
.y49{bottom:1103.789388px;}
.y2{bottom:1107.030450px;}
.yd9{bottom:1117.110450px;}
.y100{bottom:1118.100450px;}
.yd8{bottom:1119.360450px;}
.yd7{bottom:1119.360945px;}
.yff{bottom:1120.350450px;}
.yfe{bottom:1120.350945px;}
.y19f{bottom:1121.337876px;}
.y6f{bottom:1121.339163px;}
.y48{bottom:1121.339919px;}
.yd6{bottom:1135.650450px;}
.yd5{bottom:1137.900450px;}
.y19e{bottom:1138.888407px;}
.yfd{bottom:1138.889631px;}
.y6e{bottom:1138.889694px;}
.y47{bottom:1138.890450px;}
.y1{bottom:1189.740450px;}
.he{height:18.747070px;}
.h2b{height:21.753457px;}
.h1c{height:22.230000px;}
.h15{height:23.717960px;}
.h1f{height:25.418944px;}
.hc{height:26.245898px;}
.h29{height:31.587891px;}
.h10{height:33.167285px;}
.h28{height:34.114922px;}
.h2c{height:34.857949px;}
.h1{height:34.881328px;}
.h16{height:37.271259px;}
.h20{height:39.945008px;}
.hd{height:41.243555px;}
.h5{height:41.743477px;}
.h9{height:42.011895px;}
.h38{height:44.349785px;}
.h3d{height:45.871009px;}
.h3e{height:45.872629px;}
.h36{height:45.872857px;}
.h3a{height:45.873229px;}
.h2d{height:45.873457px;}
.h2e{height:45.874057px;}
.h39{height:45.875797px;}
.h2f{height:46.871995px;}
.h18{height:47.100177px;}
.h30{height:48.131895px;}
.h31{height:48.132495px;}
.h2a{height:48.393457px;}
.h14{height:49.721222px;}
.h3{height:49.992188px;}
.h22{height:50.479029px;}
.hf{height:52.120020px;}
.h17{height:52.548803px;}
.h4{height:52.751777px;}
.h33{height:52.753301px;}
.h3f{height:52.753757px;}
.h13{height:52.753901px;}
.h35{height:52.755053px;}
.h34{height:52.755665px;}
.h12{height:52.756025px;}
.h32{height:52.757789px;}
.h40{height:52.758149px;}
.h41{height:52.763009px;}
.h1e{height:53.288101px;}
.h42{height:53.995781px;}
.h43{height:54.017525px;}
.hb{height:55.020410px;}
.h26{height:55.685344px;}
.h1b{height:55.687324px;}
.h21{height:56.318700px;}
.h6{height:56.848359px;}
.h24{height:58.854281px;}
.h7{height:61.066934px;}
.h3b{height:61.115066px;}
.h3c{height:61.119170px;}
.h25{height:61.751777px;}
.h23{height:64.272845px;}
.h27{height:64.687324px;}
.h19{height:69.669617px;}
.h37{height:70.114922px;}
.h1d{height:71.302561px;}
.h8{height:73.614053px;}
.h1a{height:76.508717px;}
.h11{height:77.952077px;}
.ha{height:80.029688px;}
.h2{height:81.246797px;}
.h0{height:1263.000000px;}
.w1{width:4.590000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xd{left:63.810000px;}
.x1{left:85.140000px;}
.x89{left:88.650000px;}
.x9e{left:93.420000px;}
.x6e{left:94.590000px;}
.x13{left:95.670000px;}
.x1d{left:97.650495px;}
.x8b{left:99.270000px;}
.x1f{left:103.140090px;}
.x24{left:104.220991px;}
.x76{left:106.470000px;}
.x9f{left:112.139478px;}
.x8{left:117.000000px;}
.x15{left:118.080000px;}
.xa2{left:120.600000px;}
.xa1{left:123.930000px;}
.x8c{left:127.619577px;}
.x29{left:130.319747px;}
.x88{left:140.760000px;}
.x8e{left:144.360000px;}
.x26{left:146.070797px;}
.x78{left:148.949757px;}
.xf{left:150.030000px;}
.x27{left:151.830554px;}
.x23{left:153.450376px;}
.x12{left:157.500000px;}
.x19{left:160.020180px;}
.x70{left:161.820000px;}
.xa4{left:162.990000px;}
.x1e{left:168.570000px;}
.x5{left:175.770000px;}
.x1a{left:176.939145px;}
.x2{left:185.220000px;}
.x18{left:186.390405px;}
.x79{left:190.260000px;}
.x21{left:191.790538px;}
.x14{left:196.920000px;}
.x2a{left:199.530000px;}
.x16{left:203.940000px;}
.x28{left:206.460000px;}
.x9b{left:208.260000px;}
.x77{left:212.670000px;}
.x8f{left:214.110000px;}
.x25{left:217.259887px;}
.x22{left:220.860141px;}
.x90{left:222.390000px;}
.x69{left:224.550000px;}
.x6a{left:234.000000px;}
.x1c{left:236.250000px;}
.x4{left:244.080000px;}
.x72{left:246.600000px;}
.x20{left:250.200000px;}
.x6{left:264.510126px;}
.x71{left:265.680000px;}
.x1b{left:273.600000px;}
.x8a{left:277.560000px;}
.x17{left:289.170495px;}
.xa0{left:298.890000px;}
.x3{left:304.830270px;}
.x73{left:309.870000px;}
.x6b{left:314.460000px;}
.x74{left:318.150000px;}
.x9c{left:364.500000px;}
.x9d{left:372.780000px;}
.x6c{left:387.630000px;}
.x10{left:392.490000px;}
.x6d{left:397.080000px;}
.x8d{left:401.040000px;}
.xa3{left:406.980000px;}
.x87{left:408.510000px;}
.x75{left:411.480000px;}
.x11{left:413.550000px;}
.x6f{left:415.080000px;}
.xe{left:420.300000px;}
.x2b{left:448.558695px;}
.x7{left:457.199235px;}
.x9{left:469.889370px;}
.x95{left:475.379901px;}
.x67{left:479.070000px;}
.x2c{left:480.419289px;}
.x37{left:482.398335px;}
.x65{left:484.470000px;}
.x55{left:485.910000px;}
.x39{left:486.989415px;}
.x47{left:489.239743px;}
.x7c{left:491.220000px;}
.x56{left:494.190000px;}
.xa8{left:495.359766px;}
.x82{left:496.709784px;}
.x5d{left:498.060000px;}
.xa{left:501.749964px;}
.x5e{left:506.340000px;}
.x68{left:512.370153px;}
.x3a{left:514.440000px;}
.x9a{left:526.590000px;}
.x3e{left:533.880000px;}
.x2e{left:549.540000px;}
.x7e{left:550.890000px;}
.x38{left:552.150000px;}
.x96{left:556.110585px;}
.x36{left:557.549730px;}
.x33{left:559.439415px;}
.xc{left:561.960000px;}
.x4a{left:563.669002px;}
.x32{left:566.461170px;}
.x31{left:567.720855px;}
.x61{left:571.140000px;}
.xa9{left:574.290000px;}
.x83{left:577.440585px;}
.x62{left:580.590000px;}
.x2d{left:582.210000px;}
.x97{left:583.920000px;}
.x3b{left:587.610000px;}
.x2f{left:589.230000px;}
.x3c{left:591.210000px;}
.x92{left:593.640000px;}
.x84{left:598.860000px;}
.x93{left:601.920000px;}
.x85{left:605.430000px;}
.x48{left:607.499200px;}
.x7a{left:611.370000px;}
.x45{left:615.509675px;}
.x35{left:617.220000px;}
.x7b{left:620.820000px;}
.x42{left:622.889520px;}
.x98{left:625.500000px;}
.xa7{left:628.920000px;}
.x81{left:630.270000px;}
.x49{left:631.438788px;}
.x99{left:633.780000px;}
.x46{left:637.290200px;}
.x86{left:640.620000px;}
.x3d{left:644.940000px;}
.x4c{left:647.190000px;}
.x34{left:650.790000px;}
.x66{left:662.310000px;}
.x30{left:664.290405px;}
.x40{left:676.169306px;}
.xa5{left:680.310000px;}
.x4b{left:684.450000px;}
.x4d{left:686.070000px;}
.xa6{left:688.590000px;}
.x4e{left:694.350000px;}
.x57{left:699.120000px;}
.x58{left:708.570000px;}
.x63{left:710.460000px;}
.x94{left:718.470000px;}
.x64{left:719.910000px;}
.x41{left:725.849165px;}
.x44{left:734.130157px;}
.x59{left:737.460000px;}
.x4f{left:742.050000px;}
.x51{left:743.670000px;}
.x5a{left:745.740000px;}
.x50{left:750.330000px;}
.x52{left:753.120000px;}
.x7f{left:770.490000px;}
.x5f{left:772.199850px;}
.x91{left:775.170000px;}
.x43{left:777.240000px;}
.x80{left:778.769850px;}
.x60{left:781.650000px;}
.x3f{left:784.170000px;}
.x53{left:786.600000px;}
.x5b{left:793.080000px;}
.x54{left:794.880000px;}
.x7d{left:798.030000px;}
.x5c{left:801.360000px;}
.xb{left:806.130000px;}
@media print{
.v9{vertical-align:-27.837617pt;}
.v5{vertical-align:-25.922194pt;}
.v1{vertical-align:-23.681920pt;}
.ve{vertical-align:-21.440000pt;}
.v7{vertical-align:-20.479840pt;}
.v3{vertical-align:-8.001376pt;}
.v4{vertical-align:-5.436224pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:2.238656pt;}
.vf{vertical-align:5.440000pt;}
.vb{vertical-align:8.000000pt;}
.va{vertical-align:10.240949pt;}
.v6{vertical-align:15.038079pt;}
.v8{vertical-align:21.117280pt;}
.v2{vertical-align:22.400267pt;}
.vd{vertical-align:23.680000pt;}
.v10{vertical-align:32.000000pt;}
.ls7a{letter-spacing:-0.609216pt;}
.ls58{letter-spacing:-0.128256pt;}
.ls82{letter-spacing:-0.101536pt;}
.ls77{letter-spacing:-0.096192pt;}
.ls52{letter-spacing:-0.085504pt;}
.lsa4{letter-spacing:-0.080864pt;}
.ls81{letter-spacing:-0.080160pt;}
.lsa9{letter-spacing:-0.076608pt;}
.ls59{letter-spacing:-0.074816pt;}
.lsa5{letter-spacing:-0.072352pt;}
.ls26{letter-spacing:-0.069472pt;}
.ls21{letter-spacing:-0.064128pt;}
.lsa3{letter-spacing:-0.059584pt;}
.ls56{letter-spacing:-0.058784pt;}
.ls74{letter-spacing:-0.055328pt;}
.ls24{letter-spacing:-0.053440pt;}
.lsa2{letter-spacing:-0.052192pt;}
.lsa7{letter-spacing:-0.051072pt;}
.ls4f{letter-spacing:-0.048096pt;}
.ls5b{letter-spacing:-0.042752pt;}
.ls25{letter-spacing:-0.037408pt;}
.lsa6{letter-spacing:-0.034048pt;}
.ls5a{letter-spacing:-0.032064pt;}
.ls4b{letter-spacing:-0.026720pt;}
.lsa8{letter-spacing:-0.025536pt;}
.ls80{letter-spacing:-0.021376pt;}
.ls83{letter-spacing:-0.018592pt;}
.lsaa{letter-spacing:-0.017024pt;}
.lsab{letter-spacing:-0.016032pt;}
.ls1e{letter-spacing:-0.012800pt;}
.ls9f{letter-spacing:-0.012768pt;}
.ls20{letter-spacing:-0.010688pt;}
.ls51{letter-spacing:-0.010368pt;}
.ls85{letter-spacing:-0.006912pt;}
.ls4e{letter-spacing:-0.005344pt;}
.ls79{letter-spacing:-0.004256pt;}
.ls57{letter-spacing:-0.003456pt;}
.ls1f{letter-spacing:0.000000pt;}
.ls6c{letter-spacing:0.000533pt;}
.ls4d{letter-spacing:0.003456pt;}
.ls36{letter-spacing:0.003840pt;}
.ls46{letter-spacing:0.004256pt;}
.ls68{letter-spacing:0.004373pt;}
.lsa{letter-spacing:0.005344pt;}
.ls69{letter-spacing:0.008320pt;}
.ls0{letter-spacing:0.008512pt;}
.ls55{letter-spacing:0.010368pt;}
.ls1d{letter-spacing:0.010656pt;}
.ls27{letter-spacing:0.010688pt;}
.ls4a{letter-spacing:0.012768pt;}
.ls15{letter-spacing:0.014912pt;}
.ls31{letter-spacing:0.015360pt;}
.ls19{letter-spacing:0.016032pt;}
.ls84{letter-spacing:0.017024pt;}
.ls75{letter-spacing:0.018592pt;}
.ls29{letter-spacing:0.021280pt;}
.ls6{letter-spacing:0.021376pt;}
.ls6a{letter-spacing:0.025536pt;}
.ls13{letter-spacing:0.026720pt;}
.ls7c{letter-spacing:0.029792pt;}
.ls11{letter-spacing:0.032064pt;}
.ls18{letter-spacing:0.037280pt;}
.ls22{letter-spacing:0.037408pt;}
.ls95{letter-spacing:0.038304pt;}
.ls99{letter-spacing:0.042560pt;}
.ls1c{letter-spacing:0.042624pt;}
.ls1b{letter-spacing:0.042752pt;}
.lsb{letter-spacing:0.044736pt;}
.ls93{letter-spacing:0.046816pt;}
.ls12{letter-spacing:0.048096pt;}
.ls50{letter-spacing:0.050464pt;}
.ls92{letter-spacing:0.051072pt;}
.ls7{letter-spacing:0.053440pt;}
.ls96{letter-spacing:0.055328pt;}
.lsf{letter-spacing:0.058784pt;}
.ls2a{letter-spacing:0.059584pt;}
.ls9e{letter-spacing:0.063744pt;}
.ls9b{letter-spacing:0.063840pt;}
.ls4{letter-spacing:0.064128pt;}
.ls14{letter-spacing:0.067104pt;}
.ls78{letter-spacing:0.068096pt;}
.ls1{letter-spacing:0.069472pt;}
.lsa1{letter-spacing:0.074560pt;}
.ls1a{letter-spacing:0.074816pt;}
.ls49{letter-spacing:0.076608pt;}
.ls6e{letter-spacing:0.079680pt;}
.lse{letter-spacing:0.080160pt;}
.ls98{letter-spacing:0.080864pt;}
.ls17{letter-spacing:0.085120pt;}
.ls9{letter-spacing:0.085504pt;}
.ls48{letter-spacing:0.089376pt;}
.ls2{letter-spacing:0.090848pt;}
.ls6b{letter-spacing:0.091840pt;}
.ls7b{letter-spacing:0.092480pt;}
.ls47{letter-spacing:0.093632pt;}
.ls5c{letter-spacing:0.095616pt;}
.ls7f{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.096192pt;}
.ls5{letter-spacing:0.101536pt;}
.ls3{letter-spacing:0.106880pt;}
.lsd{letter-spacing:0.111840pt;}
.ls2d{letter-spacing:0.112224pt;}
.ls5e{letter-spacing:0.114208pt;}
.ls63{letter-spacing:0.116672pt;}
.ls76{letter-spacing:0.116864pt;}
.ls33{letter-spacing:0.117568pt;}
.ls66{letter-spacing:0.119008pt;}
.ls62{letter-spacing:0.120544pt;}
.ls60{letter-spacing:0.121632pt;}
.ls35{letter-spacing:0.121664pt;}
.ls8e{letter-spacing:0.122048pt;}
.ls5f{letter-spacing:0.122464pt;}
.ls65{letter-spacing:0.122816pt;}
.ls30{letter-spacing:0.122912pt;}
.ls9a{letter-spacing:0.123424pt;}
.ls3f{letter-spacing:0.124448pt;}
.ls64{letter-spacing:0.124640pt;}
.ls61{letter-spacing:0.125152pt;}
.ls67{letter-spacing:0.125867pt;}
.lsa0{letter-spacing:0.128256pt;}
.ls4c{letter-spacing:0.133600pt;}
.ls6f{letter-spacing:0.141280pt;}
.ls45{letter-spacing:0.145152pt;}
.ls89{letter-spacing:0.146208pt;}
.ls97{letter-spacing:0.148960pt;}
.ls94{letter-spacing:0.153216pt;}
.ls42{letter-spacing:0.154976pt;}
.ls72{letter-spacing:0.155328pt;}
.ls88{letter-spacing:0.156416pt;}
.ls23{letter-spacing:0.156576pt;}
.ls87{letter-spacing:0.156640pt;}
.ls8f{letter-spacing:0.157664pt;}
.ls86{letter-spacing:0.158144pt;}
.ls34{letter-spacing:0.159200pt;}
.ls8d{letter-spacing:0.159648pt;}
.ls7d{letter-spacing:0.160224pt;}
.ls73{letter-spacing:0.160320pt;}
.ls8c{letter-spacing:0.160768pt;}
.ls8a{letter-spacing:0.160800pt;}
.ls2e{letter-spacing:0.161600pt;}
.ls28{letter-spacing:0.161728pt;}
.ls8b{letter-spacing:0.162016pt;}
.ls2b{letter-spacing:0.162784pt;}
.ls90{letter-spacing:0.195776pt;}
.ls32{letter-spacing:0.320000pt;}
.ls6d{letter-spacing:0.357120pt;}
.ls71{letter-spacing:0.475616pt;}
.ls16{letter-spacing:1.042080pt;}
.ls41{letter-spacing:1.599232pt;}
.ls40{letter-spacing:4.799232pt;}
.ls3b{letter-spacing:5.840992pt;}
.ls70{letter-spacing:6.801312pt;}
.ls43{letter-spacing:7.039232pt;}
.ls9c{letter-spacing:8.960000pt;}
.ls2f{letter-spacing:10.238848pt;}
.ls39{letter-spacing:11.839232pt;}
.ls3a{letter-spacing:11.840000pt;}
.ls7e{letter-spacing:13.216000pt;}
.ls10{letter-spacing:13.360000pt;}
.ls3e{letter-spacing:13.760619pt;}
.ls3d{letter-spacing:14.078848pt;}
.ls3c{letter-spacing:14.080000pt;}
.ls38{letter-spacing:14.398848pt;}
.ls37{letter-spacing:14.401152pt;}
.ls9d{letter-spacing:16.320000pt;}
.ls2c{letter-spacing:17.600000pt;}
.ls91{letter-spacing:28.808864pt;}
.lsc{letter-spacing:36.549312pt;}
.ls44{letter-spacing:189.766528pt;}
.ls5d{letter-spacing:270.413472pt;}
.ls54{letter-spacing:272.167545pt;}
.ls53{letter-spacing:330.800985pt;}
.ws5b{word-spacing:-292.208478pt;}
.ws60{word-spacing:-29.617151pt;}
.ws5a{word-spacing:-29.285120pt;}
.ws56{word-spacing:-28.934400pt;}
.ws5c{word-spacing:-28.023405pt;}
.ws54{word-spacing:-27.634619pt;}
.ws66{word-spacing:-23.322880pt;}
.ws1{word-spacing:-18.796576pt;}
.ws65{word-spacing:-13.482912pt;}
.ws0{word-spacing:-13.424128pt;}
.ws4c{word-spacing:-13.360000pt;}
.ws4d{word-spacing:-13.354656pt;}
.ws59{word-spacing:-13.274496pt;}
.ws64{word-spacing:-13.231744pt;}
.ws49{word-spacing:-13.200000pt;}
.ws5f{word-spacing:-12.784400pt;}
.ws53{word-spacing:-11.928667pt;}
.wsba{word-spacing:-11.899776pt;}
.ws123{word-spacing:-11.831680pt;}
.ws125{word-spacing:-10.835776pt;}
.ws127{word-spacing:-10.703840pt;}
.wsb8{word-spacing:-10.640000pt;}
.ws126{word-spacing:-10.567648pt;}
.ws62{word-spacing:-8.650368pt;}
.ws4b{word-spacing:-8.643456pt;}
.ws4e{word-spacing:-8.640000pt;}
.ws63{word-spacing:-8.636544pt;}
.ws50{word-spacing:-8.629632pt;}
.ws47{word-spacing:-8.400000pt;}
.ws5d{word-spacing:-8.135333pt;}
.ws51{word-spacing:-7.590933pt;}
.wsb7{word-spacing:-7.500544pt;}
.ws69{word-spacing:-7.497888pt;}
.ws67{word-spacing:-7.479296pt;}
.wsb9{word-spacing:-7.463360pt;}
.ws124{word-spacing:-7.447424pt;}
.wsb6{word-spacing:-7.402272pt;}
.ws68{word-spacing:-7.383680pt;}
.wsfb{word-spacing:-7.365088pt;}
.ws6a{word-spacing:-6.735616pt;}
.ws4f{word-spacing:-6.690464pt;}
.wsbb{word-spacing:-6.658592pt;}
.wsfa{word-spacing:-6.640000pt;}
.wsfc{word-spacing:-6.621408pt;}
.ws39{word-spacing:-0.242592pt;}
.ws15c{word-spacing:-0.229824pt;}
.ws160{word-spacing:-0.204288pt;}
.ws10e{word-spacing:-0.174496pt;}
.ws3a{word-spacing:-0.165984pt;}
.wsb5{word-spacing:-0.157472pt;}
.ws2a{word-spacing:-0.149120pt;}
.ws15b{word-spacing:-0.148960pt;}
.ws70{word-spacing:-0.140448pt;}
.ws157{word-spacing:-0.136192pt;}
.ws14d{word-spacing:-0.131936pt;}
.ws164{word-spacing:-0.126752pt;}
.ws15f{word-spacing:-0.123424pt;}
.ws3e{word-spacing:-0.119296pt;}
.ws4{word-spacing:-0.117216pt;}
.wse4{word-spacing:-0.106400pt;}
.ws5{word-spacing:-0.095904pt;}
.wsde{word-spacing:-0.068096pt;}
.wsd6{word-spacing:-0.032064pt;}
.ws9{word-spacing:-0.026720pt;}
.wsc3{word-spacing:-0.025536pt;}
.wsff{word-spacing:-0.021376pt;}
.ws11b{word-spacing:-0.016032pt;}
.ws8{word-spacing:-0.010688pt;}
.ws42{word-spacing:-0.005344pt;}
.ws6b{word-spacing:-0.004256pt;}
.ws3{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.004256pt;}
.wsce{word-spacing:0.005344pt;}
.ws2{word-spacing:0.008512pt;}
.ws7{word-spacing:0.010688pt;}
.ws6{word-spacing:0.012800pt;}
.ws92{word-spacing:0.016032pt;}
.wse0{word-spacing:0.017024pt;}
.ws86{word-spacing:0.021376pt;}
.ws10{word-spacing:0.026720pt;}
.wsd5{word-spacing:0.032064pt;}
.ws135{word-spacing:0.037408pt;}
.ws149{word-spacing:0.042752pt;}
.wsad{word-spacing:0.053440pt;}
.ws3d{word-spacing:0.058784pt;}
.ws122{word-spacing:0.064128pt;}
.ws38{word-spacing:0.069472pt;}
.ws144{word-spacing:0.090848pt;}
.ws107{word-spacing:0.101536pt;}
.ws78{word-spacing:0.106880pt;}
.ws29{word-spacing:0.117568pt;}
.ws9f{word-spacing:0.144288pt;}
.wsbf{word-spacing:0.240480pt;}
.ws85{word-spacing:0.283232pt;}
.ws159{word-spacing:0.289408pt;}
.ws6f{word-spacing:0.309952pt;}
.wsdd{word-spacing:0.320640pt;}
.wsbe{word-spacing:0.363392pt;}
.ws16{word-spacing:0.395456pt;}
.ws158{word-spacing:0.595840pt;}
.ws129{word-spacing:0.635936pt;}
.ws44{word-spacing:0.646624pt;}
.ws128{word-spacing:0.689376pt;}
.ws14b{word-spacing:0.787360pt;}
.ws168{word-spacing:0.967264pt;}
.ws35{word-spacing:1.020704pt;}
.ws14a{word-spacing:1.259776pt;}
.ws34{word-spacing:1.261184pt;}
.ws2c{word-spacing:1.277216pt;}
.wsa1{word-spacing:1.314624pt;}
.wsa2{word-spacing:1.336000pt;}
.ws152{word-spacing:1.366176pt;}
.ws151{word-spacing:1.468320pt;}
.ws16d{word-spacing:1.587168pt;}
.ws171{word-spacing:1.619232pt;}
.ws150{word-spacing:1.791776pt;}
.ws137{word-spacing:1.907808pt;}
.wsa4{word-spacing:1.923840pt;}
.ws134{word-spacing:1.939872pt;}
.ws13e{word-spacing:2.062784pt;}
.ws83{word-spacing:2.196384pt;}
.ws11a{word-spacing:2.207072pt;}
.wse9{word-spacing:2.233792pt;}
.ws119{word-spacing:2.239136pt;}
.ws84{word-spacing:2.249824pt;}
.wsea{word-spacing:2.281888pt;}
.wsac{word-spacing:2.527712pt;}
.ws100{word-spacing:2.549088pt;}
.ws93{word-spacing:2.554432pt;}
.ws7d{word-spacing:2.559776pt;}
.ws118{word-spacing:2.581152pt;}
.wsab{word-spacing:2.602528pt;}
.ws131{word-spacing:2.666656pt;}
.ws46{word-spacing:2.693376pt;}
.ws2f{word-spacing:2.709408pt;}
.ws109{word-spacing:2.720096pt;}
.ws11{word-spacing:2.864384pt;}
.ws177{word-spacing:2.917824pt;}
.ws10d{word-spacing:2.923168pt;}
.ws108{word-spacing:2.939200pt;}
.wsd{word-spacing:2.971264pt;}
.ws145{word-spacing:3.168992pt;}
.ws1f{word-spacing:3.190368pt;}
.ws13c{word-spacing:3.201056pt;}
.wsf{word-spacing:3.211744pt;}
.wsc{word-spacing:3.259840pt;}
.ws176{word-spacing:3.265184pt;}
.wsc6{word-spacing:3.275872pt;}
.ws146{word-spacing:3.361376pt;}
.wsdc{word-spacing:3.441536pt;}
.wsc5{word-spacing:3.489632pt;}
.ws77{word-spacing:3.511008pt;}
.wsd9{word-spacing:3.516352pt;}
.ws1d{word-spacing:3.521696pt;}
.ws17{word-spacing:3.532384pt;}
.ws94{word-spacing:3.826304pt;}
.wsd1{word-spacing:3.836992pt;}
.wsda{word-spacing:3.847680pt;}
.ws143{word-spacing:3.869056pt;}
.wsdb{word-spacing:3.874400pt;}
.wsa3{word-spacing:3.981280pt;}
.wsca{word-spacing:3.987872pt;}
.wscb{word-spacing:3.996384pt;}
.ws16e{word-spacing:4.152288pt;}
.ws18{word-spacing:4.162976pt;}
.ws13{word-spacing:4.200384pt;}
.ws27{word-spacing:4.205728pt;}
.ws24{word-spacing:4.216416pt;}
.ws43{word-spacing:4.467584pt;}
.ws12{word-spacing:4.504992pt;}
.ws26{word-spacing:4.531712pt;}
.ws97{word-spacing:4.547744pt;}
.wsb3{word-spacing:4.626272pt;}
.wsb4{word-spacing:4.630528pt;}
.wsb2{word-spacing:4.634784pt;}
.ws12d{word-spacing:4.788224pt;}
.ws15{word-spacing:4.793568pt;}
.wsbd{word-spacing:4.804256pt;}
.wsc7{word-spacing:4.814944pt;}
.ws22{word-spacing:4.847008pt;}
.ws30{word-spacing:4.857696pt;}
.ws96{word-spacing:4.911136pt;}
.ws154{word-spacing:5.034848pt;}
.ws133{word-spacing:5.098176pt;}
.ws130{word-spacing:5.119552pt;}
.ws147{word-spacing:5.124896pt;}
.ws3f{word-spacing:5.130240pt;}
.ws132{word-spacing:5.146272pt;}
.wsbc{word-spacing:5.162304pt;}
.wsa0{word-spacing:5.247808pt;}
.ws113{word-spacing:5.301248pt;}
.ws10c{word-spacing:5.445536pt;}
.wsa9{word-spacing:5.461568pt;}
.wsa8{word-spacing:5.488288pt;}
.wsc0{word-spacing:5.493632pt;}
.ws112{word-spacing:5.498976pt;}
.wsc1{word-spacing:5.515008pt;}
.ws173{word-spacing:5.750144pt;}
.ws2b{word-spacing:5.755488pt;}
.wse7{word-spacing:5.792896pt;}
.ws169{word-spacing:5.808928pt;}
.wsa7{word-spacing:5.819616pt;}
.ws90{word-spacing:5.824960pt;}
.ws16a{word-spacing:5.894432pt;}
.wse8{word-spacing:5.937184pt;}
.ws8f{word-spacing:6.049408pt;}
.ws142{word-spacing:6.156288pt;}
.ws116{word-spacing:6.226528pt;}
.ws117{word-spacing:6.230784pt;}
.ws141{word-spacing:6.370048pt;}
.wsf0{word-spacing:6.545728pt;}
.wsf1{word-spacing:6.549984pt;}
.ws153{word-spacing:6.673408pt;}
.wsd2{word-spacing:6.701376pt;}
.ws148{word-spacing:6.706720pt;}
.ws7a{word-spacing:6.722752pt;}
.ws28{word-spacing:6.733440pt;}
.ws72{word-spacing:6.744128pt;}
.ws73{word-spacing:6.802912pt;}
.ws9c{word-spacing:6.834976pt;}
.ws9b{word-spacing:7.000640pt;}
.ws33{word-spacing:7.038048pt;}
.wsf2{word-spacing:7.064768pt;}
.ws14{word-spacing:7.502976pt;}
.ws163{word-spacing:7.860832pt;}
.ws162{word-spacing:7.877856pt;}
.wsa6{word-spacing:7.978592pt;}
.ws7c{word-spacing:7.983936pt;}
.ws7b{word-spacing:7.989280pt;}
.ws41{word-spacing:7.999968pt;}
.ws2d{word-spacing:8.021344pt;}
.wsa5{word-spacing:8.058752pt;}
.ws105{word-spacing:8.074784pt;}
.ws106{word-spacing:8.080128pt;}
.ws15e{word-spacing:8.158752pt;}
.ws161{word-spacing:8.256640pt;}
.ws15d{word-spacing:8.265152pt;}
.ws170{word-spacing:8.379392pt;}
.ws166{word-spacing:8.625216pt;}
.wsaa{word-spacing:8.651936pt;}
.ws104{word-spacing:8.788640pt;}
.wsb{word-spacing:8.940512pt;}
.ws1a{word-spacing:8.951200pt;}
.ws98{word-spacing:8.967232pt;}
.ws99{word-spacing:8.983264pt;}
.ws165{word-spacing:9.058080pt;}
.ws103{word-spacing:9.107840pt;}
.wse6{word-spacing:9.112096pt;}
.wsc9{word-spacing:9.266496pt;}
.ws32{word-spacing:9.277184pt;}
.ws45{word-spacing:9.314592pt;}
.wsd7{word-spacing:9.319936pt;}
.ws11e{word-spacing:9.325280pt;}
.ws3c{word-spacing:9.410784pt;}
.wse5{word-spacing:9.427040pt;}
.wsc8{word-spacing:9.640576pt;}
.ws23{word-spacing:9.731424pt;}
.ws95{word-spacing:10.212384pt;}
.ws1c{word-spacing:10.228416pt;}
.ws1e{word-spacing:10.260480pt;}
.ws81{word-spacing:10.276512pt;}
.ws80{word-spacing:10.345984pt;}
.ws89{word-spacing:10.378048pt;}
.wsf6{word-spacing:10.559744pt;}
.wsf3{word-spacing:10.575776pt;}
.ws40{word-spacing:10.623872pt;}
.ws88{word-spacing:10.666624pt;}
.ws138{word-spacing:10.885728pt;}
.ws12c{word-spacing:11.516320pt;}
.ws25{word-spacing:11.553728pt;}
.wsfd{word-spacing:11.665952pt;}
.wsfe{word-spacing:11.676640pt;}
.ws16f{word-spacing:11.842304pt;}
.ws8d{word-spacing:11.874368pt;}
.ws8e{word-spacing:11.997280pt;}
.ws3b{word-spacing:12.168288pt;}
.ws9e{word-spacing:12.189664pt;}
.ws172{word-spacing:12.499616pt;}
.ws9d{word-spacing:12.531680pt;}
.wse{word-spacing:12.622528pt;}
.ws10b{word-spacing:12.788192pt;}
.ws11f{word-spacing:12.793536pt;}
.ws120{word-spacing:12.798880pt;}
.ws16c{word-spacing:12.814912pt;}
.ws121{word-spacing:12.852320pt;}
.ws10a{word-spacing:13.087456pt;}
.ws16b{word-spacing:13.178304pt;}
.ws20{word-spacing:13.429472pt;}
.ws21{word-spacing:13.440160pt;}
.ws7e{word-spacing:13.445504pt;}
.ws136{word-spacing:13.585152pt;}
.ws82{word-spacing:13.889056pt;}
.ws11d{word-spacing:14.070752pt;}
.ws91{word-spacing:14.097472pt;}
.ws14f{word-spacing:14.253344pt;}
.ws13a{word-spacing:14.439488pt;}
.ws37{word-spacing:14.476896pt;}
.ws8c{word-spacing:14.487584pt;}
.ws14e{word-spacing:14.636384pt;}
.ws139{word-spacing:14.669280pt;}
.wsd3{word-spacing:14.706688pt;}
.ws8a{word-spacing:14.712032pt;}
.wsd4{word-spacing:14.722720pt;}
.ws8b{word-spacing:14.776160pt;}
.ws36{word-spacing:14.808224pt;}
.wsa{word-spacing:15.054048pt;}
.ws14c{word-spacing:15.270528pt;}
.ws19{word-spacing:15.353312pt;}
.ws140{word-spacing:15.358656pt;}
.ws31{word-spacing:15.508288pt;}
.ws15a{word-spacing:15.593984pt;}
.ws6e{word-spacing:15.743424pt;}
.ws6d{word-spacing:15.786176pt;}
.ws1b{word-spacing:15.989248pt;}
.wsf8{word-spacing:15.999936pt;}
.ws12f{word-spacing:16.015968pt;}
.ws13b{word-spacing:16.026656pt;}
.ws12e{word-spacing:16.032000pt;}
.wsf9{word-spacing:16.090784pt;}
.wsf4{word-spacing:16.304544pt;}
.ws175{word-spacing:16.315232pt;}
.ws174{word-spacing:16.341952pt;}
.ws74{word-spacing:16.448832pt;}
.wseb{word-spacing:16.635872pt;}
.ws2e{word-spacing:16.641216pt;}
.ws13d{word-spacing:16.951168pt;}
.wsf7{word-spacing:17.009952pt;}
.ws76{word-spacing:17.672608pt;}
.ws75{word-spacing:17.929120pt;}
.ws13f{word-spacing:18.249760pt;}
.wsc4{word-spacing:18.281824pt;}
.ws167{word-spacing:18.607808pt;}
.ws156{word-spacing:19.990432pt;}
.ws155{word-spacing:20.041504pt;}
.wsd8{word-spacing:20.494240pt;}
.wsd0{word-spacing:22.236384pt;}
.wsf5{word-spacing:22.418080pt;}
.wscf{word-spacing:22.450144pt;}
.ws101{word-spacing:23.048672pt;}
.wscd{word-spacing:25.287808pt;}
.wscc{word-spacing:25.330560pt;}
.ws178{word-spacing:25.950464pt;}
.wsc2{word-spacing:27.987456pt;}
.ws12b{word-spacing:28.136160pt;}
.ws12a{word-spacing:28.162880pt;}
.ws111{word-spacing:29.782112pt;}
.ws9a{word-spacing:29.883648pt;}
.ws87{word-spacing:31.973152pt;}
.ws11c{word-spacing:32.021248pt;}
.ws10f{word-spacing:39.727296pt;}
.ws110{word-spacing:39.737984pt;}
.ws114{word-spacing:123.215456pt;}
.wsb1{word-spacing:128.969568pt;}
.wsef{word-spacing:135.055648pt;}
.wsec{word-spacing:140.818272pt;}
.wse2{word-spacing:146.891584pt;}
.wse1{word-spacing:146.895840pt;}
.ws115{word-spacing:146.900096pt;}
.wsaf{word-spacing:152.654208pt;}
.wsdf{word-spacing:158.736032pt;}
.wsee{word-spacing:158.740288pt;}
.ws102{word-spacing:159.344640pt;}
.wse3{word-spacing:164.494400pt;}
.wsb0{word-spacing:176.334592pt;}
.wsed{word-spacing:187.536384pt;}
.ws55{word-spacing:220.466284pt;}
.wsae{word-spacing:268.081184pt;}
.ws71{word-spacing:356.744064pt;}
.ws48{word-spacing:383.461760pt;}
.ws7f{word-spacing:395.146048pt;}
.ws61{word-spacing:396.757345pt;}
.ws57{word-spacing:431.456640pt;}
.ws52{word-spacing:435.522547pt;}
.ws79{word-spacing:498.841024pt;}
.ws58{word-spacing:631.810080pt;}
.ws4a{word-spacing:666.369280pt;}
.ws5e{word-spacing:957.528375pt;}
._25{margin-left:-527.862762pt;}
._31{margin-left:-455.071851pt;}
._17{margin-left:-323.219144pt;}
._26{margin-left:-229.623165pt;}
._33{margin-left:-207.206562pt;}
._2e{margin-left:-205.108024pt;}
._2b{margin-left:-201.137981pt;}
._32{margin-left:-196.013656pt;}
._1c{margin-left:-194.376000pt;}
._4a{margin-left:-187.656480pt;}
._22{margin-left:-181.922400pt;}
._30{margin-left:-174.027786pt;}
._49{margin-left:-164.126656pt;}
._29{margin-left:-158.346128pt;}
._2c{margin-left:-146.283056pt;}
._2f{margin-left:-143.430740pt;}
._c{margin-left:-137.517600pt;}
._e{margin-left:-136.556640pt;}
._4d{margin-left:-134.719424pt;}
._2a{margin-left:-130.738061pt;}
._3d{margin-left:-128.956800pt;}
._1f{margin-left:-122.474880pt;}
._21{margin-left:-121.519200pt;}
._2d{margin-left:-119.403914pt;}
._10{margin-left:-109.599840pt;}
._a{margin-left:-107.284320pt;}
._14{margin-left:-104.475534pt;}
._9{margin-left:-103.101600pt;}
._1d{margin-left:-102.162720pt;}
._7{margin-left:-99.852480pt;}
._19{margin-left:-98.249760pt;}
._28{margin-left:-95.586913pt;}
._f{margin-left:-93.841440pt;}
._d{margin-left:-92.421120pt;}
._1b{margin-left:-88.062240pt;}
._20{margin-left:-84.738720pt;}
._16{margin-left:-82.274400pt;}
._b{margin-left:-81.222240pt;}
._13{margin-left:-78.092486pt;}
._15{margin-left:-75.660351pt;}
._1e{margin-left:-73.223040pt;}
._18{margin-left:-71.623200pt;}
._24{margin-left:-70.605684pt;}
._8{margin-left:-68.809440pt;}
._27{margin-left:-64.086902pt;}
._1a{margin-left:-62.868960pt;}
._12{margin-left:-59.640445pt;}
._3e{margin-left:-27.760896pt;}
._4e{margin-left:-15.995328pt;}
._40{margin-left:-14.867008pt;}
._5{margin-left:-6.993696pt;}
._53{margin-left:-5.994624pt;}
._3{margin-left:-4.391584pt;}
._1{margin-left:-1.405472pt;}
._2{width:1.058112pt;}
._3b{width:2.242912pt;}
._3f{width:3.493280pt;}
._34{width:5.440192pt;}
._11{width:6.834976pt;}
._48{width:8.001280pt;}
._23{width:10.356672pt;}
._35{width:14.051584pt;}
._51{width:20.164928pt;}
._47{width:22.718528pt;}
._50{width:24.637984pt;}
._3c{width:25.923296pt;}
._4{width:27.276704pt;}
._52{width:28.481152pt;}
._46{width:31.362464pt;}
._4b{width:32.290352pt;}
._4f{width:33.277664pt;}
._42{width:34.558720pt;}
._4c{width:39.359488pt;}
._36{width:40.640544pt;}
._3a{width:46.398912pt;}
._37{width:49.599424pt;}
._39{width:73.279808pt;}
._38{width:76.161120pt;}
._6{width:142.397248pt;}
._41{width:168.629088pt;}
._43{width:176.317568pt;}
._45{width:196.159040pt;}
._44{width:223.039936pt;}
._0{width:1422.355200pt;}
.fs8{font-size:24.000000pt;}
.fsa{font-size:26.560000pt;}
.fsc{font-size:30.363733pt;}
.fs13{font-size:32.000000pt;}
.fs10{font-size:32.541333pt;}
.fs7{font-size:33.600000pt;}
.fs9{font-size:34.560000pt;}
.fs0{font-size:42.560000pt;}
.fs14{font-size:44.980424pt;}
.fsb{font-size:47.714667pt;}
.fs15{font-size:48.000000pt;}
.fsd{font-size:50.428137pt;}
.fsf{font-size:51.137600pt;}
.fs6{font-size:52.800000pt;}
.fs3{font-size:53.440000pt;}
.fs11{font-size:54.045896pt;}
.fs12{font-size:56.479151pt;}
.fs2{font-size:64.000000pt;}
.fse{font-size:68.425067pt;}
.fs4{font-size:74.560000pt;}
.fs5{font-size:76.800000pt;}
.fs1{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:3.680400pt;}
.y2b{bottom:98.506728pt;}
.y46{bottom:99.223795pt;}
.y19d{bottom:110.745651pt;}
.y1d4{bottom:112.105179pt;}
.y177{bottom:113.067067pt;}
.y2a{bottom:114.107200pt;}
.y176{bottom:114.427067pt;}
.y45{bottom:114.824267pt;}
.y14f{bottom:115.464707pt;}
.yd4{bottom:119.387611pt;}
.y6d{bottom:120.186971pt;}
.y19c{bottom:126.346123pt;}
.y1d3{bottom:127.705651pt;}
.y44{bottom:130.424739pt;}
.yd3{bottom:130.587067pt;}
.y14e{bottom:131.065179pt;}
.yd2{bottom:131.947067pt;}
.y175{bottom:133.147200pt;}
.y6c{bottom:135.787443pt;}
.y29{bottom:138.666579pt;}
.y19b{bottom:141.946595pt;}
.y1d2{bottom:143.306123pt;}
.y43{bottom:146.025211pt;}
.y14d{bottom:146.665651pt;}
.yfc{bottom:146.746595pt;}
.y131{bottom:153.867067pt;}
.y130{bottom:155.867067pt;}
.y19a{bottom:157.547067pt;}
.yd1{bottom:157.707067pt;}
.y1d1{bottom:158.906595pt;}
.y63{bottom:159.867313pt;}
.y66{bottom:160.107200pt;}
.y28{bottom:160.507067pt;}
.y14c{bottom:162.266123pt;}
.yfb{bottom:162.346123pt;}
.y6a{bottom:163.147200pt;}
.y61{bottom:167.467067pt;}
.y42{bottom:169.625651pt;}
.y68{bottom:169.627749pt;}
.y12f{bottom:170.347067pt;}
.y12d{bottom:172.346091pt;}
.y12e{bottom:172.347067pt;}
.y65{bottom:172.586850pt;}
.y6b{bottom:172.587547pt;}
.y62{bottom:173.627030pt;}
.y1d0{bottom:174.502235pt;}
.yd0{bottom:176.907067pt;}
.y67{bottom:177.307496pt;}
.y14b{bottom:177.866595pt;}
.yfa{bottom:177.946595pt;}
.y69{bottom:180.267222pt;}
.y64{bottom:181.226784pt;}
.y199{bottom:182.107200pt;}
.y41{bottom:185.226123pt;}
.y12c{bottom:188.825651pt;}
.y14a{bottom:193.466728pt;}
.yf9{bottom:193.546203pt;}
.ycf{bottom:196.107200pt;}
.y1cf{bottom:198.341819pt;}
.y40{bottom:200.826595pt;}
.y12b{bottom:204.426123pt;}
.y60{bottom:206.346155pt;}
.y149{bottom:207.067200pt;}
.y148{bottom:209.067200pt;}
.y27{bottom:210.743763pt;}
.y1ce{bottom:213.942291pt;}
.yce{bottom:215.307067pt;}
.yf8{bottom:215.786595pt;}
.y3f{bottom:216.427067pt;}
.y12a{bottom:220.026595pt;}
.y5f{bottom:221.946627pt;}
.y26{bottom:226.344235pt;}
.y1cd{bottom:229.542763pt;}
.y198{bottom:230.507067pt;}
.yf7{bottom:231.386123pt;}
.y147{bottom:233.067067pt;}
.ycc{bottom:235.147067pt;}
.y129{bottom:235.627035pt;}
.y3e{bottom:240.986579pt;}
.ycd{bottom:241.067067pt;}
.y25{bottom:241.944707pt;}
.y1cc{bottom:245.143235pt;}
.y5e{bottom:245.546595pt;}
.yf6{bottom:246.986595pt;}
.y197{bottom:248.747067pt;}
.y146{bottom:251.307067pt;}
.y128{bottom:252.106595pt;}
.ycb{bottom:252.427067pt;}
.y24{bottom:257.545179pt;}
.y1cb{bottom:260.743707pt;}
.y5d{bottom:261.146123pt;}
.yf5{bottom:262.586728pt;}
.y3d{bottom:262.827067pt;}
.yca{bottom:262.986595pt;}
.y127{bottom:265.707067pt;}
.y126{bottom:267.707067pt;}
.y23{bottom:273.145651pt;}
.y1ca{bottom:276.344179pt;}
.yc9{bottom:276.587067pt;}
.y5c{bottom:276.746595pt;}
.yf4{bottom:278.185864pt;}
.yc7{bottom:278.586091pt;}
.yc8{bottom:278.587067pt;}
.y22{bottom:288.746123pt;}
.y125{bottom:291.706547pt;}
.y1c9{bottom:291.944651pt;}
.y5b{bottom:292.347411pt;}
.yc6{bottom:295.065651pt;}
.yf3{bottom:300.426256pt;}
.y124{bottom:302.907067pt;}
.y123{bottom:304.267067pt;}
.y21{bottom:304.346595pt;}
.y1c8{bottom:307.545123pt;}
.y54{bottom:309.147187pt;}
.y59{bottom:309.147200pt;}
.y52{bottom:309.867067pt;}
.yc5{bottom:310.666123pt;}
.y56{bottom:312.506787pt;}
.y3c{bottom:315.706256pt;}
.yf2{bottom:316.026728pt;}
.y58{bottom:317.467067pt;}
.y5a{bottom:319.307000pt;}
.y53{bottom:319.627027pt;}
.y20{bottom:319.943896pt;}
.y50{bottom:320.027067pt;}
.y51{bottom:322.907067pt;}
.y1c7{bottom:323.145595pt;}
.yc4{bottom:326.266595pt;}
.y55{bottom:328.827547pt;}
.yf1{bottom:329.627200pt;}
.y122{bottom:330.027067pt;}
.y3b{bottom:331.306728pt;}
.yf0{bottom:331.627200pt;}
.y57{bottom:332.106147pt;}
.y1f{bottom:335.544368pt;}
.yc3{bottom:339.867067pt;}
.yc2{bottom:341.867067pt;}
.yc1{bottom:341.867507pt;}
.y3a{bottom:346.907200pt;}
.y1c6{bottom:346.985179pt;}
.y121{bottom:349.227067pt;}
.y1e{bottom:351.144840pt;}
.yef{bottom:354.266680pt;}
.yc0{bottom:356.347067pt;}
.y4f{bottom:356.747200pt;}
.y174{bottom:358.026595pt;}
.ybf{bottom:358.347067pt;}
.y1c5{bottom:362.585651pt;}
.yee{bottom:365.467067pt;}
.y1d{bottom:366.745312pt;}
.yed{bottom:366.827200pt;}
.y120{bottom:368.427067pt;}
.y39{bottom:370.027067pt;}
.y173{bottom:371.627067pt;}
.ybe{bottom:372.827200pt;}
.y171{bottom:373.627035pt;}
.y172{bottom:373.627067pt;}
.ybd{bottom:374.827200pt;}
.ybc{bottom:374.827507pt;}
.y1c4{bottom:378.186123pt;}
.y4e{bottom:379.867067pt;}
.y1c{bottom:382.345784pt;}
.yec{bottom:385.547067pt;}
.y11f{bottom:387.627067pt;}
.y38{bottom:388.267067pt;}
.ybb{bottom:389.307067pt;}
.y170{bottom:390.106595pt;}
.yba{bottom:391.307067pt;}
.yb9{bottom:391.307507pt;}
.y1c3{bottom:393.786595pt;}
.y1b{bottom:397.946256pt;}
.y4d{bottom:398.107200pt;}
.y16f{bottom:403.707067pt;}
.y16e{bottom:405.707067pt;}
.yb8{bottom:405.787067pt;}
.y11c{bottom:407.466680pt;}
.yb7{bottom:407.787067pt;}
.yb6{bottom:407.787507pt;}
.y1c2{bottom:409.387067pt;}
.y1a{bottom:413.546728pt;}
.y11b{bottom:420.027200pt;}
.y11d{bottom:420.587251pt;}
.y16d{bottom:422.186123pt;}
.yb5{bottom:424.267067pt;}
.yb4{bottom:424.267640pt;}
.y11e{bottom:425.947200pt;}
.y19{bottom:429.147200pt;}
.y1c1{bottom:434.187200pt;}
.y11a{bottom:437.307067pt;}
.y16c{bottom:437.786595pt;}
.yb3{bottom:438.747200pt;}
.yb2{bottom:440.747200pt;}
.y119{bottom:447.866123pt;}
.y16b{bottom:451.387067pt;}
.y16a{bottom:453.387067pt;}
.y18{bottom:453.707067pt;}
.yb1{bottom:457.222379pt;}
.y118{bottom:463.466595pt;}
.y196{bottom:468.106123pt;}
.yb0{bottom:472.822851pt;}
.y117{bottom:477.067067pt;}
.y169{bottom:477.386547pt;}
.y115{bottom:479.067035pt;}
.y116{bottom:479.067067pt;}
.y195{bottom:483.706595pt;}
.y1c0{bottom:486.586547pt;}
.yaf{bottom:488.423323pt;}
.y168{bottom:488.587067pt;}
.y167{bottom:489.947067pt;}
.y114{bottom:495.546595pt;}
.y145{bottom:496.906595pt;}
.y1bf{bottom:499.147067pt;}
.y194{bottom:499.306123pt;}
.y17{bottom:503.947067pt;}
.yae{bottom:504.023795pt;}
.y113{bottom:509.147067pt;}
.y112{bottom:511.147067pt;}
.y111{bottom:511.147507pt;}
.y144{bottom:512.507067pt;}
.y193{bottom:514.906595pt;}
.y166{bottom:515.707067pt;}
.yad{bottom:519.624267pt;}
.y1be{bottom:519.704571pt;}
.y110{bottom:525.627067pt;}
.y10f{bottom:527.627067pt;}
.y16{bottom:528.507067pt;}
.y192{bottom:530.507067pt;}
.y1bd{bottom:532.265091pt;}
.y165{bottom:534.907067pt;}
.yac{bottom:535.224739pt;}
.y143{bottom:535.626547pt;}
.y142{bottom:548.187067pt;}
.yab{bottom:550.825211pt;}
.y10e{bottom:551.627067pt;}
.y1bc{bottom:552.824763pt;}
.y191{bottom:553.627611pt;}
.y164{bottom:554.107067pt;}
.y4c{bottom:561.227067pt;}
.y1bb{bottom:565.385283pt;}
.y190{bottom:566.187067pt;}
.yaa{bottom:566.425683pt;}
.y10d{bottom:569.867067pt;}
.y163{bottom:573.307067pt;}
.y141{bottom:573.467067pt;}
.y1ba{bottom:577.945803pt;}
.ya9{bottom:582.026155pt;}
.y15{bottom:586.740531pt;}
.y18f{bottom:591.467067pt;}
.y162{bottom:592.507067pt;}
.y140{bottom:592.667067pt;}
.ya8{bottom:597.626627pt;}
.y1b9{bottom:598.505475pt;}
.y14{bottom:602.341003pt;}
.yeb{bottom:609.706595pt;}
.y18e{bottom:610.667067pt;}
.y1b8{bottom:611.065995pt;}
.y161{bottom:611.707067pt;}
.y13f{bottom:611.867067pt;}
.y13{bottom:617.941475pt;}
.y37{bottom:618.181336pt;}
.ya7{bottom:621.227067pt;}
.yea{bottom:623.307067pt;}
.y1b7{bottom:623.626515pt;}
.ye9{bottom:625.307067pt;}
.ye8{bottom:625.307507pt;}
.y18d{bottom:629.867067pt;}
.y160{bottom:630.907067pt;}
.y13e{bottom:631.067067pt;}
.y12{bottom:633.541947pt;}
.y36{bottom:633.781808pt;}
.ya6{bottom:634.827067pt;}
.y1b6{bottom:636.187035pt;}
.ya5{bottom:636.827067pt;}
.ye7{bottom:639.787067pt;}
.ye5{bottom:641.787035pt;}
.ye6{bottom:641.787067pt;}
.y18c{bottom:649.067067pt;}
.y11{bottom:649.142419pt;}
.y35{bottom:649.382280pt;}
.y15f{bottom:650.107067pt;}
.y13d{bottom:650.267067pt;}
.ya4{bottom:651.307067pt;}
.ya3{bottom:653.307067pt;}
.ya2{bottom:653.307507pt;}
.y1b5{bottom:656.746707pt;}
.ye4{bottom:658.266595pt;}
.y10{bottom:664.742891pt;}
.y34{bottom:664.982752pt;}
.y18b{bottom:668.267067pt;}
.y1b4{bottom:669.307227pt;}
.ya1{bottom:669.786595pt;}
.y15c{bottom:669.947611pt;}
.y13b{bottom:670.107067pt;}
.ye3{bottom:671.867067pt;}
.ye2{bottom:673.867067pt;}
.ye1{bottom:673.867507pt;}
.y13c{bottom:675.467067pt;}
.yf{bottom:680.343363pt;}
.y1b3{bottom:681.867747pt;}
.y15b{bottom:682.507067pt;}
.y15d{bottom:683.067251pt;}
.ya0{bottom:683.387067pt;}
.y9f{bottom:685.387067pt;}
.y9e{bottom:685.387507pt;}
.y13a{bottom:686.827067pt;}
.y18a{bottom:687.467067pt;}
.y15e{bottom:688.427067pt;}
.y33{bottom:688.583192pt;}
.ye0{bottom:690.347067pt;}
.ye{bottom:695.943835pt;}
.y139{bottom:697.385651pt;}
.y15a{bottom:699.787067pt;}
.y9d{bottom:699.867067pt;}
.y9b{bottom:701.867019pt;}
.y9c{bottom:701.867067pt;}
.y1b2{bottom:702.427419pt;}
.y32{bottom:704.183664pt;}
.y189{bottom:706.667067pt;}
.y159{bottom:710.346595pt;}
.ydf{bottom:712.107067pt;}
.y138{bottom:712.986123pt;}
.yde{bottom:713.467067pt;}
.y1b1{bottom:714.987939pt;}
.yd{bottom:719.544275pt;}
.y31{bottom:719.784136pt;}
.y158{bottom:723.947067pt;}
.y188{bottom:725.867067pt;}
.y157{bottom:725.947067pt;}
.y156{bottom:725.947507pt;}
.y8d{bottom:726.746784pt;}
.y92{bottom:727.387067pt;}
.y137{bottom:728.586595pt;}
.y98{bottom:730.587067pt;}
.y8f{bottom:730.587218pt;}
.y8a{bottom:730.667067pt;}
.ydd{bottom:732.187067pt;}
.y8b{bottom:734.907067pt;}
.yc{bottom:735.144747pt;}
.y30{bottom:735.384608pt;}
.y1b0{bottom:735.547611pt;}
.y96{bottom:737.546471pt;}
.y9a{bottom:740.746829pt;}
.y99{bottom:740.748108pt;}
.y91{bottom:740.748259pt;}
.y8c{bottom:742.186504pt;}
.y155{bottom:742.426123pt;}
.y136{bottom:744.186595pt;}
.y187{bottom:745.067067pt;}
.y88{bottom:745.386667pt;}
.y94{bottom:745.786750pt;}
.y95{bottom:746.506727pt;}
.y1af{bottom:748.107067pt;}
.y4b{bottom:748.347067pt;}
.y97{bottom:748.987654pt;}
.y90{bottom:748.987805pt;}
.y8e{bottom:750.346787pt;}
.yb{bottom:750.745219pt;}
.y2f{bottom:750.985080pt;}
.y93{bottom:754.747006pt;}
.y154{bottom:758.026595pt;}
.y135{bottom:759.787067pt;}
.y186{bottom:764.267067pt;}
.ya{bottom:766.345691pt;}
.y2e{bottom:766.585552pt;}
.y4a{bottom:766.587067pt;}
.y1ae{bottom:770.107067pt;}
.y153{bottom:771.627067pt;}
.y152{bottom:773.627067pt;}
.y87{bottom:776.266155pt;}
.y134{bottom:781.547067pt;}
.y9{bottom:781.946163pt;}
.y2d{bottom:782.186024pt;}
.y133{bottom:782.907067pt;}
.y184{bottom:784.106979pt;}
.y86{bottom:791.866627pt;}
.y8{bottom:797.546635pt;}
.y151{bottom:797.627067pt;}
.y2c{bottom:797.786496pt;}
.y132{bottom:801.627067pt;}
.y183{bottom:801.947067pt;}
.y10c{bottom:802.906547pt;}
.y185{bottom:807.307067pt;}
.y7{bottom:813.386251pt;}
.y10b{bottom:815.467067pt;}
.y85{bottom:815.467507pt;}
.y150{bottom:815.867067pt;}
.y182{bottom:818.667067pt;}
.y1ad{bottom:822.985179pt;}
.y181{bottom:829.226595pt;}
.y84{bottom:831.946595pt;}
.y1ac{bottom:838.585651pt;}
.y10a{bottom:840.747067pt;}
.y180{bottom:844.826595pt;}
.y6{bottom:844.986659pt;}
.y83{bottom:847.546123pt;}
.y1ab{bottom:854.186123pt;}
.y109{bottom:859.947067pt;}
.y17f{bottom:860.425651pt;}
.y82{bottom:863.146595pt;}
.y1aa{bottom:869.786595pt;}
.y17e{bottom:876.026123pt;}
.y5{bottom:876.587067pt;}
.y81{bottom:878.747411pt;}
.y108{bottom:879.147200pt;}
.y1a9{bottom:885.386595pt;}
.y17d{bottom:891.626595pt;}
.y7e{bottom:895.547067pt;}
.y78{bottom:895.547187pt;}
.y76{bottom:896.267067pt;}
.y107{bottom:898.347067pt;}
.y7a{bottom:898.906787pt;}
.y1a8{bottom:898.987067pt;}
.y1a6{bottom:900.986595pt;}
.y1a7{bottom:900.987067pt;}
.y7c{bottom:903.867067pt;}
.y77{bottom:906.027027pt;}
.y80{bottom:906.027747pt;}
.y73{bottom:906.427067pt;}
.y17c{bottom:907.226627pt;}
.y4{bottom:908.667067pt;}
.y75{bottom:909.306587pt;}
.y7d{bottom:909.307067pt;}
.y79{bottom:914.427027pt;}
.y7f{bottom:915.227427pt;}
.y106{bottom:917.547067pt;}
.y7b{bottom:917.706227pt;}
.y74{bottom:917.707067pt;}
.y1a5{bottom:925.466123pt;}
.y17b{bottom:928.827067pt;}
.y17a{bottom:930.827067pt;}
.y104{bottom:937.387067pt;}
.y1a4{bottom:941.066595pt;}
.y72{bottom:941.944539pt;}
.y105{bottom:942.747067pt;}
.y179{bottom:947.306595pt;}
.y3{bottom:953.385739pt;}
.y103{bottom:954.107067pt;}
.y1a3{bottom:954.667067pt;}
.y1a1{bottom:956.664779pt;}
.y1a2{bottom:956.667067pt;}
.y71{bottom:957.545011pt;}
.ydc{bottom:960.907067pt;}
.y178{bottom:962.907035pt;}
.ydb{bottom:962.907067pt;}
.y102{bottom:964.666123pt;}
.y1a0{bottom:973.144339pt;}
.yda{bottom:979.386595pt;}
.y101{bottom:980.266595pt;}
.y70{bottom:981.145451pt;}
.y49{bottom:981.146123pt;}
.y2{bottom:984.027067pt;}
.yd9{bottom:992.987067pt;}
.y100{bottom:993.867067pt;}
.yd8{bottom:994.987067pt;}
.yd7{bottom:994.987507pt;}
.yff{bottom:995.867067pt;}
.yfe{bottom:995.867507pt;}
.y19f{bottom:996.744779pt;}
.y6f{bottom:996.745923pt;}
.y48{bottom:996.746595pt;}
.yd6{bottom:1009.467067pt;}
.yd5{bottom:1011.467067pt;}
.y19e{bottom:1012.345251pt;}
.yfd{bottom:1012.346339pt;}
.y6e{bottom:1012.346395pt;}
.y47{bottom:1012.347067pt;}
.y1{bottom:1057.547067pt;}
.he{height:16.664062pt;}
.h2b{height:19.336406pt;}
.h1c{height:19.760000pt;}
.h15{height:21.082631pt;}
.h1f{height:22.594617pt;}
.hc{height:23.329687pt;}
.h29{height:28.078125pt;}
.h10{height:29.482031pt;}
.h28{height:30.324375pt;}
.h2c{height:30.984844pt;}
.h1{height:31.005625pt;}
.h16{height:33.130008pt;}
.h20{height:35.506673pt;}
.hd{height:36.660937pt;}
.h5{height:37.105312pt;}
.h9{height:37.343906pt;}
.h38{height:39.422031pt;}
.h3d{height:40.774230pt;}
.h3e{height:40.775670pt;}
.h36{height:40.775873pt;}
.h3a{height:40.776204pt;}
.h2d{height:40.776406pt;}
.h2e{height:40.776940pt;}
.h39{height:40.778486pt;}
.h2f{height:41.663996pt;}
.h18{height:41.866824pt;}
.h30{height:42.783906pt;}
.h31{height:42.784440pt;}
.h2a{height:43.016406pt;}
.h14{height:44.196642pt;}
.h3{height:44.437500pt;}
.h22{height:44.870248pt;}
.hf{height:46.328906pt;}
.h17{height:46.710047pt;}
.h4{height:46.890469pt;}
.h33{height:46.891823pt;}
.h3f{height:46.892229pt;}
.h13{height:46.892357pt;}
.h35{height:46.893381pt;}
.h34{height:46.893925pt;}
.h12{height:46.894245pt;}
.h32{height:46.895813pt;}
.h40{height:46.896133pt;}
.h41{height:46.900453pt;}
.h1e{height:47.367201pt;}
.h42{height:47.996250pt;}
.h43{height:48.015578pt;}
.hb{height:48.907031pt;}
.h26{height:49.498084pt;}
.h1b{height:49.499844pt;}
.h21{height:50.061067pt;}
.h6{height:50.531875pt;}
.h24{height:52.314917pt;}
.h7{height:54.281719pt;}
.h3b{height:54.324503pt;}
.h3c{height:54.328151pt;}
.h25{height:54.890469pt;}
.h23{height:57.131418pt;}
.h27{height:57.499844pt;}
.h19{height:61.928548pt;}
.h37{height:62.324375pt;}
.h1d{height:63.380054pt;}
.h8{height:65.434714pt;}
.h1a{height:68.007749pt;}
.h11{height:69.290735pt;}
.ha{height:71.137500pt;}
.h2{height:72.219375pt;}
.h0{height:1122.666667pt;}
.w1{width:4.080000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xd{left:56.720000pt;}
.x1{left:75.680000pt;}
.x89{left:78.800000pt;}
.x9e{left:83.040000pt;}
.x6e{left:84.080000pt;}
.x13{left:85.040000pt;}
.x1d{left:86.800440pt;}
.x8b{left:88.240000pt;}
.x1f{left:91.680080pt;}
.x24{left:92.640881pt;}
.x76{left:94.640000pt;}
.x9f{left:99.679536pt;}
.x8{left:104.000000pt;}
.x15{left:104.960000pt;}
.xa2{left:107.200000pt;}
.xa1{left:110.160000pt;}
.x8c{left:113.439624pt;}
.x29{left:115.839775pt;}
.x88{left:125.120000pt;}
.x8e{left:128.320000pt;}
.x26{left:129.840709pt;}
.x78{left:132.399784pt;}
.xf{left:133.360000pt;}
.x27{left:134.960492pt;}
.x23{left:136.400334pt;}
.x12{left:140.000000pt;}
.x19{left:142.240160pt;}
.x70{left:143.840000pt;}
.xa4{left:144.880000pt;}
.x1e{left:149.840000pt;}
.x5{left:156.240000pt;}
.x1a{left:157.279240pt;}
.x2{left:164.640000pt;}
.x18{left:165.680360pt;}
.x79{left:169.120000pt;}
.x21{left:170.480478pt;}
.x14{left:175.040000pt;}
.x2a{left:177.360000pt;}
.x16{left:181.280000pt;}
.x28{left:183.520000pt;}
.x9b{left:185.120000pt;}
.x77{left:189.040000pt;}
.x8f{left:190.320000pt;}
.x25{left:193.119900pt;}
.x22{left:196.320126pt;}
.x90{left:197.680000pt;}
.x69{left:199.600000pt;}
.x6a{left:208.000000pt;}
.x1c{left:210.000000pt;}
.x4{left:216.960000pt;}
.x72{left:219.200000pt;}
.x20{left:222.400000pt;}
.x6{left:235.120112pt;}
.x71{left:236.160000pt;}
.x1b{left:243.200000pt;}
.x8a{left:246.720000pt;}
.x17{left:257.040440pt;}
.xa0{left:265.680000pt;}
.x3{left:270.960240pt;}
.x73{left:275.440000pt;}
.x6b{left:279.520000pt;}
.x74{left:282.800000pt;}
.x9c{left:324.000000pt;}
.x9d{left:331.360000pt;}
.x6c{left:344.560000pt;}
.x10{left:348.880000pt;}
.x6d{left:352.960000pt;}
.x8d{left:356.480000pt;}
.xa3{left:361.760000pt;}
.x87{left:363.120000pt;}
.x75{left:365.760000pt;}
.x11{left:367.600000pt;}
.x6f{left:368.960000pt;}
.xe{left:373.600000pt;}
.x2b{left:398.718840pt;}
.x7{left:406.399320pt;}
.x9{left:417.679440pt;}
.x95{left:422.559912pt;}
.x67{left:425.840000pt;}
.x2c{left:427.039368pt;}
.x37{left:428.798520pt;}
.x65{left:430.640000pt;}
.x55{left:431.920000pt;}
.x39{left:432.879480pt;}
.x47{left:434.879771pt;}
.x7c{left:436.640000pt;}
.x56{left:439.280000pt;}
.xa8{left:440.319792pt;}
.x82{left:441.519808pt;}
.x5d{left:442.720000pt;}
.xa{left:445.999968pt;}
.x5e{left:450.080000pt;}
.x68{left:455.440136pt;}
.x3a{left:457.280000pt;}
.x9a{left:468.080000pt;}
.x3e{left:474.560000pt;}
.x2e{left:488.480000pt;}
.x7e{left:489.680000pt;}
.x38{left:490.800000pt;}
.x96{left:494.320520pt;}
.x36{left:495.599760pt;}
.x33{left:497.279480pt;}
.xc{left:499.520000pt;}
.x4a{left:501.039113pt;}
.x32{left:503.521040pt;}
.x31{left:504.640760pt;}
.x61{left:507.680000pt;}
.xa9{left:510.480000pt;}
.x83{left:513.280520pt;}
.x62{left:516.080000pt;}
.x2d{left:517.520000pt;}
.x97{left:519.040000pt;}
.x3b{left:522.320000pt;}
.x2f{left:523.760000pt;}
.x3c{left:525.520000pt;}
.x92{left:527.680000pt;}
.x84{left:532.320000pt;}
.x93{left:535.040000pt;}
.x85{left:538.160000pt;}
.x48{left:539.999289pt;}
.x7a{left:543.440000pt;}
.x45{left:547.119711pt;}
.x35{left:548.640000pt;}
.x7b{left:551.840000pt;}
.x42{left:553.679574pt;}
.x98{left:556.000000pt;}
.xa7{left:559.040000pt;}
.x81{left:560.240000pt;}
.x49{left:561.278922pt;}
.x99{left:563.360000pt;}
.x46{left:566.480177pt;}
.x86{left:569.440000pt;}
.x3d{left:573.280000pt;}
.x4c{left:575.280000pt;}
.x34{left:578.480000pt;}
.x66{left:588.720000pt;}
.x30{left:590.480360pt;}
.x40{left:601.039384pt;}
.xa5{left:604.720000pt;}
.x4b{left:608.400000pt;}
.x4d{left:609.840000pt;}
.xa6{left:612.080000pt;}
.x4e{left:617.200000pt;}
.x57{left:621.440000pt;}
.x58{left:629.840000pt;}
.x63{left:631.520000pt;}
.x94{left:638.640000pt;}
.x64{left:639.920000pt;}
.x41{left:645.199258pt;}
.x44{left:652.560139pt;}
.x59{left:655.520000pt;}
.x4f{left:659.600000pt;}
.x51{left:661.040000pt;}
.x5a{left:662.880000pt;}
.x50{left:666.960000pt;}
.x52{left:669.440000pt;}
.x7f{left:684.880000pt;}
.x5f{left:686.399867pt;}
.x91{left:689.040000pt;}
.x43{left:690.880000pt;}
.x80{left:692.239867pt;}
.x60{left:694.800000pt;}
.x3f{left:697.040000pt;}
.x53{left:699.200000pt;}
.x5b{left:704.960000pt;}
.x54{left:706.560000pt;}
.x7d{left:709.360000pt;}
.x5c{left:712.320000pt;}
.xb{left:716.560000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  