
    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_29acfe26749c2bd802900f4d.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_e8d892db28bc33cf73cc72ef.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_357995e955055b853852d062.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_29ac1b67b3acbea46e982145.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.899902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-1.032000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.800000px;}
.v1{vertical-align:21.690000px;}
.ls70{letter-spacing:-2.646000px;}
.ls80{letter-spacing:-2.442000px;}
.ls7f{letter-spacing:-2.244000px;}
.lsbd{letter-spacing:-2.115000px;}
.lsbe{letter-spacing:-2.100000px;}
.ls55{letter-spacing:-1.848000px;}
.ls64{letter-spacing:-1.782000px;}
.ls63{letter-spacing:-1.716000px;}
.ls56{letter-spacing:-1.650000px;}
.ls45{letter-spacing:-1.584000px;}
.ls8e{letter-spacing:-1.518000px;}
.ls3f{letter-spacing:-1.452000px;}
.lsaf{letter-spacing:-1.440000px;}
.lsbb{letter-spacing:-1.395000px;}
.ls58{letter-spacing:-1.386000px;}
.lsbc{letter-spacing:-1.380000px;}
.ls4d{letter-spacing:-1.350000px;}
.ls46{letter-spacing:-1.320000px;}
.ls6f{letter-spacing:-1.296000px;}
.ls7c{letter-spacing:-1.260000px;}
.ls53{letter-spacing:-1.254000px;}
.ls90{letter-spacing:-1.242000px;}
.ls5b{letter-spacing:-1.188000px;}
.lsb1{letter-spacing:-1.140000px;}
.ls51{letter-spacing:-1.122000px;}
.lsb0{letter-spacing:-1.080000px;}
.ls48{letter-spacing:-1.056000px;}
.ls60{letter-spacing:-1.026000px;}
.lsb6{letter-spacing:-1.020000px;}
.ls29{letter-spacing:-0.990000px;}
.ls5e{letter-spacing:-0.972000px;}
.ls7{letter-spacing:-0.969000px;}
.ls9f{letter-spacing:-0.960000px;}
.ls9e{letter-spacing:-0.945000px;}
.ls6d{letter-spacing:-0.924000px;}
.ls72{letter-spacing:-0.918000px;}
.ls3c{letter-spacing:-0.900000px;}
.ls61{letter-spacing:-0.864000px;}
.ls28{letter-spacing:-0.858000px;}
.lsb9{letter-spacing:-0.855000px;}
.lsba{letter-spacing:-0.840000px;}
.ls3e{letter-spacing:-0.792000px;}
.lsc0{letter-spacing:-0.780000px;}
.lsbf{letter-spacing:-0.765000px;}
.lse{letter-spacing:-0.741000px;}
.ls52{letter-spacing:-0.739200px;}
.ls54{letter-spacing:-0.726000px;}
.ls3a{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.684000px;}
.ls24{letter-spacing:-0.660000px;}
.ls7e{letter-spacing:-0.648000px;}
.lsc4{letter-spacing:-0.630000px;}
.ls7b{letter-spacing:-0.600000px;}
.ls39{letter-spacing:-0.594000px;}
.lsc1{letter-spacing:-0.585000px;}
.ls9{letter-spacing:-0.570000px;}
.ls5c{letter-spacing:-0.540000px;}
.ls27{letter-spacing:-0.528000px;}
.ls9c{letter-spacing:-0.495000px;}
.ls92{letter-spacing:-0.486000px;}
.ls7d{letter-spacing:-0.480000px;}
.ls21{letter-spacing:-0.462000px;}
.lsb2{letter-spacing:-0.450000px;}
.ls5d{letter-spacing:-0.432000px;}
.ls67{letter-spacing:-0.420000px;}
.lsf{letter-spacing:-0.399000px;}
.ls22{letter-spacing:-0.396000px;}
.ls73{letter-spacing:-0.378000px;}
.ls8f{letter-spacing:-0.369600px;}
.ls9d{letter-spacing:-0.360000px;}
.ls47{letter-spacing:-0.330000px;}
.ls6c{letter-spacing:-0.323400px;}
.lsb4{letter-spacing:-0.315000px;}
.ls65{letter-spacing:-0.300000px;}
.lsd{letter-spacing:-0.285000px;}
.ls23{letter-spacing:-0.277200px;}
.ls5f{letter-spacing:-0.270000px;}
.ls3d{letter-spacing:-0.264000px;}
.lsb3{letter-spacing:-0.240000px;}
.ls5a{letter-spacing:-0.231000px;}
.lsc3{letter-spacing:-0.225000px;}
.ls71{letter-spacing:-0.216000px;}
.ls2b{letter-spacing:-0.198000px;}
.lsa0{letter-spacing:-0.180000px;}
.ls8d{letter-spacing:-0.162000px;}
.lsb5{letter-spacing:-0.135000px;}
.ls25{letter-spacing:-0.132000px;}
.ls66{letter-spacing:-0.120000px;}
.lsb{letter-spacing:-0.114000px;}
.ls2f{letter-spacing:-0.108000px;}
.ls2d{letter-spacing:-0.081000px;}
.ls2a{letter-spacing:-0.066000px;}
.ls3b{letter-spacing:-0.060000px;}
.lsc{letter-spacing:-0.057000px;}
.ls2e{letter-spacing:-0.054000px;}
.ls10{letter-spacing:-0.048000px;}
.ls4b{letter-spacing:-0.046200px;}
.ls6{letter-spacing:0.000000px;}
.ls9b{letter-spacing:0.045000px;}
.ls1{letter-spacing:0.057000px;}
.ls94{letter-spacing:0.060000px;}
.ls1a{letter-spacing:0.066000px;}
.ls8b{letter-spacing:0.108000px;}
.ls34{letter-spacing:0.120000px;}
.ls26{letter-spacing:0.132000px;}
.ls95{letter-spacing:0.135000px;}
.ls8c{letter-spacing:0.162000px;}
.ls0{letter-spacing:0.171000px;}
.ls96{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.198000px;}
.ls38{letter-spacing:0.216000px;}
.lsa6{letter-spacing:0.225000px;}
.ls91{letter-spacing:0.231000px;}
.lsa5{letter-spacing:0.240000px;}
.ls36{letter-spacing:0.243000px;}
.ls14{letter-spacing:0.264000px;}
.ls6e{letter-spacing:0.270000px;}
.ls2{letter-spacing:0.285000px;}
.ls77{letter-spacing:0.300000px;}
.ls79{letter-spacing:0.324000px;}
.ls18{letter-spacing:0.330000px;}
.ls3{letter-spacing:0.342000px;}
.ls62{letter-spacing:0.360000px;}
.ls6b{letter-spacing:0.364500px;}
.ls6a{letter-spacing:0.378000px;}
.ls44{letter-spacing:0.396000px;}
.ls4{letter-spacing:0.399000px;}
.ls20{letter-spacing:0.405000px;}
.ls4e{letter-spacing:0.420000px;}
.ls11{letter-spacing:0.432000px;}
.ls30{letter-spacing:0.445500px;}
.lsa{letter-spacing:0.456000px;}
.ls12{letter-spacing:0.462000px;}
.ls17{letter-spacing:0.480000px;}
.ls59{letter-spacing:0.486000px;}
.ls43{letter-spacing:0.528000px;}
.lsc2{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.567000px;}
.ls31{letter-spacing:0.594000px;}
.ls74{letter-spacing:0.600000px;}
.ls16{letter-spacing:0.660000px;}
.ls78{letter-spacing:0.702000px;}
.ls13{letter-spacing:0.726000px;}
.ls4f{letter-spacing:0.756000px;}
.lsa2{letter-spacing:0.765000px;}
.ls50{letter-spacing:0.769500px;}
.ls7a{letter-spacing:0.780000px;}
.ls4c{letter-spacing:0.792000px;}
.lsa1{letter-spacing:0.840000px;}
.ls40{letter-spacing:0.858000px;}
.ls75{letter-spacing:0.900000px;}
.ls49{letter-spacing:0.924000px;}
.ls37{letter-spacing:0.931500px;}
.lsa8{letter-spacing:0.945000px;}
.lsa7{letter-spacing:0.960000px;}
.ls35{letter-spacing:0.972000px;}
.ls68{letter-spacing:0.990000px;}
.lsa9{letter-spacing:1.020000px;}
.ls2c{letter-spacing:1.053000px;}
.ls41{letter-spacing:1.056000px;}
.lsa3{letter-spacing:1.080000px;}
.ls33{letter-spacing:1.122000px;}
.lsaa{letter-spacing:1.125000px;}
.lsab{letter-spacing:1.140000px;}
.ls98{letter-spacing:1.170000px;}
.ls87{letter-spacing:1.188000px;}
.ls97{letter-spacing:1.200000px;}
.ls5{letter-spacing:1.254000px;}
.lsae{letter-spacing:1.260000px;}
.lsad{letter-spacing:1.305000px;}
.ls42{letter-spacing:1.320000px;}
.ls1c{letter-spacing:1.350000px;}
.ls1e{letter-spacing:1.377000px;}
.lsac{letter-spacing:1.380000px;}
.ls8a{letter-spacing:1.386000px;}
.ls1d{letter-spacing:1.404000px;}
.lsb7{letter-spacing:1.440000px;}
.ls57{letter-spacing:1.452000px;}
.ls9a{letter-spacing:1.485000px;}
.ls76{letter-spacing:1.500000px;}
.ls84{letter-spacing:1.518000px;}
.ls19{letter-spacing:1.584000px;}
.ls1b{letter-spacing:1.650000px;}
.ls4a{letter-spacing:1.716000px;}
.lsa4{letter-spacing:1.800000px;}
.ls88{letter-spacing:1.980000px;}
.ls89{letter-spacing:2.046000px;}
.ls83{letter-spacing:2.112000px;}
.ls32{letter-spacing:2.178000px;}
.ls69{letter-spacing:2.244000px;}
.ls81{letter-spacing:2.442000px;}
.ls93{letter-spacing:2.640000px;}
.ls86{letter-spacing:2.772000px;}
.ls85{letter-spacing:2.838000px;}
.ls82{letter-spacing:2.904000px;}
.ls99{letter-spacing:18.240000px;}
.lsb8{letter-spacing:21.000000px;}
.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;}
}
.wsd2{word-spacing:-19.272000px;}
.wse1{word-spacing:-19.140000px;}
.ws4c{word-spacing:-18.678000px;}
.wsd0{word-spacing:-18.612000px;}
.wsd3{word-spacing:-18.546000px;}
.ws74{word-spacing:-18.216000px;}
.ws1e{word-spacing:-18.150000px;}
.wsd1{word-spacing:-17.952000px;}
.wsd5{word-spacing:-17.886000px;}
.ws6f{word-spacing:-17.820000px;}
.wsd4{word-spacing:-17.754000px;}
.wsd7{word-spacing:-17.688000px;}
.ws4d{word-spacing:-17.622000px;}
.ws6b{word-spacing:-17.556000px;}
.wse2{word-spacing:-17.424000px;}
.ws7c{word-spacing:-17.358000px;}
.ws77{word-spacing:-17.292000px;}
.ws69{word-spacing:-17.226000px;}
.wsa8{word-spacing:-17.160000px;}
.ws7b{word-spacing:-17.094000px;}
.ws92{word-spacing:-17.028000px;}
.ws17{word-spacing:-16.962000px;}
.wsa6{word-spacing:-16.896000px;}
.ws67{word-spacing:-16.830000px;}
.ws75{word-spacing:-16.764000px;}
.ws1a{word-spacing:-16.698000px;}
.wscc{word-spacing:-16.632000px;}
.ws1b{word-spacing:-16.566000px;}
.ws16{word-spacing:-16.500000px;}
.ws137{word-spacing:-16.440000px;}
.ws6d{word-spacing:-16.434000px;}
.ws138{word-spacing:-16.380000px;}
.ws1c{word-spacing:-16.368000px;}
.ws110{word-spacing:-16.260000px;}
.ws8f{word-spacing:-16.236000px;}
.wse6{word-spacing:-16.200000px;}
.ws8d{word-spacing:-16.170000px;}
.ws10c{word-spacing:-16.140000px;}
.ws6e{word-spacing:-16.104000px;}
.ws18{word-spacing:-16.038000px;}
.ws1d{word-spacing:-15.972000px;}
.ws109{word-spacing:-15.960000px;}
.ws6a{word-spacing:-15.906000px;}
.ws10e{word-spacing:-15.900000px;}
.wsdb{word-spacing:-15.840000px;}
.wsff{word-spacing:-15.780000px;}
.ws123{word-spacing:-15.660000px;}
.ws6c{word-spacing:-15.642000px;}
.wsa9{word-spacing:-15.576000px;}
.ws139{word-spacing:-15.540000px;}
.ws9f{word-spacing:-15.510000px;}
.wsbc{word-spacing:-15.480000px;}
.ws7e{word-spacing:-15.444000px;}
.ws7d{word-spacing:-15.378000px;}
.wse9{word-spacing:-15.360000px;}
.wsbb{word-spacing:-15.300000px;}
.ws93{word-spacing:-15.246000px;}
.wsda{word-spacing:-15.240000px;}
.wse4{word-spacing:-15.180000px;}
.wscf{word-spacing:-15.114000px;}
.wsf1{word-spacing:-15.060000px;}
.ws4f{word-spacing:-15.048000px;}
.ws9e{word-spacing:-15.000000px;}
.ws4e{word-spacing:-14.940000px;}
.ws8c{word-spacing:-14.916000px;}
.ws28{word-spacing:-14.904000px;}
.wsb3{word-spacing:-14.880000px;}
.ws24{word-spacing:-14.850000px;}
.wsf3{word-spacing:-14.820000px;}
.ws10a{word-spacing:-14.760000px;}
.ws9d{word-spacing:-14.700000px;}
.wscd{word-spacing:-14.652000px;}
.ws13a{word-spacing:-14.640000px;}
.ws103{word-spacing:-14.580000px;}
.ws0{word-spacing:-14.535000px;}
.wsea{word-spacing:-14.520000px;}
.wsbd{word-spacing:-14.400000px;}
.ws121{word-spacing:-14.280000px;}
.ws80{word-spacing:-14.256000px;}
.wsc2{word-spacing:-14.202000px;}
.ws11d{word-spacing:-14.160000px;}
.wsef{word-spacing:-14.040000px;}
.ws114{word-spacing:-13.980000px;}
.wsc3{word-spacing:-13.824000px;}
.wsac{word-spacing:-13.770000px;}
.ws133{word-spacing:-13.740000px;}
.ws56{word-spacing:-13.716000px;}
.ws104{word-spacing:-13.560000px;}
.ws31{word-spacing:-13.500000px;}
.ws2d{word-spacing:-13.446000px;}
.ws2c{word-spacing:-13.392000px;}
.wsbf{word-spacing:-12.960000px;}
.wsc1{word-spacing:-12.852000px;}
.wseb{word-spacing:-12.735000px;}
.wsb2{word-spacing:-12.582000px;}
.ws10f{word-spacing:-12.555000px;}
.ws11e{word-spacing:-12.510000px;}
.wse5{word-spacing:-12.420000px;}
.ws10b{word-spacing:-12.375000px;}
.ws100{word-spacing:-12.330000px;}
.ws108{word-spacing:-12.195000px;}
.ws79{word-spacing:-12.150000px;}
.wsfe{word-spacing:-12.015000px;}
.ws20{word-spacing:-11.952000px;}
.ws11f{word-spacing:-11.610000px;}
.ws78{word-spacing:-11.550000px;}
.ws136{word-spacing:-11.520000px;}
.ws76{word-spacing:-11.503800px;}
.ws101{word-spacing:-11.475000px;}
.ws135{word-spacing:-11.430000px;}
.wse3{word-spacing:-11.385000px;}
.ws91{word-spacing:-11.319000px;}
.wsf0{word-spacing:-11.295000px;}
.ws19{word-spacing:-11.272800px;}
.wsed{word-spacing:-11.250000px;}
.wsa7{word-spacing:-11.226600px;}
.wsdc{word-spacing:-11.180400px;}
.ws29{word-spacing:-11.178000px;}
.ws112{word-spacing:-11.115000px;}
.wsf4{word-spacing:-11.070000px;}
.ws132{word-spacing:-11.025000px;}
.ws131{word-spacing:-10.980000px;}
.ws113{word-spacing:-10.935000px;}
.wse8{word-spacing:-10.890000px;}
.ws7f{word-spacing:-10.810800px;}
.ws106{word-spacing:-10.800000px;}
.wse7{word-spacing:-10.755000px;}
.ws102{word-spacing:-10.710000px;}
.ws127{word-spacing:-10.665000px;}
.ws134{word-spacing:-10.620000px;}
.ws2f{word-spacing:-10.570500px;}
.ws120{word-spacing:-10.530000px;}
.ws126{word-spacing:-10.485000px;}
.ws11c{word-spacing:-10.395000px;}
.ws55{word-spacing:-10.368000px;}
.ws111{word-spacing:-10.350000px;}
.wsee{word-spacing:-10.305000px;}
.ws105{word-spacing:-10.170000px;}
.wsbe{word-spacing:-10.080000px;}
.ws13b{word-spacing:-9.990000px;}
.ws124{word-spacing:-9.855000px;}
.ws125{word-spacing:-9.135000px;}
.ws54{word-spacing:-1.404000px;}
.ws90{word-spacing:-0.858000px;}
.ws47{word-spacing:-0.792000px;}
.ws3e{word-spacing:-0.726000px;}
.wsa2{word-spacing:-0.720000px;}
.wsa{word-spacing:-0.684000px;}
.ws3f{word-spacing:-0.660000px;}
.ws8b{word-spacing:-0.648000px;}
.wsfd{word-spacing:-0.600000px;}
.ws45{word-spacing:-0.594000px;}
.ws9{word-spacing:-0.570000px;}
.ws61{word-spacing:-0.540000px;}
.ws5c{word-spacing:-0.528000px;}
.wsd9{word-spacing:-0.486000px;}
.ws118{word-spacing:-0.480000px;}
.ws35{word-spacing:-0.462000px;}
.ws11{word-spacing:-0.456000px;}
.wsfb{word-spacing:-0.420000px;}
.ws10{word-spacing:-0.399000px;}
.ws33{word-spacing:-0.396000px;}
.ws4b{word-spacing:-0.378000px;}
.wsa4{word-spacing:-0.360000px;}
.ws14{word-spacing:-0.342000px;}
.ws73{word-spacing:-0.330000px;}
.wsfa{word-spacing:-0.300000px;}
.ws44{word-spacing:-0.264000px;}
.wsf9{word-spacing:-0.240000px;}
.ws9b{word-spacing:-0.216000px;}
.ws3b{word-spacing:-0.198000px;}
.ws13d{word-spacing:-0.180000px;}
.ws5{word-spacing:-0.171000px;}
.wsb8{word-spacing:-0.162000px;}
.ws87{word-spacing:-0.132000px;}
.ws130{word-spacing:-0.120000px;}
.ws97{word-spacing:-0.108000px;}
.ws63{word-spacing:-0.066000px;}
.ws5e{word-spacing:-0.060000px;}
.ws3{word-spacing:-0.057000px;}
.ws9a{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:0.057000px;}
.ws12f{word-spacing:0.060000px;}
.ws3d{word-spacing:0.066000px;}
.ws13{word-spacing:0.114000px;}
.ws60{word-spacing:0.120000px;}
.ws42{word-spacing:0.132000px;}
.wsb9{word-spacing:0.162000px;}
.ws8{word-spacing:0.171000px;}
.ws5d{word-spacing:0.180000px;}
.ws34{word-spacing:0.198000px;}
.wsd{word-spacing:0.228000px;}
.wsec{word-spacing:0.240000px;}
.ws72{word-spacing:0.264000px;}
.wse0{word-spacing:0.270000px;}
.ws2{word-spacing:0.285000px;}
.wsf8{word-spacing:0.300000px;}
.wsa5{word-spacing:0.330000px;}
.ws12{word-spacing:0.342000px;}
.ws119{word-spacing:0.360000px;}
.ws98{word-spacing:0.378000px;}
.ws5a{word-spacing:0.396000px;}
.wsa1{word-spacing:0.420000px;}
.ws68{word-spacing:0.462000px;}
.ws12d{word-spacing:0.480000px;}
.ws66{word-spacing:0.486000px;}
.ws37{word-spacing:0.528000px;}
.ws89{word-spacing:0.540000px;}
.ws64{word-spacing:0.594000px;}
.wsc6{word-spacing:0.600000px;}
.ws39{word-spacing:0.646800px;}
.ws65{word-spacing:0.648000px;}
.ws88{word-spacing:0.660000px;}
.ws5f{word-spacing:0.720000px;}
.ws70{word-spacing:0.726000px;}
.ws84{word-spacing:0.739200px;}
.wsca{word-spacing:0.780000px;}
.ws3c{word-spacing:0.792000px;}
.ws12b{word-spacing:0.840000px;}
.ws71{word-spacing:0.858000px;}
.ws4a{word-spacing:0.864000px;}
.wsc4{word-spacing:0.900000px;}
.wsae{word-spacing:0.918000px;}
.ws36{word-spacing:0.924000px;}
.wsc9{word-spacing:0.960000px;}
.ws6{word-spacing:0.969000px;}
.ws62{word-spacing:0.970200px;}
.wscb{word-spacing:0.972000px;}
.ws96{word-spacing:0.990000px;}
.wsc5{word-spacing:1.020000px;}
.wsf{word-spacing:1.026000px;}
.ws83{word-spacing:1.056000px;}
.wsaf{word-spacing:1.080000px;}
.ws32{word-spacing:1.122000px;}
.ws8a{word-spacing:1.134000px;}
.wse{word-spacing:1.140000px;}
.ws59{word-spacing:1.188000px;}
.ws128{word-spacing:1.200000px;}
.ws99{word-spacing:1.242000px;}
.ws4{word-spacing:1.254000px;}
.ws116{word-spacing:1.260000px;}
.ws3a{word-spacing:1.320000px;}
.wsce{word-spacing:1.350000px;}
.ws7{word-spacing:1.368000px;}
.wsa3{word-spacing:1.380000px;}
.ws38{word-spacing:1.386000px;}
.wsc{word-spacing:1.425000px;}
.wsfc{word-spacing:1.440000px;}
.ws40{word-spacing:1.452000px;}
.wsba{word-spacing:1.500000px;}
.ws41{word-spacing:1.518000px;}
.ws46{word-spacing:1.584000px;}
.ws5b{word-spacing:1.650000px;}
.wsdd{word-spacing:1.716000px;}
.ws8e{word-spacing:1.782000px;}
.wsc7{word-spacing:1.800000px;}
.wsa0{word-spacing:1.848000px;}
.ws11b{word-spacing:1.860000px;}
.ws13c{word-spacing:2.520000px;}
.ws43{word-spacing:2.574000px;}
.ws2a{word-spacing:2.811000px;}
.ws2b{word-spacing:2.853000px;}
.ws85{word-spacing:2.904000px;}
.ws86{word-spacing:2.970000px;}
.ws12a{word-spacing:3.060000px;}
.wsf2{word-spacing:3.195000px;}
.ws22{word-spacing:3.339000px;}
.wsc0{word-spacing:3.343500px;}
.ws21{word-spacing:3.346500px;}
.ws82{word-spacing:3.366000px;}
.ws58{word-spacing:3.483000px;}
.ws57{word-spacing:3.513000px;}
.ws122{word-spacing:3.765000px;}
.ws52{word-spacing:3.924000px;}
.ws9c{word-spacing:4.026000px;}
.ws81{word-spacing:4.054500px;}
.ws53{word-spacing:4.176000px;}
.ws10d{word-spacing:4.200000px;}
.ws15{word-spacing:4.224000px;}
.ws117{word-spacing:4.260000px;}
.wsaa{word-spacing:4.302000px;}
.ws30{word-spacing:4.402500px;}
.wsab{word-spacing:4.482000px;}
.ws2e{word-spacing:4.485000px;}
.ws107{word-spacing:4.530000px;}
.wsad{word-spacing:4.540500px;}
.ws12e{word-spacing:4.860000px;}
.wsd6{word-spacing:5.148000px;}
.wsc8{word-spacing:5.340000px;}
.ws115{word-spacing:6.000000px;}
.ws12c{word-spacing:6.240000px;}
.wsd8{word-spacing:6.402000px;}
.wsdf{word-spacing:6.477000px;}
.ws49{word-spacing:7.168500px;}
.ws7a{word-spacing:7.326000px;}
.wsde{word-spacing:8.250000px;}
.wsf5{word-spacing:8.514000px;}
.wsf6{word-spacing:8.580000px;}
.ws94{word-spacing:9.018000px;}
.ws48{word-spacing:9.558000px;}
.wsb1{word-spacing:9.882000px;}
.ws95{word-spacing:10.746000px;}
.wsf7{word-spacing:11.022000px;}
.ws129{word-spacing:11.460000px;}
.ws11a{word-spacing:12.060000px;}
.ws26{word-spacing:12.760500px;}
.ws27{word-spacing:12.784500px;}
.ws25{word-spacing:12.873000px;}
.wsb0{word-spacing:14.202000px;}
.ws13e{word-spacing:21.000000px;}
.ws51{word-spacing:35.370000px;}
.ws1f{word-spacing:35.712000px;}
.ws23{word-spacing:36.018000px;}
.ws50{word-spacing:128.592000px;}
.wsb6{word-spacing:140.580000px;}
.wsb5{word-spacing:152.220000px;}
.wsb4{word-spacing:225.600000px;}
.wsb7{word-spacing:295.200000px;}
._8{margin-left:-11.179500px;}
._26{margin-left:-9.840000px;}
._9{margin-left:-8.712000px;}
._4{margin-left:-6.783000px;}
._e{margin-left:-5.421000px;}
._1{margin-left:-4.389000px;}
._2{margin-left:-2.850000px;}
._0{margin-left:-1.311000px;}
._3{width:1.140000px;}
._f{width:2.244000px;}
._b{width:3.894000px;}
._a{width:5.820000px;}
._c{width:7.185000px;}
._10{width:12.381000px;}
._27{width:13.866000px;}
._d{width:15.642000px;}
._25{width:17.403000px;}
._21{width:22.518000px;}
._28{width:32.931000px;}
._5{width:47.952000px;}
._7{width:49.518000px;}
._1a{width:92.640000px;}
._1b{width:189.270000px;}
._1f{width:207.891000px;}
._15{width:246.240000px;}
._18{width:248.010000px;}
._14{width:253.050000px;}
._13{width:288.660000px;}
._23{width:302.211000px;}
._24{width:331.131000px;}
._22{width:335.160000px;}
._16{width:380.160000px;}
._1c{width:387.990000px;}
._17{width:395.220000px;}
._1e{width:411.651000px;}
._1d{width:487.680000px;}
._20{width:539.340000px;}
._12{width:665.880000px;}
._19{width:668.880000px;}
._11{width:678.210000px;}
._6{width:1252.656000px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:40.500000px;}
.fs9{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs6{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y79{bottom:54.114000px;}
.y56{bottom:54.123000px;}
.y1d9{bottom:54.129000px;}
.y223{bottom:54.231000px;}
.y1a8{bottom:54.291000px;}
.ybb{bottom:54.372000px;}
.y139{bottom:54.495000px;}
.y172{bottom:54.630000px;}
.ye1{bottom:54.747000px;}
.y152{bottom:54.759000px;}
.y106{bottom:55.149000px;}
.ya0{bottom:55.182000px;}
.y231{bottom:55.215000px;}
.y202{bottom:57.510000px;}
.y283{bottom:57.885000px;}
.y1e{bottom:62.235000px;}
.y78{bottom:68.370000px;}
.y55{bottom:68.379000px;}
.y1d8{bottom:68.385000px;}
.y222{bottom:68.487000px;}
.y1a7{bottom:68.547000px;}
.yba{bottom:68.628000px;}
.y171{bottom:68.886000px;}
.ye0{bottom:69.003000px;}
.y151{bottom:69.009000px;}
.y138{bottom:71.737500px;}
.y105{bottom:72.391500px;}
.y9f{bottom:72.424500px;}
.y230{bottom:72.457500px;}
.y253{bottom:73.260000px;}
.y282{bottom:73.635000px;}
.y201{bottom:74.752500px;}
.y54{bottom:82.629000px;}
.y1d7{bottom:82.641000px;}
.y221{bottom:82.743000px;}
.y1a6{bottom:82.803000px;}
.yb9{bottom:82.884000px;}
.y170{bottom:83.142000px;}
.y1d{bottom:83.175750px;}
.ydf{bottom:83.259000px;}
.y150{bottom:83.265000px;}
.y137{bottom:88.980000px;}
.y252{bottom:89.010000px;}
.y281{bottom:89.385000px;}
.y104{bottom:89.634000px;}
.y9e{bottom:89.667000px;}
.y22f{bottom:89.700000px;}
.y200{bottom:91.995000px;}
.y53{bottom:96.879000px;}
.y1d6{bottom:96.897000px;}
.y220{bottom:96.999000px;}
.y1a5{bottom:97.059000px;}
.yb8{bottom:97.140000px;}
.y16f{bottom:97.398000px;}
.yde{bottom:97.497000px;}
.y1c{bottom:98.181000px;}
.y251{bottom:104.760000px;}
.y280{bottom:105.135000px;}
.y136{bottom:106.222500px;}
.y103{bottom:106.876500px;}
.y9d{bottom:106.909500px;}
.y22e{bottom:106.942500px;}
.y1ff{bottom:109.237500px;}
.y52{bottom:111.129000px;}
.y1d5{bottom:111.153000px;}
.y21f{bottom:111.255000px;}
.y1a4{bottom:111.315000px;}
.y120{bottom:111.396000px;}
.y16e{bottom:111.654000px;}
.ydd{bottom:111.753000px;}
.y1b{bottom:113.186250px;}
.y1c1{bottom:115.425000px;}
.y250{bottom:120.510000px;}
.y27f{bottom:120.885000px;}
.y135{bottom:123.465000px;}
.y102{bottom:124.119000px;}
.y9c{bottom:124.152000px;}
.y22d{bottom:124.185000px;}
.y77{bottom:124.365000px;}
.y51{bottom:125.385000px;}
.y1d4{bottom:125.409000px;}
.y11f{bottom:125.652000px;}
.y16d{bottom:125.910000px;}
.ydc{bottom:126.009000px;}
.y1fe{bottom:126.480000px;}
.y1a{bottom:128.191500px;}
.y1c0{bottom:132.667500px;}
.y14f{bottom:132.712500px;}
.y24f{bottom:136.260000px;}
.y27e{bottom:136.635000px;}
.y1d3{bottom:139.665000px;}
.y11e{bottom:139.908000px;}
.ydb{bottom:140.265000px;}
.y134{bottom:140.707500px;}
.yb7{bottom:141.154500px;}
.y240{bottom:141.225000px;}
.y101{bottom:141.361500px;}
.y9b{bottom:141.394500px;}
.y22c{bottom:141.427500px;}
.y76{bottom:141.607500px;}
.y19{bottom:143.196750px;}
.y1fd{bottom:143.722500px;}
.y14e{bottom:149.955000px;}
.y24e{bottom:152.010000px;}
.y27d{bottom:152.385000px;}
.y1a3{bottom:153.870000px;}
.y11d{bottom:154.164000px;}
.y133{bottom:157.950000px;}
.y18{bottom:158.202000px;}
.yb6{bottom:158.397000px;}
.y23f{bottom:158.467500px;}
.y1bf{bottom:158.539500px;}
.y100{bottom:158.604000px;}
.y9a{bottom:158.637000px;}
.y22b{bottom:158.670000px;}
.y75{bottom:158.850000px;}
.y1fc{bottom:160.965000px;}
.y16c{bottom:165.202500px;}
.y21e{bottom:167.025000px;}
.y14d{bottom:167.197500px;}
.y24d{bottom:167.760000px;}
.y27c{bottom:168.135000px;}
.y11c{bottom:168.420000px;}
.y1a2{bottom:172.365000px;}
.y17{bottom:173.207250px;}
.y132{bottom:175.192500px;}
.y23e{bottom:175.710000px;}
.yff{bottom:175.846500px;}
.y50{bottom:175.860000px;}
.y99{bottom:175.879500px;}
.y22a{bottom:175.912500px;}
.y74{bottom:176.092500px;}
.y1fb{bottom:178.207500px;}
.y16b{bottom:182.445000px;}
.y24c{bottom:183.510000px;}
.y27b{bottom:183.885000px;}
.y21d{bottom:184.267500px;}
.yb5{bottom:184.269000px;}
.y1be{bottom:184.411500px;}
.y14c{bottom:184.440000px;}
.y1a1{bottom:188.115000px;}
.y16{bottom:188.212500px;}
.y131{bottom:192.435000px;}
.yda{bottom:192.928500px;}
.y1d2{bottom:192.942000px;}
.y23d{bottom:192.952500px;}
.y4f{bottom:193.102500px;}
.y98{bottom:193.122000px;}
.y229{bottom:193.155000px;}
.y73{bottom:193.335000px;}
.y1fa{bottom:195.450000px;}
.y24b{bottom:199.260000px;}
.y27a{bottom:199.635000px;}
.y16a{bottom:199.687500px;}
.yb4{bottom:201.511500px;}
.y1bd{bottom:201.654000px;}
.y14b{bottom:201.682500px;}
.y21c{bottom:201.768000px;}
.y15{bottom:203.217750px;}
.y1a0{bottom:203.865000px;}
.y130{bottom:209.677500px;}
.yd9{bottom:210.171000px;}
.y11b{bottom:210.180000px;}
.y1d1{bottom:210.184500px;}
.y23c{bottom:210.195000px;}
.y4e{bottom:210.345000px;}
.yfe{bottom:210.348000px;}
.y97{bottom:210.364500px;}
.y228{bottom:210.397500px;}
.y72{bottom:210.577500px;}
.y1f9{bottom:212.692500px;}
.y24a{bottom:215.010000px;}
.y279{bottom:215.385000px;}
.y169{bottom:216.930000px;}
.y14{bottom:218.223000px;}
.y14a{bottom:218.925000px;}
.y21b{bottom:219.010500px;}
.y19f{bottom:223.020000px;}
.y12f{bottom:226.920000px;}
.yd8{bottom:227.413500px;}
.y11a{bottom:227.422500px;}
.y1d0{bottom:227.427000px;}
.y23b{bottom:227.437500px;}
.y4d{bottom:227.587500px;}
.yfd{bottom:227.590500px;}
.y96{bottom:227.607000px;}
.y227{bottom:227.640000px;}
.y71{bottom:227.820000px;}
.y1f8{bottom:229.935000px;}
.y249{bottom:230.760000px;}
.y278{bottom:231.135000px;}
.y13{bottom:233.228250px;}
.y168{bottom:234.172500px;}
.y149{bottom:236.167500px;}
.y1c8{bottom:236.236500px;}
.y21a{bottom:236.253000px;}
.y19e{bottom:238.770000px;}
.y12e{bottom:244.162500px;}
.yb3{bottom:244.642500px;}
.yd7{bottom:244.656000px;}
.y119{bottom:244.665000px;}
.y1cf{bottom:244.669500px;}
.y23a{bottom:244.680000px;}
.y1bc{bottom:244.785000px;}
.y4c{bottom:244.830000px;}
.yfc{bottom:244.833000px;}
.y95{bottom:244.849500px;}
.y226{bottom:244.882500px;}
.y70{bottom:245.062500px;}
.y248{bottom:246.510000px;}
.y277{bottom:246.885000px;}
.y1f7{bottom:247.177500px;}
.y12{bottom:248.233500px;}
.y167{bottom:251.415000px;}
.y148{bottom:253.410000px;}
.y1c7{bottom:253.479000px;}
.y219{bottom:253.495500px;}
.y19d{bottom:254.520000px;}
.y12d{bottom:261.405000px;}
.yd6{bottom:261.898500px;}
.y118{bottom:261.907500px;}
.y1ce{bottom:261.912000px;}
.y239{bottom:261.922500px;}
.yb2{bottom:262.002000px;}
.y1bb{bottom:262.027500px;}
.y4b{bottom:262.072500px;}
.yfb{bottom:262.075500px;}
.y94{bottom:262.092000px;}
.y225{bottom:262.125000px;}
.y247{bottom:262.260000px;}
.y6f{bottom:262.305000px;}
.y276{bottom:262.635000px;}
.y11{bottom:263.238750px;}
.y1f6{bottom:264.420000px;}
.y166{bottom:268.657500px;}
.y147{bottom:270.652500px;}
.y218{bottom:270.738000px;}
.y19c{bottom:273.675000px;}
.y246{bottom:278.010000px;}
.y275{bottom:278.385000px;}
.y12c{bottom:278.647500px;}
.yd5{bottom:279.141000px;}
.y117{bottom:279.150000px;}
.y1cd{bottom:279.154500px;}
.y238{bottom:279.165000px;}
.yb1{bottom:279.244500px;}
.y1ba{bottom:279.270000px;}
.y4a{bottom:279.315000px;}
.yfa{bottom:279.318000px;}
.y93{bottom:279.334500px;}
.y224{bottom:279.367500px;}
.y6e{bottom:279.547500px;}
.y1f5{bottom:281.662500px;}
.y165{bottom:285.900000px;}
.y146{bottom:287.895000px;}
.y217{bottom:287.980500px;}
.y19b{bottom:289.425000px;}
.y10{bottom:293.235000px;}
.y245{bottom:293.760000px;}
.y274{bottom:294.135000px;}
.y12b{bottom:295.890000px;}
.yd4{bottom:296.383500px;}
.y116{bottom:296.392500px;}
.y1cc{bottom:296.397000px;}
.y237{bottom:296.407500px;}
.yb0{bottom:296.487000px;}
.y1b9{bottom:296.512500px;}
.y49{bottom:296.557500px;}
.yf9{bottom:296.560500px;}
.y92{bottom:296.577000px;}
.y1c6{bottom:296.610000px;}
.y6d{bottom:296.790000px;}
.y1f4{bottom:298.905000px;}
.y164{bottom:303.142500px;}
.y145{bottom:305.137500px;}
.y19a{bottom:305.175000px;}
.y216{bottom:305.223000px;}
.y244{bottom:309.510000px;}
.y273{bottom:309.885000px;}
.y12a{bottom:313.132500px;}
.y1cb{bottom:313.639500px;}
.y236{bottom:313.650000px;}
.yaf{bottom:313.729500px;}
.y1b8{bottom:313.755000px;}
.y48{bottom:313.800000px;}
.yf8{bottom:313.803000px;}
.y91{bottom:313.819500px;}
.y115{bottom:313.822500px;}
.y1c5{bottom:313.852500px;}
.y6c{bottom:314.032500px;}
.y1f3{bottom:316.147500px;}
.y163{bottom:320.385000px;}
.y199{bottom:320.925000px;}
.y144{bottom:322.380000px;}
.y215{bottom:322.465500px;}
.y243{bottom:325.260000px;}
.y272{bottom:325.635000px;}
.yf{bottom:329.167500px;}
.y129{bottom:330.375000px;}
.y1ca{bottom:330.882000px;}
.y235{bottom:330.892500px;}
.yd3{bottom:330.922500px;}
.yae{bottom:330.972000px;}
.y1b7{bottom:330.997500px;}
.y47{bottom:331.042500px;}
.yf7{bottom:331.045500px;}
.y114{bottom:331.065000px;}
.y1c4{bottom:331.095000px;}
.y6b{bottom:331.275000px;}
.y1f2{bottom:333.390000px;}
.y198{bottom:336.675000px;}
.y162{bottom:337.627500px;}
.y143{bottom:339.622500px;}
.y90{bottom:339.691500px;}
.y214{bottom:339.708000px;}
.y242{bottom:341.010000px;}
.y271{bottom:341.385000px;}
.y234{bottom:348.157500px;}
.yd2{bottom:348.165000px;}
.y1b6{bottom:348.240000px;}
.y46{bottom:348.285000px;}
.yf6{bottom:348.288000px;}
.y113{bottom:348.307500px;}
.y1c3{bottom:348.337500px;}
.y6a{bottom:348.517500px;}
.ye{bottom:350.172000px;}
.y1f1{bottom:350.632500px;}
.y197{bottom:352.425000px;}
.y161{bottom:354.870000px;}
.y1c9{bottom:356.754000px;}
.yad{bottom:356.844000px;}
.y142{bottom:356.865000px;}
.y213{bottom:356.950500px;}
.y270{bottom:357.135000px;}
.y128{bottom:362.505000px;}
.yd{bottom:365.177250px;}
.y233{bottom:365.400000px;}
.yd1{bottom:365.407500px;}
.y1b5{bottom:365.482500px;}
.y45{bottom:365.527500px;}
.yf5{bottom:365.530500px;}
.y112{bottom:365.550000px;}
.y241{bottom:365.563500px;}
.y1c2{bottom:365.580000px;}
.y69{bottom:365.775000px;}
.y1f0{bottom:367.875000px;}
.y196{bottom:371.580000px;}
.y160{bottom:372.112500px;}
.y26f{bottom:372.885000px;}
.y141{bottom:374.107500px;}
.y212{bottom:374.193000px;}
.y127{bottom:378.255000px;}
.yc{bottom:380.182500px;}
.y232{bottom:382.642500px;}
.yd0{bottom:382.650000px;}
.y1b4{bottom:382.725000px;}
.y44{bottom:382.770000px;}
.y111{bottom:382.792500px;}
.y8f{bottom:382.822500px;}
.y68{bottom:383.017500px;}
.y1ef{bottom:385.117500px;}
.y195{bottom:387.330000px;}
.y26e{bottom:388.635000px;}
.y15f{bottom:389.355000px;}
.y140{bottom:391.350000px;}
.y211{bottom:391.435500px;}
.y126{bottom:394.005000px;}
.yb{bottom:395.187750px;}
.ycf{bottom:399.892500px;}
.y1b3{bottom:399.967500px;}
.yac{bottom:399.975000px;}
.y43{bottom:400.012500px;}
.yf4{bottom:400.032000px;}
.y110{bottom:400.035000px;}
.y8e{bottom:400.065000px;}
.y67{bottom:400.260000px;}
.y1ee{bottom:402.360000px;}
.y194{bottom:403.080000px;}
.y26d{bottom:404.385000px;}
.y15e{bottom:406.597500px;}
.y13f{bottom:408.592500px;}
.y210{bottom:408.678000px;}
.y125{bottom:409.755000px;}
.ya{bottom:410.193000px;}
.yce{bottom:417.187500px;}
.y1b2{bottom:417.210000px;}
.yab{bottom:417.217500px;}
.y42{bottom:417.255000px;}
.yf3{bottom:417.274500px;}
.y10f{bottom:417.277500px;}
.y8d{bottom:417.307500px;}
.y193{bottom:418.830000px;}
.y1ed{bottom:419.602500px;}
.y26c{bottom:420.135000px;}
.y15d{bottom:423.840000px;}
.y9{bottom:425.198250px;}
.y124{bottom:425.505000px;}
.y13e{bottom:425.835000px;}
.y20f{bottom:425.920500px;}
.ycd{bottom:434.430000px;}
.y1b1{bottom:434.452500px;}
.yaa{bottom:434.460000px;}
.y41{bottom:434.497500px;}
.yf2{bottom:434.517000px;}
.y10e{bottom:434.520000px;}
.y8c{bottom:434.550000px;}
.y192{bottom:434.580000px;}
.y66{bottom:434.760000px;}
.y26b{bottom:435.885000px;}
.y1ec{bottom:436.845000px;}
.y8{bottom:440.203500px;}
.y15c{bottom:441.082500px;}
.y123{bottom:441.255000px;}
.y13d{bottom:443.077500px;}
.y20e{bottom:443.163000px;}
.y65{bottom:450.510000px;}
.y26a{bottom:451.635000px;}
.ycc{bottom:451.672500px;}
.y1b0{bottom:451.695000px;}
.ya9{bottom:451.702500px;}
.y40{bottom:451.740000px;}
.yf1{bottom:451.759500px;}
.y10d{bottom:451.762500px;}
.y8b{bottom:451.792500px;}
.y191{bottom:453.735000px;}
.y1eb{bottom:454.087500px;}
.y7{bottom:455.208750px;}
.y122{bottom:457.005000px;}
.y15b{bottom:458.325000px;}
.y13c{bottom:460.320000px;}
.y20d{bottom:460.405500px;}
.y64{bottom:466.260000px;}
.y269{bottom:467.385000px;}
.ycb{bottom:468.915000px;}
.y1af{bottom:468.937500px;}
.ya8{bottom:468.945000px;}
.y3f{bottom:468.982500px;}
.yf0{bottom:469.002000px;}
.y10c{bottom:469.005000px;}
.y8a{bottom:469.035000px;}
.y190{bottom:469.485000px;}
.y6{bottom:470.214000px;}
.y1ea{bottom:471.330000px;}
.y121{bottom:472.755000px;}
.y15a{bottom:475.567500px;}
.y20c{bottom:477.648000px;}
.y63{bottom:482.010000px;}
.y268{bottom:483.135000px;}
.y5{bottom:485.219250px;}
.y18f{bottom:485.235000px;}
.yca{bottom:486.157500px;}
.y1ae{bottom:486.180000px;}
.ya7{bottom:486.187500px;}
.y13b{bottom:486.192000px;}
.y3e{bottom:486.225000px;}
.yef{bottom:486.244500px;}
.y10b{bottom:486.247500px;}
.y89{bottom:486.277500px;}
.y1e9{bottom:488.572500px;}
.y159{bottom:492.810000px;}
.y20b{bottom:494.890500px;}
.y62{bottom:497.760000px;}
.y267{bottom:498.885000px;}
.y4{bottom:500.224500px;}
.yc9{bottom:503.400000px;}
.y1ad{bottom:503.422500px;}
.ya6{bottom:503.430000px;}
.y3d{bottom:503.467500px;}
.yee{bottom:503.487000px;}
.y10a{bottom:503.490000px;}
.y88{bottom:503.520000px;}
.y18e{bottom:504.375000px;}
.y1e8{bottom:505.815000px;}
.y158{bottom:510.052500px;}
.y13a{bottom:512.064000px;}
.y20a{bottom:512.133000px;}
.y61{bottom:513.510000px;}
.y266{bottom:514.635000px;}
.y3{bottom:515.229750px;}
.y18d{bottom:520.125000px;}
.yc8{bottom:520.642500px;}
.y1ac{bottom:520.665000px;}
.ya5{bottom:520.672500px;}
.y3c{bottom:520.710000px;}
.yed{bottom:520.729500px;}
.y109{bottom:520.732500px;}
.y87{bottom:520.762500px;}
.y1e7{bottom:523.057500px;}
.y157{bottom:527.295000px;}
.y209{bottom:529.375500px;}
.y2{bottom:530.235000px;}
.y265{bottom:530.385000px;}
.y1ab{bottom:537.907500px;}
.ya4{bottom:537.915000px;}
.y3b{bottom:537.952500px;}
.yec{bottom:537.972000px;}
.yc7{bottom:537.975000px;}
.y86{bottom:538.005000px;}
.y1e6{bottom:540.300000px;}
.y156{bottom:544.537500px;}
.y264{bottom:546.135000px;}
.y18c{bottom:546.555000px;}
.y60{bottom:546.585000px;}
.y208{bottom:546.618000px;}
.y1aa{bottom:555.150000px;}
.ya3{bottom:555.157500px;}
.y3a{bottom:555.195000px;}
.yc6{bottom:555.217500px;}
.y85{bottom:555.247500px;}
.y1e5{bottom:557.542500px;}
.y1{bottom:560.235000px;}
.y155{bottom:561.780000px;}
.y263{bottom:561.885000px;}
.y18b{bottom:563.797500px;}
.y5f{bottom:563.827500px;}
.y207{bottom:563.860500px;}
.y1a9{bottom:572.392500px;}
.ya2{bottom:572.400000px;}
.y39{bottom:572.437500px;}
.yc5{bottom:572.460000px;}
.yeb{bottom:572.473500px;}
.y84{bottom:572.490000px;}
.y1e4{bottom:574.785000px;}
.y262{bottom:577.635000px;}
.y154{bottom:579.022500px;}
.y18a{bottom:581.040000px;}
.y5e{bottom:581.070000px;}
.y206{bottom:581.103000px;}
.y29{bottom:583.890000px;}
.ya1{bottom:589.642500px;}
.y38{bottom:589.680000px;}
.yc4{bottom:589.702500px;}
.yea{bottom:589.716000px;}
.y83{bottom:589.732500px;}
.y1e3{bottom:592.027500px;}
.y261{bottom:593.385000px;}
.y153{bottom:596.265000px;}
.y189{bottom:598.282500px;}
.y5d{bottom:598.312500px;}
.y205{bottom:598.345500px;}
.y37{bottom:606.922500px;}
.yc3{bottom:606.945000px;}
.ye9{bottom:606.958500px;}
.y82{bottom:606.975000px;}
.y260{bottom:609.135000px;}
.y1e2{bottom:609.270000px;}
.y28{bottom:612.849000px;}
.y188{bottom:615.525000px;}
.y5c{bottom:615.555000px;}
.y204{bottom:615.588000px;}
.y36{bottom:624.165000px;}
.yc2{bottom:624.187500px;}
.ye8{bottom:624.201000px;}
.y81{bottom:624.217500px;}
.y25f{bottom:624.885000px;}
.y1e1{bottom:626.512500px;}
.y27{bottom:627.105000px;}
.y187{bottom:632.767500px;}
.y5b{bottom:632.797500px;}
.y203{bottom:632.830500px;}
.y17d{bottom:634.305000px;}
.y25e{bottom:640.635000px;}
.y35{bottom:641.407500px;}
.yc1{bottom:641.430000px;}
.ye7{bottom:641.443500px;}
.y80{bottom:641.460000px;}
.y1e0{bottom:643.755000px;}
.y26{bottom:645.105000px;}
.y5a{bottom:650.040000px;}
.y186{bottom:650.073000px;}
.y17c{bottom:654.555000px;}
.y25d{bottom:656.385000px;}
.y34{bottom:658.650000px;}
.yc0{bottom:658.672500px;}
.ye6{bottom:658.686000px;}
.y7f{bottom:658.702500px;}
.y1df{bottom:660.997500px;}
.y185{bottom:667.315500px;}
.y17b{bottom:670.305000px;}
.y25c{bottom:672.135000px;}
.y33{bottom:675.892500px;}
.y59{bottom:675.912000px;}
.ybf{bottom:675.915000px;}
.ye5{bottom:675.928500px;}
.y7e{bottom:675.945000px;}
.y1de{bottom:678.240000px;}
.y184{bottom:684.558000px;}
.y25b{bottom:687.885000px;}
.y25{bottom:690.096000px;}
.y17a{bottom:690.555000px;}
.y58{bottom:693.154500px;}
.ybe{bottom:693.157500px;}
.y32{bottom:693.165000px;}
.ye4{bottom:693.171000px;}
.y7d{bottom:693.187500px;}
.y183{bottom:701.800500px;}
.y25a{bottom:703.635000px;}
.y179{bottom:706.305000px;}
.ybd{bottom:710.400000px;}
.y31{bottom:710.407500px;}
.ye3{bottom:710.413500px;}
.y7c{bottom:710.430000px;}
.y24{bottom:714.099000px;}
.y57{bottom:719.026500px;}
.y182{bottom:719.043000px;}
.y259{bottom:719.385000px;}
.y178{bottom:722.055000px;}
.ybc{bottom:727.642500px;}
.y30{bottom:727.650000px;}
.ye2{bottom:727.656000px;}
.y7b{bottom:727.672500px;}
.y258{bottom:735.135000px;}
.y1dd{bottom:735.885000px;}
.y181{bottom:736.285500px;}
.y177{bottom:737.805000px;}
.y23{bottom:738.102000px;}
.y2f{bottom:744.892500px;}
.y108{bottom:744.898500px;}
.y7a{bottom:744.915000px;}
.y257{bottom:750.885000px;}
.y1dc{bottom:752.385000px;}
.y180{bottom:753.528000px;}
.y176{bottom:758.055000px;}
.y22{bottom:762.105000px;}
.y107{bottom:762.141000px;}
.y2e{bottom:762.157500px;}
.y256{bottom:766.635000px;}
.y1db{bottom:768.885000px;}
.y17f{bottom:770.770500px;}
.y175{bottom:773.805000px;}
.y2d{bottom:779.400000px;}
.y255{bottom:782.385000px;}
.y1da{bottom:785.385000px;}
.y21{bottom:786.105000px;}
.y17e{bottom:788.013000px;}
.y174{bottom:789.555000px;}
.y2c{bottom:796.642500px;}
.y254{bottom:798.135000px;}
.y20{bottom:810.105000px;}
.y2b{bottom:813.885000px;}
.y173{bottom:814.065000px;}
.y1f{bottom:861.105000px;}
.y2a{bottom:924.000000px;}
.h8{height:33.843750px;}
.h3{height:51.216000px;}
.h7{height:57.618000px;}
.hc{height:57.642000px;}
.h11{height:57.690000px;}
.h1{height:60.819000px;}
.h2{height:61.788000px;}
.hd{height:64.020000px;}
.h14{height:64.614000px;}
.h17{height:65.040000px;}
.h6{height:70.422000px;}
.h16{height:70.685400px;}
.hf{height:70.715400px;}
.h15{height:70.823400px;}
.h13{height:70.865400px;}
.h10{height:70.925400px;}
.ha{height:70.955400px;}
.h9{height:70.985400px;}
.he{height:71.015400px;}
.h12{height:71.021400px;}
.hb{height:71.544000px;}
.h5{height:89.628000px;}
.h4{height:102.432000px;}
.h0{height:894.000000px;}
.w0{width:636.000000px;}
.x0{left:0.000000px;}
.x4{left:4.500000px;}
.x1{left:74.700000px;}
.x5{left:75.915000px;}
.x10{left:89.700000px;}
.xf{left:90.915000px;}
.xa{left:91.953000px;}
.x6{left:93.169500px;}
.x9{left:97.200000px;}
.x7{left:98.410500px;}
.x8{left:103.954500px;}
.xc{left:105.384000px;}
.xd{left:277.230000px;}
.xb{left:320.400000px;}
.xe{left:374.595000px;}
.x2{left:442.500000px;}
.x3{left:465.270000px;}
@media print{
.v3{vertical-align:-0.917333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.600000pt;}
.v1{vertical-align:19.280000pt;}
.ls70{letter-spacing:-2.352000pt;}
.ls80{letter-spacing:-2.170667pt;}
.ls7f{letter-spacing:-1.994667pt;}
.lsbd{letter-spacing:-1.880000pt;}
.lsbe{letter-spacing:-1.866667pt;}
.ls55{letter-spacing:-1.642667pt;}
.ls64{letter-spacing:-1.584000pt;}
.ls63{letter-spacing:-1.525333pt;}
.ls56{letter-spacing:-1.466667pt;}
.ls45{letter-spacing:-1.408000pt;}
.ls8e{letter-spacing:-1.349333pt;}
.ls3f{letter-spacing:-1.290667pt;}
.lsaf{letter-spacing:-1.280000pt;}
.lsbb{letter-spacing:-1.240000pt;}
.ls58{letter-spacing:-1.232000pt;}
.lsbc{letter-spacing:-1.226667pt;}
.ls4d{letter-spacing:-1.200000pt;}
.ls46{letter-spacing:-1.173333pt;}
.ls6f{letter-spacing:-1.152000pt;}
.ls7c{letter-spacing:-1.120000pt;}
.ls53{letter-spacing:-1.114667pt;}
.ls90{letter-spacing:-1.104000pt;}
.ls5b{letter-spacing:-1.056000pt;}
.lsb1{letter-spacing:-1.013333pt;}
.ls51{letter-spacing:-0.997333pt;}
.lsb0{letter-spacing:-0.960000pt;}
.ls48{letter-spacing:-0.938667pt;}
.ls60{letter-spacing:-0.912000pt;}
.lsb6{letter-spacing:-0.906667pt;}
.ls29{letter-spacing:-0.880000pt;}
.ls5e{letter-spacing:-0.864000pt;}
.ls7{letter-spacing:-0.861333pt;}
.ls9f{letter-spacing:-0.853333pt;}
.ls9e{letter-spacing:-0.840000pt;}
.ls6d{letter-spacing:-0.821333pt;}
.ls72{letter-spacing:-0.816000pt;}
.ls3c{letter-spacing:-0.800000pt;}
.ls61{letter-spacing:-0.768000pt;}
.ls28{letter-spacing:-0.762667pt;}
.lsb9{letter-spacing:-0.760000pt;}
.lsba{letter-spacing:-0.746667pt;}
.ls3e{letter-spacing:-0.704000pt;}
.lsc0{letter-spacing:-0.693333pt;}
.lsbf{letter-spacing:-0.680000pt;}
.lse{letter-spacing:-0.658667pt;}
.ls52{letter-spacing:-0.657067pt;}
.ls54{letter-spacing:-0.645333pt;}
.ls3a{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.608000pt;}
.ls24{letter-spacing:-0.586667pt;}
.ls7e{letter-spacing:-0.576000pt;}
.lsc4{letter-spacing:-0.560000pt;}
.ls7b{letter-spacing:-0.533333pt;}
.ls39{letter-spacing:-0.528000pt;}
.lsc1{letter-spacing:-0.520000pt;}
.ls9{letter-spacing:-0.506667pt;}
.ls5c{letter-spacing:-0.480000pt;}
.ls27{letter-spacing:-0.469333pt;}
.ls9c{letter-spacing:-0.440000pt;}
.ls92{letter-spacing:-0.432000pt;}
.ls7d{letter-spacing:-0.426667pt;}
.ls21{letter-spacing:-0.410667pt;}
.lsb2{letter-spacing:-0.400000pt;}
.ls5d{letter-spacing:-0.384000pt;}
.ls67{letter-spacing:-0.373333pt;}
.lsf{letter-spacing:-0.354667pt;}
.ls22{letter-spacing:-0.352000pt;}
.ls73{letter-spacing:-0.336000pt;}
.ls8f{letter-spacing:-0.328533pt;}
.ls9d{letter-spacing:-0.320000pt;}
.ls47{letter-spacing:-0.293333pt;}
.ls6c{letter-spacing:-0.287467pt;}
.lsb4{letter-spacing:-0.280000pt;}
.ls65{letter-spacing:-0.266667pt;}
.lsd{letter-spacing:-0.253333pt;}
.ls23{letter-spacing:-0.246400pt;}
.ls5f{letter-spacing:-0.240000pt;}
.ls3d{letter-spacing:-0.234667pt;}
.lsb3{letter-spacing:-0.213333pt;}
.ls5a{letter-spacing:-0.205333pt;}
.lsc3{letter-spacing:-0.200000pt;}
.ls71{letter-spacing:-0.192000pt;}
.ls2b{letter-spacing:-0.176000pt;}
.lsa0{letter-spacing:-0.160000pt;}
.ls8d{letter-spacing:-0.144000pt;}
.lsb5{letter-spacing:-0.120000pt;}
.ls25{letter-spacing:-0.117333pt;}
.ls66{letter-spacing:-0.106667pt;}
.lsb{letter-spacing:-0.101333pt;}
.ls2f{letter-spacing:-0.096000pt;}
.ls2d{letter-spacing:-0.072000pt;}
.ls2a{letter-spacing:-0.058667pt;}
.ls3b{letter-spacing:-0.053333pt;}
.lsc{letter-spacing:-0.050667pt;}
.ls2e{letter-spacing:-0.048000pt;}
.ls10{letter-spacing:-0.042667pt;}
.ls4b{letter-spacing:-0.041067pt;}
.ls6{letter-spacing:0.000000pt;}
.ls9b{letter-spacing:0.040000pt;}
.ls1{letter-spacing:0.050667pt;}
.ls94{letter-spacing:0.053333pt;}
.ls1a{letter-spacing:0.058667pt;}
.ls8b{letter-spacing:0.096000pt;}
.ls34{letter-spacing:0.106667pt;}
.ls26{letter-spacing:0.117333pt;}
.ls95{letter-spacing:0.120000pt;}
.ls8c{letter-spacing:0.144000pt;}
.ls0{letter-spacing:0.152000pt;}
.ls96{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.176000pt;}
.ls38{letter-spacing:0.192000pt;}
.lsa6{letter-spacing:0.200000pt;}
.ls91{letter-spacing:0.205333pt;}
.lsa5{letter-spacing:0.213333pt;}
.ls36{letter-spacing:0.216000pt;}
.ls14{letter-spacing:0.234667pt;}
.ls6e{letter-spacing:0.240000pt;}
.ls2{letter-spacing:0.253333pt;}
.ls77{letter-spacing:0.266667pt;}
.ls79{letter-spacing:0.288000pt;}
.ls18{letter-spacing:0.293333pt;}
.ls3{letter-spacing:0.304000pt;}
.ls62{letter-spacing:0.320000pt;}
.ls6b{letter-spacing:0.324000pt;}
.ls6a{letter-spacing:0.336000pt;}
.ls44{letter-spacing:0.352000pt;}
.ls4{letter-spacing:0.354667pt;}
.ls20{letter-spacing:0.360000pt;}
.ls4e{letter-spacing:0.373333pt;}
.ls11{letter-spacing:0.384000pt;}
.ls30{letter-spacing:0.396000pt;}
.lsa{letter-spacing:0.405333pt;}
.ls12{letter-spacing:0.410667pt;}
.ls17{letter-spacing:0.426667pt;}
.ls59{letter-spacing:0.432000pt;}
.ls43{letter-spacing:0.469333pt;}
.lsc2{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.504000pt;}
.ls31{letter-spacing:0.528000pt;}
.ls74{letter-spacing:0.533333pt;}
.ls16{letter-spacing:0.586667pt;}
.ls78{letter-spacing:0.624000pt;}
.ls13{letter-spacing:0.645333pt;}
.ls4f{letter-spacing:0.672000pt;}
.lsa2{letter-spacing:0.680000pt;}
.ls50{letter-spacing:0.684000pt;}
.ls7a{letter-spacing:0.693333pt;}
.ls4c{letter-spacing:0.704000pt;}
.lsa1{letter-spacing:0.746667pt;}
.ls40{letter-spacing:0.762667pt;}
.ls75{letter-spacing:0.800000pt;}
.ls49{letter-spacing:0.821333pt;}
.ls37{letter-spacing:0.828000pt;}
.lsa8{letter-spacing:0.840000pt;}
.lsa7{letter-spacing:0.853333pt;}
.ls35{letter-spacing:0.864000pt;}
.ls68{letter-spacing:0.880000pt;}
.lsa9{letter-spacing:0.906667pt;}
.ls2c{letter-spacing:0.936000pt;}
.ls41{letter-spacing:0.938667pt;}
.lsa3{letter-spacing:0.960000pt;}
.ls33{letter-spacing:0.997333pt;}
.lsaa{letter-spacing:1.000000pt;}
.lsab{letter-spacing:1.013333pt;}
.ls98{letter-spacing:1.040000pt;}
.ls87{letter-spacing:1.056000pt;}
.ls97{letter-spacing:1.066667pt;}
.ls5{letter-spacing:1.114667pt;}
.lsae{letter-spacing:1.120000pt;}
.lsad{letter-spacing:1.160000pt;}
.ls42{letter-spacing:1.173333pt;}
.ls1c{letter-spacing:1.200000pt;}
.ls1e{letter-spacing:1.224000pt;}
.lsac{letter-spacing:1.226667pt;}
.ls8a{letter-spacing:1.232000pt;}
.ls1d{letter-spacing:1.248000pt;}
.lsb7{letter-spacing:1.280000pt;}
.ls57{letter-spacing:1.290667pt;}
.ls9a{letter-spacing:1.320000pt;}
.ls76{letter-spacing:1.333333pt;}
.ls84{letter-spacing:1.349333pt;}
.ls19{letter-spacing:1.408000pt;}
.ls1b{letter-spacing:1.466667pt;}
.ls4a{letter-spacing:1.525333pt;}
.lsa4{letter-spacing:1.600000pt;}
.ls88{letter-spacing:1.760000pt;}
.ls89{letter-spacing:1.818667pt;}
.ls83{letter-spacing:1.877333pt;}
.ls32{letter-spacing:1.936000pt;}
.ls69{letter-spacing:1.994667pt;}
.ls81{letter-spacing:2.170667pt;}
.ls93{letter-spacing:2.346667pt;}
.ls86{letter-spacing:2.464000pt;}
.ls85{letter-spacing:2.522667pt;}
.ls82{letter-spacing:2.581333pt;}
.ls99{letter-spacing:16.213333pt;}
.lsb8{letter-spacing:18.666667pt;}
.wsd2{word-spacing:-17.130667pt;}
.wse1{word-spacing:-17.013333pt;}
.ws4c{word-spacing:-16.602667pt;}
.wsd0{word-spacing:-16.544000pt;}
.wsd3{word-spacing:-16.485333pt;}
.ws74{word-spacing:-16.192000pt;}
.ws1e{word-spacing:-16.133333pt;}
.wsd1{word-spacing:-15.957333pt;}
.wsd5{word-spacing:-15.898667pt;}
.ws6f{word-spacing:-15.840000pt;}
.wsd4{word-spacing:-15.781333pt;}
.wsd7{word-spacing:-15.722667pt;}
.ws4d{word-spacing:-15.664000pt;}
.ws6b{word-spacing:-15.605333pt;}
.wse2{word-spacing:-15.488000pt;}
.ws7c{word-spacing:-15.429333pt;}
.ws77{word-spacing:-15.370667pt;}
.ws69{word-spacing:-15.312000pt;}
.wsa8{word-spacing:-15.253333pt;}
.ws7b{word-spacing:-15.194667pt;}
.ws92{word-spacing:-15.136000pt;}
.ws17{word-spacing:-15.077333pt;}
.wsa6{word-spacing:-15.018667pt;}
.ws67{word-spacing:-14.960000pt;}
.ws75{word-spacing:-14.901333pt;}
.ws1a{word-spacing:-14.842667pt;}
.wscc{word-spacing:-14.784000pt;}
.ws1b{word-spacing:-14.725333pt;}
.ws16{word-spacing:-14.666667pt;}
.ws137{word-spacing:-14.613333pt;}
.ws6d{word-spacing:-14.608000pt;}
.ws138{word-spacing:-14.560000pt;}
.ws1c{word-spacing:-14.549333pt;}
.ws110{word-spacing:-14.453333pt;}
.ws8f{word-spacing:-14.432000pt;}
.wse6{word-spacing:-14.400000pt;}
.ws8d{word-spacing:-14.373333pt;}
.ws10c{word-spacing:-14.346667pt;}
.ws6e{word-spacing:-14.314667pt;}
.ws18{word-spacing:-14.256000pt;}
.ws1d{word-spacing:-14.197333pt;}
.ws109{word-spacing:-14.186667pt;}
.ws6a{word-spacing:-14.138667pt;}
.ws10e{word-spacing:-14.133333pt;}
.wsdb{word-spacing:-14.080000pt;}
.wsff{word-spacing:-14.026667pt;}
.ws123{word-spacing:-13.920000pt;}
.ws6c{word-spacing:-13.904000pt;}
.wsa9{word-spacing:-13.845333pt;}
.ws139{word-spacing:-13.813333pt;}
.ws9f{word-spacing:-13.786667pt;}
.wsbc{word-spacing:-13.760000pt;}
.ws7e{word-spacing:-13.728000pt;}
.ws7d{word-spacing:-13.669333pt;}
.wse9{word-spacing:-13.653333pt;}
.wsbb{word-spacing:-13.600000pt;}
.ws93{word-spacing:-13.552000pt;}
.wsda{word-spacing:-13.546667pt;}
.wse4{word-spacing:-13.493333pt;}
.wscf{word-spacing:-13.434667pt;}
.wsf1{word-spacing:-13.386667pt;}
.ws4f{word-spacing:-13.376000pt;}
.ws9e{word-spacing:-13.333333pt;}
.ws4e{word-spacing:-13.280000pt;}
.ws8c{word-spacing:-13.258667pt;}
.ws28{word-spacing:-13.248000pt;}
.wsb3{word-spacing:-13.226667pt;}
.ws24{word-spacing:-13.200000pt;}
.wsf3{word-spacing:-13.173333pt;}
.ws10a{word-spacing:-13.120000pt;}
.ws9d{word-spacing:-13.066667pt;}
.wscd{word-spacing:-13.024000pt;}
.ws13a{word-spacing:-13.013333pt;}
.ws103{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.920000pt;}
.wsea{word-spacing:-12.906667pt;}
.wsbd{word-spacing:-12.800000pt;}
.ws121{word-spacing:-12.693333pt;}
.ws80{word-spacing:-12.672000pt;}
.wsc2{word-spacing:-12.624000pt;}
.ws11d{word-spacing:-12.586667pt;}
.wsef{word-spacing:-12.480000pt;}
.ws114{word-spacing:-12.426667pt;}
.wsc3{word-spacing:-12.288000pt;}
.wsac{word-spacing:-12.240000pt;}
.ws133{word-spacing:-12.213333pt;}
.ws56{word-spacing:-12.192000pt;}
.ws104{word-spacing:-12.053333pt;}
.ws31{word-spacing:-12.000000pt;}
.ws2d{word-spacing:-11.952000pt;}
.ws2c{word-spacing:-11.904000pt;}
.wsbf{word-spacing:-11.520000pt;}
.wsc1{word-spacing:-11.424000pt;}
.wseb{word-spacing:-11.320000pt;}
.wsb2{word-spacing:-11.184000pt;}
.ws10f{word-spacing:-11.160000pt;}
.ws11e{word-spacing:-11.120000pt;}
.wse5{word-spacing:-11.040000pt;}
.ws10b{word-spacing:-11.000000pt;}
.ws100{word-spacing:-10.960000pt;}
.ws108{word-spacing:-10.840000pt;}
.ws79{word-spacing:-10.800000pt;}
.wsfe{word-spacing:-10.680000pt;}
.ws20{word-spacing:-10.624000pt;}
.ws11f{word-spacing:-10.320000pt;}
.ws78{word-spacing:-10.266667pt;}
.ws136{word-spacing:-10.240000pt;}
.ws76{word-spacing:-10.225600pt;}
.ws101{word-spacing:-10.200000pt;}
.ws135{word-spacing:-10.160000pt;}
.wse3{word-spacing:-10.120000pt;}
.ws91{word-spacing:-10.061333pt;}
.wsf0{word-spacing:-10.040000pt;}
.ws19{word-spacing:-10.020267pt;}
.wsed{word-spacing:-10.000000pt;}
.wsa7{word-spacing:-9.979200pt;}
.wsdc{word-spacing:-9.938133pt;}
.ws29{word-spacing:-9.936000pt;}
.ws112{word-spacing:-9.880000pt;}
.wsf4{word-spacing:-9.840000pt;}
.ws132{word-spacing:-9.800000pt;}
.ws131{word-spacing:-9.760000pt;}
.ws113{word-spacing:-9.720000pt;}
.wse8{word-spacing:-9.680000pt;}
.ws7f{word-spacing:-9.609600pt;}
.ws106{word-spacing:-9.600000pt;}
.wse7{word-spacing:-9.560000pt;}
.ws102{word-spacing:-9.520000pt;}
.ws127{word-spacing:-9.480000pt;}
.ws134{word-spacing:-9.440000pt;}
.ws2f{word-spacing:-9.396000pt;}
.ws120{word-spacing:-9.360000pt;}
.ws126{word-spacing:-9.320000pt;}
.ws11c{word-spacing:-9.240000pt;}
.ws55{word-spacing:-9.216000pt;}
.ws111{word-spacing:-9.200000pt;}
.wsee{word-spacing:-9.160000pt;}
.ws105{word-spacing:-9.040000pt;}
.wsbe{word-spacing:-8.960000pt;}
.ws13b{word-spacing:-8.880000pt;}
.ws124{word-spacing:-8.760000pt;}
.ws125{word-spacing:-8.120000pt;}
.ws54{word-spacing:-1.248000pt;}
.ws90{word-spacing:-0.762667pt;}
.ws47{word-spacing:-0.704000pt;}
.ws3e{word-spacing:-0.645333pt;}
.wsa2{word-spacing:-0.640000pt;}
.wsa{word-spacing:-0.608000pt;}
.ws3f{word-spacing:-0.586667pt;}
.ws8b{word-spacing:-0.576000pt;}
.wsfd{word-spacing:-0.533333pt;}
.ws45{word-spacing:-0.528000pt;}
.ws9{word-spacing:-0.506667pt;}
.ws61{word-spacing:-0.480000pt;}
.ws5c{word-spacing:-0.469333pt;}
.wsd9{word-spacing:-0.432000pt;}
.ws118{word-spacing:-0.426667pt;}
.ws35{word-spacing:-0.410667pt;}
.ws11{word-spacing:-0.405333pt;}
.wsfb{word-spacing:-0.373333pt;}
.ws10{word-spacing:-0.354667pt;}
.ws33{word-spacing:-0.352000pt;}
.ws4b{word-spacing:-0.336000pt;}
.wsa4{word-spacing:-0.320000pt;}
.ws14{word-spacing:-0.304000pt;}
.ws73{word-spacing:-0.293333pt;}
.wsfa{word-spacing:-0.266667pt;}
.ws44{word-spacing:-0.234667pt;}
.wsf9{word-spacing:-0.213333pt;}
.ws9b{word-spacing:-0.192000pt;}
.ws3b{word-spacing:-0.176000pt;}
.ws13d{word-spacing:-0.160000pt;}
.ws5{word-spacing:-0.152000pt;}
.wsb8{word-spacing:-0.144000pt;}
.ws87{word-spacing:-0.117333pt;}
.ws130{word-spacing:-0.106667pt;}
.ws97{word-spacing:-0.096000pt;}
.ws63{word-spacing:-0.058667pt;}
.ws5e{word-spacing:-0.053333pt;}
.ws3{word-spacing:-0.050667pt;}
.ws9a{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:0.050667pt;}
.ws12f{word-spacing:0.053333pt;}
.ws3d{word-spacing:0.058667pt;}
.ws13{word-spacing:0.101333pt;}
.ws60{word-spacing:0.106667pt;}
.ws42{word-spacing:0.117333pt;}
.wsb9{word-spacing:0.144000pt;}
.ws8{word-spacing:0.152000pt;}
.ws5d{word-spacing:0.160000pt;}
.ws34{word-spacing:0.176000pt;}
.wsd{word-spacing:0.202667pt;}
.wsec{word-spacing:0.213333pt;}
.ws72{word-spacing:0.234667pt;}
.wse0{word-spacing:0.240000pt;}
.ws2{word-spacing:0.253333pt;}
.wsf8{word-spacing:0.266667pt;}
.wsa5{word-spacing:0.293333pt;}
.ws12{word-spacing:0.304000pt;}
.ws119{word-spacing:0.320000pt;}
.ws98{word-spacing:0.336000pt;}
.ws5a{word-spacing:0.352000pt;}
.wsa1{word-spacing:0.373333pt;}
.ws68{word-spacing:0.410667pt;}
.ws12d{word-spacing:0.426667pt;}
.ws66{word-spacing:0.432000pt;}
.ws37{word-spacing:0.469333pt;}
.ws89{word-spacing:0.480000pt;}
.ws64{word-spacing:0.528000pt;}
.wsc6{word-spacing:0.533333pt;}
.ws39{word-spacing:0.574933pt;}
.ws65{word-spacing:0.576000pt;}
.ws88{word-spacing:0.586667pt;}
.ws5f{word-spacing:0.640000pt;}
.ws70{word-spacing:0.645333pt;}
.ws84{word-spacing:0.657067pt;}
.wsca{word-spacing:0.693333pt;}
.ws3c{word-spacing:0.704000pt;}
.ws12b{word-spacing:0.746667pt;}
.ws71{word-spacing:0.762667pt;}
.ws4a{word-spacing:0.768000pt;}
.wsc4{word-spacing:0.800000pt;}
.wsae{word-spacing:0.816000pt;}
.ws36{word-spacing:0.821333pt;}
.wsc9{word-spacing:0.853333pt;}
.ws6{word-spacing:0.861333pt;}
.ws62{word-spacing:0.862400pt;}
.wscb{word-spacing:0.864000pt;}
.ws96{word-spacing:0.880000pt;}
.wsc5{word-spacing:0.906667pt;}
.wsf{word-spacing:0.912000pt;}
.ws83{word-spacing:0.938667pt;}
.wsaf{word-spacing:0.960000pt;}
.ws32{word-spacing:0.997333pt;}
.ws8a{word-spacing:1.008000pt;}
.wse{word-spacing:1.013333pt;}
.ws59{word-spacing:1.056000pt;}
.ws128{word-spacing:1.066667pt;}
.ws99{word-spacing:1.104000pt;}
.ws4{word-spacing:1.114667pt;}
.ws116{word-spacing:1.120000pt;}
.ws3a{word-spacing:1.173333pt;}
.wsce{word-spacing:1.200000pt;}
.ws7{word-spacing:1.216000pt;}
.wsa3{word-spacing:1.226667pt;}
.ws38{word-spacing:1.232000pt;}
.wsc{word-spacing:1.266667pt;}
.wsfc{word-spacing:1.280000pt;}
.ws40{word-spacing:1.290667pt;}
.wsba{word-spacing:1.333333pt;}
.ws41{word-spacing:1.349333pt;}
.ws46{word-spacing:1.408000pt;}
.ws5b{word-spacing:1.466667pt;}
.wsdd{word-spacing:1.525333pt;}
.ws8e{word-spacing:1.584000pt;}
.wsc7{word-spacing:1.600000pt;}
.wsa0{word-spacing:1.642667pt;}
.ws11b{word-spacing:1.653333pt;}
.ws13c{word-spacing:2.240000pt;}
.ws43{word-spacing:2.288000pt;}
.ws2a{word-spacing:2.498667pt;}
.ws2b{word-spacing:2.536000pt;}
.ws85{word-spacing:2.581333pt;}
.ws86{word-spacing:2.640000pt;}
.ws12a{word-spacing:2.720000pt;}
.wsf2{word-spacing:2.840000pt;}
.ws22{word-spacing:2.968000pt;}
.wsc0{word-spacing:2.972000pt;}
.ws21{word-spacing:2.974667pt;}
.ws82{word-spacing:2.992000pt;}
.ws58{word-spacing:3.096000pt;}
.ws57{word-spacing:3.122667pt;}
.ws122{word-spacing:3.346667pt;}
.ws52{word-spacing:3.488000pt;}
.ws9c{word-spacing:3.578667pt;}
.ws81{word-spacing:3.604000pt;}
.ws53{word-spacing:3.712000pt;}
.ws10d{word-spacing:3.733333pt;}
.ws15{word-spacing:3.754667pt;}
.ws117{word-spacing:3.786667pt;}
.wsaa{word-spacing:3.824000pt;}
.ws30{word-spacing:3.913333pt;}
.wsab{word-spacing:3.984000pt;}
.ws2e{word-spacing:3.986667pt;}
.ws107{word-spacing:4.026667pt;}
.wsad{word-spacing:4.036000pt;}
.ws12e{word-spacing:4.320000pt;}
.wsd6{word-spacing:4.576000pt;}
.wsc8{word-spacing:4.746667pt;}
.ws115{word-spacing:5.333333pt;}
.ws12c{word-spacing:5.546667pt;}
.wsd8{word-spacing:5.690667pt;}
.wsdf{word-spacing:5.757333pt;}
.ws49{word-spacing:6.372000pt;}
.ws7a{word-spacing:6.512000pt;}
.wsde{word-spacing:7.333333pt;}
.wsf5{word-spacing:7.568000pt;}
.wsf6{word-spacing:7.626667pt;}
.ws94{word-spacing:8.016000pt;}
.ws48{word-spacing:8.496000pt;}
.wsb1{word-spacing:8.784000pt;}
.ws95{word-spacing:9.552000pt;}
.wsf7{word-spacing:9.797333pt;}
.ws129{word-spacing:10.186667pt;}
.ws11a{word-spacing:10.720000pt;}
.ws26{word-spacing:11.342667pt;}
.ws27{word-spacing:11.364000pt;}
.ws25{word-spacing:11.442667pt;}
.wsb0{word-spacing:12.624000pt;}
.ws13e{word-spacing:18.666667pt;}
.ws51{word-spacing:31.440000pt;}
.ws1f{word-spacing:31.744000pt;}
.ws23{word-spacing:32.016000pt;}
.ws50{word-spacing:114.304000pt;}
.wsb6{word-spacing:124.960000pt;}
.wsb5{word-spacing:135.306667pt;}
.wsb4{word-spacing:200.533333pt;}
.wsb7{word-spacing:262.400000pt;}
._8{margin-left:-9.937333pt;}
._26{margin-left:-8.746667pt;}
._9{margin-left:-7.744000pt;}
._4{margin-left:-6.029333pt;}
._e{margin-left:-4.818667pt;}
._1{margin-left:-3.901333pt;}
._2{margin-left:-2.533333pt;}
._0{margin-left:-1.165333pt;}
._3{width:1.013333pt;}
._f{width:1.994667pt;}
._b{width:3.461333pt;}
._a{width:5.173333pt;}
._c{width:6.386667pt;}
._10{width:11.005333pt;}
._27{width:12.325333pt;}
._d{width:13.904000pt;}
._25{width:15.469333pt;}
._21{width:20.016000pt;}
._28{width:29.272000pt;}
._5{width:42.624000pt;}
._7{width:44.016000pt;}
._1a{width:82.346667pt;}
._1b{width:168.240000pt;}
._1f{width:184.792000pt;}
._15{width:218.880000pt;}
._18{width:220.453333pt;}
._14{width:224.933333pt;}
._13{width:256.586667pt;}
._23{width:268.632000pt;}
._24{width:294.338667pt;}
._22{width:297.920000pt;}
._16{width:337.920000pt;}
._1c{width:344.880000pt;}
._17{width:351.306667pt;}
._1e{width:365.912000pt;}
._1d{width:433.493333pt;}
._20{width:479.413333pt;}
._12{width:591.893333pt;}
._19{width:594.560000pt;}
._11{width:602.853333pt;}
._6{width:1113.472000pt;}
.fs7{font-size:36.000000pt;}
.fs9{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs6{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:48.101333pt;}
.y56{bottom:48.109333pt;}
.y1d9{bottom:48.114667pt;}
.y223{bottom:48.205333pt;}
.y1a8{bottom:48.258667pt;}
.ybb{bottom:48.330667pt;}
.y139{bottom:48.440000pt;}
.y172{bottom:48.560000pt;}
.ye1{bottom:48.664000pt;}
.y152{bottom:48.674667pt;}
.y106{bottom:49.021333pt;}
.ya0{bottom:49.050667pt;}
.y231{bottom:49.080000pt;}
.y202{bottom:51.120000pt;}
.y283{bottom:51.453333pt;}
.y1e{bottom:55.320000pt;}
.y78{bottom:60.773333pt;}
.y55{bottom:60.781333pt;}
.y1d8{bottom:60.786667pt;}
.y222{bottom:60.877333pt;}
.y1a7{bottom:60.930667pt;}
.yba{bottom:61.002667pt;}
.y171{bottom:61.232000pt;}
.ye0{bottom:61.336000pt;}
.y151{bottom:61.341333pt;}
.y138{bottom:63.766667pt;}
.y105{bottom:64.348000pt;}
.y9f{bottom:64.377333pt;}
.y230{bottom:64.406667pt;}
.y253{bottom:65.120000pt;}
.y282{bottom:65.453333pt;}
.y201{bottom:66.446667pt;}
.y54{bottom:73.448000pt;}
.y1d7{bottom:73.458667pt;}
.y221{bottom:73.549333pt;}
.y1a6{bottom:73.602667pt;}
.yb9{bottom:73.674667pt;}
.y170{bottom:73.904000pt;}
.y1d{bottom:73.934000pt;}
.ydf{bottom:74.008000pt;}
.y150{bottom:74.013333pt;}
.y137{bottom:79.093333pt;}
.y252{bottom:79.120000pt;}
.y281{bottom:79.453333pt;}
.y104{bottom:79.674667pt;}
.y9e{bottom:79.704000pt;}
.y22f{bottom:79.733333pt;}
.y200{bottom:81.773333pt;}
.y53{bottom:86.114667pt;}
.y1d6{bottom:86.130667pt;}
.y220{bottom:86.221333pt;}
.y1a5{bottom:86.274667pt;}
.yb8{bottom:86.346667pt;}
.y16f{bottom:86.576000pt;}
.yde{bottom:86.664000pt;}
.y1c{bottom:87.272000pt;}
.y251{bottom:93.120000pt;}
.y280{bottom:93.453333pt;}
.y136{bottom:94.420000pt;}
.y103{bottom:95.001333pt;}
.y9d{bottom:95.030667pt;}
.y22e{bottom:95.060000pt;}
.y1ff{bottom:97.100000pt;}
.y52{bottom:98.781333pt;}
.y1d5{bottom:98.802667pt;}
.y21f{bottom:98.893333pt;}
.y1a4{bottom:98.946667pt;}
.y120{bottom:99.018667pt;}
.y16e{bottom:99.248000pt;}
.ydd{bottom:99.336000pt;}
.y1b{bottom:100.610000pt;}
.y1c1{bottom:102.600000pt;}
.y250{bottom:107.120000pt;}
.y27f{bottom:107.453333pt;}
.y135{bottom:109.746667pt;}
.y102{bottom:110.328000pt;}
.y9c{bottom:110.357333pt;}
.y22d{bottom:110.386667pt;}
.y77{bottom:110.546667pt;}
.y51{bottom:111.453333pt;}
.y1d4{bottom:111.474667pt;}
.y11f{bottom:111.690667pt;}
.y16d{bottom:111.920000pt;}
.ydc{bottom:112.008000pt;}
.y1fe{bottom:112.426667pt;}
.y1a{bottom:113.948000pt;}
.y1c0{bottom:117.926667pt;}
.y14f{bottom:117.966667pt;}
.y24f{bottom:121.120000pt;}
.y27e{bottom:121.453333pt;}
.y1d3{bottom:124.146667pt;}
.y11e{bottom:124.362667pt;}
.ydb{bottom:124.680000pt;}
.y134{bottom:125.073333pt;}
.yb7{bottom:125.470667pt;}
.y240{bottom:125.533333pt;}
.y101{bottom:125.654667pt;}
.y9b{bottom:125.684000pt;}
.y22c{bottom:125.713333pt;}
.y76{bottom:125.873333pt;}
.y19{bottom:127.286000pt;}
.y1fd{bottom:127.753333pt;}
.y14e{bottom:133.293333pt;}
.y24e{bottom:135.120000pt;}
.y27d{bottom:135.453333pt;}
.y1a3{bottom:136.773333pt;}
.y11d{bottom:137.034667pt;}
.y133{bottom:140.400000pt;}
.y18{bottom:140.624000pt;}
.yb6{bottom:140.797333pt;}
.y23f{bottom:140.860000pt;}
.y1bf{bottom:140.924000pt;}
.y100{bottom:140.981333pt;}
.y9a{bottom:141.010667pt;}
.y22b{bottom:141.040000pt;}
.y75{bottom:141.200000pt;}
.y1fc{bottom:143.080000pt;}
.y16c{bottom:146.846667pt;}
.y21e{bottom:148.466667pt;}
.y14d{bottom:148.620000pt;}
.y24d{bottom:149.120000pt;}
.y27c{bottom:149.453333pt;}
.y11c{bottom:149.706667pt;}
.y1a2{bottom:153.213333pt;}
.y17{bottom:153.962000pt;}
.y132{bottom:155.726667pt;}
.y23e{bottom:156.186667pt;}
.yff{bottom:156.308000pt;}
.y50{bottom:156.320000pt;}
.y99{bottom:156.337333pt;}
.y22a{bottom:156.366667pt;}
.y74{bottom:156.526667pt;}
.y1fb{bottom:158.406667pt;}
.y16b{bottom:162.173333pt;}
.y24c{bottom:163.120000pt;}
.y27b{bottom:163.453333pt;}
.y21d{bottom:163.793333pt;}
.yb5{bottom:163.794667pt;}
.y1be{bottom:163.921333pt;}
.y14c{bottom:163.946667pt;}
.y1a1{bottom:167.213333pt;}
.y16{bottom:167.300000pt;}
.y131{bottom:171.053333pt;}
.yda{bottom:171.492000pt;}
.y1d2{bottom:171.504000pt;}
.y23d{bottom:171.513333pt;}
.y4f{bottom:171.646667pt;}
.y98{bottom:171.664000pt;}
.y229{bottom:171.693333pt;}
.y73{bottom:171.853333pt;}
.y1fa{bottom:173.733333pt;}
.y24b{bottom:177.120000pt;}
.y27a{bottom:177.453333pt;}
.y16a{bottom:177.500000pt;}
.yb4{bottom:179.121333pt;}
.y1bd{bottom:179.248000pt;}
.y14b{bottom:179.273333pt;}
.y21c{bottom:179.349333pt;}
.y15{bottom:180.638000pt;}
.y1a0{bottom:181.213333pt;}
.y130{bottom:186.380000pt;}
.yd9{bottom:186.818667pt;}
.y11b{bottom:186.826667pt;}
.y1d1{bottom:186.830667pt;}
.y23c{bottom:186.840000pt;}
.y4e{bottom:186.973333pt;}
.yfe{bottom:186.976000pt;}
.y97{bottom:186.990667pt;}
.y228{bottom:187.020000pt;}
.y72{bottom:187.180000pt;}
.y1f9{bottom:189.060000pt;}
.y24a{bottom:191.120000pt;}
.y279{bottom:191.453333pt;}
.y169{bottom:192.826667pt;}
.y14{bottom:193.976000pt;}
.y14a{bottom:194.600000pt;}
.y21b{bottom:194.676000pt;}
.y19f{bottom:198.240000pt;}
.y12f{bottom:201.706667pt;}
.yd8{bottom:202.145333pt;}
.y11a{bottom:202.153333pt;}
.y1d0{bottom:202.157333pt;}
.y23b{bottom:202.166667pt;}
.y4d{bottom:202.300000pt;}
.yfd{bottom:202.302667pt;}
.y96{bottom:202.317333pt;}
.y227{bottom:202.346667pt;}
.y71{bottom:202.506667pt;}
.y1f8{bottom:204.386667pt;}
.y249{bottom:205.120000pt;}
.y278{bottom:205.453333pt;}
.y13{bottom:207.314000pt;}
.y168{bottom:208.153333pt;}
.y149{bottom:209.926667pt;}
.y1c8{bottom:209.988000pt;}
.y21a{bottom:210.002667pt;}
.y19e{bottom:212.240000pt;}
.y12e{bottom:217.033333pt;}
.yb3{bottom:217.460000pt;}
.yd7{bottom:217.472000pt;}
.y119{bottom:217.480000pt;}
.y1cf{bottom:217.484000pt;}
.y23a{bottom:217.493333pt;}
.y1bc{bottom:217.586667pt;}
.y4c{bottom:217.626667pt;}
.yfc{bottom:217.629333pt;}
.y95{bottom:217.644000pt;}
.y226{bottom:217.673333pt;}
.y70{bottom:217.833333pt;}
.y248{bottom:219.120000pt;}
.y277{bottom:219.453333pt;}
.y1f7{bottom:219.713333pt;}
.y12{bottom:220.652000pt;}
.y167{bottom:223.480000pt;}
.y148{bottom:225.253333pt;}
.y1c7{bottom:225.314667pt;}
.y219{bottom:225.329333pt;}
.y19d{bottom:226.240000pt;}
.y12d{bottom:232.360000pt;}
.yd6{bottom:232.798667pt;}
.y118{bottom:232.806667pt;}
.y1ce{bottom:232.810667pt;}
.y239{bottom:232.820000pt;}
.yb2{bottom:232.890667pt;}
.y1bb{bottom:232.913333pt;}
.y4b{bottom:232.953333pt;}
.yfb{bottom:232.956000pt;}
.y94{bottom:232.970667pt;}
.y225{bottom:233.000000pt;}
.y247{bottom:233.120000pt;}
.y6f{bottom:233.160000pt;}
.y276{bottom:233.453333pt;}
.y11{bottom:233.990000pt;}
.y1f6{bottom:235.040000pt;}
.y166{bottom:238.806667pt;}
.y147{bottom:240.580000pt;}
.y218{bottom:240.656000pt;}
.y19c{bottom:243.266667pt;}
.y246{bottom:247.120000pt;}
.y275{bottom:247.453333pt;}
.y12c{bottom:247.686667pt;}
.yd5{bottom:248.125333pt;}
.y117{bottom:248.133333pt;}
.y1cd{bottom:248.137333pt;}
.y238{bottom:248.146667pt;}
.yb1{bottom:248.217333pt;}
.y1ba{bottom:248.240000pt;}
.y4a{bottom:248.280000pt;}
.yfa{bottom:248.282667pt;}
.y93{bottom:248.297333pt;}
.y224{bottom:248.326667pt;}
.y6e{bottom:248.486667pt;}
.y1f5{bottom:250.366667pt;}
.y165{bottom:254.133333pt;}
.y146{bottom:255.906667pt;}
.y217{bottom:255.982667pt;}
.y19b{bottom:257.266667pt;}
.y10{bottom:260.653333pt;}
.y245{bottom:261.120000pt;}
.y274{bottom:261.453333pt;}
.y12b{bottom:263.013333pt;}
.yd4{bottom:263.452000pt;}
.y116{bottom:263.460000pt;}
.y1cc{bottom:263.464000pt;}
.y237{bottom:263.473333pt;}
.yb0{bottom:263.544000pt;}
.y1b9{bottom:263.566667pt;}
.y49{bottom:263.606667pt;}
.yf9{bottom:263.609333pt;}
.y92{bottom:263.624000pt;}
.y1c6{bottom:263.653333pt;}
.y6d{bottom:263.813333pt;}
.y1f4{bottom:265.693333pt;}
.y164{bottom:269.460000pt;}
.y145{bottom:271.233333pt;}
.y19a{bottom:271.266667pt;}
.y216{bottom:271.309333pt;}
.y244{bottom:275.120000pt;}
.y273{bottom:275.453333pt;}
.y12a{bottom:278.340000pt;}
.y1cb{bottom:278.790667pt;}
.y236{bottom:278.800000pt;}
.yaf{bottom:278.870667pt;}
.y1b8{bottom:278.893333pt;}
.y48{bottom:278.933333pt;}
.yf8{bottom:278.936000pt;}
.y91{bottom:278.950667pt;}
.y115{bottom:278.953333pt;}
.y1c5{bottom:278.980000pt;}
.y6c{bottom:279.140000pt;}
.y1f3{bottom:281.020000pt;}
.y163{bottom:284.786667pt;}
.y199{bottom:285.266667pt;}
.y144{bottom:286.560000pt;}
.y215{bottom:286.636000pt;}
.y243{bottom:289.120000pt;}
.y272{bottom:289.453333pt;}
.yf{bottom:292.593333pt;}
.y129{bottom:293.666667pt;}
.y1ca{bottom:294.117333pt;}
.y235{bottom:294.126667pt;}
.yd3{bottom:294.153333pt;}
.yae{bottom:294.197333pt;}
.y1b7{bottom:294.220000pt;}
.y47{bottom:294.260000pt;}
.yf7{bottom:294.262667pt;}
.y114{bottom:294.280000pt;}
.y1c4{bottom:294.306667pt;}
.y6b{bottom:294.466667pt;}
.y1f2{bottom:296.346667pt;}
.y198{bottom:299.266667pt;}
.y162{bottom:300.113333pt;}
.y143{bottom:301.886667pt;}
.y90{bottom:301.948000pt;}
.y214{bottom:301.962667pt;}
.y242{bottom:303.120000pt;}
.y271{bottom:303.453333pt;}
.y234{bottom:309.473333pt;}
.yd2{bottom:309.480000pt;}
.y1b6{bottom:309.546667pt;}
.y46{bottom:309.586667pt;}
.yf6{bottom:309.589333pt;}
.y113{bottom:309.606667pt;}
.y1c3{bottom:309.633333pt;}
.y6a{bottom:309.793333pt;}
.ye{bottom:311.264000pt;}
.y1f1{bottom:311.673333pt;}
.y197{bottom:313.266667pt;}
.y161{bottom:315.440000pt;}
.y1c9{bottom:317.114667pt;}
.yad{bottom:317.194667pt;}
.y142{bottom:317.213333pt;}
.y213{bottom:317.289333pt;}
.y270{bottom:317.453333pt;}
.y128{bottom:322.226667pt;}
.yd{bottom:324.602000pt;}
.y233{bottom:324.800000pt;}
.yd1{bottom:324.806667pt;}
.y1b5{bottom:324.873333pt;}
.y45{bottom:324.913333pt;}
.yf5{bottom:324.916000pt;}
.y112{bottom:324.933333pt;}
.y241{bottom:324.945333pt;}
.y1c2{bottom:324.960000pt;}
.y69{bottom:325.133333pt;}
.y1f0{bottom:327.000000pt;}
.y196{bottom:330.293333pt;}
.y160{bottom:330.766667pt;}
.y26f{bottom:331.453333pt;}
.y141{bottom:332.540000pt;}
.y212{bottom:332.616000pt;}
.y127{bottom:336.226667pt;}
.yc{bottom:337.940000pt;}
.y232{bottom:340.126667pt;}
.yd0{bottom:340.133333pt;}
.y1b4{bottom:340.200000pt;}
.y44{bottom:340.240000pt;}
.y111{bottom:340.260000pt;}
.y8f{bottom:340.286667pt;}
.y68{bottom:340.460000pt;}
.y1ef{bottom:342.326667pt;}
.y195{bottom:344.293333pt;}
.y26e{bottom:345.453333pt;}
.y15f{bottom:346.093333pt;}
.y140{bottom:347.866667pt;}
.y211{bottom:347.942667pt;}
.y126{bottom:350.226667pt;}
.yb{bottom:351.278000pt;}
.ycf{bottom:355.460000pt;}
.y1b3{bottom:355.526667pt;}
.yac{bottom:355.533333pt;}
.y43{bottom:355.566667pt;}
.yf4{bottom:355.584000pt;}
.y110{bottom:355.586667pt;}
.y8e{bottom:355.613333pt;}
.y67{bottom:355.786667pt;}
.y1ee{bottom:357.653333pt;}
.y194{bottom:358.293333pt;}
.y26d{bottom:359.453333pt;}
.y15e{bottom:361.420000pt;}
.y13f{bottom:363.193333pt;}
.y210{bottom:363.269333pt;}
.y125{bottom:364.226667pt;}
.ya{bottom:364.616000pt;}
.yce{bottom:370.833333pt;}
.y1b2{bottom:370.853333pt;}
.yab{bottom:370.860000pt;}
.y42{bottom:370.893333pt;}
.yf3{bottom:370.910667pt;}
.y10f{bottom:370.913333pt;}
.y8d{bottom:370.940000pt;}
.y193{bottom:372.293333pt;}
.y1ed{bottom:372.980000pt;}
.y26c{bottom:373.453333pt;}
.y15d{bottom:376.746667pt;}
.y9{bottom:377.954000pt;}
.y124{bottom:378.226667pt;}
.y13e{bottom:378.520000pt;}
.y20f{bottom:378.596000pt;}
.ycd{bottom:386.160000pt;}
.y1b1{bottom:386.180000pt;}
.yaa{bottom:386.186667pt;}
.y41{bottom:386.220000pt;}
.yf2{bottom:386.237333pt;}
.y10e{bottom:386.240000pt;}
.y8c{bottom:386.266667pt;}
.y192{bottom:386.293333pt;}
.y66{bottom:386.453333pt;}
.y26b{bottom:387.453333pt;}
.y1ec{bottom:388.306667pt;}
.y8{bottom:391.292000pt;}
.y15c{bottom:392.073333pt;}
.y123{bottom:392.226667pt;}
.y13d{bottom:393.846667pt;}
.y20e{bottom:393.922667pt;}
.y65{bottom:400.453333pt;}
.y26a{bottom:401.453333pt;}
.ycc{bottom:401.486667pt;}
.y1b0{bottom:401.506667pt;}
.ya9{bottom:401.513333pt;}
.y40{bottom:401.546667pt;}
.yf1{bottom:401.564000pt;}
.y10d{bottom:401.566667pt;}
.y8b{bottom:401.593333pt;}
.y191{bottom:403.320000pt;}
.y1eb{bottom:403.633333pt;}
.y7{bottom:404.630000pt;}
.y122{bottom:406.226667pt;}
.y15b{bottom:407.400000pt;}
.y13c{bottom:409.173333pt;}
.y20d{bottom:409.249333pt;}
.y64{bottom:414.453333pt;}
.y269{bottom:415.453333pt;}
.ycb{bottom:416.813333pt;}
.y1af{bottom:416.833333pt;}
.ya8{bottom:416.840000pt;}
.y3f{bottom:416.873333pt;}
.yf0{bottom:416.890667pt;}
.y10c{bottom:416.893333pt;}
.y8a{bottom:416.920000pt;}
.y190{bottom:417.320000pt;}
.y6{bottom:417.968000pt;}
.y1ea{bottom:418.960000pt;}
.y121{bottom:420.226667pt;}
.y15a{bottom:422.726667pt;}
.y20c{bottom:424.576000pt;}
.y63{bottom:428.453333pt;}
.y268{bottom:429.453333pt;}
.y5{bottom:431.306000pt;}
.y18f{bottom:431.320000pt;}
.yca{bottom:432.140000pt;}
.y1ae{bottom:432.160000pt;}
.ya7{bottom:432.166667pt;}
.y13b{bottom:432.170667pt;}
.y3e{bottom:432.200000pt;}
.yef{bottom:432.217333pt;}
.y10b{bottom:432.220000pt;}
.y89{bottom:432.246667pt;}
.y1e9{bottom:434.286667pt;}
.y159{bottom:438.053333pt;}
.y20b{bottom:439.902667pt;}
.y62{bottom:442.453333pt;}
.y267{bottom:443.453333pt;}
.y4{bottom:444.644000pt;}
.yc9{bottom:447.466667pt;}
.y1ad{bottom:447.486667pt;}
.ya6{bottom:447.493333pt;}
.y3d{bottom:447.526667pt;}
.yee{bottom:447.544000pt;}
.y10a{bottom:447.546667pt;}
.y88{bottom:447.573333pt;}
.y18e{bottom:448.333333pt;}
.y1e8{bottom:449.613333pt;}
.y158{bottom:453.380000pt;}
.y13a{bottom:455.168000pt;}
.y20a{bottom:455.229333pt;}
.y61{bottom:456.453333pt;}
.y266{bottom:457.453333pt;}
.y3{bottom:457.982000pt;}
.y18d{bottom:462.333333pt;}
.yc8{bottom:462.793333pt;}
.y1ac{bottom:462.813333pt;}
.ya5{bottom:462.820000pt;}
.y3c{bottom:462.853333pt;}
.yed{bottom:462.870667pt;}
.y109{bottom:462.873333pt;}
.y87{bottom:462.900000pt;}
.y1e7{bottom:464.940000pt;}
.y157{bottom:468.706667pt;}
.y209{bottom:470.556000pt;}
.y2{bottom:471.320000pt;}
.y265{bottom:471.453333pt;}
.y1ab{bottom:478.140000pt;}
.ya4{bottom:478.146667pt;}
.y3b{bottom:478.180000pt;}
.yec{bottom:478.197333pt;}
.yc7{bottom:478.200000pt;}
.y86{bottom:478.226667pt;}
.y1e6{bottom:480.266667pt;}
.y156{bottom:484.033333pt;}
.y264{bottom:485.453333pt;}
.y18c{bottom:485.826667pt;}
.y60{bottom:485.853333pt;}
.y208{bottom:485.882667pt;}
.y1aa{bottom:493.466667pt;}
.ya3{bottom:493.473333pt;}
.y3a{bottom:493.506667pt;}
.yc6{bottom:493.526667pt;}
.y85{bottom:493.553333pt;}
.y1e5{bottom:495.593333pt;}
.y1{bottom:497.986667pt;}
.y155{bottom:499.360000pt;}
.y263{bottom:499.453333pt;}
.y18b{bottom:501.153333pt;}
.y5f{bottom:501.180000pt;}
.y207{bottom:501.209333pt;}
.y1a9{bottom:508.793333pt;}
.ya2{bottom:508.800000pt;}
.y39{bottom:508.833333pt;}
.yc5{bottom:508.853333pt;}
.yeb{bottom:508.865333pt;}
.y84{bottom:508.880000pt;}
.y1e4{bottom:510.920000pt;}
.y262{bottom:513.453333pt;}
.y154{bottom:514.686667pt;}
.y18a{bottom:516.480000pt;}
.y5e{bottom:516.506667pt;}
.y206{bottom:516.536000pt;}
.y29{bottom:519.013333pt;}
.ya1{bottom:524.126667pt;}
.y38{bottom:524.160000pt;}
.yc4{bottom:524.180000pt;}
.yea{bottom:524.192000pt;}
.y83{bottom:524.206667pt;}
.y1e3{bottom:526.246667pt;}
.y261{bottom:527.453333pt;}
.y153{bottom:530.013333pt;}
.y189{bottom:531.806667pt;}
.y5d{bottom:531.833333pt;}
.y205{bottom:531.862667pt;}
.y37{bottom:539.486667pt;}
.yc3{bottom:539.506667pt;}
.ye9{bottom:539.518667pt;}
.y82{bottom:539.533333pt;}
.y260{bottom:541.453333pt;}
.y1e2{bottom:541.573333pt;}
.y28{bottom:544.754667pt;}
.y188{bottom:547.133333pt;}
.y5c{bottom:547.160000pt;}
.y204{bottom:547.189333pt;}
.y36{bottom:554.813333pt;}
.yc2{bottom:554.833333pt;}
.ye8{bottom:554.845333pt;}
.y81{bottom:554.860000pt;}
.y25f{bottom:555.453333pt;}
.y1e1{bottom:556.900000pt;}
.y27{bottom:557.426667pt;}
.y187{bottom:562.460000pt;}
.y5b{bottom:562.486667pt;}
.y203{bottom:562.516000pt;}
.y17d{bottom:563.826667pt;}
.y25e{bottom:569.453333pt;}
.y35{bottom:570.140000pt;}
.yc1{bottom:570.160000pt;}
.ye7{bottom:570.172000pt;}
.y80{bottom:570.186667pt;}
.y1e0{bottom:572.226667pt;}
.y26{bottom:573.426667pt;}
.y5a{bottom:577.813333pt;}
.y186{bottom:577.842667pt;}
.y17c{bottom:581.826667pt;}
.y25d{bottom:583.453333pt;}
.y34{bottom:585.466667pt;}
.yc0{bottom:585.486667pt;}
.ye6{bottom:585.498667pt;}
.y7f{bottom:585.513333pt;}
.y1df{bottom:587.553333pt;}
.y185{bottom:593.169333pt;}
.y17b{bottom:595.826667pt;}
.y25c{bottom:597.453333pt;}
.y33{bottom:600.793333pt;}
.y59{bottom:600.810667pt;}
.ybf{bottom:600.813333pt;}
.ye5{bottom:600.825333pt;}
.y7e{bottom:600.840000pt;}
.y1de{bottom:602.880000pt;}
.y184{bottom:608.496000pt;}
.y25b{bottom:611.453333pt;}
.y25{bottom:613.418667pt;}
.y17a{bottom:613.826667pt;}
.y58{bottom:616.137333pt;}
.ybe{bottom:616.140000pt;}
.y32{bottom:616.146667pt;}
.ye4{bottom:616.152000pt;}
.y7d{bottom:616.166667pt;}
.y183{bottom:623.822667pt;}
.y25a{bottom:625.453333pt;}
.y179{bottom:627.826667pt;}
.ybd{bottom:631.466667pt;}
.y31{bottom:631.473333pt;}
.ye3{bottom:631.478667pt;}
.y7c{bottom:631.493333pt;}
.y24{bottom:634.754667pt;}
.y57{bottom:639.134667pt;}
.y182{bottom:639.149333pt;}
.y259{bottom:639.453333pt;}
.y178{bottom:641.826667pt;}
.ybc{bottom:646.793333pt;}
.y30{bottom:646.800000pt;}
.ye2{bottom:646.805333pt;}
.y7b{bottom:646.820000pt;}
.y258{bottom:653.453333pt;}
.y1dd{bottom:654.120000pt;}
.y181{bottom:654.476000pt;}
.y177{bottom:655.826667pt;}
.y23{bottom:656.090667pt;}
.y2f{bottom:662.126667pt;}
.y108{bottom:662.132000pt;}
.y7a{bottom:662.146667pt;}
.y257{bottom:667.453333pt;}
.y1dc{bottom:668.786667pt;}
.y180{bottom:669.802667pt;}
.y176{bottom:673.826667pt;}
.y22{bottom:677.426667pt;}
.y107{bottom:677.458667pt;}
.y2e{bottom:677.473333pt;}
.y256{bottom:681.453333pt;}
.y1db{bottom:683.453333pt;}
.y17f{bottom:685.129333pt;}
.y175{bottom:687.826667pt;}
.y2d{bottom:692.800000pt;}
.y255{bottom:695.453333pt;}
.y1da{bottom:698.120000pt;}
.y21{bottom:698.760000pt;}
.y17e{bottom:700.456000pt;}
.y174{bottom:701.826667pt;}
.y2c{bottom:708.126667pt;}
.y254{bottom:709.453333pt;}
.y20{bottom:720.093333pt;}
.y2b{bottom:723.453333pt;}
.y173{bottom:723.613333pt;}
.y1f{bottom:765.426667pt;}
.y2a{bottom:821.333333pt;}
.h8{height:30.083333pt;}
.h3{height:45.525333pt;}
.h7{height:51.216000pt;}
.hc{height:51.237333pt;}
.h11{height:51.280000pt;}
.h1{height:54.061333pt;}
.h2{height:54.922667pt;}
.hd{height:56.906667pt;}
.h14{height:57.434667pt;}
.h17{height:57.813333pt;}
.h6{height:62.597333pt;}
.h16{height:62.831467pt;}
.hf{height:62.858133pt;}
.h15{height:62.954133pt;}
.h13{height:62.991467pt;}
.h10{height:63.044800pt;}
.ha{height:63.071467pt;}
.h9{height:63.098133pt;}
.he{height:63.124800pt;}
.h12{height:63.130133pt;}
.hb{height:63.594667pt;}
.h5{height:79.669333pt;}
.h4{height:91.050667pt;}
.h0{height:794.666667pt;}
.w0{width:565.333333pt;}
.x0{left:0.000000pt;}
.x4{left:4.000000pt;}
.x1{left:66.400000pt;}
.x5{left:67.480000pt;}
.x10{left:79.733333pt;}
.xf{left:80.813333pt;}
.xa{left:81.736000pt;}
.x6{left:82.817333pt;}
.x9{left:86.400000pt;}
.x7{left:87.476000pt;}
.x8{left:92.404000pt;}
.xc{left:93.674667pt;}
.xd{left:246.426667pt;}
.xb{left:284.800000pt;}
.xe{left:332.973333pt;}
.x2{left:393.333333pt;}
.x3{left:413.573333pt;}
}




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