
    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_6dbb006f9b4cac5ab7aa4cd0.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_8ef503f53502a957094900ef.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_f438979ebdf1decebf732c82.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_6fb7d8c913f7ae545a257222.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;}
.m3{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,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);}
.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;}
.v2{vertical-align:1.428000px;}
.v1{vertical-align:31.680000px;}
.ls23{letter-spacing:-5.130000px;}
.ls3d{letter-spacing:-3.689400px;}
.ls22{letter-spacing:-3.477000px;}
.ls43{letter-spacing:-3.234000px;}
.ls38{letter-spacing:-2.970000px;}
.ls39{letter-spacing:-2.904000px;}
.ls53{letter-spacing:-2.880000px;}
.ls3e{letter-spacing:-2.838000px;}
.ls32{letter-spacing:-2.712600px;}
.ls26{letter-spacing:-2.706000px;}
.ls2e{letter-spacing:-2.692800px;}
.ls49{letter-spacing:-2.640000px;}
.ls31{letter-spacing:-2.508000px;}
.ls36{letter-spacing:-2.442000px;}
.ls21{letter-spacing:-2.394000px;}
.ls2b{letter-spacing:-2.310000px;}
.ls4e{letter-spacing:-2.250600px;}
.ls51{letter-spacing:-2.237400px;}
.ls1e{letter-spacing:-2.223000px;}
.ls2f{letter-spacing:-2.171400px;}
.ls35{letter-spacing:-2.112000px;}
.ls1f{letter-spacing:-2.109000px;}
.ls47{letter-spacing:-2.065800px;}
.ls20{letter-spacing:-2.052000px;}
.ls37{letter-spacing:-2.046000px;}
.ls27{letter-spacing:-1.980000px;}
.ls3a{letter-spacing:-1.907400px;}
.ls33{letter-spacing:-1.848000px;}
.ls45{letter-spacing:-1.841400px;}
.ls4f{letter-spacing:-1.788600px;}
.ls41{letter-spacing:-1.762200px;}
.ls3b{letter-spacing:-1.716000px;}
.ls71{letter-spacing:-1.650000px;}
.ls34{letter-spacing:-1.590600px;}
.ls65{letter-spacing:-1.518000px;}
.ls48{letter-spacing:-1.445400px;}
.ls1a{letter-spacing:-1.425000px;}
.ls2a{letter-spacing:-1.392600px;}
.ls44{letter-spacing:-1.386000px;}
.lsa9{letter-spacing:-1.380000px;}
.ls2d{letter-spacing:-1.379400px;}
.ls17{letter-spacing:-1.368000px;}
.ls9c{letter-spacing:-1.260000px;}
.ls25{letter-spacing:-1.254000px;}
.ls42{letter-spacing:-1.240800px;}
.ls85{letter-spacing:-1.215000px;}
.ls86{letter-spacing:-1.200000px;}
.ls1c{letter-spacing:-1.197000px;}
.ls1b{letter-spacing:-1.140000px;}
.ls99{letter-spacing:-1.125000px;}
.ls4c{letter-spacing:-1.122000px;}
.ls1d{letter-spacing:-1.083000px;}
.ls50{letter-spacing:-1.056000px;}
.lsa{letter-spacing:-1.026000px;}
.ls58{letter-spacing:-0.990000px;}
.ls80{letter-spacing:-0.960000px;}
.ls9b{letter-spacing:-0.945000px;}
.ls3f{letter-spacing:-0.924000px;}
.ls8{letter-spacing:-0.912000px;}
.ls97{letter-spacing:-0.900000px;}
.ls46{letter-spacing:-0.858000px;}
.ls16{letter-spacing:-0.798000px;}
.ls24{letter-spacing:-0.792000px;}
.lsa1{letter-spacing:-0.780000px;}
.ls1{letter-spacing:-0.768000px;}
.ls15{letter-spacing:-0.741000px;}
.ls30{letter-spacing:-0.726000px;}
.ls89{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.684000px;}
.ls98{letter-spacing:-0.675000px;}
.ls5e{letter-spacing:-0.660000px;}
.ls4b{letter-spacing:-0.653400px;}
.lsa7{letter-spacing:-0.630000px;}
.ls18{letter-spacing:-0.627000px;}
.ls52{letter-spacing:-0.624000px;}
.ls84{letter-spacing:-0.600000px;}
.ls64{letter-spacing:-0.594000px;}
.ls4a{letter-spacing:-0.587400px;}
.lsa2{letter-spacing:-0.585000px;}
.ls54{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.570000px;}
.ls8b{letter-spacing:-0.540000px;}
.ls3c{letter-spacing:-0.528000px;}
.ls9{letter-spacing:-0.513000px;}
.ls95{letter-spacing:-0.495000px;}
.ls81{letter-spacing:-0.480000px;}
.ls28{letter-spacing:-0.462000px;}
.ls9a{letter-spacing:-0.450000px;}
.lsa8{letter-spacing:-0.420000px;}
.ls29{letter-spacing:-0.396000px;}
.ls8c{letter-spacing:-0.360000px;}
.ls4d{letter-spacing:-0.330000px;}
.ls82{letter-spacing:-0.315000px;}
.ls83{letter-spacing:-0.300000px;}
.lsa3{letter-spacing:-0.270000px;}
.ls66{letter-spacing:-0.264000px;}
.ls59{letter-spacing:-0.240000px;}
.ls2c{letter-spacing:-0.198000px;}
.ls88{letter-spacing:-0.180000px;}
.ls87{letter-spacing:-0.135000px;}
.ls5d{letter-spacing:-0.132000px;}
.lsaa{letter-spacing:-0.120000px;}
.ls14{letter-spacing:-0.114000px;}
.ls6f{letter-spacing:-0.096000px;}
.ls96{letter-spacing:-0.090000px;}
.ls40{letter-spacing:-0.066000px;}
.ls5a{letter-spacing:-0.060000px;}
.ls67{letter-spacing:-0.054000px;}
.lsb{letter-spacing:-0.048000px;}
.lsa0{letter-spacing:-0.045000px;}
.ls5f{letter-spacing:-0.042000px;}
.ls0{letter-spacing:0.000000px;}
.ls76{letter-spacing:0.045000px;}
.lsad{letter-spacing:0.054000px;}
.ls2{letter-spacing:0.057000px;}
.ls77{letter-spacing:0.060000px;}
.ls56{letter-spacing:0.066000px;}
.ls9d{letter-spacing:0.090000px;}
.ls75{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.132000px;}
.ls91{letter-spacing:0.135000px;}
.ls6{letter-spacing:0.162000px;}
.ls5{letter-spacing:0.171000px;}
.ls7f{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.198000px;}
.ls7a{letter-spacing:0.225000px;}
.ls3{letter-spacing:0.228000px;}
.ls79{letter-spacing:0.240000px;}
.ls12{letter-spacing:0.264000px;}
.ls8a{letter-spacing:0.270000px;}
.lsd{letter-spacing:0.279300px;}
.ls78{letter-spacing:0.300000px;}
.ls8e{letter-spacing:0.315000px;}
.ls60{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.342000px;}
.ls7e{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.396000px;}
.ls92{letter-spacing:0.405000px;}
.ls93{letter-spacing:0.420000px;}
.ls55{letter-spacing:0.462000px;}
.ls8d{letter-spacing:0.480000px;}
.ls9e{letter-spacing:0.495000px;}
.ls69{letter-spacing:0.528000px;}
.ls8f{letter-spacing:0.540000px;}
.lsa5{letter-spacing:0.585000px;}
.ls5b{letter-spacing:0.594000px;}
.lsa6{letter-spacing:0.600000px;}
.ls6e{letter-spacing:0.660000px;}
.ls7d{letter-spacing:0.720000px;}
.ls5c{letter-spacing:0.726000px;}
.lse{letter-spacing:0.741000px;}
.ls90{letter-spacing:0.765000px;}
.ls7b{letter-spacing:0.780000px;}
.ls63{letter-spacing:0.792000px;}
.ls62{letter-spacing:0.858000px;}
.ls94{letter-spacing:0.900000px;}
.ls6a{letter-spacing:0.924000px;}
.ls74{letter-spacing:0.945000px;}
.ls73{letter-spacing:0.960000px;}
.lsf{letter-spacing:0.983400px;}
.ls68{letter-spacing:0.990000px;}
.ls6d{letter-spacing:1.056000px;}
.ls61{letter-spacing:1.254000px;}
.ls72{letter-spacing:1.320000px;}
.lsa4{letter-spacing:1.380000px;}
.ls9f{letter-spacing:1.500000px;}
.ls6b{letter-spacing:1.584000px;}
.ls70{letter-spacing:1.650000px;}
.ls6c{letter-spacing:1.848000px;}
.lsc{letter-spacing:14.193000px;}
.lsac{letter-spacing:24.000000px;}
.ls7c{letter-spacing:30.000000px;}
.ls57{letter-spacing:42.060000px;}
.lsab{letter-spacing:53.028000px;}
.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;}
}
.wsa6{word-spacing:-18.084000px;}
.wsae{word-spacing:-17.556000px;}
.wsa4{word-spacing:-17.490000px;}
.ws9c{word-spacing:-17.358000px;}
.ws9d{word-spacing:-17.292000px;}
.ws8c{word-spacing:-17.226000px;}
.ws8b{word-spacing:-17.094000px;}
.wsa8{word-spacing:-17.028000px;}
.wsa5{word-spacing:-16.962000px;}
.ws9e{word-spacing:-16.896000px;}
.ws30{word-spacing:-16.830000px;}
.ws50{word-spacing:-16.764000px;}
.wsaf{word-spacing:-16.698000px;}
.ws75{word-spacing:-16.632000px;}
.wsad{word-spacing:-16.566000px;}
.ws87{word-spacing:-16.500000px;}
.ws89{word-spacing:-16.434000px;}
.ws8a{word-spacing:-16.368000px;}
.wsc1{word-spacing:-16.320000px;}
.ws88{word-spacing:-16.302000px;}
.ws9f{word-spacing:-16.236000px;}
.ws74{word-spacing:-16.170000px;}
.ws2f{word-spacing:-16.038000px;}
.ws45{word-spacing:-15.972000px;}
.ws53{word-spacing:-15.912600px;}
.wse7{word-spacing:-15.900000px;}
.ws54{word-spacing:-15.846600px;}
.ws8d{word-spacing:-15.840000px;}
.wsb8{word-spacing:-15.780000px;}
.ws38{word-spacing:-15.774000px;}
.wsbf{word-spacing:-15.720000px;}
.ws9b{word-spacing:-15.708000px;}
.ws4e{word-spacing:-15.642000px;}
.ws48{word-spacing:-15.576000px;}
.wsdb{word-spacing:-15.540000px;}
.ws73{word-spacing:-15.510000px;}
.ws58{word-spacing:-15.444000px;}
.ws55{word-spacing:-15.378000px;}
.ws107{word-spacing:-15.360000px;}
.ws78{word-spacing:-15.300000px;}
.ws4a{word-spacing:-15.259200px;}
.ws3e{word-spacing:-15.246000px;}
.ws77{word-spacing:-15.240000px;}
.wsdf{word-spacing:-15.180000px;}
.ws35{word-spacing:-15.120600px;}
.ws4c{word-spacing:-15.114000px;}
.ws33{word-spacing:-15.107400px;}
.wsfe{word-spacing:-15.060000px;}
.ws51{word-spacing:-15.054600px;}
.wsb1{word-spacing:-15.000000px;}
.wsfc{word-spacing:-14.940000px;}
.ws3c{word-spacing:-14.909400px;}
.ws44{word-spacing:-14.784000px;}
.ws49{word-spacing:-14.737800px;}
.ws57{word-spacing:-14.711400px;}
.wsbb{word-spacing:-14.700000px;}
.ws4d{word-spacing:-14.658600px;}
.ws3b{word-spacing:-14.652000px;}
.wsf5{word-spacing:-14.640000px;}
.ws43{word-spacing:-14.592600px;}
.ws2{word-spacing:-14.535000px;}
.ws32{word-spacing:-14.520000px;}
.ws100{word-spacing:-14.460000px;}
.ws40{word-spacing:-14.454000px;}
.ws4f{word-spacing:-14.434200px;}
.wsbc{word-spacing:-14.400000px;}
.ws3d{word-spacing:-14.388000px;}
.wsd8{word-spacing:-14.340000px;}
.ws37{word-spacing:-14.328600px;}
.wsfa{word-spacing:-14.280000px;}
.ws59{word-spacing:-14.262600px;}
.ws3{word-spacing:-14.250000px;}
.ws56{word-spacing:-14.249400px;}
.wsf8{word-spacing:-14.220000px;}
.ws34{word-spacing:-14.190000px;}
.ws1d{word-spacing:-14.136000px;}
.ws3f{word-spacing:-14.058000px;}
.wsb5{word-spacing:-14.040000px;}
.ws39{word-spacing:-13.992000px;}
.ws5{word-spacing:-13.965000px;}
.ws52{word-spacing:-13.860000px;}
.ws22{word-spacing:-13.851000px;}
.ws36{word-spacing:-13.807200px;}
.ws31{word-spacing:-13.794000px;}
.ws3a{word-spacing:-13.787400px;}
.wsa0{word-spacing:-13.716000px;}
.ws4{word-spacing:-13.680000px;}
.ws47{word-spacing:-13.662000px;}
.ws21{word-spacing:-13.623000px;}
.ws109{word-spacing:-13.620000px;}
.ws42{word-spacing:-13.596000px;}
.ws2b{word-spacing:-13.566000px;}
.ws41{word-spacing:-13.530000px;}
.ws1e{word-spacing:-13.509000px;}
.ws9{word-spacing:-13.500000px;}
.ws1f{word-spacing:-13.452000px;}
.ws110{word-spacing:-13.446000px;}
.ws2c{word-spacing:-13.395000px;}
.ws4b{word-spacing:-13.266000px;}
.ws20{word-spacing:-13.167000px;}
.ws25{word-spacing:-13.110000px;}
.ws26{word-spacing:-13.053000px;}
.ws23{word-spacing:-12.882000px;}
.ws24{word-spacing:-12.825000px;}
.ws46{word-spacing:-12.810600px;}
.ws7{word-spacing:-12.474000px;}
.ws29{word-spacing:-12.198000px;}
.wsb0{word-spacing:-12.195000px;}
.ws8{word-spacing:-12.192000px;}
.wse6{word-spacing:-12.150000px;}
.ws28{word-spacing:-12.141000px;}
.ws27{word-spacing:-12.027000px;}
.wsdc{word-spacing:-12.015000px;}
.ws5c{word-spacing:-12.000000px;}
.wse3{word-spacing:-11.970000px;}
.ws8f{word-spacing:-11.952000px;}
.wsa9{word-spacing:-11.904000px;}
.ws2a{word-spacing:-11.856000px;}
.ws108{word-spacing:-11.835000px;}
.wsda{word-spacing:-11.790000px;}
.ws76{word-spacing:-11.760000px;}
.wsfb{word-spacing:-11.745000px;}
.wse5{word-spacing:-11.655000px;}
.wse1{word-spacing:-11.610000px;}
.wsd6{word-spacing:-11.565000px;}
.wsc2{word-spacing:-11.520000px;}
.wsb7{word-spacing:-11.475000px;}
.wsde{word-spacing:-11.430000px;}
.ws5b{word-spacing:-11.424000px;}
.wse4{word-spacing:-11.385000px;}
.ws5a{word-spacing:-11.376000px;}
.wsf4{word-spacing:-11.340000px;}
.wsb2{word-spacing:-11.295000px;}
.wsb3{word-spacing:-11.250000px;}
.wsf7{word-spacing:-11.205000px;}
.wsd5{word-spacing:-11.160000px;}
.wsbe{word-spacing:-11.115000px;}
.wsdd{word-spacing:-11.070000px;}
.wsfd{word-spacing:-10.980000px;}
.wsba{word-spacing:-10.935000px;}
.wsc3{word-spacing:-10.890000px;}
.wse0{word-spacing:-10.800000px;}
.ws2d{word-spacing:-10.773000px;}
.wsd4{word-spacing:-10.755000px;}
.wsf6{word-spacing:-10.710000px;}
.wsf9{word-spacing:-10.665000px;}
.ws105{word-spacing:-10.620000px;}
.wsd7{word-spacing:-10.575000px;}
.wsc0{word-spacing:-10.530000px;}
.ws93{word-spacing:-10.500000px;}
.ws91{word-spacing:-10.458000px;}
.wse2{word-spacing:-10.305000px;}
.wsb4{word-spacing:-10.260000px;}
.wsd9{word-spacing:-10.125000px;}
.wsbd{word-spacing:-10.035000px;}
.wsff{word-spacing:-9.990000px;}
.ws2e{word-spacing:-9.120000px;}
.ws1{word-spacing:-7.488000px;}
.wsb9{word-spacing:-1.560000px;}
.ws69{word-spacing:-0.858000px;}
.ws96{word-spacing:-0.792000px;}
.ws15{word-spacing:-0.741000px;}
.ws6a{word-spacing:-0.726000px;}
.ws101{word-spacing:-0.720000px;}
.ws6e{word-spacing:-0.660000px;}
.ws17{word-spacing:-0.627000px;}
.wsd0{word-spacing:-0.600000px;}
.ws94{word-spacing:-0.594000px;}
.ws103{word-spacing:-0.540000px;}
.ws68{word-spacing:-0.528000px;}
.wsec{word-spacing:-0.480000px;}
.wsa3{word-spacing:-0.462000px;}
.ws61{word-spacing:-0.456000px;}
.wscc{word-spacing:-0.420000px;}
.wse{word-spacing:-0.399000px;}
.ws6b{word-spacing:-0.396000px;}
.wsc6{word-spacing:-0.360000px;}
.wsb{word-spacing:-0.342000px;}
.ws70{word-spacing:-0.330000px;}
.wse9{word-spacing:-0.300000px;}
.ws1a{word-spacing:-0.270000px;}
.ws66{word-spacing:-0.264000px;}
.wsc9{word-spacing:-0.240000px;}
.ws18{word-spacing:-0.228000px;}
.ws85{word-spacing:-0.198000px;}
.wsd3{word-spacing:-0.180000px;}
.ws11{word-spacing:-0.171000px;}
.ws9a{word-spacing:-0.132000px;}
.wscd{word-spacing:-0.120000px;}
.ws62{word-spacing:-0.066000px;}
.wse8{word-spacing:-0.060000px;}
.wsc{word-spacing:-0.057000px;}
.ws0{word-spacing:0.000000px;}
.ws7f{word-spacing:0.066000px;}
.ws5f{word-spacing:0.114000px;}
.ws10a{word-spacing:0.120000px;}
.ws7b{word-spacing:0.132000px;}
.wsc8{word-spacing:0.180000px;}
.ws7d{word-spacing:0.198000px;}
.ws10{word-spacing:0.228000px;}
.wscf{word-spacing:0.240000px;}
.ws83{word-spacing:0.264000px;}
.wsa1{word-spacing:0.330000px;}
.ws5e{word-spacing:0.342000px;}
.wsf0{word-spacing:0.360000px;}
.ws1b{word-spacing:0.378000px;}
.ws81{word-spacing:0.396000px;}
.wsea{word-spacing:0.420000px;}
.wsce{word-spacing:0.480000px;}
.ws6d{word-spacing:0.528000px;}
.wsc4{word-spacing:0.540000px;}
.ws84{word-spacing:0.594000px;}
.wsf2{word-spacing:0.600000px;}
.ws60{word-spacing:0.627000px;}
.wsa2{word-spacing:0.660000px;}
.wscb{word-spacing:0.720000px;}
.ws7c{word-spacing:0.726000px;}
.wsd1{word-spacing:0.780000px;}
.wsab{word-spacing:0.792000px;}
.wsed{word-spacing:0.840000px;}
.wsa{word-spacing:0.855000px;}
.ws80{word-spacing:0.858000px;}
.ws99{word-spacing:0.924000px;}
.wseb{word-spacing:0.960000px;}
.ws97{word-spacing:0.990000px;}
.ws102{word-spacing:1.020000px;}
.ws5d{word-spacing:1.026000px;}
.ws67{word-spacing:1.056000px;}
.wsf1{word-spacing:1.080000px;}
.ws14{word-spacing:1.083000px;}
.ws98{word-spacing:1.122000px;}
.ws1c{word-spacing:1.134000px;}
.wsee{word-spacing:1.140000px;}
.ws82{word-spacing:1.188000px;}
.ws13{word-spacing:1.197000px;}
.wsc7{word-spacing:1.200000px;}
.ws6f{word-spacing:1.254000px;}
.wsca{word-spacing:1.260000px;}
.ws19{word-spacing:1.311000px;}
.ws65{word-spacing:1.320000px;}
.ws117{word-spacing:1.350000px;}
.ws12{word-spacing:1.368000px;}
.wsef{word-spacing:1.380000px;}
.ws95{word-spacing:1.386000px;}
.wsd{word-spacing:1.425000px;}
.wsc5{word-spacing:1.440000px;}
.ws6c{word-spacing:1.452000px;}
.ws86{word-spacing:1.500000px;}
.ws64{word-spacing:1.518000px;}
.ws63{word-spacing:1.584000px;}
.ws7e{word-spacing:1.650000px;}
.wsd2{word-spacing:1.716000px;}
.ws104{word-spacing:2.220000px;}
.wsb6{word-spacing:3.495000px;}
.ws106{word-spacing:4.890000px;}
.wsf3{word-spacing:5.340000px;}
.ws10b{word-spacing:5.400000px;}
.wsf{word-spacing:7.011000px;}
.wsac{word-spacing:8.382000px;}
.ws10c{word-spacing:10.368000px;}
.ws116{word-spacing:12.528000px;}
.ws16{word-spacing:12.711000px;}
.ws111{word-spacing:26.082000px;}
.ws79{word-spacing:27.060000px;}
.wsa7{word-spacing:28.560000px;}
.ws90{word-spacing:29.022000px;}
.wsaa{word-spacing:32.970000px;}
.ws71{word-spacing:35.856000px;}
.ws8e{word-spacing:35.904000px;}
.ws6{word-spacing:36.018000px;}
.ws119{word-spacing:143.856000px;}
.ws10f{word-spacing:150.120000px;}
.ws114{word-spacing:170.694000px;}
.ws129{word-spacing:171.504000px;}
.ws11f{word-spacing:207.846000px;}
.ws92{word-spacing:212.520000px;}
.ws120{word-spacing:232.200000px;}
.ws11c{word-spacing:246.888000px;}
.ws10e{word-spacing:251.316000px;}
.ws118{word-spacing:259.956000px;}
.ws115{word-spacing:260.064000px;}
.ws122{word-spacing:262.008000px;}
.ws125{word-spacing:273.510000px;}
.ws127{word-spacing:277.290000px;}
.ws124{word-spacing:277.344000px;}
.ws11d{word-spacing:326.484000px;}
.ws112{word-spacing:337.662000px;}
.ws10d{word-spacing:356.184000px;}
.ws11b{word-spacing:416.556000px;}
.ws113{word-spacing:521.046000px;}
.ws11e{word-spacing:630.774000px;}
.ws126{word-spacing:653.670000px;}
.ws72{word-spacing:811.392000px;}
.ws121{word-spacing:1072.602000px;}
.ws11a{word-spacing:1169.100000px;}
.ws7a{word-spacing:1556.340000px;}
.ws128{word-spacing:1572.210000px;}
.ws123{word-spacing:2493.720000px;}
._32{margin-left:-11.880000px;}
._2b{margin-left:-10.494000px;}
._9{margin-left:-8.976000px;}
._3{margin-left:-7.923000px;}
._0{margin-left:-6.240000px;}
._2d{margin-left:-5.040000px;}
._7{margin-left:-3.840000px;}
._5{margin-left:-2.664000px;}
._1{margin-left:-1.632000px;}
._2{width:1.152000px;}
._29{width:2.730000px;}
._1e{width:4.356000px;}
._4{width:6.423000px;}
._c9{width:10.482000px;}
._6{width:12.996000px;}
._2c{width:14.718000px;}
._2a{width:16.854000px;}
._77{width:24.000000px;}
._49{width:26.382000px;}
._84{width:28.944000px;}
._24{width:32.508000px;}
._6e{width:34.128000px;}
._21{width:35.952000px;}
._23{width:37.212000px;}
._22{width:38.346000px;}
._c{width:40.371000px;}
._20{width:43.386000px;}
._28{width:45.138000px;}
._d6{width:46.668000px;}
._8{width:48.000000px;}
._39{width:49.860000px;}
._c4{width:52.122000px;}
._2e{width:53.970000px;}
._27{width:55.818000px;}
._bd{width:58.320000px;}
._30{width:61.218000px;}
._9f{width:63.018000px;}
._26{width:65.226000px;}
._2f{width:67.200000px;}
._8c{width:68.256000px;}
._38{width:70.974000px;}
._64{width:75.240000px;}
._df{width:77.268000px;}
._a5{width:79.596000px;}
._b2{width:82.998000px;}
._4b{width:85.008000px;}
._6d{width:87.972000px;}
._c0{width:92.406000px;}
._7c{width:98.766000px;}
._31{width:100.038000px;}
._60{width:101.058000px;}
._bc{width:103.140000px;}
._3f{width:105.096000px;}
._73{width:107.784000px;}
._5a{width:110.160000px;}
._71{width:112.428000px;}
._4f{width:113.562000px;}
._ad{width:116.328000px;}
._40{width:118.212000px;}
._8a{width:123.942000px;}
._be{width:125.466000px;}
._8e{width:128.466000px;}
._c5{width:129.984000px;}
._bf{width:132.372000px;}
._51{width:133.938000px;}
._41{width:136.458000px;}
._b9{width:140.658000px;}
._35{width:142.254000px;}
._9e{width:145.818000px;}
._5c{width:148.728000px;}
._48{width:151.050000px;}
._7f{width:152.928000px;}
._59{width:154.278000px;}
._ac{width:156.882000px;}
._54{width:164.550000px;}
._53{width:166.050000px;}
._d9{width:167.370000px;}
._4e{width:168.654000px;}
._89{width:170.316000px;}
._87{width:171.612000px;}
._6a{width:172.962000px;}
._63{width:175.176000px;}
._9c{width:180.054000px;}
._92{width:181.764000px;}
._69{width:184.086000px;}
._67{width:186.516000px;}
._45{width:187.812000px;}
._62{width:189.552000px;}
._a4{width:191.160000px;}
._5b{width:194.346000px;}
._d3{width:198.138000px;}
._5d{width:200.952000px;}
._72{width:202.068000px;}
._88{width:203.256000px;}
._bb{width:204.744000px;}
._56{width:205.944000px;}
._66{width:208.818000px;}
._52{width:210.654000px;}
._90{width:212.598000px;}
._3a{width:215.568000px;}
._96{width:218.214000px;}
._6b{width:221.238000px;}
._85{width:222.534000px;}
._1a{width:223.824000px;}
._c7{width:226.044000px;}
._97{width:227.148000px;}
._65{width:229.377000px;}
._c8{width:231.066000px;}
._8b{width:234.012000px;}
._74{width:235.170000px;}
._b4{width:236.208000px;}
._cd{width:237.444000px;}
._7d{width:238.557000px;}
._ce{width:239.802000px;}
._a9{width:241.014000px;}
._4a{width:242.154000px;}
._7b{width:248.682000px;}
._81{width:251.478000px;}
._47{width:252.678000px;}
._cb{width:253.692000px;}
._95{width:256.518000px;}
._c6{width:258.582000px;}
._9d{width:260.388000px;}
._80{width:263.088000px;}
._4c{width:264.222000px;}
._33{width:266.058000px;}
._5e{width:273.009000px;}
._d8{width:274.554000px;}
._e2{width:276.624000px;}
._b8{width:278.490000px;}
._aa{width:279.948000px;}
._75{width:284.310000px;}
._e0{width:286.062000px;}
._b1{width:287.730000px;}
._99{width:288.846000px;}
._a1{width:295.434000px;}
._8f{width:302.508000px;}
._a6{width:306.516000px;}
._44{width:309.114000px;}
._6f{width:318.060000px;}
._b0{width:325.998000px;}
._46{width:328.428000px;}
._a2{width:333.630000px;}
._34{width:335.556000px;}
._7a{width:337.134000px;}
._3d{width:340.308000px;}
._3e{width:343.452000px;}
._8d{width:345.396000px;}
._a0{width:346.410000px;}
._b3{width:348.396000px;}
._a3{width:349.650000px;}
._a7{width:350.907000px;}
._dc{width:359.724000px;}
._c2{width:373.272000px;}
._da{width:376.434000px;}
._37{width:382.824000px;}
._e1{width:383.988000px;}
._93{width:390.594000px;}
._ca{width:394.050000px;}
._c1{width:401.544000px;}
._3c{width:403.974000px;}
._57{width:408.009000px;}
._b5{width:417.729000px;}
._ba{width:420.300000px;}
._3b{width:429.816000px;}
._6c{width:432.666000px;}
._86{width:435.204000px;}
._55{width:438.426000px;}
._36{width:441.804000px;}
._98{width:448.254000px;}
._91{width:451.008000px;}
._a{width:455.616000px;}
._25{width:457.056000px;}
._58{width:469.164000px;}
._4d{width:474.348000px;}
._50{width:490.716000px;}
._11{width:498.336000px;}
._42{width:512.514000px;}
._5f{width:517.845000px;}
._82{width:524.718000px;}
._94{width:526.176000px;}
._b7{width:560.478000px;}
._de{width:565.938000px;}
._43{width:573.174000px;}
._db{width:611.010000px;}
._10{width:614.424000px;}
._9a{width:643.896000px;}
._cc{width:646.974000px;}
._cf{width:653.886000px;}
._af{width:660.852000px;}
._dd{width:665.508000px;}
._61{width:667.836000px;}
._1b{width:672.408000px;}
._7e{width:673.974000px;}
._78{width:677.808000px;}
._f{width:682.608000px;}
._c3{width:684.882000px;}
._d4{width:686.196000px;}
._83{width:688.932000px;}
._76{width:694.032000px;}
._79{width:713.424000px;}
._ae{width:727.002000px;}
._70{width:737.802000px;}
._a8{width:756.540000px;}
._ab{width:774.156000px;}
._1d{width:814.200000px;}
._1f{width:823.440000px;}
._b6{width:843.054000px;}
._1c{width:925.500000px;}
._d7{width:964.386000px;}
._68{width:980.334000px;}
._b{width:984.480000px;}
._15{width:1021.320000px;}
._14{width:1050.864000px;}
._13{width:1068.444000px;}
._9b{width:1086.114000px;}
._d5{width:1143.792000px;}
._d0{width:1228.140000px;}
._19{width:1271.127000px;}
._17{width:1289.004000px;}
._e{width:1292.244000px;}
._12{width:1307.964000px;}
._18{width:1371.144000px;}
._16{width:1381.200000px;}
._d{width:1404.324000px;}
._d2{width:1823.370000px;}
._d1{width:1836.870000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:67.200000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y51{bottom:2.658000px;}
.y53{bottom:3.408000px;}
.y4e{bottom:4.158000px;}
.y4b{bottom:50.268000px;}
.y7b{bottom:52.395000px;}
.y184{bottom:52.785000px;}
.y20b{bottom:52.995000px;}
.y8f{bottom:53.154000px;}
.y23e{bottom:53.310000px;}
.ya1{bottom:53.409000px;}
.yec{bottom:53.622000px;}
.y15e{bottom:53.698500px;}
.y133{bottom:53.715000px;}
.y20{bottom:53.757000px;}
.yc2{bottom:53.970000px;}
.y110{bottom:54.345000px;}
.y29b{bottom:57.615000px;}
.y1af{bottom:63.135000px;}
.y20a{bottom:66.495000px;}
.y23d{bottom:66.510000px;}
.y8e{bottom:67.410000px;}
.y4a{bottom:67.510500px;}
.ya0{bottom:67.665000px;}
.y1f{bottom:68.013000px;}
.y183{bottom:68.535000px;}
.y29a{bottom:70.815000px;}
.yeb{bottom:70.864500px;}
.y15d{bottom:70.941000px;}
.y132{bottom:70.957500px;}
.yc1{bottom:71.212500px;}
.y10f{bottom:71.587500px;}
.y7a{bottom:75.150000px;}
.y1ae{bottom:78.885000px;}
.y23c{bottom:79.710000px;}
.y209{bottom:79.995000px;}
.y1e{bottom:82.269000px;}
.y26d{bottom:83.895000px;}
.y299{bottom:84.015000px;}
.y182{bottom:84.285000px;}
.y49{bottom:84.753000px;}
.yea{bottom:88.107000px;}
.y15c{bottom:88.183500px;}
.y131{bottom:88.200000px;}
.yc0{bottom:88.455000px;}
.y10e{bottom:88.830000px;}
.y23b{bottom:92.910000px;}
.y208{bottom:93.495000px;}
.y1ad{bottom:94.635000px;}
.y79{bottom:95.400000px;}
.y1d{bottom:96.525000px;}
.y298{bottom:97.215000px;}
.y26c{bottom:98.446500px;}
.y1c3{bottom:99.135000px;}
.y181{bottom:100.035000px;}
.y48{bottom:101.995500px;}
.y15b{bottom:105.426000px;}
.y130{bottom:105.442500px;}
.ybf{bottom:105.697500px;}
.y10d{bottom:106.072500px;}
.y23a{bottom:106.110000px;}
.y207{bottom:106.995000px;}
.y1ac{bottom:110.385000px;}
.y297{bottom:110.415000px;}
.y26b{bottom:112.999500px;}
.ye9{bottom:113.979000px;}
.y1c2{bottom:114.885000px;}
.y180{bottom:115.785000px;}
.y9a{bottom:116.580000px;}
.y78{bottom:117.525000px;}
.y47{bottom:119.238000px;}
.y15a{bottom:122.668500px;}
.y12f{bottom:122.685000px;}
.ybe{bottom:122.940000px;}
.y10c{bottom:123.315000px;}
.y1ab{bottom:126.135000px;}
.y239{bottom:128.655000px;}
.y206{bottom:129.900000px;}
.y2c7{bottom:130.230000px;}
.y1c1{bottom:130.635000px;}
.y17f{bottom:131.535000px;}
.y26a{bottom:131.805000px;}
.y77{bottom:135.405000px;}
.y46{bottom:136.480500px;}
.y159{bottom:139.911000px;}
.y12e{bottom:139.927500px;}
.ybd{bottom:140.182500px;}
.y10b{bottom:140.557500px;}
.y1c{bottom:140.562750px;}
.y1aa{bottom:141.885000px;}
.y238{bottom:143.181000px;}
.y205{bottom:144.598500px;}
.y2c6{bottom:144.922500px;}
.y1c0{bottom:146.385000px;}
.y269{bottom:146.661000px;}
.ya7{bottom:152.886000px;}
.y76{bottom:153.285000px;}
.y45{bottom:153.723000px;}
.y1b{bottom:155.568000px;}
.y17e{bottom:155.910000px;}
.y90{bottom:156.210000px;}
.ye8{bottom:157.110000px;}
.y158{bottom:157.153500px;}
.y12d{bottom:157.170000px;}
.ybc{bottom:157.425000px;}
.y1a9{bottom:157.635000px;}
.y237{bottom:157.734000px;}
.y10a{bottom:157.800000px;}
.y204{bottom:159.300000px;}
.y2c5{bottom:159.624000px;}
.y268{bottom:161.511000px;}
.y1bf{bottom:162.135000px;}
.y296{bottom:165.945000px;}
.y1a{bottom:170.573250px;}
.y99{bottom:170.721000px;}
.y44{bottom:170.965500px;}
.y75{bottom:171.150000px;}
.y236{bottom:172.287000px;}
.y1a8{bottom:173.385000px;}
.y203{bottom:174.001500px;}
.y2c4{bottom:174.325500px;}
.ye7{bottom:174.352500px;}
.y157{bottom:174.396000px;}
.y12c{bottom:174.412500px;}
.ybb{bottom:174.667500px;}
.y109{bottom:175.042500px;}
.y267{bottom:176.361000px;}
.ya4{bottom:177.645000px;}
.y1be{bottom:177.885000px;}
.y295{bottom:180.945000px;}
.y19{bottom:185.578500px;}
.y235{bottom:186.840000px;}
.y43{bottom:188.208000px;}
.y202{bottom:188.703000px;}
.y74{bottom:189.030000px;}
.y1a7{bottom:189.135000px;}
.y2c3{bottom:191.160000px;}
.y266{bottom:191.211000px;}
.ye6{bottom:191.595000px;}
.y156{bottom:191.638500px;}
.y12b{bottom:191.655000px;}
.yba{bottom:191.910000px;}
.y108{bottom:192.285000px;}
.y1bd{bottom:193.635000px;}
.y17d{bottom:194.655000px;}
.y294{bottom:195.943500px;}
.y98{bottom:196.225500px;}
.y18{bottom:200.583750px;}
.y234{bottom:201.393000px;}
.y201{bottom:203.404500px;}
.y1a6{bottom:204.885000px;}
.y42{bottom:205.450500px;}
.y2c2{bottom:205.845000px;}
.y73{bottom:206.910000px;}
.ye5{bottom:208.837500px;}
.y155{bottom:208.881000px;}
.y12a{bottom:208.897500px;}
.yb9{bottom:209.152500px;}
.y1bc{bottom:209.385000px;}
.y107{bottom:209.527500px;}
.y265{bottom:210.300000px;}
.y17c{bottom:210.405000px;}
.y293{bottom:210.942000px;}
.ya3{bottom:215.140500px;}
.y233{bottom:215.946000px;}
.y2c1{bottom:220.546500px;}
.y1a5{bottom:220.635000px;}
.y97{bottom:221.730000px;}
.y200{bottom:222.345000px;}
.y41{bottom:222.693000px;}
.y72{bottom:224.790000px;}
.y1bb{bottom:225.135000px;}
.y264{bottom:225.144000px;}
.y292{bottom:225.940500px;}
.ye4{bottom:226.080000px;}
.y154{bottom:226.123500px;}
.y129{bottom:226.140000px;}
.y17b{bottom:226.155000px;}
.yb8{bottom:226.395000px;}
.y106{bottom:226.770000px;}
.y232{bottom:230.499000px;}
.y17{bottom:230.580000px;}
.y2c0{bottom:235.248000px;}
.y1ff{bottom:237.051000px;}
.y40{bottom:239.935500px;}
.y263{bottom:239.994000px;}
.y1ba{bottom:240.885000px;}
.y71{bottom:242.655000px;}
.ye3{bottom:243.322500px;}
.y153{bottom:243.366000px;}
.y128{bottom:243.382500px;}
.yb7{bottom:243.637500px;}
.y105{bottom:244.012500px;}
.y1a4{bottom:245.010000px;}
.y291{bottom:245.205000px;}
.y16{bottom:245.552250px;}
.y231{bottom:247.185000px;}
.y96{bottom:247.234500px;}
.y2bf{bottom:249.949500px;}
.y17a{bottom:250.530000px;}
.ya2{bottom:251.145000px;}
.y262{bottom:254.844000px;}
.y1fe{bottom:256.005000px;}
.y1b9{bottom:256.635000px;}
.y3f{bottom:257.178000px;}
.y290{bottom:260.205000px;}
.y70{bottom:260.535000px;}
.ye2{bottom:260.565000px;}
.y152{bottom:260.608500px;}
.y127{bottom:260.625000px;}
.yb6{bottom:260.880000px;}
.y104{bottom:261.255000px;}
.y230{bottom:261.723000px;}
.ya6{bottom:263.944500px;}
.y2be{bottom:264.651000px;}
.y261{bottom:269.694000px;}
.y1fd{bottom:270.709500px;}
.y1b8{bottom:272.385000px;}
.y95{bottom:272.739000px;}
.y3e{bottom:274.420500px;}
.y28f{bottom:275.203500px;}
.y22f{bottom:276.276000px;}
.ye1{bottom:277.807500px;}
.y151{bottom:277.851000px;}
.y126{bottom:277.867500px;}
.yb5{bottom:278.122500px;}
.y6f{bottom:278.415000px;}
.y103{bottom:278.497500px;}
.y2bd{bottom:279.352500px;}
.y15{bottom:281.547750px;}
.y1a3{bottom:288.135000px;}
.y260{bottom:288.810000px;}
.y179{bottom:289.260000px;}
.y1fc{bottom:289.650000px;}
.y28e{bottom:290.202000px;}
.y22e{bottom:290.829000px;}
.y3d{bottom:291.663000px;}
.y2bc{bottom:294.054000px;}
.ye0{bottom:295.050000px;}
.y150{bottom:295.093500px;}
.y125{bottom:295.110000px;}
.yb4{bottom:295.365000px;}
.y102{bottom:295.740000px;}
.y6e{bottom:296.295000px;}
.y94{bottom:298.243500px;}
.y14{bottom:302.552250px;}
.y25f{bottom:303.666000px;}
.y1a2{bottom:303.885000px;}
.y1fb{bottom:304.350000px;}
.y178{bottom:305.010000px;}
.y28d{bottom:305.200500px;}
.ya5{bottom:306.690000px;}
.y22d{bottom:307.515000px;}
.y3c{bottom:308.905500px;}
.y2bb{bottom:310.875000px;}
.ydf{bottom:312.292500px;}
.y14f{bottom:312.336000px;}
.y124{bottom:312.352500px;}
.yb3{bottom:312.607500px;}
.y101{bottom:312.982500px;}
.y6d{bottom:314.160000px;}
.y13{bottom:317.557500px;}
.y25e{bottom:318.516000px;}
.y1fa{bottom:319.051500px;}
.y1a1{bottom:319.635000px;}
.y28c{bottom:320.199000px;}
.y177{bottom:320.760000px;}
.y22c{bottom:322.047000px;}
.y93{bottom:323.748000px;}
.y2ba{bottom:325.560000px;}
.y3b{bottom:326.148000px;}
.yde{bottom:329.535000px;}
.y14e{bottom:329.578500px;}
.y123{bottom:329.595000px;}
.yb2{bottom:329.850000px;}
.y100{bottom:330.225000px;}
.y6c{bottom:332.040000px;}
.y12{bottom:332.562750px;}
.y25d{bottom:333.366000px;}
.y1f9{bottom:333.753000px;}
.y1a0{bottom:335.385000px;}
.y176{bottom:336.510000px;}
.y22b{bottom:336.600000px;}
.y28b{bottom:339.450000px;}
.y2b9{bottom:340.261500px;}
.y3a{bottom:343.390500px;}
.ydd{bottom:346.777500px;}
.y9f{bottom:346.804500px;}
.y14d{bottom:346.821000px;}
.y122{bottom:346.837500px;}
.yb1{bottom:347.092500px;}
.yff{bottom:347.467500px;}
.y11{bottom:347.568000px;}
.y25c{bottom:348.216000px;}
.y1f8{bottom:348.454500px;}
.y92{bottom:349.252500px;}
.y6b{bottom:349.920000px;}
.y19f{bottom:351.135000px;}
.y22a{bottom:351.153000px;}
.y175{bottom:352.260000px;}
.y28a{bottom:354.447000px;}
.y2b8{bottom:354.963000px;}
.y39{bottom:360.633000px;}
.y10{bottom:362.573250px;}
.y25b{bottom:363.066000px;}
.y1f7{bottom:363.156000px;}
.ydc{bottom:364.020000px;}
.y9e{bottom:364.047000px;}
.y14c{bottom:364.063500px;}
.y121{bottom:364.080000px;}
.yb0{bottom:364.335000px;}
.yfe{bottom:364.710000px;}
.y229{bottom:365.706000px;}
.y19e{bottom:366.885000px;}
.y6a{bottom:367.800000px;}
.y174{bottom:368.010000px;}
.y289{bottom:369.445500px;}
.y2b7{bottom:369.664500px;}
.y91{bottom:374.757000px;}
.y1b7{bottom:375.510000px;}
.yf{bottom:377.578500px;}
.y38{bottom:377.875500px;}
.y228{bottom:380.259000px;}
.ydb{bottom:381.262500px;}
.y9d{bottom:381.289500px;}
.y14b{bottom:381.306000px;}
.y120{bottom:381.322500px;}
.yaf{bottom:381.577500px;}
.yfd{bottom:381.952500px;}
.y1f6{bottom:382.110000px;}
.y25a{bottom:382.155000px;}
.y19d{bottom:382.635000px;}
.y173{bottom:383.760000px;}
.y2b6{bottom:384.366000px;}
.y69{bottom:385.665000px;}
.y288{bottom:388.710000px;}
.ye{bottom:392.583750px;}
.y227{bottom:394.812000px;}
.y37{bottom:395.118000px;}
.y1f5{bottom:396.810000px;}
.y259{bottom:396.999000px;}
.y19c{bottom:398.385000px;}
.yda{bottom:398.505000px;}
.y9c{bottom:398.532000px;}
.y14a{bottom:398.548500px;}
.y11f{bottom:398.565000px;}
.yae{bottom:398.820000px;}
.y2b5{bottom:399.067500px;}
.yfc{bottom:399.195000px;}
.y172{bottom:399.510000px;}
.y68{bottom:403.545000px;}
.y287{bottom:403.714500px;}
.y226{bottom:409.365000px;}
.y1f4{bottom:411.511500px;}
.y258{bottom:411.849000px;}
.y2b4{bottom:413.769000px;}
.y19b{bottom:414.135000px;}
.y171{bottom:415.260000px;}
.yd9{bottom:415.747500px;}
.y149{bottom:415.791000px;}
.y11e{bottom:415.807500px;}
.yad{bottom:416.062500px;}
.yfb{bottom:416.437500px;}
.y1b6{bottom:418.635000px;}
.y286{bottom:418.713000px;}
.y2df{bottom:420.705000px;}
.y36{bottom:420.990000px;}
.yd{bottom:422.580000px;}
.y67{bottom:423.795000px;}
.y225{bottom:423.918000px;}
.y9b{bottom:424.404000px;}
.y1f3{bottom:426.213000px;}
.y257{bottom:426.699000px;}
.y2b3{bottom:428.470500px;}
.y19a{bottom:429.885000px;}
.y170{bottom:431.010000px;}
.yd8{bottom:432.990000px;}
.y148{bottom:433.033500px;}
.y8d{bottom:433.050000px;}
.yac{bottom:433.305000px;}
.yfa{bottom:433.680000px;}
.y285{bottom:433.711500px;}
.y2de{bottom:434.205000px;}
.y1b5{bottom:434.385000px;}
.yc{bottom:437.557500px;}
.y224{bottom:438.471000px;}
.y1f2{bottom:440.914500px;}
.y256{bottom:441.549000px;}
.y2b2{bottom:445.305000px;}
.y199{bottom:445.635000px;}
.y16f{bottom:446.760000px;}
.y2dd{bottom:447.705000px;}
.y284{bottom:448.710000px;}
.y66{bottom:449.295000px;}
.y1b4{bottom:450.135000px;}
.yd7{bottom:450.232500px;}
.y147{bottom:450.276000px;}
.y8c{bottom:450.292500px;}
.yab{bottom:450.547500px;}
.yf9{bottom:450.922500px;}
.y223{bottom:455.130000px;}
.y255{bottom:456.399000px;}
.y1d9{bottom:457.260000px;}
.y1f1{bottom:459.855000px;}
.y2b1{bottom:459.997500px;}
.y2dc{bottom:461.205000px;}
.y198{bottom:461.385000px;}
.y16e{bottom:462.510000px;}
.y283{bottom:463.708500px;}
.y1b3{bottom:465.885000px;}
.yd6{bottom:467.475000px;}
.y146{bottom:467.518500px;}
.y8b{bottom:467.535000px;}
.yaa{bottom:467.790000px;}
.yf8{bottom:468.165000px;}
.y222{bottom:469.665000px;}
.y254{bottom:471.249000px;}
.y1d8{bottom:473.010000px;}
.yb{bottom:473.553000px;}
.y1f0{bottom:474.558000px;}
.y2b0{bottom:474.699000px;}
.y16d{bottom:478.260000px;}
.y282{bottom:478.707000px;}
.y2db{bottom:478.965000px;}
.y50{bottom:481.500000px;}
.y1b2{bottom:481.635000px;}
.y221{bottom:484.218000px;}
.yd5{bottom:484.717500px;}
.y65{bottom:484.744500px;}
.y145{bottom:484.761000px;}
.y8a{bottom:484.777500px;}
.ya9{bottom:485.032500px;}
.yf7{bottom:485.407500px;}
.y197{bottom:485.760000px;}
.y253{bottom:486.099000px;}
.y1d7{bottom:488.760000px;}
.y1ef{bottom:489.259500px;}
.y2af{bottom:489.400500px;}
.y2da{bottom:493.665000px;}
.y281{bottom:493.705500px;}
.y16c{bottom:494.010000px;}
.ya{bottom:494.557500px;}
.y4f{bottom:496.500000px;}
.y1b1{bottom:497.385000px;}
.y54{bottom:498.000000px;}
.y220{bottom:498.771000px;}
.y252{bottom:500.949000px;}
.yd4{bottom:501.960000px;}
.y64{bottom:501.987000px;}
.y144{bottom:502.003500px;}
.y89{bottom:502.020000px;}
.ya8{bottom:502.275000px;}
.yf6{bottom:502.650000px;}
.y1ee{bottom:503.961000px;}
.y1d6{bottom:504.510000px;}
.y2ae{bottom:506.235000px;}
.y2d9{bottom:508.366500px;}
.y280{bottom:508.704000px;}
.y9{bottom:509.562750px;}
.y16b{bottom:509.760000px;}
.y4d{bottom:513.000000px;}
.y1b0{bottom:513.135000px;}
.y21f{bottom:513.324000px;}
.y52{bottom:514.500000px;}
.yd3{bottom:519.202500px;}
.y63{bottom:519.229500px;}
.y143{bottom:519.246000px;}
.y88{bottom:519.262500px;}
.y251{bottom:520.065000px;}
.y1d5{bottom:520.260000px;}
.y1ed{bottom:522.915000px;}
.y2d8{bottom:523.068000px;}
.y8{bottom:524.568000px;}
.y2ad{bottom:525.180000px;}
.y16a{bottom:525.510000px;}
.y27f{bottom:527.955000px;}
.y196{bottom:528.885000px;}
.y21e{bottom:530.010000px;}
.y250{bottom:534.921000px;}
.y1d4{bottom:536.010000px;}
.yd2{bottom:536.445000px;}
.y62{bottom:536.472000px;}
.y142{bottom:536.488500px;}
.y87{bottom:536.505000px;}
.y1ec{bottom:537.615000px;}
.y2d7{bottom:537.769500px;}
.y7{bottom:539.573250px;}
.y2ac{bottom:539.874000px;}
.y169{bottom:541.260000px;}
.y27e{bottom:542.958000px;}
.yc4{bottom:543.594000px;}
.y4c{bottom:544.485000px;}
.y21d{bottom:544.551000px;}
.y195{bottom:544.635000px;}
.y24f{bottom:549.771000px;}
.y1d3{bottom:551.760000px;}
.y1eb{bottom:552.316500px;}
.yd1{bottom:553.687500px;}
.y61{bottom:553.714500px;}
.y141{bottom:553.731000px;}
.y86{bottom:553.747500px;}
.y2ab{bottom:554.575500px;}
.y6{bottom:554.578500px;}
.y2d6{bottom:556.710000px;}
.y168{bottom:557.010000px;}
.yc3{bottom:557.850000px;}
.y27d{bottom:557.956500px;}
.y21c{bottom:559.104000px;}
.y194{bottom:560.385000px;}
.y24e{bottom:564.621000px;}
.y112{bottom:566.709000px;}
.y1ea{bottom:567.018000px;}
.y1d2{bottom:567.510000px;}
.y5{bottom:569.583750px;}
.yd0{bottom:570.930000px;}
.y60{bottom:570.957000px;}
.y140{bottom:570.973500px;}
.y85{bottom:570.990000px;}
.y2d5{bottom:571.405500px;}
.y2aa{bottom:571.410000px;}
.y167{bottom:572.760000px;}
.y27c{bottom:572.955000px;}
.y21b{bottom:575.790000px;}
.y193{bottom:576.135000px;}
.y24d{bottom:579.471000px;}
.y111{bottom:580.965000px;}
.y1e9{bottom:581.719500px;}
.y1d1{bottom:583.260000px;}
.y2a9{bottom:586.105500px;}
.y2d4{bottom:586.107000px;}
.y27b{bottom:587.953500px;}
.y5f{bottom:588.199500px;}
.y13f{bottom:588.216000px;}
.y84{bottom:588.232500px;}
.y166{bottom:588.510000px;}
.y21a{bottom:590.331000px;}
.y192{bottom:591.885000px;}
.y24c{bottom:594.321000px;}
.y1d0{bottom:599.010000px;}
.y35{bottom:599.385000px;}
.y4{bottom:599.580000px;}
.y1e8{bottom:600.660000px;}
.y2d3{bottom:600.808500px;}
.yc5{bottom:601.215000px;}
.y2a8{bottom:602.940000px;}
.y27a{bottom:602.952000px;}
.y165{bottom:604.260000px;}
.y219{bottom:604.884000px;}
.y5e{bottom:605.442000px;}
.y13e{bottom:605.458500px;}
.y83{bottom:605.475000px;}
.y191{bottom:607.635000px;}
.y24b{bottom:613.410000px;}
.y1cf{bottom:614.760000px;}
.y1e7{bottom:615.357000px;}
.y2d2{bottom:615.510000px;}
.y2a7{bottom:617.629500px;}
.y279{bottom:617.950500px;}
.y218{bottom:619.437000px;}
.y164{bottom:620.010000px;}
.y34{bottom:620.357250px;}
.yee{bottom:621.579000px;}
.ycf{bottom:621.858000px;}
.y5d{bottom:622.684500px;}
.y13d{bottom:622.701000px;}
.y82{bottom:622.717500px;}
.y190{bottom:623.385000px;}
.y11d{bottom:623.698500px;}
.y29{bottom:627.609000px;}
.y24a{bottom:628.266000px;}
.y1e6{bottom:630.058500px;}
.y2d1{bottom:630.211500px;}
.y1ce{bottom:630.510000px;}
.y2a6{bottom:632.331000px;}
.y217{bottom:633.990000px;}
.y33{bottom:635.362500px;}
.y11c{bottom:635.700000px;}
.y163{bottom:635.760000px;}
.yed{bottom:635.835000px;}
.y278{bottom:637.215000px;}
.y18f{bottom:639.135000px;}
.y5c{bottom:639.927000px;}
.y13c{bottom:639.943500px;}
.y81{bottom:639.960000px;}
.y28{bottom:641.865000px;}
.yce{bottom:642.858000px;}
.y249{bottom:643.116000px;}
.y1e5{bottom:644.760000px;}
.y2d0{bottom:644.913000px;}
.y1cd{bottom:646.260000px;}
.y11b{bottom:646.528500px;}
.y2a5{bottom:647.032500px;}
.y216{bottom:648.543000px;}
.y32{bottom:650.367750px;}
.y162{bottom:651.510000px;}
.y277{bottom:652.209000px;}
.y18e{bottom:654.885000px;}
.y5b{bottom:657.169500px;}
.y13b{bottom:657.186000px;}
.y80{bottom:657.202500px;}
.y248{bottom:657.966000px;}
.y1e4{bottom:659.461500px;}
.y2cf{bottom:659.614500px;}
.y2a4{bottom:661.734000px;}
.y1cc{bottom:662.010000px;}
.y215{bottom:663.096000px;}
.ycd{bottom:665.359500px;}
.y31{bottom:665.373000px;}
.y161{bottom:667.260000px;}
.y11a{bottom:667.528500px;}
.y18d{bottom:670.635000px;}
.y276{bottom:671.460000px;}
.y1e3{bottom:674.163000px;}
.y5a{bottom:674.412000px;}
.y13a{bottom:674.428500px;}
.y7f{bottom:674.445000px;}
.y247{bottom:677.055000px;}
.y1cb{bottom:677.760000px;}
.yef{bottom:678.525000px;}
.y2a3{bottom:678.555000px;}
.y214{bottom:679.755000px;}
.y30{bottom:680.378250px;}
.ycc{bottom:683.356500px;}
.y18c{bottom:686.385000px;}
.y275{bottom:686.458500px;}
.y119{bottom:688.528500px;}
.y1e2{bottom:688.864500px;}
.y160{bottom:691.654500px;}
.y139{bottom:691.671000px;}
.y7e{bottom:691.687500px;}
.y246{bottom:691.899000px;}
.y27{bottom:693.093000px;}
.y2a2{bottom:693.247500px;}
.y2ce{bottom:693.252000px;}
.y1ca{bottom:693.510000px;}
.y213{bottom:694.293000px;}
.y2f{bottom:695.383500px;}
.yf5{bottom:696.375000px;}
.y59{bottom:700.284000px;}
.y274{bottom:701.457000px;}
.y18b{bottom:702.135000px;}
.ycb{bottom:704.356500px;}
.y245{bottom:706.749000px;}
.y26{bottom:707.349000px;}
.y1e1{bottom:707.805000px;}
.y2a1{bottom:707.949000px;}
.y2cd{bottom:707.953500px;}
.y212{bottom:708.846000px;}
.y138{bottom:708.913500px;}
.y7d{bottom:708.930000px;}
.y1c9{bottom:709.260000px;}
.y118{bottom:709.528500px;}
.y2e{bottom:710.388750px;}
.y273{bottom:716.455500px;}
.y15f{bottom:717.526500px;}
.y18a{bottom:717.885000px;}
.yf4{bottom:718.876500px;}
.y244{bottom:721.599000px;}
.y25{bottom:721.605000px;}
.y1e0{bottom:722.505000px;}
.y2a0{bottom:722.650500px;}
.y2cc{bottom:722.655000px;}
.y211{bottom:723.399000px;}
.y1c8{bottom:725.010000px;}
.yca{bottom:725.356500px;}
.y137{bottom:726.156000px;}
.y7c{bottom:726.172500px;}
.y117{bottom:730.528500px;}
.y272{bottom:731.454000px;}
.y189{bottom:733.635000px;}
.y243{bottom:736.449000px;}
.y1df{bottom:737.206500px;}
.y2cb{bottom:737.356500px;}
.y29f{bottom:739.485000px;}
.y24{bottom:739.605000px;}
.y210{bottom:740.085000px;}
.y2d{bottom:740.385000px;}
.y1c7{bottom:740.760000px;}
.yf3{bottom:741.378000px;}
.y136{bottom:743.398500px;}
.y58{bottom:743.415000px;}
.yc9{bottom:746.356500px;}
.y188{bottom:749.385000px;}
.y271{bottom:750.705000px;}
.y242{bottom:751.299000px;}
.y1de{bottom:751.908000px;}
.y2ca{bottom:752.058000px;}
.y116{bottom:753.030000px;}
.y29e{bottom:754.177500px;}
.y20f{bottom:754.623000px;}
.y1c6{bottom:756.510000px;}
.yf2{bottom:759.375000px;}
.y135{bottom:760.641000px;}
.y57{bottom:760.657500px;}
.y187{bottom:765.135000px;}
.y270{bottom:765.702000px;}
.y241{bottom:766.149000px;}
.y1dd{bottom:766.609500px;}
.y2c9{bottom:766.759500px;}
.y29d{bottom:768.879000px;}
.y20e{bottom:769.176000px;}
.y2{bottom:769.605000px;}
.yc8{bottom:770.359500px;}
.y1c5{bottom:772.260000px;}
.y115{bottom:774.030000px;}
.y2c{bottom:776.375250px;}
.y134{bottom:777.883500px;}
.y56{bottom:777.900000px;}
.y26f{bottom:780.700500px;}
.y186{bottom:780.885000px;}
.y240{bottom:780.999000px;}
.y1dc{bottom:781.311000px;}
.y2c8{bottom:781.461000px;}
.yf1{bottom:781.876500px;}
.y29c{bottom:783.580500px;}
.y20d{bottom:783.729000px;}
.y23{bottom:784.605000px;}
.y1c4{bottom:788.010000px;}
.yc7{bottom:791.359500px;}
.y114{bottom:795.030000px;}
.y55{bottom:795.142500px;}
.y185{bottom:796.635000px;}
.y2b{bottom:797.379750px;}
.y26e{bottom:799.965000px;}
.y23f{bottom:800.115000px;}
.y1db{bottom:800.265000px;}
.y20c{bottom:800.415000px;}
.yf0{bottom:804.378000px;}
.y1{bottom:805.605000px;}
.y22{bottom:808.605000px;}
.yc6{bottom:812.359500px;}
.y2a{bottom:812.385000px;}
.y113{bottom:816.030000px;}
.y1da{bottom:819.210000px;}
.y21{bottom:859.605000px;}
.y3{bottom:922.500000px;}
.hd{height:13.500000px;}
.he{height:15.000000px;}
.hb{height:16.500000px;}
.h11{height:44.814000px;}
.h12{height:46.242000px;}
.h2{height:47.085938px;}
.hc{height:47.109375px;}
.h7{height:51.216000px;}
.h6{height:57.618000px;}
.h14{height:58.536000px;}
.h3{height:60.819000px;}
.h5{height:61.788000px;}
.h4{height:61.878000px;}
.hf{height:64.020000px;}
.h10{height:65.040000px;}
.ha{height:70.422000px;}
.h13{height:71.544000px;}
.h9{height:76.824000px;}
.h1{height:102.432000px;}
.h8{height:103.382400px;}
.h0{height:892.500000px;}
.w3{width:195.000000px;}
.w2{width:222.000000px;}
.w1{width:225.000000px;}
.w0{width:636.000000px;}
.x0{left:0.000000px;}
.x12{left:1.500000px;}
.x3{left:4.500000px;}
.x3a{left:29.310000px;}
.x2b{left:31.815000px;}
.x31{left:33.525000px;}
.xe{left:35.892750px;}
.x10{left:41.376150px;}
.x3b{left:52.030500px;}
.x2e{left:54.573450px;}
.x39{left:56.234025px;}
.x4{left:74.700000px;}
.x9{left:75.915000px;}
.xc{left:81.000000px;}
.xf{left:82.500000px;}
.x5{left:97.191000px;}
.xa{left:98.419350px;}
.x15{left:103.783500px;}
.x14{left:124.605000px;}
.x3e{left:135.598500px;}
.x37{left:138.579975px;}
.x34{left:139.802475px;}
.x3f{left:141.360000px;}
.x19{left:157.614000px;}
.x28{left:163.035000px;}
.xd{left:168.180150px;}
.x1{left:186.120000px;}
.x29{left:188.670000px;}
.x2{left:211.896000px;}
.x1c{left:217.971000px;}
.x21{left:219.819000px;}
.x22{left:233.049000px;}
.x23{left:235.054500px;}
.x38{left:236.415375px;}
.x20{left:237.564000px;}
.x24{left:239.527500px;}
.x1d{left:241.312500px;}
.x1f{left:242.499000px;}
.x1e{left:243.843000px;}
.x1b{left:247.276500px;}
.x27{left:249.060000px;}
.x26{left:250.582500px;}
.x25{left:257.113500px;}
.x1a{left:268.350000px;}
.x2a{left:274.598850px;}
.x17{left:291.552000px;}
.xb{left:298.740000px;}
.x3d{left:314.183925px;}
.x2c{left:316.670400px;}
.x36{left:318.383925px;}
.x40{left:319.944375px;}
.x2f{left:322.434375px;}
.x35{left:324.109950px;}
.x11{left:337.500000px;}
.x13{left:339.000000px;}
.x18{left:352.777500px;}
.x6{left:377.385000px;}
.x8{left:403.071000px;}
.x7{left:408.120000px;}
.x3c{left:433.230000px;}
.x2d{left:435.750000px;}
.x32{left:437.433525px;}
.x30{left:441.487125px;}
.x33{left:443.190000px;}
.x16{left:468.015000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.269333pt;}
.v1{vertical-align:28.160000pt;}
.ls23{letter-spacing:-4.560000pt;}
.ls3d{letter-spacing:-3.279467pt;}
.ls22{letter-spacing:-3.090667pt;}
.ls43{letter-spacing:-2.874667pt;}
.ls38{letter-spacing:-2.640000pt;}
.ls39{letter-spacing:-2.581333pt;}
.ls53{letter-spacing:-2.560000pt;}
.ls3e{letter-spacing:-2.522667pt;}
.ls32{letter-spacing:-2.411200pt;}
.ls26{letter-spacing:-2.405333pt;}
.ls2e{letter-spacing:-2.393600pt;}
.ls49{letter-spacing:-2.346667pt;}
.ls31{letter-spacing:-2.229333pt;}
.ls36{letter-spacing:-2.170667pt;}
.ls21{letter-spacing:-2.128000pt;}
.ls2b{letter-spacing:-2.053333pt;}
.ls4e{letter-spacing:-2.000533pt;}
.ls51{letter-spacing:-1.988800pt;}
.ls1e{letter-spacing:-1.976000pt;}
.ls2f{letter-spacing:-1.930133pt;}
.ls35{letter-spacing:-1.877333pt;}
.ls1f{letter-spacing:-1.874667pt;}
.ls47{letter-spacing:-1.836267pt;}
.ls20{letter-spacing:-1.824000pt;}
.ls37{letter-spacing:-1.818667pt;}
.ls27{letter-spacing:-1.760000pt;}
.ls3a{letter-spacing:-1.695467pt;}
.ls33{letter-spacing:-1.642667pt;}
.ls45{letter-spacing:-1.636800pt;}
.ls4f{letter-spacing:-1.589867pt;}
.ls41{letter-spacing:-1.566400pt;}
.ls3b{letter-spacing:-1.525333pt;}
.ls71{letter-spacing:-1.466667pt;}
.ls34{letter-spacing:-1.413867pt;}
.ls65{letter-spacing:-1.349333pt;}
.ls48{letter-spacing:-1.284800pt;}
.ls1a{letter-spacing:-1.266667pt;}
.ls2a{letter-spacing:-1.237867pt;}
.ls44{letter-spacing:-1.232000pt;}
.lsa9{letter-spacing:-1.226667pt;}
.ls2d{letter-spacing:-1.226133pt;}
.ls17{letter-spacing:-1.216000pt;}
.ls9c{letter-spacing:-1.120000pt;}
.ls25{letter-spacing:-1.114667pt;}
.ls42{letter-spacing:-1.102933pt;}
.ls85{letter-spacing:-1.080000pt;}
.ls86{letter-spacing:-1.066667pt;}
.ls1c{letter-spacing:-1.064000pt;}
.ls1b{letter-spacing:-1.013333pt;}
.ls99{letter-spacing:-1.000000pt;}
.ls4c{letter-spacing:-0.997333pt;}
.ls1d{letter-spacing:-0.962667pt;}
.ls50{letter-spacing:-0.938667pt;}
.lsa{letter-spacing:-0.912000pt;}
.ls58{letter-spacing:-0.880000pt;}
.ls80{letter-spacing:-0.853333pt;}
.ls9b{letter-spacing:-0.840000pt;}
.ls3f{letter-spacing:-0.821333pt;}
.ls8{letter-spacing:-0.810667pt;}
.ls97{letter-spacing:-0.800000pt;}
.ls46{letter-spacing:-0.762667pt;}
.ls16{letter-spacing:-0.709333pt;}
.ls24{letter-spacing:-0.704000pt;}
.lsa1{letter-spacing:-0.693333pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls15{letter-spacing:-0.658667pt;}
.ls30{letter-spacing:-0.645333pt;}
.ls89{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.608000pt;}
.ls98{letter-spacing:-0.600000pt;}
.ls5e{letter-spacing:-0.586667pt;}
.ls4b{letter-spacing:-0.580800pt;}
.lsa7{letter-spacing:-0.560000pt;}
.ls18{letter-spacing:-0.557333pt;}
.ls52{letter-spacing:-0.554667pt;}
.ls84{letter-spacing:-0.533333pt;}
.ls64{letter-spacing:-0.528000pt;}
.ls4a{letter-spacing:-0.522133pt;}
.lsa2{letter-spacing:-0.520000pt;}
.ls54{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.506667pt;}
.ls8b{letter-spacing:-0.480000pt;}
.ls3c{letter-spacing:-0.469333pt;}
.ls9{letter-spacing:-0.456000pt;}
.ls95{letter-spacing:-0.440000pt;}
.ls81{letter-spacing:-0.426667pt;}
.ls28{letter-spacing:-0.410667pt;}
.ls9a{letter-spacing:-0.400000pt;}
.lsa8{letter-spacing:-0.373333pt;}
.ls29{letter-spacing:-0.352000pt;}
.ls8c{letter-spacing:-0.320000pt;}
.ls4d{letter-spacing:-0.293333pt;}
.ls82{letter-spacing:-0.280000pt;}
.ls83{letter-spacing:-0.266667pt;}
.lsa3{letter-spacing:-0.240000pt;}
.ls66{letter-spacing:-0.234667pt;}
.ls59{letter-spacing:-0.213333pt;}
.ls2c{letter-spacing:-0.176000pt;}
.ls88{letter-spacing:-0.160000pt;}
.ls87{letter-spacing:-0.120000pt;}
.ls5d{letter-spacing:-0.117333pt;}
.lsaa{letter-spacing:-0.106667pt;}
.ls14{letter-spacing:-0.101333pt;}
.ls6f{letter-spacing:-0.085333pt;}
.ls96{letter-spacing:-0.080000pt;}
.ls40{letter-spacing:-0.058667pt;}
.ls5a{letter-spacing:-0.053333pt;}
.ls67{letter-spacing:-0.048000pt;}
.lsb{letter-spacing:-0.042667pt;}
.lsa0{letter-spacing:-0.040000pt;}
.ls5f{letter-spacing:-0.037333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls76{letter-spacing:0.040000pt;}
.lsad{letter-spacing:0.048000pt;}
.ls2{letter-spacing:0.050667pt;}
.ls77{letter-spacing:0.053333pt;}
.ls56{letter-spacing:0.058667pt;}
.ls9d{letter-spacing:0.080000pt;}
.ls75{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.117333pt;}
.ls91{letter-spacing:0.120000pt;}
.ls6{letter-spacing:0.144000pt;}
.ls5{letter-spacing:0.152000pt;}
.ls7f{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.176000pt;}
.ls7a{letter-spacing:0.200000pt;}
.ls3{letter-spacing:0.202667pt;}
.ls79{letter-spacing:0.213333pt;}
.ls12{letter-spacing:0.234667pt;}
.ls8a{letter-spacing:0.240000pt;}
.lsd{letter-spacing:0.248267pt;}
.ls78{letter-spacing:0.266667pt;}
.ls8e{letter-spacing:0.280000pt;}
.ls60{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.304000pt;}
.ls7e{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.352000pt;}
.ls92{letter-spacing:0.360000pt;}
.ls93{letter-spacing:0.373333pt;}
.ls55{letter-spacing:0.410667pt;}
.ls8d{letter-spacing:0.426667pt;}
.ls9e{letter-spacing:0.440000pt;}
.ls69{letter-spacing:0.469333pt;}
.ls8f{letter-spacing:0.480000pt;}
.lsa5{letter-spacing:0.520000pt;}
.ls5b{letter-spacing:0.528000pt;}
.lsa6{letter-spacing:0.533333pt;}
.ls6e{letter-spacing:0.586667pt;}
.ls7d{letter-spacing:0.640000pt;}
.ls5c{letter-spacing:0.645333pt;}
.lse{letter-spacing:0.658667pt;}
.ls90{letter-spacing:0.680000pt;}
.ls7b{letter-spacing:0.693333pt;}
.ls63{letter-spacing:0.704000pt;}
.ls62{letter-spacing:0.762667pt;}
.ls94{letter-spacing:0.800000pt;}
.ls6a{letter-spacing:0.821333pt;}
.ls74{letter-spacing:0.840000pt;}
.ls73{letter-spacing:0.853333pt;}
.lsf{letter-spacing:0.874133pt;}
.ls68{letter-spacing:0.880000pt;}
.ls6d{letter-spacing:0.938667pt;}
.ls61{letter-spacing:1.114667pt;}
.ls72{letter-spacing:1.173333pt;}
.lsa4{letter-spacing:1.226667pt;}
.ls9f{letter-spacing:1.333333pt;}
.ls6b{letter-spacing:1.408000pt;}
.ls70{letter-spacing:1.466667pt;}
.ls6c{letter-spacing:1.642667pt;}
.lsc{letter-spacing:12.616000pt;}
.lsac{letter-spacing:21.333333pt;}
.ls7c{letter-spacing:26.666667pt;}
.ls57{letter-spacing:37.386667pt;}
.lsab{letter-spacing:47.136000pt;}
.wsa6{word-spacing:-16.074667pt;}
.wsae{word-spacing:-15.605333pt;}
.wsa4{word-spacing:-15.546667pt;}
.ws9c{word-spacing:-15.429333pt;}
.ws9d{word-spacing:-15.370667pt;}
.ws8c{word-spacing:-15.312000pt;}
.ws8b{word-spacing:-15.194667pt;}
.wsa8{word-spacing:-15.136000pt;}
.wsa5{word-spacing:-15.077333pt;}
.ws9e{word-spacing:-15.018667pt;}
.ws30{word-spacing:-14.960000pt;}
.ws50{word-spacing:-14.901333pt;}
.wsaf{word-spacing:-14.842667pt;}
.ws75{word-spacing:-14.784000pt;}
.wsad{word-spacing:-14.725333pt;}
.ws87{word-spacing:-14.666667pt;}
.ws89{word-spacing:-14.608000pt;}
.ws8a{word-spacing:-14.549333pt;}
.wsc1{word-spacing:-14.506667pt;}
.ws88{word-spacing:-14.490667pt;}
.ws9f{word-spacing:-14.432000pt;}
.ws74{word-spacing:-14.373333pt;}
.ws2f{word-spacing:-14.256000pt;}
.ws45{word-spacing:-14.197333pt;}
.ws53{word-spacing:-14.144533pt;}
.wse7{word-spacing:-14.133333pt;}
.ws54{word-spacing:-14.085867pt;}
.ws8d{word-spacing:-14.080000pt;}
.wsb8{word-spacing:-14.026667pt;}
.ws38{word-spacing:-14.021333pt;}
.wsbf{word-spacing:-13.973333pt;}
.ws9b{word-spacing:-13.962667pt;}
.ws4e{word-spacing:-13.904000pt;}
.ws48{word-spacing:-13.845333pt;}
.wsdb{word-spacing:-13.813333pt;}
.ws73{word-spacing:-13.786667pt;}
.ws58{word-spacing:-13.728000pt;}
.ws55{word-spacing:-13.669333pt;}
.ws107{word-spacing:-13.653333pt;}
.ws78{word-spacing:-13.600000pt;}
.ws4a{word-spacing:-13.563733pt;}
.ws3e{word-spacing:-13.552000pt;}
.ws77{word-spacing:-13.546667pt;}
.wsdf{word-spacing:-13.493333pt;}
.ws35{word-spacing:-13.440533pt;}
.ws4c{word-spacing:-13.434667pt;}
.ws33{word-spacing:-13.428800pt;}
.wsfe{word-spacing:-13.386667pt;}
.ws51{word-spacing:-13.381867pt;}
.wsb1{word-spacing:-13.333333pt;}
.wsfc{word-spacing:-13.280000pt;}
.ws3c{word-spacing:-13.252800pt;}
.ws44{word-spacing:-13.141333pt;}
.ws49{word-spacing:-13.100267pt;}
.ws57{word-spacing:-13.076800pt;}
.wsbb{word-spacing:-13.066667pt;}
.ws4d{word-spacing:-13.029867pt;}
.ws3b{word-spacing:-13.024000pt;}
.wsf5{word-spacing:-13.013333pt;}
.ws43{word-spacing:-12.971200pt;}
.ws2{word-spacing:-12.920000pt;}
.ws32{word-spacing:-12.906667pt;}
.ws100{word-spacing:-12.853333pt;}
.ws40{word-spacing:-12.848000pt;}
.ws4f{word-spacing:-12.830400pt;}
.wsbc{word-spacing:-12.800000pt;}
.ws3d{word-spacing:-12.789333pt;}
.wsd8{word-spacing:-12.746667pt;}
.ws37{word-spacing:-12.736533pt;}
.wsfa{word-spacing:-12.693333pt;}
.ws59{word-spacing:-12.677867pt;}
.ws3{word-spacing:-12.666667pt;}
.ws56{word-spacing:-12.666133pt;}
.wsf8{word-spacing:-12.640000pt;}
.ws34{word-spacing:-12.613333pt;}
.ws1d{word-spacing:-12.565333pt;}
.ws3f{word-spacing:-12.496000pt;}
.wsb5{word-spacing:-12.480000pt;}
.ws39{word-spacing:-12.437333pt;}
.ws5{word-spacing:-12.413333pt;}
.ws52{word-spacing:-12.320000pt;}
.ws22{word-spacing:-12.312000pt;}
.ws36{word-spacing:-12.273067pt;}
.ws31{word-spacing:-12.261333pt;}
.ws3a{word-spacing:-12.255467pt;}
.wsa0{word-spacing:-12.192000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws47{word-spacing:-12.144000pt;}
.ws21{word-spacing:-12.109333pt;}
.ws109{word-spacing:-12.106667pt;}
.ws42{word-spacing:-12.085333pt;}
.ws2b{word-spacing:-12.058667pt;}
.ws41{word-spacing:-12.026667pt;}
.ws1e{word-spacing:-12.008000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.957333pt;}
.ws110{word-spacing:-11.952000pt;}
.ws2c{word-spacing:-11.906667pt;}
.ws4b{word-spacing:-11.792000pt;}
.ws20{word-spacing:-11.704000pt;}
.ws25{word-spacing:-11.653333pt;}
.ws26{word-spacing:-11.602667pt;}
.ws23{word-spacing:-11.450667pt;}
.ws24{word-spacing:-11.400000pt;}
.ws46{word-spacing:-11.387200pt;}
.ws7{word-spacing:-11.088000pt;}
.ws29{word-spacing:-10.842667pt;}
.wsb0{word-spacing:-10.840000pt;}
.ws8{word-spacing:-10.837333pt;}
.wse6{word-spacing:-10.800000pt;}
.ws28{word-spacing:-10.792000pt;}
.ws27{word-spacing:-10.690667pt;}
.wsdc{word-spacing:-10.680000pt;}
.ws5c{word-spacing:-10.666667pt;}
.wse3{word-spacing:-10.640000pt;}
.ws8f{word-spacing:-10.624000pt;}
.wsa9{word-spacing:-10.581333pt;}
.ws2a{word-spacing:-10.538667pt;}
.ws108{word-spacing:-10.520000pt;}
.wsda{word-spacing:-10.480000pt;}
.ws76{word-spacing:-10.453333pt;}
.wsfb{word-spacing:-10.440000pt;}
.wse5{word-spacing:-10.360000pt;}
.wse1{word-spacing:-10.320000pt;}
.wsd6{word-spacing:-10.280000pt;}
.wsc2{word-spacing:-10.240000pt;}
.wsb7{word-spacing:-10.200000pt;}
.wsde{word-spacing:-10.160000pt;}
.ws5b{word-spacing:-10.154667pt;}
.wse4{word-spacing:-10.120000pt;}
.ws5a{word-spacing:-10.112000pt;}
.wsf4{word-spacing:-10.080000pt;}
.wsb2{word-spacing:-10.040000pt;}
.wsb3{word-spacing:-10.000000pt;}
.wsf7{word-spacing:-9.960000pt;}
.wsd5{word-spacing:-9.920000pt;}
.wsbe{word-spacing:-9.880000pt;}
.wsdd{word-spacing:-9.840000pt;}
.wsfd{word-spacing:-9.760000pt;}
.wsba{word-spacing:-9.720000pt;}
.wsc3{word-spacing:-9.680000pt;}
.wse0{word-spacing:-9.600000pt;}
.ws2d{word-spacing:-9.576000pt;}
.wsd4{word-spacing:-9.560000pt;}
.wsf6{word-spacing:-9.520000pt;}
.wsf9{word-spacing:-9.480000pt;}
.ws105{word-spacing:-9.440000pt;}
.wsd7{word-spacing:-9.400000pt;}
.wsc0{word-spacing:-9.360000pt;}
.ws93{word-spacing:-9.333333pt;}
.ws91{word-spacing:-9.296000pt;}
.wse2{word-spacing:-9.160000pt;}
.wsb4{word-spacing:-9.120000pt;}
.wsd9{word-spacing:-9.000000pt;}
.wsbd{word-spacing:-8.920000pt;}
.wsff{word-spacing:-8.880000pt;}
.ws2e{word-spacing:-8.106667pt;}
.ws1{word-spacing:-6.656000pt;}
.wsb9{word-spacing:-1.386667pt;}
.ws69{word-spacing:-0.762667pt;}
.ws96{word-spacing:-0.704000pt;}
.ws15{word-spacing:-0.658667pt;}
.ws6a{word-spacing:-0.645333pt;}
.ws101{word-spacing:-0.640000pt;}
.ws6e{word-spacing:-0.586667pt;}
.ws17{word-spacing:-0.557333pt;}
.wsd0{word-spacing:-0.533333pt;}
.ws94{word-spacing:-0.528000pt;}
.ws103{word-spacing:-0.480000pt;}
.ws68{word-spacing:-0.469333pt;}
.wsec{word-spacing:-0.426667pt;}
.wsa3{word-spacing:-0.410667pt;}
.ws61{word-spacing:-0.405333pt;}
.wscc{word-spacing:-0.373333pt;}
.wse{word-spacing:-0.354667pt;}
.ws6b{word-spacing:-0.352000pt;}
.wsc6{word-spacing:-0.320000pt;}
.wsb{word-spacing:-0.304000pt;}
.ws70{word-spacing:-0.293333pt;}
.wse9{word-spacing:-0.266667pt;}
.ws1a{word-spacing:-0.240000pt;}
.ws66{word-spacing:-0.234667pt;}
.wsc9{word-spacing:-0.213333pt;}
.ws18{word-spacing:-0.202667pt;}
.ws85{word-spacing:-0.176000pt;}
.wsd3{word-spacing:-0.160000pt;}
.ws11{word-spacing:-0.152000pt;}
.ws9a{word-spacing:-0.117333pt;}
.wscd{word-spacing:-0.106667pt;}
.ws62{word-spacing:-0.058667pt;}
.wse8{word-spacing:-0.053333pt;}
.wsc{word-spacing:-0.050667pt;}
.ws0{word-spacing:0.000000pt;}
.ws7f{word-spacing:0.058667pt;}
.ws5f{word-spacing:0.101333pt;}
.ws10a{word-spacing:0.106667pt;}
.ws7b{word-spacing:0.117333pt;}
.wsc8{word-spacing:0.160000pt;}
.ws7d{word-spacing:0.176000pt;}
.ws10{word-spacing:0.202667pt;}
.wscf{word-spacing:0.213333pt;}
.ws83{word-spacing:0.234667pt;}
.wsa1{word-spacing:0.293333pt;}
.ws5e{word-spacing:0.304000pt;}
.wsf0{word-spacing:0.320000pt;}
.ws1b{word-spacing:0.336000pt;}
.ws81{word-spacing:0.352000pt;}
.wsea{word-spacing:0.373333pt;}
.wsce{word-spacing:0.426667pt;}
.ws6d{word-spacing:0.469333pt;}
.wsc4{word-spacing:0.480000pt;}
.ws84{word-spacing:0.528000pt;}
.wsf2{word-spacing:0.533333pt;}
.ws60{word-spacing:0.557333pt;}
.wsa2{word-spacing:0.586667pt;}
.wscb{word-spacing:0.640000pt;}
.ws7c{word-spacing:0.645333pt;}
.wsd1{word-spacing:0.693333pt;}
.wsab{word-spacing:0.704000pt;}
.wsed{word-spacing:0.746667pt;}
.wsa{word-spacing:0.760000pt;}
.ws80{word-spacing:0.762667pt;}
.ws99{word-spacing:0.821333pt;}
.wseb{word-spacing:0.853333pt;}
.ws97{word-spacing:0.880000pt;}
.ws102{word-spacing:0.906667pt;}
.ws5d{word-spacing:0.912000pt;}
.ws67{word-spacing:0.938667pt;}
.wsf1{word-spacing:0.960000pt;}
.ws14{word-spacing:0.962667pt;}
.ws98{word-spacing:0.997333pt;}
.ws1c{word-spacing:1.008000pt;}
.wsee{word-spacing:1.013333pt;}
.ws82{word-spacing:1.056000pt;}
.ws13{word-spacing:1.064000pt;}
.wsc7{word-spacing:1.066667pt;}
.ws6f{word-spacing:1.114667pt;}
.wsca{word-spacing:1.120000pt;}
.ws19{word-spacing:1.165333pt;}
.ws65{word-spacing:1.173333pt;}
.ws117{word-spacing:1.200000pt;}
.ws12{word-spacing:1.216000pt;}
.wsef{word-spacing:1.226667pt;}
.ws95{word-spacing:1.232000pt;}
.wsd{word-spacing:1.266667pt;}
.wsc5{word-spacing:1.280000pt;}
.ws6c{word-spacing:1.290667pt;}
.ws86{word-spacing:1.333333pt;}
.ws64{word-spacing:1.349333pt;}
.ws63{word-spacing:1.408000pt;}
.ws7e{word-spacing:1.466667pt;}
.wsd2{word-spacing:1.525333pt;}
.ws104{word-spacing:1.973333pt;}
.wsb6{word-spacing:3.106667pt;}
.ws106{word-spacing:4.346667pt;}
.wsf3{word-spacing:4.746667pt;}
.ws10b{word-spacing:4.800000pt;}
.wsf{word-spacing:6.232000pt;}
.wsac{word-spacing:7.450667pt;}
.ws10c{word-spacing:9.216000pt;}
.ws116{word-spacing:11.136000pt;}
.ws16{word-spacing:11.298667pt;}
.ws111{word-spacing:23.184000pt;}
.ws79{word-spacing:24.053333pt;}
.wsa7{word-spacing:25.386667pt;}
.ws90{word-spacing:25.797333pt;}
.wsaa{word-spacing:29.306667pt;}
.ws71{word-spacing:31.872000pt;}
.ws8e{word-spacing:31.914667pt;}
.ws6{word-spacing:32.016000pt;}
.ws119{word-spacing:127.872000pt;}
.ws10f{word-spacing:133.440000pt;}
.ws114{word-spacing:151.728000pt;}
.ws129{word-spacing:152.448000pt;}
.ws11f{word-spacing:184.752000pt;}
.ws92{word-spacing:188.906667pt;}
.ws120{word-spacing:206.400000pt;}
.ws11c{word-spacing:219.456000pt;}
.ws10e{word-spacing:223.392000pt;}
.ws118{word-spacing:231.072000pt;}
.ws115{word-spacing:231.168000pt;}
.ws122{word-spacing:232.896000pt;}
.ws125{word-spacing:243.120000pt;}
.ws127{word-spacing:246.480000pt;}
.ws124{word-spacing:246.528000pt;}
.ws11d{word-spacing:290.208000pt;}
.ws112{word-spacing:300.144000pt;}
.ws10d{word-spacing:316.608000pt;}
.ws11b{word-spacing:370.272000pt;}
.ws113{word-spacing:463.152000pt;}
.ws11e{word-spacing:560.688000pt;}
.ws126{word-spacing:581.040000pt;}
.ws72{word-spacing:721.237333pt;}
.ws121{word-spacing:953.424000pt;}
.ws11a{word-spacing:1039.200000pt;}
.ws7a{word-spacing:1383.413333pt;}
.ws128{word-spacing:1397.520000pt;}
.ws123{word-spacing:2216.640000pt;}
._32{margin-left:-10.560000pt;}
._2b{margin-left:-9.328000pt;}
._9{margin-left:-7.978667pt;}
._3{margin-left:-7.042667pt;}
._0{margin-left:-5.546667pt;}
._2d{margin-left:-4.480000pt;}
._7{margin-left:-3.413333pt;}
._5{margin-left:-2.368000pt;}
._1{margin-left:-1.450667pt;}
._2{width:1.024000pt;}
._29{width:2.426667pt;}
._1e{width:3.872000pt;}
._4{width:5.709333pt;}
._c9{width:9.317333pt;}
._6{width:11.552000pt;}
._2c{width:13.082667pt;}
._2a{width:14.981333pt;}
._77{width:21.333333pt;}
._49{width:23.450667pt;}
._84{width:25.728000pt;}
._24{width:28.896000pt;}
._6e{width:30.336000pt;}
._21{width:31.957333pt;}
._23{width:33.077333pt;}
._22{width:34.085333pt;}
._c{width:35.885333pt;}
._20{width:38.565333pt;}
._28{width:40.122667pt;}
._d6{width:41.482667pt;}
._8{width:42.666667pt;}
._39{width:44.320000pt;}
._c4{width:46.330667pt;}
._2e{width:47.973333pt;}
._27{width:49.616000pt;}
._bd{width:51.840000pt;}
._30{width:54.416000pt;}
._9f{width:56.016000pt;}
._26{width:57.978667pt;}
._2f{width:59.733333pt;}
._8c{width:60.672000pt;}
._38{width:63.088000pt;}
._64{width:66.880000pt;}
._df{width:68.682667pt;}
._a5{width:70.752000pt;}
._b2{width:73.776000pt;}
._4b{width:75.562667pt;}
._6d{width:78.197333pt;}
._c0{width:82.138667pt;}
._7c{width:87.792000pt;}
._31{width:88.922667pt;}
._60{width:89.829333pt;}
._bc{width:91.680000pt;}
._3f{width:93.418667pt;}
._73{width:95.808000pt;}
._5a{width:97.920000pt;}
._71{width:99.936000pt;}
._4f{width:100.944000pt;}
._ad{width:103.402667pt;}
._40{width:105.077333pt;}
._8a{width:110.170667pt;}
._be{width:111.525333pt;}
._8e{width:114.192000pt;}
._c5{width:115.541333pt;}
._bf{width:117.664000pt;}
._51{width:119.056000pt;}
._41{width:121.296000pt;}
._b9{width:125.029333pt;}
._35{width:126.448000pt;}
._9e{width:129.616000pt;}
._5c{width:132.202667pt;}
._48{width:134.266667pt;}
._7f{width:135.936000pt;}
._59{width:137.136000pt;}
._ac{width:139.450667pt;}
._54{width:146.266667pt;}
._53{width:147.600000pt;}
._d9{width:148.773333pt;}
._4e{width:149.914667pt;}
._89{width:151.392000pt;}
._87{width:152.544000pt;}
._6a{width:153.744000pt;}
._63{width:155.712000pt;}
._9c{width:160.048000pt;}
._92{width:161.568000pt;}
._69{width:163.632000pt;}
._67{width:165.792000pt;}
._45{width:166.944000pt;}
._62{width:168.490667pt;}
._a4{width:169.920000pt;}
._5b{width:172.752000pt;}
._d3{width:176.122667pt;}
._5d{width:178.624000pt;}
._72{width:179.616000pt;}
._88{width:180.672000pt;}
._bb{width:181.994667pt;}
._56{width:183.061333pt;}
._66{width:185.616000pt;}
._52{width:187.248000pt;}
._90{width:188.976000pt;}
._3a{width:191.616000pt;}
._96{width:193.968000pt;}
._6b{width:196.656000pt;}
._85{width:197.808000pt;}
._1a{width:198.954667pt;}
._c7{width:200.928000pt;}
._97{width:201.909333pt;}
._65{width:203.890667pt;}
._c8{width:205.392000pt;}
._8b{width:208.010667pt;}
._74{width:209.040000pt;}
._b4{width:209.962667pt;}
._cd{width:211.061333pt;}
._7d{width:212.050667pt;}
._ce{width:213.157333pt;}
._a9{width:214.234667pt;}
._4a{width:215.248000pt;}
._7b{width:221.050667pt;}
._81{width:223.536000pt;}
._47{width:224.602667pt;}
._cb{width:225.504000pt;}
._95{width:228.016000pt;}
._c6{width:229.850667pt;}
._9d{width:231.456000pt;}
._80{width:233.856000pt;}
._4c{width:234.864000pt;}
._33{width:236.496000pt;}
._5e{width:242.674667pt;}
._d8{width:244.048000pt;}
._e2{width:245.888000pt;}
._b8{width:247.546667pt;}
._aa{width:248.842667pt;}
._75{width:252.720000pt;}
._e0{width:254.277333pt;}
._b1{width:255.760000pt;}
._99{width:256.752000pt;}
._a1{width:262.608000pt;}
._8f{width:268.896000pt;}
._a6{width:272.458667pt;}
._44{width:274.768000pt;}
._6f{width:282.720000pt;}
._b0{width:289.776000pt;}
._46{width:291.936000pt;}
._a2{width:296.560000pt;}
._34{width:298.272000pt;}
._7a{width:299.674667pt;}
._3d{width:302.496000pt;}
._3e{width:305.290667pt;}
._8d{width:307.018667pt;}
._a0{width:307.920000pt;}
._b3{width:309.685333pt;}
._a3{width:310.800000pt;}
._a7{width:311.917333pt;}
._dc{width:319.754667pt;}
._c2{width:331.797333pt;}
._da{width:334.608000pt;}
._37{width:340.288000pt;}
._e1{width:341.322667pt;}
._93{width:347.194667pt;}
._ca{width:350.266667pt;}
._c1{width:356.928000pt;}
._3c{width:359.088000pt;}
._57{width:362.674667pt;}
._b5{width:371.314667pt;}
._ba{width:373.600000pt;}
._3b{width:382.058667pt;}
._6c{width:384.592000pt;}
._86{width:386.848000pt;}
._55{width:389.712000pt;}
._36{width:392.714667pt;}
._98{width:398.448000pt;}
._91{width:400.896000pt;}
._a{width:404.992000pt;}
._25{width:406.272000pt;}
._58{width:417.034667pt;}
._4d{width:421.642667pt;}
._50{width:436.192000pt;}
._11{width:442.965333pt;}
._42{width:455.568000pt;}
._5f{width:460.306667pt;}
._82{width:466.416000pt;}
._94{width:467.712000pt;}
._b7{width:498.202667pt;}
._de{width:503.056000pt;}
._43{width:509.488000pt;}
._db{width:543.120000pt;}
._10{width:546.154667pt;}
._9a{width:572.352000pt;}
._cc{width:575.088000pt;}
._cf{width:581.232000pt;}
._af{width:587.424000pt;}
._dd{width:591.562667pt;}
._61{width:593.632000pt;}
._1b{width:597.696000pt;}
._7e{width:599.088000pt;}
._78{width:602.496000pt;}
._f{width:606.762667pt;}
._c3{width:608.784000pt;}
._d4{width:609.952000pt;}
._83{width:612.384000pt;}
._76{width:616.917333pt;}
._79{width:634.154667pt;}
._ae{width:646.224000pt;}
._70{width:655.824000pt;}
._a8{width:672.480000pt;}
._ab{width:688.138667pt;}
._1d{width:723.733333pt;}
._1f{width:731.946667pt;}
._b6{width:749.381333pt;}
._1c{width:822.666667pt;}
._d7{width:857.232000pt;}
._68{width:871.408000pt;}
._b{width:875.093333pt;}
._15{width:907.840000pt;}
._14{width:934.101333pt;}
._13{width:949.728000pt;}
._9b{width:965.434667pt;}
._d5{width:1016.704000pt;}
._d0{width:1091.680000pt;}
._19{width:1129.890667pt;}
._17{width:1145.781333pt;}
._e{width:1148.661333pt;}
._12{width:1162.634667pt;}
._18{width:1218.794667pt;}
._16{width:1227.733333pt;}
._d{width:1248.288000pt;}
._d2{width:1620.773333pt;}
._d1{width:1632.773333pt;}
.fs8{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:59.733333pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:2.362667pt;}
.y53{bottom:3.029333pt;}
.y4e{bottom:3.696000pt;}
.y4b{bottom:44.682667pt;}
.y7b{bottom:46.573333pt;}
.y184{bottom:46.920000pt;}
.y20b{bottom:47.106667pt;}
.y8f{bottom:47.248000pt;}
.y23e{bottom:47.386667pt;}
.ya1{bottom:47.474667pt;}
.yec{bottom:47.664000pt;}
.y15e{bottom:47.732000pt;}
.y133{bottom:47.746667pt;}
.y20{bottom:47.784000pt;}
.yc2{bottom:47.973333pt;}
.y110{bottom:48.306667pt;}
.y29b{bottom:51.213333pt;}
.y1af{bottom:56.120000pt;}
.y20a{bottom:59.106667pt;}
.y23d{bottom:59.120000pt;}
.y8e{bottom:59.920000pt;}
.y4a{bottom:60.009333pt;}
.ya0{bottom:60.146667pt;}
.y1f{bottom:60.456000pt;}
.y183{bottom:60.920000pt;}
.y29a{bottom:62.946667pt;}
.yeb{bottom:62.990667pt;}
.y15d{bottom:63.058667pt;}
.y132{bottom:63.073333pt;}
.yc1{bottom:63.300000pt;}
.y10f{bottom:63.633333pt;}
.y7a{bottom:66.800000pt;}
.y1ae{bottom:70.120000pt;}
.y23c{bottom:70.853333pt;}
.y209{bottom:71.106667pt;}
.y1e{bottom:73.128000pt;}
.y26d{bottom:74.573333pt;}
.y299{bottom:74.680000pt;}
.y182{bottom:74.920000pt;}
.y49{bottom:75.336000pt;}
.yea{bottom:78.317333pt;}
.y15c{bottom:78.385333pt;}
.y131{bottom:78.400000pt;}
.yc0{bottom:78.626667pt;}
.y10e{bottom:78.960000pt;}
.y23b{bottom:82.586667pt;}
.y208{bottom:83.106667pt;}
.y1ad{bottom:84.120000pt;}
.y79{bottom:84.800000pt;}
.y1d{bottom:85.800000pt;}
.y298{bottom:86.413333pt;}
.y26c{bottom:87.508000pt;}
.y1c3{bottom:88.120000pt;}
.y181{bottom:88.920000pt;}
.y48{bottom:90.662667pt;}
.y15b{bottom:93.712000pt;}
.y130{bottom:93.726667pt;}
.ybf{bottom:93.953333pt;}
.y10d{bottom:94.286667pt;}
.y23a{bottom:94.320000pt;}
.y207{bottom:95.106667pt;}
.y1ac{bottom:98.120000pt;}
.y297{bottom:98.146667pt;}
.y26b{bottom:100.444000pt;}
.ye9{bottom:101.314667pt;}
.y1c2{bottom:102.120000pt;}
.y180{bottom:102.920000pt;}
.y9a{bottom:103.626667pt;}
.y78{bottom:104.466667pt;}
.y47{bottom:105.989333pt;}
.y15a{bottom:109.038667pt;}
.y12f{bottom:109.053333pt;}
.ybe{bottom:109.280000pt;}
.y10c{bottom:109.613333pt;}
.y1ab{bottom:112.120000pt;}
.y239{bottom:114.360000pt;}
.y206{bottom:115.466667pt;}
.y2c7{bottom:115.760000pt;}
.y1c1{bottom:116.120000pt;}
.y17f{bottom:116.920000pt;}
.y26a{bottom:117.160000pt;}
.y77{bottom:120.360000pt;}
.y46{bottom:121.316000pt;}
.y159{bottom:124.365333pt;}
.y12e{bottom:124.380000pt;}
.ybd{bottom:124.606667pt;}
.y10b{bottom:124.940000pt;}
.y1c{bottom:124.944667pt;}
.y1aa{bottom:126.120000pt;}
.y238{bottom:127.272000pt;}
.y205{bottom:128.532000pt;}
.y2c6{bottom:128.820000pt;}
.y1c0{bottom:130.120000pt;}
.y269{bottom:130.365333pt;}
.ya7{bottom:135.898667pt;}
.y76{bottom:136.253333pt;}
.y45{bottom:136.642667pt;}
.y1b{bottom:138.282667pt;}
.y17e{bottom:138.586667pt;}
.y90{bottom:138.853333pt;}
.ye8{bottom:139.653333pt;}
.y158{bottom:139.692000pt;}
.y12d{bottom:139.706667pt;}
.ybc{bottom:139.933333pt;}
.y1a9{bottom:140.120000pt;}
.y237{bottom:140.208000pt;}
.y10a{bottom:140.266667pt;}
.y204{bottom:141.600000pt;}
.y2c5{bottom:141.888000pt;}
.y268{bottom:143.565333pt;}
.y1bf{bottom:144.120000pt;}
.y296{bottom:147.506667pt;}
.y1a{bottom:151.620667pt;}
.y99{bottom:151.752000pt;}
.y44{bottom:151.969333pt;}
.y75{bottom:152.133333pt;}
.y236{bottom:153.144000pt;}
.y1a8{bottom:154.120000pt;}
.y203{bottom:154.668000pt;}
.y2c4{bottom:154.956000pt;}
.ye7{bottom:154.980000pt;}
.y157{bottom:155.018667pt;}
.y12c{bottom:155.033333pt;}
.ybb{bottom:155.260000pt;}
.y109{bottom:155.593333pt;}
.y267{bottom:156.765333pt;}
.ya4{bottom:157.906667pt;}
.y1be{bottom:158.120000pt;}
.y295{bottom:160.840000pt;}
.y19{bottom:164.958667pt;}
.y235{bottom:166.080000pt;}
.y43{bottom:167.296000pt;}
.y202{bottom:167.736000pt;}
.y74{bottom:168.026667pt;}
.y1a7{bottom:168.120000pt;}
.y2c3{bottom:169.920000pt;}
.y266{bottom:169.965333pt;}
.ye6{bottom:170.306667pt;}
.y156{bottom:170.345333pt;}
.y12b{bottom:170.360000pt;}
.yba{bottom:170.586667pt;}
.y108{bottom:170.920000pt;}
.y1bd{bottom:172.120000pt;}
.y17d{bottom:173.026667pt;}
.y294{bottom:174.172000pt;}
.y98{bottom:174.422667pt;}
.y18{bottom:178.296667pt;}
.y234{bottom:179.016000pt;}
.y201{bottom:180.804000pt;}
.y1a6{bottom:182.120000pt;}
.y42{bottom:182.622667pt;}
.y2c2{bottom:182.973333pt;}
.y73{bottom:183.920000pt;}
.ye5{bottom:185.633333pt;}
.y155{bottom:185.672000pt;}
.y12a{bottom:185.686667pt;}
.yb9{bottom:185.913333pt;}
.y1bc{bottom:186.120000pt;}
.y107{bottom:186.246667pt;}
.y265{bottom:186.933333pt;}
.y17c{bottom:187.026667pt;}
.y293{bottom:187.504000pt;}
.ya3{bottom:191.236000pt;}
.y233{bottom:191.952000pt;}
.y2c1{bottom:196.041333pt;}
.y1a5{bottom:196.120000pt;}
.y97{bottom:197.093333pt;}
.y200{bottom:197.640000pt;}
.y41{bottom:197.949333pt;}
.y72{bottom:199.813333pt;}
.y1bb{bottom:200.120000pt;}
.y264{bottom:200.128000pt;}
.y292{bottom:200.836000pt;}
.ye4{bottom:200.960000pt;}
.y154{bottom:200.998667pt;}
.y129{bottom:201.013333pt;}
.y17b{bottom:201.026667pt;}
.yb8{bottom:201.240000pt;}
.y106{bottom:201.573333pt;}
.y232{bottom:204.888000pt;}
.y17{bottom:204.960000pt;}
.y2c0{bottom:209.109333pt;}
.y1ff{bottom:210.712000pt;}
.y40{bottom:213.276000pt;}
.y263{bottom:213.328000pt;}
.y1ba{bottom:214.120000pt;}
.y71{bottom:215.693333pt;}
.ye3{bottom:216.286667pt;}
.y153{bottom:216.325333pt;}
.y128{bottom:216.340000pt;}
.yb7{bottom:216.566667pt;}
.y105{bottom:216.900000pt;}
.y1a4{bottom:217.786667pt;}
.y291{bottom:217.960000pt;}
.y16{bottom:218.268667pt;}
.y231{bottom:219.720000pt;}
.y96{bottom:219.764000pt;}
.y2bf{bottom:222.177333pt;}
.y17a{bottom:222.693333pt;}
.ya2{bottom:223.240000pt;}
.y262{bottom:226.528000pt;}
.y1fe{bottom:227.560000pt;}
.y1b9{bottom:228.120000pt;}
.y3f{bottom:228.602667pt;}
.y290{bottom:231.293333pt;}
.y70{bottom:231.586667pt;}
.ye2{bottom:231.613333pt;}
.y152{bottom:231.652000pt;}
.y127{bottom:231.666667pt;}
.yb6{bottom:231.893333pt;}
.y104{bottom:232.226667pt;}
.y230{bottom:232.642667pt;}
.ya6{bottom:234.617333pt;}
.y2be{bottom:235.245333pt;}
.y261{bottom:239.728000pt;}
.y1fd{bottom:240.630667pt;}
.y1b8{bottom:242.120000pt;}
.y95{bottom:242.434667pt;}
.y3e{bottom:243.929333pt;}
.y28f{bottom:244.625333pt;}
.y22f{bottom:245.578667pt;}
.ye1{bottom:246.940000pt;}
.y151{bottom:246.978667pt;}
.y126{bottom:246.993333pt;}
.yb5{bottom:247.220000pt;}
.y6f{bottom:247.480000pt;}
.y103{bottom:247.553333pt;}
.y2bd{bottom:248.313333pt;}
.y15{bottom:250.264667pt;}
.y1a3{bottom:256.120000pt;}
.y260{bottom:256.720000pt;}
.y179{bottom:257.120000pt;}
.y1fc{bottom:257.466667pt;}
.y28e{bottom:257.957333pt;}
.y22e{bottom:258.514667pt;}
.y3d{bottom:259.256000pt;}
.y2bc{bottom:261.381333pt;}
.ye0{bottom:262.266667pt;}
.y150{bottom:262.305333pt;}
.y125{bottom:262.320000pt;}
.yb4{bottom:262.546667pt;}
.y102{bottom:262.880000pt;}
.y6e{bottom:263.373333pt;}
.y94{bottom:265.105333pt;}
.y14{bottom:268.935333pt;}
.y25f{bottom:269.925333pt;}
.y1a2{bottom:270.120000pt;}
.y1fb{bottom:270.533333pt;}
.y178{bottom:271.120000pt;}
.y28d{bottom:271.289333pt;}
.ya5{bottom:272.613333pt;}
.y22d{bottom:273.346667pt;}
.y3c{bottom:274.582667pt;}
.y2bb{bottom:276.333333pt;}
.ydf{bottom:277.593333pt;}
.y14f{bottom:277.632000pt;}
.y124{bottom:277.646667pt;}
.yb3{bottom:277.873333pt;}
.y101{bottom:278.206667pt;}
.y6d{bottom:279.253333pt;}
.y13{bottom:282.273333pt;}
.y25e{bottom:283.125333pt;}
.y1fa{bottom:283.601333pt;}
.y1a1{bottom:284.120000pt;}
.y28c{bottom:284.621333pt;}
.y177{bottom:285.120000pt;}
.y22c{bottom:286.264000pt;}
.y93{bottom:287.776000pt;}
.y2ba{bottom:289.386667pt;}
.y3b{bottom:289.909333pt;}
.yde{bottom:292.920000pt;}
.y14e{bottom:292.958667pt;}
.y123{bottom:292.973333pt;}
.yb2{bottom:293.200000pt;}
.y100{bottom:293.533333pt;}
.y6c{bottom:295.146667pt;}
.y12{bottom:295.611333pt;}
.y25d{bottom:296.325333pt;}
.y1f9{bottom:296.669333pt;}
.y1a0{bottom:298.120000pt;}
.y176{bottom:299.120000pt;}
.y22b{bottom:299.200000pt;}
.y28b{bottom:301.733333pt;}
.y2b9{bottom:302.454667pt;}
.y3a{bottom:305.236000pt;}
.ydd{bottom:308.246667pt;}
.y9f{bottom:308.270667pt;}
.y14d{bottom:308.285333pt;}
.y122{bottom:308.300000pt;}
.yb1{bottom:308.526667pt;}
.yff{bottom:308.860000pt;}
.y11{bottom:308.949333pt;}
.y25c{bottom:309.525333pt;}
.y1f8{bottom:309.737333pt;}
.y92{bottom:310.446667pt;}
.y6b{bottom:311.040000pt;}
.y19f{bottom:312.120000pt;}
.y22a{bottom:312.136000pt;}
.y175{bottom:313.120000pt;}
.y28a{bottom:315.064000pt;}
.y2b8{bottom:315.522667pt;}
.y39{bottom:320.562667pt;}
.y10{bottom:322.287333pt;}
.y25b{bottom:322.725333pt;}
.y1f7{bottom:322.805333pt;}
.ydc{bottom:323.573333pt;}
.y9e{bottom:323.597333pt;}
.y14c{bottom:323.612000pt;}
.y121{bottom:323.626667pt;}
.yb0{bottom:323.853333pt;}
.yfe{bottom:324.186667pt;}
.y229{bottom:325.072000pt;}
.y19e{bottom:326.120000pt;}
.y6a{bottom:326.933333pt;}
.y174{bottom:327.120000pt;}
.y289{bottom:328.396000pt;}
.y2b7{bottom:328.590667pt;}
.y91{bottom:333.117333pt;}
.y1b7{bottom:333.786667pt;}
.yf{bottom:335.625333pt;}
.y38{bottom:335.889333pt;}
.y228{bottom:338.008000pt;}
.ydb{bottom:338.900000pt;}
.y9d{bottom:338.924000pt;}
.y14b{bottom:338.938667pt;}
.y120{bottom:338.953333pt;}
.yaf{bottom:339.180000pt;}
.yfd{bottom:339.513333pt;}
.y1f6{bottom:339.653333pt;}
.y25a{bottom:339.693333pt;}
.y19d{bottom:340.120000pt;}
.y173{bottom:341.120000pt;}
.y2b6{bottom:341.658667pt;}
.y69{bottom:342.813333pt;}
.y288{bottom:345.520000pt;}
.ye{bottom:348.963333pt;}
.y227{bottom:350.944000pt;}
.y37{bottom:351.216000pt;}
.y1f5{bottom:352.720000pt;}
.y259{bottom:352.888000pt;}
.y19c{bottom:354.120000pt;}
.yda{bottom:354.226667pt;}
.y9c{bottom:354.250667pt;}
.y14a{bottom:354.265333pt;}
.y11f{bottom:354.280000pt;}
.yae{bottom:354.506667pt;}
.y2b5{bottom:354.726667pt;}
.yfc{bottom:354.840000pt;}
.y172{bottom:355.120000pt;}
.y68{bottom:358.706667pt;}
.y287{bottom:358.857333pt;}
.y226{bottom:363.880000pt;}
.y1f4{bottom:365.788000pt;}
.y258{bottom:366.088000pt;}
.y2b4{bottom:367.794667pt;}
.y19b{bottom:368.120000pt;}
.y171{bottom:369.120000pt;}
.yd9{bottom:369.553333pt;}
.y149{bottom:369.592000pt;}
.y11e{bottom:369.606667pt;}
.yad{bottom:369.833333pt;}
.yfb{bottom:370.166667pt;}
.y1b6{bottom:372.120000pt;}
.y286{bottom:372.189333pt;}
.y2df{bottom:373.960000pt;}
.y36{bottom:374.213333pt;}
.yd{bottom:375.626667pt;}
.y67{bottom:376.706667pt;}
.y225{bottom:376.816000pt;}
.y9b{bottom:377.248000pt;}
.y1f3{bottom:378.856000pt;}
.y257{bottom:379.288000pt;}
.y2b3{bottom:380.862667pt;}
.y19a{bottom:382.120000pt;}
.y170{bottom:383.120000pt;}
.yd8{bottom:384.880000pt;}
.y148{bottom:384.918667pt;}
.y8d{bottom:384.933333pt;}
.yac{bottom:385.160000pt;}
.yfa{bottom:385.493333pt;}
.y285{bottom:385.521333pt;}
.y2de{bottom:385.960000pt;}
.y1b5{bottom:386.120000pt;}
.yc{bottom:388.940000pt;}
.y224{bottom:389.752000pt;}
.y1f2{bottom:391.924000pt;}
.y256{bottom:392.488000pt;}
.y2b2{bottom:395.826667pt;}
.y199{bottom:396.120000pt;}
.y16f{bottom:397.120000pt;}
.y2dd{bottom:397.960000pt;}
.y284{bottom:398.853333pt;}
.y66{bottom:399.373333pt;}
.y1b4{bottom:400.120000pt;}
.yd7{bottom:400.206667pt;}
.y147{bottom:400.245333pt;}
.y8c{bottom:400.260000pt;}
.yab{bottom:400.486667pt;}
.yf9{bottom:400.820000pt;}
.y223{bottom:404.560000pt;}
.y255{bottom:405.688000pt;}
.y1d9{bottom:406.453333pt;}
.y1f1{bottom:408.760000pt;}
.y2b1{bottom:408.886667pt;}
.y2dc{bottom:409.960000pt;}
.y198{bottom:410.120000pt;}
.y16e{bottom:411.120000pt;}
.y283{bottom:412.185333pt;}
.y1b3{bottom:414.120000pt;}
.yd6{bottom:415.533333pt;}
.y146{bottom:415.572000pt;}
.y8b{bottom:415.586667pt;}
.yaa{bottom:415.813333pt;}
.yf8{bottom:416.146667pt;}
.y222{bottom:417.480000pt;}
.y254{bottom:418.888000pt;}
.y1d8{bottom:420.453333pt;}
.yb{bottom:420.936000pt;}
.y1f0{bottom:421.829333pt;}
.y2b0{bottom:421.954667pt;}
.y16d{bottom:425.120000pt;}
.y282{bottom:425.517333pt;}
.y2db{bottom:425.746667pt;}
.y50{bottom:428.000000pt;}
.y1b2{bottom:428.120000pt;}
.y221{bottom:430.416000pt;}
.yd5{bottom:430.860000pt;}
.y65{bottom:430.884000pt;}
.y145{bottom:430.898667pt;}
.y8a{bottom:430.913333pt;}
.ya9{bottom:431.140000pt;}
.yf7{bottom:431.473333pt;}
.y197{bottom:431.786667pt;}
.y253{bottom:432.088000pt;}
.y1d7{bottom:434.453333pt;}
.y1ef{bottom:434.897333pt;}
.y2af{bottom:435.022667pt;}
.y2da{bottom:438.813333pt;}
.y281{bottom:438.849333pt;}
.y16c{bottom:439.120000pt;}
.ya{bottom:439.606667pt;}
.y4f{bottom:441.333333pt;}
.y1b1{bottom:442.120000pt;}
.y54{bottom:442.666667pt;}
.y220{bottom:443.352000pt;}
.y252{bottom:445.288000pt;}
.yd4{bottom:446.186667pt;}
.y64{bottom:446.210667pt;}
.y144{bottom:446.225333pt;}
.y89{bottom:446.240000pt;}
.ya8{bottom:446.466667pt;}
.yf6{bottom:446.800000pt;}
.y1ee{bottom:447.965333pt;}
.y1d6{bottom:448.453333pt;}
.y2ae{bottom:449.986667pt;}
.y2d9{bottom:451.881333pt;}
.y280{bottom:452.181333pt;}
.y9{bottom:452.944667pt;}
.y16b{bottom:453.120000pt;}
.y4d{bottom:456.000000pt;}
.y1b0{bottom:456.120000pt;}
.y21f{bottom:456.288000pt;}
.y52{bottom:457.333333pt;}
.yd3{bottom:461.513333pt;}
.y63{bottom:461.537333pt;}
.y143{bottom:461.552000pt;}
.y88{bottom:461.566667pt;}
.y251{bottom:462.280000pt;}
.y1d5{bottom:462.453333pt;}
.y1ed{bottom:464.813333pt;}
.y2d8{bottom:464.949333pt;}
.y8{bottom:466.282667pt;}
.y2ad{bottom:466.826667pt;}
.y16a{bottom:467.120000pt;}
.y27f{bottom:469.293333pt;}
.y196{bottom:470.120000pt;}
.y21e{bottom:471.120000pt;}
.y250{bottom:475.485333pt;}
.y1d4{bottom:476.453333pt;}
.yd2{bottom:476.840000pt;}
.y62{bottom:476.864000pt;}
.y142{bottom:476.878667pt;}
.y87{bottom:476.893333pt;}
.y1ec{bottom:477.880000pt;}
.y2d7{bottom:478.017333pt;}
.y7{bottom:479.620667pt;}
.y2ac{bottom:479.888000pt;}
.y169{bottom:481.120000pt;}
.y27e{bottom:482.629333pt;}
.yc4{bottom:483.194667pt;}
.y4c{bottom:483.986667pt;}
.y21d{bottom:484.045333pt;}
.y195{bottom:484.120000pt;}
.y24f{bottom:488.685333pt;}
.y1d3{bottom:490.453333pt;}
.y1eb{bottom:490.948000pt;}
.yd1{bottom:492.166667pt;}
.y61{bottom:492.190667pt;}
.y141{bottom:492.205333pt;}
.y86{bottom:492.220000pt;}
.y2ab{bottom:492.956000pt;}
.y6{bottom:492.958667pt;}
.y2d6{bottom:494.853333pt;}
.y168{bottom:495.120000pt;}
.yc3{bottom:495.866667pt;}
.y27d{bottom:495.961333pt;}
.y21c{bottom:496.981333pt;}
.y194{bottom:498.120000pt;}
.y24e{bottom:501.885333pt;}
.y112{bottom:503.741333pt;}
.y1ea{bottom:504.016000pt;}
.y1d2{bottom:504.453333pt;}
.y5{bottom:506.296667pt;}
.yd0{bottom:507.493333pt;}
.y60{bottom:507.517333pt;}
.y140{bottom:507.532000pt;}
.y85{bottom:507.546667pt;}
.y2d5{bottom:507.916000pt;}
.y2aa{bottom:507.920000pt;}
.y167{bottom:509.120000pt;}
.y27c{bottom:509.293333pt;}
.y21b{bottom:511.813333pt;}
.y193{bottom:512.120000pt;}
.y24d{bottom:515.085333pt;}
.y111{bottom:516.413333pt;}
.y1e9{bottom:517.084000pt;}
.y1d1{bottom:518.453333pt;}
.y2a9{bottom:520.982667pt;}
.y2d4{bottom:520.984000pt;}
.y27b{bottom:522.625333pt;}
.y5f{bottom:522.844000pt;}
.y13f{bottom:522.858667pt;}
.y84{bottom:522.873333pt;}
.y166{bottom:523.120000pt;}
.y21a{bottom:524.738667pt;}
.y192{bottom:526.120000pt;}
.y24c{bottom:528.285333pt;}
.y1d0{bottom:532.453333pt;}
.y35{bottom:532.786667pt;}
.y4{bottom:532.960000pt;}
.y1e8{bottom:533.920000pt;}
.y2d3{bottom:534.052000pt;}
.yc5{bottom:534.413333pt;}
.y2a8{bottom:535.946667pt;}
.y27a{bottom:535.957333pt;}
.y165{bottom:537.120000pt;}
.y219{bottom:537.674667pt;}
.y5e{bottom:538.170667pt;}
.y13e{bottom:538.185333pt;}
.y83{bottom:538.200000pt;}
.y191{bottom:540.120000pt;}
.y24b{bottom:545.253333pt;}
.y1cf{bottom:546.453333pt;}
.y1e7{bottom:546.984000pt;}
.y2d2{bottom:547.120000pt;}
.y2a7{bottom:549.004000pt;}
.y279{bottom:549.289333pt;}
.y218{bottom:550.610667pt;}
.y164{bottom:551.120000pt;}
.y34{bottom:551.428667pt;}
.yee{bottom:552.514667pt;}
.ycf{bottom:552.762667pt;}
.y5d{bottom:553.497333pt;}
.y13d{bottom:553.512000pt;}
.y82{bottom:553.526667pt;}
.y190{bottom:554.120000pt;}
.y11d{bottom:554.398667pt;}
.y29{bottom:557.874667pt;}
.y24a{bottom:558.458667pt;}
.y1e6{bottom:560.052000pt;}
.y2d1{bottom:560.188000pt;}
.y1ce{bottom:560.453333pt;}
.y2a6{bottom:562.072000pt;}
.y217{bottom:563.546667pt;}
.y33{bottom:564.766667pt;}
.y11c{bottom:565.066667pt;}
.y163{bottom:565.120000pt;}
.yed{bottom:565.186667pt;}
.y278{bottom:566.413333pt;}
.y18f{bottom:568.120000pt;}
.y5c{bottom:568.824000pt;}
.y13c{bottom:568.838667pt;}
.y81{bottom:568.853333pt;}
.y28{bottom:570.546667pt;}
.yce{bottom:571.429333pt;}
.y249{bottom:571.658667pt;}
.y1e5{bottom:573.120000pt;}
.y2d0{bottom:573.256000pt;}
.y1cd{bottom:574.453333pt;}
.y11b{bottom:574.692000pt;}
.y2a5{bottom:575.140000pt;}
.y216{bottom:576.482667pt;}
.y32{bottom:578.104667pt;}
.y162{bottom:579.120000pt;}
.y277{bottom:579.741333pt;}
.y18e{bottom:582.120000pt;}
.y5b{bottom:584.150667pt;}
.y13b{bottom:584.165333pt;}
.y80{bottom:584.180000pt;}
.y248{bottom:584.858667pt;}
.y1e4{bottom:586.188000pt;}
.y2cf{bottom:586.324000pt;}
.y2a4{bottom:588.208000pt;}
.y1cc{bottom:588.453333pt;}
.y215{bottom:589.418667pt;}
.ycd{bottom:591.430667pt;}
.y31{bottom:591.442667pt;}
.y161{bottom:593.120000pt;}
.y11a{bottom:593.358667pt;}
.y18d{bottom:596.120000pt;}
.y276{bottom:596.853333pt;}
.y1e3{bottom:599.256000pt;}
.y5a{bottom:599.477333pt;}
.y13a{bottom:599.492000pt;}
.y7f{bottom:599.506667pt;}
.y247{bottom:601.826667pt;}
.y1cb{bottom:602.453333pt;}
.yef{bottom:603.133333pt;}
.y2a3{bottom:603.160000pt;}
.y214{bottom:604.226667pt;}
.y30{bottom:604.780667pt;}
.ycc{bottom:607.428000pt;}
.y18c{bottom:610.120000pt;}
.y275{bottom:610.185333pt;}
.y119{bottom:612.025333pt;}
.y1e2{bottom:612.324000pt;}
.y160{bottom:614.804000pt;}
.y139{bottom:614.818667pt;}
.y7e{bottom:614.833333pt;}
.y246{bottom:615.021333pt;}
.y27{bottom:616.082667pt;}
.y2a2{bottom:616.220000pt;}
.y2ce{bottom:616.224000pt;}
.y1ca{bottom:616.453333pt;}
.y213{bottom:617.149333pt;}
.y2f{bottom:618.118667pt;}
.yf5{bottom:619.000000pt;}
.y59{bottom:622.474667pt;}
.y274{bottom:623.517333pt;}
.y18b{bottom:624.120000pt;}
.ycb{bottom:626.094667pt;}
.y245{bottom:628.221333pt;}
.y26{bottom:628.754667pt;}
.y1e1{bottom:629.160000pt;}
.y2a1{bottom:629.288000pt;}
.y2cd{bottom:629.292000pt;}
.y212{bottom:630.085333pt;}
.y138{bottom:630.145333pt;}
.y7d{bottom:630.160000pt;}
.y1c9{bottom:630.453333pt;}
.y118{bottom:630.692000pt;}
.y2e{bottom:631.456667pt;}
.y273{bottom:636.849333pt;}
.y15f{bottom:637.801333pt;}
.y18a{bottom:638.120000pt;}
.yf4{bottom:639.001333pt;}
.y244{bottom:641.421333pt;}
.y25{bottom:641.426667pt;}
.y1e0{bottom:642.226667pt;}
.y2a0{bottom:642.356000pt;}
.y2cc{bottom:642.360000pt;}
.y211{bottom:643.021333pt;}
.y1c8{bottom:644.453333pt;}
.yca{bottom:644.761333pt;}
.y137{bottom:645.472000pt;}
.y7c{bottom:645.486667pt;}
.y117{bottom:649.358667pt;}
.y272{bottom:650.181333pt;}
.y189{bottom:652.120000pt;}
.y243{bottom:654.621333pt;}
.y1df{bottom:655.294667pt;}
.y2cb{bottom:655.428000pt;}
.y29f{bottom:657.320000pt;}
.y24{bottom:657.426667pt;}
.y210{bottom:657.853333pt;}
.y2d{bottom:658.120000pt;}
.y1c7{bottom:658.453333pt;}
.yf3{bottom:659.002667pt;}
.y136{bottom:660.798667pt;}
.y58{bottom:660.813333pt;}
.yc9{bottom:663.428000pt;}
.y188{bottom:666.120000pt;}
.y271{bottom:667.293333pt;}
.y242{bottom:667.821333pt;}
.y1de{bottom:668.362667pt;}
.y2ca{bottom:668.496000pt;}
.y116{bottom:669.360000pt;}
.y29e{bottom:670.380000pt;}
.y20f{bottom:670.776000pt;}
.y1c6{bottom:672.453333pt;}
.yf2{bottom:675.000000pt;}
.y135{bottom:676.125333pt;}
.y57{bottom:676.140000pt;}
.y187{bottom:680.120000pt;}
.y270{bottom:680.624000pt;}
.y241{bottom:681.021333pt;}
.y1dd{bottom:681.430667pt;}
.y2c9{bottom:681.564000pt;}
.y29d{bottom:683.448000pt;}
.y20e{bottom:683.712000pt;}
.y2{bottom:684.093333pt;}
.yc8{bottom:684.764000pt;}
.y1c5{bottom:686.453333pt;}
.y115{bottom:688.026667pt;}
.y2c{bottom:690.111333pt;}
.y134{bottom:691.452000pt;}
.y56{bottom:691.466667pt;}
.y26f{bottom:693.956000pt;}
.y186{bottom:694.120000pt;}
.y240{bottom:694.221333pt;}
.y1dc{bottom:694.498667pt;}
.y2c8{bottom:694.632000pt;}
.yf1{bottom:695.001333pt;}
.y29c{bottom:696.516000pt;}
.y20d{bottom:696.648000pt;}
.y23{bottom:697.426667pt;}
.y1c4{bottom:700.453333pt;}
.yc7{bottom:703.430667pt;}
.y114{bottom:706.693333pt;}
.y55{bottom:706.793333pt;}
.y185{bottom:708.120000pt;}
.y2b{bottom:708.782000pt;}
.y26e{bottom:711.080000pt;}
.y23f{bottom:711.213333pt;}
.y1db{bottom:711.346667pt;}
.y20c{bottom:711.480000pt;}
.yf0{bottom:715.002667pt;}
.y1{bottom:716.093333pt;}
.y22{bottom:718.760000pt;}
.yc6{bottom:722.097333pt;}
.y2a{bottom:722.120000pt;}
.y113{bottom:725.360000pt;}
.y1da{bottom:728.186667pt;}
.y21{bottom:764.093333pt;}
.y3{bottom:820.000000pt;}
.hd{height:12.000000pt;}
.he{height:13.333333pt;}
.hb{height:14.666667pt;}
.h11{height:39.834667pt;}
.h12{height:41.104000pt;}
.h2{height:41.854167pt;}
.hc{height:41.875000pt;}
.h7{height:45.525333pt;}
.h6{height:51.216000pt;}
.h14{height:52.032000pt;}
.h3{height:54.061333pt;}
.h5{height:54.922667pt;}
.h4{height:55.002667pt;}
.hf{height:56.906667pt;}
.h10{height:57.813333pt;}
.ha{height:62.597333pt;}
.h13{height:63.594667pt;}
.h9{height:68.288000pt;}
.h1{height:91.050667pt;}
.h8{height:91.895467pt;}
.h0{height:793.333333pt;}
.w3{width:173.333333pt;}
.w2{width:197.333333pt;}
.w1{width:200.000000pt;}
.w0{width:565.333333pt;}
.x0{left:0.000000pt;}
.x12{left:1.333333pt;}
.x3{left:4.000000pt;}
.x3a{left:26.053333pt;}
.x2b{left:28.280000pt;}
.x31{left:29.800000pt;}
.xe{left:31.904667pt;}
.x10{left:36.778800pt;}
.x3b{left:46.249333pt;}
.x2e{left:48.509733pt;}
.x39{left:49.985800pt;}
.x4{left:66.400000pt;}
.x9{left:67.480000pt;}
.xc{left:72.000000pt;}
.xf{left:73.333333pt;}
.x5{left:86.392000pt;}
.xa{left:87.483867pt;}
.x15{left:92.252000pt;}
.x14{left:110.760000pt;}
.x3e{left:120.532000pt;}
.x37{left:123.182200pt;}
.x34{left:124.268867pt;}
.x3f{left:125.653333pt;}
.x19{left:140.101333pt;}
.x28{left:144.920000pt;}
.xd{left:149.493467pt;}
.x1{left:165.440000pt;}
.x29{left:167.706667pt;}
.x2{left:188.352000pt;}
.x1c{left:193.752000pt;}
.x21{left:195.394667pt;}
.x22{left:207.154667pt;}
.x23{left:208.937333pt;}
.x38{left:210.147000pt;}
.x20{left:211.168000pt;}
.x24{left:212.913333pt;}
.x1d{left:214.500000pt;}
.x1f{left:215.554667pt;}
.x1e{left:216.749333pt;}
.x1b{left:219.801333pt;}
.x27{left:221.386667pt;}
.x26{left:222.740000pt;}
.x25{left:228.545333pt;}
.x1a{left:238.533333pt;}
.x2a{left:244.087867pt;}
.x17{left:259.157333pt;}
.xb{left:265.546667pt;}
.x3d{left:279.274600pt;}
.x2c{left:281.484800pt;}
.x36{left:283.007933pt;}
.x40{left:284.395000pt;}
.x2f{left:286.608333pt;}
.x35{left:288.097733pt;}
.x11{left:300.000000pt;}
.x13{left:301.333333pt;}
.x18{left:313.580000pt;}
.x6{left:335.453333pt;}
.x8{left:358.285333pt;}
.x7{left:362.773333pt;}
.x3c{left:385.093333pt;}
.x2d{left:387.333333pt;}
.x32{left:388.829800pt;}
.x30{left:392.433000pt;}
.x33{left:393.946667pt;}
.x16{left:416.013333pt;}
}




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