
    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_477220a375b6a51d411dddc9.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_bda94897bd086496318699f2.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_2c3f4c9593f03d683c6592a3.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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.528000px;}
.ls4e{letter-spacing:-2.046000px;}
.ls85{letter-spacing:-1.860000px;}
.ls20{letter-spacing:-1.782000px;}
.ls2a{letter-spacing:-1.650000px;}
.ls59{letter-spacing:-1.584000px;}
.ls33{letter-spacing:-1.452000px;}
.ls84{letter-spacing:-1.395000px;}
.ls58{letter-spacing:-1.386000px;}
.ls83{letter-spacing:-1.380000px;}
.ls77{letter-spacing:-1.320000px;}
.ls78{letter-spacing:-1.305000px;}
.ls80{letter-spacing:-1.260000px;}
.ls39{letter-spacing:-1.254000px;}
.ls7a{letter-spacing:-1.200000px;}
.ls44{letter-spacing:-1.188000px;}
.ls82{letter-spacing:-1.140000px;}
.ls19{letter-spacing:-1.122000px;}
.ls32{letter-spacing:-1.089000px;}
.ls1e{letter-spacing:-1.056000px;}
.ls43{letter-spacing:-0.990000px;}
.ls6b{letter-spacing:-0.960000px;}
.ls6a{letter-spacing:-0.945000px;}
.ls45{letter-spacing:-0.924000px;}
.lsa{letter-spacing:-0.912000px;}
.ls79{letter-spacing:-0.900000px;}
.ls29{letter-spacing:-0.858000px;}
.ls8a{letter-spacing:-0.855000px;}
.ls8b{letter-spacing:-0.840000px;}
.ls64{letter-spacing:-0.810000px;}
.ls27{letter-spacing:-0.792000px;}
.ls65{letter-spacing:-0.780000px;}
.ls8c{letter-spacing:-0.765000px;}
.ls1f{letter-spacing:-0.726000px;}
.ls92{letter-spacing:-0.720000px;}
.ls89{letter-spacing:-0.675000px;}
.ls3b{letter-spacing:-0.660000px;}
.ls3f{letter-spacing:-0.607500px;}
.ls3a{letter-spacing:-0.594000px;}
.ls1b{letter-spacing:-0.528000px;}
.ls8{letter-spacing:-0.513000px;}
.ls66{letter-spacing:-0.495000px;}
.ls2f{letter-spacing:-0.480000px;}
.ls1c{letter-spacing:-0.462000px;}
.ls52{letter-spacing:-0.420000px;}
.ls1d{letter-spacing:-0.396000px;}
.ls30{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.342000px;}
.ls1a{letter-spacing:-0.330000px;}
.ls7b{letter-spacing:-0.315000px;}
.ls51{letter-spacing:-0.300000px;}
.ls9{letter-spacing:-0.285000px;}
.ls3d{letter-spacing:-0.270000px;}
.ls2b{letter-spacing:-0.264000px;}
.ls94{letter-spacing:-0.240000px;}
.ls86{letter-spacing:-0.225000px;}
.ls25{letter-spacing:-0.198000px;}
.ls54{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.171000px;}
.ls93{letter-spacing:-0.135000px;}
.ls26{letter-spacing:-0.132000px;}
.ls81{letter-spacing:-0.120000px;}
.ls3e{letter-spacing:-0.108000px;}
.ls2e{letter-spacing:-0.099000px;}
.ls28{letter-spacing:-0.066000px;}
.ls31{letter-spacing:-0.060000px;}
.ls6{letter-spacing:-0.057000px;}
.ls3c{letter-spacing:-0.054000px;}
.ls4a{letter-spacing:-0.049500px;}
.lsc{letter-spacing:-0.048000px;}
.ls68{letter-spacing:-0.045000px;}
.ls5{letter-spacing:0.000000px;}
.ls61{letter-spacing:0.045000px;}
.ls38{letter-spacing:0.049500px;}
.ls0{letter-spacing:0.057000px;}
.ls55{letter-spacing:0.060000px;}
.ls15{letter-spacing:0.066000px;}
.ls6c{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.114000px;}
.ls5d{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.132000px;}
.ls69{letter-spacing:0.135000px;}
.ls2{letter-spacing:0.171000px;}
.ls5e{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.198000px;}
.ls60{letter-spacing:0.225000px;}
.ls5c{letter-spacing:0.240000px;}
.ls14{letter-spacing:0.264000px;}
.ls7c{letter-spacing:0.270000px;}
.ls4{letter-spacing:0.285000px;}
.ls5f{letter-spacing:0.300000px;}
.ls24{letter-spacing:0.330000px;}
.ls62{letter-spacing:0.360000px;}
.ls37{letter-spacing:0.378000px;}
.ls10{letter-spacing:0.396000px;}
.lsd{letter-spacing:0.399000px;}
.ls63{letter-spacing:0.405000px;}
.ls53{letter-spacing:0.420000px;}
.lsf{letter-spacing:0.462000px;}
.ls87{letter-spacing:0.480000px;}
.ls35{letter-spacing:0.486000px;}
.ls2c{letter-spacing:0.528000px;}
.ls76{letter-spacing:0.540000px;}
.ls21{letter-spacing:0.594000px;}
.ls91{letter-spacing:0.600000px;}
.ls12{letter-spacing:0.660000px;}
.ls46{letter-spacing:0.693000px;}
.ls36{letter-spacing:0.702000px;}
.ls73{letter-spacing:0.720000px;}
.ls41{letter-spacing:0.726000px;}
.ls7e{letter-spacing:0.765000px;}
.ls7d{letter-spacing:0.780000px;}
.ls2d{letter-spacing:0.792000px;}
.ls67{letter-spacing:0.810000px;}
.ls5b{letter-spacing:0.840000px;}
.lse{letter-spacing:0.855000px;}
.ls16{letter-spacing:0.858000px;}
.ls13{letter-spacing:0.924000px;}
.ls75{letter-spacing:0.945000px;}
.ls74{letter-spacing:0.960000px;}
.ls42{letter-spacing:0.990000px;}
.ls17{letter-spacing:1.056000px;}
.ls88{letter-spacing:1.080000px;}
.ls4c{letter-spacing:1.122000px;}
.ls4f{letter-spacing:1.188000px;}
.ls90{letter-spacing:1.215000px;}
.ls48{letter-spacing:1.254000px;}
.ls8d{letter-spacing:1.260000px;}
.ls3{letter-spacing:1.311000px;}
.ls49{letter-spacing:1.320000px;}
.ls72{letter-spacing:1.440000px;}
.ls23{letter-spacing:1.452000px;}
.ls71{letter-spacing:1.485000px;}
.ls70{letter-spacing:1.500000px;}
.ls22{letter-spacing:1.518000px;}
.ls40{letter-spacing:1.650000px;}
.ls50{letter-spacing:1.716000px;}
.ls4d{letter-spacing:1.782000px;}
.ls47{letter-spacing:1.980000px;}
.ls8f{letter-spacing:2.100000px;}
.ls57{letter-spacing:2.112000px;}
.ls56{letter-spacing:2.244000px;}
.ls6e{letter-spacing:3.015000px;}
.ls6d{letter-spacing:14.280000px;}
.ls6f{letter-spacing:15.000000px;}
.ls7f{letter-spacing:16.380000px;}
.ls8e{letter-spacing:17.760000px;}
.ls34{letter-spacing:18.360000px;}
.ls4b{letter-spacing:24.024000px;}
.ls5a{letter-spacing:30.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;}
}
.ws8a{word-spacing:-18.744000px;}
.ws8b{word-spacing:-18.612000px;}
.ws7a{word-spacing:-18.216000px;}
.ws7b{word-spacing:-18.150000px;}
.ws7d{word-spacing:-18.018000px;}
.ws35{word-spacing:-17.952000px;}
.ws73{word-spacing:-17.820000px;}
.ws72{word-spacing:-17.754000px;}
.ws7e{word-spacing:-17.688000px;}
.ws90{word-spacing:-17.622000px;}
.ws19{word-spacing:-17.556000px;}
.ws65{word-spacing:-17.490000px;}
.ws17{word-spacing:-17.424000px;}
.ws8f{word-spacing:-17.358000px;}
.ws7f{word-spacing:-17.292000px;}
.ws6b{word-spacing:-17.226000px;}
.ws48{word-spacing:-17.160000px;}
.wse5{word-spacing:-17.100000px;}
.ws77{word-spacing:-17.094000px;}
.ws64{word-spacing:-17.028000px;}
.ws6f{word-spacing:-16.962000px;}
.ws14{word-spacing:-16.896000px;}
.ws78{word-spacing:-16.830000px;}
.ws1b{word-spacing:-16.764000px;}
.ws38{word-spacing:-16.698000px;}
.ws15{word-spacing:-16.632000px;}
.ws31{word-spacing:-16.566000px;}
.ws13{word-spacing:-16.500000px;}
.ws39{word-spacing:-16.434000px;}
.ws37{word-spacing:-16.368000px;}
.ws32{word-spacing:-16.302000px;}
.wse4{word-spacing:-16.260000px;}
.ws3a{word-spacing:-16.236000px;}
.ws91{word-spacing:-16.170000px;}
.ws46{word-spacing:-16.104000px;}
.ws6a{word-spacing:-16.038000px;}
.ws16{word-spacing:-15.972000px;}
.ws6e{word-spacing:-15.906000px;}
.ws7c{word-spacing:-15.840000px;}
.ws66{word-spacing:-15.774000px;}
.wsb9{word-spacing:-15.720000px;}
.ws36{word-spacing:-15.642000px;}
.ws79{word-spacing:-15.576000px;}
.wsc2{word-spacing:-15.540000px;}
.ws74{word-spacing:-15.510000px;}
.wse6{word-spacing:-15.480000px;}
.wsdb{word-spacing:-15.420000px;}
.ws12{word-spacing:-15.390000px;}
.wsd9{word-spacing:-15.360000px;}
.wsa1{word-spacing:-15.300000px;}
.ws56{word-spacing:-15.246000px;}
.wsa3{word-spacing:-15.240000px;}
.wsa5{word-spacing:-15.180000px;}
.wsce{word-spacing:-15.120000px;}
.ws8d{word-spacing:-15.114000px;}
.ws9e{word-spacing:-15.060000px;}
.ws8c{word-spacing:-15.048000px;}
.ws47{word-spacing:-15.000000px;}
.wsde{word-spacing:-14.940000px;}
.wse0{word-spacing:-14.880000px;}
.wsdf{word-spacing:-14.820000px;}
.wseb{word-spacing:-14.760000px;}
.ws1a{word-spacing:-14.718000px;}
.ws83{word-spacing:-14.700000px;}
.ws10{word-spacing:-14.649000px;}
.wsa2{word-spacing:-14.640000px;}
.ws0{word-spacing:-14.535000px;}
.ws95{word-spacing:-14.520000px;}
.wse7{word-spacing:-14.340000px;}
.wsae{word-spacing:-14.265000px;}
.ws11{word-spacing:-14.250000px;}
.ws93{word-spacing:-14.220000px;}
.wsc0{word-spacing:-14.040000px;}
.ws5a{word-spacing:-13.878000px;}
.wsd2{word-spacing:-13.860000px;}
.wsba{word-spacing:-13.800000px;}
.wsaf{word-spacing:-13.680000px;}
.ws58{word-spacing:-13.500000px;}
.ws55{word-spacing:-12.424500px;}
.ws75{word-spacing:-12.375000px;}
.ws76{word-spacing:-12.325500px;}
.ws45{word-spacing:-12.276000px;}
.wsbf{word-spacing:-12.195000px;}
.ws97{word-spacing:-12.105000px;}
.ws96{word-spacing:-12.060000px;}
.wsd4{word-spacing:-12.015000px;}
.ws1d{word-spacing:-12.000000px;}
.wsa4{word-spacing:-11.655000px;}
.wsb3{word-spacing:-11.610000px;}
.wsd1{word-spacing:-11.520000px;}
.ws9c{word-spacing:-11.475000px;}
.ws9b{word-spacing:-11.430000px;}
.ws9a{word-spacing:-11.385000px;}
.wsaa{word-spacing:-11.340000px;}
.ws9d{word-spacing:-11.295000px;}
.ws49{word-spacing:-11.286000px;}
.ws99{word-spacing:-11.250000px;}
.ws98{word-spacing:-11.205000px;}
.wse8{word-spacing:-11.115000px;}
.wscf{word-spacing:-11.070000px;}
.wsd6{word-spacing:-11.025000px;}
.wsbe{word-spacing:-10.935000px;}
.ws94{word-spacing:-10.755000px;}
.wsda{word-spacing:-10.575000px;}
.wsdd{word-spacing:-10.485000px;}
.ws92{word-spacing:-10.440000px;}
.wsdc{word-spacing:-10.395000px;}
.wsb2{word-spacing:-10.350000px;}
.ws9f{word-spacing:-10.305000px;}
.wsa0{word-spacing:-10.260000px;}
.wsd0{word-spacing:-9.990000px;}
.wsb0{word-spacing:-9.945000px;}
.wsd3{word-spacing:-9.855000px;}
.ws59{word-spacing:-9.517500px;}
.ws81{word-spacing:-0.858000px;}
.ws43{word-spacing:-0.792000px;}
.ws3d{word-spacing:-0.726000px;}
.ws50{word-spacing:-0.720000px;}
.ws2{word-spacing:-0.684000px;}
.ws4a{word-spacing:-0.660000px;}
.ws5c{word-spacing:-0.648000px;}
.ws86{word-spacing:-0.600000px;}
.ws33{word-spacing:-0.594000px;}
.wse{word-spacing:-0.570000px;}
.ws61{word-spacing:-0.540000px;}
.ws3f{word-spacing:-0.528000px;}
.wse2{word-spacing:-0.480000px;}
.ws23{word-spacing:-0.462000px;}
.wsa{word-spacing:-0.456000px;}
.ws4f{word-spacing:-0.420000px;}
.ws1{word-spacing:-0.399000px;}
.ws24{word-spacing:-0.396000px;}
.ws5e{word-spacing:-0.378000px;}
.ws4e{word-spacing:-0.360000px;}
.ws3e{word-spacing:-0.330000px;}
.wsa7{word-spacing:-0.300000px;}
.ws2e{word-spacing:-0.264000px;}
.ws4d{word-spacing:-0.240000px;}
.ws6{word-spacing:-0.228000px;}
.ws4b{word-spacing:-0.198000px;}
.wsa9{word-spacing:-0.180000px;}
.ws70{word-spacing:-0.132000px;}
.wsc6{word-spacing:-0.120000px;}
.ws41{word-spacing:-0.066000px;}
.wsad{word-spacing:-0.060000px;}
.ws62{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
.ws5f{word-spacing:0.054000px;}
.wsd{word-spacing:0.057000px;}
.wsc3{word-spacing:0.060000px;}
.ws34{word-spacing:0.066000px;}
.ws53{word-spacing:0.120000px;}
.ws68{word-spacing:0.132000px;}
.ws5d{word-spacing:0.162000px;}
.ws3{word-spacing:0.171000px;}
.wsc7{word-spacing:0.180000px;}
.ws27{word-spacing:0.198000px;}
.ws4c{word-spacing:0.240000px;}
.ws40{word-spacing:0.264000px;}
.ws84{word-spacing:0.300000px;}
.ws22{word-spacing:0.330000px;}
.ws3c{word-spacing:0.396000px;}
.ws9{word-spacing:0.399000px;}
.wscc{word-spacing:0.405000px;}
.wscb{word-spacing:0.420000px;}
.wsc{word-spacing:0.456000px;}
.ws44{word-spacing:0.462000px;}
.wsca{word-spacing:0.480000px;}
.ws1e{word-spacing:0.513000px;}
.ws2c{word-spacing:0.528000px;}
.wsc5{word-spacing:0.540000px;}
.ws69{word-spacing:0.594000px;}
.ws87{word-spacing:0.600000px;}
.ws5b{word-spacing:0.660000px;}
.wsd8{word-spacing:0.720000px;}
.ws26{word-spacing:0.726000px;}
.wsc9{word-spacing:0.780000px;}
.ws2b{word-spacing:0.792000px;}
.ws60{word-spacing:0.810000px;}
.ws51{word-spacing:0.840000px;}
.wsed{word-spacing:0.855000px;}
.ws54{word-spacing:0.858000px;}
.wsc1{word-spacing:0.900000px;}
.ws63{word-spacing:0.918000px;}
.ws25{word-spacing:0.924000px;}
.wscd{word-spacing:0.960000px;}
.ws2f{word-spacing:0.990000px;}
.wsa8{word-spacing:1.020000px;}
.ws4{word-spacing:1.026000px;}
.ws3b{word-spacing:1.056000px;}
.ws85{word-spacing:1.080000px;}
.ws42{word-spacing:1.122000px;}
.wsf{word-spacing:1.140000px;}
.ws20{word-spacing:1.188000px;}
.wsb{word-spacing:1.197000px;}
.wse3{word-spacing:1.200000px;}
.ws1f{word-spacing:1.254000px;}
.ws52{word-spacing:1.260000px;}
.ws8{word-spacing:1.311000px;}
.ws2d{word-spacing:1.320000px;}
.ws5{word-spacing:1.368000px;}
.wsc4{word-spacing:1.380000px;}
.ws28{word-spacing:1.386000px;}
.ws88{word-spacing:1.440000px;}
.ws30{word-spacing:1.452000px;}
.wsa6{word-spacing:1.500000px;}
.ws21{word-spacing:1.518000px;}
.ws29{word-spacing:1.584000px;}
.ws2a{word-spacing:1.650000px;}
.ws6c{word-spacing:1.716000px;}
.wsc8{word-spacing:1.800000px;}
.ws71{word-spacing:1.914000px;}
.ws80{word-spacing:1.980000px;}
.wsec{word-spacing:3.060000px;}
.wsea{word-spacing:3.270000px;}
.wse9{word-spacing:3.285000px;}
.ws8e{word-spacing:3.432000px;}
.wsb1{word-spacing:3.630000px;}
.wsac{word-spacing:3.750000px;}
.ws67{word-spacing:4.026000px;}
.wsd7{word-spacing:4.080000px;}
.wsbc{word-spacing:4.140000px;}
.wsbd{word-spacing:4.155000px;}
.wsbb{word-spacing:4.200000px;}
.wsb4{word-spacing:4.410000px;}
.wsb7{word-spacing:4.500000px;}
.wsb8{word-spacing:4.545000px;}
.wsd5{word-spacing:4.980000px;}
.wsab{word-spacing:5.295000px;}
.ws6d{word-spacing:5.505000px;}
.wsb5{word-spacing:5.610000px;}
.wsb6{word-spacing:5.625000px;}
.ws89{word-spacing:5.676000px;}
.wse1{word-spacing:5.760000px;}
.ws18{word-spacing:7.524000px;}
.ws82{word-spacing:8.646000px;}
.ws1c{word-spacing:35.712000px;}
.ws57{word-spacing:36.018000px;}
._11{margin-left:-10.179000px;}
._f{margin-left:-8.910000px;}
._3{margin-left:-7.410000px;}
._e{margin-left:-6.150000px;}
._4{margin-left:-5.016000px;}
._2{margin-left:-3.249000px;}
._1{margin-left:-2.166000px;}
._0{margin-left:-1.026000px;}
._5{width:1.083000px;}
._7{width:2.376000px;}
._b{width:3.537000px;}
._13{width:6.600000px;}
._a{width:15.432000px;}
._c{width:17.490000px;}
._10{width:19.140000px;}
._d{width:24.024000px;}
._12{width:30.000000px;}
._6{width:47.664000px;}
._9{width:629.568000px;}
._8{width:1109.424000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:40.500000px;}
.fsa{font-size:45.000000px;}
.fs8{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:49.500000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1fc{bottom:48.210000px;}
.y175{bottom:48.225000px;}
.y12b{bottom:48.975000px;}
.y118{bottom:49.072500px;}
.y157{bottom:49.116000px;}
.y1cd{bottom:49.125000px;}
.y187{bottom:49.132500px;}
.y78{bottom:49.153500px;}
.y151{bottom:49.165500px;}
.yff{bottom:49.182000px;}
.y19b{bottom:49.198500px;}
.ye8{bottom:49.215000px;}
.y22b{bottom:49.260000px;}
.y45{bottom:49.564500px;}
.y259{bottom:52.335000px;}
.y1e{bottom:53.460750px;}
.yc2{bottom:54.093000px;}
.y9d{bottom:54.180000px;}
.y1fb{bottom:64.710000px;}
.y1cc{bottom:64.875000px;}
.y22a{bottom:65.010000px;}
.y174{bottom:65.467500px;}
.y12a{bottom:66.217500px;}
.y117{bottom:66.315000px;}
.y156{bottom:66.358500px;}
.y186{bottom:66.375000px;}
.y77{bottom:66.396000px;}
.y150{bottom:66.408000px;}
.yfe{bottom:66.424500px;}
.y19a{bottom:66.441000px;}
.ye7{bottom:66.457500px;}
.y44{bottom:66.807000px;}
.y258{bottom:68.085000px;}
.yc1{bottom:68.349000px;}
.y1d{bottom:68.466000px;}
.y9c{bottom:71.422500px;}
.y1fa{bottom:80.460000px;}
.y1cb{bottom:80.625000px;}
.y229{bottom:80.760000px;}
.yc0{bottom:82.563000px;}
.y173{bottom:82.710000px;}
.y129{bottom:83.460000px;}
.y1c{bottom:83.471250px;}
.y116{bottom:83.557500px;}
.y185{bottom:83.617500px;}
.y76{bottom:83.638500px;}
.y14f{bottom:83.650500px;}
.yfd{bottom:83.667000px;}
.y199{bottom:83.683500px;}
.ye6{bottom:83.700000px;}
.y43{bottom:84.049500px;}
.y257{bottom:84.675000px;}
.y9b{bottom:88.665000px;}
.y155{bottom:92.230500px;}
.y228{bottom:96.510000px;}
.ybf{bottom:96.819000px;}
.y1f9{bottom:96.960000px;}
.y1ca{bottom:97.230000px;}
.y1b{bottom:98.476500px;}
.y172{bottom:99.952500px;}
.y256{bottom:100.425000px;}
.y128{bottom:100.702500px;}
.y115{bottom:100.800000px;}
.y184{bottom:100.860000px;}
.y75{bottom:100.881000px;}
.y14e{bottom:100.893000px;}
.yfc{bottom:100.909500px;}
.y198{bottom:100.926000px;}
.ye5{bottom:100.942500px;}
.y42{bottom:101.292000px;}
.y9a{bottom:105.907500px;}
.ybe{bottom:111.075000px;}
.y227{bottom:112.260000px;}
.y1f8{bottom:112.710000px;}
.y1c9{bottom:112.980000px;}
.y1a{bottom:113.481750px;}
.y255{bottom:116.175000px;}
.y171{bottom:117.195000px;}
.y127{bottom:117.945000px;}
.y114{bottom:118.042500px;}
.y183{bottom:118.102500px;}
.y74{bottom:118.123500px;}
.y14d{bottom:118.135500px;}
.yfb{bottom:118.152000px;}
.y197{bottom:118.168500px;}
.ye4{bottom:118.185000px;}
.y41{bottom:118.534500px;}
.y99{bottom:123.150000px;}
.ybd{bottom:125.331000px;}
.y226{bottom:128.775000px;}
.y1f7{bottom:129.210000px;}
.y1c8{bottom:129.585000px;}
.y254{bottom:132.780000px;}
.y170{bottom:134.437500px;}
.y126{bottom:135.187500px;}
.y113{bottom:135.285000px;}
.y182{bottom:135.345000px;}
.y154{bottom:135.361500px;}
.y73{bottom:135.366000px;}
.y14c{bottom:135.378000px;}
.yfa{bottom:135.394500px;}
.y196{bottom:135.411000px;}
.ye3{bottom:135.427500px;}
.y40{bottom:135.777000px;}
.y19{bottom:136.980000px;}
.ybc{bottom:139.587000px;}
.y98{bottom:140.392500px;}
.y1f6{bottom:144.960000px;}
.y225{bottom:145.290000px;}
.y1c7{bottom:145.335000px;}
.y253{bottom:148.530000px;}
.y16f{bottom:151.680000px;}
.y125{bottom:152.430000px;}
.y112{bottom:152.527500px;}
.y181{bottom:152.587500px;}
.y153{bottom:152.604000px;}
.y72{bottom:152.608500px;}
.y14b{bottom:152.620500px;}
.yf9{bottom:152.637000px;}
.y195{bottom:152.653500px;}
.ye2{bottom:152.670000px;}
.y3f{bottom:153.019500px;}
.ybb{bottom:153.843000px;}
.y97{bottom:157.695000px;}
.y224{bottom:161.040000px;}
.y1f5{bottom:161.460000px;}
.y1c6{bottom:161.925000px;}
.y18{bottom:164.693250px;}
.y252{bottom:165.135000px;}
.yba{bottom:168.099000px;}
.y16e{bottom:168.922500px;}
.y124{bottom:169.672500px;}
.y111{bottom:169.770000px;}
.y180{bottom:169.830000px;}
.y14a{bottom:169.863000px;}
.yf8{bottom:169.879500px;}
.y194{bottom:169.896000px;}
.ye1{bottom:169.912500px;}
.y96{bottom:174.937500px;}
.y1f4{bottom:177.210000px;}
.y223{bottom:177.570000px;}
.y1c5{bottom:177.675000px;}
.y158{bottom:178.509000px;}
.y17{bottom:179.698500px;}
.y251{bottom:180.885000px;}
.yb9{bottom:182.355000px;}
.y16d{bottom:186.165000px;}
.y123{bottom:186.915000px;}
.y110{bottom:187.012500px;}
.y17f{bottom:187.072500px;}
.y149{bottom:187.105500px;}
.y71{bottom:187.110000px;}
.yf7{bottom:187.122000px;}
.y193{bottom:187.138500px;}
.ye0{bottom:187.155000px;}
.y3e{bottom:187.521000px;}
.y95{bottom:192.180000px;}
.y222{bottom:193.320000px;}
.y1f3{bottom:193.710000px;}
.y1c4{bottom:194.280000px;}
.y250{bottom:196.635000px;}
.y16{bottom:203.196750px;}
.y16c{bottom:203.407500px;}
.y122{bottom:204.157500px;}
.y10f{bottom:204.255000px;}
.y148{bottom:204.348000px;}
.y70{bottom:204.352500px;}
.yf6{bottom:204.364500px;}
.y192{bottom:204.381000px;}
.ydf{bottom:204.397500px;}
.y3d{bottom:204.763500px;}
.y94{bottom:209.422500px;}
.y221{bottom:209.835000px;}
.y1c3{bottom:210.030000px;}
.y1f2{bottom:210.210000px;}
.y17e{bottom:212.944500px;}
.y24f{bottom:213.225000px;}
.y15{bottom:218.202000px;}
.y16b{bottom:220.650000px;}
.y121{bottom:221.400000px;}
.y10e{bottom:221.497500px;}
.y147{bottom:221.590500px;}
.y6f{bottom:221.595000px;}
.yf5{bottom:221.607000px;}
.y191{bottom:221.623500px;}
.yde{bottom:221.640000px;}
.y3c{bottom:222.006000px;}
.y1f1{bottom:225.960000px;}
.y220{bottom:226.350000px;}
.y1c2{bottom:226.635000px;}
.y93{bottom:226.665000px;}
.y24e{bottom:228.975000px;}
.y17d{bottom:230.187000px;}
.y14{bottom:233.207250px;}
.y16a{bottom:237.892500px;}
.y120{bottom:238.642500px;}
.yb8{bottom:238.698000px;}
.y10d{bottom:238.740000px;}
.y146{bottom:238.833000px;}
.y6e{bottom:238.837500px;}
.yf4{bottom:238.849500px;}
.y190{bottom:238.866000px;}
.ydd{bottom:238.882500px;}
.y3b{bottom:239.248500px;}
.y21f{bottom:242.100000px;}
.y1c1{bottom:242.385000px;}
.y1f0{bottom:242.460000px;}
.y92{bottom:243.907500px;}
.y24d{bottom:245.580000px;}
.y13{bottom:248.212500px;}
.y169{bottom:255.135000px;}
.yb7{bottom:255.940500px;}
.y10c{bottom:255.982500px;}
.y145{bottom:256.075500px;}
.y6d{bottom:256.080000px;}
.yf3{bottom:256.092000px;}
.y18f{bottom:256.108500px;}
.ydc{bottom:256.125000px;}
.y3a{bottom:256.491000px;}
.y21e{bottom:257.850000px;}
.y1ef{bottom:258.210000px;}
.y1c0{bottom:258.975000px;}
.y91{bottom:261.150000px;}
.y24c{bottom:262.185000px;}
.y12{bottom:263.217750px;}
.yb6{bottom:273.183000px;}
.y10b{bottom:273.225000px;}
.y144{bottom:273.318000px;}
.y6c{bottom:273.322500px;}
.yf2{bottom:273.334500px;}
.y18e{bottom:273.351000px;}
.ydb{bottom:273.367500px;}
.y39{bottom:273.733500px;}
.y21d{bottom:274.365000px;}
.y1ee{bottom:274.710000px;}
.y1bf{bottom:274.725000px;}
.y11{bottom:278.223000px;}
.y90{bottom:278.392500px;}
.y24b{bottom:278.775000px;}
.y168{bottom:288.885000px;}
.y21c{bottom:290.115000px;}
.yb5{bottom:290.425500px;}
.y1ed{bottom:290.460000px;}
.y10a{bottom:290.467500px;}
.y143{bottom:290.560500px;}
.y6b{bottom:290.565000px;}
.yf1{bottom:290.577000px;}
.yda{bottom:290.610000px;}
.y38{bottom:290.976000px;}
.y1be{bottom:291.330000px;}
.y10{bottom:293.228250px;}
.y24a{bottom:294.525000px;}
.y8f{bottom:295.635000px;}
.y167{bottom:304.635000px;}
.y21b{bottom:305.865000px;}
.y1ec{bottom:306.210000px;}
.y1bd{bottom:307.080000px;}
.yb4{bottom:307.668000px;}
.y109{bottom:307.710000px;}
.y142{bottom:307.803000px;}
.y6a{bottom:307.807500px;}
.yf0{bottom:307.819500px;}
.yd9{bottom:307.852500px;}
.y37{bottom:308.218500px;}
.yf{bottom:308.233500px;}
.y249{bottom:311.130000px;}
.y166{bottom:320.385000px;}
.y1eb{bottom:321.960000px;}
.y21a{bottom:322.380000px;}
.ye{bottom:323.238750px;}
.y1bc{bottom:323.685000px;}
.yb3{bottom:324.910500px;}
.y108{bottom:324.952500px;}
.y141{bottom:325.045500px;}
.y69{bottom:325.050000px;}
.yef{bottom:325.062000px;}
.yd8{bottom:325.095000px;}
.y248{bottom:327.735000px;}
.y8e{bottom:329.385000px;}
.y165{bottom:336.135000px;}
.y1ea{bottom:338.460000px;}
.y219{bottom:338.895000px;}
.y1bb{bottom:340.275000px;}
.yb2{bottom:342.153000px;}
.y107{bottom:342.195000px;}
.y140{bottom:342.288000px;}
.y68{bottom:342.292500px;}
.yee{bottom:342.304500px;}
.y18d{bottom:342.321000px;}
.yd7{bottom:342.337500px;}
.y36{bottom:342.720000px;}
.y247{bottom:343.485000px;}
.y8d{bottom:345.135000px;}
.y164{bottom:351.885000px;}
.yd{bottom:353.235000px;}
.y1e9{bottom:354.210000px;}
.y218{bottom:355.410000px;}
.y1ba{bottom:356.025000px;}
.y246{bottom:359.235000px;}
.yb1{bottom:359.395500px;}
.y106{bottom:359.437500px;}
.y13f{bottom:359.530500px;}
.y67{bottom:359.535000px;}
.yed{bottom:359.547000px;}
.y18c{bottom:359.563500px;}
.yd6{bottom:359.580000px;}
.y35{bottom:359.962500px;}
.y8c{bottom:360.885000px;}
.y163{bottom:367.635000px;}
.y1e8{bottom:369.960000px;}
.y217{bottom:371.160000px;}
.y1b9{bottom:371.775000px;}
.y273{bottom:373.635000px;}
.y245{bottom:375.825000px;}
.y8b{bottom:376.635000px;}
.yb0{bottom:376.638000px;}
.y105{bottom:376.680000px;}
.y13e{bottom:376.773000px;}
.y66{bottom:376.777500px;}
.yec{bottom:376.789500px;}
.y18b{bottom:376.806000px;}
.yd5{bottom:376.822500px;}
.y34{bottom:377.205000px;}
.y162{bottom:383.385000px;}
.y1e7{bottom:386.460000px;}
.y216{bottom:387.675000px;}
.y1b8{bottom:388.380000px;}
.yc{bottom:389.194500px;}
.y272{bottom:389.385000px;}
.y244{bottom:391.575000px;}
.y8a{bottom:392.385000px;}
.y104{bottom:393.922500px;}
.y13d{bottom:394.015500px;}
.y65{bottom:394.020000px;}
.yeb{bottom:394.032000px;}
.y18a{bottom:394.048500px;}
.yd4{bottom:394.065000px;}
.y33{bottom:394.447500px;}
.y161{bottom:399.135000px;}
.y1e6{bottom:402.210000px;}
.yaf{bottom:402.510000px;}
.y215{bottom:403.425000px;}
.yb{bottom:404.199750px;}
.y1b7{bottom:404.985000px;}
.y271{bottom:405.135000px;}
.y243{bottom:407.325000px;}
.y103{bottom:411.165000px;}
.y13c{bottom:411.258000px;}
.y64{bottom:411.262500px;}
.yea{bottom:411.274500px;}
.y189{bottom:411.291000px;}
.yd3{bottom:411.307500px;}
.y32{bottom:411.690000px;}
.y160{bottom:414.885000px;}
.y1e5{bottom:418.710000px;}
.y152{bottom:419.904000px;}
.y214{bottom:419.940000px;}
.y1b6{bottom:421.575000px;}
.y270{bottom:421.785000px;}
.y242{bottom:423.075000px;}
.y89{bottom:423.150000px;}
.ya{bottom:427.698000px;}
.y102{bottom:428.407500px;}
.y13b{bottom:428.500500px;}
.y63{bottom:428.505000px;}
.y11f{bottom:428.517000px;}
.y188{bottom:428.533500px;}
.yd2{bottom:428.550000px;}
.y31{bottom:428.932500px;}
.y1e4{bottom:434.460000px;}
.y213{bottom:435.690000px;}
.ye9{bottom:437.146500px;}
.y1b5{bottom:437.325000px;}
.y26f{bottom:437.535000px;}
.y241{bottom:438.825000px;}
.y88{bottom:440.392500px;}
.y9{bottom:442.703250px;}
.y101{bottom:445.650000px;}
.y13a{bottom:445.743000px;}
.y62{bottom:445.747500px;}
.y11e{bottom:445.759500px;}
.yae{bottom:445.762500px;}
.y15f{bottom:445.776000px;}
.yd1{bottom:445.792500px;}
.y30{bottom:446.175000px;}
.y1e3{bottom:450.210000px;}
.y212{bottom:452.205000px;}
.y26e{bottom:453.285000px;}
.y1b4{bottom:453.930000px;}
.y240{bottom:455.430000px;}
.y87{bottom:457.635000px;}
.y8{bottom:457.708500px;}
.y100{bottom:462.892500px;}
.y139{bottom:462.985500px;}
.y61{bottom:462.990000px;}
.y11d{bottom:463.002000px;}
.yad{bottom:463.005000px;}
.y15e{bottom:463.018500px;}
.yd0{bottom:463.035000px;}
.y2f{bottom:463.417500px;}
.y1e2{bottom:466.710000px;}
.y211{bottom:468.720000px;}
.y26d{bottom:469.035000px;}
.y1b3{bottom:469.680000px;}
.y23f{bottom:471.180000px;}
.y7{bottom:472.713750px;}
.y138{bottom:480.228000px;}
.y60{bottom:480.232500px;}
.y11c{bottom:480.244500px;}
.yac{bottom:480.247500px;}
.y15d{bottom:480.261000px;}
.ycf{bottom:480.277500px;}
.y2e{bottom:480.660000px;}
.y1e1{bottom:482.460000px;}
.y210{bottom:485.235000px;}
.y26c{bottom:485.685000px;}
.y1b2{bottom:486.285000px;}
.y6{bottom:487.719000px;}
.y23e{bottom:487.785000px;}
.y86{bottom:491.385000px;}
.y137{bottom:497.470500px;}
.y5f{bottom:497.475000px;}
.y11b{bottom:497.487000px;}
.yab{bottom:497.490000px;}
.y15c{bottom:497.503500px;}
.yce{bottom:497.520000px;}
.y2d{bottom:497.902500px;}
.y1e0{bottom:498.960000px;}
.y20f{bottom:500.985000px;}
.y1b1{bottom:502.035000px;}
.y26b{bottom:502.335000px;}
.y5{bottom:502.724250px;}
.y23d{bottom:503.535000px;}
.y85{bottom:507.135000px;}
.y17a{bottom:514.713000px;}
.y5e{bottom:514.717500px;}
.y11a{bottom:514.729500px;}
.yaa{bottom:514.732500px;}
.y15b{bottom:514.746000px;}
.ycd{bottom:514.762500px;}
.y2c{bottom:515.145000px;}
.y1df{bottom:515.385000px;}
.y20e{bottom:517.500000px;}
.y4{bottom:517.729500px;}
.y1b0{bottom:518.640000px;}
.y26a{bottom:518.985000px;}
.y23c{bottom:519.285000px;}
.y84{bottom:522.885000px;}
.y136{bottom:523.342500px;}
.y1de{bottom:531.885000px;}
.y5d{bottom:531.960000px;}
.y17c{bottom:531.972000px;}
.ya9{bottom:531.975000px;}
.y15a{bottom:531.988500px;}
.ycc{bottom:532.005000px;}
.y2b{bottom:532.387500px;}
.y3{bottom:532.734750px;}
.y20d{bottom:533.250000px;}
.y1af{bottom:534.390000px;}
.y269{bottom:534.735000px;}
.y23b{bottom:535.035000px;}
.y83{bottom:538.635000px;}
.y119{bottom:540.601500px;}
.y2{bottom:547.740000px;}
.y1dd{bottom:548.385000px;}
.y20c{bottom:549.000000px;}
.y5c{bottom:549.202500px;}
.y179{bottom:549.214500px;}
.ya8{bottom:549.217500px;}
.y159{bottom:549.231000px;}
.ycb{bottom:549.247500px;}
.y2a{bottom:549.630000px;}
.y1ae{bottom:550.140000px;}
.y268{bottom:550.485000px;}
.y23a{bottom:551.640000px;}
.y82{bottom:554.385000px;}
.y1dc{bottom:564.135000px;}
.y20b{bottom:565.515000px;}
.y267{bottom:566.235000px;}
.y5b{bottom:566.445000px;}
.y178{bottom:566.457000px;}
.ya7{bottom:566.460000px;}
.y135{bottom:566.473500px;}
.yca{bottom:566.490000px;}
.y1ad{bottom:566.730000px;}
.y239{bottom:567.390000px;}
.y81{bottom:570.135000px;}
.y17b{bottom:575.086500px;}
.y1{bottom:577.740000px;}
.y1db{bottom:580.635000px;}
.y20a{bottom:582.030000px;}
.y1ac{bottom:582.480000px;}
.y266{bottom:582.885000px;}
.y238{bottom:583.140000px;}
.y5a{bottom:583.687500px;}
.y177{bottom:583.699500px;}
.ya6{bottom:583.702500px;}
.y134{bottom:583.716000px;}
.yc9{bottom:583.732500px;}
.y1da{bottom:597.135000px;}
.y1ab{bottom:598.230000px;}
.y209{bottom:598.545000px;}
.y265{bottom:598.635000px;}
.y237{bottom:599.730000px;}
.y80{bottom:600.922500px;}
.y59{bottom:600.930000px;}
.y19f{bottom:600.942000px;}
.ya5{bottom:600.945000px;}
.y133{bottom:600.958500px;}
.yc8{bottom:600.975000px;}
.y176{bottom:609.571500px;}
.y1d9{bottom:612.885000px;}
.y4c{bottom:614.430000px;}
.y1aa{bottom:614.835000px;}
.y208{bottom:615.060000px;}
.y264{bottom:615.285000px;}
.y236{bottom:615.480000px;}
.y7f{bottom:618.165000px;}
.y58{bottom:618.172500px;}
.y19e{bottom:618.184500px;}
.ya4{bottom:618.187500px;}
.y132{bottom:618.201000px;}
.yc7{bottom:618.217500px;}
.y48{bottom:628.891500px;}
.y1d8{bottom:629.385000px;}
.y263{bottom:631.035000px;}
.y235{bottom:631.230000px;}
.y1a9{bottom:631.440000px;}
.y207{bottom:631.575000px;}
.y7e{bottom:635.407500px;}
.y57{bottom:635.415000px;}
.ya3{bottom:635.430000px;}
.y4b{bottom:635.439000px;}
.y131{bottom:635.443500px;}
.yc6{bottom:635.460000px;}
.y47{bottom:643.890000px;}
.y1d7{bottom:645.885000px;}
.y262{bottom:646.785000px;}
.y234{bottom:646.980000px;}
.y1a8{bottom:647.190000px;}
.y206{bottom:647.325000px;}
.y4a{bottom:650.437500px;}
.y7d{bottom:652.650000px;}
.y56{bottom:652.657500px;}
.ya2{bottom:652.672500px;}
.y130{bottom:652.686000px;}
.yc5{bottom:652.702500px;}
.y1d6{bottom:662.385000px;}
.y233{bottom:662.730000px;}
.y1a7{bottom:662.940000px;}
.y205{bottom:663.075000px;}
.y261{bottom:663.435000px;}
.y46{bottom:664.890000px;}
.y49{bottom:665.436000px;}
.y7c{bottom:669.892500px;}
.y55{bottom:669.900000px;}
.ya1{bottom:669.915000px;}
.y12f{bottom:669.928500px;}
.yc4{bottom:669.945000px;}
.y1a6{bottom:678.690000px;}
.y1d5{bottom:678.885000px;}
.y260{bottom:679.185000px;}
.y232{bottom:679.335000px;}
.y204{bottom:679.590000px;}
.y54{bottom:687.142500px;}
.y7b{bottom:687.154500px;}
.ya0{bottom:687.157500px;}
.y12e{bottom:687.171000px;}
.yc3{bottom:687.187500px;}
.y4d{bottom:688.905000px;}
.y24{bottom:693.105000px;}
.y1d4{bottom:694.635000px;}
.y231{bottom:695.085000px;}
.y1a5{bottom:695.280000px;}
.y203{bottom:695.340000px;}
.y25f{bottom:695.835000px;}
.y7a{bottom:704.397000px;}
.y9f{bottom:704.400000px;}
.y12d{bottom:704.413500px;}
.y53{bottom:704.430000px;}
.y1d3{bottom:710.385000px;}
.y1a4{bottom:711.030000px;}
.y202{bottom:711.090000px;}
.y23{bottom:711.105000px;}
.y25e{bottom:711.585000px;}
.y230{bottom:711.690000px;}
.y9e{bottom:721.642500px;}
.y12c{bottom:721.656000px;}
.y52{bottom:721.672500px;}
.y1a3{bottom:726.780000px;}
.y201{bottom:726.840000px;}
.y1d2{bottom:726.885000px;}
.y25d{bottom:727.335000px;}
.y22f{bottom:727.440000px;}
.y79{bottom:730.269000px;}
.y19d{bottom:738.898500px;}
.y51{bottom:738.915000px;}
.y29{bottom:739.380000px;}
.y1a2{bottom:742.530000px;}
.y200{bottom:742.590000px;}
.y1d1{bottom:743.385000px;}
.y25c{bottom:743.985000px;}
.y22e{bottom:744.030000px;}
.y28{bottom:754.376250px;}
.y22{bottom:756.105000px;}
.y19c{bottom:756.141000px;}
.y50{bottom:756.157500px;}
.y1ff{bottom:759.105000px;}
.y1a1{bottom:759.135000px;}
.y25b{bottom:759.735000px;}
.y22d{bottom:759.780000px;}
.y1d0{bottom:759.885000px;}
.y4f{bottom:773.400000px;}
.y1fe{bottom:774.855000px;}
.y1a0{bottom:774.885000px;}
.y25a{bottom:775.485000px;}
.y22c{bottom:775.530000px;}
.y1cf{bottom:775.635000px;}
.y27{bottom:777.874500px;}
.y21{bottom:780.105000px;}
.y4e{bottom:790.642500px;}
.y1fd{bottom:791.370000px;}
.y1ce{bottom:792.135000px;}
.y26{bottom:792.879750px;}
.y20{bottom:804.105000px;}
.y25{bottom:807.885000px;}
.y1f{bottom:855.105000px;}
.h2{height:51.216000px;}
.h5{height:57.618000px;}
.hb{height:57.786000px;}
.hc{height:58.536000px;}
.h1{height:60.819000px;}
.h9{height:64.020000px;}
.hd{height:65.040000px;}
.h6{height:70.422000px;}
.ha{height:70.823400px;}
.h7{height:71.364000px;}
.h8{height:71.544000px;}
.h4{height:76.824000px;}
.h3{height:102.432000px;}
.h0{height:901.500000px;}
.w0{width:637.500000px;}
.x0{left:0.000000px;}
.x1{left:70.200000px;}
.x3{left:71.415000px;}
.x5{left:80.520000px;}
.xd{left:88.261500px;}
.xa{left:92.689500px;}
.x4{left:93.904500px;}
.xc{left:115.222500px;}
.xb{left:116.415000px;}
.x6{left:176.370000px;}
.x7{left:192.070500px;}
.x9{left:290.745000px;}
.x8{left:327.907500px;}
.x2{left:420.975000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.136000pt;}
.ls4e{letter-spacing:-1.818667pt;}
.ls85{letter-spacing:-1.653333pt;}
.ls20{letter-spacing:-1.584000pt;}
.ls2a{letter-spacing:-1.466667pt;}
.ls59{letter-spacing:-1.408000pt;}
.ls33{letter-spacing:-1.290667pt;}
.ls84{letter-spacing:-1.240000pt;}
.ls58{letter-spacing:-1.232000pt;}
.ls83{letter-spacing:-1.226667pt;}
.ls77{letter-spacing:-1.173333pt;}
.ls78{letter-spacing:-1.160000pt;}
.ls80{letter-spacing:-1.120000pt;}
.ls39{letter-spacing:-1.114667pt;}
.ls7a{letter-spacing:-1.066667pt;}
.ls44{letter-spacing:-1.056000pt;}
.ls82{letter-spacing:-1.013333pt;}
.ls19{letter-spacing:-0.997333pt;}
.ls32{letter-spacing:-0.968000pt;}
.ls1e{letter-spacing:-0.938667pt;}
.ls43{letter-spacing:-0.880000pt;}
.ls6b{letter-spacing:-0.853333pt;}
.ls6a{letter-spacing:-0.840000pt;}
.ls45{letter-spacing:-0.821333pt;}
.lsa{letter-spacing:-0.810667pt;}
.ls79{letter-spacing:-0.800000pt;}
.ls29{letter-spacing:-0.762667pt;}
.ls8a{letter-spacing:-0.760000pt;}
.ls8b{letter-spacing:-0.746667pt;}
.ls64{letter-spacing:-0.720000pt;}
.ls27{letter-spacing:-0.704000pt;}
.ls65{letter-spacing:-0.693333pt;}
.ls8c{letter-spacing:-0.680000pt;}
.ls1f{letter-spacing:-0.645333pt;}
.ls92{letter-spacing:-0.640000pt;}
.ls89{letter-spacing:-0.600000pt;}
.ls3b{letter-spacing:-0.586667pt;}
.ls3f{letter-spacing:-0.540000pt;}
.ls3a{letter-spacing:-0.528000pt;}
.ls1b{letter-spacing:-0.469333pt;}
.ls8{letter-spacing:-0.456000pt;}
.ls66{letter-spacing:-0.440000pt;}
.ls2f{letter-spacing:-0.426667pt;}
.ls1c{letter-spacing:-0.410667pt;}
.ls52{letter-spacing:-0.373333pt;}
.ls1d{letter-spacing:-0.352000pt;}
.ls30{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.304000pt;}
.ls1a{letter-spacing:-0.293333pt;}
.ls7b{letter-spacing:-0.280000pt;}
.ls51{letter-spacing:-0.266667pt;}
.ls9{letter-spacing:-0.253333pt;}
.ls3d{letter-spacing:-0.240000pt;}
.ls2b{letter-spacing:-0.234667pt;}
.ls94{letter-spacing:-0.213333pt;}
.ls86{letter-spacing:-0.200000pt;}
.ls25{letter-spacing:-0.176000pt;}
.ls54{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.152000pt;}
.ls93{letter-spacing:-0.120000pt;}
.ls26{letter-spacing:-0.117333pt;}
.ls81{letter-spacing:-0.106667pt;}
.ls3e{letter-spacing:-0.096000pt;}
.ls2e{letter-spacing:-0.088000pt;}
.ls28{letter-spacing:-0.058667pt;}
.ls31{letter-spacing:-0.053333pt;}
.ls6{letter-spacing:-0.050667pt;}
.ls3c{letter-spacing:-0.048000pt;}
.ls4a{letter-spacing:-0.044000pt;}
.lsc{letter-spacing:-0.042667pt;}
.ls68{letter-spacing:-0.040000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls61{letter-spacing:0.040000pt;}
.ls38{letter-spacing:0.044000pt;}
.ls0{letter-spacing:0.050667pt;}
.ls55{letter-spacing:0.053333pt;}
.ls15{letter-spacing:0.058667pt;}
.ls6c{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.101333pt;}
.ls5d{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.117333pt;}
.ls69{letter-spacing:0.120000pt;}
.ls2{letter-spacing:0.152000pt;}
.ls5e{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.176000pt;}
.ls60{letter-spacing:0.200000pt;}
.ls5c{letter-spacing:0.213333pt;}
.ls14{letter-spacing:0.234667pt;}
.ls7c{letter-spacing:0.240000pt;}
.ls4{letter-spacing:0.253333pt;}
.ls5f{letter-spacing:0.266667pt;}
.ls24{letter-spacing:0.293333pt;}
.ls62{letter-spacing:0.320000pt;}
.ls37{letter-spacing:0.336000pt;}
.ls10{letter-spacing:0.352000pt;}
.lsd{letter-spacing:0.354667pt;}
.ls63{letter-spacing:0.360000pt;}
.ls53{letter-spacing:0.373333pt;}
.lsf{letter-spacing:0.410667pt;}
.ls87{letter-spacing:0.426667pt;}
.ls35{letter-spacing:0.432000pt;}
.ls2c{letter-spacing:0.469333pt;}
.ls76{letter-spacing:0.480000pt;}
.ls21{letter-spacing:0.528000pt;}
.ls91{letter-spacing:0.533333pt;}
.ls12{letter-spacing:0.586667pt;}
.ls46{letter-spacing:0.616000pt;}
.ls36{letter-spacing:0.624000pt;}
.ls73{letter-spacing:0.640000pt;}
.ls41{letter-spacing:0.645333pt;}
.ls7e{letter-spacing:0.680000pt;}
.ls7d{letter-spacing:0.693333pt;}
.ls2d{letter-spacing:0.704000pt;}
.ls67{letter-spacing:0.720000pt;}
.ls5b{letter-spacing:0.746667pt;}
.lse{letter-spacing:0.760000pt;}
.ls16{letter-spacing:0.762667pt;}
.ls13{letter-spacing:0.821333pt;}
.ls75{letter-spacing:0.840000pt;}
.ls74{letter-spacing:0.853333pt;}
.ls42{letter-spacing:0.880000pt;}
.ls17{letter-spacing:0.938667pt;}
.ls88{letter-spacing:0.960000pt;}
.ls4c{letter-spacing:0.997333pt;}
.ls4f{letter-spacing:1.056000pt;}
.ls90{letter-spacing:1.080000pt;}
.ls48{letter-spacing:1.114667pt;}
.ls8d{letter-spacing:1.120000pt;}
.ls3{letter-spacing:1.165333pt;}
.ls49{letter-spacing:1.173333pt;}
.ls72{letter-spacing:1.280000pt;}
.ls23{letter-spacing:1.290667pt;}
.ls71{letter-spacing:1.320000pt;}
.ls70{letter-spacing:1.333333pt;}
.ls22{letter-spacing:1.349333pt;}
.ls40{letter-spacing:1.466667pt;}
.ls50{letter-spacing:1.525333pt;}
.ls4d{letter-spacing:1.584000pt;}
.ls47{letter-spacing:1.760000pt;}
.ls8f{letter-spacing:1.866667pt;}
.ls57{letter-spacing:1.877333pt;}
.ls56{letter-spacing:1.994667pt;}
.ls6e{letter-spacing:2.680000pt;}
.ls6d{letter-spacing:12.693333pt;}
.ls6f{letter-spacing:13.333333pt;}
.ls7f{letter-spacing:14.560000pt;}
.ls8e{letter-spacing:15.786667pt;}
.ls34{letter-spacing:16.320000pt;}
.ls4b{letter-spacing:21.354667pt;}
.ls5a{letter-spacing:26.666667pt;}
.ws8a{word-spacing:-16.661333pt;}
.ws8b{word-spacing:-16.544000pt;}
.ws7a{word-spacing:-16.192000pt;}
.ws7b{word-spacing:-16.133333pt;}
.ws7d{word-spacing:-16.016000pt;}
.ws35{word-spacing:-15.957333pt;}
.ws73{word-spacing:-15.840000pt;}
.ws72{word-spacing:-15.781333pt;}
.ws7e{word-spacing:-15.722667pt;}
.ws90{word-spacing:-15.664000pt;}
.ws19{word-spacing:-15.605333pt;}
.ws65{word-spacing:-15.546667pt;}
.ws17{word-spacing:-15.488000pt;}
.ws8f{word-spacing:-15.429333pt;}
.ws7f{word-spacing:-15.370667pt;}
.ws6b{word-spacing:-15.312000pt;}
.ws48{word-spacing:-15.253333pt;}
.wse5{word-spacing:-15.200000pt;}
.ws77{word-spacing:-15.194667pt;}
.ws64{word-spacing:-15.136000pt;}
.ws6f{word-spacing:-15.077333pt;}
.ws14{word-spacing:-15.018667pt;}
.ws78{word-spacing:-14.960000pt;}
.ws1b{word-spacing:-14.901333pt;}
.ws38{word-spacing:-14.842667pt;}
.ws15{word-spacing:-14.784000pt;}
.ws31{word-spacing:-14.725333pt;}
.ws13{word-spacing:-14.666667pt;}
.ws39{word-spacing:-14.608000pt;}
.ws37{word-spacing:-14.549333pt;}
.ws32{word-spacing:-14.490667pt;}
.wse4{word-spacing:-14.453333pt;}
.ws3a{word-spacing:-14.432000pt;}
.ws91{word-spacing:-14.373333pt;}
.ws46{word-spacing:-14.314667pt;}
.ws6a{word-spacing:-14.256000pt;}
.ws16{word-spacing:-14.197333pt;}
.ws6e{word-spacing:-14.138667pt;}
.ws7c{word-spacing:-14.080000pt;}
.ws66{word-spacing:-14.021333pt;}
.wsb9{word-spacing:-13.973333pt;}
.ws36{word-spacing:-13.904000pt;}
.ws79{word-spacing:-13.845333pt;}
.wsc2{word-spacing:-13.813333pt;}
.ws74{word-spacing:-13.786667pt;}
.wse6{word-spacing:-13.760000pt;}
.wsdb{word-spacing:-13.706667pt;}
.ws12{word-spacing:-13.680000pt;}
.wsd9{word-spacing:-13.653333pt;}
.wsa1{word-spacing:-13.600000pt;}
.ws56{word-spacing:-13.552000pt;}
.wsa3{word-spacing:-13.546667pt;}
.wsa5{word-spacing:-13.493333pt;}
.wsce{word-spacing:-13.440000pt;}
.ws8d{word-spacing:-13.434667pt;}
.ws9e{word-spacing:-13.386667pt;}
.ws8c{word-spacing:-13.376000pt;}
.ws47{word-spacing:-13.333333pt;}
.wsde{word-spacing:-13.280000pt;}
.wse0{word-spacing:-13.226667pt;}
.wsdf{word-spacing:-13.173333pt;}
.wseb{word-spacing:-13.120000pt;}
.ws1a{word-spacing:-13.082667pt;}
.ws83{word-spacing:-13.066667pt;}
.ws10{word-spacing:-13.021333pt;}
.wsa2{word-spacing:-13.013333pt;}
.ws0{word-spacing:-12.920000pt;}
.ws95{word-spacing:-12.906667pt;}
.wse7{word-spacing:-12.746667pt;}
.wsae{word-spacing:-12.680000pt;}
.ws11{word-spacing:-12.666667pt;}
.ws93{word-spacing:-12.640000pt;}
.wsc0{word-spacing:-12.480000pt;}
.ws5a{word-spacing:-12.336000pt;}
.wsd2{word-spacing:-12.320000pt;}
.wsba{word-spacing:-12.266667pt;}
.wsaf{word-spacing:-12.160000pt;}
.ws58{word-spacing:-12.000000pt;}
.ws55{word-spacing:-11.044000pt;}
.ws75{word-spacing:-11.000000pt;}
.ws76{word-spacing:-10.956000pt;}
.ws45{word-spacing:-10.912000pt;}
.wsbf{word-spacing:-10.840000pt;}
.ws97{word-spacing:-10.760000pt;}
.ws96{word-spacing:-10.720000pt;}
.wsd4{word-spacing:-10.680000pt;}
.ws1d{word-spacing:-10.666667pt;}
.wsa4{word-spacing:-10.360000pt;}
.wsb3{word-spacing:-10.320000pt;}
.wsd1{word-spacing:-10.240000pt;}
.ws9c{word-spacing:-10.200000pt;}
.ws9b{word-spacing:-10.160000pt;}
.ws9a{word-spacing:-10.120000pt;}
.wsaa{word-spacing:-10.080000pt;}
.ws9d{word-spacing:-10.040000pt;}
.ws49{word-spacing:-10.032000pt;}
.ws99{word-spacing:-10.000000pt;}
.ws98{word-spacing:-9.960000pt;}
.wse8{word-spacing:-9.880000pt;}
.wscf{word-spacing:-9.840000pt;}
.wsd6{word-spacing:-9.800000pt;}
.wsbe{word-spacing:-9.720000pt;}
.ws94{word-spacing:-9.560000pt;}
.wsda{word-spacing:-9.400000pt;}
.wsdd{word-spacing:-9.320000pt;}
.ws92{word-spacing:-9.280000pt;}
.wsdc{word-spacing:-9.240000pt;}
.wsb2{word-spacing:-9.200000pt;}
.ws9f{word-spacing:-9.160000pt;}
.wsa0{word-spacing:-9.120000pt;}
.wsd0{word-spacing:-8.880000pt;}
.wsb0{word-spacing:-8.840000pt;}
.wsd3{word-spacing:-8.760000pt;}
.ws59{word-spacing:-8.460000pt;}
.ws81{word-spacing:-0.762667pt;}
.ws43{word-spacing:-0.704000pt;}
.ws3d{word-spacing:-0.645333pt;}
.ws50{word-spacing:-0.640000pt;}
.ws2{word-spacing:-0.608000pt;}
.ws4a{word-spacing:-0.586667pt;}
.ws5c{word-spacing:-0.576000pt;}
.ws86{word-spacing:-0.533333pt;}
.ws33{word-spacing:-0.528000pt;}
.wse{word-spacing:-0.506667pt;}
.ws61{word-spacing:-0.480000pt;}
.ws3f{word-spacing:-0.469333pt;}
.wse2{word-spacing:-0.426667pt;}
.ws23{word-spacing:-0.410667pt;}
.wsa{word-spacing:-0.405333pt;}
.ws4f{word-spacing:-0.373333pt;}
.ws1{word-spacing:-0.354667pt;}
.ws24{word-spacing:-0.352000pt;}
.ws5e{word-spacing:-0.336000pt;}
.ws4e{word-spacing:-0.320000pt;}
.ws3e{word-spacing:-0.293333pt;}
.wsa7{word-spacing:-0.266667pt;}
.ws2e{word-spacing:-0.234667pt;}
.ws4d{word-spacing:-0.213333pt;}
.ws6{word-spacing:-0.202667pt;}
.ws4b{word-spacing:-0.176000pt;}
.wsa9{word-spacing:-0.160000pt;}
.ws70{word-spacing:-0.117333pt;}
.wsc6{word-spacing:-0.106667pt;}
.ws41{word-spacing:-0.058667pt;}
.wsad{word-spacing:-0.053333pt;}
.ws62{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.048000pt;}
.wsd{word-spacing:0.050667pt;}
.wsc3{word-spacing:0.053333pt;}
.ws34{word-spacing:0.058667pt;}
.ws53{word-spacing:0.106667pt;}
.ws68{word-spacing:0.117333pt;}
.ws5d{word-spacing:0.144000pt;}
.ws3{word-spacing:0.152000pt;}
.wsc7{word-spacing:0.160000pt;}
.ws27{word-spacing:0.176000pt;}
.ws4c{word-spacing:0.213333pt;}
.ws40{word-spacing:0.234667pt;}
.ws84{word-spacing:0.266667pt;}
.ws22{word-spacing:0.293333pt;}
.ws3c{word-spacing:0.352000pt;}
.ws9{word-spacing:0.354667pt;}
.wscc{word-spacing:0.360000pt;}
.wscb{word-spacing:0.373333pt;}
.wsc{word-spacing:0.405333pt;}
.ws44{word-spacing:0.410667pt;}
.wsca{word-spacing:0.426667pt;}
.ws1e{word-spacing:0.456000pt;}
.ws2c{word-spacing:0.469333pt;}
.wsc5{word-spacing:0.480000pt;}
.ws69{word-spacing:0.528000pt;}
.ws87{word-spacing:0.533333pt;}
.ws5b{word-spacing:0.586667pt;}
.wsd8{word-spacing:0.640000pt;}
.ws26{word-spacing:0.645333pt;}
.wsc9{word-spacing:0.693333pt;}
.ws2b{word-spacing:0.704000pt;}
.ws60{word-spacing:0.720000pt;}
.ws51{word-spacing:0.746667pt;}
.wsed{word-spacing:0.760000pt;}
.ws54{word-spacing:0.762667pt;}
.wsc1{word-spacing:0.800000pt;}
.ws63{word-spacing:0.816000pt;}
.ws25{word-spacing:0.821333pt;}
.wscd{word-spacing:0.853333pt;}
.ws2f{word-spacing:0.880000pt;}
.wsa8{word-spacing:0.906667pt;}
.ws4{word-spacing:0.912000pt;}
.ws3b{word-spacing:0.938667pt;}
.ws85{word-spacing:0.960000pt;}
.ws42{word-spacing:0.997333pt;}
.wsf{word-spacing:1.013333pt;}
.ws20{word-spacing:1.056000pt;}
.wsb{word-spacing:1.064000pt;}
.wse3{word-spacing:1.066667pt;}
.ws1f{word-spacing:1.114667pt;}
.ws52{word-spacing:1.120000pt;}
.ws8{word-spacing:1.165333pt;}
.ws2d{word-spacing:1.173333pt;}
.ws5{word-spacing:1.216000pt;}
.wsc4{word-spacing:1.226667pt;}
.ws28{word-spacing:1.232000pt;}
.ws88{word-spacing:1.280000pt;}
.ws30{word-spacing:1.290667pt;}
.wsa6{word-spacing:1.333333pt;}
.ws21{word-spacing:1.349333pt;}
.ws29{word-spacing:1.408000pt;}
.ws2a{word-spacing:1.466667pt;}
.ws6c{word-spacing:1.525333pt;}
.wsc8{word-spacing:1.600000pt;}
.ws71{word-spacing:1.701333pt;}
.ws80{word-spacing:1.760000pt;}
.wsec{word-spacing:2.720000pt;}
.wsea{word-spacing:2.906667pt;}
.wse9{word-spacing:2.920000pt;}
.ws8e{word-spacing:3.050667pt;}
.wsb1{word-spacing:3.226667pt;}
.wsac{word-spacing:3.333333pt;}
.ws67{word-spacing:3.578667pt;}
.wsd7{word-spacing:3.626667pt;}
.wsbc{word-spacing:3.680000pt;}
.wsbd{word-spacing:3.693333pt;}
.wsbb{word-spacing:3.733333pt;}
.wsb4{word-spacing:3.920000pt;}
.wsb7{word-spacing:4.000000pt;}
.wsb8{word-spacing:4.040000pt;}
.wsd5{word-spacing:4.426667pt;}
.wsab{word-spacing:4.706667pt;}
.ws6d{word-spacing:4.893333pt;}
.wsb5{word-spacing:4.986667pt;}
.wsb6{word-spacing:5.000000pt;}
.ws89{word-spacing:5.045333pt;}
.wse1{word-spacing:5.120000pt;}
.ws18{word-spacing:6.688000pt;}
.ws82{word-spacing:7.685333pt;}
.ws1c{word-spacing:31.744000pt;}
.ws57{word-spacing:32.016000pt;}
._11{margin-left:-9.048000pt;}
._f{margin-left:-7.920000pt;}
._3{margin-left:-6.586667pt;}
._e{margin-left:-5.466667pt;}
._4{margin-left:-4.458667pt;}
._2{margin-left:-2.888000pt;}
._1{margin-left:-1.925333pt;}
._0{margin-left:-0.912000pt;}
._5{width:0.962667pt;}
._7{width:2.112000pt;}
._b{width:3.144000pt;}
._13{width:5.866667pt;}
._a{width:13.717333pt;}
._c{width:15.546667pt;}
._10{width:17.013333pt;}
._d{width:21.354667pt;}
._12{width:26.666667pt;}
._6{width:42.368000pt;}
._9{width:559.616000pt;}
._8{width:986.154667pt;}
.fs9{font-size:36.000000pt;}
.fsa{font-size:40.000000pt;}
.fs8{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:44.000000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1fc{bottom:42.853333pt;}
.y175{bottom:42.866667pt;}
.y12b{bottom:43.533333pt;}
.y118{bottom:43.620000pt;}
.y157{bottom:43.658667pt;}
.y1cd{bottom:43.666667pt;}
.y187{bottom:43.673333pt;}
.y78{bottom:43.692000pt;}
.y151{bottom:43.702667pt;}
.yff{bottom:43.717333pt;}
.y19b{bottom:43.732000pt;}
.ye8{bottom:43.746667pt;}
.y22b{bottom:43.786667pt;}
.y45{bottom:44.057333pt;}
.y259{bottom:46.520000pt;}
.y1e{bottom:47.520667pt;}
.yc2{bottom:48.082667pt;}
.y9d{bottom:48.160000pt;}
.y1fb{bottom:57.520000pt;}
.y1cc{bottom:57.666667pt;}
.y22a{bottom:57.786667pt;}
.y174{bottom:58.193333pt;}
.y12a{bottom:58.860000pt;}
.y117{bottom:58.946667pt;}
.y156{bottom:58.985333pt;}
.y186{bottom:59.000000pt;}
.y77{bottom:59.018667pt;}
.y150{bottom:59.029333pt;}
.yfe{bottom:59.044000pt;}
.y19a{bottom:59.058667pt;}
.ye7{bottom:59.073333pt;}
.y44{bottom:59.384000pt;}
.y258{bottom:60.520000pt;}
.yc1{bottom:60.754667pt;}
.y1d{bottom:60.858667pt;}
.y9c{bottom:63.486667pt;}
.y1fa{bottom:71.520000pt;}
.y1cb{bottom:71.666667pt;}
.y229{bottom:71.786667pt;}
.yc0{bottom:73.389333pt;}
.y173{bottom:73.520000pt;}
.y129{bottom:74.186667pt;}
.y1c{bottom:74.196667pt;}
.y116{bottom:74.273333pt;}
.y185{bottom:74.326667pt;}
.y76{bottom:74.345333pt;}
.y14f{bottom:74.356000pt;}
.yfd{bottom:74.370667pt;}
.y199{bottom:74.385333pt;}
.ye6{bottom:74.400000pt;}
.y43{bottom:74.710667pt;}
.y257{bottom:75.266667pt;}
.y9b{bottom:78.813333pt;}
.y155{bottom:81.982667pt;}
.y228{bottom:85.786667pt;}
.ybf{bottom:86.061333pt;}
.y1f9{bottom:86.186667pt;}
.y1ca{bottom:86.426667pt;}
.y1b{bottom:87.534667pt;}
.y172{bottom:88.846667pt;}
.y256{bottom:89.266667pt;}
.y128{bottom:89.513333pt;}
.y115{bottom:89.600000pt;}
.y184{bottom:89.653333pt;}
.y75{bottom:89.672000pt;}
.y14e{bottom:89.682667pt;}
.yfc{bottom:89.697333pt;}
.y198{bottom:89.712000pt;}
.ye5{bottom:89.726667pt;}
.y42{bottom:90.037333pt;}
.y9a{bottom:94.140000pt;}
.ybe{bottom:98.733333pt;}
.y227{bottom:99.786667pt;}
.y1f8{bottom:100.186667pt;}
.y1c9{bottom:100.426667pt;}
.y1a{bottom:100.872667pt;}
.y255{bottom:103.266667pt;}
.y171{bottom:104.173333pt;}
.y127{bottom:104.840000pt;}
.y114{bottom:104.926667pt;}
.y183{bottom:104.980000pt;}
.y74{bottom:104.998667pt;}
.y14d{bottom:105.009333pt;}
.yfb{bottom:105.024000pt;}
.y197{bottom:105.038667pt;}
.ye4{bottom:105.053333pt;}
.y41{bottom:105.364000pt;}
.y99{bottom:109.466667pt;}
.ybd{bottom:111.405333pt;}
.y226{bottom:114.466667pt;}
.y1f7{bottom:114.853333pt;}
.y1c8{bottom:115.186667pt;}
.y254{bottom:118.026667pt;}
.y170{bottom:119.500000pt;}
.y126{bottom:120.166667pt;}
.y113{bottom:120.253333pt;}
.y182{bottom:120.306667pt;}
.y154{bottom:120.321333pt;}
.y73{bottom:120.325333pt;}
.y14c{bottom:120.336000pt;}
.yfa{bottom:120.350667pt;}
.y196{bottom:120.365333pt;}
.ye3{bottom:120.380000pt;}
.y40{bottom:120.690667pt;}
.y19{bottom:121.760000pt;}
.ybc{bottom:124.077333pt;}
.y98{bottom:124.793333pt;}
.y1f6{bottom:128.853333pt;}
.y225{bottom:129.146667pt;}
.y1c7{bottom:129.186667pt;}
.y253{bottom:132.026667pt;}
.y16f{bottom:134.826667pt;}
.y125{bottom:135.493333pt;}
.y112{bottom:135.580000pt;}
.y181{bottom:135.633333pt;}
.y153{bottom:135.648000pt;}
.y72{bottom:135.652000pt;}
.y14b{bottom:135.662667pt;}
.yf9{bottom:135.677333pt;}
.y195{bottom:135.692000pt;}
.ye2{bottom:135.706667pt;}
.y3f{bottom:136.017333pt;}
.ybb{bottom:136.749333pt;}
.y97{bottom:140.173333pt;}
.y224{bottom:143.146667pt;}
.y1f5{bottom:143.520000pt;}
.y1c6{bottom:143.933333pt;}
.y18{bottom:146.394000pt;}
.y252{bottom:146.786667pt;}
.yba{bottom:149.421333pt;}
.y16e{bottom:150.153333pt;}
.y124{bottom:150.820000pt;}
.y111{bottom:150.906667pt;}
.y180{bottom:150.960000pt;}
.y14a{bottom:150.989333pt;}
.yf8{bottom:151.004000pt;}
.y194{bottom:151.018667pt;}
.ye1{bottom:151.033333pt;}
.y96{bottom:155.500000pt;}
.y1f4{bottom:157.520000pt;}
.y223{bottom:157.840000pt;}
.y1c5{bottom:157.933333pt;}
.y158{bottom:158.674667pt;}
.y17{bottom:159.732000pt;}
.y251{bottom:160.786667pt;}
.yb9{bottom:162.093333pt;}
.y16d{bottom:165.480000pt;}
.y123{bottom:166.146667pt;}
.y110{bottom:166.233333pt;}
.y17f{bottom:166.286667pt;}
.y149{bottom:166.316000pt;}
.y71{bottom:166.320000pt;}
.yf7{bottom:166.330667pt;}
.y193{bottom:166.345333pt;}
.ye0{bottom:166.360000pt;}
.y3e{bottom:166.685333pt;}
.y95{bottom:170.826667pt;}
.y222{bottom:171.840000pt;}
.y1f3{bottom:172.186667pt;}
.y1c4{bottom:172.693333pt;}
.y250{bottom:174.786667pt;}
.y16{bottom:180.619333pt;}
.y16c{bottom:180.806667pt;}
.y122{bottom:181.473333pt;}
.y10f{bottom:181.560000pt;}
.y148{bottom:181.642667pt;}
.y70{bottom:181.646667pt;}
.yf6{bottom:181.657333pt;}
.y192{bottom:181.672000pt;}
.ydf{bottom:181.686667pt;}
.y3d{bottom:182.012000pt;}
.y94{bottom:186.153333pt;}
.y221{bottom:186.520000pt;}
.y1c3{bottom:186.693333pt;}
.y1f2{bottom:186.853333pt;}
.y17e{bottom:189.284000pt;}
.y24f{bottom:189.533333pt;}
.y15{bottom:193.957333pt;}
.y16b{bottom:196.133333pt;}
.y121{bottom:196.800000pt;}
.y10e{bottom:196.886667pt;}
.y147{bottom:196.969333pt;}
.y6f{bottom:196.973333pt;}
.yf5{bottom:196.984000pt;}
.y191{bottom:196.998667pt;}
.yde{bottom:197.013333pt;}
.y3c{bottom:197.338667pt;}
.y1f1{bottom:200.853333pt;}
.y220{bottom:201.200000pt;}
.y1c2{bottom:201.453333pt;}
.y93{bottom:201.480000pt;}
.y24e{bottom:203.533333pt;}
.y17d{bottom:204.610667pt;}
.y14{bottom:207.295333pt;}
.y16a{bottom:211.460000pt;}
.y120{bottom:212.126667pt;}
.yb8{bottom:212.176000pt;}
.y10d{bottom:212.213333pt;}
.y146{bottom:212.296000pt;}
.y6e{bottom:212.300000pt;}
.yf4{bottom:212.310667pt;}
.y190{bottom:212.325333pt;}
.ydd{bottom:212.340000pt;}
.y3b{bottom:212.665333pt;}
.y21f{bottom:215.200000pt;}
.y1c1{bottom:215.453333pt;}
.y1f0{bottom:215.520000pt;}
.y92{bottom:216.806667pt;}
.y24d{bottom:218.293333pt;}
.y13{bottom:220.633333pt;}
.y169{bottom:226.786667pt;}
.yb7{bottom:227.502667pt;}
.y10c{bottom:227.540000pt;}
.y145{bottom:227.622667pt;}
.y6d{bottom:227.626667pt;}
.yf3{bottom:227.637333pt;}
.y18f{bottom:227.652000pt;}
.ydc{bottom:227.666667pt;}
.y3a{bottom:227.992000pt;}
.y21e{bottom:229.200000pt;}
.y1ef{bottom:229.520000pt;}
.y1c0{bottom:230.200000pt;}
.y91{bottom:232.133333pt;}
.y24c{bottom:233.053333pt;}
.y12{bottom:233.971333pt;}
.yb6{bottom:242.829333pt;}
.y10b{bottom:242.866667pt;}
.y144{bottom:242.949333pt;}
.y6c{bottom:242.953333pt;}
.yf2{bottom:242.964000pt;}
.y18e{bottom:242.978667pt;}
.ydb{bottom:242.993333pt;}
.y39{bottom:243.318667pt;}
.y21d{bottom:243.880000pt;}
.y1ee{bottom:244.186667pt;}
.y1bf{bottom:244.200000pt;}
.y11{bottom:247.309333pt;}
.y90{bottom:247.460000pt;}
.y24b{bottom:247.800000pt;}
.y168{bottom:256.786667pt;}
.y21c{bottom:257.880000pt;}
.yb5{bottom:258.156000pt;}
.y1ed{bottom:258.186667pt;}
.y10a{bottom:258.193333pt;}
.y143{bottom:258.276000pt;}
.y6b{bottom:258.280000pt;}
.yf1{bottom:258.290667pt;}
.yda{bottom:258.320000pt;}
.y38{bottom:258.645333pt;}
.y1be{bottom:258.960000pt;}
.y10{bottom:260.647333pt;}
.y24a{bottom:261.800000pt;}
.y8f{bottom:262.786667pt;}
.y167{bottom:270.786667pt;}
.y21b{bottom:271.880000pt;}
.y1ec{bottom:272.186667pt;}
.y1bd{bottom:272.960000pt;}
.yb4{bottom:273.482667pt;}
.y109{bottom:273.520000pt;}
.y142{bottom:273.602667pt;}
.y6a{bottom:273.606667pt;}
.yf0{bottom:273.617333pt;}
.yd9{bottom:273.646667pt;}
.y37{bottom:273.972000pt;}
.yf{bottom:273.985333pt;}
.y249{bottom:276.560000pt;}
.y166{bottom:284.786667pt;}
.y1eb{bottom:286.186667pt;}
.y21a{bottom:286.560000pt;}
.ye{bottom:287.323333pt;}
.y1bc{bottom:287.720000pt;}
.yb3{bottom:288.809333pt;}
.y108{bottom:288.846667pt;}
.y141{bottom:288.929333pt;}
.y69{bottom:288.933333pt;}
.yef{bottom:288.944000pt;}
.yd8{bottom:288.973333pt;}
.y248{bottom:291.320000pt;}
.y8e{bottom:292.786667pt;}
.y165{bottom:298.786667pt;}
.y1ea{bottom:300.853333pt;}
.y219{bottom:301.240000pt;}
.y1bb{bottom:302.466667pt;}
.yb2{bottom:304.136000pt;}
.y107{bottom:304.173333pt;}
.y140{bottom:304.256000pt;}
.y68{bottom:304.260000pt;}
.yee{bottom:304.270667pt;}
.y18d{bottom:304.285333pt;}
.yd7{bottom:304.300000pt;}
.y36{bottom:304.640000pt;}
.y247{bottom:305.320000pt;}
.y8d{bottom:306.786667pt;}
.y164{bottom:312.786667pt;}
.yd{bottom:313.986667pt;}
.y1e9{bottom:314.853333pt;}
.y218{bottom:315.920000pt;}
.y1ba{bottom:316.466667pt;}
.y246{bottom:319.320000pt;}
.yb1{bottom:319.462667pt;}
.y106{bottom:319.500000pt;}
.y13f{bottom:319.582667pt;}
.y67{bottom:319.586667pt;}
.yed{bottom:319.597333pt;}
.y18c{bottom:319.612000pt;}
.yd6{bottom:319.626667pt;}
.y35{bottom:319.966667pt;}
.y8c{bottom:320.786667pt;}
.y163{bottom:326.786667pt;}
.y1e8{bottom:328.853333pt;}
.y217{bottom:329.920000pt;}
.y1b9{bottom:330.466667pt;}
.y273{bottom:332.120000pt;}
.y245{bottom:334.066667pt;}
.y8b{bottom:334.786667pt;}
.yb0{bottom:334.789333pt;}
.y105{bottom:334.826667pt;}
.y13e{bottom:334.909333pt;}
.y66{bottom:334.913333pt;}
.yec{bottom:334.924000pt;}
.y18b{bottom:334.938667pt;}
.yd5{bottom:334.953333pt;}
.y34{bottom:335.293333pt;}
.y162{bottom:340.786667pt;}
.y1e7{bottom:343.520000pt;}
.y216{bottom:344.600000pt;}
.y1b8{bottom:345.226667pt;}
.yc{bottom:345.950667pt;}
.y272{bottom:346.120000pt;}
.y244{bottom:348.066667pt;}
.y8a{bottom:348.786667pt;}
.y104{bottom:350.153333pt;}
.y13d{bottom:350.236000pt;}
.y65{bottom:350.240000pt;}
.yeb{bottom:350.250667pt;}
.y18a{bottom:350.265333pt;}
.yd4{bottom:350.280000pt;}
.y33{bottom:350.620000pt;}
.y161{bottom:354.786667pt;}
.y1e6{bottom:357.520000pt;}
.yaf{bottom:357.786667pt;}
.y215{bottom:358.600000pt;}
.yb{bottom:359.288667pt;}
.y1b7{bottom:359.986667pt;}
.y271{bottom:360.120000pt;}
.y243{bottom:362.066667pt;}
.y103{bottom:365.480000pt;}
.y13c{bottom:365.562667pt;}
.y64{bottom:365.566667pt;}
.yea{bottom:365.577333pt;}
.y189{bottom:365.592000pt;}
.yd3{bottom:365.606667pt;}
.y32{bottom:365.946667pt;}
.y160{bottom:368.786667pt;}
.y1e5{bottom:372.186667pt;}
.y152{bottom:373.248000pt;}
.y214{bottom:373.280000pt;}
.y1b6{bottom:374.733333pt;}
.y270{bottom:374.920000pt;}
.y242{bottom:376.066667pt;}
.y89{bottom:376.133333pt;}
.ya{bottom:380.176000pt;}
.y102{bottom:380.806667pt;}
.y13b{bottom:380.889333pt;}
.y63{bottom:380.893333pt;}
.y11f{bottom:380.904000pt;}
.y188{bottom:380.918667pt;}
.yd2{bottom:380.933333pt;}
.y31{bottom:381.273333pt;}
.y1e4{bottom:386.186667pt;}
.y213{bottom:387.280000pt;}
.ye9{bottom:388.574667pt;}
.y1b5{bottom:388.733333pt;}
.y26f{bottom:388.920000pt;}
.y241{bottom:390.066667pt;}
.y88{bottom:391.460000pt;}
.y9{bottom:393.514000pt;}
.y101{bottom:396.133333pt;}
.y13a{bottom:396.216000pt;}
.y62{bottom:396.220000pt;}
.y11e{bottom:396.230667pt;}
.yae{bottom:396.233333pt;}
.y15f{bottom:396.245333pt;}
.yd1{bottom:396.260000pt;}
.y30{bottom:396.600000pt;}
.y1e3{bottom:400.186667pt;}
.y212{bottom:401.960000pt;}
.y26e{bottom:402.920000pt;}
.y1b4{bottom:403.493333pt;}
.y240{bottom:404.826667pt;}
.y87{bottom:406.786667pt;}
.y8{bottom:406.852000pt;}
.y100{bottom:411.460000pt;}
.y139{bottom:411.542667pt;}
.y61{bottom:411.546667pt;}
.y11d{bottom:411.557333pt;}
.yad{bottom:411.560000pt;}
.y15e{bottom:411.572000pt;}
.yd0{bottom:411.586667pt;}
.y2f{bottom:411.926667pt;}
.y1e2{bottom:414.853333pt;}
.y211{bottom:416.640000pt;}
.y26d{bottom:416.920000pt;}
.y1b3{bottom:417.493333pt;}
.y23f{bottom:418.826667pt;}
.y7{bottom:420.190000pt;}
.y138{bottom:426.869333pt;}
.y60{bottom:426.873333pt;}
.y11c{bottom:426.884000pt;}
.yac{bottom:426.886667pt;}
.y15d{bottom:426.898667pt;}
.ycf{bottom:426.913333pt;}
.y2e{bottom:427.253333pt;}
.y1e1{bottom:428.853333pt;}
.y210{bottom:431.320000pt;}
.y26c{bottom:431.720000pt;}
.y1b2{bottom:432.253333pt;}
.y6{bottom:433.528000pt;}
.y23e{bottom:433.586667pt;}
.y86{bottom:436.786667pt;}
.y137{bottom:442.196000pt;}
.y5f{bottom:442.200000pt;}
.y11b{bottom:442.210667pt;}
.yab{bottom:442.213333pt;}
.y15c{bottom:442.225333pt;}
.yce{bottom:442.240000pt;}
.y2d{bottom:442.580000pt;}
.y1e0{bottom:443.520000pt;}
.y20f{bottom:445.320000pt;}
.y1b1{bottom:446.253333pt;}
.y26b{bottom:446.520000pt;}
.y5{bottom:446.866000pt;}
.y23d{bottom:447.586667pt;}
.y85{bottom:450.786667pt;}
.y17a{bottom:457.522667pt;}
.y5e{bottom:457.526667pt;}
.y11a{bottom:457.537333pt;}
.yaa{bottom:457.540000pt;}
.y15b{bottom:457.552000pt;}
.ycd{bottom:457.566667pt;}
.y2c{bottom:457.906667pt;}
.y1df{bottom:458.120000pt;}
.y20e{bottom:460.000000pt;}
.y4{bottom:460.204000pt;}
.y1b0{bottom:461.013333pt;}
.y26a{bottom:461.320000pt;}
.y23c{bottom:461.586667pt;}
.y84{bottom:464.786667pt;}
.y136{bottom:465.193333pt;}
.y1de{bottom:472.786667pt;}
.y5d{bottom:472.853333pt;}
.y17c{bottom:472.864000pt;}
.ya9{bottom:472.866667pt;}
.y15a{bottom:472.878667pt;}
.ycc{bottom:472.893333pt;}
.y2b{bottom:473.233333pt;}
.y3{bottom:473.542000pt;}
.y20d{bottom:474.000000pt;}
.y1af{bottom:475.013333pt;}
.y269{bottom:475.320000pt;}
.y23b{bottom:475.586667pt;}
.y83{bottom:478.786667pt;}
.y119{bottom:480.534667pt;}
.y2{bottom:486.880000pt;}
.y1dd{bottom:487.453333pt;}
.y20c{bottom:488.000000pt;}
.y5c{bottom:488.180000pt;}
.y179{bottom:488.190667pt;}
.ya8{bottom:488.193333pt;}
.y159{bottom:488.205333pt;}
.ycb{bottom:488.220000pt;}
.y2a{bottom:488.560000pt;}
.y1ae{bottom:489.013333pt;}
.y268{bottom:489.320000pt;}
.y23a{bottom:490.346667pt;}
.y82{bottom:492.786667pt;}
.y1dc{bottom:501.453333pt;}
.y20b{bottom:502.680000pt;}
.y267{bottom:503.320000pt;}
.y5b{bottom:503.506667pt;}
.y178{bottom:503.517333pt;}
.ya7{bottom:503.520000pt;}
.y135{bottom:503.532000pt;}
.yca{bottom:503.546667pt;}
.y1ad{bottom:503.760000pt;}
.y239{bottom:504.346667pt;}
.y81{bottom:506.786667pt;}
.y17b{bottom:511.188000pt;}
.y1{bottom:513.546667pt;}
.y1db{bottom:516.120000pt;}
.y20a{bottom:517.360000pt;}
.y1ac{bottom:517.760000pt;}
.y266{bottom:518.120000pt;}
.y238{bottom:518.346667pt;}
.y5a{bottom:518.833333pt;}
.y177{bottom:518.844000pt;}
.ya6{bottom:518.846667pt;}
.y134{bottom:518.858667pt;}
.yc9{bottom:518.873333pt;}
.y1da{bottom:530.786667pt;}
.y1ab{bottom:531.760000pt;}
.y209{bottom:532.040000pt;}
.y265{bottom:532.120000pt;}
.y237{bottom:533.093333pt;}
.y80{bottom:534.153333pt;}
.y59{bottom:534.160000pt;}
.y19f{bottom:534.170667pt;}
.ya5{bottom:534.173333pt;}
.y133{bottom:534.185333pt;}
.yc8{bottom:534.200000pt;}
.y176{bottom:541.841333pt;}
.y1d9{bottom:544.786667pt;}
.y4c{bottom:546.160000pt;}
.y1aa{bottom:546.520000pt;}
.y208{bottom:546.720000pt;}
.y264{bottom:546.920000pt;}
.y236{bottom:547.093333pt;}
.y7f{bottom:549.480000pt;}
.y58{bottom:549.486667pt;}
.y19e{bottom:549.497333pt;}
.ya4{bottom:549.500000pt;}
.y132{bottom:549.512000pt;}
.yc7{bottom:549.526667pt;}
.y48{bottom:559.014667pt;}
.y1d8{bottom:559.453333pt;}
.y263{bottom:560.920000pt;}
.y235{bottom:561.093333pt;}
.y1a9{bottom:561.280000pt;}
.y207{bottom:561.400000pt;}
.y7e{bottom:564.806667pt;}
.y57{bottom:564.813333pt;}
.ya3{bottom:564.826667pt;}
.y4b{bottom:564.834667pt;}
.y131{bottom:564.838667pt;}
.yc6{bottom:564.853333pt;}
.y47{bottom:572.346667pt;}
.y1d7{bottom:574.120000pt;}
.y262{bottom:574.920000pt;}
.y234{bottom:575.093333pt;}
.y1a8{bottom:575.280000pt;}
.y206{bottom:575.400000pt;}
.y4a{bottom:578.166667pt;}
.y7d{bottom:580.133333pt;}
.y56{bottom:580.140000pt;}
.ya2{bottom:580.153333pt;}
.y130{bottom:580.165333pt;}
.yc5{bottom:580.180000pt;}
.y1d6{bottom:588.786667pt;}
.y233{bottom:589.093333pt;}
.y1a7{bottom:589.280000pt;}
.y205{bottom:589.400000pt;}
.y261{bottom:589.720000pt;}
.y46{bottom:591.013333pt;}
.y49{bottom:591.498667pt;}
.y7c{bottom:595.460000pt;}
.y55{bottom:595.466667pt;}
.ya1{bottom:595.480000pt;}
.y12f{bottom:595.492000pt;}
.yc4{bottom:595.506667pt;}
.y1a6{bottom:603.280000pt;}
.y1d5{bottom:603.453333pt;}
.y260{bottom:603.720000pt;}
.y232{bottom:603.853333pt;}
.y204{bottom:604.080000pt;}
.y54{bottom:610.793333pt;}
.y7b{bottom:610.804000pt;}
.ya0{bottom:610.806667pt;}
.y12e{bottom:610.818667pt;}
.yc3{bottom:610.833333pt;}
.y4d{bottom:612.360000pt;}
.y24{bottom:616.093333pt;}
.y1d4{bottom:617.453333pt;}
.y231{bottom:617.853333pt;}
.y1a5{bottom:618.026667pt;}
.y203{bottom:618.080000pt;}
.y25f{bottom:618.520000pt;}
.y7a{bottom:626.130667pt;}
.y9f{bottom:626.133333pt;}
.y12d{bottom:626.145333pt;}
.y53{bottom:626.160000pt;}
.y1d3{bottom:631.453333pt;}
.y1a4{bottom:632.026667pt;}
.y202{bottom:632.080000pt;}
.y23{bottom:632.093333pt;}
.y25e{bottom:632.520000pt;}
.y230{bottom:632.613333pt;}
.y9e{bottom:641.460000pt;}
.y12c{bottom:641.472000pt;}
.y52{bottom:641.486667pt;}
.y1a3{bottom:646.026667pt;}
.y201{bottom:646.080000pt;}
.y1d2{bottom:646.120000pt;}
.y25d{bottom:646.520000pt;}
.y22f{bottom:646.613333pt;}
.y79{bottom:649.128000pt;}
.y19d{bottom:656.798667pt;}
.y51{bottom:656.813333pt;}
.y29{bottom:657.226667pt;}
.y1a2{bottom:660.026667pt;}
.y200{bottom:660.080000pt;}
.y1d1{bottom:660.786667pt;}
.y25c{bottom:661.320000pt;}
.y22e{bottom:661.360000pt;}
.y28{bottom:670.556667pt;}
.y22{bottom:672.093333pt;}
.y19c{bottom:672.125333pt;}
.y50{bottom:672.140000pt;}
.y1ff{bottom:674.760000pt;}
.y1a1{bottom:674.786667pt;}
.y25b{bottom:675.320000pt;}
.y22d{bottom:675.360000pt;}
.y1d0{bottom:675.453333pt;}
.y4f{bottom:687.466667pt;}
.y1fe{bottom:688.760000pt;}
.y1a0{bottom:688.786667pt;}
.y25a{bottom:689.320000pt;}
.y22c{bottom:689.360000pt;}
.y1cf{bottom:689.453333pt;}
.y27{bottom:691.444000pt;}
.y21{bottom:693.426667pt;}
.y4e{bottom:702.793333pt;}
.y1fd{bottom:703.440000pt;}
.y1ce{bottom:704.120000pt;}
.y26{bottom:704.782000pt;}
.y20{bottom:714.760000pt;}
.y25{bottom:718.120000pt;}
.y1f{bottom:760.093333pt;}
.h2{height:45.525333pt;}
.h5{height:51.216000pt;}
.hb{height:51.365333pt;}
.hc{height:52.032000pt;}
.h1{height:54.061333pt;}
.h9{height:56.906667pt;}
.hd{height:57.813333pt;}
.h6{height:62.597333pt;}
.ha{height:62.954133pt;}
.h7{height:63.434667pt;}
.h8{height:63.594667pt;}
.h4{height:68.288000pt;}
.h3{height:91.050667pt;}
.h0{height:801.333333pt;}
.w0{width:566.666667pt;}
.x0{left:0.000000pt;}
.x1{left:62.400000pt;}
.x3{left:63.480000pt;}
.x5{left:71.573333pt;}
.xd{left:78.454667pt;}
.xa{left:82.390667pt;}
.x4{left:83.470667pt;}
.xc{left:102.420000pt;}
.xb{left:103.480000pt;}
.x6{left:156.773333pt;}
.x7{left:170.729333pt;}
.x9{left:258.440000pt;}
.x8{left:291.473333pt;}
.x2{left:374.200000pt;}
}




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