
    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_2a6f17fab4effe21d229daa2.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_b6729c14cfba3665373e99e1.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_2fe768d17df3843dc716c276.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_a407c0863cbd861065ce5277.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:-21.780000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.820000px;}
.v1{vertical-align:31.680000px;}
.ls19{letter-spacing:-1.650000px;}
.ls50{letter-spacing:-1.584000px;}
.ls4b{letter-spacing:-1.518000px;}
.ls52{letter-spacing:-1.452000px;}
.ls68{letter-spacing:-1.386000px;}
.ls2e{letter-spacing:-1.320000px;}
.ls91{letter-spacing:-1.260000px;}
.ls3b{letter-spacing:-1.254000px;}
.ls8c{letter-spacing:-1.200000px;}
.ls3a{letter-spacing:-1.188000px;}
.ls4e{letter-spacing:-1.140000px;}
.lsf{letter-spacing:-1.134000px;}
.ls1e{letter-spacing:-1.122000px;}
.ls6{letter-spacing:-1.083000px;}
.ls99{letter-spacing:-1.080000px;}
.ls38{letter-spacing:-1.056000px;}
.ls49{letter-spacing:-1.020000px;}
.ls22{letter-spacing:-0.990000px;}
.ls76{letter-spacing:-0.970200px;}
.ls47{letter-spacing:-0.924000px;}
.ls2d{letter-spacing:-0.858000px;}
.ls4{letter-spacing:-0.855000px;}
.ls77{letter-spacing:-0.810000px;}
.ls39{letter-spacing:-0.792000px;}
.ls53{letter-spacing:-0.785400px;}
.ls98{letter-spacing:-0.780000px;}
.ls97{letter-spacing:-0.765000px;}
.lsc{letter-spacing:-0.726000px;}
.ls92{letter-spacing:-0.720000px;}
.ls4a{letter-spacing:-0.702000px;}
.ls6e{letter-spacing:-0.693000px;}
.lsd{letter-spacing:-0.660000px;}
.lsa{letter-spacing:-0.627000px;}
.ls56{letter-spacing:-0.607500px;}
.ls75{letter-spacing:-0.600000px;}
.ls2b{letter-spacing:-0.594000px;}
.ls41{letter-spacing:-0.554400px;}
.ls26{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.528000px;}
.ls9c{letter-spacing:-0.480000px;}
.ls35{letter-spacing:-0.462000px;}
.ls55{letter-spacing:-0.445500px;}
.ls6b{letter-spacing:-0.432000px;}
.ls2c{letter-spacing:-0.415800px;}
.ls89{letter-spacing:-0.405000px;}
.ls8{letter-spacing:-0.399000px;}
.ls36{letter-spacing:-0.396000px;}
.ls24{letter-spacing:-0.378000px;}
.ls48{letter-spacing:-0.360000px;}
.ls60{letter-spacing:-0.336000px;}
.ls1d{letter-spacing:-0.330000px;}
.ls42{letter-spacing:-0.324000px;}
.ls5f{letter-spacing:-0.323400px;}
.ls9b{letter-spacing:-0.300000px;}
.ls43{letter-spacing:-0.283500px;}
.ls5b{letter-spacing:-0.270000px;}
.ls1f{letter-spacing:-0.264000px;}
.ls37{letter-spacing:-0.231000px;}
.ls7{letter-spacing:-0.228000px;}
.ls9a{letter-spacing:-0.225000px;}
.ls5c{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.198000px;}
.ls67{letter-spacing:-0.184800px;}
.ls93{letter-spacing:-0.180000px;}
.ls31{letter-spacing:-0.162000px;}
.ls9d{letter-spacing:-0.135000px;}
.ls1c{letter-spacing:-0.132000px;}
.ls8d{letter-spacing:-0.120000px;}
.ls9{letter-spacing:-0.114000px;}
.ls30{letter-spacing:-0.108000px;}
.ls54{letter-spacing:-0.096000px;}
.ls8e{letter-spacing:-0.090000px;}
.ls6a{letter-spacing:-0.081000px;}
.ls1a{letter-spacing:-0.066000px;}
.ls4d{letter-spacing:-0.060000px;}
.ls25{letter-spacing:-0.054000px;}
.ls23{letter-spacing:-0.048000px;}
.ls90{letter-spacing:-0.045000px;}
.ls69{letter-spacing:-0.040500px;}
.ls3{letter-spacing:0.000000px;}
.ls7c{letter-spacing:0.045000px;}
.ls40{letter-spacing:0.054000px;}
.ls71{letter-spacing:0.060000px;}
.ls20{letter-spacing:0.066000px;}
.ls18{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.114000px;}
.lse{letter-spacing:0.132000px;}
.ls2f{letter-spacing:0.144000px;}
.ls3e{letter-spacing:0.162000px;}
.lsb{letter-spacing:0.171000px;}
.ls72{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.198000px;}
.ls5d{letter-spacing:0.216000px;}
.ls96{letter-spacing:0.225000px;}
.ls74{letter-spacing:0.231000px;}
.ls44{letter-spacing:0.240000px;}
.ls15{letter-spacing:0.264000px;}
.ls29{letter-spacing:0.270000px;}
.ls5{letter-spacing:0.285000px;}
.ls70{letter-spacing:0.300000px;}
.ls32{letter-spacing:0.324000px;}
.ls2a{letter-spacing:0.330000px;}
.ls78{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.378000px;}
.ls14{letter-spacing:0.396000px;}
.ls79{letter-spacing:0.405000px;}
.ls7a{letter-spacing:0.420000px;}
.ls10{letter-spacing:0.432000px;}
.ls87{letter-spacing:0.450000px;}
.ls1{letter-spacing:0.456000px;}
.ls3c{letter-spacing:0.462000px;}
.ls83{letter-spacing:0.480000px;}
.ls82{letter-spacing:0.495000px;}
.ls2{letter-spacing:0.513000px;}
.ls27{letter-spacing:0.528000px;}
.ls7b{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.594000px;}
.ls73{letter-spacing:0.600000px;}
.ls5e{letter-spacing:0.600600px;}
.ls65{letter-spacing:0.607500px;}
.ls8f{letter-spacing:0.630000px;}
.ls3f{letter-spacing:0.648000px;}
.ls33{letter-spacing:0.660000px;}
.ls84{letter-spacing:0.675000px;}
.ls3d{letter-spacing:0.702000px;}
.ls45{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.726000px;}
.ls4c{letter-spacing:0.792000px;}
.ls58{letter-spacing:0.810000px;}
.ls95{letter-spacing:0.840000px;}
.ls5a{letter-spacing:0.850500px;}
.ls94{letter-spacing:0.855000px;}
.ls34{letter-spacing:0.858000px;}
.ls59{letter-spacing:0.864000px;}
.ls63{letter-spacing:0.877800px;}
.ls8b{letter-spacing:0.900000px;}
.ls16{letter-spacing:0.924000px;}
.ls80{letter-spacing:0.945000px;}
.ls81{letter-spacing:0.960000px;}
.ls4f{letter-spacing:0.990000px;}
.ls7f{letter-spacing:1.020000px;}
.ls46{letter-spacing:1.056000px;}
.ls66{letter-spacing:1.080000px;}
.ls6c{letter-spacing:1.122000px;}
.ls57{letter-spacing:1.188000px;}
.ls64{letter-spacing:1.254000px;}
.ls61{letter-spacing:1.320000px;}
.ls85{letter-spacing:1.380000px;}
.ls12{letter-spacing:1.452000px;}
.ls88{letter-spacing:1.485000px;}
.ls86{letter-spacing:1.500000px;}
.ls62{letter-spacing:1.518000px;}
.ls51{letter-spacing:1.650000px;}
.ls6f{letter-spacing:1.914000px;}
.ls6d{letter-spacing:1.980000px;}
.ls7e{letter-spacing:2.385000px;}
.ls7d{letter-spacing:2.400000px;}
.ls8a{letter-spacing:2.430000px;}
.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;}
}
.wsaf{word-spacing:-18.480000px;}
.wsae{word-spacing:-18.414000px;}
.ws90{word-spacing:-17.952000px;}
.ws92{word-spacing:-17.754000px;}
.ws80{word-spacing:-17.688000px;}
.wsb0{word-spacing:-17.292000px;}
.ws74{word-spacing:-17.226000px;}
.ws50{word-spacing:-17.160000px;}
.ws3d{word-spacing:-17.028000px;}
.ws67{word-spacing:-16.962000px;}
.ws73{word-spacing:-16.896000px;}
.ws65{word-spacing:-16.830000px;}
.ws16{word-spacing:-16.764000px;}
.ws38{word-spacing:-16.698000px;}
.ws76{word-spacing:-16.632000px;}
.ws18{word-spacing:-16.566000px;}
.ws15{word-spacing:-16.500000px;}
.ws17{word-spacing:-16.434000px;}
.wsd8{word-spacing:-16.380000px;}
.ws8f{word-spacing:-16.368000px;}
.ws6e{word-spacing:-16.302000px;}
.ws4f{word-spacing:-16.236000px;}
.ws59{word-spacing:-16.170000px;}
.ws4c{word-spacing:-16.104000px;}
.ws4b{word-spacing:-16.038000px;}
.ws53{word-spacing:-15.972000px;}
.wsd0{word-spacing:-15.960000px;}
.ws3b{word-spacing:-15.906000px;}
.wsfb{word-spacing:-15.840000px;}
.ws93{word-spacing:-15.774000px;}
.ws58{word-spacing:-15.708000px;}
.wsd7{word-spacing:-15.660000px;}
.ws5a{word-spacing:-15.642000px;}
.ws64{word-spacing:-15.576000px;}
.wsc1{word-spacing:-15.540000px;}
.ws66{word-spacing:-15.510000px;}
.wsd3{word-spacing:-15.480000px;}
.ws78{word-spacing:-15.444000px;}
.ws79{word-spacing:-15.378000px;}
.wsdd{word-spacing:-15.360000px;}
.ws77{word-spacing:-15.312000px;}
.wsdc{word-spacing:-15.300000px;}
.ws7e{word-spacing:-15.246000px;}
.wsb4{word-spacing:-15.114000px;}
.wsf9{word-spacing:-15.060000px;}
.ws6f{word-spacing:-15.000000px;}
.ws6d{word-spacing:-14.982000px;}
.ws70{word-spacing:-14.940000px;}
.ws75{word-spacing:-14.916000px;}
.wsd1{word-spacing:-14.880000px;}
.wsff{word-spacing:-14.820000px;}
.wsf7{word-spacing:-14.700000px;}
.wsc6{word-spacing:-14.640000px;}
.ws9e{word-spacing:-14.580000px;}
.ws0{word-spacing:-14.535000px;}
.wsfd{word-spacing:-14.520000px;}
.wsc4{word-spacing:-14.460000px;}
.wse5{word-spacing:-14.400000px;}
.wsdf{word-spacing:-14.280000px;}
.ws9f{word-spacing:-13.932000px;}
.wsf4{word-spacing:-13.920000px;}
.wsce{word-spacing:-13.860000px;}
.ws8a{word-spacing:-13.824000px;}
.wscd{word-spacing:-13.800000px;}
.wsda{word-spacing:-13.740000px;}
.wscb{word-spacing:-13.635000px;}
.wsa9{word-spacing:-13.608000px;}
.ws83{word-spacing:-13.554000px;}
.ws1c{word-spacing:-13.500000px;}
.ws84{word-spacing:-13.446000px;}
.ws94{word-spacing:-13.392000px;}
.ws82{word-spacing:-13.338000px;}
.ws5c{word-spacing:-13.176000px;}
.wsa5{word-spacing:-13.068000px;}
.ws9d{word-spacing:-12.906000px;}
.wse2{word-spacing:-12.735000px;}
.ws91{word-spacing:-12.427800px;}
.wscf{word-spacing:-12.195000px;}
.ws87{word-spacing:-12.150600px;}
.ws3e{word-spacing:-12.144000px;}
.wsfa{word-spacing:-12.105000px;}
.wsb6{word-spacing:-11.952000px;}
.ws7b{word-spacing:-11.904000px;}
.wsb3{word-spacing:-11.781000px;}
.wsd2{word-spacing:-11.745000px;}
.wse1{word-spacing:-11.700000px;}
.ws89{word-spacing:-11.664000px;}
.wsc0{word-spacing:-11.655000px;}
.wsdb{word-spacing:-11.610000px;}
.ws19{word-spacing:-11.550000px;}
.wscc{word-spacing:-11.520000px;}
.ws100{word-spacing:-11.475000px;}
.ws98{word-spacing:-11.365200px;}
.ws4d{word-spacing:-11.319000px;}
.wsc7{word-spacing:-11.295000px;}
.wsc8{word-spacing:-11.250000px;}
.ws88{word-spacing:-11.226600px;}
.wsd9{word-spacing:-11.205000px;}
.ws3a{word-spacing:-11.134200px;}
.wsfe{word-spacing:-11.115000px;}
.wse3{word-spacing:-11.070000px;}
.wsf6{word-spacing:-11.025000px;}
.ws5b{word-spacing:-10.995600px;}
.wsc9{word-spacing:-10.890000px;}
.wsad{word-spacing:-10.857000px;}
.wsc5{word-spacing:-10.845000px;}
.ws7a{word-spacing:-10.764600px;}
.wsb1{word-spacing:-10.732500px;}
.wse0{word-spacing:-10.710000px;}
.ws7f{word-spacing:-10.626000px;}
.wsb5{word-spacing:-10.579800px;}
.wsf2{word-spacing:-10.485000px;}
.ws9b{word-spacing:-10.287000px;}
.wsf3{word-spacing:-10.170000px;}
.wsa0{word-spacing:-10.084500px;}
.wse4{word-spacing:-9.990000px;}
.ws5d{word-spacing:-9.841500px;}
.ws7c{word-spacing:-9.679500px;}
.ws1d{word-spacing:-0.858000px;}
.ws28{word-spacing:-0.792000px;}
.ws27{word-spacing:-0.726000px;}
.wsba{word-spacing:-0.720000px;}
.ws2e{word-spacing:-0.660000px;}
.ws37{word-spacing:-0.648000px;}
.wsc{word-spacing:-0.627000px;}
.wse9{word-spacing:-0.600000px;}
.ws31{word-spacing:-0.594000px;}
.ws44{word-spacing:-0.540000px;}
.ws29{word-spacing:-0.528000px;}
.wsa{word-spacing:-0.513000px;}
.ws60{word-spacing:-0.486000px;}
.ws54{word-spacing:-0.462000px;}
.wsea{word-spacing:-0.450000px;}
.ws46{word-spacing:-0.432000px;}
.ws69{word-spacing:-0.420000px;}
.ws22{word-spacing:-0.396000px;}
.ws36{word-spacing:-0.378000px;}
.wse7{word-spacing:-0.360000px;}
.ws25{word-spacing:-0.330000px;}
.ws34{word-spacing:-0.324000px;}
.ws3{word-spacing:-0.285000px;}
.ws30{word-spacing:-0.270000px;}
.ws3f{word-spacing:-0.264000px;}
.wse6{word-spacing:-0.240000px;}
.wsa7{word-spacing:-0.216000px;}
.ws1f{word-spacing:-0.198000px;}
.wsef{word-spacing:-0.180000px;}
.ws1{word-spacing:-0.171000px;}
.ws8b{word-spacing:-0.162000px;}
.ws11{word-spacing:-0.132000px;}
.wsb8{word-spacing:-0.120000px;}
.wsd{word-spacing:-0.114000px;}
.ws33{word-spacing:-0.108000px;}
.ws51{word-spacing:-0.066000px;}
.ws47{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
.ws101{word-spacing:0.060000px;}
.ws56{word-spacing:0.066000px;}
.ws35{word-spacing:0.108000px;}
.ws4{word-spacing:0.114000px;}
.wsed{word-spacing:0.120000px;}
.ws2f{word-spacing:0.132000px;}
.wsab{word-spacing:0.162000px;}
.ws42{word-spacing:0.198000px;}
.wsa2{word-spacing:0.216000px;}
.ws2c{word-spacing:0.264000px;}
.ws6c{word-spacing:0.270000px;}
.ws6b{word-spacing:0.300000px;}
.ws95{word-spacing:0.324000px;}
.ws2d{word-spacing:0.330000px;}
.ws6{word-spacing:0.342000px;}
.ws71{word-spacing:0.360000px;}
.ws96{word-spacing:0.378000px;}
.ws26{word-spacing:0.396000px;}
.ws86{word-spacing:0.405000px;}
.wsa8{word-spacing:0.432000px;}
.ws5f{word-spacing:0.462000px;}
.wsbc{word-spacing:0.480000px;}
.ws13{word-spacing:0.486000px;}
.ws23{word-spacing:0.528000px;}
.ws85{word-spacing:0.540000px;}
.ws57{word-spacing:0.594000px;}
.wsbd{word-spacing:0.600000px;}
.ws2{word-spacing:0.627000px;}
.ws49{word-spacing:0.648000px;}
.ws2b{word-spacing:0.660000px;}
.ws63{word-spacing:0.702000px;}
.ws4e{word-spacing:0.726000px;}
.ws6a{word-spacing:0.780000px;}
.ws1e{word-spacing:0.792000px;}
.wsa3{word-spacing:0.810000px;}
.wsec{word-spacing:0.840000px;}
.ws3c{word-spacing:0.858000px;}
.ws68{word-spacing:0.877800px;}
.wsbe{word-spacing:0.900000px;}
.wsf{word-spacing:0.912000px;}
.ws62{word-spacing:0.918000px;}
.ws40{word-spacing:0.924000px;}
.wsc2{word-spacing:0.960000px;}
.wsb{word-spacing:0.969000px;}
.ws48{word-spacing:0.972000px;}
.ws55{word-spacing:0.990000px;}
.wseb{word-spacing:1.020000px;}
.ws4a{word-spacing:1.026000px;}
.ws41{word-spacing:1.056000px;}
.ws97{word-spacing:1.080000px;}
.ws43{word-spacing:1.122000px;}
.ws8d{word-spacing:1.134000px;}
.ws5{word-spacing:1.140000px;}
.ws45{word-spacing:1.188000px;}
.wsb7{word-spacing:1.200000px;}
.ws32{word-spacing:1.242000px;}
.wse{word-spacing:1.254000px;}
.wsb9{word-spacing:1.260000px;}
.ws61{word-spacing:1.296000px;}
.ws7{word-spacing:1.311000px;}
.ws2a{word-spacing:1.320000px;}
.ws8e{word-spacing:1.350000px;}
.wsf0{word-spacing:1.380000px;}
.ws20{word-spacing:1.386000px;}
.ws9{word-spacing:1.425000px;}
.wsbb{word-spacing:1.440000px;}
.ws21{word-spacing:1.452000px;}
.ws12{word-spacing:1.518000px;}
.ws24{word-spacing:1.584000px;}
.ws10{word-spacing:1.650000px;}
.wsee{word-spacing:1.800000px;}
.wsf1{word-spacing:2.265000px;}
.wsa4{word-spacing:2.745000px;}
.wsa1{word-spacing:2.845500px;}
.wsa6{word-spacing:3.159000px;}
.ws7d{word-spacing:3.337500px;}
.wsfc{word-spacing:3.360000px;}
.wsb2{word-spacing:3.366000px;}
.ws5e{word-spacing:3.367500px;}
.wsf5{word-spacing:3.390000px;}
.wsde{word-spacing:3.450000px;}
.wsc3{word-spacing:3.570000px;}
.ws99{word-spacing:3.825000px;}
.ws14{word-spacing:4.320000px;}
.ws9c{word-spacing:4.363500px;}
.wsd5{word-spacing:4.455000px;}
.wsd6{word-spacing:4.665000px;}
.wse8{word-spacing:4.680000px;}
.wsd4{word-spacing:5.070000px;}
.wsf8{word-spacing:5.430000px;}
.ws9a{word-spacing:8.154000px;}
.wsca{word-spacing:8.355000px;}
.ws81{word-spacing:9.018000px;}
.wsbf{word-spacing:9.042000px;}
.ws8c{word-spacing:10.494000px;}
.wsaa{word-spacing:11.616000px;}
.ws39{word-spacing:16.434000px;}
.ws52{word-spacing:16.500000px;}
.ws72{word-spacing:16.566000px;}
.wsac{word-spacing:16.632000px;}
.ws1a{word-spacing:35.904000px;}
.ws1b{word-spacing:36.018000px;}
._a{margin-left:-7.954200px;}
._e{margin-left:-6.930000px;}
._5{margin-left:-5.715000px;}
._7{margin-left:-4.482000px;}
._1{margin-left:-2.907000px;}
._0{margin-left:-1.197000px;}
._3{width:1.134000px;}
._8{width:2.247000px;}
._d{width:3.564000px;}
._10{width:11.835000px;}
._c{width:14.784000px;}
._f{width:16.635000px;}
._2{width:28.158000px;}
._6{width:47.952000px;}
._4{width:50.652000px;}
._b{width:110.736000px;}
._9{width:1283.664000px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:40.500000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:46.200000px;}
.fs3{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:67.200000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1bb{bottom:53.928000px;}
.yd4{bottom:54.105000px;}
.yb2{bottom:54.159000px;}
.y215{bottom:54.207000px;}
.y119{bottom:54.249000px;}
.y6f{bottom:54.372000px;}
.y13b{bottom:54.378000px;}
.y178{bottom:54.414000px;}
.y1df{bottom:54.468000px;}
.y10c{bottom:54.753000px;}
.y96{bottom:54.870000px;}
.y50{bottom:54.876000px;}
.y1a{bottom:54.879000px;}
.y164{bottom:54.882000px;}
.y193{bottom:54.930000px;}
.y225{bottom:55.500000px;}
.yfa{bottom:55.672500px;}
.y255{bottom:57.885000px;}
.y1ba{bottom:68.184000px;}
.yd3{bottom:68.361000px;}
.yb1{bottom:68.415000px;}
.y214{bottom:68.463000px;}
.y118{bottom:68.487000px;}
.y6e{bottom:68.628000px;}
.y13a{bottom:68.634000px;}
.y177{bottom:68.670000px;}
.y1de{bottom:68.724000px;}
.y10b{bottom:69.009000px;}
.y4f{bottom:69.132000px;}
.y19{bottom:69.135000px;}
.y163{bottom:69.138000px;}
.y192{bottom:69.186000px;}
.y224{bottom:71.250000px;}
.yf9{bottom:72.915000px;}
.y254{bottom:73.635000px;}
.y1b9{bottom:82.440000px;}
.yd2{bottom:82.617000px;}
.yb0{bottom:82.671000px;}
.y213{bottom:82.719000px;}
.y117{bottom:82.743000px;}
.y6d{bottom:82.884000px;}
.y139{bottom:82.890000px;}
.y176{bottom:82.926000px;}
.y1dd{bottom:82.980000px;}
.y10a{bottom:83.265000px;}
.y4e{bottom:83.388000px;}
.y162{bottom:83.394000px;}
.y191{bottom:83.442000px;}
.y223{bottom:87.000000px;}
.y253{bottom:89.385000px;}
.yf8{bottom:90.157500px;}
.y1b8{bottom:96.696000px;}
.yd1{bottom:96.873000px;}
.yaf{bottom:96.927000px;}
.y212{bottom:96.975000px;}
.y116{bottom:96.999000px;}
.y6c{bottom:97.140000px;}
.y138{bottom:97.146000px;}
.y175{bottom:97.182000px;}
.y1dc{bottom:97.236000px;}
.y4d{bottom:97.644000px;}
.y161{bottom:97.650000px;}
.y190{bottom:97.698000px;}
.y252{bottom:105.135000px;}
.y95{bottom:106.911000px;}
.yf7{bottom:107.400000px;}
.y1b7{bottom:110.952000px;}
.yd0{bottom:111.129000px;}
.yae{bottom:111.183000px;}
.y211{bottom:111.231000px;}
.y115{bottom:111.255000px;}
.y6b{bottom:111.396000px;}
.y137{bottom:111.402000px;}
.y174{bottom:111.438000px;}
.y1db{bottom:111.492000px;}
.y222{bottom:111.628500px;}
.y4c{bottom:111.900000px;}
.y160{bottom:111.906000px;}
.y18f{bottom:111.954000px;}
.y18{bottom:115.008000px;}
.y251{bottom:120.885000px;}
.y109{bottom:123.979500px;}
.y1f2{bottom:124.072500px;}
.y94{bottom:124.153500px;}
.yf6{bottom:124.642500px;}
.y1b6{bottom:125.208000px;}
.ycf{bottom:125.385000px;}
.yad{bottom:125.439000px;}
.y210{bottom:125.487000px;}
.y6a{bottom:125.652000px;}
.y136{bottom:125.658000px;}
.y173{bottom:125.694000px;}
.y1da{bottom:125.748000px;}
.y4b{bottom:126.156000px;}
.y15f{bottom:126.162000px;}
.y18e{bottom:126.168000px;}
.y17{bottom:132.250500px;}
.y250{bottom:136.635000px;}
.y1b5{bottom:139.464000px;}
.yac{bottom:139.665000px;}
.y20f{bottom:139.743000px;}
.y69{bottom:139.908000px;}
.y135{bottom:139.914000px;}
.y172{bottom:139.950000px;}
.y1d9{bottom:140.004000px;}
.y4a{bottom:140.412000px;}
.y15e{bottom:140.418000px;}
.y18d{bottom:140.424000px;}
.y108{bottom:141.222000px;}
.y1f1{bottom:141.315000px;}
.y93{bottom:141.396000px;}
.yf5{bottom:141.885000px;}
.y16{bottom:149.493000px;}
.y24f{bottom:152.385000px;}
.y1b4{bottom:153.720000px;}
.yab{bottom:153.921000px;}
.y20e{bottom:153.999000px;}
.y68{bottom:154.164000px;}
.y134{bottom:154.170000px;}
.y171{bottom:154.206000px;}
.y1d8{bottom:154.260000px;}
.y49{bottom:154.668000px;}
.y15d{bottom:154.674000px;}
.y18c{bottom:154.680000px;}
.y114{bottom:158.445000px;}
.y107{bottom:158.464500px;}
.y1f0{bottom:158.557500px;}
.y221{bottom:158.637000px;}
.y92{bottom:158.638500px;}
.yf4{bottom:159.127500px;}
.yce{bottom:165.967500px;}
.y1b3{bottom:167.976000px;}
.y24e{bottom:168.135000px;}
.yaa{bottom:168.177000px;}
.y20d{bottom:168.255000px;}
.y67{bottom:168.420000px;}
.y170{bottom:168.462000px;}
.y48{bottom:168.924000px;}
.y15c{bottom:168.930000px;}
.y18b{bottom:168.936000px;}
.y15{bottom:175.365000px;}
.y113{bottom:175.687500px;}
.y106{bottom:175.707000px;}
.y1ef{bottom:175.800000px;}
.y220{bottom:175.879500px;}
.y91{bottom:175.881000px;}
.yf3{bottom:176.370000px;}
.y1b2{bottom:182.232000px;}
.ya9{bottom:182.433000px;}
.y16f{bottom:182.718000px;}
.y47{bottom:183.180000px;}
.y15b{bottom:183.186000px;}
.y18a{bottom:183.192000px;}
.ycd{bottom:183.210000px;}
.y24d{bottom:183.885000px;}
.y112{bottom:192.930000px;}
.y105{bottom:192.949500px;}
.y1ee{bottom:193.042500px;}
.y21f{bottom:193.122000px;}
.y90{bottom:193.123500px;}
.y1b1{bottom:196.488000px;}
.ya8{bottom:196.689000px;}
.y16e{bottom:196.974000px;}
.y15a{bottom:197.442000px;}
.y189{bottom:197.448000px;}
.y24c{bottom:199.635000px;}
.ycc{bottom:200.452500px;}
.y111{bottom:210.172500px;}
.y104{bottom:210.192000px;}
.y66{bottom:210.202500px;}
.y133{bottom:210.277500px;}
.y1ed{bottom:210.285000px;}
.y1d7{bottom:210.345000px;}
.y21e{bottom:210.364500px;}
.y8f{bottom:210.366000px;}
.y1b0{bottom:210.744000px;}
.ya7{bottom:210.945000px;}
.y16d{bottom:211.230000px;}
.y159{bottom:211.698000px;}
.y188{bottom:211.704000px;}
.yf2{bottom:212.745000px;}
.y24b{bottom:215.385000px;}
.ycb{bottom:217.695000px;}
.y20c{bottom:223.657500px;}
.y1af{bottom:225.000000px;}
.y187{bottom:225.948000px;}
.y158{bottom:225.954000px;}
.y46{bottom:227.400000px;}
.y110{bottom:227.415000px;}
.y65{bottom:227.445000px;}
.y132{bottom:227.520000px;}
.y1ec{bottom:227.527500px;}
.y1d6{bottom:227.587500px;}
.y21d{bottom:227.607000px;}
.y8e{bottom:227.608500px;}
.yf1{bottom:228.495000px;}
.y24a{bottom:231.135000px;}
.yca{bottom:234.937500px;}
.y14{bottom:235.740000px;}
.y103{bottom:236.064000px;}
.y1ae{bottom:239.256000px;}
.y186{bottom:240.204000px;}
.y157{bottom:240.210000px;}
.y20b{bottom:240.900000px;}
.yf0{bottom:244.245000px;}
.y45{bottom:244.642500px;}
.y10f{bottom:244.657500px;}
.y64{bottom:244.687500px;}
.y131{bottom:244.762500px;}
.y1eb{bottom:244.770000px;}
.y1d5{bottom:244.830000px;}
.y21c{bottom:244.849500px;}
.y249{bottom:246.885000px;}
.yc9{bottom:252.180000px;}
.y1ad{bottom:253.512000px;}
.y185{bottom:254.460000px;}
.y156{bottom:254.466000px;}
.y13{bottom:256.707000px;}
.y20a{bottom:258.142500px;}
.y10e{bottom:261.900000px;}
.y63{bottom:261.930000px;}
.y16c{bottom:261.945000px;}
.ya6{bottom:261.960000px;}
.y130{bottom:262.005000px;}
.y1ea{bottom:262.012500px;}
.y1d4{bottom:262.072500px;}
.y21b{bottom:262.092000px;}
.y8d{bottom:262.110000px;}
.y44{bottom:262.125000px;}
.y248{bottom:262.635000px;}
.y1ac{bottom:267.768000px;}
.y155{bottom:268.722000px;}
.yc8{bottom:269.422500px;}
.y12{bottom:271.712250px;}
.y209{bottom:275.482500px;}
.y247{bottom:278.385000px;}
.y10d{bottom:279.142500px;}
.y62{bottom:279.172500px;}
.y16b{bottom:279.187500px;}
.y102{bottom:279.195000px;}
.ya5{bottom:279.202500px;}
.y12f{bottom:279.247500px;}
.y1e9{bottom:279.255000px;}
.y1d3{bottom:279.315000px;}
.y21a{bottom:279.334500px;}
.yef{bottom:279.351000px;}
.y8c{bottom:279.352500px;}
.y43{bottom:279.367500px;}
.y1ab{bottom:282.024000px;}
.y154{bottom:282.978000px;}
.yc7{bottom:286.665000px;}
.y11{bottom:286.717500px;}
.y208{bottom:292.725000px;}
.y246{bottom:294.135000px;}
.y1aa{bottom:296.238000px;}
.y61{bottom:296.415000px;}
.y16a{bottom:296.430000px;}
.y101{bottom:296.437500px;}
.ya4{bottom:296.445000px;}
.y184{bottom:296.475000px;}
.y12e{bottom:296.490000px;}
.y1e8{bottom:296.497500px;}
.y1d2{bottom:296.557500px;}
.y219{bottom:296.577000px;}
.yee{bottom:296.593500px;}
.y8b{bottom:296.595000px;}
.y42{bottom:296.610000px;}
.y153{bottom:297.234000px;}
.y10{bottom:301.722750px;}
.yc6{bottom:303.907500px;}
.y245{bottom:309.885000px;}
.y207{bottom:309.967500px;}
.y1a9{bottom:310.494000px;}
.y152{bottom:311.490000px;}
.y60{bottom:313.657500px;}
.y169{bottom:313.672500px;}
.y100{bottom:313.680000px;}
.ya3{bottom:313.687500px;}
.y183{bottom:313.717500px;}
.y12d{bottom:313.732500px;}
.y1e7{bottom:313.740000px;}
.y1d1{bottom:313.800000px;}
.y218{bottom:313.819500px;}
.yed{bottom:313.836000px;}
.y8a{bottom:313.837500px;}
.y41{bottom:313.852500px;}
.yf{bottom:316.728000px;}
.yc5{bottom:321.150000px;}
.y1a8{bottom:324.750000px;}
.y244{bottom:325.635000px;}
.y206{bottom:327.210000px;}
.y5f{bottom:330.900000px;}
.y168{bottom:330.915000px;}
.yff{bottom:330.922500px;}
.ya2{bottom:330.930000px;}
.y182{bottom:330.960000px;}
.y12c{bottom:330.975000px;}
.y1e6{bottom:330.982500px;}
.y1d0{bottom:331.042500px;}
.y217{bottom:331.062000px;}
.yec{bottom:331.078500px;}
.y89{bottom:331.080000px;}
.y40{bottom:331.095000px;}
.ye{bottom:331.733250px;}
.yc4{bottom:338.392500px;}
.y1a7{bottom:339.006000px;}
.y243{bottom:341.385000px;}
.y205{bottom:344.452500px;}
.yd{bottom:346.738500px;}
.y5e{bottom:348.142500px;}
.y167{bottom:348.157500px;}
.yfe{bottom:348.165000px;}
.ya1{bottom:348.172500px;}
.y181{bottom:348.202500px;}
.y12b{bottom:348.217500px;}
.y1e5{bottom:348.225000px;}
.y1cf{bottom:348.285000px;}
.yeb{bottom:348.321000px;}
.y88{bottom:348.322500px;}
.y3f{bottom:348.337500px;}
.y1a6{bottom:353.262000px;}
.yc3{bottom:355.635000px;}
.y216{bottom:356.934000px;}
.y242{bottom:357.135000px;}
.y204{bottom:361.695000px;}
.yc{bottom:361.743750px;}
.y166{bottom:365.400000px;}
.yfd{bottom:365.407500px;}
.ya0{bottom:365.415000px;}
.y180{bottom:365.445000px;}
.y12a{bottom:365.460000px;}
.y1e4{bottom:365.467500px;}
.y1ce{bottom:365.527500px;}
.y5d{bottom:365.547000px;}
.y151{bottom:365.550000px;}
.yea{bottom:365.563500px;}
.y87{bottom:365.565000px;}
.y3e{bottom:365.580000px;}
.y1a5{bottom:367.518000px;}
.y241{bottom:372.885000px;}
.y203{bottom:378.937500px;}
.y1a4{bottom:381.774000px;}
.y165{bottom:382.642500px;}
.yfc{bottom:382.650000px;}
.y9f{bottom:382.657500px;}
.y17f{bottom:382.687500px;}
.y129{bottom:382.702500px;}
.y1e3{bottom:382.710000px;}
.y1cd{bottom:382.770000px;}
.y5c{bottom:382.789500px;}
.y150{bottom:382.792500px;}
.ye9{bottom:382.806000px;}
.y86{bottom:382.807500px;}
.y3d{bottom:382.822500px;}
.y240{bottom:388.635000px;}
.yc2{bottom:390.135000px;}
.yb{bottom:391.740000px;}
.y1a3{bottom:396.030000px;}
.y202{bottom:396.180000px;}
.yfb{bottom:399.892500px;}
.y9e{bottom:399.900000px;}
.y17e{bottom:399.930000px;}
.y128{bottom:399.945000px;}
.y1e2{bottom:399.952500px;}
.y1cc{bottom:400.012500px;}
.y5b{bottom:400.032000px;}
.y14f{bottom:400.035000px;}
.ye8{bottom:400.048500px;}
.y85{bottom:400.050000px;}
.y3c{bottom:400.065000px;}
.y23f{bottom:404.385000px;}
.yc1{bottom:405.885000px;}
.y201{bottom:413.422500px;}
.y9d{bottom:417.142500px;}
.y17d{bottom:417.172500px;}
.y127{bottom:417.187500px;}
.y1e1{bottom:417.195000px;}
.y1cb{bottom:417.255000px;}
.y5a{bottom:417.274500px;}
.y14e{bottom:417.277500px;}
.ye7{bottom:417.291000px;}
.y84{bottom:417.292500px;}
.y3b{bottom:417.307500px;}
.y23e{bottom:420.135000px;}
.yc0{bottom:421.635000px;}
.ya{bottom:427.698750px;}
.y200{bottom:430.665000px;}
.y17c{bottom:434.415000px;}
.y9c{bottom:434.430000px;}
.y1e0{bottom:434.437500px;}
.y1ca{bottom:434.497500px;}
.y59{bottom:434.517000px;}
.y14d{bottom:434.520000px;}
.ye6{bottom:434.533500px;}
.y83{bottom:434.535000px;}
.y3a{bottom:434.550000px;}
.y23d{bottom:435.885000px;}
.ybf{bottom:437.385000px;}
.y1ff{bottom:447.907500px;}
.y9{bottom:448.703250px;}
.y23c{bottom:451.635000px;}
.y17b{bottom:451.657500px;}
.y9b{bottom:451.672500px;}
.y1a2{bottom:451.680000px;}
.y1c9{bottom:451.740000px;}
.y58{bottom:451.759500px;}
.y14c{bottom:451.762500px;}
.ye5{bottom:451.776000px;}
.y82{bottom:451.777500px;}
.y39{bottom:451.792500px;}
.ybe{bottom:453.135000px;}
.y8{bottom:463.708500px;}
.y1fe{bottom:465.150000px;}
.y23b{bottom:467.385000px;}
.y17a{bottom:468.900000px;}
.y9a{bottom:468.915000px;}
.y1a1{bottom:468.922500px;}
.y1c8{bottom:468.982500px;}
.y57{bottom:469.002000px;}
.y14b{bottom:469.005000px;}
.ye4{bottom:469.018500px;}
.y81{bottom:469.020000px;}
.y38{bottom:469.035000px;}
.y7{bottom:478.713750px;}
.y1fd{bottom:482.392500px;}
.y23a{bottom:483.135000px;}
.y179{bottom:486.142500px;}
.y99{bottom:486.157500px;}
.y1a0{bottom:486.165000px;}
.ybd{bottom:486.217500px;}
.y1c7{bottom:486.225000px;}
.y56{bottom:486.244500px;}
.y14a{bottom:486.247500px;}
.ye3{bottom:486.261000px;}
.y80{bottom:486.262500px;}
.y37{bottom:486.277500px;}
.y6{bottom:493.719000px;}
.y239{bottom:498.885000px;}
.y1fc{bottom:499.635000px;}
.y98{bottom:503.400000px;}
.y19f{bottom:503.407500px;}
.ybc{bottom:503.460000px;}
.y1c6{bottom:503.467500px;}
.y55{bottom:503.487000px;}
.y149{bottom:503.490000px;}
.ye2{bottom:503.503500px;}
.y7f{bottom:503.505000px;}
.y36{bottom:503.520000px;}
.y5{bottom:508.724250px;}
.y238{bottom:514.635000px;}
.y97{bottom:520.642500px;}
.y19e{bottom:520.650000px;}
.ybb{bottom:520.702500px;}
.y1c5{bottom:520.710000px;}
.y54{bottom:520.729500px;}
.y148{bottom:520.732500px;}
.ye1{bottom:520.746000px;}
.y7e{bottom:520.747500px;}
.y35{bottom:520.762500px;}
.y4{bottom:523.729500px;}
.y237{bottom:530.385000px;}
.y1fb{bottom:534.135000px;}
.y19d{bottom:537.892500px;}
.yba{bottom:537.945000px;}
.y1c4{bottom:537.952500px;}
.y53{bottom:537.972000px;}
.y147{bottom:537.975000px;}
.y126{bottom:537.982500px;}
.ye0{bottom:537.988500px;}
.y7d{bottom:537.990000px;}
.y34{bottom:538.005000px;}
.y3{bottom:538.734750px;}
.y236{bottom:546.135000px;}
.y1fa{bottom:549.885000px;}
.y2{bottom:553.740000px;}
.y19c{bottom:555.165000px;}
.yb9{bottom:555.187500px;}
.y1c3{bottom:555.195000px;}
.y52{bottom:555.214500px;}
.y146{bottom:555.217500px;}
.y125{bottom:555.225000px;}
.ydf{bottom:555.231000px;}
.y7c{bottom:555.232500px;}
.y33{bottom:555.247500px;}
.y235{bottom:561.885000px;}
.y1f9{bottom:565.635000px;}
.y19b{bottom:572.407500px;}
.yb8{bottom:572.430000px;}
.y1c2{bottom:572.437500px;}
.y145{bottom:572.460000px;}
.y124{bottom:572.467500px;}
.yde{bottom:572.473500px;}
.y7b{bottom:572.475000px;}
.y32{bottom:572.490000px;}
.y234{bottom:577.635000px;}
.y51{bottom:581.086500px;}
.y1f8{bottom:581.385000px;}
.y1{bottom:583.740000px;}
.y19a{bottom:589.650000px;}
.yb7{bottom:589.672500px;}
.y1c1{bottom:589.680000px;}
.y144{bottom:589.702500px;}
.y123{bottom:589.710000px;}
.ydd{bottom:589.716000px;}
.y7a{bottom:589.717500px;}
.y31{bottom:589.732500px;}
.y233{bottom:593.385000px;}
.y1f7{bottom:597.135000px;}
.y199{bottom:606.892500px;}
.yb6{bottom:606.915000px;}
.y1c0{bottom:606.922500px;}
.y143{bottom:606.945000px;}
.y122{bottom:606.952500px;}
.ydc{bottom:606.958500px;}
.y79{bottom:606.960000px;}
.y30{bottom:606.975000px;}
.y232{bottom:609.135000px;}
.y1f6{bottom:612.885000px;}
.yb5{bottom:624.157500px;}
.y198{bottom:624.163500px;}
.y1bf{bottom:624.165000px;}
.y142{bottom:624.187500px;}
.y121{bottom:624.195000px;}
.ydb{bottom:624.201000px;}
.y78{bottom:624.202500px;}
.y2f{bottom:624.217500px;}
.y22{bottom:624.390000px;}
.y231{bottom:624.885000px;}
.y1f5{bottom:628.635000px;}
.y230{bottom:640.635000px;}
.yb4{bottom:641.400000px;}
.y197{bottom:641.406000px;}
.y1be{bottom:641.407500px;}
.y141{bottom:641.430000px;}
.y120{bottom:641.437500px;}
.yda{bottom:641.443500px;}
.y77{bottom:641.445000px;}
.y2e{bottom:641.460000px;}
.y1f4{bottom:644.385000px;}
.y22f{bottom:656.385000px;}
.yb3{bottom:658.642500px;}
.y196{bottom:658.648500px;}
.y1bd{bottom:658.650000px;}
.y140{bottom:658.672500px;}
.y11f{bottom:658.680000px;}
.yd9{bottom:658.686000px;}
.y76{bottom:658.687500px;}
.y2d{bottom:658.702500px;}
.y1f3{bottom:660.135000px;}
.y22e{bottom:672.135000px;}
.y195{bottom:675.891000px;}
.y1bc{bottom:675.892500px;}
.y13f{bottom:675.915000px;}
.y11e{bottom:675.922500px;}
.yd8{bottom:675.928500px;}
.y75{bottom:675.930000px;}
.y2c{bottom:675.945000px;}
.y22d{bottom:687.885000px;}
.y194{bottom:693.133500px;}
.y13e{bottom:693.157500px;}
.y11d{bottom:693.165000px;}
.yd7{bottom:693.171000px;}
.y74{bottom:693.172500px;}
.y2b{bottom:693.187500px;}
.y21{bottom:694.593000px;}
.y22c{bottom:703.635000px;}
.y20{bottom:708.849000px;}
.y13d{bottom:710.400000px;}
.y11c{bottom:710.407500px;}
.yd6{bottom:710.413500px;}
.y73{bottom:710.415000px;}
.y2a{bottom:710.430000px;}
.y22b{bottom:719.385000px;}
.y1f{bottom:723.105000px;}
.y13c{bottom:727.642500px;}
.y11b{bottom:727.650000px;}
.yd5{bottom:727.656000px;}
.y72{bottom:727.657500px;}
.y29{bottom:727.672500px;}
.y22a{bottom:735.135000px;}
.y1e{bottom:741.105000px;}
.y11a{bottom:744.892500px;}
.y71{bottom:744.900000px;}
.y28{bottom:744.915000px;}
.y229{bottom:750.885000px;}
.y70{bottom:762.142500px;}
.y27{bottom:762.157500px;}
.y228{bottom:766.635000px;}
.y26{bottom:779.400000px;}
.y227{bottom:782.385000px;}
.y1d{bottom:786.105000px;}
.y25{bottom:796.642500px;}
.y226{bottom:798.135000px;}
.y1c{bottom:810.105000px;}
.y24{bottom:813.885000px;}
.y1b{bottom:861.105000px;}
.y23{bottom:924.000000px;}
.h8{height:33.843750px;}
.h5{height:51.216000px;}
.h4{height:57.618000px;}
.h19{height:57.666000px;}
.h13{height:57.690000px;}
.hf{height:57.738000px;}
.h1a{height:57.786000px;}
.hc{height:58.536000px;}
.h1{height:60.819000px;}
.h2{height:61.788000px;}
.h11{height:64.020000px;}
.h12{height:65.040000px;}
.h3{height:70.422000px;}
.hd{height:70.595400px;}
.h15{height:70.685400px;}
.h1e{height:70.691400px;}
.h18{height:70.775400px;}
.h10{height:70.835400px;}
.h1d{height:70.865400px;}
.he{height:70.895400px;}
.ha{height:70.896000px;}
.h1b{height:70.925400px;}
.h16{height:70.955400px;}
.h1c{height:70.961400px;}
.h14{height:70.985400px;}
.hb{height:71.015400px;}
.h17{height:71.075400px;}
.h9{height:71.544000px;}
.h6{height:102.432000px;}
.h7{height:103.382400px;}
.h0{height:894.000000px;}
.w0{width:634.500000px;}
.x0{left:0.000000px;}
.x5{left:4.500000px;}
.x1{left:74.700000px;}
.x6{left:75.915000px;}
.xc{left:89.700000px;}
.xb{left:90.915000px;}
.x9{left:91.959000px;}
.x7{left:93.157500px;}
.x2{left:97.204500px;}
.x8{left:98.419500px;}
.xa{left:111.726000px;}
.x3{left:430.275000px;}
.x4{left:467.340000px;}
@media print{
.v3{vertical-align:-19.360000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.506667pt;}
.v1{vertical-align:28.160000pt;}
.ls19{letter-spacing:-1.466667pt;}
.ls50{letter-spacing:-1.408000pt;}
.ls4b{letter-spacing:-1.349333pt;}
.ls52{letter-spacing:-1.290667pt;}
.ls68{letter-spacing:-1.232000pt;}
.ls2e{letter-spacing:-1.173333pt;}
.ls91{letter-spacing:-1.120000pt;}
.ls3b{letter-spacing:-1.114667pt;}
.ls8c{letter-spacing:-1.066667pt;}
.ls3a{letter-spacing:-1.056000pt;}
.ls4e{letter-spacing:-1.013333pt;}
.lsf{letter-spacing:-1.008000pt;}
.ls1e{letter-spacing:-0.997333pt;}
.ls6{letter-spacing:-0.962667pt;}
.ls99{letter-spacing:-0.960000pt;}
.ls38{letter-spacing:-0.938667pt;}
.ls49{letter-spacing:-0.906667pt;}
.ls22{letter-spacing:-0.880000pt;}
.ls76{letter-spacing:-0.862400pt;}
.ls47{letter-spacing:-0.821333pt;}
.ls2d{letter-spacing:-0.762667pt;}
.ls4{letter-spacing:-0.760000pt;}
.ls77{letter-spacing:-0.720000pt;}
.ls39{letter-spacing:-0.704000pt;}
.ls53{letter-spacing:-0.698133pt;}
.ls98{letter-spacing:-0.693333pt;}
.ls97{letter-spacing:-0.680000pt;}
.lsc{letter-spacing:-0.645333pt;}
.ls92{letter-spacing:-0.640000pt;}
.ls4a{letter-spacing:-0.624000pt;}
.ls6e{letter-spacing:-0.616000pt;}
.lsd{letter-spacing:-0.586667pt;}
.lsa{letter-spacing:-0.557333pt;}
.ls56{letter-spacing:-0.540000pt;}
.ls75{letter-spacing:-0.533333pt;}
.ls2b{letter-spacing:-0.528000pt;}
.ls41{letter-spacing:-0.492800pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.469333pt;}
.ls9c{letter-spacing:-0.426667pt;}
.ls35{letter-spacing:-0.410667pt;}
.ls55{letter-spacing:-0.396000pt;}
.ls6b{letter-spacing:-0.384000pt;}
.ls2c{letter-spacing:-0.369600pt;}
.ls89{letter-spacing:-0.360000pt;}
.ls8{letter-spacing:-0.354667pt;}
.ls36{letter-spacing:-0.352000pt;}
.ls24{letter-spacing:-0.336000pt;}
.ls48{letter-spacing:-0.320000pt;}
.ls60{letter-spacing:-0.298667pt;}
.ls1d{letter-spacing:-0.293333pt;}
.ls42{letter-spacing:-0.288000pt;}
.ls5f{letter-spacing:-0.287467pt;}
.ls9b{letter-spacing:-0.266667pt;}
.ls43{letter-spacing:-0.252000pt;}
.ls5b{letter-spacing:-0.240000pt;}
.ls1f{letter-spacing:-0.234667pt;}
.ls37{letter-spacing:-0.205333pt;}
.ls7{letter-spacing:-0.202667pt;}
.ls9a{letter-spacing:-0.200000pt;}
.ls5c{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.176000pt;}
.ls67{letter-spacing:-0.164267pt;}
.ls93{letter-spacing:-0.160000pt;}
.ls31{letter-spacing:-0.144000pt;}
.ls9d{letter-spacing:-0.120000pt;}
.ls1c{letter-spacing:-0.117333pt;}
.ls8d{letter-spacing:-0.106667pt;}
.ls9{letter-spacing:-0.101333pt;}
.ls30{letter-spacing:-0.096000pt;}
.ls54{letter-spacing:-0.085333pt;}
.ls8e{letter-spacing:-0.080000pt;}
.ls6a{letter-spacing:-0.072000pt;}
.ls1a{letter-spacing:-0.058667pt;}
.ls4d{letter-spacing:-0.053333pt;}
.ls25{letter-spacing:-0.048000pt;}
.ls23{letter-spacing:-0.042667pt;}
.ls90{letter-spacing:-0.040000pt;}
.ls69{letter-spacing:-0.036000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7c{letter-spacing:0.040000pt;}
.ls40{letter-spacing:0.048000pt;}
.ls71{letter-spacing:0.053333pt;}
.ls20{letter-spacing:0.058667pt;}
.ls18{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.101333pt;}
.lse{letter-spacing:0.117333pt;}
.ls2f{letter-spacing:0.128000pt;}
.ls3e{letter-spacing:0.144000pt;}
.lsb{letter-spacing:0.152000pt;}
.ls72{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.176000pt;}
.ls5d{letter-spacing:0.192000pt;}
.ls96{letter-spacing:0.200000pt;}
.ls74{letter-spacing:0.205333pt;}
.ls44{letter-spacing:0.213333pt;}
.ls15{letter-spacing:0.234667pt;}
.ls29{letter-spacing:0.240000pt;}
.ls5{letter-spacing:0.253333pt;}
.ls70{letter-spacing:0.266667pt;}
.ls32{letter-spacing:0.288000pt;}
.ls2a{letter-spacing:0.293333pt;}
.ls78{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.336000pt;}
.ls14{letter-spacing:0.352000pt;}
.ls79{letter-spacing:0.360000pt;}
.ls7a{letter-spacing:0.373333pt;}
.ls10{letter-spacing:0.384000pt;}
.ls87{letter-spacing:0.400000pt;}
.ls1{letter-spacing:0.405333pt;}
.ls3c{letter-spacing:0.410667pt;}
.ls83{letter-spacing:0.426667pt;}
.ls82{letter-spacing:0.440000pt;}
.ls2{letter-spacing:0.456000pt;}
.ls27{letter-spacing:0.469333pt;}
.ls7b{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.528000pt;}
.ls73{letter-spacing:0.533333pt;}
.ls5e{letter-spacing:0.533867pt;}
.ls65{letter-spacing:0.540000pt;}
.ls8f{letter-spacing:0.560000pt;}
.ls3f{letter-spacing:0.576000pt;}
.ls33{letter-spacing:0.586667pt;}
.ls84{letter-spacing:0.600000pt;}
.ls3d{letter-spacing:0.624000pt;}
.ls45{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.645333pt;}
.ls4c{letter-spacing:0.704000pt;}
.ls58{letter-spacing:0.720000pt;}
.ls95{letter-spacing:0.746667pt;}
.ls5a{letter-spacing:0.756000pt;}
.ls94{letter-spacing:0.760000pt;}
.ls34{letter-spacing:0.762667pt;}
.ls59{letter-spacing:0.768000pt;}
.ls63{letter-spacing:0.780267pt;}
.ls8b{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.821333pt;}
.ls80{letter-spacing:0.840000pt;}
.ls81{letter-spacing:0.853333pt;}
.ls4f{letter-spacing:0.880000pt;}
.ls7f{letter-spacing:0.906667pt;}
.ls46{letter-spacing:0.938667pt;}
.ls66{letter-spacing:0.960000pt;}
.ls6c{letter-spacing:0.997333pt;}
.ls57{letter-spacing:1.056000pt;}
.ls64{letter-spacing:1.114667pt;}
.ls61{letter-spacing:1.173333pt;}
.ls85{letter-spacing:1.226667pt;}
.ls12{letter-spacing:1.290667pt;}
.ls88{letter-spacing:1.320000pt;}
.ls86{letter-spacing:1.333333pt;}
.ls62{letter-spacing:1.349333pt;}
.ls51{letter-spacing:1.466667pt;}
.ls6f{letter-spacing:1.701333pt;}
.ls6d{letter-spacing:1.760000pt;}
.ls7e{letter-spacing:2.120000pt;}
.ls7d{letter-spacing:2.133333pt;}
.ls8a{letter-spacing:2.160000pt;}
.wsaf{word-spacing:-16.426667pt;}
.wsae{word-spacing:-16.368000pt;}
.ws90{word-spacing:-15.957333pt;}
.ws92{word-spacing:-15.781333pt;}
.ws80{word-spacing:-15.722667pt;}
.wsb0{word-spacing:-15.370667pt;}
.ws74{word-spacing:-15.312000pt;}
.ws50{word-spacing:-15.253333pt;}
.ws3d{word-spacing:-15.136000pt;}
.ws67{word-spacing:-15.077333pt;}
.ws73{word-spacing:-15.018667pt;}
.ws65{word-spacing:-14.960000pt;}
.ws16{word-spacing:-14.901333pt;}
.ws38{word-spacing:-14.842667pt;}
.ws76{word-spacing:-14.784000pt;}
.ws18{word-spacing:-14.725333pt;}
.ws15{word-spacing:-14.666667pt;}
.ws17{word-spacing:-14.608000pt;}
.wsd8{word-spacing:-14.560000pt;}
.ws8f{word-spacing:-14.549333pt;}
.ws6e{word-spacing:-14.490667pt;}
.ws4f{word-spacing:-14.432000pt;}
.ws59{word-spacing:-14.373333pt;}
.ws4c{word-spacing:-14.314667pt;}
.ws4b{word-spacing:-14.256000pt;}
.ws53{word-spacing:-14.197333pt;}
.wsd0{word-spacing:-14.186667pt;}
.ws3b{word-spacing:-14.138667pt;}
.wsfb{word-spacing:-14.080000pt;}
.ws93{word-spacing:-14.021333pt;}
.ws58{word-spacing:-13.962667pt;}
.wsd7{word-spacing:-13.920000pt;}
.ws5a{word-spacing:-13.904000pt;}
.ws64{word-spacing:-13.845333pt;}
.wsc1{word-spacing:-13.813333pt;}
.ws66{word-spacing:-13.786667pt;}
.wsd3{word-spacing:-13.760000pt;}
.ws78{word-spacing:-13.728000pt;}
.ws79{word-spacing:-13.669333pt;}
.wsdd{word-spacing:-13.653333pt;}
.ws77{word-spacing:-13.610667pt;}
.wsdc{word-spacing:-13.600000pt;}
.ws7e{word-spacing:-13.552000pt;}
.wsb4{word-spacing:-13.434667pt;}
.wsf9{word-spacing:-13.386667pt;}
.ws6f{word-spacing:-13.333333pt;}
.ws6d{word-spacing:-13.317333pt;}
.ws70{word-spacing:-13.280000pt;}
.ws75{word-spacing:-13.258667pt;}
.wsd1{word-spacing:-13.226667pt;}
.wsff{word-spacing:-13.173333pt;}
.wsf7{word-spacing:-13.066667pt;}
.wsc6{word-spacing:-13.013333pt;}
.ws9e{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.920000pt;}
.wsfd{word-spacing:-12.906667pt;}
.wsc4{word-spacing:-12.853333pt;}
.wse5{word-spacing:-12.800000pt;}
.wsdf{word-spacing:-12.693333pt;}
.ws9f{word-spacing:-12.384000pt;}
.wsf4{word-spacing:-12.373333pt;}
.wsce{word-spacing:-12.320000pt;}
.ws8a{word-spacing:-12.288000pt;}
.wscd{word-spacing:-12.266667pt;}
.wsda{word-spacing:-12.213333pt;}
.wscb{word-spacing:-12.120000pt;}
.wsa9{word-spacing:-12.096000pt;}
.ws83{word-spacing:-12.048000pt;}
.ws1c{word-spacing:-12.000000pt;}
.ws84{word-spacing:-11.952000pt;}
.ws94{word-spacing:-11.904000pt;}
.ws82{word-spacing:-11.856000pt;}
.ws5c{word-spacing:-11.712000pt;}
.wsa5{word-spacing:-11.616000pt;}
.ws9d{word-spacing:-11.472000pt;}
.wse2{word-spacing:-11.320000pt;}
.ws91{word-spacing:-11.046933pt;}
.wscf{word-spacing:-10.840000pt;}
.ws87{word-spacing:-10.800533pt;}
.ws3e{word-spacing:-10.794667pt;}
.wsfa{word-spacing:-10.760000pt;}
.wsb6{word-spacing:-10.624000pt;}
.ws7b{word-spacing:-10.581333pt;}
.wsb3{word-spacing:-10.472000pt;}
.wsd2{word-spacing:-10.440000pt;}
.wse1{word-spacing:-10.400000pt;}
.ws89{word-spacing:-10.368000pt;}
.wsc0{word-spacing:-10.360000pt;}
.wsdb{word-spacing:-10.320000pt;}
.ws19{word-spacing:-10.266667pt;}
.wscc{word-spacing:-10.240000pt;}
.ws100{word-spacing:-10.200000pt;}
.ws98{word-spacing:-10.102400pt;}
.ws4d{word-spacing:-10.061333pt;}
.wsc7{word-spacing:-10.040000pt;}
.wsc8{word-spacing:-10.000000pt;}
.ws88{word-spacing:-9.979200pt;}
.wsd9{word-spacing:-9.960000pt;}
.ws3a{word-spacing:-9.897067pt;}
.wsfe{word-spacing:-9.880000pt;}
.wse3{word-spacing:-9.840000pt;}
.wsf6{word-spacing:-9.800000pt;}
.ws5b{word-spacing:-9.773867pt;}
.wsc9{word-spacing:-9.680000pt;}
.wsad{word-spacing:-9.650667pt;}
.wsc5{word-spacing:-9.640000pt;}
.ws7a{word-spacing:-9.568533pt;}
.wsb1{word-spacing:-9.540000pt;}
.wse0{word-spacing:-9.520000pt;}
.ws7f{word-spacing:-9.445333pt;}
.wsb5{word-spacing:-9.404267pt;}
.wsf2{word-spacing:-9.320000pt;}
.ws9b{word-spacing:-9.144000pt;}
.wsf3{word-spacing:-9.040000pt;}
.wsa0{word-spacing:-8.964000pt;}
.wse4{word-spacing:-8.880000pt;}
.ws5d{word-spacing:-8.748000pt;}
.ws7c{word-spacing:-8.604000pt;}
.ws1d{word-spacing:-0.762667pt;}
.ws28{word-spacing:-0.704000pt;}
.ws27{word-spacing:-0.645333pt;}
.wsba{word-spacing:-0.640000pt;}
.ws2e{word-spacing:-0.586667pt;}
.ws37{word-spacing:-0.576000pt;}
.wsc{word-spacing:-0.557333pt;}
.wse9{word-spacing:-0.533333pt;}
.ws31{word-spacing:-0.528000pt;}
.ws44{word-spacing:-0.480000pt;}
.ws29{word-spacing:-0.469333pt;}
.wsa{word-spacing:-0.456000pt;}
.ws60{word-spacing:-0.432000pt;}
.ws54{word-spacing:-0.410667pt;}
.wsea{word-spacing:-0.400000pt;}
.ws46{word-spacing:-0.384000pt;}
.ws69{word-spacing:-0.373333pt;}
.ws22{word-spacing:-0.352000pt;}
.ws36{word-spacing:-0.336000pt;}
.wse7{word-spacing:-0.320000pt;}
.ws25{word-spacing:-0.293333pt;}
.ws34{word-spacing:-0.288000pt;}
.ws3{word-spacing:-0.253333pt;}
.ws30{word-spacing:-0.240000pt;}
.ws3f{word-spacing:-0.234667pt;}
.wse6{word-spacing:-0.213333pt;}
.wsa7{word-spacing:-0.192000pt;}
.ws1f{word-spacing:-0.176000pt;}
.wsef{word-spacing:-0.160000pt;}
.ws1{word-spacing:-0.152000pt;}
.ws8b{word-spacing:-0.144000pt;}
.ws11{word-spacing:-0.117333pt;}
.wsb8{word-spacing:-0.106667pt;}
.wsd{word-spacing:-0.101333pt;}
.ws33{word-spacing:-0.096000pt;}
.ws51{word-spacing:-0.058667pt;}
.ws47{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
.ws101{word-spacing:0.053333pt;}
.ws56{word-spacing:0.058667pt;}
.ws35{word-spacing:0.096000pt;}
.ws4{word-spacing:0.101333pt;}
.wsed{word-spacing:0.106667pt;}
.ws2f{word-spacing:0.117333pt;}
.wsab{word-spacing:0.144000pt;}
.ws42{word-spacing:0.176000pt;}
.wsa2{word-spacing:0.192000pt;}
.ws2c{word-spacing:0.234667pt;}
.ws6c{word-spacing:0.240000pt;}
.ws6b{word-spacing:0.266667pt;}
.ws95{word-spacing:0.288000pt;}
.ws2d{word-spacing:0.293333pt;}
.ws6{word-spacing:0.304000pt;}
.ws71{word-spacing:0.320000pt;}
.ws96{word-spacing:0.336000pt;}
.ws26{word-spacing:0.352000pt;}
.ws86{word-spacing:0.360000pt;}
.wsa8{word-spacing:0.384000pt;}
.ws5f{word-spacing:0.410667pt;}
.wsbc{word-spacing:0.426667pt;}
.ws13{word-spacing:0.432000pt;}
.ws23{word-spacing:0.469333pt;}
.ws85{word-spacing:0.480000pt;}
.ws57{word-spacing:0.528000pt;}
.wsbd{word-spacing:0.533333pt;}
.ws2{word-spacing:0.557333pt;}
.ws49{word-spacing:0.576000pt;}
.ws2b{word-spacing:0.586667pt;}
.ws63{word-spacing:0.624000pt;}
.ws4e{word-spacing:0.645333pt;}
.ws6a{word-spacing:0.693333pt;}
.ws1e{word-spacing:0.704000pt;}
.wsa3{word-spacing:0.720000pt;}
.wsec{word-spacing:0.746667pt;}
.ws3c{word-spacing:0.762667pt;}
.ws68{word-spacing:0.780267pt;}
.wsbe{word-spacing:0.800000pt;}
.wsf{word-spacing:0.810667pt;}
.ws62{word-spacing:0.816000pt;}
.ws40{word-spacing:0.821333pt;}
.wsc2{word-spacing:0.853333pt;}
.wsb{word-spacing:0.861333pt;}
.ws48{word-spacing:0.864000pt;}
.ws55{word-spacing:0.880000pt;}
.wseb{word-spacing:0.906667pt;}
.ws4a{word-spacing:0.912000pt;}
.ws41{word-spacing:0.938667pt;}
.ws97{word-spacing:0.960000pt;}
.ws43{word-spacing:0.997333pt;}
.ws8d{word-spacing:1.008000pt;}
.ws5{word-spacing:1.013333pt;}
.ws45{word-spacing:1.056000pt;}
.wsb7{word-spacing:1.066667pt;}
.ws32{word-spacing:1.104000pt;}
.wse{word-spacing:1.114667pt;}
.wsb9{word-spacing:1.120000pt;}
.ws61{word-spacing:1.152000pt;}
.ws7{word-spacing:1.165333pt;}
.ws2a{word-spacing:1.173333pt;}
.ws8e{word-spacing:1.200000pt;}
.wsf0{word-spacing:1.226667pt;}
.ws20{word-spacing:1.232000pt;}
.ws9{word-spacing:1.266667pt;}
.wsbb{word-spacing:1.280000pt;}
.ws21{word-spacing:1.290667pt;}
.ws12{word-spacing:1.349333pt;}
.ws24{word-spacing:1.408000pt;}
.ws10{word-spacing:1.466667pt;}
.wsee{word-spacing:1.600000pt;}
.wsf1{word-spacing:2.013333pt;}
.wsa4{word-spacing:2.440000pt;}
.wsa1{word-spacing:2.529333pt;}
.wsa6{word-spacing:2.808000pt;}
.ws7d{word-spacing:2.966667pt;}
.wsfc{word-spacing:2.986667pt;}
.wsb2{word-spacing:2.992000pt;}
.ws5e{word-spacing:2.993333pt;}
.wsf5{word-spacing:3.013333pt;}
.wsde{word-spacing:3.066667pt;}
.wsc3{word-spacing:3.173333pt;}
.ws99{word-spacing:3.400000pt;}
.ws14{word-spacing:3.840000pt;}
.ws9c{word-spacing:3.878667pt;}
.wsd5{word-spacing:3.960000pt;}
.wsd6{word-spacing:4.146667pt;}
.wse8{word-spacing:4.160000pt;}
.wsd4{word-spacing:4.506667pt;}
.wsf8{word-spacing:4.826667pt;}
.ws9a{word-spacing:7.248000pt;}
.wsca{word-spacing:7.426667pt;}
.ws81{word-spacing:8.016000pt;}
.wsbf{word-spacing:8.037333pt;}
.ws8c{word-spacing:9.328000pt;}
.wsaa{word-spacing:10.325333pt;}
.ws39{word-spacing:14.608000pt;}
.ws52{word-spacing:14.666667pt;}
.ws72{word-spacing:14.725333pt;}
.wsac{word-spacing:14.784000pt;}
.ws1a{word-spacing:31.914667pt;}
.ws1b{word-spacing:32.016000pt;}
._a{margin-left:-7.070400pt;}
._e{margin-left:-6.160000pt;}
._5{margin-left:-5.080000pt;}
._7{margin-left:-3.984000pt;}
._1{margin-left:-2.584000pt;}
._0{margin-left:-1.064000pt;}
._3{width:1.008000pt;}
._8{width:1.997333pt;}
._d{width:3.168000pt;}
._10{width:10.520000pt;}
._c{width:13.141333pt;}
._f{width:14.786667pt;}
._2{width:25.029333pt;}
._6{width:42.624000pt;}
._4{width:45.024000pt;}
._b{width:98.432000pt;}
._9{width:1141.034667pt;}
.fs7{font-size:36.000000pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:41.066667pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:59.733333pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1bb{bottom:47.936000pt;}
.yd4{bottom:48.093333pt;}
.yb2{bottom:48.141333pt;}
.y215{bottom:48.184000pt;}
.y119{bottom:48.221333pt;}
.y6f{bottom:48.330667pt;}
.y13b{bottom:48.336000pt;}
.y178{bottom:48.368000pt;}
.y1df{bottom:48.416000pt;}
.y10c{bottom:48.669333pt;}
.y96{bottom:48.773333pt;}
.y50{bottom:48.778667pt;}
.y1a{bottom:48.781333pt;}
.y164{bottom:48.784000pt;}
.y193{bottom:48.826667pt;}
.y225{bottom:49.333333pt;}
.yfa{bottom:49.486667pt;}
.y255{bottom:51.453333pt;}
.y1ba{bottom:60.608000pt;}
.yd3{bottom:60.765333pt;}
.yb1{bottom:60.813333pt;}
.y214{bottom:60.856000pt;}
.y118{bottom:60.877333pt;}
.y6e{bottom:61.002667pt;}
.y13a{bottom:61.008000pt;}
.y177{bottom:61.040000pt;}
.y1de{bottom:61.088000pt;}
.y10b{bottom:61.341333pt;}
.y4f{bottom:61.450667pt;}
.y19{bottom:61.453333pt;}
.y163{bottom:61.456000pt;}
.y192{bottom:61.498667pt;}
.y224{bottom:63.333333pt;}
.yf9{bottom:64.813333pt;}
.y254{bottom:65.453333pt;}
.y1b9{bottom:73.280000pt;}
.yd2{bottom:73.437333pt;}
.yb0{bottom:73.485333pt;}
.y213{bottom:73.528000pt;}
.y117{bottom:73.549333pt;}
.y6d{bottom:73.674667pt;}
.y139{bottom:73.680000pt;}
.y176{bottom:73.712000pt;}
.y1dd{bottom:73.760000pt;}
.y10a{bottom:74.013333pt;}
.y4e{bottom:74.122667pt;}
.y162{bottom:74.128000pt;}
.y191{bottom:74.170667pt;}
.y223{bottom:77.333333pt;}
.y253{bottom:79.453333pt;}
.yf8{bottom:80.140000pt;}
.y1b8{bottom:85.952000pt;}
.yd1{bottom:86.109333pt;}
.yaf{bottom:86.157333pt;}
.y212{bottom:86.200000pt;}
.y116{bottom:86.221333pt;}
.y6c{bottom:86.346667pt;}
.y138{bottom:86.352000pt;}
.y175{bottom:86.384000pt;}
.y1dc{bottom:86.432000pt;}
.y4d{bottom:86.794667pt;}
.y161{bottom:86.800000pt;}
.y190{bottom:86.842667pt;}
.y252{bottom:93.453333pt;}
.y95{bottom:95.032000pt;}
.yf7{bottom:95.466667pt;}
.y1b7{bottom:98.624000pt;}
.yd0{bottom:98.781333pt;}
.yae{bottom:98.829333pt;}
.y211{bottom:98.872000pt;}
.y115{bottom:98.893333pt;}
.y6b{bottom:99.018667pt;}
.y137{bottom:99.024000pt;}
.y174{bottom:99.056000pt;}
.y1db{bottom:99.104000pt;}
.y222{bottom:99.225333pt;}
.y4c{bottom:99.466667pt;}
.y160{bottom:99.472000pt;}
.y18f{bottom:99.514667pt;}
.y18{bottom:102.229333pt;}
.y251{bottom:107.453333pt;}
.y109{bottom:110.204000pt;}
.y1f2{bottom:110.286667pt;}
.y94{bottom:110.358667pt;}
.yf6{bottom:110.793333pt;}
.y1b6{bottom:111.296000pt;}
.ycf{bottom:111.453333pt;}
.yad{bottom:111.501333pt;}
.y210{bottom:111.544000pt;}
.y6a{bottom:111.690667pt;}
.y136{bottom:111.696000pt;}
.y173{bottom:111.728000pt;}
.y1da{bottom:111.776000pt;}
.y4b{bottom:112.138667pt;}
.y15f{bottom:112.144000pt;}
.y18e{bottom:112.149333pt;}
.y17{bottom:117.556000pt;}
.y250{bottom:121.453333pt;}
.y1b5{bottom:123.968000pt;}
.yac{bottom:124.146667pt;}
.y20f{bottom:124.216000pt;}
.y69{bottom:124.362667pt;}
.y135{bottom:124.368000pt;}
.y172{bottom:124.400000pt;}
.y1d9{bottom:124.448000pt;}
.y4a{bottom:124.810667pt;}
.y15e{bottom:124.816000pt;}
.y18d{bottom:124.821333pt;}
.y108{bottom:125.530667pt;}
.y1f1{bottom:125.613333pt;}
.y93{bottom:125.685333pt;}
.yf5{bottom:126.120000pt;}
.y16{bottom:132.882667pt;}
.y24f{bottom:135.453333pt;}
.y1b4{bottom:136.640000pt;}
.yab{bottom:136.818667pt;}
.y20e{bottom:136.888000pt;}
.y68{bottom:137.034667pt;}
.y134{bottom:137.040000pt;}
.y171{bottom:137.072000pt;}
.y1d8{bottom:137.120000pt;}
.y49{bottom:137.482667pt;}
.y15d{bottom:137.488000pt;}
.y18c{bottom:137.493333pt;}
.y114{bottom:140.840000pt;}
.y107{bottom:140.857333pt;}
.y1f0{bottom:140.940000pt;}
.y221{bottom:141.010667pt;}
.y92{bottom:141.012000pt;}
.yf4{bottom:141.446667pt;}
.yce{bottom:147.526667pt;}
.y1b3{bottom:149.312000pt;}
.y24e{bottom:149.453333pt;}
.yaa{bottom:149.490667pt;}
.y20d{bottom:149.560000pt;}
.y67{bottom:149.706667pt;}
.y170{bottom:149.744000pt;}
.y48{bottom:150.154667pt;}
.y15c{bottom:150.160000pt;}
.y18b{bottom:150.165333pt;}
.y15{bottom:155.880000pt;}
.y113{bottom:156.166667pt;}
.y106{bottom:156.184000pt;}
.y1ef{bottom:156.266667pt;}
.y220{bottom:156.337333pt;}
.y91{bottom:156.338667pt;}
.yf3{bottom:156.773333pt;}
.y1b2{bottom:161.984000pt;}
.ya9{bottom:162.162667pt;}
.y16f{bottom:162.416000pt;}
.y47{bottom:162.826667pt;}
.y15b{bottom:162.832000pt;}
.y18a{bottom:162.837333pt;}
.ycd{bottom:162.853333pt;}
.y24d{bottom:163.453333pt;}
.y112{bottom:171.493333pt;}
.y105{bottom:171.510667pt;}
.y1ee{bottom:171.593333pt;}
.y21f{bottom:171.664000pt;}
.y90{bottom:171.665333pt;}
.y1b1{bottom:174.656000pt;}
.ya8{bottom:174.834667pt;}
.y16e{bottom:175.088000pt;}
.y15a{bottom:175.504000pt;}
.y189{bottom:175.509333pt;}
.y24c{bottom:177.453333pt;}
.ycc{bottom:178.180000pt;}
.y111{bottom:186.820000pt;}
.y104{bottom:186.837333pt;}
.y66{bottom:186.846667pt;}
.y133{bottom:186.913333pt;}
.y1ed{bottom:186.920000pt;}
.y1d7{bottom:186.973333pt;}
.y21e{bottom:186.990667pt;}
.y8f{bottom:186.992000pt;}
.y1b0{bottom:187.328000pt;}
.ya7{bottom:187.506667pt;}
.y16d{bottom:187.760000pt;}
.y159{bottom:188.176000pt;}
.y188{bottom:188.181333pt;}
.yf2{bottom:189.106667pt;}
.y24b{bottom:191.453333pt;}
.ycb{bottom:193.506667pt;}
.y20c{bottom:198.806667pt;}
.y1af{bottom:200.000000pt;}
.y187{bottom:200.842667pt;}
.y158{bottom:200.848000pt;}
.y46{bottom:202.133333pt;}
.y110{bottom:202.146667pt;}
.y65{bottom:202.173333pt;}
.y132{bottom:202.240000pt;}
.y1ec{bottom:202.246667pt;}
.y1d6{bottom:202.300000pt;}
.y21d{bottom:202.317333pt;}
.y8e{bottom:202.318667pt;}
.yf1{bottom:203.106667pt;}
.y24a{bottom:205.453333pt;}
.yca{bottom:208.833333pt;}
.y14{bottom:209.546667pt;}
.y103{bottom:209.834667pt;}
.y1ae{bottom:212.672000pt;}
.y186{bottom:213.514667pt;}
.y157{bottom:213.520000pt;}
.y20b{bottom:214.133333pt;}
.yf0{bottom:217.106667pt;}
.y45{bottom:217.460000pt;}
.y10f{bottom:217.473333pt;}
.y64{bottom:217.500000pt;}
.y131{bottom:217.566667pt;}
.y1eb{bottom:217.573333pt;}
.y1d5{bottom:217.626667pt;}
.y21c{bottom:217.644000pt;}
.y249{bottom:219.453333pt;}
.yc9{bottom:224.160000pt;}
.y1ad{bottom:225.344000pt;}
.y185{bottom:226.186667pt;}
.y156{bottom:226.192000pt;}
.y13{bottom:228.184000pt;}
.y20a{bottom:229.460000pt;}
.y10e{bottom:232.800000pt;}
.y63{bottom:232.826667pt;}
.y16c{bottom:232.840000pt;}
.ya6{bottom:232.853333pt;}
.y130{bottom:232.893333pt;}
.y1ea{bottom:232.900000pt;}
.y1d4{bottom:232.953333pt;}
.y21b{bottom:232.970667pt;}
.y8d{bottom:232.986667pt;}
.y44{bottom:233.000000pt;}
.y248{bottom:233.453333pt;}
.y1ac{bottom:238.016000pt;}
.y155{bottom:238.864000pt;}
.yc8{bottom:239.486667pt;}
.y12{bottom:241.522000pt;}
.y209{bottom:244.873333pt;}
.y247{bottom:247.453333pt;}
.y10d{bottom:248.126667pt;}
.y62{bottom:248.153333pt;}
.y16b{bottom:248.166667pt;}
.y102{bottom:248.173333pt;}
.ya5{bottom:248.180000pt;}
.y12f{bottom:248.220000pt;}
.y1e9{bottom:248.226667pt;}
.y1d3{bottom:248.280000pt;}
.y21a{bottom:248.297333pt;}
.yef{bottom:248.312000pt;}
.y8c{bottom:248.313333pt;}
.y43{bottom:248.326667pt;}
.y1ab{bottom:250.688000pt;}
.y154{bottom:251.536000pt;}
.yc7{bottom:254.813333pt;}
.y11{bottom:254.860000pt;}
.y208{bottom:260.200000pt;}
.y246{bottom:261.453333pt;}
.y1aa{bottom:263.322667pt;}
.y61{bottom:263.480000pt;}
.y16a{bottom:263.493333pt;}
.y101{bottom:263.500000pt;}
.ya4{bottom:263.506667pt;}
.y184{bottom:263.533333pt;}
.y12e{bottom:263.546667pt;}
.y1e8{bottom:263.553333pt;}
.y1d2{bottom:263.606667pt;}
.y219{bottom:263.624000pt;}
.yee{bottom:263.638667pt;}
.y8b{bottom:263.640000pt;}
.y42{bottom:263.653333pt;}
.y153{bottom:264.208000pt;}
.y10{bottom:268.198000pt;}
.yc6{bottom:270.140000pt;}
.y245{bottom:275.453333pt;}
.y207{bottom:275.526667pt;}
.y1a9{bottom:275.994667pt;}
.y152{bottom:276.880000pt;}
.y60{bottom:278.806667pt;}
.y169{bottom:278.820000pt;}
.y100{bottom:278.826667pt;}
.ya3{bottom:278.833333pt;}
.y183{bottom:278.860000pt;}
.y12d{bottom:278.873333pt;}
.y1e7{bottom:278.880000pt;}
.y1d1{bottom:278.933333pt;}
.y218{bottom:278.950667pt;}
.yed{bottom:278.965333pt;}
.y8a{bottom:278.966667pt;}
.y41{bottom:278.980000pt;}
.yf{bottom:281.536000pt;}
.yc5{bottom:285.466667pt;}
.y1a8{bottom:288.666667pt;}
.y244{bottom:289.453333pt;}
.y206{bottom:290.853333pt;}
.y5f{bottom:294.133333pt;}
.y168{bottom:294.146667pt;}
.yff{bottom:294.153333pt;}
.ya2{bottom:294.160000pt;}
.y182{bottom:294.186667pt;}
.y12c{bottom:294.200000pt;}
.y1e6{bottom:294.206667pt;}
.y1d0{bottom:294.260000pt;}
.y217{bottom:294.277333pt;}
.yec{bottom:294.292000pt;}
.y89{bottom:294.293333pt;}
.y40{bottom:294.306667pt;}
.ye{bottom:294.874000pt;}
.yc4{bottom:300.793333pt;}
.y1a7{bottom:301.338667pt;}
.y243{bottom:303.453333pt;}
.y205{bottom:306.180000pt;}
.yd{bottom:308.212000pt;}
.y5e{bottom:309.460000pt;}
.y167{bottom:309.473333pt;}
.yfe{bottom:309.480000pt;}
.ya1{bottom:309.486667pt;}
.y181{bottom:309.513333pt;}
.y12b{bottom:309.526667pt;}
.y1e5{bottom:309.533333pt;}
.y1cf{bottom:309.586667pt;}
.yeb{bottom:309.618667pt;}
.y88{bottom:309.620000pt;}
.y3f{bottom:309.633333pt;}
.y1a6{bottom:314.010667pt;}
.yc3{bottom:316.120000pt;}
.y216{bottom:317.274667pt;}
.y242{bottom:317.453333pt;}
.y204{bottom:321.506667pt;}
.yc{bottom:321.550000pt;}
.y166{bottom:324.800000pt;}
.yfd{bottom:324.806667pt;}
.ya0{bottom:324.813333pt;}
.y180{bottom:324.840000pt;}
.y12a{bottom:324.853333pt;}
.y1e4{bottom:324.860000pt;}
.y1ce{bottom:324.913333pt;}
.y5d{bottom:324.930667pt;}
.y151{bottom:324.933333pt;}
.yea{bottom:324.945333pt;}
.y87{bottom:324.946667pt;}
.y3e{bottom:324.960000pt;}
.y1a5{bottom:326.682667pt;}
.y241{bottom:331.453333pt;}
.y203{bottom:336.833333pt;}
.y1a4{bottom:339.354667pt;}
.y165{bottom:340.126667pt;}
.yfc{bottom:340.133333pt;}
.y9f{bottom:340.140000pt;}
.y17f{bottom:340.166667pt;}
.y129{bottom:340.180000pt;}
.y1e3{bottom:340.186667pt;}
.y1cd{bottom:340.240000pt;}
.y5c{bottom:340.257333pt;}
.y150{bottom:340.260000pt;}
.ye9{bottom:340.272000pt;}
.y86{bottom:340.273333pt;}
.y3d{bottom:340.286667pt;}
.y240{bottom:345.453333pt;}
.yc2{bottom:346.786667pt;}
.yb{bottom:348.213333pt;}
.y1a3{bottom:352.026667pt;}
.y202{bottom:352.160000pt;}
.yfb{bottom:355.460000pt;}
.y9e{bottom:355.466667pt;}
.y17e{bottom:355.493333pt;}
.y128{bottom:355.506667pt;}
.y1e2{bottom:355.513333pt;}
.y1cc{bottom:355.566667pt;}
.y5b{bottom:355.584000pt;}
.y14f{bottom:355.586667pt;}
.ye8{bottom:355.598667pt;}
.y85{bottom:355.600000pt;}
.y3c{bottom:355.613333pt;}
.y23f{bottom:359.453333pt;}
.yc1{bottom:360.786667pt;}
.y201{bottom:367.486667pt;}
.y9d{bottom:370.793333pt;}
.y17d{bottom:370.820000pt;}
.y127{bottom:370.833333pt;}
.y1e1{bottom:370.840000pt;}
.y1cb{bottom:370.893333pt;}
.y5a{bottom:370.910667pt;}
.y14e{bottom:370.913333pt;}
.ye7{bottom:370.925333pt;}
.y84{bottom:370.926667pt;}
.y3b{bottom:370.940000pt;}
.y23e{bottom:373.453333pt;}
.yc0{bottom:374.786667pt;}
.ya{bottom:380.176667pt;}
.y200{bottom:382.813333pt;}
.y17c{bottom:386.146667pt;}
.y9c{bottom:386.160000pt;}
.y1e0{bottom:386.166667pt;}
.y1ca{bottom:386.220000pt;}
.y59{bottom:386.237333pt;}
.y14d{bottom:386.240000pt;}
.ye6{bottom:386.252000pt;}
.y83{bottom:386.253333pt;}
.y3a{bottom:386.266667pt;}
.y23d{bottom:387.453333pt;}
.ybf{bottom:388.786667pt;}
.y1ff{bottom:398.140000pt;}
.y9{bottom:398.847333pt;}
.y23c{bottom:401.453333pt;}
.y17b{bottom:401.473333pt;}
.y9b{bottom:401.486667pt;}
.y1a2{bottom:401.493333pt;}
.y1c9{bottom:401.546667pt;}
.y58{bottom:401.564000pt;}
.y14c{bottom:401.566667pt;}
.ye5{bottom:401.578667pt;}
.y82{bottom:401.580000pt;}
.y39{bottom:401.593333pt;}
.ybe{bottom:402.786667pt;}
.y8{bottom:412.185333pt;}
.y1fe{bottom:413.466667pt;}
.y23b{bottom:415.453333pt;}
.y17a{bottom:416.800000pt;}
.y9a{bottom:416.813333pt;}
.y1a1{bottom:416.820000pt;}
.y1c8{bottom:416.873333pt;}
.y57{bottom:416.890667pt;}
.y14b{bottom:416.893333pt;}
.ye4{bottom:416.905333pt;}
.y81{bottom:416.906667pt;}
.y38{bottom:416.920000pt;}
.y7{bottom:425.523333pt;}
.y1fd{bottom:428.793333pt;}
.y23a{bottom:429.453333pt;}
.y179{bottom:432.126667pt;}
.y99{bottom:432.140000pt;}
.y1a0{bottom:432.146667pt;}
.ybd{bottom:432.193333pt;}
.y1c7{bottom:432.200000pt;}
.y56{bottom:432.217333pt;}
.y14a{bottom:432.220000pt;}
.ye3{bottom:432.232000pt;}
.y80{bottom:432.233333pt;}
.y37{bottom:432.246667pt;}
.y6{bottom:438.861333pt;}
.y239{bottom:443.453333pt;}
.y1fc{bottom:444.120000pt;}
.y98{bottom:447.466667pt;}
.y19f{bottom:447.473333pt;}
.ybc{bottom:447.520000pt;}
.y1c6{bottom:447.526667pt;}
.y55{bottom:447.544000pt;}
.y149{bottom:447.546667pt;}
.ye2{bottom:447.558667pt;}
.y7f{bottom:447.560000pt;}
.y36{bottom:447.573333pt;}
.y5{bottom:452.199333pt;}
.y238{bottom:457.453333pt;}
.y97{bottom:462.793333pt;}
.y19e{bottom:462.800000pt;}
.ybb{bottom:462.846667pt;}
.y1c5{bottom:462.853333pt;}
.y54{bottom:462.870667pt;}
.y148{bottom:462.873333pt;}
.ye1{bottom:462.885333pt;}
.y7e{bottom:462.886667pt;}
.y35{bottom:462.900000pt;}
.y4{bottom:465.537333pt;}
.y237{bottom:471.453333pt;}
.y1fb{bottom:474.786667pt;}
.y19d{bottom:478.126667pt;}
.yba{bottom:478.173333pt;}
.y1c4{bottom:478.180000pt;}
.y53{bottom:478.197333pt;}
.y147{bottom:478.200000pt;}
.y126{bottom:478.206667pt;}
.ye0{bottom:478.212000pt;}
.y7d{bottom:478.213333pt;}
.y34{bottom:478.226667pt;}
.y3{bottom:478.875333pt;}
.y236{bottom:485.453333pt;}
.y1fa{bottom:488.786667pt;}
.y2{bottom:492.213333pt;}
.y19c{bottom:493.480000pt;}
.yb9{bottom:493.500000pt;}
.y1c3{bottom:493.506667pt;}
.y52{bottom:493.524000pt;}
.y146{bottom:493.526667pt;}
.y125{bottom:493.533333pt;}
.ydf{bottom:493.538667pt;}
.y7c{bottom:493.540000pt;}
.y33{bottom:493.553333pt;}
.y235{bottom:499.453333pt;}
.y1f9{bottom:502.786667pt;}
.y19b{bottom:508.806667pt;}
.yb8{bottom:508.826667pt;}
.y1c2{bottom:508.833333pt;}
.y145{bottom:508.853333pt;}
.y124{bottom:508.860000pt;}
.yde{bottom:508.865333pt;}
.y7b{bottom:508.866667pt;}
.y32{bottom:508.880000pt;}
.y234{bottom:513.453333pt;}
.y51{bottom:516.521333pt;}
.y1f8{bottom:516.786667pt;}
.y1{bottom:518.880000pt;}
.y19a{bottom:524.133333pt;}
.yb7{bottom:524.153333pt;}
.y1c1{bottom:524.160000pt;}
.y144{bottom:524.180000pt;}
.y123{bottom:524.186667pt;}
.ydd{bottom:524.192000pt;}
.y7a{bottom:524.193333pt;}
.y31{bottom:524.206667pt;}
.y233{bottom:527.453333pt;}
.y1f7{bottom:530.786667pt;}
.y199{bottom:539.460000pt;}
.yb6{bottom:539.480000pt;}
.y1c0{bottom:539.486667pt;}
.y143{bottom:539.506667pt;}
.y122{bottom:539.513333pt;}
.ydc{bottom:539.518667pt;}
.y79{bottom:539.520000pt;}
.y30{bottom:539.533333pt;}
.y232{bottom:541.453333pt;}
.y1f6{bottom:544.786667pt;}
.yb5{bottom:554.806667pt;}
.y198{bottom:554.812000pt;}
.y1bf{bottom:554.813333pt;}
.y142{bottom:554.833333pt;}
.y121{bottom:554.840000pt;}
.ydb{bottom:554.845333pt;}
.y78{bottom:554.846667pt;}
.y2f{bottom:554.860000pt;}
.y22{bottom:555.013333pt;}
.y231{bottom:555.453333pt;}
.y1f5{bottom:558.786667pt;}
.y230{bottom:569.453333pt;}
.yb4{bottom:570.133333pt;}
.y197{bottom:570.138667pt;}
.y1be{bottom:570.140000pt;}
.y141{bottom:570.160000pt;}
.y120{bottom:570.166667pt;}
.yda{bottom:570.172000pt;}
.y77{bottom:570.173333pt;}
.y2e{bottom:570.186667pt;}
.y1f4{bottom:572.786667pt;}
.y22f{bottom:583.453333pt;}
.yb3{bottom:585.460000pt;}
.y196{bottom:585.465333pt;}
.y1bd{bottom:585.466667pt;}
.y140{bottom:585.486667pt;}
.y11f{bottom:585.493333pt;}
.yd9{bottom:585.498667pt;}
.y76{bottom:585.500000pt;}
.y2d{bottom:585.513333pt;}
.y1f3{bottom:586.786667pt;}
.y22e{bottom:597.453333pt;}
.y195{bottom:600.792000pt;}
.y1bc{bottom:600.793333pt;}
.y13f{bottom:600.813333pt;}
.y11e{bottom:600.820000pt;}
.yd8{bottom:600.825333pt;}
.y75{bottom:600.826667pt;}
.y2c{bottom:600.840000pt;}
.y22d{bottom:611.453333pt;}
.y194{bottom:616.118667pt;}
.y13e{bottom:616.140000pt;}
.y11d{bottom:616.146667pt;}
.yd7{bottom:616.152000pt;}
.y74{bottom:616.153333pt;}
.y2b{bottom:616.166667pt;}
.y21{bottom:617.416000pt;}
.y22c{bottom:625.453333pt;}
.y20{bottom:630.088000pt;}
.y13d{bottom:631.466667pt;}
.y11c{bottom:631.473333pt;}
.yd6{bottom:631.478667pt;}
.y73{bottom:631.480000pt;}
.y2a{bottom:631.493333pt;}
.y22b{bottom:639.453333pt;}
.y1f{bottom:642.760000pt;}
.y13c{bottom:646.793333pt;}
.y11b{bottom:646.800000pt;}
.yd5{bottom:646.805333pt;}
.y72{bottom:646.806667pt;}
.y29{bottom:646.820000pt;}
.y22a{bottom:653.453333pt;}
.y1e{bottom:658.760000pt;}
.y11a{bottom:662.126667pt;}
.y71{bottom:662.133333pt;}
.y28{bottom:662.146667pt;}
.y229{bottom:667.453333pt;}
.y70{bottom:677.460000pt;}
.y27{bottom:677.473333pt;}
.y228{bottom:681.453333pt;}
.y26{bottom:692.800000pt;}
.y227{bottom:695.453333pt;}
.y1d{bottom:698.760000pt;}
.y25{bottom:708.126667pt;}
.y226{bottom:709.453333pt;}
.y1c{bottom:720.093333pt;}
.y24{bottom:723.453333pt;}
.y1b{bottom:765.426667pt;}
.y23{bottom:821.333333pt;}
.h8{height:30.083333pt;}
.h5{height:45.525333pt;}
.h4{height:51.216000pt;}
.h19{height:51.258667pt;}
.h13{height:51.280000pt;}
.hf{height:51.322667pt;}
.h1a{height:51.365333pt;}
.hc{height:52.032000pt;}
.h1{height:54.061333pt;}
.h2{height:54.922667pt;}
.h11{height:56.906667pt;}
.h12{height:57.813333pt;}
.h3{height:62.597333pt;}
.hd{height:62.751467pt;}
.h15{height:62.831467pt;}
.h1e{height:62.836800pt;}
.h18{height:62.911467pt;}
.h10{height:62.964800pt;}
.h1d{height:62.991467pt;}
.he{height:63.018133pt;}
.ha{height:63.018667pt;}
.h1b{height:63.044800pt;}
.h16{height:63.071467pt;}
.h1c{height:63.076800pt;}
.h14{height:63.098133pt;}
.hb{height:63.124800pt;}
.h17{height:63.178133pt;}
.h9{height:63.594667pt;}
.h6{height:91.050667pt;}
.h7{height:91.895467pt;}
.h0{height:794.666667pt;}
.w0{width:564.000000pt;}
.x0{left:0.000000pt;}
.x5{left:4.000000pt;}
.x1{left:66.400000pt;}
.x6{left:67.480000pt;}
.xc{left:79.733333pt;}
.xb{left:80.813333pt;}
.x9{left:81.741333pt;}
.x7{left:82.806667pt;}
.x2{left:86.404000pt;}
.x8{left:87.484000pt;}
.xa{left:99.312000pt;}
.x3{left:382.466667pt;}
.x4{left:415.413333pt;}
}




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