
    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_f5ad4b1ac3e75a00d8577077.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_7e8d7338722280d700f27b06.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.281250;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_b7cd6bb78dd474f3ef5f9184.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_67fb2923711984eb54d415e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.592000;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_6c4ed912aa2a1275ce5197fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_2a15e751425539a3ba9316e9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239258;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.820000px;}
.ls2d{letter-spacing:-4.959000px;}
.ls2e{letter-spacing:-4.902000px;}
.ls2a{letter-spacing:-4.833600px;}
.ls46{letter-spacing:-4.752000px;}
.ls36{letter-spacing:-4.303200px;}
.ls35{letter-spacing:-4.158000px;}
.ls2f{letter-spacing:-3.477000px;}
.ls4c{letter-spacing:-2.880000px;}
.ls32{letter-spacing:-2.197800px;}
.ls3b{letter-spacing:-2.046000px;}
.ls22{letter-spacing:-2.040600px;}
.lsa6{letter-spacing:-1.980000px;}
.ls21{letter-spacing:-1.818300px;}
.ls20{letter-spacing:-1.812600px;}
.ls56{letter-spacing:-1.584000px;}
.lsa5{letter-spacing:-1.560000px;}
.ls3a{letter-spacing:-1.518000px;}
.ls4e{letter-spacing:-1.488000px;}
.ls67{letter-spacing:-1.452000px;}
.ls3c{letter-spacing:-1.445400px;}
.ls31{letter-spacing:-1.392600px;}
.ls77{letter-spacing:-1.386000px;}
.ls4f{letter-spacing:-1.368000px;}
.ls84{letter-spacing:-1.320000px;}
.ls79{letter-spacing:-1.296000px;}
.lsa4{letter-spacing:-1.260000px;}
.ls83{letter-spacing:-1.254000px;}
.ls78{letter-spacing:-1.242000px;}
.lsaf{letter-spacing:-1.215000px;}
.lsb0{letter-spacing:-1.200000px;}
.ls11{letter-spacing:-1.197000px;}
.ls42{letter-spacing:-1.188000px;}
.ls3d{letter-spacing:-1.181400px;}
.ls44{letter-spacing:-1.174800px;}
.ls2c{letter-spacing:-1.140000px;}
.ls40{letter-spacing:-1.122000px;}
.lsae{letter-spacing:-1.080000px;}
.ls43{letter-spacing:-1.056000px;}
.ls26{letter-spacing:-1.031700px;}
.ls86{letter-spacing:-1.020000px;}
.ls12{letter-spacing:-1.008000px;}
.ls41{letter-spacing:-0.990000px;}
.ls3f{letter-spacing:-0.970200px;}
.ls27{letter-spacing:-0.969000px;}
.lsb1{letter-spacing:-0.960000px;}
.lsa3{letter-spacing:-0.945000px;}
.ls5f{letter-spacing:-0.924000px;}
.lsd{letter-spacing:-0.912000px;}
.lsa2{letter-spacing:-0.900000px;}
.ls60{letter-spacing:-0.891000px;}
.ls45{letter-spacing:-0.858000px;}
.lsc{letter-spacing:-0.855000px;}
.lsad{letter-spacing:-0.810000px;}
.ls29{letter-spacing:-0.798000px;}
.ls30{letter-spacing:-0.792000px;}
.ls47{letter-spacing:-0.785400px;}
.ls87{letter-spacing:-0.780000px;}
.ls85{letter-spacing:-0.765000px;}
.ls2b{letter-spacing:-0.752400px;}
.ls38{letter-spacing:-0.726000px;}
.ls1{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.684000px;}
.ls24{letter-spacing:-0.678300px;}
.ls57{letter-spacing:-0.660000px;}
.ls7f{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.627000px;}
.ls4b{letter-spacing:-0.624000px;}
.lsa7{letter-spacing:-0.600000px;}
.ls54{letter-spacing:-0.594000px;}
.ls4d{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.570000px;}
.lsa0{letter-spacing:-0.540000px;}
.ls49{letter-spacing:-0.528000px;}
.ls23{letter-spacing:-0.513000px;}
.ls48{letter-spacing:-0.462000px;}
.ls9d{letter-spacing:-0.450000px;}
.ls9f{letter-spacing:-0.420000px;}
.ls9e{letter-spacing:-0.405000px;}
.ls4a{letter-spacing:-0.396000px;}
.ls71{letter-spacing:-0.378000px;}
.lsb{letter-spacing:-0.342000px;}
.ls55{letter-spacing:-0.330000px;}
.ls82{letter-spacing:-0.323400px;}
.ls70{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.285000px;}
.ls6f{letter-spacing:-0.277200px;}
.ls7a{letter-spacing:-0.270000px;}
.ls53{letter-spacing:-0.264000px;}
.ls25{letter-spacing:-0.228000px;}
.ls5e{letter-spacing:-0.198000px;}
.ls3e{letter-spacing:-0.191400px;}
.ls89{letter-spacing:-0.180000px;}
.ls28{letter-spacing:-0.171000px;}
.ls88{letter-spacing:-0.135000px;}
.ls34{letter-spacing:-0.132000px;}
.ls75{letter-spacing:-0.108000px;}
.ls7e{letter-spacing:-0.096000px;}
.ls33{letter-spacing:-0.066000px;}
.ls62{letter-spacing:-0.060000px;}
.ls39{letter-spacing:-0.059400px;}
.lsf{letter-spacing:-0.057000px;}
.ls63{letter-spacing:-0.054000px;}
.ls13{letter-spacing:-0.048000px;}
.lsa1{letter-spacing:-0.045000px;}
.ls37{letter-spacing:-0.006600px;}
.ls0{letter-spacing:0.000000px;}
.ls9a{letter-spacing:0.045000px;}
.ls3{letter-spacing:0.057000px;}
.ls9b{letter-spacing:0.060000px;}
.ls51{letter-spacing:0.066000px;}
.ls7d{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.114000px;}
.ls17{letter-spacing:0.118800px;}
.ls19{letter-spacing:0.132000px;}
.ls4{letter-spacing:0.171000px;}
.ls8c{letter-spacing:0.180000px;}
.ls74{letter-spacing:0.192000px;}
.ls16{letter-spacing:0.198000px;}
.ls69{letter-spacing:0.216000px;}
.lsab{letter-spacing:0.225000px;}
.ls6{letter-spacing:0.228000px;}
.ls1d{letter-spacing:0.264000px;}
.ls14{letter-spacing:0.285000px;}
.lsac{letter-spacing:0.300000px;}
.ls6c{letter-spacing:0.324000px;}
.ls1b{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.342000px;}
.ls95{letter-spacing:0.360000px;}
.ls6d{letter-spacing:0.378000px;}
.ls18{letter-spacing:0.396000px;}
.lsa9{letter-spacing:0.405000px;}
.lsa8{letter-spacing:0.420000px;}
.ls7c{letter-spacing:0.432000px;}
.ls99{letter-spacing:0.450000px;}
.ls2{letter-spacing:0.456000px;}
.ls65{letter-spacing:0.462000px;}
.ls98{letter-spacing:0.480000px;}
.ls5c{letter-spacing:0.528000px;}
.ls6a{letter-spacing:0.540000px;}
.ls5b{letter-spacing:0.594000px;}
.ls8d{letter-spacing:0.600000px;}
.ls1a{letter-spacing:0.660000px;}
.ls58{letter-spacing:0.672000px;}
.ls5d{letter-spacing:0.726000px;}
.lse{letter-spacing:0.741000px;}
.ls76{letter-spacing:0.756000px;}
.ls50{letter-spacing:0.792000px;}
.ls8{letter-spacing:0.798000px;}
.ls5a{letter-spacing:0.858000px;}
.ls81{letter-spacing:0.900000px;}
.ls52{letter-spacing:0.924000px;}
.ls96{letter-spacing:0.945000px;}
.ls97{letter-spacing:0.960000px;}
.ls61{letter-spacing:0.990000px;}
.ls73{letter-spacing:1.056000px;}
.lsaa{letter-spacing:1.080000px;}
.ls66{letter-spacing:1.122000px;}
.ls7b{letter-spacing:1.188000px;}
.ls72{letter-spacing:1.254000px;}
.ls8a{letter-spacing:1.260000px;}
.ls8b{letter-spacing:1.305000px;}
.ls80{letter-spacing:1.320000px;}
.ls8f{letter-spacing:1.350000px;}
.ls1c{letter-spacing:1.372800px;}
.ls8e{letter-spacing:1.380000px;}
.ls90{letter-spacing:1.395000px;}
.ls91{letter-spacing:1.440000px;}
.ls92{letter-spacing:1.485000px;}
.ls93{letter-spacing:1.500000px;}
.ls59{letter-spacing:1.518000px;}
.ls6e{letter-spacing:1.650000px;}
.ls9c{letter-spacing:1.740000px;}
.ls64{letter-spacing:1.782000px;}
.ls68{letter-spacing:1.980000px;}
.ls1e{letter-spacing:2.712600px;}
.ls15{letter-spacing:14.193000px;}
.ls94{letter-spacing:15.000000px;}
.ls6b{letter-spacing:15.660000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-24.000000px;}
.ws92{word-spacing:-18.282000px;}
.wsd3{word-spacing:-18.150000px;}
.wsc8{word-spacing:-17.754000px;}
.wsa8{word-spacing:-17.622000px;}
.wsc9{word-spacing:-17.556000px;}
.wsac{word-spacing:-17.490000px;}
.wsa4{word-spacing:-17.424000px;}
.ws99{word-spacing:-17.358000px;}
.ws6b{word-spacing:-17.292000px;}
.wsd1{word-spacing:-17.226000px;}
.ws45{word-spacing:-17.160000px;}
.wsa5{word-spacing:-17.094000px;}
.ws98{word-spacing:-17.028000px;}
.ws94{word-spacing:-16.962000px;}
.ws6c{word-spacing:-16.896000px;}
.ws37{word-spacing:-16.830000px;}
.ws83{word-spacing:-16.764000px;}
.wse2{word-spacing:-16.740000px;}
.ws93{word-spacing:-16.698000px;}
.ws85{word-spacing:-16.632000px;}
.wsad{word-spacing:-16.566000px;}
.ws48{word-spacing:-16.500000px;}
.ws3c{word-spacing:-16.493400px;}
.ws3d{word-spacing:-16.440600px;}
.ws6d{word-spacing:-16.434000px;}
.wse6{word-spacing:-16.380000px;}
.ws49{word-spacing:-16.368000px;}
.ws43{word-spacing:-16.308600px;}
.ws82{word-spacing:-16.302000px;}
.ws97{word-spacing:-16.236000px;}
.wsc6{word-spacing:-16.170000px;}
.ws81{word-spacing:-16.104000px;}
.ws11c{word-spacing:-16.080000px;}
.ws36{word-spacing:-16.038000px;}
.wsa6{word-spacing:-15.972000px;}
.wsf6{word-spacing:-15.960000px;}
.wsd2{word-spacing:-15.906000px;}
.wsae{word-spacing:-15.840000px;}
.ws8c{word-spacing:-15.774000px;}
.ws4f{word-spacing:-15.714600px;}
.ws42{word-spacing:-15.708000px;}
.ws4d{word-spacing:-15.642000px;}
.wse4{word-spacing:-15.600000px;}
.wsa7{word-spacing:-15.576000px;}
.wsf8{word-spacing:-15.540000px;}
.ws44{word-spacing:-15.529800px;}
.ws47{word-spacing:-15.510000px;}
.wsfc{word-spacing:-15.480000px;}
.ws4b{word-spacing:-15.444000px;}
.ws115{word-spacing:-15.420000px;}
.ws46{word-spacing:-15.378000px;}
.wsef{word-spacing:-15.360000px;}
.ws4c{word-spacing:-15.325200px;}
.ws41{word-spacing:-15.318600px;}
.ws4a{word-spacing:-15.312000px;}
.ws8d{word-spacing:-15.240000px;}
.wsd0{word-spacing:-15.180000px;}
.ws38{word-spacing:-15.107400px;}
.ws40{word-spacing:-15.054600px;}
.wsd4{word-spacing:-15.000000px;}
.ws9{word-spacing:-14.991000px;}
.ws3e{word-spacing:-14.982000px;}
.wsf0{word-spacing:-14.940000px;}
.wsee{word-spacing:-14.820000px;}
.ws3{word-spacing:-14.535000px;}
.ws6{word-spacing:-14.478000px;}
.wsea{word-spacing:-14.460000px;}
.ws3f{word-spacing:-14.454000px;}
.wsfe{word-spacing:-14.400000px;}
.ws7{word-spacing:-14.364000px;}
.wsa{word-spacing:-14.307000px;}
.ws39{word-spacing:-14.302200px;}
.ws8{word-spacing:-14.250000px;}
.wsd8{word-spacing:-14.220000px;}
.wsb{word-spacing:-14.193000px;}
.wsf2{word-spacing:-14.100000px;}
.wsd6{word-spacing:-13.980000px;}
.ws4{word-spacing:-13.965000px;}
.ws117{word-spacing:-13.920000px;}
.ws5{word-spacing:-13.908000px;}
.ws9e{word-spacing:-13.878000px;}
.ws22{word-spacing:-13.851000px;}
.ws9d{word-spacing:-13.824000px;}
.wsb7{word-spacing:-13.770000px;}
.wsf4{word-spacing:-13.740000px;}
.ws28{word-spacing:-13.737000px;}
.ws35{word-spacing:-13.680000px;}
.ws2f{word-spacing:-13.623000px;}
.wsbf{word-spacing:-13.608000px;}
.ws29{word-spacing:-13.571700px;}
.ws23{word-spacing:-13.566000px;}
.wse{word-spacing:-13.500000px;}
.ws30{word-spacing:-13.497600px;}
.ws2d{word-spacing:-13.452000px;}
.ws31{word-spacing:-13.395000px;}
.ws24{word-spacing:-13.338000px;}
.ws2c{word-spacing:-13.281000px;}
.wsc0{word-spacing:-13.230000px;}
.ws2b{word-spacing:-13.218300px;}
.ws57{word-spacing:-13.167000px;}
.ws2a{word-spacing:-13.053000px;}
.wsfa{word-spacing:-13.020000px;}
.wseb{word-spacing:-12.735000px;}
.ws6e{word-spacing:-12.672000px;}
.wse5{word-spacing:-12.645000px;}
.wse3{word-spacing:-12.600000px;}
.wse0{word-spacing:-12.555000px;}
.ws25{word-spacing:-12.437400px;}
.ws26{word-spacing:-12.431700px;}
.ws3a{word-spacing:-12.342000px;}
.ws11b{word-spacing:-12.330000px;}
.ws27{word-spacing:-12.209400px;}
.wsb1{word-spacing:-12.204000px;}
.ws3b{word-spacing:-12.196800px;}
.wsf5{word-spacing:-12.195000px;}
.wsd{word-spacing:-12.192000px;}
.ws54{word-spacing:-12.000000px;}
.ws52{word-spacing:-11.952000px;}
.wsb6{word-spacing:-11.904000px;}
.wsf7{word-spacing:-11.790000px;}
.ws4e{word-spacing:-11.748000px;}
.ws9b{word-spacing:-11.712000px;}
.wsfb{word-spacing:-11.700000px;}
.ws114{word-spacing:-11.655000px;}
.wsaf{word-spacing:-11.550000px;}
.ws84{word-spacing:-11.484000px;}
.ws11d{word-spacing:-11.475000px;}
.ws55{word-spacing:-11.472000px;}
.ws53{word-spacing:-11.424000px;}
.ws50{word-spacing:-11.376000px;}
.ws100{word-spacing:-11.295000px;}
.ws9a{word-spacing:-11.272800px;}
.wsd9{word-spacing:-11.250000px;}
.wscd{word-spacing:-11.226600px;}
.wsec{word-spacing:-11.205000px;}
.wsda{word-spacing:-11.115000px;}
.ws11e{word-spacing:-11.070000px;}
.ws120{word-spacing:-11.040000px;}
.wsc{word-spacing:-10.992000px;}
.wse8{word-spacing:-10.845000px;}
.wse7{word-spacing:-10.800000px;}
.ws34{word-spacing:-10.773000px;}
.wse9{word-spacing:-10.710000px;}
.ws56{word-spacing:-10.512000px;}
.wsd7{word-spacing:-10.485000px;}
.ws118{word-spacing:-10.440000px;}
.wsf1{word-spacing:-10.350000px;}
.ws11f{word-spacing:-10.035000px;}
.ws2e{word-spacing:-9.416400px;}
.ws33{word-spacing:-9.348000px;}
.ws32{word-spacing:-9.291000px;}
.wsf9{word-spacing:-9.270000px;}
.ws51{word-spacing:-9.120000px;}
.ws2{word-spacing:-7.392000px;}
.wsc7{word-spacing:-1.386000px;}
.ws8a{word-spacing:-0.858000px;}
.ws5f{word-spacing:-0.792000px;}
.ws1d{word-spacing:-0.741000px;}
.ws60{word-spacing:-0.726000px;}
.ws108{word-spacing:-0.720000px;}
.ws71{word-spacing:-0.660000px;}
.wsb3{word-spacing:-0.648000px;}
.ws1f{word-spacing:-0.627000px;}
.wsdd{word-spacing:-0.600000px;}
.ws70{word-spacing:-0.594000px;}
.ws5c{word-spacing:-0.570000px;}
.wsab{word-spacing:-0.540000px;}
.ws7a{word-spacing:-0.528000px;}
.ws5b{word-spacing:-0.513000px;}
.ws68{word-spacing:-0.462000px;}
.ws20{word-spacing:-0.456000px;}
.wscf{word-spacing:-0.432000px;}
.ws10b{word-spacing:-0.420000px;}
.ws18{word-spacing:-0.399000px;}
.ws67{word-spacing:-0.396000px;}
.wsb4{word-spacing:-0.378000px;}
.ws104{word-spacing:-0.360000px;}
.ws74{word-spacing:-0.330000px;}
.ws102{word-spacing:-0.300000px;}
.ws78{word-spacing:-0.264000px;}
.ws105{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.228000px;}
.wsa1{word-spacing:-0.216000px;}
.ws7e{word-spacing:-0.198000px;}
.ws11{word-spacing:-0.171000px;}
.ws64{word-spacing:-0.132000px;}
.ws16{word-spacing:-0.114000px;}
.wsc2{word-spacing:-0.108000px;}
.ws61{word-spacing:-0.066000px;}
.ws109{word-spacing:-0.060000px;}
.ws1a{word-spacing:-0.057000px;}
.wsc3{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.wsdc{word-spacing:0.060000px;}
.ws88{word-spacing:0.066000px;}
.ws91{word-spacing:0.108000px;}
.ws1b{word-spacing:0.114000px;}
.ws103{word-spacing:0.120000px;}
.ws80{word-spacing:0.132000px;}
.ws1c{word-spacing:0.171000px;}
.wsde{word-spacing:0.180000px;}
.ws76{word-spacing:0.198000px;}
.ws59{word-spacing:0.228000px;}
.ws87{word-spacing:0.264000px;}
.ws15{word-spacing:0.285000px;}
.ws95{word-spacing:0.330000px;}
.wsc4{word-spacing:0.378000px;}
.ws79{word-spacing:0.396000px;}
.ws121{word-spacing:0.420000px;}
.ws21{word-spacing:0.456000px;}
.wsa9{word-spacing:0.462000px;}
.wsb5{word-spacing:0.486000px;}
.ws72{word-spacing:0.528000px;}
.ws10c{word-spacing:0.540000px;}
.ws75{word-spacing:0.594000px;}
.ws106{word-spacing:0.600000px;}
.ws1e{word-spacing:0.627000px;}
.ws7f{word-spacing:0.660000px;}
.ws7b{word-spacing:0.726000px;}
.ws101{word-spacing:0.780000px;}
.wsca{word-spacing:0.785400px;}
.ws7d{word-spacing:0.792000px;}
.ws110{word-spacing:0.840000px;}
.ws6f{word-spacing:0.858000px;}
.ws10d{word-spacing:0.900000px;}
.wsf{word-spacing:0.912000px;}
.ws96{word-spacing:0.924000px;}
.ws10e{word-spacing:0.960000px;}
.wsc5{word-spacing:0.972000px;}
.ws65{word-spacing:0.990000px;}
.ws10f{word-spacing:1.020000px;}
.ws58{word-spacing:1.026000px;}
.ws8b{word-spacing:1.056000px;}
.wsa2{word-spacing:1.080000px;}
.ws14{word-spacing:1.083000px;}
.ws7c{word-spacing:1.122000px;}
.wscc{word-spacing:1.134000px;}
.ws5d{word-spacing:1.140000px;}
.ws63{word-spacing:1.188000px;}
.ws19{word-spacing:1.197000px;}
.ws111{word-spacing:1.200000px;}
.wsa3{word-spacing:1.242000px;}
.ws13{word-spacing:1.254000px;}
.ws122{word-spacing:1.260000px;}
.wsb2{word-spacing:1.296000px;}
.ws5a{word-spacing:1.311000px;}
.ws66{word-spacing:1.320000px;}
.wsc1{word-spacing:1.350000px;}
.ws12{word-spacing:1.368000px;}
.ws89{word-spacing:1.386000px;}
.ws17{word-spacing:1.425000px;}
.ws112{word-spacing:1.440000px;}
.ws5e{word-spacing:1.452000px;}
.ws62{word-spacing:1.518000px;}
.ws73{word-spacing:1.584000px;}
.ws77{word-spacing:1.650000px;}
.wsdb{word-spacing:1.914000px;}
.wsed{word-spacing:3.060000px;}
.wscb{word-spacing:3.300000px;}
.wsfd{word-spacing:3.465000px;}
.wsf3{word-spacing:3.525000px;}
.wsd5{word-spacing:3.540000px;}
.ws9f{word-spacing:3.894000px;}
.ws11a{word-spacing:3.900000px;}
.ws116{word-spacing:3.915000px;}
.ws119{word-spacing:4.020000px;}
.wse1{word-spacing:4.485000px;}
.wsdf{word-spacing:4.530000px;}
.ws113{word-spacing:4.890000px;}
.wsce{word-spacing:5.214000px;}
.wsff{word-spacing:5.445000px;}
.ws107{word-spacing:6.840000px;}
.ws10a{word-spacing:9.120000px;}
.wsa0{word-spacing:13.002000px;}
.wsbe{word-spacing:13.446000px;}
.ws9c{word-spacing:35.370000px;}
.ws69{word-spacing:35.856000px;}
.ws86{word-spacing:35.904000px;}
.wsb0{word-spacing:36.018000px;}
.wsbc{word-spacing:60.804000px;}
.wsba{word-spacing:87.804000px;}
.wsb9{word-spacing:94.446000px;}
.ws8e{word-spacing:151.440000px;}
.wsaa{word-spacing:169.668000px;}
.ws90{word-spacing:174.360000px;}
.ws8f{word-spacing:204.360000px;}
.wsbb{word-spacing:225.558000px;}
.wsb8{word-spacing:247.482000px;}
.wsbd{word-spacing:252.558000px;}
.ws6a{word-spacing:270.912000px;}
._8{margin-left:-12.870000px;}
._9{margin-left:-11.550000px;}
._38{margin-left:-8.646000px;}
._13{margin-left:-7.452000px;}
._c{margin-left:-5.808000px;}
._0{margin-left:-4.320000px;}
._7{margin-left:-3.234000px;}
._3{margin-left:-2.052000px;}
._2{margin-left:-1.026000px;}
._5{width:1.458000px;}
._1{width:2.850000px;}
._12{width:4.092000px;}
._28{width:5.412000px;}
._4{width:12.654000px;}
._19{width:45.738000px;}
._6{width:47.220000px;}
._b{width:48.480000px;}
._29{width:49.518000px;}
._17{width:57.618000px;}
._1a{width:63.666000px;}
._18{width:72.090000px;}
._1b{width:107.082000px;}
._16{width:119.016000px;}
._2b{width:130.140000px;}
._27{width:148.176000px;}
._2a{width:151.068000px;}
._32{width:156.114000px;}
._2c{width:157.248000px;}
._25{width:183.168000px;}
._24{width:187.272000px;}
._26{width:190.404000px;}
._15{width:194.292000px;}
._23{width:213.732000px;}
._33{width:222.426000px;}
._2e{width:223.722000px;}
._34{width:233.712000px;}
._37{width:234.954000px;}
._1e{width:240.732000px;}
._2d{width:243.894000px;}
._a{width:244.968000px;}
._e{width:246.312000px;}
._36{width:249.426000px;}
._35{width:250.722000px;}
._30{width:260.712000px;}
._31{width:261.954000px;}
._1f{width:269.028000px;}
._d{width:283.440000px;}
._2f{width:297.324000px;}
._20{width:301.698000px;}
._1c{width:307.098000px;}
._21{width:322.920000px;}
._1d{width:324.216000px;}
._22{width:344.574000px;}
._14{width:497.124000px;}
._f{width:603.720000px;}
._11{width:722.400000px;}
._10{width:752.400000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:36.000000px;}
.fs9{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fsb{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:49.500000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:1.396500px;}
.y52{bottom:2.146500px;}
.y50{bottom:3.646500px;}
.y4d{bottom:51.153000px;}
.y1a5{bottom:53.211000px;}
.y1b7{bottom:53.493000px;}
.y13c{bottom:53.550000px;}
.ya2{bottom:53.557500px;}
.ybb{bottom:53.679000px;}
.y127{bottom:53.682000px;}
.y20{bottom:53.682750px;}
.yfb{bottom:53.698500px;}
.y82{bottom:53.748000px;}
.y1de{bottom:53.856000px;}
.y112{bottom:54.048000px;}
.y17e{bottom:54.120000px;}
.y1f6{bottom:54.870000px;}
.y226{bottom:56.385000px;}
.y1a4{bottom:67.467000px;}
.y1b6{bottom:67.749000px;}
.yba{bottom:67.935000px;}
.y1dd{bottom:68.112000px;}
.y111{bottom:68.304000px;}
.y17d{bottom:68.376000px;}
.y4c{bottom:68.395500px;}
.y1f5{bottom:70.620000px;}
.y13b{bottom:70.792500px;}
.ya1{bottom:70.800000px;}
.y126{bottom:70.924500px;}
.yfa{bottom:70.941000px;}
.y81{bottom:70.990500px;}
.y225{bottom:72.135000px;}
.y1f{bottom:74.687250px;}
.y1a3{bottom:81.723000px;}
.y1b5{bottom:82.005000px;}
.y1dc{bottom:82.368000px;}
.y110{bottom:82.548000px;}
.y17c{bottom:82.632000px;}
.y4b{bottom:85.638000px;}
.y1f4{bottom:86.370000px;}
.y224{bottom:87.885000px;}
.y13a{bottom:88.035000px;}
.ya0{bottom:88.042500px;}
.y125{bottom:88.167000px;}
.yf9{bottom:88.183500px;}
.y80{bottom:88.233000px;}
.y1e{bottom:89.692500px;}
.y1a2{bottom:95.979000px;}
.y1db{bottom:96.624000px;}
.y10f{bottom:96.804000px;}
.y17b{bottom:96.888000px;}
.y1f3{bottom:102.120000px;}
.y4a{bottom:102.880500px;}
.y223{bottom:103.635000px;}
.y1d{bottom:104.697750px;}
.yc8{bottom:104.782500px;}
.y139{bottom:105.277500px;}
.y9f{bottom:105.285000px;}
.y124{bottom:105.409500px;}
.yf8{bottom:105.426000px;}
.y7f{bottom:105.475500px;}
.yc7{bottom:106.032000px;}
.y1a1{bottom:110.235000px;}
.y1da{bottom:110.880000px;}
.y10e{bottom:111.060000px;}
.y17a{bottom:111.144000px;}
.y1f2{bottom:117.870000px;}
.y222{bottom:119.385000px;}
.y1c{bottom:119.703000px;}
.y49{bottom:120.123000px;}
.y1b4{bottom:122.497500px;}
.y138{bottom:122.520000px;}
.y9e{bottom:122.527500px;}
.y123{bottom:122.652000px;}
.yf7{bottom:122.668500px;}
.y7e{bottom:122.718000px;}
.y1a0{bottom:124.491000px;}
.y179{bottom:125.400000px;}
.y1b{bottom:134.708250px;}
.yc6{bottom:134.988000px;}
.y221{bottom:135.135000px;}
.y48{bottom:137.365500px;}
.y19f{bottom:138.747000px;}
.y1b3{bottom:139.740000px;}
.y137{bottom:139.762500px;}
.y9d{bottom:139.770000px;}
.y122{bottom:139.894500px;}
.yf6{bottom:139.911000px;}
.y7d{bottom:139.960500px;}
.y1f1{bottom:142.518000px;}
.y1a{bottom:149.713500px;}
.y220{bottom:150.885000px;}
.y19e{bottom:153.003000px;}
.y47{bottom:154.608000px;}
.yc5{bottom:155.988000px;}
.y1b2{bottom:156.982500px;}
.y136{bottom:157.005000px;}
.y9c{bottom:157.012500px;}
.y1d9{bottom:157.122000px;}
.y121{bottom:157.137000px;}
.yf5{bottom:157.153500px;}
.y7c{bottom:157.203000px;}
.y19{bottom:164.718750px;}
.y178{bottom:165.577500px;}
.y10d{bottom:165.750000px;}
.y21f{bottom:166.635000px;}
.y19d{bottom:167.259000px;}
.yce{bottom:170.493000px;}
.y46{bottom:171.850500px;}
.y1b1{bottom:174.225000px;}
.y135{bottom:174.247500px;}
.y9b{bottom:174.255000px;}
.y1d8{bottom:174.364500px;}
.y120{bottom:174.379500px;}
.yf4{bottom:174.396000px;}
.y7b{bottom:174.445500px;}
.yc4{bottom:175.486500px;}
.y19c{bottom:181.515000px;}
.y21e{bottom:182.385000px;}
.ycd{bottom:182.490000px;}
.y177{bottom:182.820000px;}
.y10c{bottom:182.992500px;}
.y45{bottom:189.093000px;}
.y1b0{bottom:191.467500px;}
.y134{bottom:191.490000px;}
.y9a{bottom:191.497500px;}
.y1d7{bottom:191.607000px;}
.y11f{bottom:191.622000px;}
.yf3{bottom:191.638500px;}
.y1f0{bottom:191.655000px;}
.y7a{bottom:191.688000px;}
.y18{bottom:194.715000px;}
.y19b{bottom:195.771000px;}
.yc3{bottom:196.486500px;}
.y21d{bottom:198.135000px;}
.y176{bottom:200.062500px;}
.y10b{bottom:200.235000px;}
.y44{bottom:206.335500px;}
.y1af{bottom:208.710000px;}
.y133{bottom:208.732500px;}
.y99{bottom:208.740000px;}
.y1d6{bottom:208.849500px;}
.y11e{bottom:208.864500px;}
.yf2{bottom:208.881000px;}
.y1ef{bottom:208.897500px;}
.y79{bottom:208.930500px;}
.y19a{bottom:210.027000px;}
.ycc{bottom:213.303000px;}
.y21c{bottom:213.885000px;}
.y175{bottom:217.305000px;}
.y10a{bottom:217.477500px;}
.yc2{bottom:217.486500px;}
.y43{bottom:223.578000px;}
.y199{bottom:224.283000px;}
.ycb{bottom:225.300000px;}
.y1ae{bottom:225.952500px;}
.y132{bottom:225.975000px;}
.y98{bottom:225.982500px;}
.y1d5{bottom:226.092000px;}
.y11d{bottom:226.107000px;}
.yf1{bottom:226.123500px;}
.y1ee{bottom:226.140000px;}
.y78{bottom:226.173000px;}
.y21b{bottom:229.635000px;}
.y17{bottom:230.677500px;}
.y174{bottom:234.547500px;}
.y109{bottom:234.720000px;}
.yc1{bottom:238.486500px;}
.y198{bottom:238.539000px;}
.y42{bottom:240.820500px;}
.y1ad{bottom:243.195000px;}
.y131{bottom:243.217500px;}
.y97{bottom:243.225000px;}
.y1d4{bottom:243.334500px;}
.y11c{bottom:243.349500px;}
.yf0{bottom:243.366000px;}
.y1ed{bottom:243.382500px;}
.y77{bottom:243.415500px;}
.y21a{bottom:245.385000px;}
.y16{bottom:251.682000px;}
.y173{bottom:251.790000px;}
.y108{bottom:251.962500px;}
.yd0{bottom:254.298000px;}
.y41{bottom:258.063000px;}
.yc0{bottom:259.486500px;}
.y1ac{bottom:260.437500px;}
.y130{bottom:260.460000px;}
.y96{bottom:260.467500px;}
.y1d3{bottom:260.577000px;}
.y11b{bottom:260.592000px;}
.yef{bottom:260.608500px;}
.y1ec{bottom:260.625000px;}
.y76{bottom:260.658000px;}
.y219{bottom:261.135000px;}
.y197{bottom:261.300000px;}
.ycf{bottom:266.295000px;}
.y15{bottom:266.687250px;}
.y172{bottom:269.032500px;}
.y107{bottom:269.205000px;}
.y40{bottom:275.305500px;}
.y218{bottom:276.885000px;}
.y1ab{bottom:277.680000px;}
.y12f{bottom:277.702500px;}
.y95{bottom:277.710000px;}
.y1d2{bottom:277.819500px;}
.y1e8{bottom:277.834500px;}
.yee{bottom:277.851000px;}
.y1eb{bottom:277.867500px;}
.y75{bottom:277.900500px;}
.ybf{bottom:280.486500px;}
.y196{bottom:281.545500px;}
.y14{bottom:281.692500px;}
.y171{bottom:286.275000px;}
.y106{bottom:286.447500px;}
.y11a{bottom:286.464000px;}
.y3f{bottom:292.548000px;}
.y217{bottom:292.635000px;}
.yca{bottom:293.793000px;}
.y1aa{bottom:294.922500px;}
.y12e{bottom:294.945000px;}
.y94{bottom:294.952500px;}
.y1d1{bottom:295.062000px;}
.y1e7{bottom:295.077000px;}
.yed{bottom:295.093500px;}
.y1ea{bottom:295.110000px;}
.y74{bottom:295.143000px;}
.y13{bottom:296.697750px;}
.ybe{bottom:299.985000px;}
.y195{bottom:301.795500px;}
.y170{bottom:303.517500px;}
.y105{bottom:303.690000px;}
.yc9{bottom:305.790000px;}
.y216{bottom:308.385000px;}
.y3e{bottom:309.790500px;}
.y12{bottom:311.703000px;}
.y1a9{bottom:312.165000px;}
.y12d{bottom:312.187500px;}
.y93{bottom:312.195000px;}
.y1d0{bottom:312.304500px;}
.y1e6{bottom:312.319500px;}
.yec{bottom:312.336000px;}
.y1e9{bottom:312.352500px;}
.y73{bottom:312.385500px;}
.y104{bottom:320.932500px;}
.y16f{bottom:320.965500px;}
.ybd{bottom:320.985000px;}
.y194{bottom:322.045500px;}
.y215{bottom:324.135000px;}
.y11{bottom:326.708250px;}
.y3d{bottom:327.033000px;}
.y1a8{bottom:329.407500px;}
.y12c{bottom:329.430000px;}
.y92{bottom:329.437500px;}
.y1cf{bottom:329.547000px;}
.y1e5{bottom:329.562000px;}
.yeb{bottom:329.578500px;}
.y119{bottom:329.595000px;}
.y72{bottom:329.628000px;}
.y193{bottom:337.800000px;}
.y103{bottom:338.175000px;}
.y16e{bottom:338.208000px;}
.y214{bottom:339.885000px;}
.y10{bottom:341.713500px;}
.ybc{bottom:341.985000px;}
.y3c{bottom:344.275500px;}
.y1a7{bottom:346.650000px;}
.y12b{bottom:346.672500px;}
.y91{bottom:346.680000px;}
.y1ce{bottom:346.789500px;}
.y1e4{bottom:346.804500px;}
.yea{bottom:346.821000px;}
.y118{bottom:346.837500px;}
.y71{bottom:346.870500px;}
.y16d{bottom:355.450500px;}
.y213{bottom:355.635000px;}
.yf{bottom:356.718750px;}
.y192{bottom:358.050000px;}
.y3b{bottom:361.518000px;}
.y1a6{bottom:363.892500px;}
.y12a{bottom:363.915000px;}
.y90{bottom:363.922500px;}
.y1cd{bottom:364.032000px;}
.y102{bottom:364.047000px;}
.ye9{bottom:364.063500px;}
.y117{bottom:364.080000px;}
.y70{bottom:364.113000px;}
.y212{bottom:371.385000px;}
.y16c{bottom:372.693000px;}
.y191{bottom:378.295500px;}
.y3a{bottom:378.760500px;}
.y129{bottom:381.157500px;}
.y8f{bottom:381.165000px;}
.y1cc{bottom:381.274500px;}
.y1e3{bottom:381.289500px;}
.ye8{bottom:381.306000px;}
.y116{bottom:381.322500px;}
.y6f{bottom:381.355500px;}
.yb0{bottom:386.032500px;}
.ye{bottom:386.715000px;}
.y211{bottom:387.135000px;}
.y101{bottom:389.919000px;}
.y16b{bottom:389.935500px;}
.y39{bottom:396.003000px;}
.y128{bottom:398.400000px;}
.y8e{bottom:398.407500px;}
.y1cb{bottom:398.517000px;}
.y1e2{bottom:398.532000px;}
.y190{bottom:398.545500px;}
.ye7{bottom:398.548500px;}
.y115{bottom:398.565000px;}
.y6e{bottom:398.598000px;}
.y210{bottom:402.885000px;}
.yaf{bottom:403.275000px;}
.y100{bottom:407.161500px;}
.y16a{bottom:407.178000px;}
.y38{bottom:413.245500px;}
.y8d{bottom:415.650000px;}
.y1ca{bottom:415.759500px;}
.y1e1{bottom:415.774500px;}
.ye6{bottom:415.791000px;}
.y114{bottom:415.807500px;}
.y6d{bottom:415.840500px;}
.y20f{bottom:418.635000px;}
.y18f{bottom:418.795500px;}
.yae{bottom:420.517500px;}
.yd{bottom:422.677500px;}
.y169{bottom:424.420500px;}
.y37{bottom:430.488000px;}
.y8c{bottom:432.892500px;}
.y1c9{bottom:433.002000px;}
.y1e0{bottom:433.017000px;}
.ye5{bottom:433.033500px;}
.y113{bottom:433.050000px;}
.y153{bottom:433.344000px;}
.y20e{bottom:434.385000px;}
.y18e{bottom:434.550000px;}
.yad{bottom:437.760000px;}
.y168{bottom:441.663000px;}
.yc{bottom:443.682000px;}
.y6c{bottom:444.567000px;}
.y152{bottom:447.600000px;}
.y20d{bottom:450.135000px;}
.y1c8{bottom:450.244500px;}
.y8b{bottom:450.259500px;}
.ye4{bottom:450.276000px;}
.yff{bottom:450.292500px;}
.y18d{bottom:454.800000px;}
.yac{bottom:455.002500px;}
.y36{bottom:456.360000px;}
.yb{bottom:458.687250px;}
.y167{bottom:458.905500px;}
.y20c{bottom:465.885000px;}
.y1c7{bottom:467.487000px;}
.y8a{bottom:467.502000px;}
.ye3{bottom:467.518500px;}
.yfe{bottom:467.535000px;}
.y151{bottom:470.332500px;}
.y18c{bottom:470.541000px;}
.yab{bottom:472.245000px;}
.y6b{bottom:473.293500px;}
.ya{bottom:473.692500px;}
.y166{bottom:476.148000px;}
.y20b{bottom:481.635000px;}
.y1c6{bottom:484.729500px;}
.y89{bottom:484.744500px;}
.ye2{bottom:484.761000px;}
.yfd{bottom:484.777500px;}
.y150{bottom:485.938500px;}
.y18b{bottom:486.295500px;}
.y9{bottom:488.697750px;}
.yaa{bottom:489.487500px;}
.y165{bottom:493.390500px;}
.y57{bottom:495.000000px;}
.y20a{bottom:497.385000px;}
.y14f{bottom:501.544500px;}
.y1c5{bottom:501.972000px;}
.y88{bottom:501.987000px;}
.ye1{bottom:502.003500px;}
.yfc{bottom:502.020000px;}
.y18a{bottom:502.050000px;}
.y8{bottom:503.703000px;}
.ya9{bottom:506.730000px;}
.y1df{bottom:510.616500px;}
.y164{bottom:510.633000px;}
.y56{bottom:511.500000px;}
.y209{bottom:513.135000px;}
.y14e{bottom:517.150500px;}
.y7{bottom:518.708250px;}
.y1c4{bottom:519.214500px;}
.y87{bottom:519.229500px;}
.ye0{bottom:519.246000px;}
.y6a{bottom:519.262500px;}
.ya8{bottom:523.972500px;}
.y189{bottom:527.550000px;}
.y163{bottom:527.875500px;}
.y55{bottom:528.000000px;}
.y208{bottom:528.885000px;}
.y14d{bottom:532.756500px;}
.y6{bottom:533.713500px;}
.y86{bottom:536.472000px;}
.ydf{bottom:536.488500px;}
.y69{bottom:536.505000px;}
.ya7{bottom:541.215000px;}
.y207{bottom:544.635000px;}
.y1c3{bottom:545.086500px;}
.y162{bottom:545.118000px;}
.y5{bottom:548.718750px;}
.y53{bottom:549.000000px;}
.y14c{bottom:552.615000px;}
.y85{bottom:553.714500px;}
.yde{bottom:553.731000px;}
.y68{bottom:553.747500px;}
.ya6{bottom:558.457500px;}
.y206{bottom:560.385000px;}
.y161{bottom:562.360500px;}
.y59{bottom:564.000000px;}
.y51{bottom:565.500000px;}
.y14b{bottom:568.173000px;}
.y84{bottom:570.957000px;}
.ydd{bottom:570.973500px;}
.y67{bottom:570.990000px;}
.ya5{bottom:575.700000px;}
.y205{bottom:576.135000px;}
.y4{bottom:578.715000px;}
.y160{bottom:579.603000px;}
.y4f{bottom:582.000000px;}
.y58{bottom:583.500000px;}
.y14a{bottom:583.779000px;}
.y188{bottom:588.199500px;}
.ydc{bottom:588.216000px;}
.y1c2{bottom:588.217500px;}
.y66{bottom:588.232500px;}
.y204{bottom:591.885000px;}
.ya4{bottom:592.942500px;}
.y2c{bottom:596.724000px;}
.y83{bottom:596.829000px;}
.y15f{bottom:596.845500px;}
.y149{bottom:599.385000px;}
.y187{bottom:605.442000px;}
.ydb{bottom:605.458500px;}
.y1c1{bottom:605.460000px;}
.y65{bottom:605.475000px;}
.y203{bottom:607.635000px;}
.ya3{bottom:610.185000px;}
.y2b{bottom:610.980000px;}
.y4e{bottom:613.740000px;}
.y15e{bottom:614.088000px;}
.y148{bottom:614.991000px;}
.y186{bottom:622.684500px;}
.yda{bottom:622.701000px;}
.y1c0{bottom:622.702500px;}
.y64{bottom:622.717500px;}
.y202{bottom:623.385000px;}
.y147{bottom:630.597000px;}
.y15d{bottom:631.330500px;}
.y2a{bottom:636.837000px;}
.y201{bottom:639.135000px;}
.y185{bottom:639.927000px;}
.yd9{bottom:639.943500px;}
.y1bf{bottom:639.945000px;}
.y63{bottom:639.960000px;}
.y146{bottom:646.203000px;}
.y15c{bottom:648.573000px;}
.y29{bottom:651.093000px;}
.yb9{bottom:653.955000px;}
.y200{bottom:654.885000px;}
.y184{bottom:657.169500px;}
.yd8{bottom:657.186000px;}
.y1be{bottom:657.187500px;}
.y62{bottom:657.202500px;}
.y145{bottom:661.809000px;}
.y28{bottom:665.349000px;}
.y15b{bottom:665.815500px;}
.y1ff{bottom:670.635000px;}
.y35{bottom:671.385000px;}
.y183{bottom:674.412000px;}
.yd7{bottom:674.428500px;}
.y1bd{bottom:674.430000px;}
.y61{bottom:674.445000px;}
.yb8{bottom:676.710000px;}
.y144{bottom:677.415000px;}
.y27{bottom:679.605000px;}
.y15a{bottom:683.058000px;}
.y1fe{bottom:686.385000px;}
.y182{bottom:691.654500px;}
.yd6{bottom:691.671000px;}
.y1bc{bottom:691.672500px;}
.y60{bottom:691.687500px;}
.y34{bottom:692.357250px;}
.yb7{bottom:696.960000px;}
.y143{bottom:697.260000px;}
.y26{bottom:697.605000px;}
.y159{bottom:700.300500px;}
.y1fd{bottom:702.135000px;}
.y33{bottom:707.362500px;}
.y181{bottom:708.897000px;}
.yd5{bottom:708.913500px;}
.y1bb{bottom:708.915000px;}
.y5f{bottom:708.930000px;}
.y142{bottom:712.848000px;}
.y25{bottom:715.605000px;}
.yb6{bottom:717.210000px;}
.y158{bottom:717.543000px;}
.y1fc{bottom:717.885000px;}
.y32{bottom:722.367750px;}
.y180{bottom:726.139500px;}
.yd4{bottom:726.156000px;}
.y1ba{bottom:726.157500px;}
.y5e{bottom:726.172500px;}
.y141{bottom:728.454000px;}
.y1fb{bottom:733.635000px;}
.y157{bottom:734.785500px;}
.y31{bottom:737.373000px;}
.yb5{bottom:737.460000px;}
.yd3{bottom:743.398500px;}
.y1b9{bottom:743.400000px;}
.y5d{bottom:743.415000px;}
.y140{bottom:744.060000px;}
.y1fa{bottom:749.385000px;}
.y2{bottom:751.605000px;}
.y17f{bottom:752.011500px;}
.y156{bottom:752.028000px;}
.y30{bottom:752.378250px;}
.yb4{bottom:757.710000px;}
.y24{bottom:760.605000px;}
.yd2{bottom:760.641000px;}
.y1b8{bottom:760.642500px;}
.y5c{bottom:760.657500px;}
.y13f{bottom:763.905000px;}
.y1f9{bottom:765.135000px;}
.y2f{bottom:767.383500px;}
.y155{bottom:769.270500px;}
.yd1{bottom:777.883500px;}
.y5b{bottom:777.900000px;}
.yb3{bottom:777.960000px;}
.y13e{bottom:779.499000px;}
.y1f8{bottom:780.885000px;}
.y2e{bottom:782.388750px;}
.y23{bottom:784.605000px;}
.y154{bottom:786.513000px;}
.yb2{bottom:793.710000px;}
.y13d{bottom:795.105000px;}
.y5a{bottom:795.142500px;}
.y1f7{bottom:796.635000px;}
.y1{bottom:805.605000px;}
.y22{bottom:808.605000px;}
.y2d{bottom:812.385000px;}
.yb1{bottom:819.210000px;}
.y21{bottom:859.605000px;}
.y3{bottom:922.500000px;}
.hd{height:12.000000px;}
.hc{height:13.500000px;}
.ha{height:16.500000px;}
.h12{height:38.412000px;}
.h11{height:44.814000px;}
.h2{height:47.085938px;}
.h5{height:51.216000px;}
.hb{height:52.998047px;}
.h8{height:57.618000px;}
.h13{height:57.666000px;}
.h10{height:58.536000px;}
.h3{height:60.819000px;}
.h4{height:61.788000px;}
.hf{height:64.020000px;}
.h15{height:65.040000px;}
.h9{height:70.422000px;}
.h14{height:71.015400px;}
.he{height:71.544000px;}
.h7{height:76.824000px;}
.h6{height:89.628000px;}
.h1{height:102.432000px;}
.h0{height:892.500000px;}
.w7{width:150.000000px;}
.w6{width:196.500000px;}
.w4{width:216.000000px;}
.w5{width:219.000000px;}
.w3{width:222.000000px;}
.w1{width:223.500000px;}
.w2{width:234.000000px;}
.w0{width:636.000000px;}
.x0{left:0.000000px;}
.x3{left:6.000000px;}
.x13{left:39.063000px;}
.xf{left:59.265000px;}
.xd{left:70.500000px;}
.x4{left:76.200000px;}
.x8{left:77.415000px;}
.xb{left:82.500000px;}
.x10{left:85.500000px;}
.x11{left:88.535700px;}
.xe{left:91.500000px;}
.x15{left:93.426000px;}
.x9{left:94.642650px;}
.x24{left:98.691000px;}
.x27{left:99.919500px;}
.x18{left:102.403500px;}
.x12{left:106.500000px;}
.x29{left:127.233000px;}
.x19{left:133.903500px;}
.xc{left:153.015150px;}
.x16{left:161.250000px;}
.x1a{left:165.403500px;}
.x26{left:176.791500px;}
.x17{left:180.255000px;}
.x25{left:195.705000px;}
.x1b{left:198.405000px;}
.x1c{left:229.905000px;}
.x1{left:239.505000px;}
.x1d{left:262.906500px;}
.x2{left:265.881000px;}
.xa{left:296.745000px;}
.x1e{left:328.909500px;}
.x14{left:334.500000px;}
.x1f{left:360.409500px;}
.x5{left:378.885000px;}
.x20{left:393.411000px;}
.x7{left:402.672000px;}
.x6{left:410.880000px;}
.x28{left:412.110000px;}
.x21{left:424.911000px;}
.x22{left:456.411000px;}
.x23{left:492.900000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.506667pt;}
.ls2d{letter-spacing:-4.408000pt;}
.ls2e{letter-spacing:-4.357333pt;}
.ls2a{letter-spacing:-4.296533pt;}
.ls46{letter-spacing:-4.224000pt;}
.ls36{letter-spacing:-3.825067pt;}
.ls35{letter-spacing:-3.696000pt;}
.ls2f{letter-spacing:-3.090667pt;}
.ls4c{letter-spacing:-2.560000pt;}
.ls32{letter-spacing:-1.953600pt;}
.ls3b{letter-spacing:-1.818667pt;}
.ls22{letter-spacing:-1.813867pt;}
.lsa6{letter-spacing:-1.760000pt;}
.ls21{letter-spacing:-1.616267pt;}
.ls20{letter-spacing:-1.611200pt;}
.ls56{letter-spacing:-1.408000pt;}
.lsa5{letter-spacing:-1.386667pt;}
.ls3a{letter-spacing:-1.349333pt;}
.ls4e{letter-spacing:-1.322667pt;}
.ls67{letter-spacing:-1.290667pt;}
.ls3c{letter-spacing:-1.284800pt;}
.ls31{letter-spacing:-1.237867pt;}
.ls77{letter-spacing:-1.232000pt;}
.ls4f{letter-spacing:-1.216000pt;}
.ls84{letter-spacing:-1.173333pt;}
.ls79{letter-spacing:-1.152000pt;}
.lsa4{letter-spacing:-1.120000pt;}
.ls83{letter-spacing:-1.114667pt;}
.ls78{letter-spacing:-1.104000pt;}
.lsaf{letter-spacing:-1.080000pt;}
.lsb0{letter-spacing:-1.066667pt;}
.ls11{letter-spacing:-1.064000pt;}
.ls42{letter-spacing:-1.056000pt;}
.ls3d{letter-spacing:-1.050133pt;}
.ls44{letter-spacing:-1.044267pt;}
.ls2c{letter-spacing:-1.013333pt;}
.ls40{letter-spacing:-0.997333pt;}
.lsae{letter-spacing:-0.960000pt;}
.ls43{letter-spacing:-0.938667pt;}
.ls26{letter-spacing:-0.917067pt;}
.ls86{letter-spacing:-0.906667pt;}
.ls12{letter-spacing:-0.896000pt;}
.ls41{letter-spacing:-0.880000pt;}
.ls3f{letter-spacing:-0.862400pt;}
.ls27{letter-spacing:-0.861333pt;}
.lsb1{letter-spacing:-0.853333pt;}
.lsa3{letter-spacing:-0.840000pt;}
.ls5f{letter-spacing:-0.821333pt;}
.lsd{letter-spacing:-0.810667pt;}
.lsa2{letter-spacing:-0.800000pt;}
.ls60{letter-spacing:-0.792000pt;}
.ls45{letter-spacing:-0.762667pt;}
.lsc{letter-spacing:-0.760000pt;}
.lsad{letter-spacing:-0.720000pt;}
.ls29{letter-spacing:-0.709333pt;}
.ls30{letter-spacing:-0.704000pt;}
.ls47{letter-spacing:-0.698133pt;}
.ls87{letter-spacing:-0.693333pt;}
.ls85{letter-spacing:-0.680000pt;}
.ls2b{letter-spacing:-0.668800pt;}
.ls38{letter-spacing:-0.645333pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.608000pt;}
.ls24{letter-spacing:-0.602933pt;}
.ls57{letter-spacing:-0.586667pt;}
.ls7f{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.557333pt;}
.ls4b{letter-spacing:-0.554667pt;}
.lsa7{letter-spacing:-0.533333pt;}
.ls54{letter-spacing:-0.528000pt;}
.ls4d{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.506667pt;}
.lsa0{letter-spacing:-0.480000pt;}
.ls49{letter-spacing:-0.469333pt;}
.ls23{letter-spacing:-0.456000pt;}
.ls48{letter-spacing:-0.410667pt;}
.ls9d{letter-spacing:-0.400000pt;}
.ls9f{letter-spacing:-0.373333pt;}
.ls9e{letter-spacing:-0.360000pt;}
.ls4a{letter-spacing:-0.352000pt;}
.ls71{letter-spacing:-0.336000pt;}
.lsb{letter-spacing:-0.304000pt;}
.ls55{letter-spacing:-0.293333pt;}
.ls82{letter-spacing:-0.287467pt;}
.ls70{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.253333pt;}
.ls6f{letter-spacing:-0.246400pt;}
.ls7a{letter-spacing:-0.240000pt;}
.ls53{letter-spacing:-0.234667pt;}
.ls25{letter-spacing:-0.202667pt;}
.ls5e{letter-spacing:-0.176000pt;}
.ls3e{letter-spacing:-0.170133pt;}
.ls89{letter-spacing:-0.160000pt;}
.ls28{letter-spacing:-0.152000pt;}
.ls88{letter-spacing:-0.120000pt;}
.ls34{letter-spacing:-0.117333pt;}
.ls75{letter-spacing:-0.096000pt;}
.ls7e{letter-spacing:-0.085333pt;}
.ls33{letter-spacing:-0.058667pt;}
.ls62{letter-spacing:-0.053333pt;}
.ls39{letter-spacing:-0.052800pt;}
.lsf{letter-spacing:-0.050667pt;}
.ls63{letter-spacing:-0.048000pt;}
.ls13{letter-spacing:-0.042667pt;}
.lsa1{letter-spacing:-0.040000pt;}
.ls37{letter-spacing:-0.005867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9a{letter-spacing:0.040000pt;}
.ls3{letter-spacing:0.050667pt;}
.ls9b{letter-spacing:0.053333pt;}
.ls51{letter-spacing:0.058667pt;}
.ls7d{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.101333pt;}
.ls17{letter-spacing:0.105600pt;}
.ls19{letter-spacing:0.117333pt;}
.ls4{letter-spacing:0.152000pt;}
.ls8c{letter-spacing:0.160000pt;}
.ls74{letter-spacing:0.170667pt;}
.ls16{letter-spacing:0.176000pt;}
.ls69{letter-spacing:0.192000pt;}
.lsab{letter-spacing:0.200000pt;}
.ls6{letter-spacing:0.202667pt;}
.ls1d{letter-spacing:0.234667pt;}
.ls14{letter-spacing:0.253333pt;}
.lsac{letter-spacing:0.266667pt;}
.ls6c{letter-spacing:0.288000pt;}
.ls1b{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.304000pt;}
.ls95{letter-spacing:0.320000pt;}
.ls6d{letter-spacing:0.336000pt;}
.ls18{letter-spacing:0.352000pt;}
.lsa9{letter-spacing:0.360000pt;}
.lsa8{letter-spacing:0.373333pt;}
.ls7c{letter-spacing:0.384000pt;}
.ls99{letter-spacing:0.400000pt;}
.ls2{letter-spacing:0.405333pt;}
.ls65{letter-spacing:0.410667pt;}
.ls98{letter-spacing:0.426667pt;}
.ls5c{letter-spacing:0.469333pt;}
.ls6a{letter-spacing:0.480000pt;}
.ls5b{letter-spacing:0.528000pt;}
.ls8d{letter-spacing:0.533333pt;}
.ls1a{letter-spacing:0.586667pt;}
.ls58{letter-spacing:0.597333pt;}
.ls5d{letter-spacing:0.645333pt;}
.lse{letter-spacing:0.658667pt;}
.ls76{letter-spacing:0.672000pt;}
.ls50{letter-spacing:0.704000pt;}
.ls8{letter-spacing:0.709333pt;}
.ls5a{letter-spacing:0.762667pt;}
.ls81{letter-spacing:0.800000pt;}
.ls52{letter-spacing:0.821333pt;}
.ls96{letter-spacing:0.840000pt;}
.ls97{letter-spacing:0.853333pt;}
.ls61{letter-spacing:0.880000pt;}
.ls73{letter-spacing:0.938667pt;}
.lsaa{letter-spacing:0.960000pt;}
.ls66{letter-spacing:0.997333pt;}
.ls7b{letter-spacing:1.056000pt;}
.ls72{letter-spacing:1.114667pt;}
.ls8a{letter-spacing:1.120000pt;}
.ls8b{letter-spacing:1.160000pt;}
.ls80{letter-spacing:1.173333pt;}
.ls8f{letter-spacing:1.200000pt;}
.ls1c{letter-spacing:1.220267pt;}
.ls8e{letter-spacing:1.226667pt;}
.ls90{letter-spacing:1.240000pt;}
.ls91{letter-spacing:1.280000pt;}
.ls92{letter-spacing:1.320000pt;}
.ls93{letter-spacing:1.333333pt;}
.ls59{letter-spacing:1.349333pt;}
.ls6e{letter-spacing:1.466667pt;}
.ls9c{letter-spacing:1.546667pt;}
.ls64{letter-spacing:1.584000pt;}
.ls68{letter-spacing:1.760000pt;}
.ls1e{letter-spacing:2.411200pt;}
.ls15{letter-spacing:12.616000pt;}
.ls94{letter-spacing:13.333333pt;}
.ls6b{letter-spacing:13.920000pt;}
.ws0{word-spacing:-21.333333pt;}
.ws92{word-spacing:-16.250667pt;}
.wsd3{word-spacing:-16.133333pt;}
.wsc8{word-spacing:-15.781333pt;}
.wsa8{word-spacing:-15.664000pt;}
.wsc9{word-spacing:-15.605333pt;}
.wsac{word-spacing:-15.546667pt;}
.wsa4{word-spacing:-15.488000pt;}
.ws99{word-spacing:-15.429333pt;}
.ws6b{word-spacing:-15.370667pt;}
.wsd1{word-spacing:-15.312000pt;}
.ws45{word-spacing:-15.253333pt;}
.wsa5{word-spacing:-15.194667pt;}
.ws98{word-spacing:-15.136000pt;}
.ws94{word-spacing:-15.077333pt;}
.ws6c{word-spacing:-15.018667pt;}
.ws37{word-spacing:-14.960000pt;}
.ws83{word-spacing:-14.901333pt;}
.wse2{word-spacing:-14.880000pt;}
.ws93{word-spacing:-14.842667pt;}
.ws85{word-spacing:-14.784000pt;}
.wsad{word-spacing:-14.725333pt;}
.ws48{word-spacing:-14.666667pt;}
.ws3c{word-spacing:-14.660800pt;}
.ws3d{word-spacing:-14.613867pt;}
.ws6d{word-spacing:-14.608000pt;}
.wse6{word-spacing:-14.560000pt;}
.ws49{word-spacing:-14.549333pt;}
.ws43{word-spacing:-14.496533pt;}
.ws82{word-spacing:-14.490667pt;}
.ws97{word-spacing:-14.432000pt;}
.wsc6{word-spacing:-14.373333pt;}
.ws81{word-spacing:-14.314667pt;}
.ws11c{word-spacing:-14.293333pt;}
.ws36{word-spacing:-14.256000pt;}
.wsa6{word-spacing:-14.197333pt;}
.wsf6{word-spacing:-14.186667pt;}
.wsd2{word-spacing:-14.138667pt;}
.wsae{word-spacing:-14.080000pt;}
.ws8c{word-spacing:-14.021333pt;}
.ws4f{word-spacing:-13.968533pt;}
.ws42{word-spacing:-13.962667pt;}
.ws4d{word-spacing:-13.904000pt;}
.wse4{word-spacing:-13.866667pt;}
.wsa7{word-spacing:-13.845333pt;}
.wsf8{word-spacing:-13.813333pt;}
.ws44{word-spacing:-13.804267pt;}
.ws47{word-spacing:-13.786667pt;}
.wsfc{word-spacing:-13.760000pt;}
.ws4b{word-spacing:-13.728000pt;}
.ws115{word-spacing:-13.706667pt;}
.ws46{word-spacing:-13.669333pt;}
.wsef{word-spacing:-13.653333pt;}
.ws4c{word-spacing:-13.622400pt;}
.ws41{word-spacing:-13.616533pt;}
.ws4a{word-spacing:-13.610667pt;}
.ws8d{word-spacing:-13.546667pt;}
.wsd0{word-spacing:-13.493333pt;}
.ws38{word-spacing:-13.428800pt;}
.ws40{word-spacing:-13.381867pt;}
.wsd4{word-spacing:-13.333333pt;}
.ws9{word-spacing:-13.325333pt;}
.ws3e{word-spacing:-13.317333pt;}
.wsf0{word-spacing:-13.280000pt;}
.wsee{word-spacing:-13.173333pt;}
.ws3{word-spacing:-12.920000pt;}
.ws6{word-spacing:-12.869333pt;}
.wsea{word-spacing:-12.853333pt;}
.ws3f{word-spacing:-12.848000pt;}
.wsfe{word-spacing:-12.800000pt;}
.ws7{word-spacing:-12.768000pt;}
.wsa{word-spacing:-12.717333pt;}
.ws39{word-spacing:-12.713067pt;}
.ws8{word-spacing:-12.666667pt;}
.wsd8{word-spacing:-12.640000pt;}
.wsb{word-spacing:-12.616000pt;}
.wsf2{word-spacing:-12.533333pt;}
.wsd6{word-spacing:-12.426667pt;}
.ws4{word-spacing:-12.413333pt;}
.ws117{word-spacing:-12.373333pt;}
.ws5{word-spacing:-12.362667pt;}
.ws9e{word-spacing:-12.336000pt;}
.ws22{word-spacing:-12.312000pt;}
.ws9d{word-spacing:-12.288000pt;}
.wsb7{word-spacing:-12.240000pt;}
.wsf4{word-spacing:-12.213333pt;}
.ws28{word-spacing:-12.210667pt;}
.ws35{word-spacing:-12.160000pt;}
.ws2f{word-spacing:-12.109333pt;}
.wsbf{word-spacing:-12.096000pt;}
.ws29{word-spacing:-12.063733pt;}
.ws23{word-spacing:-12.058667pt;}
.wse{word-spacing:-12.000000pt;}
.ws30{word-spacing:-11.997867pt;}
.ws2d{word-spacing:-11.957333pt;}
.ws31{word-spacing:-11.906667pt;}
.ws24{word-spacing:-11.856000pt;}
.ws2c{word-spacing:-11.805333pt;}
.wsc0{word-spacing:-11.760000pt;}
.ws2b{word-spacing:-11.749600pt;}
.ws57{word-spacing:-11.704000pt;}
.ws2a{word-spacing:-11.602667pt;}
.wsfa{word-spacing:-11.573333pt;}
.wseb{word-spacing:-11.320000pt;}
.ws6e{word-spacing:-11.264000pt;}
.wse5{word-spacing:-11.240000pt;}
.wse3{word-spacing:-11.200000pt;}
.wse0{word-spacing:-11.160000pt;}
.ws25{word-spacing:-11.055467pt;}
.ws26{word-spacing:-11.050400pt;}
.ws3a{word-spacing:-10.970667pt;}
.ws11b{word-spacing:-10.960000pt;}
.ws27{word-spacing:-10.852800pt;}
.wsb1{word-spacing:-10.848000pt;}
.ws3b{word-spacing:-10.841600pt;}
.wsf5{word-spacing:-10.840000pt;}
.wsd{word-spacing:-10.837333pt;}
.ws54{word-spacing:-10.666667pt;}
.ws52{word-spacing:-10.624000pt;}
.wsb6{word-spacing:-10.581333pt;}
.wsf7{word-spacing:-10.480000pt;}
.ws4e{word-spacing:-10.442667pt;}
.ws9b{word-spacing:-10.410667pt;}
.wsfb{word-spacing:-10.400000pt;}
.ws114{word-spacing:-10.360000pt;}
.wsaf{word-spacing:-10.266667pt;}
.ws84{word-spacing:-10.208000pt;}
.ws11d{word-spacing:-10.200000pt;}
.ws55{word-spacing:-10.197333pt;}
.ws53{word-spacing:-10.154667pt;}
.ws50{word-spacing:-10.112000pt;}
.ws100{word-spacing:-10.040000pt;}
.ws9a{word-spacing:-10.020267pt;}
.wsd9{word-spacing:-10.000000pt;}
.wscd{word-spacing:-9.979200pt;}
.wsec{word-spacing:-9.960000pt;}
.wsda{word-spacing:-9.880000pt;}
.ws11e{word-spacing:-9.840000pt;}
.ws120{word-spacing:-9.813333pt;}
.wsc{word-spacing:-9.770667pt;}
.wse8{word-spacing:-9.640000pt;}
.wse7{word-spacing:-9.600000pt;}
.ws34{word-spacing:-9.576000pt;}
.wse9{word-spacing:-9.520000pt;}
.ws56{word-spacing:-9.344000pt;}
.wsd7{word-spacing:-9.320000pt;}
.ws118{word-spacing:-9.280000pt;}
.wsf1{word-spacing:-9.200000pt;}
.ws11f{word-spacing:-8.920000pt;}
.ws2e{word-spacing:-8.370133pt;}
.ws33{word-spacing:-8.309333pt;}
.ws32{word-spacing:-8.258667pt;}
.wsf9{word-spacing:-8.240000pt;}
.ws51{word-spacing:-8.106667pt;}
.ws2{word-spacing:-6.570667pt;}
.wsc7{word-spacing:-1.232000pt;}
.ws8a{word-spacing:-0.762667pt;}
.ws5f{word-spacing:-0.704000pt;}
.ws1d{word-spacing:-0.658667pt;}
.ws60{word-spacing:-0.645333pt;}
.ws108{word-spacing:-0.640000pt;}
.ws71{word-spacing:-0.586667pt;}
.wsb3{word-spacing:-0.576000pt;}
.ws1f{word-spacing:-0.557333pt;}
.wsdd{word-spacing:-0.533333pt;}
.ws70{word-spacing:-0.528000pt;}
.ws5c{word-spacing:-0.506667pt;}
.wsab{word-spacing:-0.480000pt;}
.ws7a{word-spacing:-0.469333pt;}
.ws5b{word-spacing:-0.456000pt;}
.ws68{word-spacing:-0.410667pt;}
.ws20{word-spacing:-0.405333pt;}
.wscf{word-spacing:-0.384000pt;}
.ws10b{word-spacing:-0.373333pt;}
.ws18{word-spacing:-0.354667pt;}
.ws67{word-spacing:-0.352000pt;}
.wsb4{word-spacing:-0.336000pt;}
.ws104{word-spacing:-0.320000pt;}
.ws74{word-spacing:-0.293333pt;}
.ws102{word-spacing:-0.266667pt;}
.ws78{word-spacing:-0.234667pt;}
.ws105{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.202667pt;}
.wsa1{word-spacing:-0.192000pt;}
.ws7e{word-spacing:-0.176000pt;}
.ws11{word-spacing:-0.152000pt;}
.ws64{word-spacing:-0.117333pt;}
.ws16{word-spacing:-0.101333pt;}
.wsc2{word-spacing:-0.096000pt;}
.ws61{word-spacing:-0.058667pt;}
.ws109{word-spacing:-0.053333pt;}
.ws1a{word-spacing:-0.050667pt;}
.wsc3{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.wsdc{word-spacing:0.053333pt;}
.ws88{word-spacing:0.058667pt;}
.ws91{word-spacing:0.096000pt;}
.ws1b{word-spacing:0.101333pt;}
.ws103{word-spacing:0.106667pt;}
.ws80{word-spacing:0.117333pt;}
.ws1c{word-spacing:0.152000pt;}
.wsde{word-spacing:0.160000pt;}
.ws76{word-spacing:0.176000pt;}
.ws59{word-spacing:0.202667pt;}
.ws87{word-spacing:0.234667pt;}
.ws15{word-spacing:0.253333pt;}
.ws95{word-spacing:0.293333pt;}
.wsc4{word-spacing:0.336000pt;}
.ws79{word-spacing:0.352000pt;}
.ws121{word-spacing:0.373333pt;}
.ws21{word-spacing:0.405333pt;}
.wsa9{word-spacing:0.410667pt;}
.wsb5{word-spacing:0.432000pt;}
.ws72{word-spacing:0.469333pt;}
.ws10c{word-spacing:0.480000pt;}
.ws75{word-spacing:0.528000pt;}
.ws106{word-spacing:0.533333pt;}
.ws1e{word-spacing:0.557333pt;}
.ws7f{word-spacing:0.586667pt;}
.ws7b{word-spacing:0.645333pt;}
.ws101{word-spacing:0.693333pt;}
.wsca{word-spacing:0.698133pt;}
.ws7d{word-spacing:0.704000pt;}
.ws110{word-spacing:0.746667pt;}
.ws6f{word-spacing:0.762667pt;}
.ws10d{word-spacing:0.800000pt;}
.wsf{word-spacing:0.810667pt;}
.ws96{word-spacing:0.821333pt;}
.ws10e{word-spacing:0.853333pt;}
.wsc5{word-spacing:0.864000pt;}
.ws65{word-spacing:0.880000pt;}
.ws10f{word-spacing:0.906667pt;}
.ws58{word-spacing:0.912000pt;}
.ws8b{word-spacing:0.938667pt;}
.wsa2{word-spacing:0.960000pt;}
.ws14{word-spacing:0.962667pt;}
.ws7c{word-spacing:0.997333pt;}
.wscc{word-spacing:1.008000pt;}
.ws5d{word-spacing:1.013333pt;}
.ws63{word-spacing:1.056000pt;}
.ws19{word-spacing:1.064000pt;}
.ws111{word-spacing:1.066667pt;}
.wsa3{word-spacing:1.104000pt;}
.ws13{word-spacing:1.114667pt;}
.ws122{word-spacing:1.120000pt;}
.wsb2{word-spacing:1.152000pt;}
.ws5a{word-spacing:1.165333pt;}
.ws66{word-spacing:1.173333pt;}
.wsc1{word-spacing:1.200000pt;}
.ws12{word-spacing:1.216000pt;}
.ws89{word-spacing:1.232000pt;}
.ws17{word-spacing:1.266667pt;}
.ws112{word-spacing:1.280000pt;}
.ws5e{word-spacing:1.290667pt;}
.ws62{word-spacing:1.349333pt;}
.ws73{word-spacing:1.408000pt;}
.ws77{word-spacing:1.466667pt;}
.wsdb{word-spacing:1.701333pt;}
.wsed{word-spacing:2.720000pt;}
.wscb{word-spacing:2.933333pt;}
.wsfd{word-spacing:3.080000pt;}
.wsf3{word-spacing:3.133333pt;}
.wsd5{word-spacing:3.146667pt;}
.ws9f{word-spacing:3.461333pt;}
.ws11a{word-spacing:3.466667pt;}
.ws116{word-spacing:3.480000pt;}
.ws119{word-spacing:3.573333pt;}
.wse1{word-spacing:3.986667pt;}
.wsdf{word-spacing:4.026667pt;}
.ws113{word-spacing:4.346667pt;}
.wsce{word-spacing:4.634667pt;}
.wsff{word-spacing:4.840000pt;}
.ws107{word-spacing:6.080000pt;}
.ws10a{word-spacing:8.106667pt;}
.wsa0{word-spacing:11.557333pt;}
.wsbe{word-spacing:11.952000pt;}
.ws9c{word-spacing:31.440000pt;}
.ws69{word-spacing:31.872000pt;}
.ws86{word-spacing:31.914667pt;}
.wsb0{word-spacing:32.016000pt;}
.wsbc{word-spacing:54.048000pt;}
.wsba{word-spacing:78.048000pt;}
.wsb9{word-spacing:83.952000pt;}
.ws8e{word-spacing:134.613333pt;}
.wsaa{word-spacing:150.816000pt;}
.ws90{word-spacing:154.986667pt;}
.ws8f{word-spacing:181.653333pt;}
.wsbb{word-spacing:200.496000pt;}
.wsb8{word-spacing:219.984000pt;}
.wsbd{word-spacing:224.496000pt;}
.ws6a{word-spacing:240.810667pt;}
._8{margin-left:-11.440000pt;}
._9{margin-left:-10.266667pt;}
._38{margin-left:-7.685333pt;}
._13{margin-left:-6.624000pt;}
._c{margin-left:-5.162667pt;}
._0{margin-left:-3.840000pt;}
._7{margin-left:-2.874667pt;}
._3{margin-left:-1.824000pt;}
._2{margin-left:-0.912000pt;}
._5{width:1.296000pt;}
._1{width:2.533333pt;}
._12{width:3.637333pt;}
._28{width:4.810667pt;}
._4{width:11.248000pt;}
._19{width:40.656000pt;}
._6{width:41.973333pt;}
._b{width:43.093333pt;}
._29{width:44.016000pt;}
._17{width:51.216000pt;}
._1a{width:56.592000pt;}
._18{width:64.080000pt;}
._1b{width:95.184000pt;}
._16{width:105.792000pt;}
._2b{width:115.680000pt;}
._27{width:131.712000pt;}
._2a{width:134.282667pt;}
._32{width:138.768000pt;}
._2c{width:139.776000pt;}
._25{width:162.816000pt;}
._24{width:166.464000pt;}
._26{width:169.248000pt;}
._15{width:172.704000pt;}
._23{width:189.984000pt;}
._33{width:197.712000pt;}
._2e{width:198.864000pt;}
._34{width:207.744000pt;}
._37{width:208.848000pt;}
._1e{width:213.984000pt;}
._2d{width:216.794667pt;}
._a{width:217.749333pt;}
._e{width:218.944000pt;}
._36{width:221.712000pt;}
._35{width:222.864000pt;}
._30{width:231.744000pt;}
._31{width:232.848000pt;}
._1f{width:239.136000pt;}
._d{width:251.946667pt;}
._2f{width:264.288000pt;}
._20{width:268.176000pt;}
._1c{width:272.976000pt;}
._21{width:287.040000pt;}
._1d{width:288.192000pt;}
._22{width:306.288000pt;}
._14{width:441.888000pt;}
._f{width:536.640000pt;}
._11{width:642.133333pt;}
._10{width:668.800000pt;}
.fsa{font-size:32.000000pt;}
.fs9{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fsb{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:44.000000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:1.241333pt;}
.y52{bottom:1.908000pt;}
.y50{bottom:3.241333pt;}
.y4d{bottom:45.469333pt;}
.y1a5{bottom:47.298667pt;}
.y1b7{bottom:47.549333pt;}
.y13c{bottom:47.600000pt;}
.ya2{bottom:47.606667pt;}
.ybb{bottom:47.714667pt;}
.y127{bottom:47.717333pt;}
.y20{bottom:47.718000pt;}
.yfb{bottom:47.732000pt;}
.y82{bottom:47.776000pt;}
.y1de{bottom:47.872000pt;}
.y112{bottom:48.042667pt;}
.y17e{bottom:48.106667pt;}
.y1f6{bottom:48.773333pt;}
.y226{bottom:50.120000pt;}
.y1a4{bottom:59.970667pt;}
.y1b6{bottom:60.221333pt;}
.yba{bottom:60.386667pt;}
.y1dd{bottom:60.544000pt;}
.y111{bottom:60.714667pt;}
.y17d{bottom:60.778667pt;}
.y4c{bottom:60.796000pt;}
.y1f5{bottom:62.773333pt;}
.y13b{bottom:62.926667pt;}
.ya1{bottom:62.933333pt;}
.y126{bottom:63.044000pt;}
.yfa{bottom:63.058667pt;}
.y81{bottom:63.102667pt;}
.y225{bottom:64.120000pt;}
.y1f{bottom:66.388667pt;}
.y1a3{bottom:72.642667pt;}
.y1b5{bottom:72.893333pt;}
.y1dc{bottom:73.216000pt;}
.y110{bottom:73.376000pt;}
.y17c{bottom:73.450667pt;}
.y4b{bottom:76.122667pt;}
.y1f4{bottom:76.773333pt;}
.y224{bottom:78.120000pt;}
.y13a{bottom:78.253333pt;}
.ya0{bottom:78.260000pt;}
.y125{bottom:78.370667pt;}
.yf9{bottom:78.385333pt;}
.y80{bottom:78.429333pt;}
.y1e{bottom:79.726667pt;}
.y1a2{bottom:85.314667pt;}
.y1db{bottom:85.888000pt;}
.y10f{bottom:86.048000pt;}
.y17b{bottom:86.122667pt;}
.y1f3{bottom:90.773333pt;}
.y4a{bottom:91.449333pt;}
.y223{bottom:92.120000pt;}
.y1d{bottom:93.064667pt;}
.yc8{bottom:93.140000pt;}
.y139{bottom:93.580000pt;}
.y9f{bottom:93.586667pt;}
.y124{bottom:93.697333pt;}
.yf8{bottom:93.712000pt;}
.y7f{bottom:93.756000pt;}
.yc7{bottom:94.250667pt;}
.y1a1{bottom:97.986667pt;}
.y1da{bottom:98.560000pt;}
.y10e{bottom:98.720000pt;}
.y17a{bottom:98.794667pt;}
.y1f2{bottom:104.773333pt;}
.y222{bottom:106.120000pt;}
.y1c{bottom:106.402667pt;}
.y49{bottom:106.776000pt;}
.y1b4{bottom:108.886667pt;}
.y138{bottom:108.906667pt;}
.y9e{bottom:108.913333pt;}
.y123{bottom:109.024000pt;}
.yf7{bottom:109.038667pt;}
.y7e{bottom:109.082667pt;}
.y1a0{bottom:110.658667pt;}
.y179{bottom:111.466667pt;}
.y1b{bottom:119.740667pt;}
.yc6{bottom:119.989333pt;}
.y221{bottom:120.120000pt;}
.y48{bottom:122.102667pt;}
.y19f{bottom:123.330667pt;}
.y1b3{bottom:124.213333pt;}
.y137{bottom:124.233333pt;}
.y9d{bottom:124.240000pt;}
.y122{bottom:124.350667pt;}
.yf6{bottom:124.365333pt;}
.y7d{bottom:124.409333pt;}
.y1f1{bottom:126.682667pt;}
.y1a{bottom:133.078667pt;}
.y220{bottom:134.120000pt;}
.y19e{bottom:136.002667pt;}
.y47{bottom:137.429333pt;}
.yc5{bottom:138.656000pt;}
.y1b2{bottom:139.540000pt;}
.y136{bottom:139.560000pt;}
.y9c{bottom:139.566667pt;}
.y1d9{bottom:139.664000pt;}
.y121{bottom:139.677333pt;}
.yf5{bottom:139.692000pt;}
.y7c{bottom:139.736000pt;}
.y19{bottom:146.416667pt;}
.y178{bottom:147.180000pt;}
.y10d{bottom:147.333333pt;}
.y21f{bottom:148.120000pt;}
.y19d{bottom:148.674667pt;}
.yce{bottom:151.549333pt;}
.y46{bottom:152.756000pt;}
.y1b1{bottom:154.866667pt;}
.y135{bottom:154.886667pt;}
.y9b{bottom:154.893333pt;}
.y1d8{bottom:154.990667pt;}
.y120{bottom:155.004000pt;}
.yf4{bottom:155.018667pt;}
.y7b{bottom:155.062667pt;}
.yc4{bottom:155.988000pt;}
.y19c{bottom:161.346667pt;}
.y21e{bottom:162.120000pt;}
.ycd{bottom:162.213333pt;}
.y177{bottom:162.506667pt;}
.y10c{bottom:162.660000pt;}
.y45{bottom:168.082667pt;}
.y1b0{bottom:170.193333pt;}
.y134{bottom:170.213333pt;}
.y9a{bottom:170.220000pt;}
.y1d7{bottom:170.317333pt;}
.y11f{bottom:170.330667pt;}
.yf3{bottom:170.345333pt;}
.y1f0{bottom:170.360000pt;}
.y7a{bottom:170.389333pt;}
.y18{bottom:173.080000pt;}
.y19b{bottom:174.018667pt;}
.yc3{bottom:174.654667pt;}
.y21d{bottom:176.120000pt;}
.y176{bottom:177.833333pt;}
.y10b{bottom:177.986667pt;}
.y44{bottom:183.409333pt;}
.y1af{bottom:185.520000pt;}
.y133{bottom:185.540000pt;}
.y99{bottom:185.546667pt;}
.y1d6{bottom:185.644000pt;}
.y11e{bottom:185.657333pt;}
.yf2{bottom:185.672000pt;}
.y1ef{bottom:185.686667pt;}
.y79{bottom:185.716000pt;}
.y19a{bottom:186.690667pt;}
.ycc{bottom:189.602667pt;}
.y21c{bottom:190.120000pt;}
.y175{bottom:193.160000pt;}
.y10a{bottom:193.313333pt;}
.yc2{bottom:193.321333pt;}
.y43{bottom:198.736000pt;}
.y199{bottom:199.362667pt;}
.ycb{bottom:200.266667pt;}
.y1ae{bottom:200.846667pt;}
.y132{bottom:200.866667pt;}
.y98{bottom:200.873333pt;}
.y1d5{bottom:200.970667pt;}
.y11d{bottom:200.984000pt;}
.yf1{bottom:200.998667pt;}
.y1ee{bottom:201.013333pt;}
.y78{bottom:201.042667pt;}
.y21b{bottom:204.120000pt;}
.y17{bottom:205.046667pt;}
.y174{bottom:208.486667pt;}
.y109{bottom:208.640000pt;}
.yc1{bottom:211.988000pt;}
.y198{bottom:212.034667pt;}
.y42{bottom:214.062667pt;}
.y1ad{bottom:216.173333pt;}
.y131{bottom:216.193333pt;}
.y97{bottom:216.200000pt;}
.y1d4{bottom:216.297333pt;}
.y11c{bottom:216.310667pt;}
.yf0{bottom:216.325333pt;}
.y1ed{bottom:216.340000pt;}
.y77{bottom:216.369333pt;}
.y21a{bottom:218.120000pt;}
.y16{bottom:223.717333pt;}
.y173{bottom:223.813333pt;}
.y108{bottom:223.966667pt;}
.yd0{bottom:226.042667pt;}
.y41{bottom:229.389333pt;}
.yc0{bottom:230.654667pt;}
.y1ac{bottom:231.500000pt;}
.y130{bottom:231.520000pt;}
.y96{bottom:231.526667pt;}
.y1d3{bottom:231.624000pt;}
.y11b{bottom:231.637333pt;}
.yef{bottom:231.652000pt;}
.y1ec{bottom:231.666667pt;}
.y76{bottom:231.696000pt;}
.y219{bottom:232.120000pt;}
.y197{bottom:232.266667pt;}
.ycf{bottom:236.706667pt;}
.y15{bottom:237.055333pt;}
.y172{bottom:239.140000pt;}
.y107{bottom:239.293333pt;}
.y40{bottom:244.716000pt;}
.y218{bottom:246.120000pt;}
.y1ab{bottom:246.826667pt;}
.y12f{bottom:246.846667pt;}
.y95{bottom:246.853333pt;}
.y1d2{bottom:246.950667pt;}
.y1e8{bottom:246.964000pt;}
.yee{bottom:246.978667pt;}
.y1eb{bottom:246.993333pt;}
.y75{bottom:247.022667pt;}
.ybf{bottom:249.321333pt;}
.y196{bottom:250.262667pt;}
.y14{bottom:250.393333pt;}
.y171{bottom:254.466667pt;}
.y106{bottom:254.620000pt;}
.y11a{bottom:254.634667pt;}
.y3f{bottom:260.042667pt;}
.y217{bottom:260.120000pt;}
.yca{bottom:261.149333pt;}
.y1aa{bottom:262.153333pt;}
.y12e{bottom:262.173333pt;}
.y94{bottom:262.180000pt;}
.y1d1{bottom:262.277333pt;}
.y1e7{bottom:262.290667pt;}
.yed{bottom:262.305333pt;}
.y1ea{bottom:262.320000pt;}
.y74{bottom:262.349333pt;}
.y13{bottom:263.731333pt;}
.ybe{bottom:266.653333pt;}
.y195{bottom:268.262667pt;}
.y170{bottom:269.793333pt;}
.y105{bottom:269.946667pt;}
.yc9{bottom:271.813333pt;}
.y216{bottom:274.120000pt;}
.y3e{bottom:275.369333pt;}
.y12{bottom:277.069333pt;}
.y1a9{bottom:277.480000pt;}
.y12d{bottom:277.500000pt;}
.y93{bottom:277.506667pt;}
.y1d0{bottom:277.604000pt;}
.y1e6{bottom:277.617333pt;}
.yec{bottom:277.632000pt;}
.y1e9{bottom:277.646667pt;}
.y73{bottom:277.676000pt;}
.y104{bottom:285.273333pt;}
.y16f{bottom:285.302667pt;}
.ybd{bottom:285.320000pt;}
.y194{bottom:286.262667pt;}
.y215{bottom:288.120000pt;}
.y11{bottom:290.407333pt;}
.y3d{bottom:290.696000pt;}
.y1a8{bottom:292.806667pt;}
.y12c{bottom:292.826667pt;}
.y92{bottom:292.833333pt;}
.y1cf{bottom:292.930667pt;}
.y1e5{bottom:292.944000pt;}
.yeb{bottom:292.958667pt;}
.y119{bottom:292.973333pt;}
.y72{bottom:293.002667pt;}
.y193{bottom:300.266667pt;}
.y103{bottom:300.600000pt;}
.y16e{bottom:300.629333pt;}
.y214{bottom:302.120000pt;}
.y10{bottom:303.745333pt;}
.ybc{bottom:303.986667pt;}
.y3c{bottom:306.022667pt;}
.y1a7{bottom:308.133333pt;}
.y12b{bottom:308.153333pt;}
.y91{bottom:308.160000pt;}
.y1ce{bottom:308.257333pt;}
.y1e4{bottom:308.270667pt;}
.yea{bottom:308.285333pt;}
.y118{bottom:308.300000pt;}
.y71{bottom:308.329333pt;}
.y16d{bottom:315.956000pt;}
.y213{bottom:316.120000pt;}
.yf{bottom:317.083333pt;}
.y192{bottom:318.266667pt;}
.y3b{bottom:321.349333pt;}
.y1a6{bottom:323.460000pt;}
.y12a{bottom:323.480000pt;}
.y90{bottom:323.486667pt;}
.y1cd{bottom:323.584000pt;}
.y102{bottom:323.597333pt;}
.ye9{bottom:323.612000pt;}
.y117{bottom:323.626667pt;}
.y70{bottom:323.656000pt;}
.y212{bottom:330.120000pt;}
.y16c{bottom:331.282667pt;}
.y191{bottom:336.262667pt;}
.y3a{bottom:336.676000pt;}
.y129{bottom:338.806667pt;}
.y8f{bottom:338.813333pt;}
.y1cc{bottom:338.910667pt;}
.y1e3{bottom:338.924000pt;}
.ye8{bottom:338.938667pt;}
.y116{bottom:338.953333pt;}
.y6f{bottom:338.982667pt;}
.yb0{bottom:343.140000pt;}
.ye{bottom:343.746667pt;}
.y211{bottom:344.120000pt;}
.y101{bottom:346.594667pt;}
.y16b{bottom:346.609333pt;}
.y39{bottom:352.002667pt;}
.y128{bottom:354.133333pt;}
.y8e{bottom:354.140000pt;}
.y1cb{bottom:354.237333pt;}
.y1e2{bottom:354.250667pt;}
.y190{bottom:354.262667pt;}
.ye7{bottom:354.265333pt;}
.y115{bottom:354.280000pt;}
.y6e{bottom:354.309333pt;}
.y210{bottom:358.120000pt;}
.yaf{bottom:358.466667pt;}
.y100{bottom:361.921333pt;}
.y16a{bottom:361.936000pt;}
.y38{bottom:367.329333pt;}
.y8d{bottom:369.466667pt;}
.y1ca{bottom:369.564000pt;}
.y1e1{bottom:369.577333pt;}
.ye6{bottom:369.592000pt;}
.y114{bottom:369.606667pt;}
.y6d{bottom:369.636000pt;}
.y20f{bottom:372.120000pt;}
.y18f{bottom:372.262667pt;}
.yae{bottom:373.793333pt;}
.yd{bottom:375.713333pt;}
.y169{bottom:377.262667pt;}
.y37{bottom:382.656000pt;}
.y8c{bottom:384.793333pt;}
.y1c9{bottom:384.890667pt;}
.y1e0{bottom:384.904000pt;}
.ye5{bottom:384.918667pt;}
.y113{bottom:384.933333pt;}
.y153{bottom:385.194667pt;}
.y20e{bottom:386.120000pt;}
.y18e{bottom:386.266667pt;}
.yad{bottom:389.120000pt;}
.y168{bottom:392.589333pt;}
.yc{bottom:394.384000pt;}
.y6c{bottom:395.170667pt;}
.y152{bottom:397.866667pt;}
.y20d{bottom:400.120000pt;}
.y1c8{bottom:400.217333pt;}
.y8b{bottom:400.230667pt;}
.ye4{bottom:400.245333pt;}
.yff{bottom:400.260000pt;}
.y18d{bottom:404.266667pt;}
.yac{bottom:404.446667pt;}
.y36{bottom:405.653333pt;}
.yb{bottom:407.722000pt;}
.y167{bottom:407.916000pt;}
.y20c{bottom:414.120000pt;}
.y1c7{bottom:415.544000pt;}
.y8a{bottom:415.557333pt;}
.ye3{bottom:415.572000pt;}
.yfe{bottom:415.586667pt;}
.y151{bottom:418.073333pt;}
.y18c{bottom:418.258667pt;}
.yab{bottom:419.773333pt;}
.y6b{bottom:420.705333pt;}
.ya{bottom:421.060000pt;}
.y166{bottom:423.242667pt;}
.y20b{bottom:428.120000pt;}
.y1c6{bottom:430.870667pt;}
.y89{bottom:430.884000pt;}
.ye2{bottom:430.898667pt;}
.yfd{bottom:430.913333pt;}
.y150{bottom:431.945333pt;}
.y18b{bottom:432.262667pt;}
.y9{bottom:434.398000pt;}
.yaa{bottom:435.100000pt;}
.y165{bottom:438.569333pt;}
.y57{bottom:440.000000pt;}
.y20a{bottom:442.120000pt;}
.y14f{bottom:445.817333pt;}
.y1c5{bottom:446.197333pt;}
.y88{bottom:446.210667pt;}
.ye1{bottom:446.225333pt;}
.yfc{bottom:446.240000pt;}
.y18a{bottom:446.266667pt;}
.y8{bottom:447.736000pt;}
.ya9{bottom:450.426667pt;}
.y1df{bottom:453.881333pt;}
.y164{bottom:453.896000pt;}
.y56{bottom:454.666667pt;}
.y209{bottom:456.120000pt;}
.y14e{bottom:459.689333pt;}
.y7{bottom:461.074000pt;}
.y1c4{bottom:461.524000pt;}
.y87{bottom:461.537333pt;}
.ye0{bottom:461.552000pt;}
.y6a{bottom:461.566667pt;}
.ya8{bottom:465.753333pt;}
.y189{bottom:468.933333pt;}
.y163{bottom:469.222667pt;}
.y55{bottom:469.333333pt;}
.y208{bottom:470.120000pt;}
.y14d{bottom:473.561333pt;}
.y6{bottom:474.412000pt;}
.y86{bottom:476.864000pt;}
.ydf{bottom:476.878667pt;}
.y69{bottom:476.893333pt;}
.ya7{bottom:481.080000pt;}
.y207{bottom:484.120000pt;}
.y1c3{bottom:484.521333pt;}
.y162{bottom:484.549333pt;}
.y5{bottom:487.750000pt;}
.y53{bottom:488.000000pt;}
.y14c{bottom:491.213333pt;}
.y85{bottom:492.190667pt;}
.yde{bottom:492.205333pt;}
.y68{bottom:492.220000pt;}
.ya6{bottom:496.406667pt;}
.y206{bottom:498.120000pt;}
.y161{bottom:499.876000pt;}
.y59{bottom:501.333333pt;}
.y51{bottom:502.666667pt;}
.y14b{bottom:505.042667pt;}
.y84{bottom:507.517333pt;}
.ydd{bottom:507.532000pt;}
.y67{bottom:507.546667pt;}
.ya5{bottom:511.733333pt;}
.y205{bottom:512.120000pt;}
.y4{bottom:514.413333pt;}
.y160{bottom:515.202667pt;}
.y4f{bottom:517.333333pt;}
.y58{bottom:518.666667pt;}
.y14a{bottom:518.914667pt;}
.y188{bottom:522.844000pt;}
.ydc{bottom:522.858667pt;}
.y1c2{bottom:522.860000pt;}
.y66{bottom:522.873333pt;}
.y204{bottom:526.120000pt;}
.ya4{bottom:527.060000pt;}
.y2c{bottom:530.421333pt;}
.y83{bottom:530.514667pt;}
.y15f{bottom:530.529333pt;}
.y149{bottom:532.786667pt;}
.y187{bottom:538.170667pt;}
.ydb{bottom:538.185333pt;}
.y1c1{bottom:538.186667pt;}
.y65{bottom:538.200000pt;}
.y203{bottom:540.120000pt;}
.ya3{bottom:542.386667pt;}
.y2b{bottom:543.093333pt;}
.y4e{bottom:545.546667pt;}
.y15e{bottom:545.856000pt;}
.y148{bottom:546.658667pt;}
.y186{bottom:553.497333pt;}
.yda{bottom:553.512000pt;}
.y1c0{bottom:553.513333pt;}
.y64{bottom:553.526667pt;}
.y202{bottom:554.120000pt;}
.y147{bottom:560.530667pt;}
.y15d{bottom:561.182667pt;}
.y2a{bottom:566.077333pt;}
.y201{bottom:568.120000pt;}
.y185{bottom:568.824000pt;}
.yd9{bottom:568.838667pt;}
.y1bf{bottom:568.840000pt;}
.y63{bottom:568.853333pt;}
.y146{bottom:574.402667pt;}
.y15c{bottom:576.509333pt;}
.y29{bottom:578.749333pt;}
.yb9{bottom:581.293333pt;}
.y200{bottom:582.120000pt;}
.y184{bottom:584.150667pt;}
.yd8{bottom:584.165333pt;}
.y1be{bottom:584.166667pt;}
.y62{bottom:584.180000pt;}
.y145{bottom:588.274667pt;}
.y28{bottom:591.421333pt;}
.y15b{bottom:591.836000pt;}
.y1ff{bottom:596.120000pt;}
.y35{bottom:596.786667pt;}
.y183{bottom:599.477333pt;}
.yd7{bottom:599.492000pt;}
.y1bd{bottom:599.493333pt;}
.y61{bottom:599.506667pt;}
.yb8{bottom:601.520000pt;}
.y144{bottom:602.146667pt;}
.y27{bottom:604.093333pt;}
.y15a{bottom:607.162667pt;}
.y1fe{bottom:610.120000pt;}
.y182{bottom:614.804000pt;}
.yd6{bottom:614.818667pt;}
.y1bc{bottom:614.820000pt;}
.y60{bottom:614.833333pt;}
.y34{bottom:615.428667pt;}
.yb7{bottom:619.520000pt;}
.y143{bottom:619.786667pt;}
.y26{bottom:620.093333pt;}
.y159{bottom:622.489333pt;}
.y1fd{bottom:624.120000pt;}
.y33{bottom:628.766667pt;}
.y181{bottom:630.130667pt;}
.yd5{bottom:630.145333pt;}
.y1bb{bottom:630.146667pt;}
.y5f{bottom:630.160000pt;}
.y142{bottom:633.642667pt;}
.y25{bottom:636.093333pt;}
.yb6{bottom:637.520000pt;}
.y158{bottom:637.816000pt;}
.y1fc{bottom:638.120000pt;}
.y32{bottom:642.104667pt;}
.y180{bottom:645.457333pt;}
.yd4{bottom:645.472000pt;}
.y1ba{bottom:645.473333pt;}
.y5e{bottom:645.486667pt;}
.y141{bottom:647.514667pt;}
.y1fb{bottom:652.120000pt;}
.y157{bottom:653.142667pt;}
.y31{bottom:655.442667pt;}
.yb5{bottom:655.520000pt;}
.yd3{bottom:660.798667pt;}
.y1b9{bottom:660.800000pt;}
.y5d{bottom:660.813333pt;}
.y140{bottom:661.386667pt;}
.y1fa{bottom:666.120000pt;}
.y2{bottom:668.093333pt;}
.y17f{bottom:668.454667pt;}
.y156{bottom:668.469333pt;}
.y30{bottom:668.780667pt;}
.yb4{bottom:673.520000pt;}
.y24{bottom:676.093333pt;}
.yd2{bottom:676.125333pt;}
.y1b8{bottom:676.126667pt;}
.y5c{bottom:676.140000pt;}
.y13f{bottom:679.026667pt;}
.y1f9{bottom:680.120000pt;}
.y2f{bottom:682.118667pt;}
.y155{bottom:683.796000pt;}
.yd1{bottom:691.452000pt;}
.y5b{bottom:691.466667pt;}
.yb3{bottom:691.520000pt;}
.y13e{bottom:692.888000pt;}
.y1f8{bottom:694.120000pt;}
.y2e{bottom:695.456667pt;}
.y23{bottom:697.426667pt;}
.y154{bottom:699.122667pt;}
.yb2{bottom:705.520000pt;}
.y13d{bottom:706.760000pt;}
.y5a{bottom:706.793333pt;}
.y1f7{bottom:708.120000pt;}
.y1{bottom:716.093333pt;}
.y22{bottom:718.760000pt;}
.y2d{bottom:722.120000pt;}
.yb1{bottom:728.186667pt;}
.y21{bottom:764.093333pt;}
.y3{bottom:820.000000pt;}
.hd{height:10.666667pt;}
.hc{height:12.000000pt;}
.ha{height:14.666667pt;}
.h12{height:34.144000pt;}
.h11{height:39.834667pt;}
.h2{height:41.854167pt;}
.h5{height:45.525333pt;}
.hb{height:47.109375pt;}
.h8{height:51.216000pt;}
.h13{height:51.258667pt;}
.h10{height:52.032000pt;}
.h3{height:54.061333pt;}
.h4{height:54.922667pt;}
.hf{height:56.906667pt;}
.h15{height:57.813333pt;}
.h9{height:62.597333pt;}
.h14{height:63.124800pt;}
.he{height:63.594667pt;}
.h7{height:68.288000pt;}
.h6{height:79.669333pt;}
.h1{height:91.050667pt;}
.h0{height:793.333333pt;}
.w7{width:133.333333pt;}
.w6{width:174.666667pt;}
.w4{width:192.000000pt;}
.w5{width:194.666667pt;}
.w3{width:197.333333pt;}
.w1{width:198.666667pt;}
.w2{width:208.000000pt;}
.w0{width:565.333333pt;}
.x0{left:0.000000pt;}
.x3{left:5.333333pt;}
.x13{left:34.722667pt;}
.xf{left:52.680000pt;}
.xd{left:62.666667pt;}
.x4{left:67.733333pt;}
.x8{left:68.813333pt;}
.xb{left:73.333333pt;}
.x10{left:76.000000pt;}
.x11{left:78.698400pt;}
.xe{left:81.333333pt;}
.x15{left:83.045333pt;}
.x9{left:84.126800pt;}
.x24{left:87.725333pt;}
.x27{left:88.817333pt;}
.x18{left:91.025333pt;}
.x12{left:94.666667pt;}
.x29{left:113.096000pt;}
.x19{left:119.025333pt;}
.xc{left:136.013467pt;}
.x16{left:143.333333pt;}
.x1a{left:147.025333pt;}
.x26{left:157.148000pt;}
.x17{left:160.226667pt;}
.x25{left:173.960000pt;}
.x1b{left:176.360000pt;}
.x1c{left:204.360000pt;}
.x1{left:212.893333pt;}
.x1d{left:233.694667pt;}
.x2{left:236.338667pt;}
.xa{left:263.773333pt;}
.x1e{left:292.364000pt;}
.x14{left:297.333333pt;}
.x1f{left:320.364000pt;}
.x5{left:336.786667pt;}
.x20{left:349.698667pt;}
.x7{left:357.930667pt;}
.x6{left:365.226667pt;}
.x28{left:366.320000pt;}
.x21{left:377.698667pt;}
.x22{left:405.698667pt;}
.x23{left:438.133333pt;}
}




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