
    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_c27d67e36a7b0e2fe4022331.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_cf92d63c2cce00965f942400.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_5beff5f4dee224cc60ae1c7d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_9747ba3be2a2c8c2ff4e3f7d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_2ef7f93a94b79747823b22eb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.197754;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_c6ae85624a8ac91de8b8edaa.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8c0c196ebdb3a916fb20c757.woff')format("woff");}.ff7{font-family:ff7;line-height:0.865234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_617149f9590bec9655310ec1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-26.640000px;}
.v3{vertical-align:-22.200000px;}
.v4{vertical-align:-14.400000px;}
.v7{vertical-align:-13.188000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v6{vertical-align:14.400000px;}
.v2{vertical-align:26.640000px;}
.ls47{letter-spacing:-7.848000px;}
.ls36{letter-spacing:-7.776000px;}
.ls2a{letter-spacing:-7.344000px;}
.ls5e{letter-spacing:-7.272000px;}
.ls2b{letter-spacing:-7.200000px;}
.ls5d{letter-spacing:-6.624000px;}
.ls56{letter-spacing:-5.760000px;}
.ls21{letter-spacing:-4.392000px;}
.ls5c{letter-spacing:-3.960000px;}
.ls8f{letter-spacing:-3.498000px;}
.ls7d{letter-spacing:-2.574000px;}
.ls67{letter-spacing:-0.864000px;}
.lsa{letter-spacing:-0.792000px;}
.ls8{letter-spacing:-0.726000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.660000px;}
.ls46{letter-spacing:-0.648000px;}
.lsf{letter-spacing:-0.594000px;}
.ls35{letter-spacing:-0.576000px;}
.ls83{letter-spacing:-0.528000px;}
.ls29{letter-spacing:-0.504000px;}
.ls80{letter-spacing:-0.462000px;}
.ls2c{letter-spacing:-0.456000px;}
.ls10{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.360000px;}
.ls49{letter-spacing:-0.342000px;}
.ls8e{letter-spacing:-0.330000px;}
.ls1d{letter-spacing:-0.288000px;}
.ls48{letter-spacing:-0.285000px;}
.ls9{letter-spacing:-0.264000px;}
.ls20{letter-spacing:-0.216000px;}
.ls91{letter-spacing:-0.198000px;}
.ls12{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.132000px;}
.ls1e{letter-spacing:-0.072000px;}
.ls7e{letter-spacing:-0.066000px;}
.ls78{letter-spacing:-0.057000px;}
.ls5{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.001800px;}
.ls4d{letter-spacing:0.007200px;}
.ls8c{letter-spacing:0.010200px;}
.ls82{letter-spacing:0.010800px;}
.ls22{letter-spacing:0.011400px;}
.ls30{letter-spacing:0.012000px;}
.ls2e{letter-spacing:0.027600px;}
.ls50{letter-spacing:0.038400px;}
.ls95{letter-spacing:0.066000px;}
.ls38{letter-spacing:0.072000px;}
.ls6f{letter-spacing:0.073200px;}
.ls24{letter-spacing:0.113400px;}
.ls1b{letter-spacing:0.122400px;}
.ls6b{letter-spacing:0.123000px;}
.ls72{letter-spacing:0.126000px;}
.ls8b{letter-spacing:0.132000px;}
.ls1a{letter-spacing:0.144000px;}
.ls3c{letter-spacing:0.151200px;}
.ls25{letter-spacing:0.166800px;}
.ls4b{letter-spacing:0.171000px;}
.ls4c{letter-spacing:0.171600px;}
.ls9b{letter-spacing:0.198000px;}
.ls69{letter-spacing:0.213600px;}
.ls16{letter-spacing:0.216000px;}
.ls3e{letter-spacing:0.227400px;}
.ls40{letter-spacing:0.238200px;}
.ls45{letter-spacing:0.249000px;}
.ls74{letter-spacing:0.252000px;}
.ls9c{letter-spacing:0.264000px;}
.ls17{letter-spacing:0.288000px;}
.ls77{letter-spacing:0.315000px;}
.ls7f{letter-spacing:0.330000px;}
.ls87{letter-spacing:0.341400px;}
.ls37{letter-spacing:0.346800px;}
.ls59{letter-spacing:0.352800px;}
.ls18{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.396000px;}
.ls13{letter-spacing:0.432000px;}
.ls75{letter-spacing:0.441000px;}
.ls88{letter-spacing:0.462000px;}
.ls3f{letter-spacing:0.493800px;}
.ls14{letter-spacing:0.504000px;}
.ls86{letter-spacing:0.528000px;}
.ls58{letter-spacing:0.547800px;}
.ls6e{letter-spacing:0.550800px;}
.ls15{letter-spacing:0.576000px;}
.ls27{letter-spacing:0.580800px;}
.ls98{letter-spacing:0.594000px;}
.ls73{letter-spacing:0.630000px;}
.ls19{letter-spacing:0.648000px;}
.lsc{letter-spacing:0.660000px;}
.ls89{letter-spacing:0.676200px;}
.ls76{letter-spacing:0.693000px;}
.ls1f{letter-spacing:0.720000px;}
.ls8d{letter-spacing:0.726000px;}
.lsd{letter-spacing:0.792000px;}
.ls6c{letter-spacing:0.799200px;}
.ls44{letter-spacing:0.828000px;}
.lse{letter-spacing:0.864000px;}
.ls26{letter-spacing:0.936000px;}
.ls8a{letter-spacing:0.990000px;}
.ls6a{letter-spacing:1.008000px;}
.ls7b{letter-spacing:1.056000px;}
.ls90{letter-spacing:1.122000px;}
.ls7c{letter-spacing:1.188000px;}
.ls79{letter-spacing:1.224000px;}
.ls62{letter-spacing:1.368000px;}
.ls55{letter-spacing:2.016000px;}
.ls2f{letter-spacing:2.160000px;}
.ls2d{letter-spacing:2.304000px;}
.ls4a{letter-spacing:2.592000px;}
.ls3a{letter-spacing:2.664000px;}
.ls3b{letter-spacing:2.808000px;}
.ls39{letter-spacing:3.096000px;}
.ls66{letter-spacing:3.139200px;}
.ls84{letter-spacing:3.286800px;}
.ls85{letter-spacing:3.300000px;}
.ls5a{letter-spacing:3.528000px;}
.ls53{letter-spacing:3.600000px;}
.ls0{letter-spacing:4.200000px;}
.ls70{letter-spacing:4.514400px;}
.ls81{letter-spacing:4.686000px;}
.ls71{letter-spacing:4.716000px;}
.ls34{letter-spacing:4.744800px;}
.ls33{letter-spacing:4.752000px;}
.ls68{letter-spacing:4.896000px;}
.ls31{letter-spacing:4.968000px;}
.ls65{letter-spacing:5.047200px;}
.ls28{letter-spacing:5.112000px;}
.ls3{letter-spacing:5.880000px;}
.ls7a{letter-spacing:6.000000px;}
.ls5f{letter-spacing:6.120000px;}
.ls63{letter-spacing:6.408000px;}
.ls60{letter-spacing:6.429600px;}
.ls61{letter-spacing:6.480000px;}
.ls1{letter-spacing:6.600000px;}
.ls23{letter-spacing:6.624000px;}
.ls43{letter-spacing:6.667200px;}
.ls57{letter-spacing:6.840000px;}
.ls4f{letter-spacing:7.128000px;}
.ls4{letter-spacing:7.200000px;}
.ls64{letter-spacing:7.214400px;}
.ls6d{letter-spacing:7.329600px;}
.ls32{letter-spacing:8.143200px;}
.ls54{letter-spacing:9.720000px;}
.ls2{letter-spacing:10.200000px;}
.ls41{letter-spacing:10.324800px;}
.ls52{letter-spacing:10.353600px;}
.ls42{letter-spacing:10.368000px;}
.ls51{letter-spacing:10.382400px;}
.ls4e{letter-spacing:10.440000px;}
.ls5b{letter-spacing:10.634400px;}
.ls99{letter-spacing:10.890000px;}
.ls92{letter-spacing:10.956000px;}
.ls96{letter-spacing:11.022000px;}
.ls94{letter-spacing:11.484000px;}
.ls93{letter-spacing:11.550000px;}
.ls97{letter-spacing:11.946000px;}
.ls9a{letter-spacing:19.800000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws80{word-spacing:-38.346000px;}
.ws0{word-spacing:-32.352000px;}
.ws3{word-spacing:-27.432000px;}
.ws7f{word-spacing:-24.984000px;}
.ws5e{word-spacing:-22.860000px;}
.ws47{word-spacing:-20.808000px;}
.ws38{word-spacing:-20.592000px;}
.ws2c{word-spacing:-20.520000px;}
.ws4f{word-spacing:-20.448000px;}
.ws2a{word-spacing:-20.232000px;}
.ws2e{word-spacing:-20.160000px;}
.ws42{word-spacing:-19.872000px;}
.ws83{word-spacing:-19.800000px;}
.ws4b{word-spacing:-19.728000px;}
.ws34{word-spacing:-19.656000px;}
.ws6b{word-spacing:-19.074000px;}
.ws5c{word-spacing:-18.648000px;}
.ws66{word-spacing:-18.546000px;}
.ws56{word-spacing:-18.432000px;}
.ws1a{word-spacing:-18.288000px;}
.ws5d{word-spacing:-18.216000px;}
.ws2b{word-spacing:-18.144000px;}
.ws67{word-spacing:-18.018000px;}
.ws43{word-spacing:-18.000000px;}
.ws3a{word-spacing:-17.928000px;}
.ws51{word-spacing:-17.856000px;}
.ws1b{word-spacing:-17.784000px;}
.ws44{word-spacing:-17.712000px;}
.ws53{word-spacing:-17.703000px;}
.ws3d{word-spacing:-17.568000px;}
.ws3c{word-spacing:-17.424000px;}
.ws52{word-spacing:-17.352000px;}
.ws33{word-spacing:-17.280000px;}
.ws3b{word-spacing:-17.208000px;}
.ws4d{word-spacing:-16.992000px;}
.ws1{word-spacing:-16.860000px;}
.ws81{word-spacing:-16.500000px;}
.ws4{word-spacing:-16.302000px;}
.ws75{word-spacing:-16.170000px;}
.ws69{word-spacing:-15.708000px;}
.ws2{word-spacing:-15.642000px;}
.ws1c{word-spacing:-13.392000px;}
.ws12{word-spacing:-12.139200px;}
.ws45{word-spacing:-12.024000px;}
.ws78{word-spacing:-11.946000px;}
.ws79{word-spacing:-11.550000px;}
.ws7b{word-spacing:-11.484000px;}
.ws7d{word-spacing:-11.022000px;}
.ws77{word-spacing:-10.956000px;}
.ws7e{word-spacing:-10.890000px;}
.ws2d{word-spacing:-10.584000px;}
.ws8{word-spacing:-10.200000px;}
.wsb{word-spacing:-7.200000px;}
.ws7{word-spacing:-6.600000px;}
.ws76{word-spacing:-6.000000px;}
.ws9{word-spacing:-5.880000px;}
.ws5{word-spacing:-4.200000px;}
.ws46{word-spacing:-3.600000px;}
.ws4c{word-spacing:-1.368000px;}
.ws5f{word-spacing:-1.224000px;}
.ws64{word-spacing:-1.188000px;}
.ws71{word-spacing:-1.122000px;}
.ws63{word-spacing:-1.056000px;}
.ws50{word-spacing:-1.008000px;}
.ws72{word-spacing:-0.990000px;}
.ws31{word-spacing:-0.936000px;}
.ws19{word-spacing:-0.864000px;}
.ws16{word-spacing:-0.792000px;}
.ws73{word-spacing:-0.726000px;}
.ws21{word-spacing:-0.720000px;}
.ws59{word-spacing:-0.693000px;}
.ws13{word-spacing:-0.660000px;}
.ws29{word-spacing:-0.648000px;}
.ws55{word-spacing:-0.630000px;}
.ws7a{word-spacing:-0.594000px;}
.ws25{word-spacing:-0.576000px;}
.ws6d{word-spacing:-0.528000px;}
.ws22{word-spacing:-0.504000px;}
.ws6e{word-spacing:-0.462000px;}
.ws58{word-spacing:-0.441000px;}
.ws1e{word-spacing:-0.432000px;}
.ws10{word-spacing:-0.396000px;}
.ws28{word-spacing:-0.360000px;}
.ws62{word-spacing:-0.330000px;}
.ws5a{word-spacing:-0.315000px;}
.ws27{word-spacing:-0.288000px;}
.ws82{word-spacing:-0.264000px;}
.ws57{word-spacing:-0.252000px;}
.ws26{word-spacing:-0.216000px;}
.ws24{word-spacing:-0.144000px;}
.ws6c{word-spacing:-0.132000px;}
.ws54{word-spacing:-0.126000px;}
.ws39{word-spacing:-0.072000px;}
.ws7c{word-spacing:-0.066000px;}
.ws11{word-spacing:-0.043200px;}
.ws68{word-spacing:-0.039600px;}
.ws6{word-spacing:0.000000px;}
.ws5b{word-spacing:0.057000px;}
.ws61{word-spacing:0.066000px;}
.ws20{word-spacing:0.072000px;}
.wsa{word-spacing:0.132000px;}
.ws18{word-spacing:0.144000px;}
.ws74{word-spacing:0.198000px;}
.ws23{word-spacing:0.216000px;}
.wse{word-spacing:0.264000px;}
.ws40{word-spacing:0.285000px;}
.ws1f{word-spacing:0.288000px;}
.ws70{word-spacing:0.330000px;}
.ws41{word-spacing:0.342000px;}
.ws17{word-spacing:0.360000px;}
.ws15{word-spacing:0.432000px;}
.ws32{word-spacing:0.456000px;}
.ws65{word-spacing:0.462000px;}
.ws2f{word-spacing:0.504000px;}
.ws6a{word-spacing:0.528000px;}
.ws35{word-spacing:0.576000px;}
.ws14{word-spacing:0.594000px;}
.ws3e{word-spacing:0.648000px;}
.wsc{word-spacing:0.660000px;}
.ws1d{word-spacing:0.720000px;}
.wsd{word-spacing:0.726000px;}
.wsf{word-spacing:0.792000px;}
.ws4e{word-spacing:0.864000px;}
.ws60{word-spacing:2.574000px;}
.ws6f{word-spacing:3.498000px;}
.ws48{word-spacing:3.960000px;}
.ws49{word-spacing:6.624000px;}
.ws37{word-spacing:7.200000px;}
.ws4a{word-spacing:7.272000px;}
.ws30{word-spacing:7.344000px;}
.ws36{word-spacing:7.776000px;}
.ws3f{word-spacing:7.848000px;}
._40{margin-left:-13.907400px;}
._3f{margin-left:-11.550600px;}
._d{margin-left:-10.444800px;}
._b{margin-left:-9.343200px;}
._9{margin-left:-7.446000px;}
._3{margin-left:-5.630400px;}
._7{margin-left:-4.283400px;}
._1{margin-left:-2.717400px;}
._5{margin-left:-1.646400px;}
._4{width:1.132800px;}
._2{width:2.278267px;}
._0{width:3.360000px;}
._8{width:5.082000px;}
._e{width:6.218400px;}
._f{width:7.788000px;}
._c{width:9.700200px;}
._6{width:11.572800px;}
._11{width:12.950400px;}
._13{width:14.616300px;}
._15{width:15.623100px;}
._a{width:17.187000px;}
._3e{width:20.598600px;}
._3d{width:22.110000px;}
._12{width:38.923200px;}
._10{width:56.923200px;}
._17{width:80.784000px;}
._1b{width:91.674000px;}
._21{width:95.568000px;}
._2d{width:98.340000px;}
._2e{width:108.240000px;}
._35{width:111.144000px;}
._2b{width:118.602000px;}
._1a{width:120.054000px;}
._39{width:123.420000px;}
._1c{width:126.522000px;}
._31{width:128.304000px;}
._1d{width:131.868000px;}
._20{width:133.584000px;}
._26{width:136.026000px;}
._19{width:138.600000px;}
._14{width:139.854000px;}
._32{width:142.692000px;}
._18{width:144.078000px;}
._3a{width:145.332000px;}
._25{width:146.916000px;}
._30{width:148.236000px;}
._34{width:149.358000px;}
._3b{width:152.526000px;}
._16{width:154.968000px;}
._2c{width:158.070000px;}
._36{width:159.588000px;}
._1e{width:163.680000px;}
._22{width:165.594000px;}
._38{width:166.650000px;}
._37{width:167.772000px;}
._27{width:168.960000px;}
._1f{width:172.194000px;}
._2a{width:173.646000px;}
._3c{width:174.768000px;}
._33{width:175.890000px;}
._2f{width:177.276000px;}
._24{width:182.490000px;}
._28{width:187.044000px;}
._29{width:191.400000px;}
._23{width:214.698000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fsa{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:63.934500px;}
.y3{bottom:76.339350px;}
.y1{bottom:78.334500px;}
.y20f{bottom:140.305950px;}
.y6b{bottom:140.310450px;}
.y47{bottom:140.313450px;}
.y7b{bottom:141.610350px;}
.y24{bottom:141.885000px;}
.y277{bottom:142.946400px;}
.y188{bottom:143.640300px;}
.y1ea{bottom:143.807250px;}
.y167{bottom:144.096300px;}
.y250{bottom:144.928800px;}
.y2d8{bottom:145.059450px;}
.ye2{bottom:145.164300px;}
.y146{bottom:145.176300px;}
.y125{bottom:145.218300px;}
.y104{bottom:145.342350px;}
.y293{bottom:145.441800px;}
.y229{bottom:145.848900px;}
.y9d{bottom:145.864950px;}
.y20e{bottom:156.807450px;}
.y6a{bottom:156.811950px;}
.y23{bottom:161.685000px;}
.y1e9{bottom:161.809500px;}
.y276{bottom:161.984550px;}
.y2d7{bottom:162.309450px;}
.y46{bottom:162.364950px;}
.y7a{bottom:163.210350px;}
.y24f{bottom:165.025800px;}
.y292{bottom:165.241800px;}
.y187{bottom:165.834300px;}
.y166{bottom:166.002300px;}
.ye1{bottom:166.314300px;}
.y228{bottom:166.391400px;}
.y103{bottom:166.798350px;}
.y124{bottom:166.962300px;}
.y145{bottom:167.370300px;}
.y20d{bottom:173.308950px;}
.y45{bottom:173.313450px;}
.y2d6{bottom:179.559450px;}
.y1e8{bottom:179.811750px;}
.y275{bottom:181.042050px;}
.y22{bottom:181.485000px;}
.y1c5{bottom:183.240300px;}
.y79{bottom:184.810350px;}
.y291{bottom:185.041800px;}
.y24e{bottom:185.122800px;}
.y227{bottom:186.933900px;}
.ye0{bottom:187.464300px;}
.y165{bottom:187.908300px;}
.y186{bottom:188.028300px;}
.y102{bottom:188.254350px;}
.y123{bottom:188.706300px;}
.y144{bottom:189.576300px;}
.y20c{bottom:189.810450px;}
.y44{bottom:195.364950px;}
.y2d5{bottom:196.809450px;}
.y1e7{bottom:197.814000px;}
.y9c{bottom:200.064300px;}
.y274{bottom:200.693550px;}
.y21{bottom:201.285000px;}
.y1a4{bottom:201.490350px;}
.y290{bottom:205.138800px;}
.y1c4{bottom:205.146300px;}
.y24d{bottom:205.219800px;}
.y20b{bottom:206.311950px;}
.y69{bottom:206.313450px;}
.y78{bottom:206.410350px;}
.y226{bottom:207.476400px;}
.ydf{bottom:208.614300px;}
.y101{bottom:209.704350px;}
.y164{bottom:209.790300px;}
.y185{bottom:210.384300px;}
.y122{bottom:210.450300px;}
.y143{bottom:211.770300px;}
.y2f8{bottom:213.309450px;}
.y1e6{bottom:215.816250px;}
.y273{bottom:220.345050px;}
.y20{bottom:221.085000px;}
.y9b{bottom:222.114300px;}
.y20a{bottom:222.813450px;}
.y1a3{bottom:223.234350px;}
.y28f{bottom:225.235800px;}
.y24c{bottom:225.316800px;}
.y1c3{bottom:227.052300px;}
.y77{bottom:228.010350px;}
.y225{bottom:228.018900px;}
.y68{bottom:228.364950px;}
.yde{bottom:229.764300px;}
.y100{bottom:231.142350px;}
.y2f7{bottom:231.309450px;}
.y163{bottom:231.696300px;}
.ybd{bottom:231.732300px;}
.y43{bottom:231.779850px;}
.y121{bottom:232.194300px;}
.y184{bottom:232.740300px;}
.y1e5{bottom:233.818500px;}
.y142{bottom:233.970300px;}
.y2d4{bottom:234.901950px;}
.y272{bottom:239.996550px;}
.y1f{bottom:240.885000px;}
.y9a{bottom:244.164300px;}
.y209{bottom:244.864950px;}
.y1a2{bottom:244.978350px;}
.y28e{bottom:245.332800px;}
.y24b{bottom:245.413800px;}
.y224{bottom:248.561400px;}
.y1c2{bottom:248.958300px;}
.y2f6{bottom:249.309450px;}
.y76{bottom:249.610350px;}
.ydd{bottom:250.914300px;}
.y1e4{bottom:251.820750px;}
.yff{bottom:252.598350px;}
.y42{bottom:253.073850px;}
.ybc{bottom:253.476300px;}
.y162{bottom:253.602300px;}
.y120{bottom:253.938300px;}
.y2d3{bottom:253.959450px;}
.y183{bottom:255.096300px;}
.y141{bottom:256.182300px;}
.y67{bottom:258.114300px;}
.y271{bottom:259.648050px;}
.y1e{bottom:260.685000px;}
.y28d{bottom:265.429800px;}
.y24a{bottom:265.510800px;}
.y99{bottom:266.214300px;}
.y1a1{bottom:266.722350px;}
.y2f5{bottom:267.309450px;}
.y223{bottom:269.103900px;}
.y1e3{bottom:269.823000px;}
.y1c1{bottom:270.858300px;}
.y75{bottom:271.210350px;}
.ydc{bottom:272.064300px;}
.yfe{bottom:274.054350px;}
.y41{bottom:274.367850px;}
.ybb{bottom:275.220300px;}
.y161{bottom:275.508300px;}
.y11f{bottom:275.682300px;}
.y182{bottom:277.452300px;}
.y208{bottom:277.950750px;}
.y140{bottom:278.376300px;}
.y270{bottom:279.299550px;}
.y66{bottom:279.714300px;}
.y28c{bottom:285.526800px;}
.y249{bottom:285.607800px;}
.y1e2{bottom:287.825250px;}
.y98{bottom:288.264300px;}
.y1a0{bottom:288.466350px;}
.y1d{bottom:288.988950px;}
.y222{bottom:289.646400px;}
.y1c0{bottom:292.746300px;}
.y74{bottom:292.810350px;}
.ydb{bottom:293.214300px;}
.y2d2{bottom:293.656950px;}
.yfd{bottom:295.474350px;}
.y40{bottom:295.661850px;}
.yba{bottom:296.982300px;}
.y160{bottom:297.372300px;}
.y11e{bottom:297.426300px;}
.y26f{bottom:298.951050px;}
.y207{bottom:299.550750px;}
.y181{bottom:299.808300px;}
.y13f{bottom:300.570300px;}
.y65{bottom:301.314300px;}
.y2b3{bottom:302.905500px;}
.y28b{bottom:305.623800px;}
.y248{bottom:305.704800px;}
.y1e1{bottom:305.827500px;}
.y2f4{bottom:306.909450px;}
.y221{bottom:310.188900px;}
.y19f{bottom:310.228350px;}
.y97{bottom:310.314300px;}
.y2d1{bottom:312.714450px;}
.yda{bottom:314.364300px;}
.y73{bottom:314.410350px;}
.y1bf{bottom:314.652300px;}
.yfc{bottom:316.930350px;}
.y3f{bottom:316.955850px;}
.y26e{bottom:318.602550px;}
.yb9{bottom:318.726300px;}
.y11d{bottom:319.170300px;}
.y15f{bottom:319.278300px;}
.y2b2{bottom:320.005500px;}
.y206{bottom:321.150750px;}
.y180{bottom:322.164300px;}
.y13e{bottom:322.764300px;}
.y64{bottom:322.914300px;}
.y1e0{bottom:323.829750px;}
.y28a{bottom:325.720800px;}
.y247{bottom:325.801800px;}
.y2f3{bottom:326.709450px;}
.y220{bottom:330.731400px;}
.y2d0{bottom:331.771950px;}
.y19e{bottom:331.972350px;}
.y1c{bottom:332.188950px;}
.y96{bottom:332.364300px;}
.yd9{bottom:335.514300px;}
.y72{bottom:336.010350px;}
.y1be{bottom:336.558300px;}
.y3e{bottom:338.249850px;}
.y26d{bottom:338.251050px;}
.yfb{bottom:338.386350px;}
.yb8{bottom:340.470300px;}
.y11c{bottom:340.950300px;}
.y15e{bottom:341.184300px;}
.y1df{bottom:341.832000px;}
.y205{bottom:342.750750px;}
.y63{bottom:344.514300px;}
.y289{bottom:345.817800px;}
.y246{bottom:345.898800px;}
.y2b1{bottom:347.599500px;}
.y2cf{bottom:350.829450px;}
.y21f{bottom:351.273900px;}
.y1b{bottom:351.988950px;}
.y19d{bottom:353.716350px;}
.y95{bottom:354.414300px;}
.yd8{bottom:356.664300px;}
.y71{bottom:357.610350px;}
.y26c{bottom:357.902550px;}
.y1bd{bottom:358.440300px;}
.y3d{bottom:359.543850px;}
.y1de{bottom:359.834250px;}
.yfa{bottom:359.842350px;}
.y17f{bottom:360.264300px;}
.y13d{bottom:360.564300px;}
.yb7{bottom:362.280300px;}
.y11b{bottom:362.694300px;}
.y15d{bottom:363.090300px;}
.y204{bottom:364.350750px;}
.y288{bottom:365.914800px;}
.y245{bottom:365.995800px;}
.y62{bottom:366.114300px;}
.y2b0{bottom:367.399500px;}
.y2f2{bottom:368.109450px;}
.y2ce{bottom:369.886950px;}
.y1a{bottom:371.788950px;}
.y21e{bottom:371.816400px;}
.y19c{bottom:375.466350px;}
.y94{bottom:376.464300px;}
.y26b{bottom:377.554050px;}
.yd7{bottom:377.814300px;}
.y1dd{bottom:377.836500px;}
.y70{bottom:379.210350px;}
.y1bc{bottom:380.346300px;}
.y3c{bottom:380.837850px;}
.yf9{bottom:381.298350px;}
.yb6{bottom:384.024300px;}
.y11a{bottom:384.438300px;}
.y15c{bottom:384.996300px;}
.y287{bottom:386.032800px;}
.y244{bottom:386.092800px;}
.y2af{bottom:387.199500px;}
.y61{bottom:387.714300px;}
.y2f1{bottom:387.909450px;}
.y2cd{bottom:388.944450px;}
.y19{bottom:391.588950px;}
.y21d{bottom:392.358900px;}
.y203{bottom:394.454700px;}
.y1dc{bottom:395.838750px;}
.y19b{bottom:397.234350px;}
.y93{bottom:398.514300px;}
.yd6{bottom:398.964300px;}
.y6f{bottom:400.810350px;}
.y3b{bottom:402.131850px;}
.y1bb{bottom:402.252300px;}
.yf8{bottom:402.754350px;}
.y26a{bottom:405.708000px;}
.yb5{bottom:405.768300px;}
.y286{bottom:406.129800px;}
.y119{bottom:406.182300px;}
.y243{bottom:406.189800px;}
.y15b{bottom:406.902300px;}
.y2ae{bottom:406.999500px;}
.y2f0{bottom:407.709450px;}
.y2cc{bottom:408.001950px;}
.y60{bottom:409.314300px;}
.y18{bottom:411.388950px;}
.y21c{bottom:412.901400px;}
.y1db{bottom:413.841000px;}
.y13c{bottom:413.976300px;}
.y17e{bottom:414.006300px;}
.y19a{bottom:418.978350px;}
.yd5{bottom:420.114300px;}
.y92{bottom:420.564300px;}
.y6e{bottom:422.410350px;}
.y3a{bottom:423.425850px;}
.y1ba{bottom:424.158300px;}
.yf7{bottom:424.198350px;}
.y285{bottom:426.226800px;}
.y242{bottom:426.286800px;}
.y2ad{bottom:426.799500px;}
.y2cb{bottom:427.059450px;}
.y2ef{bottom:427.509450px;}
.yb4{bottom:427.512300px;}
.y118{bottom:427.926300px;}
.y15a{bottom:428.808300px;}
.y5f{bottom:430.914300px;}
.y17{bottom:431.188950px;}
.y1da{bottom:431.843250px;}
.y269{bottom:432.061800px;}
.y21b{bottom:433.443900px;}
.y13b{bottom:436.170300px;}
.y17d{bottom:436.362300px;}
.y199{bottom:440.722350px;}
.yd4{bottom:441.264300px;}
.y91{bottom:442.614300px;}
.y6d{bottom:444.010350px;}
.y39{bottom:444.719850px;}
.yf6{bottom:445.654350px;}
.y1b9{bottom:446.040300px;}
.y2ca{bottom:446.116950px;}
.y2ac{bottom:446.302500px;}
.y284{bottom:446.323800px;}
.y241{bottom:446.383800px;}
.y2ee{bottom:447.309450px;}
.yb3{bottom:449.256300px;}
.y117{bottom:449.670300px;}
.y1d9{bottom:449.845500px;}
.y159{bottom:450.714300px;}
.y16{bottom:450.988950px;}
.y5e{bottom:452.514300px;}
.y268{bottom:453.511800px;}
.y21a{bottom:453.986400px;}
.y13a{bottom:458.328300px;}
.y17c{bottom:458.718300px;}
.y202{bottom:459.254700px;}
.yd3{bottom:462.414300px;}
.y198{bottom:462.466350px;}
.y90{bottom:464.664300px;}
.y2c9{bottom:465.174450px;}
.y6c{bottom:465.610350px;}
.y38{bottom:466.013850px;}
.y2ab{bottom:466.102500px;}
.y283{bottom:466.420800px;}
.y240{bottom:466.480800px;}
.yf5{bottom:467.068350px;}
.y2ed{bottom:467.109450px;}
.y1d8{bottom:467.847750px;}
.y1b8{bottom:467.946300px;}
.y15{bottom:470.788950px;}
.yb2{bottom:471.000300px;}
.y116{bottom:471.420300px;}
.y267{bottom:473.311800px;}
.y5d{bottom:474.114300px;}
.y219{bottom:474.528900px;}
.y139{bottom:480.684300px;}
.y201{bottom:480.854700px;}
.y17b{bottom:481.074300px;}
.yd2{bottom:483.564300px;}
.y197{bottom:484.216350px;}
.y2c8{bottom:484.231950px;}
.y1d7{bottom:485.850000px;}
.y2aa{bottom:485.902500px;}
.y282{bottom:486.517800px;}
.y23f{bottom:486.577800px;}
.y8f{bottom:486.714300px;}
.y2ec{bottom:486.909450px;}
.y37{bottom:487.361850px;}
.y158{bottom:487.914300px;}
.yf4{bottom:488.524350px;}
.y1b7{bottom:489.852300px;}
.y14{bottom:490.588950px;}
.yb1{bottom:492.744300px;}
.y266{bottom:493.111800px;}
.y115{bottom:493.170300px;}
.y218{bottom:495.071400px;}
.y5c{bottom:495.714300px;}
.y200{bottom:502.454700px;}
.y138{bottom:503.040300px;}
.y2c7{bottom:503.289450px;}
.y17a{bottom:503.430300px;}
.y1d6{bottom:503.852250px;}
.yd1{bottom:504.714300px;}
.y2a9{bottom:505.702500px;}
.y196{bottom:505.990350px;}
.y281{bottom:506.614800px;}
.y23e{bottom:506.674800px;}
.y2eb{bottom:506.709450px;}
.y36{bottom:508.655850px;}
.y8e{bottom:508.764300px;}
.yf3{bottom:509.980350px;}
.y13{bottom:510.388950px;}
.y1b6{bottom:511.758300px;}
.y265{bottom:512.911800px;}
.yb0{bottom:514.488300px;}
.y114{bottom:514.920300px;}
.y217{bottom:515.613900px;}
.y5b{bottom:517.314300px;}
.y1d5{bottom:521.854500px;}
.y2c6{bottom:522.346950px;}
.y1ff{bottom:524.054700px;}
.y137{bottom:525.396300px;}
.y2a8{bottom:525.502500px;}
.y179{bottom:525.786300px;}
.yd0{bottom:525.864300px;}
.y2ea{bottom:526.509450px;}
.y280{bottom:526.717800px;}
.y23d{bottom:526.771800px;}
.y195{bottom:527.734350px;}
.y35{bottom:529.949850px;}
.y12{bottom:530.188950px;}
.y8d{bottom:530.814300px;}
.yf2{bottom:531.436350px;}
.y264{bottom:532.711800px;}
.y1b5{bottom:533.616300px;}
.y216{bottom:536.156400px;}
.yaf{bottom:536.232300px;}
.y113{bottom:536.670300px;}
.y5a{bottom:538.914300px;}
.y157{bottom:540.390300px;}
.y2c5{bottom:541.404450px;}
.y2a7{bottom:545.302500px;}
.y1fe{bottom:545.654700px;}
.y2e9{bottom:546.309450px;}
.y27f{bottom:546.814800px;}
.y23c{bottom:546.868800px;}
.ycf{bottom:547.014300px;}
.y136{bottom:547.752300px;}
.y178{bottom:548.142300px;}
.y194{bottom:549.478350px;}
.y11{bottom:549.988950px;}
.y34{bottom:551.243850px;}
.y263{bottom:552.511800px;}
.y1d4{bottom:552.610350px;}
.y8c{bottom:552.864300px;}
.yf1{bottom:552.892350px;}
.y1b4{bottom:555.522300px;}
.yae{bottom:557.976300px;}
.y112{bottom:558.420300px;}
.y2c4{bottom:560.461950px;}
.y59{bottom:560.514300px;}
.y156{bottom:562.296300px;}
.y2a6{bottom:565.102500px;}
.y215{bottom:565.210350px;}
.y2e8{bottom:566.109450px;}
.y27e{bottom:566.923800px;}
.y23b{bottom:566.965800px;}
.y1fd{bottom:567.254700px;}
.yce{bottom:568.164300px;}
.y10{bottom:569.788950px;}
.y135{bottom:570.108300px;}
.y177{bottom:570.498300px;}
.y193{bottom:571.222350px;}
.y262{bottom:572.311800px;}
.y33{bottom:572.537850px;}
.y1d3{bottom:574.210350px;}
.yf0{bottom:574.348350px;}
.y8b{bottom:574.914300px;}
.y1b3{bottom:577.428300px;}
.y2c3{bottom:579.519450px;}
.yad{bottom:579.720300px;}
.y111{bottom:580.182300px;}
.y58{bottom:582.114300px;}
.y155{bottom:584.202300px;}
.y2a5{bottom:584.902500px;}
.y2e7{bottom:585.909450px;}
.y27d{bottom:587.020800px;}
.y23a{bottom:587.062800px;}
.y1fc{bottom:588.854700px;}
.ycd{bottom:589.314300px;}
.y261{bottom:592.111800px;}
.y134{bottom:592.428300px;}
.y176{bottom:592.854300px;}
.y192{bottom:592.966350px;}
.y32{bottom:593.831850px;}
.yef{bottom:595.804350px;}
.y1d2{bottom:595.810350px;}
.y8a{bottom:596.964300px;}
.yf{bottom:598.092900px;}
.y2c2{bottom:598.576950px;}
.y1b2{bottom:599.334300px;}
.yac{bottom:601.476300px;}
.y110{bottom:601.926300px;}
.y57{bottom:603.714300px;}
.y2a4{bottom:604.702500px;}
.y2e6{bottom:605.709450px;}
.y154{bottom:606.108300px;}
.y27c{bottom:607.117800px;}
.y239{bottom:607.159800px;}
.y1fb{bottom:610.454700px;}
.ycc{bottom:610.464300px;}
.y260{bottom:611.911800px;}
.y191{bottom:614.710350px;}
.y214{bottom:614.730300px;}
.y133{bottom:614.784300px;}
.y31{bottom:615.125850px;}
.y175{bottom:615.210300px;}
.yee{bottom:617.260350px;}
.y2c1{bottom:617.634450px;}
.y89{bottom:619.014300px;}
.y1b1{bottom:621.240300px;}
.yab{bottom:623.220300px;}
.y10f{bottom:623.670300px;}
.y2a3{bottom:624.502500px;}
.y56{bottom:625.314300px;}
.y2e5{bottom:625.509450px;}
.y1d1{bottom:625.914300px;}
.y27b{bottom:627.214800px;}
.y238{bottom:627.256800px;}
.y153{bottom:627.960300px;}
.ycb{bottom:631.614300px;}
.y25f{bottom:631.711800px;}
.y1fa{bottom:632.054700px;}
.y30{bottom:636.419850px;}
.y2c0{bottom:636.691950px;}
.y213{bottom:637.086300px;}
.y132{bottom:637.140300px;}
.y174{bottom:637.566300px;}
.y88{bottom:641.064300px;}
.y1b0{bottom:643.146300px;}
.y2a2{bottom:644.302500px;}
.y190{bottom:644.970300px;}
.yaa{bottom:645.042300px;}
.y2e4{bottom:645.309450px;}
.y10e{bottom:645.474300px;}
.y55{bottom:646.914300px;}
.y27a{bottom:647.320800px;}
.y237{bottom:647.353800px;}
.y152{bottom:649.866300px;}
.y25e{bottom:651.511800px;}
.yca{bottom:652.764300px;}
.yed{bottom:653.560350px;}
.y1f9{bottom:653.654700px;}
.y2bf{bottom:655.749450px;}
.y2f{bottom:657.713850px;}
.y212{bottom:659.442300px;}
.y131{bottom:659.496300px;}
.y173{bottom:659.922300px;}
.ye{bottom:662.892900px;}
.y87{bottom:663.114300px;}
.y2a1{bottom:664.102500px;}
.y1af{bottom:665.052300px;}
.y2e3{bottom:665.109450px;}
.y18f{bottom:666.714300px;}
.ya9{bottom:666.786300px;}
.y10d{bottom:667.218300px;}
.y279{bottom:667.417800px;}
.y236{bottom:667.450800px;}
.y54{bottom:668.514300px;}
.y25d{bottom:671.311800px;}
.y151{bottom:671.772300px;}
.yc9{bottom:673.914300px;}
.y2be{bottom:674.806950px;}
.y1f8{bottom:675.254700px;}
.y2e{bottom:679.007850px;}
.y211{bottom:681.798300px;}
.y130{bottom:681.852300px;}
.y172{bottom:682.278300px;}
.yd{bottom:682.692900px;}
.y2a0{bottom:683.902500px;}
.y2e2{bottom:684.909450px;}
.y86{bottom:685.164300px;}
.y1ae{bottom:686.958300px;}
.y278{bottom:687.514800px;}
.y235{bottom:687.547800px;}
.ya8{bottom:688.530300px;}
.y10c{bottom:688.962300px;}
.y53{bottom:690.114300px;}
.y1d0{bottom:690.714300px;}
.y25c{bottom:691.111800px;}
.y150{bottom:693.678300px;}
.y2bd{bottom:693.864450px;}
.yc8{bottom:695.064300px;}
.y1f7{bottom:696.854700px;}
.y29f{bottom:703.702500px;}
.y210{bottom:704.154300px;}
.y12f{bottom:704.208300px;}
.y171{bottom:704.634300px;}
.yec{bottom:704.656350px;}
.y2e1{bottom:704.709450px;}
.y85{bottom:707.214300px;}
.y234{bottom:707.644800px;}
.y2d{bottom:708.811800px;}
.y1ad{bottom:708.816300px;}
.ya7{bottom:710.274300px;}
.y10b{bottom:710.706300px;}
.y25b{bottom:710.911800px;}
.y52{bottom:711.714300px;}
.y1cf{bottom:712.314300px;}
.y2bc{bottom:712.921950px;}
.y14f{bottom:715.584300px;}
.yc7{bottom:716.214300px;}
.y29e{bottom:723.205500px;}
.yc{bottom:724.092900px;}
.y2e0{bottom:724.509450px;}
.yeb{bottom:726.112350px;}
.y12e{bottom:726.510300px;}
.y170{bottom:726.990300px;}
.y233{bottom:727.741800px;}
.y84{bottom:729.264300px;}
.y25a{bottom:730.711800px;}
.y1ac{bottom:730.722300px;}
.y1f6{bottom:731.185950px;}
.y18e{bottom:731.976300px;}
.y2bb{bottom:731.979450px;}
.ya6{bottom:732.018300px;}
.y10a{bottom:732.450300px;}
.y51{bottom:733.314300px;}
.y1ce{bottom:733.914300px;}
.yc6{bottom:737.364300px;}
.y14e{bottom:737.490300px;}
.y29d{bottom:743.005500px;}
.y2df{bottom:744.309450px;}
.yea{bottom:747.568350px;}
.y232{bottom:747.838800px;}
.y12d{bottom:748.866300px;}
.y1f5{bottom:749.188200px;}
.y16f{bottom:749.346300px;}
.y259{bottom:750.511800px;}
.y2ba{bottom:751.036950px;}
.y83{bottom:751.314300px;}
.y1ab{bottom:752.628300px;}
.y18d{bottom:753.720300px;}
.ya5{bottom:753.762300px;}
.y109{bottom:754.194300px;}
.yb{bottom:754.692900px;}
.y50{bottom:754.914300px;}
.y1cd{bottom:755.514300px;}
.yc5{bottom:758.514300px;}
.y14d{bottom:759.396300px;}
.y29c{bottom:762.805500px;}
.y2de{bottom:764.109450px;}
.y1f4{bottom:767.190450px;}
.y231{bottom:767.935800px;}
.ye9{bottom:769.024350px;}
.y2b9{bottom:770.094450px;}
.y258{bottom:770.311800px;}
.y12c{bottom:771.222300px;}
.y16e{bottom:771.702300px;}
.y2c{bottom:772.687800px;}
.y82{bottom:773.364300px;}
.y1aa{bottom:774.534300px;}
.y18c{bottom:775.488300px;}
.ya4{bottom:775.506300px;}
.y108{bottom:775.938300px;}
.y4f{bottom:776.514300px;}
.y1cc{bottom:777.126300px;}
.yc4{bottom:779.664300px;}
.y14c{bottom:781.302300px;}
.y29b{bottom:782.605500px;}
.y2dd{bottom:783.909450px;}
.y1f3{bottom:785.192700px;}
.ya{bottom:785.292900px;}
.y230{bottom:788.032800px;}
.y2b8{bottom:789.151950px;}
.y257{bottom:790.111800px;}
.ye8{bottom:790.480350px;}
.y2b{bottom:792.190800px;}
.y12b{bottom:793.578300px;}
.y16d{bottom:794.058300px;}
.y81{bottom:795.414300px;}
.y1a9{bottom:796.440300px;}
.y18b{bottom:797.232300px;}
.ya3{bottom:797.250300px;}
.y107{bottom:797.682300px;}
.y4e{bottom:798.114300px;}
.y1cb{bottom:798.726300px;}
.yc3{bottom:800.814300px;}
.y29a{bottom:802.405500px;}
.y1f2{bottom:803.194950px;}
.y14b{bottom:803.208300px;}
.y2dc{bottom:803.709450px;}
.y22f{bottom:808.129800px;}
.y2b7{bottom:808.209450px;}
.y256{bottom:809.911800px;}
.y2a{bottom:811.693800px;}
.ye7{bottom:811.936350px;}
.y12a{bottom:815.934300px;}
.y16c{bottom:816.420300px;}
.y80{bottom:817.464300px;}
.y1a8{bottom:818.346300px;}
.y18a{bottom:818.976300px;}
.ya2{bottom:818.994300px;}
.y106{bottom:819.426300px;}
.y4d{bottom:819.714300px;}
.y1ca{bottom:820.326300px;}
.y1f1{bottom:821.197200px;}
.yc2{bottom:821.964300px;}
.y299{bottom:822.205500px;}
.y14a{bottom:825.096300px;}
.y22e{bottom:828.226800px;}
.y255{bottom:829.711800px;}
.y29{bottom:831.196800px;}
.ye6{bottom:833.392350px;}
.y129{bottom:838.290300px;}
.y16b{bottom:838.776300px;}
.y1f0{bottom:839.199450px;}
.y7f{bottom:839.514300px;}
.y1a7{bottom:840.252300px;}
.y9{bottom:840.554400px;}
.y189{bottom:840.720300px;}
.ya1{bottom:840.738300px;}
.y105{bottom:841.170300px;}
.y4c{bottom:841.314300px;}
.y1c9{bottom:841.926300px;}
.y298{bottom:842.005500px;}
.yc1{bottom:843.114300px;}
.y2db{bottom:845.109300px;}
.y149{bottom:847.002300px;}
.y2b6{bottom:848.109300px;}
.y22d{bottom:848.323800px;}
.y254{bottom:849.511800px;}
.y28{bottom:850.699800px;}
.ye5{bottom:854.848350px;}
.y1ef{bottom:857.201700px;}
.y8{bottom:858.554400px;}
.y128{bottom:860.646300px;}
.y16a{bottom:861.132300px;}
.y7e{bottom:861.564300px;}
.y297{bottom:861.805500px;}
.y1a6{bottom:862.158300px;}
.ya0{bottom:862.482300px;}
.y4b{bottom:862.914300px;}
.y1c8{bottom:863.526300px;}
.yc0{bottom:864.264300px;}
.y22c{bottom:868.420800px;}
.y148{bottom:868.908300px;}
.y253{bottom:869.311800px;}
.y27{bottom:870.202800px;}
.y1ee{bottom:875.203950px;}
.ye4{bottom:876.304350px;}
.y7{bottom:876.554400px;}
.y6{bottom:876.556800px;}
.y296{bottom:881.605500px;}
.y127{bottom:883.002300px;}
.y169{bottom:883.326300px;}
.y7d{bottom:883.614300px;}
.y1a5{bottom:884.064300px;}
.y9f{bottom:884.226300px;}
.y4a{bottom:884.514300px;}
.y1c7{bottom:885.126300px;}
.ybf{bottom:885.414300px;}
.y2da{bottom:886.509300px;}
.y2b5{bottom:888.015300px;}
.y22b{bottom:888.517800px;}
.y252{bottom:889.111800px;}
.y26{bottom:889.705800px;}
.y147{bottom:890.814300px;}
.y1ed{bottom:893.206200px;}
.ye3{bottom:897.760350px;}
.y295{bottom:901.405500px;}
.y126{bottom:905.358300px;}
.y168{bottom:905.520300px;}
.y7c{bottom:905.664300px;}
.y9e{bottom:905.970300px;}
.y49{bottom:906.114300px;}
.y1c6{bottom:906.420300px;}
.ybe{bottom:906.564300px;}
.y2d9{bottom:908.109300px;}
.y22a{bottom:908.614800px;}
.y2b4{bottom:908.859300px;}
.y251{bottom:908.911800px;}
.y25{bottom:909.208800px;}
.y5{bottom:910.711800px;}
.y1ec{bottom:911.208450px;}
.y48{bottom:927.714300px;}
.y4{bottom:928.711800px;}
.y1eb{bottom:929.210700px;}
.y294{bottom:929.709450px;}
.hb{height:34.734375px;}
.h3{height:40.283203px;}
.ha{height:40.523438px;}
.h2{height:46.312500px;}
.h7{height:50.947266px;}
.hc{height:54.996094px;}
.h4{height:56.041992px;}
.h5{height:57.890625px;}
.h16{height:60.785156px;}
.hd{height:61.136719px;}
.h8{height:63.679688px;}
.h17{height:63.691688px;}
.h18{height:63.757087px;}
.h9{height:69.468750px;}
.h12{height:69.492750px;}
.hf{height:69.516750px;}
.h11{height:69.540750px;}
.h14{height:69.564750px;}
.h10{height:69.612750px;}
.he{height:69.636750px;}
.h15{height:69.660750px;}
.h13{height:69.684750px;}
.h6{height:98.414062px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:76.535400px;}
.x8{left:97.795350px;}
.xa{left:119.050950px;}
.xb{left:140.301900px;}
.x5{left:142.216050px;}
.x9{left:150.670350px;}
.xc{left:187.076850px;}
.xf{left:199.354200px;}
.x7{left:237.243450px;}
.x1{left:281.922000px;}
.x6{left:389.657550px;}
.x2{left:419.415600px;}
.xe{left:508.755750px;}
.xd{left:517.719000px;}
.x3{left:602.539350px;}
@media print{
.v5{vertical-align:-23.680000pt;}
.v3{vertical-align:-19.733333pt;}
.v4{vertical-align:-12.800000pt;}
.v7{vertical-align:-11.722667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v6{vertical-align:12.800000pt;}
.v2{vertical-align:23.680000pt;}
.ls47{letter-spacing:-6.976000pt;}
.ls36{letter-spacing:-6.912000pt;}
.ls2a{letter-spacing:-6.528000pt;}
.ls5e{letter-spacing:-6.464000pt;}
.ls2b{letter-spacing:-6.400000pt;}
.ls5d{letter-spacing:-5.888000pt;}
.ls56{letter-spacing:-5.120000pt;}
.ls21{letter-spacing:-3.904000pt;}
.ls5c{letter-spacing:-3.520000pt;}
.ls8f{letter-spacing:-3.109333pt;}
.ls7d{letter-spacing:-2.288000pt;}
.ls67{letter-spacing:-0.768000pt;}
.lsa{letter-spacing:-0.704000pt;}
.ls8{letter-spacing:-0.645333pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.586667pt;}
.ls46{letter-spacing:-0.576000pt;}
.lsf{letter-spacing:-0.528000pt;}
.ls35{letter-spacing:-0.512000pt;}
.ls83{letter-spacing:-0.469333pt;}
.ls29{letter-spacing:-0.448000pt;}
.ls80{letter-spacing:-0.410667pt;}
.ls2c{letter-spacing:-0.405333pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls49{letter-spacing:-0.304000pt;}
.ls8e{letter-spacing:-0.293333pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls48{letter-spacing:-0.253333pt;}
.ls9{letter-spacing:-0.234667pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls91{letter-spacing:-0.176000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.117333pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls7e{letter-spacing:-0.058667pt;}
.ls78{letter-spacing:-0.050667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.001600pt;}
.ls4d{letter-spacing:0.006400pt;}
.ls8c{letter-spacing:0.009067pt;}
.ls82{letter-spacing:0.009600pt;}
.ls22{letter-spacing:0.010133pt;}
.ls30{letter-spacing:0.010667pt;}
.ls2e{letter-spacing:0.024533pt;}
.ls50{letter-spacing:0.034133pt;}
.ls95{letter-spacing:0.058667pt;}
.ls38{letter-spacing:0.064000pt;}
.ls6f{letter-spacing:0.065067pt;}
.ls24{letter-spacing:0.100800pt;}
.ls1b{letter-spacing:0.108800pt;}
.ls6b{letter-spacing:0.109333pt;}
.ls72{letter-spacing:0.112000pt;}
.ls8b{letter-spacing:0.117333pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls3c{letter-spacing:0.134400pt;}
.ls25{letter-spacing:0.148267pt;}
.ls4b{letter-spacing:0.152000pt;}
.ls4c{letter-spacing:0.152533pt;}
.ls9b{letter-spacing:0.176000pt;}
.ls69{letter-spacing:0.189867pt;}
.ls16{letter-spacing:0.192000pt;}
.ls3e{letter-spacing:0.202133pt;}
.ls40{letter-spacing:0.211733pt;}
.ls45{letter-spacing:0.221333pt;}
.ls74{letter-spacing:0.224000pt;}
.ls9c{letter-spacing:0.234667pt;}
.ls17{letter-spacing:0.256000pt;}
.ls77{letter-spacing:0.280000pt;}
.ls7f{letter-spacing:0.293333pt;}
.ls87{letter-spacing:0.303467pt;}
.ls37{letter-spacing:0.308267pt;}
.ls59{letter-spacing:0.313600pt;}
.ls18{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.352000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls75{letter-spacing:0.392000pt;}
.ls88{letter-spacing:0.410667pt;}
.ls3f{letter-spacing:0.438933pt;}
.ls14{letter-spacing:0.448000pt;}
.ls86{letter-spacing:0.469333pt;}
.ls58{letter-spacing:0.486933pt;}
.ls6e{letter-spacing:0.489600pt;}
.ls15{letter-spacing:0.512000pt;}
.ls27{letter-spacing:0.516267pt;}
.ls98{letter-spacing:0.528000pt;}
.ls73{letter-spacing:0.560000pt;}
.ls19{letter-spacing:0.576000pt;}
.lsc{letter-spacing:0.586667pt;}
.ls89{letter-spacing:0.601067pt;}
.ls76{letter-spacing:0.616000pt;}
.ls1f{letter-spacing:0.640000pt;}
.ls8d{letter-spacing:0.645333pt;}
.lsd{letter-spacing:0.704000pt;}
.ls6c{letter-spacing:0.710400pt;}
.ls44{letter-spacing:0.736000pt;}
.lse{letter-spacing:0.768000pt;}
.ls26{letter-spacing:0.832000pt;}
.ls8a{letter-spacing:0.880000pt;}
.ls6a{letter-spacing:0.896000pt;}
.ls7b{letter-spacing:0.938667pt;}
.ls90{letter-spacing:0.997333pt;}
.ls7c{letter-spacing:1.056000pt;}
.ls79{letter-spacing:1.088000pt;}
.ls62{letter-spacing:1.216000pt;}
.ls55{letter-spacing:1.792000pt;}
.ls2f{letter-spacing:1.920000pt;}
.ls2d{letter-spacing:2.048000pt;}
.ls4a{letter-spacing:2.304000pt;}
.ls3a{letter-spacing:2.368000pt;}
.ls3b{letter-spacing:2.496000pt;}
.ls39{letter-spacing:2.752000pt;}
.ls66{letter-spacing:2.790400pt;}
.ls84{letter-spacing:2.921600pt;}
.ls85{letter-spacing:2.933333pt;}
.ls5a{letter-spacing:3.136000pt;}
.ls53{letter-spacing:3.200000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls70{letter-spacing:4.012800pt;}
.ls81{letter-spacing:4.165333pt;}
.ls71{letter-spacing:4.192000pt;}
.ls34{letter-spacing:4.217600pt;}
.ls33{letter-spacing:4.224000pt;}
.ls68{letter-spacing:4.352000pt;}
.ls31{letter-spacing:4.416000pt;}
.ls65{letter-spacing:4.486400pt;}
.ls28{letter-spacing:4.544000pt;}
.ls3{letter-spacing:5.226667pt;}
.ls7a{letter-spacing:5.333333pt;}
.ls5f{letter-spacing:5.440000pt;}
.ls63{letter-spacing:5.696000pt;}
.ls60{letter-spacing:5.715200pt;}
.ls61{letter-spacing:5.760000pt;}
.ls1{letter-spacing:5.866667pt;}
.ls23{letter-spacing:5.888000pt;}
.ls43{letter-spacing:5.926400pt;}
.ls57{letter-spacing:6.080000pt;}
.ls4f{letter-spacing:6.336000pt;}
.ls4{letter-spacing:6.400000pt;}
.ls64{letter-spacing:6.412800pt;}
.ls6d{letter-spacing:6.515200pt;}
.ls32{letter-spacing:7.238400pt;}
.ls54{letter-spacing:8.640000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls41{letter-spacing:9.177600pt;}
.ls52{letter-spacing:9.203200pt;}
.ls42{letter-spacing:9.216000pt;}
.ls51{letter-spacing:9.228800pt;}
.ls4e{letter-spacing:9.280000pt;}
.ls5b{letter-spacing:9.452800pt;}
.ls99{letter-spacing:9.680000pt;}
.ls92{letter-spacing:9.738667pt;}
.ls96{letter-spacing:9.797333pt;}
.ls94{letter-spacing:10.208000pt;}
.ls93{letter-spacing:10.266667pt;}
.ls97{letter-spacing:10.618667pt;}
.ls9a{letter-spacing:17.600000pt;}
.ws80{word-spacing:-34.085333pt;}
.ws0{word-spacing:-28.757333pt;}
.ws3{word-spacing:-24.384000pt;}
.ws7f{word-spacing:-22.208000pt;}
.ws5e{word-spacing:-20.320000pt;}
.ws47{word-spacing:-18.496000pt;}
.ws38{word-spacing:-18.304000pt;}
.ws2c{word-spacing:-18.240000pt;}
.ws4f{word-spacing:-18.176000pt;}
.ws2a{word-spacing:-17.984000pt;}
.ws2e{word-spacing:-17.920000pt;}
.ws42{word-spacing:-17.664000pt;}
.ws83{word-spacing:-17.600000pt;}
.ws4b{word-spacing:-17.536000pt;}
.ws34{word-spacing:-17.472000pt;}
.ws6b{word-spacing:-16.954667pt;}
.ws5c{word-spacing:-16.576000pt;}
.ws66{word-spacing:-16.485333pt;}
.ws56{word-spacing:-16.384000pt;}
.ws1a{word-spacing:-16.256000pt;}
.ws5d{word-spacing:-16.192000pt;}
.ws2b{word-spacing:-16.128000pt;}
.ws67{word-spacing:-16.016000pt;}
.ws43{word-spacing:-16.000000pt;}
.ws3a{word-spacing:-15.936000pt;}
.ws51{word-spacing:-15.872000pt;}
.ws1b{word-spacing:-15.808000pt;}
.ws44{word-spacing:-15.744000pt;}
.ws53{word-spacing:-15.736000pt;}
.ws3d{word-spacing:-15.616000pt;}
.ws3c{word-spacing:-15.488000pt;}
.ws52{word-spacing:-15.424000pt;}
.ws33{word-spacing:-15.360000pt;}
.ws3b{word-spacing:-15.296000pt;}
.ws4d{word-spacing:-15.104000pt;}
.ws1{word-spacing:-14.986667pt;}
.ws81{word-spacing:-14.666667pt;}
.ws4{word-spacing:-14.490667pt;}
.ws75{word-spacing:-14.373333pt;}
.ws69{word-spacing:-13.962667pt;}
.ws2{word-spacing:-13.904000pt;}
.ws1c{word-spacing:-11.904000pt;}
.ws12{word-spacing:-10.790400pt;}
.ws45{word-spacing:-10.688000pt;}
.ws78{word-spacing:-10.618667pt;}
.ws79{word-spacing:-10.266667pt;}
.ws7b{word-spacing:-10.208000pt;}
.ws7d{word-spacing:-9.797333pt;}
.ws77{word-spacing:-9.738667pt;}
.ws7e{word-spacing:-9.680000pt;}
.ws2d{word-spacing:-9.408000pt;}
.ws8{word-spacing:-9.066667pt;}
.wsb{word-spacing:-6.400000pt;}
.ws7{word-spacing:-5.866667pt;}
.ws76{word-spacing:-5.333333pt;}
.ws9{word-spacing:-5.226667pt;}
.ws5{word-spacing:-3.733333pt;}
.ws46{word-spacing:-3.200000pt;}
.ws4c{word-spacing:-1.216000pt;}
.ws5f{word-spacing:-1.088000pt;}
.ws64{word-spacing:-1.056000pt;}
.ws71{word-spacing:-0.997333pt;}
.ws63{word-spacing:-0.938667pt;}
.ws50{word-spacing:-0.896000pt;}
.ws72{word-spacing:-0.880000pt;}
.ws31{word-spacing:-0.832000pt;}
.ws19{word-spacing:-0.768000pt;}
.ws16{word-spacing:-0.704000pt;}
.ws73{word-spacing:-0.645333pt;}
.ws21{word-spacing:-0.640000pt;}
.ws59{word-spacing:-0.616000pt;}
.ws13{word-spacing:-0.586667pt;}
.ws29{word-spacing:-0.576000pt;}
.ws55{word-spacing:-0.560000pt;}
.ws7a{word-spacing:-0.528000pt;}
.ws25{word-spacing:-0.512000pt;}
.ws6d{word-spacing:-0.469333pt;}
.ws22{word-spacing:-0.448000pt;}
.ws6e{word-spacing:-0.410667pt;}
.ws58{word-spacing:-0.392000pt;}
.ws1e{word-spacing:-0.384000pt;}
.ws10{word-spacing:-0.352000pt;}
.ws28{word-spacing:-0.320000pt;}
.ws62{word-spacing:-0.293333pt;}
.ws5a{word-spacing:-0.280000pt;}
.ws27{word-spacing:-0.256000pt;}
.ws82{word-spacing:-0.234667pt;}
.ws57{word-spacing:-0.224000pt;}
.ws26{word-spacing:-0.192000pt;}
.ws24{word-spacing:-0.128000pt;}
.ws6c{word-spacing:-0.117333pt;}
.ws54{word-spacing:-0.112000pt;}
.ws39{word-spacing:-0.064000pt;}
.ws7c{word-spacing:-0.058667pt;}
.ws11{word-spacing:-0.038400pt;}
.ws68{word-spacing:-0.035200pt;}
.ws6{word-spacing:0.000000pt;}
.ws5b{word-spacing:0.050667pt;}
.ws61{word-spacing:0.058667pt;}
.ws20{word-spacing:0.064000pt;}
.wsa{word-spacing:0.117333pt;}
.ws18{word-spacing:0.128000pt;}
.ws74{word-spacing:0.176000pt;}
.ws23{word-spacing:0.192000pt;}
.wse{word-spacing:0.234667pt;}
.ws40{word-spacing:0.253333pt;}
.ws1f{word-spacing:0.256000pt;}
.ws70{word-spacing:0.293333pt;}
.ws41{word-spacing:0.304000pt;}
.ws17{word-spacing:0.320000pt;}
.ws15{word-spacing:0.384000pt;}
.ws32{word-spacing:0.405333pt;}
.ws65{word-spacing:0.410667pt;}
.ws2f{word-spacing:0.448000pt;}
.ws6a{word-spacing:0.469333pt;}
.ws35{word-spacing:0.512000pt;}
.ws14{word-spacing:0.528000pt;}
.ws3e{word-spacing:0.576000pt;}
.wsc{word-spacing:0.586667pt;}
.ws1d{word-spacing:0.640000pt;}
.wsd{word-spacing:0.645333pt;}
.wsf{word-spacing:0.704000pt;}
.ws4e{word-spacing:0.768000pt;}
.ws60{word-spacing:2.288000pt;}
.ws6f{word-spacing:3.109333pt;}
.ws48{word-spacing:3.520000pt;}
.ws49{word-spacing:5.888000pt;}
.ws37{word-spacing:6.400000pt;}
.ws4a{word-spacing:6.464000pt;}
.ws30{word-spacing:6.528000pt;}
.ws36{word-spacing:6.912000pt;}
.ws3f{word-spacing:6.976000pt;}
._40{margin-left:-12.362133pt;}
._3f{margin-left:-10.267200pt;}
._d{margin-left:-9.284267pt;}
._b{margin-left:-8.305067pt;}
._9{margin-left:-6.618667pt;}
._3{margin-left:-5.004800pt;}
._7{margin-left:-3.807467pt;}
._1{margin-left:-2.415467pt;}
._5{margin-left:-1.463467pt;}
._4{width:1.006933pt;}
._2{width:2.025126pt;}
._0{width:2.986667pt;}
._8{width:4.517333pt;}
._e{width:5.527467pt;}
._f{width:6.922667pt;}
._c{width:8.622400pt;}
._6{width:10.286933pt;}
._11{width:11.511467pt;}
._13{width:12.992267pt;}
._15{width:13.887200pt;}
._a{width:15.277333pt;}
._3e{width:18.309867pt;}
._3d{width:19.653333pt;}
._12{width:34.598400pt;}
._10{width:50.598400pt;}
._17{width:71.808000pt;}
._1b{width:81.488000pt;}
._21{width:84.949333pt;}
._2d{width:87.413333pt;}
._2e{width:96.213333pt;}
._35{width:98.794667pt;}
._2b{width:105.424000pt;}
._1a{width:106.714667pt;}
._39{width:109.706667pt;}
._1c{width:112.464000pt;}
._31{width:114.048000pt;}
._1d{width:117.216000pt;}
._20{width:118.741333pt;}
._26{width:120.912000pt;}
._19{width:123.200000pt;}
._14{width:124.314667pt;}
._32{width:126.837333pt;}
._18{width:128.069333pt;}
._3a{width:129.184000pt;}
._25{width:130.592000pt;}
._30{width:131.765333pt;}
._34{width:132.762667pt;}
._3b{width:135.578667pt;}
._16{width:137.749333pt;}
._2c{width:140.506667pt;}
._36{width:141.856000pt;}
._1e{width:145.493333pt;}
._22{width:147.194667pt;}
._38{width:148.133333pt;}
._37{width:149.130667pt;}
._27{width:150.186667pt;}
._1f{width:153.061333pt;}
._2a{width:154.352000pt;}
._3c{width:155.349333pt;}
._33{width:156.346667pt;}
._2f{width:157.578667pt;}
._24{width:162.213333pt;}
._28{width:166.261333pt;}
._29{width:170.133333pt;}
._23{width:190.842667pt;}
.fs7{font-size:32.000000pt;}
.fsa{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:56.830667pt;}
.y3{bottom:67.857200pt;}
.y1{bottom:69.630667pt;}
.y20f{bottom:124.716400pt;}
.y6b{bottom:124.720400pt;}
.y47{bottom:124.723067pt;}
.y7b{bottom:125.875867pt;}
.y24{bottom:126.120000pt;}
.y277{bottom:127.063467pt;}
.y188{bottom:127.680267pt;}
.y1ea{bottom:127.828667pt;}
.y167{bottom:128.085600pt;}
.y250{bottom:128.825600pt;}
.y2d8{bottom:128.941733pt;}
.ye2{bottom:129.034933pt;}
.y146{bottom:129.045600pt;}
.y125{bottom:129.082933pt;}
.y104{bottom:129.193200pt;}
.y293{bottom:129.281600pt;}
.y229{bottom:129.643467pt;}
.y9d{bottom:129.657733pt;}
.y20e{bottom:139.384400pt;}
.y6a{bottom:139.388400pt;}
.y23{bottom:143.720000pt;}
.y1e9{bottom:143.830667pt;}
.y276{bottom:143.986267pt;}
.y2d7{bottom:144.275067pt;}
.y46{bottom:144.324400pt;}
.y7a{bottom:145.075867pt;}
.y24f{bottom:146.689600pt;}
.y292{bottom:146.881600pt;}
.y187{bottom:147.408267pt;}
.y166{bottom:147.557600pt;}
.ye1{bottom:147.834933pt;}
.y228{bottom:147.903467pt;}
.y103{bottom:148.265200pt;}
.y124{bottom:148.410933pt;}
.y145{bottom:148.773600pt;}
.y20d{bottom:154.052400pt;}
.y45{bottom:154.056400pt;}
.y2d6{bottom:159.608400pt;}
.y1e8{bottom:159.832667pt;}
.y275{bottom:160.926267pt;}
.y22{bottom:161.320000pt;}
.y1c5{bottom:162.880267pt;}
.y79{bottom:164.275867pt;}
.y291{bottom:164.481600pt;}
.y24e{bottom:164.553600pt;}
.y227{bottom:166.163467pt;}
.ye0{bottom:166.634933pt;}
.y165{bottom:167.029600pt;}
.y186{bottom:167.136267pt;}
.y102{bottom:167.337200pt;}
.y123{bottom:167.738933pt;}
.y144{bottom:168.512267pt;}
.y20c{bottom:168.720400pt;}
.y44{bottom:173.657733pt;}
.y2d5{bottom:174.941733pt;}
.y1e7{bottom:175.834667pt;}
.y9c{bottom:177.834933pt;}
.y274{bottom:178.394267pt;}
.y21{bottom:178.920000pt;}
.y1a4{bottom:179.102533pt;}
.y290{bottom:182.345600pt;}
.y1c4{bottom:182.352267pt;}
.y24d{bottom:182.417600pt;}
.y20b{bottom:183.388400pt;}
.y69{bottom:183.389733pt;}
.y78{bottom:183.475867pt;}
.y226{bottom:184.423467pt;}
.ydf{bottom:185.434933pt;}
.y101{bottom:186.403867pt;}
.y164{bottom:186.480267pt;}
.y185{bottom:187.008267pt;}
.y122{bottom:187.066933pt;}
.y143{bottom:188.240267pt;}
.y2f8{bottom:189.608400pt;}
.y1e6{bottom:191.836667pt;}
.y273{bottom:195.862267pt;}
.y20{bottom:196.520000pt;}
.y9b{bottom:197.434933pt;}
.y20a{bottom:198.056400pt;}
.y1a3{bottom:198.430533pt;}
.y28f{bottom:200.209600pt;}
.y24c{bottom:200.281600pt;}
.y1c3{bottom:201.824267pt;}
.y77{bottom:202.675867pt;}
.y225{bottom:202.683467pt;}
.y68{bottom:202.991067pt;}
.yde{bottom:204.234933pt;}
.y100{bottom:205.459867pt;}
.y2f7{bottom:205.608400pt;}
.y163{bottom:205.952267pt;}
.ybd{bottom:205.984267pt;}
.y43{bottom:206.026533pt;}
.y121{bottom:206.394933pt;}
.y184{bottom:206.880267pt;}
.y1e5{bottom:207.838667pt;}
.y142{bottom:207.973600pt;}
.y2d4{bottom:208.801733pt;}
.y272{bottom:213.330267pt;}
.y1f{bottom:214.120000pt;}
.y9a{bottom:217.034933pt;}
.y209{bottom:217.657733pt;}
.y1a2{bottom:217.758533pt;}
.y28e{bottom:218.073600pt;}
.y24b{bottom:218.145600pt;}
.y224{bottom:220.943467pt;}
.y1c2{bottom:221.296267pt;}
.y2f6{bottom:221.608400pt;}
.y76{bottom:221.875867pt;}
.ydd{bottom:223.034933pt;}
.y1e4{bottom:223.840667pt;}
.yff{bottom:224.531867pt;}
.y42{bottom:224.954533pt;}
.ybc{bottom:225.312267pt;}
.y162{bottom:225.424267pt;}
.y120{bottom:225.722933pt;}
.y2d3{bottom:225.741733pt;}
.y183{bottom:226.752267pt;}
.y141{bottom:227.717600pt;}
.y67{bottom:229.434933pt;}
.y271{bottom:230.798267pt;}
.y1e{bottom:231.720000pt;}
.y28d{bottom:235.937600pt;}
.y24a{bottom:236.009600pt;}
.y99{bottom:236.634933pt;}
.y1a1{bottom:237.086533pt;}
.y2f5{bottom:237.608400pt;}
.y223{bottom:239.203467pt;}
.y1e3{bottom:239.842667pt;}
.y1c1{bottom:240.762933pt;}
.y75{bottom:241.075867pt;}
.ydc{bottom:241.834933pt;}
.yfe{bottom:243.603867pt;}
.y41{bottom:243.882533pt;}
.ybb{bottom:244.640267pt;}
.y161{bottom:244.896267pt;}
.y11f{bottom:245.050933pt;}
.y182{bottom:246.624267pt;}
.y208{bottom:247.067333pt;}
.y140{bottom:247.445600pt;}
.y270{bottom:248.266267pt;}
.y66{bottom:248.634933pt;}
.y28c{bottom:253.801600pt;}
.y249{bottom:253.873600pt;}
.y1e2{bottom:255.844667pt;}
.y98{bottom:256.234933pt;}
.y1a0{bottom:256.414533pt;}
.y1d{bottom:256.879067pt;}
.y222{bottom:257.463467pt;}
.y1c0{bottom:260.218933pt;}
.y74{bottom:260.275867pt;}
.ydb{bottom:260.634933pt;}
.y2d2{bottom:261.028400pt;}
.yfd{bottom:262.643867pt;}
.y40{bottom:262.810533pt;}
.yba{bottom:263.984267pt;}
.y160{bottom:264.330933pt;}
.y11e{bottom:264.378933pt;}
.y26f{bottom:265.734267pt;}
.y207{bottom:266.267333pt;}
.y181{bottom:266.496267pt;}
.y13f{bottom:267.173600pt;}
.y65{bottom:267.834933pt;}
.y2b3{bottom:269.249333pt;}
.y28b{bottom:271.665600pt;}
.y248{bottom:271.737600pt;}
.y1e1{bottom:271.846667pt;}
.y2f4{bottom:272.808400pt;}
.y221{bottom:275.723467pt;}
.y19f{bottom:275.758533pt;}
.y97{bottom:275.834933pt;}
.y2d1{bottom:277.968400pt;}
.yda{bottom:279.434933pt;}
.y73{bottom:279.475867pt;}
.y1bf{bottom:279.690933pt;}
.yfc{bottom:281.715867pt;}
.y3f{bottom:281.738533pt;}
.y26e{bottom:283.202267pt;}
.yb9{bottom:283.312267pt;}
.y11d{bottom:283.706933pt;}
.y15f{bottom:283.802933pt;}
.y2b2{bottom:284.449333pt;}
.y206{bottom:285.467333pt;}
.y180{bottom:286.368267pt;}
.y13e{bottom:286.901600pt;}
.y64{bottom:287.034933pt;}
.y1e0{bottom:287.848667pt;}
.y28a{bottom:289.529600pt;}
.y247{bottom:289.601600pt;}
.y2f3{bottom:290.408400pt;}
.y220{bottom:293.983467pt;}
.y2d0{bottom:294.908400pt;}
.y19e{bottom:295.086533pt;}
.y1c{bottom:295.279067pt;}
.y96{bottom:295.434933pt;}
.yd9{bottom:298.234933pt;}
.y72{bottom:298.675867pt;}
.y1be{bottom:299.162933pt;}
.y3e{bottom:300.666533pt;}
.y26d{bottom:300.667600pt;}
.yfb{bottom:300.787867pt;}
.yb8{bottom:302.640267pt;}
.y11c{bottom:303.066933pt;}
.y15e{bottom:303.274933pt;}
.y1df{bottom:303.850667pt;}
.y205{bottom:304.667333pt;}
.y63{bottom:306.234933pt;}
.y289{bottom:307.393600pt;}
.y246{bottom:307.465600pt;}
.y2b1{bottom:308.977333pt;}
.y2cf{bottom:311.848400pt;}
.y21f{bottom:312.243467pt;}
.y1b{bottom:312.879067pt;}
.y19d{bottom:314.414533pt;}
.y95{bottom:315.034933pt;}
.yd8{bottom:317.034933pt;}
.y71{bottom:317.875867pt;}
.y26c{bottom:318.135600pt;}
.y1bd{bottom:318.613600pt;}
.y3d{bottom:319.594533pt;}
.y1de{bottom:319.852667pt;}
.yfa{bottom:319.859867pt;}
.y17f{bottom:320.234933pt;}
.y13d{bottom:320.501600pt;}
.yb7{bottom:322.026933pt;}
.y11b{bottom:322.394933pt;}
.y15d{bottom:322.746933pt;}
.y204{bottom:323.867333pt;}
.y288{bottom:325.257600pt;}
.y245{bottom:325.329600pt;}
.y62{bottom:325.434933pt;}
.y2b0{bottom:326.577333pt;}
.y2f2{bottom:327.208400pt;}
.y2ce{bottom:328.788400pt;}
.y1a{bottom:330.479067pt;}
.y21e{bottom:330.503467pt;}
.y19c{bottom:333.747867pt;}
.y94{bottom:334.634933pt;}
.y26b{bottom:335.603600pt;}
.yd7{bottom:335.834933pt;}
.y1dd{bottom:335.854667pt;}
.y70{bottom:337.075867pt;}
.y1bc{bottom:338.085600pt;}
.y3c{bottom:338.522533pt;}
.yf9{bottom:338.931867pt;}
.yb6{bottom:341.354933pt;}
.y11a{bottom:341.722933pt;}
.y15c{bottom:342.218933pt;}
.y287{bottom:343.140267pt;}
.y244{bottom:343.193600pt;}
.y2af{bottom:344.177333pt;}
.y61{bottom:344.634933pt;}
.y2f1{bottom:344.808400pt;}
.y2cd{bottom:345.728400pt;}
.y19{bottom:348.079067pt;}
.y21d{bottom:348.763467pt;}
.y203{bottom:350.626400pt;}
.y1dc{bottom:351.856667pt;}
.y19b{bottom:353.097200pt;}
.y93{bottom:354.234933pt;}
.yd6{bottom:354.634933pt;}
.y6f{bottom:356.275867pt;}
.y3b{bottom:357.450533pt;}
.y1bb{bottom:357.557600pt;}
.yf8{bottom:358.003867pt;}
.y26a{bottom:360.629333pt;}
.yb5{bottom:360.682933pt;}
.y286{bottom:361.004267pt;}
.y119{bottom:361.050933pt;}
.y243{bottom:361.057600pt;}
.y15b{bottom:361.690933pt;}
.y2ae{bottom:361.777333pt;}
.y2f0{bottom:362.408400pt;}
.y2cc{bottom:362.668400pt;}
.y60{bottom:363.834933pt;}
.y18{bottom:365.679067pt;}
.y21c{bottom:367.023467pt;}
.y1db{bottom:367.858667pt;}
.y13c{bottom:367.978933pt;}
.y17e{bottom:368.005600pt;}
.y19a{bottom:372.425200pt;}
.yd5{bottom:373.434933pt;}
.y92{bottom:373.834933pt;}
.y6e{bottom:375.475867pt;}
.y3a{bottom:376.378533pt;}
.y1ba{bottom:377.029600pt;}
.yf7{bottom:377.065200pt;}
.y285{bottom:378.868267pt;}
.y242{bottom:378.921600pt;}
.y2ad{bottom:379.377333pt;}
.y2cb{bottom:379.608400pt;}
.y2ef{bottom:380.008400pt;}
.yb4{bottom:380.010933pt;}
.y118{bottom:380.378933pt;}
.y15a{bottom:381.162933pt;}
.y5f{bottom:383.034933pt;}
.y17{bottom:383.279067pt;}
.y1da{bottom:383.860667pt;}
.y269{bottom:384.054933pt;}
.y21b{bottom:385.283467pt;}
.y13b{bottom:387.706933pt;}
.y17d{bottom:387.877600pt;}
.y199{bottom:391.753200pt;}
.yd4{bottom:392.234933pt;}
.y91{bottom:393.434933pt;}
.y6d{bottom:394.675867pt;}
.y39{bottom:395.306533pt;}
.yf6{bottom:396.137200pt;}
.y1b9{bottom:396.480267pt;}
.y2ca{bottom:396.548400pt;}
.y2ac{bottom:396.713333pt;}
.y284{bottom:396.732267pt;}
.y241{bottom:396.785600pt;}
.y2ee{bottom:397.608400pt;}
.yb3{bottom:399.338933pt;}
.y117{bottom:399.706933pt;}
.y1d9{bottom:399.862667pt;}
.y159{bottom:400.634933pt;}
.y16{bottom:400.879067pt;}
.y5e{bottom:402.234933pt;}
.y268{bottom:403.121600pt;}
.y21a{bottom:403.543467pt;}
.y13a{bottom:407.402933pt;}
.y17c{bottom:407.749600pt;}
.y202{bottom:408.226400pt;}
.yd3{bottom:411.034933pt;}
.y198{bottom:411.081200pt;}
.y90{bottom:413.034933pt;}
.y2c9{bottom:413.488400pt;}
.y6c{bottom:413.875867pt;}
.y38{bottom:414.234533pt;}
.y2ab{bottom:414.313333pt;}
.y283{bottom:414.596267pt;}
.y240{bottom:414.649600pt;}
.yf5{bottom:415.171867pt;}
.y2ed{bottom:415.208400pt;}
.y1d8{bottom:415.864667pt;}
.y1b8{bottom:415.952267pt;}
.y15{bottom:418.479067pt;}
.yb2{bottom:418.666933pt;}
.y116{bottom:419.040267pt;}
.y267{bottom:420.721600pt;}
.y5d{bottom:421.434933pt;}
.y219{bottom:421.803467pt;}
.y139{bottom:427.274933pt;}
.y201{bottom:427.426400pt;}
.y17b{bottom:427.621600pt;}
.yd2{bottom:429.834933pt;}
.y197{bottom:430.414533pt;}
.y2c8{bottom:430.428400pt;}
.y1d7{bottom:431.866667pt;}
.y2aa{bottom:431.913333pt;}
.y282{bottom:432.460267pt;}
.y23f{bottom:432.513600pt;}
.y8f{bottom:432.634933pt;}
.y2ec{bottom:432.808400pt;}
.y37{bottom:433.210533pt;}
.y158{bottom:433.701600pt;}
.yf4{bottom:434.243867pt;}
.y1b7{bottom:435.424267pt;}
.y14{bottom:436.079067pt;}
.yb1{bottom:437.994933pt;}
.y266{bottom:438.321600pt;}
.y115{bottom:438.373600pt;}
.y218{bottom:440.063467pt;}
.y5c{bottom:440.634933pt;}
.y200{bottom:446.626400pt;}
.y138{bottom:447.146933pt;}
.y2c7{bottom:447.368400pt;}
.y17a{bottom:447.493600pt;}
.y1d6{bottom:447.868667pt;}
.yd1{bottom:448.634933pt;}
.y2a9{bottom:449.513333pt;}
.y196{bottom:449.769200pt;}
.y281{bottom:450.324267pt;}
.y23e{bottom:450.377600pt;}
.y2eb{bottom:450.408400pt;}
.y36{bottom:452.138533pt;}
.y8e{bottom:452.234933pt;}
.yf3{bottom:453.315867pt;}
.y13{bottom:453.679067pt;}
.y1b6{bottom:454.896267pt;}
.y265{bottom:455.921600pt;}
.yb0{bottom:457.322933pt;}
.y114{bottom:457.706933pt;}
.y217{bottom:458.323467pt;}
.y5b{bottom:459.834933pt;}
.y1d5{bottom:463.870667pt;}
.y2c6{bottom:464.308400pt;}
.y1ff{bottom:465.826400pt;}
.y137{bottom:467.018933pt;}
.y2a8{bottom:467.113333pt;}
.y179{bottom:467.365600pt;}
.yd0{bottom:467.434933pt;}
.y2ea{bottom:468.008400pt;}
.y280{bottom:468.193600pt;}
.y23d{bottom:468.241600pt;}
.y195{bottom:469.097200pt;}
.y35{bottom:471.066533pt;}
.y12{bottom:471.279067pt;}
.y8d{bottom:471.834933pt;}
.yf2{bottom:472.387867pt;}
.y264{bottom:473.521600pt;}
.y1b5{bottom:474.325600pt;}
.y216{bottom:476.583467pt;}
.yaf{bottom:476.650933pt;}
.y113{bottom:477.040267pt;}
.y5a{bottom:479.034933pt;}
.y157{bottom:480.346933pt;}
.y2c5{bottom:481.248400pt;}
.y2a7{bottom:484.713333pt;}
.y1fe{bottom:485.026400pt;}
.y2e9{bottom:485.608400pt;}
.y27f{bottom:486.057600pt;}
.y23c{bottom:486.105600pt;}
.ycf{bottom:486.234933pt;}
.y136{bottom:486.890933pt;}
.y178{bottom:487.237600pt;}
.y194{bottom:488.425200pt;}
.y11{bottom:488.879067pt;}
.y34{bottom:489.994533pt;}
.y263{bottom:491.121600pt;}
.y1d4{bottom:491.209200pt;}
.y8c{bottom:491.434933pt;}
.yf1{bottom:491.459867pt;}
.y1b4{bottom:493.797600pt;}
.yae{bottom:495.978933pt;}
.y112{bottom:496.373600pt;}
.y2c4{bottom:498.188400pt;}
.y59{bottom:498.234933pt;}
.y156{bottom:499.818933pt;}
.y2a6{bottom:502.313333pt;}
.y215{bottom:502.409200pt;}
.y2e8{bottom:503.208400pt;}
.y27e{bottom:503.932267pt;}
.y23b{bottom:503.969600pt;}
.y1fd{bottom:504.226400pt;}
.yce{bottom:505.034933pt;}
.y10{bottom:506.479067pt;}
.y135{bottom:506.762933pt;}
.y177{bottom:507.109600pt;}
.y193{bottom:507.753200pt;}
.y262{bottom:508.721600pt;}
.y33{bottom:508.922533pt;}
.y1d3{bottom:510.409200pt;}
.yf0{bottom:510.531867pt;}
.y8b{bottom:511.034933pt;}
.y1b3{bottom:513.269600pt;}
.y2c3{bottom:515.128400pt;}
.yad{bottom:515.306933pt;}
.y111{bottom:515.717600pt;}
.y58{bottom:517.434933pt;}
.y155{bottom:519.290933pt;}
.y2a5{bottom:519.913333pt;}
.y2e7{bottom:520.808400pt;}
.y27d{bottom:521.796267pt;}
.y23a{bottom:521.833600pt;}
.y1fc{bottom:523.426400pt;}
.ycd{bottom:523.834933pt;}
.y261{bottom:526.321600pt;}
.y134{bottom:526.602933pt;}
.y176{bottom:526.981600pt;}
.y192{bottom:527.081200pt;}
.y32{bottom:527.850533pt;}
.yef{bottom:529.603867pt;}
.y1d2{bottom:529.609200pt;}
.y8a{bottom:530.634933pt;}
.yf{bottom:531.638133pt;}
.y2c2{bottom:532.068400pt;}
.y1b2{bottom:532.741600pt;}
.yac{bottom:534.645600pt;}
.y110{bottom:535.045600pt;}
.y57{bottom:536.634933pt;}
.y2a4{bottom:537.513333pt;}
.y2e6{bottom:538.408400pt;}
.y154{bottom:538.762933pt;}
.y27c{bottom:539.660267pt;}
.y239{bottom:539.697600pt;}
.y1fb{bottom:542.626400pt;}
.ycc{bottom:542.634933pt;}
.y260{bottom:543.921600pt;}
.y191{bottom:546.409200pt;}
.y214{bottom:546.426933pt;}
.y133{bottom:546.474933pt;}
.y31{bottom:546.778533pt;}
.y175{bottom:546.853600pt;}
.yee{bottom:548.675867pt;}
.y2c1{bottom:549.008400pt;}
.y89{bottom:550.234933pt;}
.y1b1{bottom:552.213600pt;}
.yab{bottom:553.973600pt;}
.y10f{bottom:554.373600pt;}
.y2a3{bottom:555.113333pt;}
.y56{bottom:555.834933pt;}
.y2e5{bottom:556.008400pt;}
.y1d1{bottom:556.368267pt;}
.y27b{bottom:557.524267pt;}
.y238{bottom:557.561600pt;}
.y153{bottom:558.186933pt;}
.ycb{bottom:561.434933pt;}
.y25f{bottom:561.521600pt;}
.y1fa{bottom:561.826400pt;}
.y30{bottom:565.706533pt;}
.y2c0{bottom:565.948400pt;}
.y213{bottom:566.298933pt;}
.y132{bottom:566.346933pt;}
.y174{bottom:566.725600pt;}
.y88{bottom:569.834933pt;}
.y1b0{bottom:571.685600pt;}
.y2a2{bottom:572.713333pt;}
.y190{bottom:573.306933pt;}
.yaa{bottom:573.370933pt;}
.y2e4{bottom:573.608400pt;}
.y10e{bottom:573.754933pt;}
.y55{bottom:575.034933pt;}
.y27a{bottom:575.396267pt;}
.y237{bottom:575.425600pt;}
.y152{bottom:577.658933pt;}
.y25e{bottom:579.121600pt;}
.yca{bottom:580.234933pt;}
.yed{bottom:580.942533pt;}
.y1f9{bottom:581.026400pt;}
.y2bf{bottom:582.888400pt;}
.y2f{bottom:584.634533pt;}
.y212{bottom:586.170933pt;}
.y131{bottom:586.218933pt;}
.y173{bottom:586.597600pt;}
.ye{bottom:589.238133pt;}
.y87{bottom:589.434933pt;}
.y2a1{bottom:590.313333pt;}
.y1af{bottom:591.157600pt;}
.y2e3{bottom:591.208400pt;}
.y18f{bottom:592.634933pt;}
.ya9{bottom:592.698933pt;}
.y10d{bottom:593.082933pt;}
.y279{bottom:593.260267pt;}
.y236{bottom:593.289600pt;}
.y54{bottom:594.234933pt;}
.y25d{bottom:596.721600pt;}
.y151{bottom:597.130933pt;}
.yc9{bottom:599.034933pt;}
.y2be{bottom:599.828400pt;}
.y1f8{bottom:600.226400pt;}
.y2e{bottom:603.562533pt;}
.y211{bottom:606.042933pt;}
.y130{bottom:606.090933pt;}
.y172{bottom:606.469600pt;}
.yd{bottom:606.838133pt;}
.y2a0{bottom:607.913333pt;}
.y2e2{bottom:608.808400pt;}
.y86{bottom:609.034933pt;}
.y1ae{bottom:610.629600pt;}
.y278{bottom:611.124267pt;}
.y235{bottom:611.153600pt;}
.ya8{bottom:612.026933pt;}
.y10c{bottom:612.410933pt;}
.y53{bottom:613.434933pt;}
.y1d0{bottom:613.968267pt;}
.y25c{bottom:614.321600pt;}
.y150{bottom:616.602933pt;}
.y2bd{bottom:616.768400pt;}
.yc8{bottom:617.834933pt;}
.y1f7{bottom:619.426400pt;}
.y29f{bottom:625.513333pt;}
.y210{bottom:625.914933pt;}
.y12f{bottom:625.962933pt;}
.y171{bottom:626.341600pt;}
.yec{bottom:626.361200pt;}
.y2e1{bottom:626.408400pt;}
.y85{bottom:628.634933pt;}
.y234{bottom:629.017600pt;}
.y2d{bottom:630.054933pt;}
.y1ad{bottom:630.058933pt;}
.ya7{bottom:631.354933pt;}
.y10b{bottom:631.738933pt;}
.y25b{bottom:631.921600pt;}
.y52{bottom:632.634933pt;}
.y1cf{bottom:633.168267pt;}
.y2bc{bottom:633.708400pt;}
.y14f{bottom:636.074933pt;}
.yc7{bottom:636.634933pt;}
.y29e{bottom:642.849333pt;}
.yc{bottom:643.638133pt;}
.y2e0{bottom:644.008400pt;}
.yeb{bottom:645.433200pt;}
.y12e{bottom:645.786933pt;}
.y170{bottom:646.213600pt;}
.y233{bottom:646.881600pt;}
.y84{bottom:648.234933pt;}
.y25a{bottom:649.521600pt;}
.y1ac{bottom:649.530933pt;}
.y1f6{bottom:649.943067pt;}
.y18e{bottom:650.645600pt;}
.y2bb{bottom:650.648400pt;}
.ya6{bottom:650.682933pt;}
.y10a{bottom:651.066933pt;}
.y51{bottom:651.834933pt;}
.y1ce{bottom:652.368267pt;}
.yc6{bottom:655.434933pt;}
.y14e{bottom:655.546933pt;}
.y29d{bottom:660.449333pt;}
.y2df{bottom:661.608400pt;}
.yea{bottom:664.505200pt;}
.y232{bottom:664.745600pt;}
.y12d{bottom:665.658933pt;}
.y1f5{bottom:665.945067pt;}
.y16f{bottom:666.085600pt;}
.y259{bottom:667.121600pt;}
.y2ba{bottom:667.588400pt;}
.y83{bottom:667.834933pt;}
.y1ab{bottom:669.002933pt;}
.y18d{bottom:669.973600pt;}
.ya5{bottom:670.010933pt;}
.y109{bottom:670.394933pt;}
.yb{bottom:670.838133pt;}
.y50{bottom:671.034933pt;}
.y1cd{bottom:671.568267pt;}
.yc5{bottom:674.234933pt;}
.y14d{bottom:675.018933pt;}
.y29c{bottom:678.049333pt;}
.y2de{bottom:679.208400pt;}
.y1f4{bottom:681.947067pt;}
.y231{bottom:682.609600pt;}
.ye9{bottom:683.577200pt;}
.y2b9{bottom:684.528400pt;}
.y258{bottom:684.721600pt;}
.y12c{bottom:685.530933pt;}
.y16e{bottom:685.957600pt;}
.y2c{bottom:686.833600pt;}
.y82{bottom:687.434933pt;}
.y1aa{bottom:688.474933pt;}
.y18c{bottom:689.322933pt;}
.ya4{bottom:689.338933pt;}
.y108{bottom:689.722933pt;}
.y4f{bottom:690.234933pt;}
.y1cc{bottom:690.778933pt;}
.yc4{bottom:693.034933pt;}
.y14c{bottom:694.490933pt;}
.y29b{bottom:695.649333pt;}
.y2dd{bottom:696.808400pt;}
.y1f3{bottom:697.949067pt;}
.ya{bottom:698.038133pt;}
.y230{bottom:700.473600pt;}
.y2b8{bottom:701.468400pt;}
.y257{bottom:702.321600pt;}
.ye8{bottom:702.649200pt;}
.y2b{bottom:704.169600pt;}
.y12b{bottom:705.402933pt;}
.y16d{bottom:705.829600pt;}
.y81{bottom:707.034933pt;}
.y1a9{bottom:707.946933pt;}
.y18b{bottom:708.650933pt;}
.ya3{bottom:708.666933pt;}
.y107{bottom:709.050933pt;}
.y4e{bottom:709.434933pt;}
.y1cb{bottom:709.978933pt;}
.yc3{bottom:711.834933pt;}
.y29a{bottom:713.249333pt;}
.y1f2{bottom:713.951067pt;}
.y14b{bottom:713.962933pt;}
.y2dc{bottom:714.408400pt;}
.y22f{bottom:718.337600pt;}
.y2b7{bottom:718.408400pt;}
.y256{bottom:719.921600pt;}
.y2a{bottom:721.505600pt;}
.ye7{bottom:721.721200pt;}
.y12a{bottom:725.274933pt;}
.y16c{bottom:725.706933pt;}
.y80{bottom:726.634933pt;}
.y1a8{bottom:727.418933pt;}
.y18a{bottom:727.978933pt;}
.ya2{bottom:727.994933pt;}
.y106{bottom:728.378933pt;}
.y4d{bottom:728.634933pt;}
.y1ca{bottom:729.178933pt;}
.y1f1{bottom:729.953067pt;}
.yc2{bottom:730.634933pt;}
.y299{bottom:730.849333pt;}
.y14a{bottom:733.418933pt;}
.y22e{bottom:736.201600pt;}
.y255{bottom:737.521600pt;}
.y29{bottom:738.841600pt;}
.ye6{bottom:740.793200pt;}
.y129{bottom:745.146933pt;}
.y16b{bottom:745.578933pt;}
.y1f0{bottom:745.955067pt;}
.y7f{bottom:746.234933pt;}
.y1a7{bottom:746.890933pt;}
.y9{bottom:747.159467pt;}
.y189{bottom:747.306933pt;}
.ya1{bottom:747.322933pt;}
.y105{bottom:747.706933pt;}
.y4c{bottom:747.834933pt;}
.y1c9{bottom:748.378933pt;}
.y298{bottom:748.449333pt;}
.yc1{bottom:749.434933pt;}
.y2db{bottom:751.208267pt;}
.y149{bottom:752.890933pt;}
.y2b6{bottom:753.874933pt;}
.y22d{bottom:754.065600pt;}
.y254{bottom:755.121600pt;}
.y28{bottom:756.177600pt;}
.ye5{bottom:759.865200pt;}
.y1ef{bottom:761.957067pt;}
.y8{bottom:763.159467pt;}
.y128{bottom:765.018933pt;}
.y16a{bottom:765.450933pt;}
.y7e{bottom:765.834933pt;}
.y297{bottom:766.049333pt;}
.y1a6{bottom:766.362933pt;}
.ya0{bottom:766.650933pt;}
.y4b{bottom:767.034933pt;}
.y1c8{bottom:767.578933pt;}
.yc0{bottom:768.234933pt;}
.y22c{bottom:771.929600pt;}
.y148{bottom:772.362933pt;}
.y253{bottom:772.721600pt;}
.y27{bottom:773.513600pt;}
.y1ee{bottom:777.959067pt;}
.ye4{bottom:778.937200pt;}
.y7{bottom:779.159467pt;}
.y6{bottom:779.161600pt;}
.y296{bottom:783.649333pt;}
.y127{bottom:784.890933pt;}
.y169{bottom:785.178933pt;}
.y7d{bottom:785.434933pt;}
.y1a5{bottom:785.834933pt;}
.y9f{bottom:785.978933pt;}
.y4a{bottom:786.234933pt;}
.y1c7{bottom:786.778933pt;}
.ybf{bottom:787.034933pt;}
.y2da{bottom:788.008267pt;}
.y2b5{bottom:789.346933pt;}
.y22b{bottom:789.793600pt;}
.y252{bottom:790.321600pt;}
.y26{bottom:790.849600pt;}
.y147{bottom:791.834933pt;}
.y1ed{bottom:793.961067pt;}
.ye3{bottom:798.009200pt;}
.y295{bottom:801.249333pt;}
.y126{bottom:804.762933pt;}
.y168{bottom:804.906933pt;}
.y7c{bottom:805.034933pt;}
.y9e{bottom:805.306933pt;}
.y49{bottom:805.434933pt;}
.y1c6{bottom:805.706933pt;}
.ybe{bottom:805.834933pt;}
.y2d9{bottom:807.208267pt;}
.y22a{bottom:807.657600pt;}
.y2b4{bottom:807.874933pt;}
.y251{bottom:807.921600pt;}
.y25{bottom:808.185600pt;}
.y5{bottom:809.521600pt;}
.y1ec{bottom:809.963067pt;}
.y48{bottom:824.634933pt;}
.y4{bottom:825.521600pt;}
.y1eb{bottom:825.965067pt;}
.y294{bottom:826.408400pt;}
.hb{height:30.875000pt;}
.h3{height:35.807292pt;}
.ha{height:36.020833pt;}
.h2{height:41.166667pt;}
.h7{height:45.286458pt;}
.hc{height:48.885417pt;}
.h4{height:49.815104pt;}
.h5{height:51.458333pt;}
.h16{height:54.031250pt;}
.hd{height:54.343750pt;}
.h8{height:56.604167pt;}
.h17{height:56.614833pt;}
.h18{height:56.672967pt;}
.h9{height:61.750000pt;}
.h12{height:61.771333pt;}
.hf{height:61.792667pt;}
.h11{height:61.814000pt;}
.h14{height:61.835333pt;}
.h10{height:61.878000pt;}
.he{height:61.899333pt;}
.h15{height:61.920667pt;}
.h13{height:61.942000pt;}
.h6{height:87.479167pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:68.031467pt;}
.x8{left:86.929200pt;}
.xa{left:105.823067pt;}
.xb{left:124.712800pt;}
.x5{left:126.414267pt;}
.x9{left:133.929200pt;}
.xc{left:166.290533pt;}
.xf{left:177.203733pt;}
.x7{left:210.883067pt;}
.x1{left:250.597333pt;}
.x6{left:346.362267pt;}
.x2{left:372.813867pt;}
.xe{left:452.227333pt;}
.xd{left:460.194667pt;}
.x3{left:535.590533pt;}
}




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