
    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_12de92908d00abc03b36aff2.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_3485ff664a7eef7738f1529e.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_69e58b6b3eee1da105712cbf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_99def7d24600e8558609560f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5a912cce50a9468b96c53c25.woff2')format("woff");}.ff5{font-family:ff5;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.780000px;}
.v2{vertical-align:-1.728000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.780000px;}
.lsc{letter-spacing:-5.301000px;}
.ls19{letter-spacing:-5.244000px;}
.ls10{letter-spacing:-4.902000px;}
.lse{letter-spacing:-3.192000px;}
.ls1e{letter-spacing:-2.880000px;}
.ls23{letter-spacing:-2.664000px;}
.ls24{letter-spacing:-2.592000px;}
.ls18{letter-spacing:-2.394000px;}
.ls66{letter-spacing:-2.310000px;}
.ls22{letter-spacing:-2.088000px;}
.ls14{letter-spacing:-1.995000px;}
.ls69{letter-spacing:-1.980000px;}
.ls25{letter-spacing:-1.944000px;}
.ls20{letter-spacing:-1.728000px;}
.ls6b{letter-spacing:-1.716000px;}
.ls4e{letter-spacing:-1.650000px;}
.ls60{letter-spacing:-1.620000px;}
.ls17{letter-spacing:-1.596000px;}
.ls5c{letter-spacing:-1.584000px;}
.ls1a{letter-spacing:-1.482000px;}
.ls4f{letter-spacing:-1.452000px;}
.lsf{letter-spacing:-1.425000px;}
.ls6a{letter-spacing:-1.386000px;}
.ls27{letter-spacing:-1.368000px;}
.ls5e{letter-spacing:-1.350000px;}
.ls52{letter-spacing:-1.320000px;}
.ls5f{letter-spacing:-1.296000px;}
.ls68{letter-spacing:-1.188000px;}
.ls1f{letter-spacing:-1.152000px;}
.ls32{letter-spacing:-1.122000px;}
.lsd{letter-spacing:-1.083000px;}
.ls31{letter-spacing:-1.056000px;}
.ls9{letter-spacing:-1.026000px;}
.ls46{letter-spacing:-0.990000px;}
.lsb{letter-spacing:-0.969000px;}
.ls53{letter-spacing:-0.924000px;}
.ls21{letter-spacing:-0.864000px;}
.ls58{letter-spacing:-0.858000px;}
.ls1d{letter-spacing:-0.855000px;}
.ls33{letter-spacing:-0.792000px;}
.ls29{letter-spacing:-0.768000px;}
.ls15{letter-spacing:-0.741000px;}
.ls5a{letter-spacing:-0.726000px;}
.ls7{letter-spacing:-0.684000px;}
.ls30{letter-spacing:-0.660000px;}
.ls11{letter-spacing:-0.627000px;}
.ls26{letter-spacing:-0.594000px;}
.ls13{letter-spacing:-0.570000px;}
.ls37{letter-spacing:-0.528000px;}
.ls36{letter-spacing:-0.462000px;}
.ls74{letter-spacing:-0.432000px;}
.ls73{letter-spacing:-0.415800px;}
.ls39{letter-spacing:-0.396000px;}
.lsa{letter-spacing:-0.342000px;}
.ls34{letter-spacing:-0.330000px;}
.ls78{letter-spacing:-0.288000px;}
.ls1c{letter-spacing:-0.285000px;}
.ls61{letter-spacing:-0.270000px;}
.ls38{letter-spacing:-0.264000px;}
.ls88{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.228000px;}
.ls5d{letter-spacing:-0.216000px;}
.ls41{letter-spacing:-0.198000px;}
.ls8a{letter-spacing:-0.180000px;}
.ls16{letter-spacing:-0.171000px;}
.ls54{letter-spacing:-0.168000px;}
.ls4d{letter-spacing:-0.162000px;}
.ls64{letter-spacing:-0.144000px;}
.ls67{letter-spacing:-0.138600px;}
.ls89{letter-spacing:-0.135000px;}
.ls42{letter-spacing:-0.132000px;}
.ls1b{letter-spacing:-0.114000px;}
.ls2f{letter-spacing:-0.066000px;}
.ls7b{letter-spacing:-0.060000px;}
.ls28{letter-spacing:-0.057000px;}
.ls4c{letter-spacing:-0.054000px;}
.ls3a{letter-spacing:-0.048000px;}
.ls6c{letter-spacing:-0.042000px;}
.ls8{letter-spacing:0.000000px;}
.ls79{letter-spacing:0.049500px;}
.ls77{letter-spacing:0.054000px;}
.ls4{letter-spacing:0.057000px;}
.ls2b{letter-spacing:0.066000px;}
.ls4b{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.114000px;}
.ls3c{letter-spacing:0.132000px;}
.ls5b{letter-spacing:0.162000px;}
.ls7d{letter-spacing:0.180000px;}
.ls43{letter-spacing:0.198000px;}
.ls65{letter-spacing:0.216000px;}
.ls47{letter-spacing:0.240000px;}
.ls3b{letter-spacing:0.264000px;}
.ls7f{letter-spacing:0.300000px;}
.ls2d{letter-spacing:0.330000px;}
.ls7e{letter-spacing:0.360000px;}
.ls3f{letter-spacing:0.396000px;}
.ls84{letter-spacing:0.405000px;}
.ls83{letter-spacing:0.420000px;}
.ls82{letter-spacing:0.450000px;}
.ls2a{letter-spacing:0.462000px;}
.ls81{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.513000px;}
.ls3d{letter-spacing:0.528000px;}
.ls3{letter-spacing:0.570000px;}
.ls44{letter-spacing:0.594000px;}
.ls7c{letter-spacing:0.600000px;}
.ls4a{letter-spacing:0.648000px;}
.ls3e{letter-spacing:0.660000px;}
.ls59{letter-spacing:0.726000px;}
.ls0{letter-spacing:0.741000px;}
.ls8b{letter-spacing:0.765000px;}
.ls40{letter-spacing:0.792000px;}
.ls71{letter-spacing:0.810000px;}
.ls56{letter-spacing:0.858000px;}
.ls72{letter-spacing:0.864000px;}
.ls2e{letter-spacing:0.924000px;}
.ls80{letter-spacing:0.960000px;}
.ls49{letter-spacing:0.990000px;}
.ls85{letter-spacing:1.020000px;}
.ls86{letter-spacing:1.035000px;}
.ls7a{letter-spacing:1.080000px;}
.ls48{letter-spacing:1.122000px;}
.ls51{letter-spacing:1.188000px;}
.ls62{letter-spacing:1.254000px;}
.ls2c{letter-spacing:1.320000px;}
.ls63{letter-spacing:1.386000px;}
.ls1{letter-spacing:1.482000px;}
.ls45{letter-spacing:1.584000px;}
.ls35{letter-spacing:1.650000px;}
.ls50{letter-spacing:1.722000px;}
.ls8c{letter-spacing:1.755000px;}
.ls87{letter-spacing:1.800000px;}
.ls55{letter-spacing:2.226000px;}
.ls6d{letter-spacing:3.738000px;}
.ls6e{letter-spacing:5.208000px;}
.ls76{letter-spacing:18.300000px;}
.ls6f{letter-spacing:18.681600px;}
.ls57{letter-spacing:24.024000px;}
.ls70{letter-spacing:33.000000px;}
.ls75{letter-spacing:33.042000px;}
.ls6{letter-spacing:47.712000px;}
.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;}
}
.ws19{word-spacing:-22.848000px;}
.ws18{word-spacing:-21.120000px;}
.ws78{word-spacing:-18.084000px;}
.ws1b{word-spacing:-18.000000px;}
.ws8c{word-spacing:-17.886000px;}
.ws8b{word-spacing:-17.754000px;}
.ws8a{word-spacing:-17.490000px;}
.wsae{word-spacing:-17.424000px;}
.ws9e{word-spacing:-17.358000px;}
.wsa7{word-spacing:-17.292000px;}
.ws1c{word-spacing:-17.136000px;}
.ws57{word-spacing:-17.094000px;}
.ws34{word-spacing:-16.962000px;}
.ws80{word-spacing:-16.896000px;}
.ws31{word-spacing:-16.830000px;}
.wsc8{word-spacing:-16.800000px;}
.ws61{word-spacing:-16.764000px;}
.ws56{word-spacing:-16.698000px;}
.ws6d{word-spacing:-16.632000px;}
.ws35{word-spacing:-16.566000px;}
.ws32{word-spacing:-16.500000px;}
.ws33{word-spacing:-16.434000px;}
.ws63{word-spacing:-16.368000px;}
.ws8d{word-spacing:-16.302000px;}
.ws1a{word-spacing:-16.272000px;}
.ws58{word-spacing:-16.236000px;}
.ws37{word-spacing:-16.170000px;}
.ws36{word-spacing:-16.038000px;}
.wsc4{word-spacing:-16.020000px;}
.ws38{word-spacing:-15.972000px;}
.wsbb{word-spacing:-15.960000px;}
.ws1d{word-spacing:-15.912000px;}
.ws8e{word-spacing:-15.906000px;}
.ws7e{word-spacing:-15.774000px;}
.wsb8{word-spacing:-15.660000px;}
.ws93{word-spacing:-15.642000px;}
.ws79{word-spacing:-15.576000px;}
.wsbe{word-spacing:-15.420000px;}
.ws1f{word-spacing:-15.408000px;}
.ws84{word-spacing:-15.378000px;}
.ws1e{word-spacing:-15.336000px;}
.ws77{word-spacing:-15.180000px;}
.ws6e{word-spacing:-15.048000px;}
.wsb2{word-spacing:-15.000000px;}
.wsc0{word-spacing:-14.760000px;}
.ws94{word-spacing:-14.520000px;}
.wsa1{word-spacing:-14.310000px;}
.ws17{word-spacing:-14.250000px;}
.ws90{word-spacing:-14.190000px;}
.ws13{word-spacing:-14.136000px;}
.wsc{word-spacing:-14.079000px;}
.wsf{word-spacing:-14.022000px;}
.ws14{word-spacing:-13.965000px;}
.wsb{word-spacing:-13.908000px;}
.ws0{word-spacing:-13.851000px;}
.ws65{word-spacing:-13.770000px;}
.ws70{word-spacing:-13.716000px;}
.ws11{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.623000px;}
.wsa8{word-spacing:-13.608000px;}
.ws15{word-spacing:-13.566000px;}
.wsa{word-spacing:-13.509000px;}
.ws22{word-spacing:-13.500000px;}
.ws16{word-spacing:-13.395000px;}
.ws2{word-spacing:-13.281000px;}
.ws1{word-spacing:-13.224000px;}
.ws4{word-spacing:-13.167000px;}
.wsc7{word-spacing:-13.050000px;}
.wsc6{word-spacing:-13.005000px;}
.ws21{word-spacing:-12.906000px;}
.ws6{word-spacing:-12.825000px;}
.ws12{word-spacing:-12.768000px;}
.wsd{word-spacing:-12.654000px;}
.wsba{word-spacing:-12.330000px;}
.wsc3{word-spacing:-12.285000px;}
.ws9{word-spacing:-12.255000px;}
.wsc9{word-spacing:-12.240000px;}
.wsc5{word-spacing:-12.015000px;}
.ws97{word-spacing:-12.000000px;}
.ws3a{word-spacing:-11.952000px;}
.wse{word-spacing:-11.856000px;}
.wsb0{word-spacing:-11.712000px;}
.wsbc{word-spacing:-11.700000px;}
.wsbd{word-spacing:-11.655000px;}
.ws20{word-spacing:-11.556000px;}
.ws62{word-spacing:-11.550000px;}
.ws92{word-spacing:-11.411400px;}
.wsb6{word-spacing:-11.250000px;}
.wsa0{word-spacing:-11.134200px;}
.wsc1{word-spacing:-11.115000px;}
.ws5{word-spacing:-11.058000px;}
.ws6f{word-spacing:-10.944000px;}
.ws71{word-spacing:-10.500000px;}
.ws99{word-spacing:-10.458000px;}
.ws98{word-spacing:-10.332000px;}
.ws7{word-spacing:-9.348000px;}
.ws10{word-spacing:-9.006000px;}
.ws3{word-spacing:-8.949000px;}
.ws30{word-spacing:-7.680000px;}
.wsb9{word-spacing:-1.320000px;}
.ws6c{word-spacing:-0.864000px;}
.ws41{word-spacing:-0.858000px;}
.ws40{word-spacing:-0.792000px;}
.ws2f{word-spacing:-0.741000px;}
.ws59{word-spacing:-0.726000px;}
.wscd{word-spacing:-0.720000px;}
.ws5a{word-spacing:-0.660000px;}
.ws27{word-spacing:-0.627000px;}
.wsb5{word-spacing:-0.600000px;}
.ws4c{word-spacing:-0.594000px;}
.ws2c{word-spacing:-0.570000px;}
.ws44{word-spacing:-0.528000px;}
.ws28{word-spacing:-0.513000px;}
.ws69{word-spacing:-0.486000px;}
.wsd2{word-spacing:-0.480000px;}
.ws73{word-spacing:-0.462000px;}
.ws24{word-spacing:-0.399000px;}
.ws4a{word-spacing:-0.396000px;}
.ws52{word-spacing:-0.330000px;}
.wsaa{word-spacing:-0.324000px;}
.wsd1{word-spacing:-0.300000px;}
.ws6b{word-spacing:-0.270000px;}
.ws4b{word-spacing:-0.264000px;}
.wsa4{word-spacing:-0.216000px;}
.ws3c{word-spacing:-0.198000px;}
.ws29{word-spacing:-0.171000px;}
.ws5e{word-spacing:-0.132000px;}
.wsbf{word-spacing:-0.120000px;}
.ws42{word-spacing:-0.066000px;}
.wsc2{word-spacing:-0.060000px;}
.ws9d{word-spacing:-0.054000px;}
.ws23{word-spacing:0.000000px;}
.ws81{word-spacing:0.066000px;}
.ws67{word-spacing:0.132000px;}
.ws3e{word-spacing:0.198000px;}
.ws6a{word-spacing:0.216000px;}
.ws3f{word-spacing:0.264000px;}
.ws48{word-spacing:0.330000px;}
.wscb{word-spacing:0.360000px;}
.ws87{word-spacing:0.378000px;}
.ws82{word-spacing:0.396000px;}
.wsb4{word-spacing:0.420000px;}
.ws7b{word-spacing:0.462000px;}
.wsd3{word-spacing:0.480000px;}
.wsa5{word-spacing:0.486000px;}
.ws45{word-spacing:0.528000px;}
.wscf{word-spacing:0.540000px;}
.wsa2{word-spacing:0.554400px;}
.ws3b{word-spacing:0.594000px;}
.ws25{word-spacing:0.627000px;}
.ws89{word-spacing:0.648000px;}
.ws50{word-spacing:0.660000px;}
.ws66{word-spacing:0.693000px;}
.ws68{word-spacing:0.702000px;}
.ws43{word-spacing:0.726000px;}
.ws53{word-spacing:0.792000px;}
.wsce{word-spacing:0.840000px;}
.ws2d{word-spacing:0.855000px;}
.ws5f{word-spacing:0.858000px;}
.wsca{word-spacing:0.900000px;}
.ws2e{word-spacing:0.912000px;}
.ws3d{word-spacing:0.924000px;}
.ws4f{word-spacing:0.990000px;}
.wsa9{word-spacing:1.016400px;}
.wsd0{word-spacing:1.020000px;}
.ws2a{word-spacing:1.026000px;}
.ws5c{word-spacing:1.056000px;}
.ws88{word-spacing:1.080000px;}
.ws7d{word-spacing:1.122000px;}
.ws96{word-spacing:1.134000px;}
.wscc{word-spacing:1.140000px;}
.ws46{word-spacing:1.188000px;}
.wsab{word-spacing:1.242000px;}
.ws74{word-spacing:1.254000px;}
.ws26{word-spacing:1.311000px;}
.ws4e{word-spacing:1.320000px;}
.ws60{word-spacing:1.386000px;}
.ws2b{word-spacing:1.425000px;}
.ws5b{word-spacing:1.452000px;}
.wsb3{word-spacing:1.500000px;}
.ws47{word-spacing:1.518000px;}
.ws4d{word-spacing:1.584000px;}
.ws5d{word-spacing:1.650000px;}
.ws51{word-spacing:1.716000px;}
.ws7c{word-spacing:1.848000px;}
.wsb7{word-spacing:2.880000px;}
.ws83{word-spacing:3.036000px;}
.ws86{word-spacing:3.102000px;}
.ws76{word-spacing:3.780000px;}
.ws75{word-spacing:3.888000px;}
.wsa3{word-spacing:3.960000px;}
.ws49{word-spacing:5.280000px;}
.wsb1{word-spacing:5.799000px;}
.wsd4{word-spacing:6.240000px;}
.ws54{word-spacing:7.524000px;}
.ws55{word-spacing:7.920000px;}
.ws95{word-spacing:8.250000px;}
.ws9f{word-spacing:13.530000px;}
.wsac{word-spacing:15.180000px;}
.ws91{word-spacing:15.510000px;}
.wsaf{word-spacing:15.774000px;}
.wsad{word-spacing:16.500000px;}
.wsa6{word-spacing:22.044000px;}
.ws7f{word-spacing:24.024000px;}
.ws39{word-spacing:35.904000px;}
.ws64{word-spacing:36.018000px;}
.ws85{word-spacing:36.666000px;}
.ws9c{word-spacing:59.472000px;}
.ws9b{word-spacing:61.488000px;}
.ws7a{word-spacing:63.000000px;}
.ws72{word-spacing:66.654000px;}
.ws8f{word-spacing:81.456000px;}
.ws9a{word-spacing:100.506000px;}
._20{margin-left:-10.650000px;}
._a{margin-left:-8.448000px;}
._b{margin-left:-7.260000px;}
._5{margin-left:-6.120627px;}
._1{margin-left:-4.668627px;}
._2{margin-left:-3.102000px;}
._0{margin-left:-1.139373px;}
._4{width:1.782000px;}
._3{width:3.366000px;}
._17{width:14.457492px;}
._16{width:15.461373px;}
._9{width:24.024000px;}
._1f{width:33.000000px;}
._8{width:47.712000px;}
._1e{width:64.932000px;}
._14{width:67.494000px;}
._13{width:69.006000px;}
._15{width:70.518000px;}
._1d{width:73.080000px;}
._12{width:74.928000px;}
._1c{width:78.960000px;}
._e{width:80.682000px;}
._10{width:84.672000px;}
._d{width:88.032000px;}
._f{width:91.266000px;}
._c{width:92.526000px;}
._11{width:94.542000px;}
._1b{width:107.646000px;}
._19{width:108.780000px;}
._1a{width:114.702000px;}
._18{width:119.994000px;}
._6{width:567.984000px;}
._7{width:675.094746px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs6{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:49.500000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:1.158000px;}
.y26{bottom:1.908000px;}
.y2b{bottom:2.658000px;}
.y21{bottom:3.408000px;}
.y24{bottom:4.158000px;}
.y2c{bottom:54.000000px;}
.y163{bottom:54.015000px;}
.y14e{bottom:54.150000px;}
.y1d5{bottom:54.555000px;}
.y9f{bottom:54.618000px;}
.ybc{bottom:54.810000px;}
.y192{bottom:54.969000px;}
.y206{bottom:54.993000px;}
.y5a{bottom:55.029000px;}
.y81{bottom:55.132500px;}
.y10f{bottom:55.149000px;}
.y233{bottom:55.165500px;}
.y227{bottom:55.617000px;}
.y12c{bottom:55.620000px;}
.y1a7{bottom:55.695000px;}
.y242{bottom:60.885000px;}
.y9e{bottom:68.874000px;}
.y191{bottom:69.225000px;}
.y205{bottom:69.249000px;}
.y226{bottom:69.873000px;}
.y12b{bottom:69.876000px;}
.y2a{bottom:72.000000px;}
.ybb{bottom:72.052500px;}
.y59{bottom:72.271500px;}
.y80{bottom:72.375000px;}
.y10e{bottom:72.391500px;}
.y232{bottom:72.408000px;}
.y1a6{bottom:72.937500px;}
.y241{bottom:76.635000px;}
.y30{bottom:79.500000px;}
.y9d{bottom:83.130000px;}
.y204{bottom:83.505000px;}
.y225{bottom:84.129000px;}
.y12a{bottom:84.132000px;}
.yba{bottom:89.295000px;}
.y58{bottom:89.514000px;}
.y7f{bottom:89.617500px;}
.y10d{bottom:89.634000px;}
.y231{bottom:89.650500px;}
.y28{bottom:90.000000px;}
.y1a5{bottom:90.180000px;}
.y240{bottom:92.385000px;}
.y9c{bottom:97.386000px;}
.y224{bottom:98.385000px;}
.y129{bottom:98.388000px;}
.y171{bottom:98.479500px;}
.y1df{bottom:98.893500px;}
.y2f{bottom:100.500000px;}
.y152{bottom:103.356000px;}
.y27{bottom:106.500000px;}
.yb9{bottom:106.537500px;}
.y57{bottom:106.756500px;}
.y144{bottom:106.860000px;}
.y10c{bottom:106.876500px;}
.y230{bottom:106.893000px;}
.y1a4{bottom:107.422500px;}
.y23f{bottom:108.135000px;}
.y9b{bottom:111.642000px;}
.y128{bottom:112.644000px;}
.y151{bottom:115.860000px;}
.y2e{bottom:118.500000px;}
.y25{bottom:121.500000px;}
.y172{bottom:122.356500px;}
.y170{bottom:122.482500px;}
.yb8{bottom:123.780000px;}
.y203{bottom:123.900000px;}
.y190{bottom:124.017000px;}
.y143{bottom:124.102500px;}
.y7e{bottom:124.119000px;}
.y22f{bottom:124.135500px;}
.y1a3{bottom:124.665000px;}
.y9a{bottom:125.898000px;}
.y127{bottom:126.900000px;}
.y1e0{bottom:128.262000px;}
.y1de{bottom:129.165000px;}
.y2d{bottom:135.000000px;}
.y56{bottom:136.951500px;}
.y23{bottom:138.000000px;}
.y99{bottom:140.154000px;}
.yb7{bottom:141.022500px;}
.y202{bottom:141.142500px;}
.y23e{bottom:141.150000px;}
.y18f{bottom:141.259500px;}
.y142{bottom:141.345000px;}
.y7d{bottom:141.361500px;}
.y22e{bottom:141.378000px;}
.y1a2{bottom:141.907500px;}
.y16f{bottom:144.469500px;}
.y173{bottom:150.118500px;}
.y55{bottom:154.194000px;}
.y98{bottom:154.410000px;}
.y16e{bottom:154.969500px;}
.y22{bottom:156.000000px;}
.yb6{bottom:158.265000px;}
.y23d{bottom:158.392500px;}
.y18e{bottom:158.502000px;}
.y201{bottom:158.568000px;}
.y141{bottom:158.587500px;}
.y223{bottom:158.602500px;}
.y7c{bottom:158.604000px;}
.y22d{bottom:158.620500px;}
.y1a1{bottom:159.150000px;}
.y1dd{bottom:165.169500px;}
.y1e1{bottom:165.537000px;}
.y20{bottom:172.500000px;}
.y150{bottom:172.860000px;}
.yb5{bottom:175.507500px;}
.y126{bottom:175.680000px;}
.y18d{bottom:175.744500px;}
.y200{bottom:175.810500px;}
.y140{bottom:175.830000px;}
.y222{bottom:175.845000px;}
.y7b{bottom:175.846500px;}
.y10b{bottom:175.863000px;}
.y23c{bottom:175.912500px;}
.y1a0{bottom:176.392500px;}
.y174{bottom:178.122000px;}
.y16d{bottom:178.237500px;}
.yb4{bottom:192.750000px;}
.y125{bottom:192.922500px;}
.y18c{bottom:192.987000px;}
.y1ff{bottom:193.053000px;}
.y13f{bottom:193.072500px;}
.y221{bottom:193.087500px;}
.y7a{bottom:193.089000px;}
.y22c{bottom:193.105500px;}
.y23b{bottom:193.155000px;}
.y19f{bottom:193.635000px;}
.y97{bottom:196.477500px;}
.y1dc{bottom:196.669500px;}
.y54{bottom:197.325000px;}
.y1e2{bottom:201.489000px;}
.y10a{bottom:201.735000px;}
.y1e{bottom:202.980000px;}
.y16c{bottom:205.233000px;}
.y175{bottom:205.768500px;}
.y1db{bottom:207.169500px;}
.yb3{bottom:209.992500px;}
.y124{bottom:210.165000px;}
.y18b{bottom:210.229500px;}
.y1fe{bottom:210.295500px;}
.y13e{bottom:210.315000px;}
.y220{bottom:210.330000px;}
.y79{bottom:210.331500px;}
.y22b{bottom:210.348000px;}
.y23a{bottom:210.397500px;}
.y19e{bottom:210.877500px;}
.y96{bottom:213.720000px;}
.y53{bottom:214.567500px;}
.y109{bottom:218.977500px;}
.yb2{bottom:227.235000px;}
.y123{bottom:227.407500px;}
.y18a{bottom:227.472000px;}
.y1fd{bottom:227.538000px;}
.y13d{bottom:227.557500px;}
.y21f{bottom:227.572500px;}
.y22a{bottom:227.590500px;}
.y239{bottom:227.640000px;}
.y19d{bottom:228.120000px;}
.y95{bottom:230.962500px;}
.y52{bottom:231.810000px;}
.y16b{bottom:232.228500px;}
.y176{bottom:233.793000px;}
.y14f{bottom:234.360000px;}
.y153{bottom:235.368000px;}
.y108{bottom:236.220000px;}
.y1e3{bottom:240.559500px;}
.y1da{bottom:243.184500px;}
.yb1{bottom:244.477500px;}
.y122{bottom:244.650000px;}
.y189{bottom:244.714500px;}
.y1fc{bottom:244.780500px;}
.y13c{bottom:244.800000px;}
.y21e{bottom:244.815000px;}
.y78{bottom:244.833000px;}
.y238{bottom:244.882500px;}
.y19c{bottom:245.362500px;}
.y94{bottom:248.205000px;}
.y51{bottom:249.052500px;}
.y107{bottom:253.462500px;}
.y16a{bottom:260.725500px;}
.yb0{bottom:261.720000px;}
.y121{bottom:261.892500px;}
.y188{bottom:261.957000px;}
.y1fb{bottom:262.023000px;}
.y13b{bottom:262.042500px;}
.y21d{bottom:262.057500px;}
.y77{bottom:262.075500px;}
.y237{bottom:262.125000px;}
.y177{bottom:262.174500px;}
.y19b{bottom:262.605000px;}
.y93{bottom:265.447500px;}
.y50{bottom:266.295000px;}
.y106{bottom:270.705000px;}
.y14{bottom:276.195000px;}
.y1e4{bottom:278.464500px;}
.yaf{bottom:278.962500px;}
.y120{bottom:279.157500px;}
.y1d9{bottom:279.189000px;}
.y1fa{bottom:279.265500px;}
.y13a{bottom:279.285000px;}
.y21c{bottom:279.300000px;}
.y76{bottom:279.318000px;}
.y236{bottom:279.367500px;}
.y19a{bottom:279.847500px;}
.y92{bottom:282.690000px;}
.y4f{bottom:283.537500px;}
.y169{bottom:287.721000px;}
.y187{bottom:287.829000px;}
.y105{bottom:287.947500px;}
.y178{bottom:289.191000px;}
.y13{bottom:291.172500px;}
.yae{bottom:296.205000px;}
.y11f{bottom:296.400000px;}
.y1f9{bottom:296.508000px;}
.y139{bottom:296.527500px;}
.y21b{bottom:296.542500px;}
.y75{bottom:296.560500px;}
.y235{bottom:296.610000px;}
.y199{bottom:297.090000px;}
.y91{bottom:299.932500px;}
.y4e{bottom:300.780000px;}
.y12{bottom:306.177750px;}
.y168{bottom:310.222500px;}
.yad{bottom:313.447500px;}
.y11e{bottom:313.642500px;}
.y1f8{bottom:313.750500px;}
.y21a{bottom:313.785000px;}
.y74{bottom:313.803000px;}
.y104{bottom:313.819500px;}
.y234{bottom:313.852500px;}
.y198{bottom:314.332500px;}
.y1d8{bottom:315.193500px;}
.y1e5{bottom:315.288000px;}
.y90{bottom:317.175000px;}
.y179{bottom:317.215500px;}
.y4d{bottom:318.022500px;}
.y25e{bottom:319.635000px;}
.y167{bottom:320.722500px;}
.y11{bottom:321.183000px;}
.yac{bottom:330.690000px;}
.y186{bottom:330.960000px;}
.y1f7{bottom:330.993000px;}
.y219{bottom:331.027500px;}
.y138{bottom:331.029000px;}
.y73{bottom:331.045500px;}
.y103{bottom:331.062000px;}
.y11d{bottom:331.095000px;}
.y197{bottom:331.575000px;}
.y8f{bottom:334.417500px;}
.y4c{bottom:335.265000px;}
.y25d{bottom:335.385000px;}
.y10{bottom:336.188250px;}
.y166{bottom:343.969500px;}
.y17a{bottom:344.736000px;}
.yab{bottom:347.932500px;}
.y185{bottom:348.202500px;}
.y1f6{bottom:348.235500px;}
.y218{bottom:348.270000px;}
.y137{bottom:348.271500px;}
.y72{bottom:348.288000px;}
.y102{bottom:348.304500px;}
.y11c{bottom:348.337500px;}
.y196{bottom:348.817500px;}
.y25c{bottom:351.135000px;}
.yf{bottom:351.193500px;}
.y8e{bottom:351.741000px;}
.y1e6{bottom:351.975000px;}
.y4b{bottom:352.507500px;}
.y1d7{bottom:354.190500px;}
.yaa{bottom:365.175000px;}
.y184{bottom:365.445000px;}
.y1f5{bottom:365.478000px;}
.y217{bottom:365.512500px;}
.y136{bottom:365.514000px;}
.y71{bottom:365.530500px;}
.y101{bottom:365.547000px;}
.y11b{bottom:365.580000px;}
.y195{bottom:366.060000px;}
.ye{bottom:366.198750px;}
.y25b{bottom:366.885000px;}
.y8d{bottom:368.983500px;}
.y4a{bottom:369.750000px;}
.y17b{bottom:372.256500px;}
.y165{bottom:373.968000px;}
.y229{bottom:374.160000px;}
.ya9{bottom:382.417500px;}
.y25a{bottom:382.635000px;}
.y183{bottom:382.687500px;}
.y1f4{bottom:382.720500px;}
.y216{bottom:382.755000px;}
.y135{bottom:382.756500px;}
.y70{bottom:382.773000px;}
.y100{bottom:382.789500px;}
.y11a{bottom:382.822500px;}
.y194{bottom:383.302500px;}
.y8c{bottom:386.226000px;}
.y49{bottom:386.992500px;}
.y1e7{bottom:389.670000px;}
.y1d6{bottom:390.195000px;}
.y14d{bottom:391.402500px;}
.yd{bottom:396.195000px;}
.y259{bottom:398.385000px;}
.ya8{bottom:399.660000px;}
.y182{bottom:399.930000px;}
.y1f3{bottom:399.963000px;}
.y215{bottom:399.997500px;}
.y6f{bottom:400.015500px;}
.yff{bottom:400.032000px;}
.y119{bottom:400.065000px;}
.y193{bottom:400.545000px;}
.y17c{bottom:400.858500px;}
.y164{bottom:402.465000px;}
.y8b{bottom:403.468500px;}
.y48{bottom:404.235000px;}
.y258{bottom:414.135000px;}
.y181{bottom:417.172500px;}
.y214{bottom:417.240000px;}
.y6e{bottom:417.258000px;}
.yfe{bottom:417.274500px;}
.y228{bottom:417.291000px;}
.y118{bottom:417.307500px;}
.y8a{bottom:420.711000px;}
.y47{bottom:421.477500px;}
.y1f2{bottom:425.835000px;}
.y257{bottom:429.885000px;}
.yc{bottom:432.141975px;}
.y180{bottom:434.415000px;}
.y213{bottom:434.482500px;}
.y6d{bottom:434.500500px;}
.yfd{bottom:434.517000px;}
.y14c{bottom:434.533500px;}
.y117{bottom:434.550000px;}
.y46{bottom:438.720000px;}
.y1f1{bottom:443.077500px;}
.y256{bottom:445.635000px;}
.yb{bottom:447.147225px;}
.y1c8{bottom:449.662500px;}
.y17f{bottom:451.657500px;}
.y212{bottom:451.725000px;}
.y6c{bottom:451.743000px;}
.yfc{bottom:451.759500px;}
.y14b{bottom:451.776000px;}
.y116{bottom:451.792500px;}
.yd7{bottom:451.845000px;}
.y15b{bottom:454.252500px;}
.y89{bottom:455.212500px;}
.y45{bottom:455.962500px;}
.y1a8{bottom:456.135000px;}
.y1f0{bottom:460.320000px;}
.y255{bottom:461.385000px;}
.ya{bottom:462.152475px;}
.y1c7{bottom:466.905000px;}
.ybd{bottom:466.965000px;}
.y17e{bottom:468.900000px;}
.y211{bottom:468.967500px;}
.y6b{bottom:468.985500px;}
.yfb{bottom:469.002000px;}
.y14a{bottom:469.018500px;}
.y115{bottom:469.035000px;}
.y15a{bottom:471.495000px;}
.y88{bottom:472.455000px;}
.y44{bottom:473.341500px;}
.y254{bottom:477.135000px;}
.y9{bottom:477.157725px;}
.y1ef{bottom:477.562500px;}
.y1c6{bottom:484.147500px;}
.y17d{bottom:486.142500px;}
.y210{bottom:486.210000px;}
.y134{bottom:486.228000px;}
.yfa{bottom:486.244500px;}
.y149{bottom:486.261000px;}
.y114{bottom:486.277500px;}
.y159{bottom:488.737500px;}
.y87{bottom:489.697500px;}
.y43{bottom:490.584000px;}
.y8{bottom:492.162975px;}
.y253{bottom:492.885000px;}
.y1ee{bottom:494.805000px;}
.y6a{bottom:494.857500px;}
.ye4{bottom:495.559500px;}
.y1b5{bottom:499.846500px;}
.y1c5{bottom:501.390000px;}
.y20f{bottom:503.452500px;}
.y133{bottom:503.470500px;}
.yf9{bottom:503.487000px;}
.y148{bottom:503.503500px;}
.y113{bottom:503.520000px;}
.y158{bottom:505.980000px;}
.y86{bottom:506.940000px;}
.y7{bottom:507.168225px;}
.y42{bottom:507.826500px;}
.y252{bottom:508.635000px;}
.ycb{bottom:511.425000px;}
.y1ed{bottom:512.047500px;}
.y1c4{bottom:518.632500px;}
.y20e{bottom:520.695000px;}
.y132{bottom:520.713000px;}
.y147{bottom:520.746000px;}
.y112{bottom:520.762500px;}
.y6{bottom:522.173475px;}
.y157{bottom:523.222500px;}
.ye3{bottom:523.636500px;}
.y85{bottom:524.182500px;}
.y251{bottom:524.385000px;}
.y41{bottom:525.069000px;}
.ye5{bottom:525.579000px;}
.yca{bottom:528.676500px;}
.y1ec{bottom:529.290000px;}
.yf8{bottom:529.359000px;}
.y1b6{bottom:529.866000px;}
.y1b4{bottom:530.149500px;}
.ycc{bottom:535.302000px;}
.y1c3{bottom:535.875000px;}
.y5{bottom:537.178725px;}
.y20d{bottom:537.937500px;}
.y69{bottom:537.988500px;}
.y111{bottom:538.005000px;}
.yc9{bottom:539.176500px;}
.y250{bottom:540.135000px;}
.y156{bottom:540.465000px;}
.y84{bottom:541.425000px;}
.y40{bottom:542.311500px;}
.y1eb{bottom:546.532500px;}
.y4{bottom:552.183975px;}
.y1c2{bottom:553.117500px;}
.y20c{bottom:555.180000px;}
.y131{bottom:555.214500px;}
.y68{bottom:555.231000px;}
.y110{bottom:555.247500px;}
.y24f{bottom:555.885000px;}
.y155{bottom:557.707500px;}
.yc8{bottom:558.181500px;}
.y83{bottom:558.667500px;}
.y3f{bottom:559.554000px;}
.ye2{bottom:559.903500px;}
.ye6{bottom:560.974500px;}
.ycd{bottom:563.442000px;}
.y1ea{bottom:563.775000px;}
.y1b7{bottom:564.159000px;}
.y1b3{bottom:566.406000px;}
.y3{bottom:567.189225px;}
.yc7{bottom:568.681500px;}
.y1c1{bottom:570.360000px;}
.y24e{bottom:571.635000px;}
.y20b{bottom:572.422500px;}
.y130{bottom:572.457000px;}
.y67{bottom:572.473500px;}
.yf7{bottom:572.490000px;}
.y154{bottom:574.950000px;}
.y82{bottom:575.910000px;}
.y3e{bottom:576.796500px;}
.y1e9{bottom:581.017500px;}
.y2{bottom:582.194475px;}
.y24d{bottom:587.385000px;}
.y1c0{bottom:587.602500px;}
.y20a{bottom:589.665000px;}
.y12f{bottom:589.699500px;}
.y66{bottom:589.716000px;}
.yf6{bottom:589.732500px;}
.yce{bottom:591.067500px;}
.yc6{bottom:591.928500px;}
.y1b2{bottom:592.162500px;}
.y3d{bottom:594.039000px;}
.ye1{bottom:596.160000px;}
.ye7{bottom:596.853000px;}
.y1e8{bottom:598.329000px;}
.y1b8{bottom:598.609500px;}
.y1b1{bottom:602.662500px;}
.y24c{bottom:603.135000px;}
.y1bf{bottom:604.845000px;}
.y209{bottom:606.907500px;}
.y65{bottom:606.958500px;}
.yf5{bottom:606.975000px;}
.y3c{bottom:611.281500px;}
.y1{bottom:612.195000px;}
.y12e{bottom:615.571500px;}
.y24b{bottom:618.885000px;}
.yc5{bottom:618.924000px;}
.ycf{bottom:619.092000px;}
.y208{bottom:624.150000px;}
.y146{bottom:624.201000px;}
.yf4{bottom:624.217500px;}
.ye0{bottom:628.174500px;}
.y3b{bottom:628.524000px;}
.y1b0{bottom:630.172500px;}
.ya1{bottom:630.699000px;}
.ye8{bottom:632.647500px;}
.y12d{bottom:632.814000px;}
.y64{bottom:632.830500px;}
.y15c{bottom:633.375000px;}
.y1b9{bottom:634.309500px;}
.y24a{bottom:634.635000px;}
.ydf{bottom:638.674500px;}
.y1af{bottom:640.672500px;}
.y207{bottom:641.392500px;}
.y145{bottom:641.443500px;}
.yf3{bottom:641.460000px;}
.ya0{bottom:644.955000px;}
.y3a{bottom:645.766500px;}
.yd0{bottom:647.116500px;}
.yc4{bottom:647.421000px;}
.y63{bottom:650.073000px;}
.y249{bottom:650.385000px;}
.y1d{bottom:652.593000px;}
.y1c9{bottom:657.135000px;}
.yf2{bottom:658.702500px;}
.y39{bottom:663.009000px;}
.y1ae{bottom:663.919500px;}
.yde{bottom:666.184500px;}
.y1c{bottom:666.849000px;}
.y62{bottom:667.315500px;}
.ye9{bottom:668.284500px;}
.y1ba{bottom:668.445000px;}
.y1ad{bottom:672.918000px;}
.y248{bottom:674.760000px;}
.yd1{bottom:675.120000px;}
.yc3{bottom:675.918000px;}
.yf1{bottom:675.945000px;}
.y38{bottom:680.251500px;}
.y1b{bottom:681.105000px;}
.y61{bottom:684.558000px;}
.yf0{bottom:693.187500px;}
.ya6{bottom:696.396000px;}
.y1cf{bottom:696.738000px;}
.y37{bottom:697.494000px;}
.ydd{bottom:698.178000px;}
.y15f{bottom:699.075000px;}
.y1a{bottom:699.105000px;}
.y60{bottom:701.800500px;}
.yd2{bottom:702.136500px;}
.yc2{bottom:702.913500px;}
.y1ac{bottom:703.189500px;}
.y1bb{bottom:703.767000px;}
.yea{bottom:704.541000px;}
.ydc{bottom:708.678000px;}
.yef{bottom:710.430000px;}
.y36{bottom:714.736500px;}
.y19{bottom:717.105000px;}
.y5f{bottom:719.043000px;}
.y1d0{bottom:719.722500px;}
.y1ce{bottom:719.901000px;}
.y160{bottom:722.583000px;}
.yee{bottom:727.672500px;}
.ya4{bottom:728.700000px;}
.yc1{bottom:729.909000px;}
.yd3{bottom:730.161000px;}
.y35{bottom:731.979000px;}
.y247{bottom:735.135000px;}
.ydb{bottom:736.188000px;}
.y1bc{bottom:739.330500px;}
.y1ab{bottom:739.698000px;}
.yeb{bottom:740.304000px;}
.y1cd{bottom:742.402500px;}
.y1d1{bottom:742.833000px;}
.y5e{bottom:744.915000px;}
.yda{bottom:746.688000px;}
.y34{bottom:749.221500px;}
.y161{bottom:750.543000px;}
.y246{bottom:750.885000px;}
.y15e{bottom:754.575000px;}
.yc0{bottom:756.904500px;}
.ya3{bottom:757.200000px;}
.yd4{bottom:757.681500px;}
.y18{bottom:762.105000px;}
.y5d{bottom:762.157500px;}
.y1d2{bottom:765.933000px;}
.y1cc{bottom:766.405500px;}
.y33{bottom:766.464000px;}
.y245{bottom:766.635000px;}
.y1aa{bottom:773.193000px;}
.y1bd{bottom:773.602500px;}
.yd9{bottom:774.198000px;}
.yec{bottom:776.067000px;}
.y5c{bottom:779.400000px;}
.y244{bottom:782.385000px;}
.y32{bottom:783.706500px;}
.ya2{bottom:784.200000px;}
.yd5{bottom:785.202000px;}
.y17{bottom:786.105000px;}
.ybf{bottom:786.903000px;}
.y1d3{bottom:789.600000px;}
.y1cb{bottom:790.408500px;}
.ya5{bottom:793.404000px;}
.y5b{bottom:796.642500px;}
.y243{bottom:798.135000px;}
.y1be{bottom:808.525500px;}
.y15d{bottom:810.075000px;}
.y16{bottom:810.105000px;}
.y1a9{bottom:810.195000px;}
.yd8{bottom:811.200000px;}
.ya7{bottom:811.404000px;}
.yed{bottom:812.124000px;}
.y1ca{bottom:812.910000px;}
.y1d4{bottom:813.088500px;}
.yd6{bottom:813.720000px;}
.y31{bottom:813.885000px;}
.ybe{bottom:815.400000px;}
.y162{bottom:815.655000px;}
.y15{bottom:861.105000px;}
.y1f{bottom:924.000000px;}
.hb{height:10.500000px;}
.ha{height:12.000000px;}
.hc{height:13.500000px;}
.h7{height:15.000000px;}
.h9{height:16.500000px;}
.h12{height:44.814000px;}
.h17{height:45.528000px;}
.h6{height:47.085938px;}
.h8{height:47.109375px;}
.h2{height:51.216000px;}
.h15{height:52.032000px;}
.h5{height:57.618000px;}
.h14{height:58.536000px;}
.h1{height:60.819000px;}
.h19{height:64.020000px;}
.h1a{height:65.040000px;}
.hd{height:70.422000px;}
.h16{height:70.535400px;}
.h11{height:70.751400px;}
.h18{height:70.799400px;}
.h13{height:70.985400px;}
.he{height:70.998000px;}
.h10{height:71.075400px;}
.hf{height:71.544000px;}
.h4{height:76.824000px;}
.h3{height:102.432000px;}
.h0{height:892.500000px;}
.w5{width:174.000000px;}
.wb{width:187.500000px;}
.w9{width:199.500000px;}
.w1{width:205.500000px;}
.wa{width:208.500000px;}
.w7{width:210.000000px;}
.w8{width:232.500000px;}
.w6{width:235.500000px;}
.w4{width:240.000000px;}
.w2{width:241.500000px;}
.w3{width:244.500000px;}
.w0{width:636.000000px;}
.x0{left:0.000000px;}
.x14{left:1.500000px;}
.x5{left:4.500000px;}
.x10{left:46.691700px;}
.x9{left:48.564150px;}
.xe{left:54.384150px;}
.xd{left:57.708300px;}
.xa{left:61.500000px;}
.x8{left:63.000000px;}
.xc{left:64.500000px;}
.xf{left:67.500000px;}
.x1{left:74.700000px;}
.x16{left:75.915000px;}
.x24{left:78.838500px;}
.xb{left:82.704300px;}
.x31{left:87.664500px;}
.x34{left:90.405000px;}
.x57{left:93.774000px;}
.x2{left:97.199325px;}
.x17{left:98.404500px;}
.x6{left:100.500000px;}
.x55{left:101.607000px;}
.x4b{left:104.211000px;}
.x59{left:106.479000px;}
.x46{left:109.209000px;}
.x1e{left:112.323000px;}
.x40{left:114.630000px;}
.x43{left:117.030000px;}
.x12{left:118.356150px;}
.x35{left:120.319500px;}
.x23{left:122.361000px;}
.x63{left:123.937500px;}
.x19{left:125.187000px;}
.x26{left:129.207000px;}
.x11{left:130.500000px;}
.x5b{left:131.679000px;}
.x49{left:132.792000px;}
.x6c{left:137.484000px;}
.x7{left:142.680150px;}
.x6b{left:150.787500px;}
.x36{left:156.072000px;}
.x6d{left:158.526000px;}
.x44{left:160.008000px;}
.x1d{left:167.626500px;}
.x69{left:173.205000px;}
.x6a{left:174.685500px;}
.x20{left:176.278500px;}
.x64{left:177.550500px;}
.x22{left:183.124500px;}
.x5c{left:186.951000px;}
.x45{left:189.891000px;}
.x32{left:192.633000px;}
.x33{left:194.176500px;}
.x54{left:195.855000px;}
.x38{left:200.245500px;}
.x37{left:208.194000px;}
.x27{left:210.235500px;}
.x30{left:212.415000px;}
.x48{left:218.010000px;}
.x21{left:224.914500px;}
.x25{left:226.678500px;}
.x58{left:231.439500px;}
.x1b{left:244.875000px;}
.x5a{left:248.607000px;}
.x1a{left:249.879000px;}
.x1c{left:254.430000px;}
.x47{left:256.450500px;}
.x1f{left:257.590500px;}
.x65{left:260.763000px;}
.x4a{left:265.060500px;}
.x42{left:269.154000px;}
.x56{left:273.702000px;}
.x39{left:290.997000px;}
.x4{left:294.030000px;}
.x28{left:299.349000px;}
.x3e{left:302.694000px;}
.x74{left:306.261000px;}
.x53{left:308.583000px;}
.x52{left:310.714500px;}
.x2f{left:312.064500px;}
.x5d{left:313.780500px;}
.x2e{left:316.054500px;}
.x2d{left:319.561500px;}
.x51{left:321.844500px;}
.x2c{left:325.557000px;}
.x50{left:329.268000px;}
.x68{left:330.672000px;}
.x13{left:333.000000px;}
.x15{left:334.500000px;}
.x62{left:336.996000px;}
.x73{left:339.514500px;}
.x61{left:344.251500px;}
.x18{left:348.795000px;}
.x2b{left:353.487000px;}
.x67{left:357.688500px;}
.x4f{left:359.644500px;}
.x4e{left:362.910000px;}
.x41{left:364.995000px;}
.x72{left:368.148000px;}
.x60{left:370.260000px;}
.x71{left:374.280000px;}
.x70{left:377.419500px;}
.x2a{left:381.984000px;}
.x3f{left:386.610000px;}
.x3d{left:393.456000px;}
.x6f{left:408.321000px;}
.x3c{left:421.984500px;}
.x3b{left:427.119000px;}
.x3{left:429.075000px;}
.x5f{left:442.783500px;}
.x4d{left:457.767000px;}
.x66{left:471.655500px;}
.x3a{left:518.616000px;}
.x29{left:522.988500px;}
.x4c{left:526.017000px;}
.x6e{left:527.569500px;}
.x5e{left:532.779000px;}
@media print{
.v3{vertical-align:-19.360000pt;}
.v2{vertical-align:-1.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.360000pt;}
.lsc{letter-spacing:-4.712000pt;}
.ls19{letter-spacing:-4.661333pt;}
.ls10{letter-spacing:-4.357333pt;}
.lse{letter-spacing:-2.837333pt;}
.ls1e{letter-spacing:-2.560000pt;}
.ls23{letter-spacing:-2.368000pt;}
.ls24{letter-spacing:-2.304000pt;}
.ls18{letter-spacing:-2.128000pt;}
.ls66{letter-spacing:-2.053333pt;}
.ls22{letter-spacing:-1.856000pt;}
.ls14{letter-spacing:-1.773333pt;}
.ls69{letter-spacing:-1.760000pt;}
.ls25{letter-spacing:-1.728000pt;}
.ls20{letter-spacing:-1.536000pt;}
.ls6b{letter-spacing:-1.525333pt;}
.ls4e{letter-spacing:-1.466667pt;}
.ls60{letter-spacing:-1.440000pt;}
.ls17{letter-spacing:-1.418667pt;}
.ls5c{letter-spacing:-1.408000pt;}
.ls1a{letter-spacing:-1.317333pt;}
.ls4f{letter-spacing:-1.290667pt;}
.lsf{letter-spacing:-1.266667pt;}
.ls6a{letter-spacing:-1.232000pt;}
.ls27{letter-spacing:-1.216000pt;}
.ls5e{letter-spacing:-1.200000pt;}
.ls52{letter-spacing:-1.173333pt;}
.ls5f{letter-spacing:-1.152000pt;}
.ls68{letter-spacing:-1.056000pt;}
.ls1f{letter-spacing:-1.024000pt;}
.ls32{letter-spacing:-0.997333pt;}
.lsd{letter-spacing:-0.962667pt;}
.ls31{letter-spacing:-0.938667pt;}
.ls9{letter-spacing:-0.912000pt;}
.ls46{letter-spacing:-0.880000pt;}
.lsb{letter-spacing:-0.861333pt;}
.ls53{letter-spacing:-0.821333pt;}
.ls21{letter-spacing:-0.768000pt;}
.ls58{letter-spacing:-0.762667pt;}
.ls1d{letter-spacing:-0.760000pt;}
.ls33{letter-spacing:-0.704000pt;}
.ls29{letter-spacing:-0.682667pt;}
.ls15{letter-spacing:-0.658667pt;}
.ls5a{letter-spacing:-0.645333pt;}
.ls7{letter-spacing:-0.608000pt;}
.ls30{letter-spacing:-0.586667pt;}
.ls11{letter-spacing:-0.557333pt;}
.ls26{letter-spacing:-0.528000pt;}
.ls13{letter-spacing:-0.506667pt;}
.ls37{letter-spacing:-0.469333pt;}
.ls36{letter-spacing:-0.410667pt;}
.ls74{letter-spacing:-0.384000pt;}
.ls73{letter-spacing:-0.369600pt;}
.ls39{letter-spacing:-0.352000pt;}
.lsa{letter-spacing:-0.304000pt;}
.ls34{letter-spacing:-0.293333pt;}
.ls78{letter-spacing:-0.256000pt;}
.ls1c{letter-spacing:-0.253333pt;}
.ls61{letter-spacing:-0.240000pt;}
.ls38{letter-spacing:-0.234667pt;}
.ls88{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.202667pt;}
.ls5d{letter-spacing:-0.192000pt;}
.ls41{letter-spacing:-0.176000pt;}
.ls8a{letter-spacing:-0.160000pt;}
.ls16{letter-spacing:-0.152000pt;}
.ls54{letter-spacing:-0.149333pt;}
.ls4d{letter-spacing:-0.144000pt;}
.ls64{letter-spacing:-0.128000pt;}
.ls67{letter-spacing:-0.123200pt;}
.ls89{letter-spacing:-0.120000pt;}
.ls42{letter-spacing:-0.117333pt;}
.ls1b{letter-spacing:-0.101333pt;}
.ls2f{letter-spacing:-0.058667pt;}
.ls7b{letter-spacing:-0.053333pt;}
.ls28{letter-spacing:-0.050667pt;}
.ls4c{letter-spacing:-0.048000pt;}
.ls3a{letter-spacing:-0.042667pt;}
.ls6c{letter-spacing:-0.037333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls79{letter-spacing:0.044000pt;}
.ls77{letter-spacing:0.048000pt;}
.ls4{letter-spacing:0.050667pt;}
.ls2b{letter-spacing:0.058667pt;}
.ls4b{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.101333pt;}
.ls3c{letter-spacing:0.117333pt;}
.ls5b{letter-spacing:0.144000pt;}
.ls7d{letter-spacing:0.160000pt;}
.ls43{letter-spacing:0.176000pt;}
.ls65{letter-spacing:0.192000pt;}
.ls47{letter-spacing:0.213333pt;}
.ls3b{letter-spacing:0.234667pt;}
.ls7f{letter-spacing:0.266667pt;}
.ls2d{letter-spacing:0.293333pt;}
.ls7e{letter-spacing:0.320000pt;}
.ls3f{letter-spacing:0.352000pt;}
.ls84{letter-spacing:0.360000pt;}
.ls83{letter-spacing:0.373333pt;}
.ls82{letter-spacing:0.400000pt;}
.ls2a{letter-spacing:0.410667pt;}
.ls81{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.456000pt;}
.ls3d{letter-spacing:0.469333pt;}
.ls3{letter-spacing:0.506667pt;}
.ls44{letter-spacing:0.528000pt;}
.ls7c{letter-spacing:0.533333pt;}
.ls4a{letter-spacing:0.576000pt;}
.ls3e{letter-spacing:0.586667pt;}
.ls59{letter-spacing:0.645333pt;}
.ls0{letter-spacing:0.658667pt;}
.ls8b{letter-spacing:0.680000pt;}
.ls40{letter-spacing:0.704000pt;}
.ls71{letter-spacing:0.720000pt;}
.ls56{letter-spacing:0.762667pt;}
.ls72{letter-spacing:0.768000pt;}
.ls2e{letter-spacing:0.821333pt;}
.ls80{letter-spacing:0.853333pt;}
.ls49{letter-spacing:0.880000pt;}
.ls85{letter-spacing:0.906667pt;}
.ls86{letter-spacing:0.920000pt;}
.ls7a{letter-spacing:0.960000pt;}
.ls48{letter-spacing:0.997333pt;}
.ls51{letter-spacing:1.056000pt;}
.ls62{letter-spacing:1.114667pt;}
.ls2c{letter-spacing:1.173333pt;}
.ls63{letter-spacing:1.232000pt;}
.ls1{letter-spacing:1.317333pt;}
.ls45{letter-spacing:1.408000pt;}
.ls35{letter-spacing:1.466667pt;}
.ls50{letter-spacing:1.530667pt;}
.ls8c{letter-spacing:1.560000pt;}
.ls87{letter-spacing:1.600000pt;}
.ls55{letter-spacing:1.978667pt;}
.ls6d{letter-spacing:3.322667pt;}
.ls6e{letter-spacing:4.629333pt;}
.ls76{letter-spacing:16.266667pt;}
.ls6f{letter-spacing:16.605867pt;}
.ls57{letter-spacing:21.354667pt;}
.ls70{letter-spacing:29.333333pt;}
.ls75{letter-spacing:29.370667pt;}
.ls6{letter-spacing:42.410667pt;}
.ws19{word-spacing:-20.309333pt;}
.ws18{word-spacing:-18.773333pt;}
.ws78{word-spacing:-16.074667pt;}
.ws1b{word-spacing:-16.000000pt;}
.ws8c{word-spacing:-15.898667pt;}
.ws8b{word-spacing:-15.781333pt;}
.ws8a{word-spacing:-15.546667pt;}
.wsae{word-spacing:-15.488000pt;}
.ws9e{word-spacing:-15.429333pt;}
.wsa7{word-spacing:-15.370667pt;}
.ws1c{word-spacing:-15.232000pt;}
.ws57{word-spacing:-15.194667pt;}
.ws34{word-spacing:-15.077333pt;}
.ws80{word-spacing:-15.018667pt;}
.ws31{word-spacing:-14.960000pt;}
.wsc8{word-spacing:-14.933333pt;}
.ws61{word-spacing:-14.901333pt;}
.ws56{word-spacing:-14.842667pt;}
.ws6d{word-spacing:-14.784000pt;}
.ws35{word-spacing:-14.725333pt;}
.ws32{word-spacing:-14.666667pt;}
.ws33{word-spacing:-14.608000pt;}
.ws63{word-spacing:-14.549333pt;}
.ws8d{word-spacing:-14.490667pt;}
.ws1a{word-spacing:-14.464000pt;}
.ws58{word-spacing:-14.432000pt;}
.ws37{word-spacing:-14.373333pt;}
.ws36{word-spacing:-14.256000pt;}
.wsc4{word-spacing:-14.240000pt;}
.ws38{word-spacing:-14.197333pt;}
.wsbb{word-spacing:-14.186667pt;}
.ws1d{word-spacing:-14.144000pt;}
.ws8e{word-spacing:-14.138667pt;}
.ws7e{word-spacing:-14.021333pt;}
.wsb8{word-spacing:-13.920000pt;}
.ws93{word-spacing:-13.904000pt;}
.ws79{word-spacing:-13.845333pt;}
.wsbe{word-spacing:-13.706667pt;}
.ws1f{word-spacing:-13.696000pt;}
.ws84{word-spacing:-13.669333pt;}
.ws1e{word-spacing:-13.632000pt;}
.ws77{word-spacing:-13.493333pt;}
.ws6e{word-spacing:-13.376000pt;}
.wsb2{word-spacing:-13.333333pt;}
.wsc0{word-spacing:-13.120000pt;}
.ws94{word-spacing:-12.906667pt;}
.wsa1{word-spacing:-12.720000pt;}
.ws17{word-spacing:-12.666667pt;}
.ws90{word-spacing:-12.613333pt;}
.ws13{word-spacing:-12.565333pt;}
.wsc{word-spacing:-12.514667pt;}
.wsf{word-spacing:-12.464000pt;}
.ws14{word-spacing:-12.413333pt;}
.wsb{word-spacing:-12.362667pt;}
.ws0{word-spacing:-12.312000pt;}
.ws65{word-spacing:-12.240000pt;}
.ws70{word-spacing:-12.192000pt;}
.ws11{word-spacing:-12.160000pt;}
.ws8{word-spacing:-12.109333pt;}
.wsa8{word-spacing:-12.096000pt;}
.ws15{word-spacing:-12.058667pt;}
.wsa{word-spacing:-12.008000pt;}
.ws22{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.906667pt;}
.ws2{word-spacing:-11.805333pt;}
.ws1{word-spacing:-11.754667pt;}
.ws4{word-spacing:-11.704000pt;}
.wsc7{word-spacing:-11.600000pt;}
.wsc6{word-spacing:-11.560000pt;}
.ws21{word-spacing:-11.472000pt;}
.ws6{word-spacing:-11.400000pt;}
.ws12{word-spacing:-11.349333pt;}
.wsd{word-spacing:-11.248000pt;}
.wsba{word-spacing:-10.960000pt;}
.wsc3{word-spacing:-10.920000pt;}
.ws9{word-spacing:-10.893333pt;}
.wsc9{word-spacing:-10.880000pt;}
.wsc5{word-spacing:-10.680000pt;}
.ws97{word-spacing:-10.666667pt;}
.ws3a{word-spacing:-10.624000pt;}
.wse{word-spacing:-10.538667pt;}
.wsb0{word-spacing:-10.410667pt;}
.wsbc{word-spacing:-10.400000pt;}
.wsbd{word-spacing:-10.360000pt;}
.ws20{word-spacing:-10.272000pt;}
.ws62{word-spacing:-10.266667pt;}
.ws92{word-spacing:-10.143467pt;}
.wsb6{word-spacing:-10.000000pt;}
.wsa0{word-spacing:-9.897067pt;}
.wsc1{word-spacing:-9.880000pt;}
.ws5{word-spacing:-9.829333pt;}
.ws6f{word-spacing:-9.728000pt;}
.ws71{word-spacing:-9.333333pt;}
.ws99{word-spacing:-9.296000pt;}
.ws98{word-spacing:-9.184000pt;}
.ws7{word-spacing:-8.309333pt;}
.ws10{word-spacing:-8.005333pt;}
.ws3{word-spacing:-7.954667pt;}
.ws30{word-spacing:-6.826667pt;}
.wsb9{word-spacing:-1.173333pt;}
.ws6c{word-spacing:-0.768000pt;}
.ws41{word-spacing:-0.762667pt;}
.ws40{word-spacing:-0.704000pt;}
.ws2f{word-spacing:-0.658667pt;}
.ws59{word-spacing:-0.645333pt;}
.wscd{word-spacing:-0.640000pt;}
.ws5a{word-spacing:-0.586667pt;}
.ws27{word-spacing:-0.557333pt;}
.wsb5{word-spacing:-0.533333pt;}
.ws4c{word-spacing:-0.528000pt;}
.ws2c{word-spacing:-0.506667pt;}
.ws44{word-spacing:-0.469333pt;}
.ws28{word-spacing:-0.456000pt;}
.ws69{word-spacing:-0.432000pt;}
.wsd2{word-spacing:-0.426667pt;}
.ws73{word-spacing:-0.410667pt;}
.ws24{word-spacing:-0.354667pt;}
.ws4a{word-spacing:-0.352000pt;}
.ws52{word-spacing:-0.293333pt;}
.wsaa{word-spacing:-0.288000pt;}
.wsd1{word-spacing:-0.266667pt;}
.ws6b{word-spacing:-0.240000pt;}
.ws4b{word-spacing:-0.234667pt;}
.wsa4{word-spacing:-0.192000pt;}
.ws3c{word-spacing:-0.176000pt;}
.ws29{word-spacing:-0.152000pt;}
.ws5e{word-spacing:-0.117333pt;}
.wsbf{word-spacing:-0.106667pt;}
.ws42{word-spacing:-0.058667pt;}
.wsc2{word-spacing:-0.053333pt;}
.ws9d{word-spacing:-0.048000pt;}
.ws23{word-spacing:0.000000pt;}
.ws81{word-spacing:0.058667pt;}
.ws67{word-spacing:0.117333pt;}
.ws3e{word-spacing:0.176000pt;}
.ws6a{word-spacing:0.192000pt;}
.ws3f{word-spacing:0.234667pt;}
.ws48{word-spacing:0.293333pt;}
.wscb{word-spacing:0.320000pt;}
.ws87{word-spacing:0.336000pt;}
.ws82{word-spacing:0.352000pt;}
.wsb4{word-spacing:0.373333pt;}
.ws7b{word-spacing:0.410667pt;}
.wsd3{word-spacing:0.426667pt;}
.wsa5{word-spacing:0.432000pt;}
.ws45{word-spacing:0.469333pt;}
.wscf{word-spacing:0.480000pt;}
.wsa2{word-spacing:0.492800pt;}
.ws3b{word-spacing:0.528000pt;}
.ws25{word-spacing:0.557333pt;}
.ws89{word-spacing:0.576000pt;}
.ws50{word-spacing:0.586667pt;}
.ws66{word-spacing:0.616000pt;}
.ws68{word-spacing:0.624000pt;}
.ws43{word-spacing:0.645333pt;}
.ws53{word-spacing:0.704000pt;}
.wsce{word-spacing:0.746667pt;}
.ws2d{word-spacing:0.760000pt;}
.ws5f{word-spacing:0.762667pt;}
.wsca{word-spacing:0.800000pt;}
.ws2e{word-spacing:0.810667pt;}
.ws3d{word-spacing:0.821333pt;}
.ws4f{word-spacing:0.880000pt;}
.wsa9{word-spacing:0.903467pt;}
.wsd0{word-spacing:0.906667pt;}
.ws2a{word-spacing:0.912000pt;}
.ws5c{word-spacing:0.938667pt;}
.ws88{word-spacing:0.960000pt;}
.ws7d{word-spacing:0.997333pt;}
.ws96{word-spacing:1.008000pt;}
.wscc{word-spacing:1.013333pt;}
.ws46{word-spacing:1.056000pt;}
.wsab{word-spacing:1.104000pt;}
.ws74{word-spacing:1.114667pt;}
.ws26{word-spacing:1.165333pt;}
.ws4e{word-spacing:1.173333pt;}
.ws60{word-spacing:1.232000pt;}
.ws2b{word-spacing:1.266667pt;}
.ws5b{word-spacing:1.290667pt;}
.wsb3{word-spacing:1.333333pt;}
.ws47{word-spacing:1.349333pt;}
.ws4d{word-spacing:1.408000pt;}
.ws5d{word-spacing:1.466667pt;}
.ws51{word-spacing:1.525333pt;}
.ws7c{word-spacing:1.642667pt;}
.wsb7{word-spacing:2.560000pt;}
.ws83{word-spacing:2.698667pt;}
.ws86{word-spacing:2.757333pt;}
.ws76{word-spacing:3.360000pt;}
.ws75{word-spacing:3.456000pt;}
.wsa3{word-spacing:3.520000pt;}
.ws49{word-spacing:4.693333pt;}
.wsb1{word-spacing:5.154667pt;}
.wsd4{word-spacing:5.546667pt;}
.ws54{word-spacing:6.688000pt;}
.ws55{word-spacing:7.040000pt;}
.ws95{word-spacing:7.333333pt;}
.ws9f{word-spacing:12.026667pt;}
.wsac{word-spacing:13.493333pt;}
.ws91{word-spacing:13.786667pt;}
.wsaf{word-spacing:14.021333pt;}
.wsad{word-spacing:14.666667pt;}
.wsa6{word-spacing:19.594667pt;}
.ws7f{word-spacing:21.354667pt;}
.ws39{word-spacing:31.914667pt;}
.ws64{word-spacing:32.016000pt;}
.ws85{word-spacing:32.592000pt;}
.ws9c{word-spacing:52.864000pt;}
.ws9b{word-spacing:54.656000pt;}
.ws7a{word-spacing:56.000000pt;}
.ws72{word-spacing:59.248000pt;}
.ws8f{word-spacing:72.405333pt;}
.ws9a{word-spacing:89.338667pt;}
._20{margin-left:-9.466667pt;}
._a{margin-left:-7.509333pt;}
._b{margin-left:-6.453333pt;}
._5{margin-left:-5.440557pt;}
._1{margin-left:-4.149891pt;}
._2{margin-left:-2.757333pt;}
._0{margin-left:-1.012776pt;}
._4{width:1.584000pt;}
._3{width:2.992000pt;}
._17{width:12.851104pt;}
._16{width:13.743443pt;}
._9{width:21.354667pt;}
._1f{width:29.333333pt;}
._8{width:42.410667pt;}
._1e{width:57.717333pt;}
._14{width:59.994667pt;}
._13{width:61.338667pt;}
._15{width:62.682667pt;}
._1d{width:64.960000pt;}
._12{width:66.602667pt;}
._1c{width:70.186667pt;}
._e{width:71.717333pt;}
._10{width:75.264000pt;}
._d{width:78.250667pt;}
._f{width:81.125333pt;}
._c{width:82.245333pt;}
._11{width:84.037333pt;}
._1b{width:95.685333pt;}
._19{width:96.693333pt;}
._1a{width:101.957333pt;}
._18{width:106.661333pt;}
._6{width:504.874667pt;}
._7{width:600.084219pt;}
.fs7{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs6{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:44.000000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:1.029333pt;}
.y26{bottom:1.696000pt;}
.y2b{bottom:2.362667pt;}
.y21{bottom:3.029333pt;}
.y24{bottom:3.696000pt;}
.y2c{bottom:48.000000pt;}
.y163{bottom:48.013333pt;}
.y14e{bottom:48.133333pt;}
.y1d5{bottom:48.493333pt;}
.y9f{bottom:48.549333pt;}
.ybc{bottom:48.720000pt;}
.y192{bottom:48.861333pt;}
.y206{bottom:48.882667pt;}
.y5a{bottom:48.914667pt;}
.y81{bottom:49.006667pt;}
.y10f{bottom:49.021333pt;}
.y233{bottom:49.036000pt;}
.y227{bottom:49.437333pt;}
.y12c{bottom:49.440000pt;}
.y1a7{bottom:49.506667pt;}
.y242{bottom:54.120000pt;}
.y9e{bottom:61.221333pt;}
.y191{bottom:61.533333pt;}
.y205{bottom:61.554667pt;}
.y226{bottom:62.109333pt;}
.y12b{bottom:62.112000pt;}
.y2a{bottom:64.000000pt;}
.ybb{bottom:64.046667pt;}
.y59{bottom:64.241333pt;}
.y80{bottom:64.333333pt;}
.y10e{bottom:64.348000pt;}
.y232{bottom:64.362667pt;}
.y1a6{bottom:64.833333pt;}
.y241{bottom:68.120000pt;}
.y30{bottom:70.666667pt;}
.y9d{bottom:73.893333pt;}
.y204{bottom:74.226667pt;}
.y225{bottom:74.781333pt;}
.y12a{bottom:74.784000pt;}
.yba{bottom:79.373333pt;}
.y58{bottom:79.568000pt;}
.y7f{bottom:79.660000pt;}
.y10d{bottom:79.674667pt;}
.y231{bottom:79.689333pt;}
.y28{bottom:80.000000pt;}
.y1a5{bottom:80.160000pt;}
.y240{bottom:82.120000pt;}
.y9c{bottom:86.565333pt;}
.y224{bottom:87.453333pt;}
.y129{bottom:87.456000pt;}
.y171{bottom:87.537333pt;}
.y1df{bottom:87.905333pt;}
.y2f{bottom:89.333333pt;}
.y152{bottom:91.872000pt;}
.y27{bottom:94.666667pt;}
.yb9{bottom:94.700000pt;}
.y57{bottom:94.894667pt;}
.y144{bottom:94.986667pt;}
.y10c{bottom:95.001333pt;}
.y230{bottom:95.016000pt;}
.y1a4{bottom:95.486667pt;}
.y23f{bottom:96.120000pt;}
.y9b{bottom:99.237333pt;}
.y128{bottom:100.128000pt;}
.y151{bottom:102.986667pt;}
.y2e{bottom:105.333333pt;}
.y25{bottom:108.000000pt;}
.y172{bottom:108.761333pt;}
.y170{bottom:108.873333pt;}
.yb8{bottom:110.026667pt;}
.y203{bottom:110.133333pt;}
.y190{bottom:110.237333pt;}
.y143{bottom:110.313333pt;}
.y7e{bottom:110.328000pt;}
.y22f{bottom:110.342667pt;}
.y1a3{bottom:110.813333pt;}
.y9a{bottom:111.909333pt;}
.y127{bottom:112.800000pt;}
.y1e0{bottom:114.010667pt;}
.y1de{bottom:114.813333pt;}
.y2d{bottom:120.000000pt;}
.y56{bottom:121.734667pt;}
.y23{bottom:122.666667pt;}
.y99{bottom:124.581333pt;}
.yb7{bottom:125.353333pt;}
.y202{bottom:125.460000pt;}
.y23e{bottom:125.466667pt;}
.y18f{bottom:125.564000pt;}
.y142{bottom:125.640000pt;}
.y7d{bottom:125.654667pt;}
.y22e{bottom:125.669333pt;}
.y1a2{bottom:126.140000pt;}
.y16f{bottom:128.417333pt;}
.y173{bottom:133.438667pt;}
.y55{bottom:137.061333pt;}
.y98{bottom:137.253333pt;}
.y16e{bottom:137.750667pt;}
.y22{bottom:138.666667pt;}
.yb6{bottom:140.680000pt;}
.y23d{bottom:140.793333pt;}
.y18e{bottom:140.890667pt;}
.y201{bottom:140.949333pt;}
.y141{bottom:140.966667pt;}
.y223{bottom:140.980000pt;}
.y7c{bottom:140.981333pt;}
.y22d{bottom:140.996000pt;}
.y1a1{bottom:141.466667pt;}
.y1dd{bottom:146.817333pt;}
.y1e1{bottom:147.144000pt;}
.y20{bottom:153.333333pt;}
.y150{bottom:153.653333pt;}
.yb5{bottom:156.006667pt;}
.y126{bottom:156.160000pt;}
.y18d{bottom:156.217333pt;}
.y200{bottom:156.276000pt;}
.y140{bottom:156.293333pt;}
.y222{bottom:156.306667pt;}
.y7b{bottom:156.308000pt;}
.y10b{bottom:156.322667pt;}
.y23c{bottom:156.366667pt;}
.y1a0{bottom:156.793333pt;}
.y174{bottom:158.330667pt;}
.y16d{bottom:158.433333pt;}
.yb4{bottom:171.333333pt;}
.y125{bottom:171.486667pt;}
.y18c{bottom:171.544000pt;}
.y1ff{bottom:171.602667pt;}
.y13f{bottom:171.620000pt;}
.y221{bottom:171.633333pt;}
.y7a{bottom:171.634667pt;}
.y22c{bottom:171.649333pt;}
.y23b{bottom:171.693333pt;}
.y19f{bottom:172.120000pt;}
.y97{bottom:174.646667pt;}
.y1dc{bottom:174.817333pt;}
.y54{bottom:175.400000pt;}
.y1e2{bottom:179.101333pt;}
.y10a{bottom:179.320000pt;}
.y1e{bottom:180.426667pt;}
.y16c{bottom:182.429333pt;}
.y175{bottom:182.905333pt;}
.y1db{bottom:184.150667pt;}
.yb3{bottom:186.660000pt;}
.y124{bottom:186.813333pt;}
.y18b{bottom:186.870667pt;}
.y1fe{bottom:186.929333pt;}
.y13e{bottom:186.946667pt;}
.y220{bottom:186.960000pt;}
.y79{bottom:186.961333pt;}
.y22b{bottom:186.976000pt;}
.y23a{bottom:187.020000pt;}
.y19e{bottom:187.446667pt;}
.y96{bottom:189.973333pt;}
.y53{bottom:190.726667pt;}
.y109{bottom:194.646667pt;}
.yb2{bottom:201.986667pt;}
.y123{bottom:202.140000pt;}
.y18a{bottom:202.197333pt;}
.y1fd{bottom:202.256000pt;}
.y13d{bottom:202.273333pt;}
.y21f{bottom:202.286667pt;}
.y22a{bottom:202.302667pt;}
.y239{bottom:202.346667pt;}
.y19d{bottom:202.773333pt;}
.y95{bottom:205.300000pt;}
.y52{bottom:206.053333pt;}
.y16b{bottom:206.425333pt;}
.y176{bottom:207.816000pt;}
.y14f{bottom:208.320000pt;}
.y153{bottom:209.216000pt;}
.y108{bottom:209.973333pt;}
.y1e3{bottom:213.830667pt;}
.y1da{bottom:216.164000pt;}
.yb1{bottom:217.313333pt;}
.y122{bottom:217.466667pt;}
.y189{bottom:217.524000pt;}
.y1fc{bottom:217.582667pt;}
.y13c{bottom:217.600000pt;}
.y21e{bottom:217.613333pt;}
.y78{bottom:217.629333pt;}
.y238{bottom:217.673333pt;}
.y19c{bottom:218.100000pt;}
.y94{bottom:220.626667pt;}
.y51{bottom:221.380000pt;}
.y107{bottom:225.300000pt;}
.y16a{bottom:231.756000pt;}
.yb0{bottom:232.640000pt;}
.y121{bottom:232.793333pt;}
.y188{bottom:232.850667pt;}
.y1fb{bottom:232.909333pt;}
.y13b{bottom:232.926667pt;}
.y21d{bottom:232.940000pt;}
.y77{bottom:232.956000pt;}
.y237{bottom:233.000000pt;}
.y177{bottom:233.044000pt;}
.y19b{bottom:233.426667pt;}
.y93{bottom:235.953333pt;}
.y50{bottom:236.706667pt;}
.y106{bottom:240.626667pt;}
.y14{bottom:245.506667pt;}
.y1e4{bottom:247.524000pt;}
.yaf{bottom:247.966667pt;}
.y120{bottom:248.140000pt;}
.y1d9{bottom:248.168000pt;}
.y1fa{bottom:248.236000pt;}
.y13a{bottom:248.253333pt;}
.y21c{bottom:248.266667pt;}
.y76{bottom:248.282667pt;}
.y236{bottom:248.326667pt;}
.y19a{bottom:248.753333pt;}
.y92{bottom:251.280000pt;}
.y4f{bottom:252.033333pt;}
.y169{bottom:255.752000pt;}
.y187{bottom:255.848000pt;}
.y105{bottom:255.953333pt;}
.y178{bottom:257.058667pt;}
.y13{bottom:258.820000pt;}
.yae{bottom:263.293333pt;}
.y11f{bottom:263.466667pt;}
.y1f9{bottom:263.562667pt;}
.y139{bottom:263.580000pt;}
.y21b{bottom:263.593333pt;}
.y75{bottom:263.609333pt;}
.y235{bottom:263.653333pt;}
.y199{bottom:264.080000pt;}
.y91{bottom:266.606667pt;}
.y4e{bottom:267.360000pt;}
.y12{bottom:272.158000pt;}
.y168{bottom:275.753333pt;}
.yad{bottom:278.620000pt;}
.y11e{bottom:278.793333pt;}
.y1f8{bottom:278.889333pt;}
.y21a{bottom:278.920000pt;}
.y74{bottom:278.936000pt;}
.y104{bottom:278.950667pt;}
.y234{bottom:278.980000pt;}
.y198{bottom:279.406667pt;}
.y1d8{bottom:280.172000pt;}
.y1e5{bottom:280.256000pt;}
.y90{bottom:281.933333pt;}
.y179{bottom:281.969333pt;}
.y4d{bottom:282.686667pt;}
.y25e{bottom:284.120000pt;}
.y167{bottom:285.086667pt;}
.y11{bottom:285.496000pt;}
.yac{bottom:293.946667pt;}
.y186{bottom:294.186667pt;}
.y1f7{bottom:294.216000pt;}
.y219{bottom:294.246667pt;}
.y138{bottom:294.248000pt;}
.y73{bottom:294.262667pt;}
.y103{bottom:294.277333pt;}
.y11d{bottom:294.306667pt;}
.y197{bottom:294.733333pt;}
.y8f{bottom:297.260000pt;}
.y4c{bottom:298.013333pt;}
.y25d{bottom:298.120000pt;}
.y10{bottom:298.834000pt;}
.y166{bottom:305.750667pt;}
.y17a{bottom:306.432000pt;}
.yab{bottom:309.273333pt;}
.y185{bottom:309.513333pt;}
.y1f6{bottom:309.542667pt;}
.y218{bottom:309.573333pt;}
.y137{bottom:309.574667pt;}
.y72{bottom:309.589333pt;}
.y102{bottom:309.604000pt;}
.y11c{bottom:309.633333pt;}
.y196{bottom:310.060000pt;}
.y25c{bottom:312.120000pt;}
.yf{bottom:312.172000pt;}
.y8e{bottom:312.658667pt;}
.y1e6{bottom:312.866667pt;}
.y4b{bottom:313.340000pt;}
.y1d7{bottom:314.836000pt;}
.yaa{bottom:324.600000pt;}
.y184{bottom:324.840000pt;}
.y1f5{bottom:324.869333pt;}
.y217{bottom:324.900000pt;}
.y136{bottom:324.901333pt;}
.y71{bottom:324.916000pt;}
.y101{bottom:324.930667pt;}
.y11b{bottom:324.960000pt;}
.y195{bottom:325.386667pt;}
.ye{bottom:325.510000pt;}
.y25b{bottom:326.120000pt;}
.y8d{bottom:327.985333pt;}
.y4a{bottom:328.666667pt;}
.y17b{bottom:330.894667pt;}
.y165{bottom:332.416000pt;}
.y229{bottom:332.586667pt;}
.ya9{bottom:339.926667pt;}
.y25a{bottom:340.120000pt;}
.y183{bottom:340.166667pt;}
.y1f4{bottom:340.196000pt;}
.y216{bottom:340.226667pt;}
.y135{bottom:340.228000pt;}
.y70{bottom:340.242667pt;}
.y100{bottom:340.257333pt;}
.y11a{bottom:340.286667pt;}
.y194{bottom:340.713333pt;}
.y8c{bottom:343.312000pt;}
.y49{bottom:343.993333pt;}
.y1e7{bottom:346.373333pt;}
.y1d6{bottom:346.840000pt;}
.y14d{bottom:347.913333pt;}
.yd{bottom:352.173333pt;}
.y259{bottom:354.120000pt;}
.ya8{bottom:355.253333pt;}
.y182{bottom:355.493333pt;}
.y1f3{bottom:355.522667pt;}
.y215{bottom:355.553333pt;}
.y6f{bottom:355.569333pt;}
.yff{bottom:355.584000pt;}
.y119{bottom:355.613333pt;}
.y193{bottom:356.040000pt;}
.y17c{bottom:356.318667pt;}
.y164{bottom:357.746667pt;}
.y8b{bottom:358.638667pt;}
.y48{bottom:359.320000pt;}
.y258{bottom:368.120000pt;}
.y181{bottom:370.820000pt;}
.y214{bottom:370.880000pt;}
.y6e{bottom:370.896000pt;}
.yfe{bottom:370.910667pt;}
.y228{bottom:370.925333pt;}
.y118{bottom:370.940000pt;}
.y8a{bottom:373.965333pt;}
.y47{bottom:374.646667pt;}
.y1f2{bottom:378.520000pt;}
.y257{bottom:382.120000pt;}
.yc{bottom:384.126200pt;}
.y180{bottom:386.146667pt;}
.y213{bottom:386.206667pt;}
.y6d{bottom:386.222667pt;}
.yfd{bottom:386.237333pt;}
.y14c{bottom:386.252000pt;}
.y117{bottom:386.266667pt;}
.y46{bottom:389.973333pt;}
.y1f1{bottom:393.846667pt;}
.y256{bottom:396.120000pt;}
.yb{bottom:397.464200pt;}
.y1c8{bottom:399.700000pt;}
.y17f{bottom:401.473333pt;}
.y212{bottom:401.533333pt;}
.y6c{bottom:401.549333pt;}
.yfc{bottom:401.564000pt;}
.y14b{bottom:401.578667pt;}
.y116{bottom:401.593333pt;}
.yd7{bottom:401.640000pt;}
.y15b{bottom:403.780000pt;}
.y89{bottom:404.633333pt;}
.y45{bottom:405.300000pt;}
.y1a8{bottom:405.453333pt;}
.y1f0{bottom:409.173333pt;}
.y255{bottom:410.120000pt;}
.ya{bottom:410.802200pt;}
.y1c7{bottom:415.026667pt;}
.ybd{bottom:415.080000pt;}
.y17e{bottom:416.800000pt;}
.y211{bottom:416.860000pt;}
.y6b{bottom:416.876000pt;}
.yfb{bottom:416.890667pt;}
.y14a{bottom:416.905333pt;}
.y115{bottom:416.920000pt;}
.y15a{bottom:419.106667pt;}
.y88{bottom:419.960000pt;}
.y44{bottom:420.748000pt;}
.y254{bottom:424.120000pt;}
.y9{bottom:424.140200pt;}
.y1ef{bottom:424.500000pt;}
.y1c6{bottom:430.353333pt;}
.y17d{bottom:432.126667pt;}
.y210{bottom:432.186667pt;}
.y134{bottom:432.202667pt;}
.yfa{bottom:432.217333pt;}
.y149{bottom:432.232000pt;}
.y114{bottom:432.246667pt;}
.y159{bottom:434.433333pt;}
.y87{bottom:435.286667pt;}
.y43{bottom:436.074667pt;}
.y8{bottom:437.478200pt;}
.y253{bottom:438.120000pt;}
.y1ee{bottom:439.826667pt;}
.y6a{bottom:439.873333pt;}
.ye4{bottom:440.497333pt;}
.y1b5{bottom:444.308000pt;}
.y1c5{bottom:445.680000pt;}
.y20f{bottom:447.513333pt;}
.y133{bottom:447.529333pt;}
.yf9{bottom:447.544000pt;}
.y148{bottom:447.558667pt;}
.y113{bottom:447.573333pt;}
.y158{bottom:449.760000pt;}
.y86{bottom:450.613333pt;}
.y7{bottom:450.816200pt;}
.y42{bottom:451.401333pt;}
.y252{bottom:452.120000pt;}
.ycb{bottom:454.600000pt;}
.y1ed{bottom:455.153333pt;}
.y1c4{bottom:461.006667pt;}
.y20e{bottom:462.840000pt;}
.y132{bottom:462.856000pt;}
.y147{bottom:462.885333pt;}
.y112{bottom:462.900000pt;}
.y6{bottom:464.154200pt;}
.y157{bottom:465.086667pt;}
.ye3{bottom:465.454667pt;}
.y85{bottom:465.940000pt;}
.y251{bottom:466.120000pt;}
.y41{bottom:466.728000pt;}
.ye5{bottom:467.181333pt;}
.yca{bottom:469.934667pt;}
.y1ec{bottom:470.480000pt;}
.yf8{bottom:470.541333pt;}
.y1b6{bottom:470.992000pt;}
.y1b4{bottom:471.244000pt;}
.ycc{bottom:475.824000pt;}
.y1c3{bottom:476.333333pt;}
.y5{bottom:477.492200pt;}
.y20d{bottom:478.166667pt;}
.y69{bottom:478.212000pt;}
.y111{bottom:478.226667pt;}
.yc9{bottom:479.268000pt;}
.y250{bottom:480.120000pt;}
.y156{bottom:480.413333pt;}
.y84{bottom:481.266667pt;}
.y40{bottom:482.054667pt;}
.y1eb{bottom:485.806667pt;}
.y4{bottom:490.830200pt;}
.y1c2{bottom:491.660000pt;}
.y20c{bottom:493.493333pt;}
.y131{bottom:493.524000pt;}
.y68{bottom:493.538667pt;}
.y110{bottom:493.553333pt;}
.y24f{bottom:494.120000pt;}
.y155{bottom:495.740000pt;}
.yc8{bottom:496.161333pt;}
.y83{bottom:496.593333pt;}
.y3f{bottom:497.381333pt;}
.ye2{bottom:497.692000pt;}
.ye6{bottom:498.644000pt;}
.ycd{bottom:500.837333pt;}
.y1ea{bottom:501.133333pt;}
.y1b7{bottom:501.474667pt;}
.y1b3{bottom:503.472000pt;}
.y3{bottom:504.168200pt;}
.yc7{bottom:505.494667pt;}
.y1c1{bottom:506.986667pt;}
.y24e{bottom:508.120000pt;}
.y20b{bottom:508.820000pt;}
.y130{bottom:508.850667pt;}
.y67{bottom:508.865333pt;}
.yf7{bottom:508.880000pt;}
.y154{bottom:511.066667pt;}
.y82{bottom:511.920000pt;}
.y3e{bottom:512.708000pt;}
.y1e9{bottom:516.460000pt;}
.y2{bottom:517.506200pt;}
.y24d{bottom:522.120000pt;}
.y1c0{bottom:522.313333pt;}
.y20a{bottom:524.146667pt;}
.y12f{bottom:524.177333pt;}
.y66{bottom:524.192000pt;}
.yf6{bottom:524.206667pt;}
.yce{bottom:525.393333pt;}
.yc6{bottom:526.158667pt;}
.y1b2{bottom:526.366667pt;}
.y3d{bottom:528.034667pt;}
.ye1{bottom:529.920000pt;}
.ye7{bottom:530.536000pt;}
.y1e8{bottom:531.848000pt;}
.y1b8{bottom:532.097333pt;}
.y1b1{bottom:535.700000pt;}
.y24c{bottom:536.120000pt;}
.y1bf{bottom:537.640000pt;}
.y209{bottom:539.473333pt;}
.y65{bottom:539.518667pt;}
.yf5{bottom:539.533333pt;}
.y3c{bottom:543.361333pt;}
.y1{bottom:544.173333pt;}
.y12e{bottom:547.174667pt;}
.y24b{bottom:550.120000pt;}
.yc5{bottom:550.154667pt;}
.ycf{bottom:550.304000pt;}
.y208{bottom:554.800000pt;}
.y146{bottom:554.845333pt;}
.yf4{bottom:554.860000pt;}
.ye0{bottom:558.377333pt;}
.y3b{bottom:558.688000pt;}
.y1b0{bottom:560.153333pt;}
.ya1{bottom:560.621333pt;}
.ye8{bottom:562.353333pt;}
.y12d{bottom:562.501333pt;}
.y64{bottom:562.516000pt;}
.y15c{bottom:563.000000pt;}
.y1b9{bottom:563.830667pt;}
.y24a{bottom:564.120000pt;}
.ydf{bottom:567.710667pt;}
.y1af{bottom:569.486667pt;}
.y207{bottom:570.126667pt;}
.y145{bottom:570.172000pt;}
.yf3{bottom:570.186667pt;}
.ya0{bottom:573.293333pt;}
.y3a{bottom:574.014667pt;}
.yd0{bottom:575.214667pt;}
.yc4{bottom:575.485333pt;}
.y63{bottom:577.842667pt;}
.y249{bottom:578.120000pt;}
.y1d{bottom:580.082667pt;}
.y1c9{bottom:584.120000pt;}
.yf2{bottom:585.513333pt;}
.y39{bottom:589.341333pt;}
.y1ae{bottom:590.150667pt;}
.yde{bottom:592.164000pt;}
.y1c{bottom:592.754667pt;}
.y62{bottom:593.169333pt;}
.ye9{bottom:594.030667pt;}
.y1ba{bottom:594.173333pt;}
.y1ad{bottom:598.149333pt;}
.y248{bottom:599.786667pt;}
.yd1{bottom:600.106667pt;}
.yc3{bottom:600.816000pt;}
.yf1{bottom:600.840000pt;}
.y38{bottom:604.668000pt;}
.y1b{bottom:605.426667pt;}
.y61{bottom:608.496000pt;}
.yf0{bottom:616.166667pt;}
.ya6{bottom:619.018667pt;}
.y1cf{bottom:619.322667pt;}
.y37{bottom:619.994667pt;}
.ydd{bottom:620.602667pt;}
.y15f{bottom:621.400000pt;}
.y1a{bottom:621.426667pt;}
.y60{bottom:623.822667pt;}
.yd2{bottom:624.121333pt;}
.yc2{bottom:624.812000pt;}
.y1ac{bottom:625.057333pt;}
.y1bb{bottom:625.570667pt;}
.yea{bottom:626.258667pt;}
.ydc{bottom:629.936000pt;}
.yef{bottom:631.493333pt;}
.y36{bottom:635.321333pt;}
.y19{bottom:637.426667pt;}
.y5f{bottom:639.149333pt;}
.y1d0{bottom:639.753333pt;}
.y1ce{bottom:639.912000pt;}
.y160{bottom:642.296000pt;}
.yee{bottom:646.820000pt;}
.ya4{bottom:647.733333pt;}
.yc1{bottom:648.808000pt;}
.yd3{bottom:649.032000pt;}
.y35{bottom:650.648000pt;}
.y247{bottom:653.453333pt;}
.ydb{bottom:654.389333pt;}
.y1bc{bottom:657.182667pt;}
.y1ab{bottom:657.509333pt;}
.yeb{bottom:658.048000pt;}
.y1cd{bottom:659.913333pt;}
.y1d1{bottom:660.296000pt;}
.y5e{bottom:662.146667pt;}
.yda{bottom:663.722667pt;}
.y34{bottom:665.974667pt;}
.y161{bottom:667.149333pt;}
.y246{bottom:667.453333pt;}
.y15e{bottom:670.733333pt;}
.yc0{bottom:672.804000pt;}
.ya3{bottom:673.066667pt;}
.yd4{bottom:673.494667pt;}
.y18{bottom:677.426667pt;}
.y5d{bottom:677.473333pt;}
.y1d2{bottom:680.829333pt;}
.y1cc{bottom:681.249333pt;}
.y33{bottom:681.301333pt;}
.y245{bottom:681.453333pt;}
.y1aa{bottom:687.282667pt;}
.y1bd{bottom:687.646667pt;}
.yd9{bottom:688.176000pt;}
.yec{bottom:689.837333pt;}
.y5c{bottom:692.800000pt;}
.y244{bottom:695.453333pt;}
.y32{bottom:696.628000pt;}
.ya2{bottom:697.066667pt;}
.yd5{bottom:697.957333pt;}
.y17{bottom:698.760000pt;}
.ybf{bottom:699.469333pt;}
.y1d3{bottom:701.866667pt;}
.y1cb{bottom:702.585333pt;}
.ya5{bottom:705.248000pt;}
.y5b{bottom:708.126667pt;}
.y243{bottom:709.453333pt;}
.y1be{bottom:718.689333pt;}
.y15d{bottom:720.066667pt;}
.y16{bottom:720.093333pt;}
.y1a9{bottom:720.173333pt;}
.yd8{bottom:721.066667pt;}
.ya7{bottom:721.248000pt;}
.yed{bottom:721.888000pt;}
.y1ca{bottom:722.586667pt;}
.y1d4{bottom:722.745333pt;}
.yd6{bottom:723.306667pt;}
.y31{bottom:723.453333pt;}
.ybe{bottom:724.800000pt;}
.y162{bottom:725.026667pt;}
.y15{bottom:765.426667pt;}
.y1f{bottom:821.333333pt;}
.hb{height:9.333333pt;}
.ha{height:10.666667pt;}
.hc{height:12.000000pt;}
.h7{height:13.333333pt;}
.h9{height:14.666667pt;}
.h12{height:39.834667pt;}
.h17{height:40.469333pt;}
.h6{height:41.854167pt;}
.h8{height:41.875000pt;}
.h2{height:45.525333pt;}
.h15{height:46.250667pt;}
.h5{height:51.216000pt;}
.h14{height:52.032000pt;}
.h1{height:54.061333pt;}
.h19{height:56.906667pt;}
.h1a{height:57.813333pt;}
.hd{height:62.597333pt;}
.h16{height:62.698133pt;}
.h11{height:62.890133pt;}
.h18{height:62.932800pt;}
.h13{height:63.098133pt;}
.he{height:63.109333pt;}
.h10{height:63.178133pt;}
.hf{height:63.594667pt;}
.h4{height:68.288000pt;}
.h3{height:91.050667pt;}
.h0{height:793.333333pt;}
.w5{width:154.666667pt;}
.wb{width:166.666667pt;}
.w9{width:177.333333pt;}
.w1{width:182.666667pt;}
.wa{width:185.333333pt;}
.w7{width:186.666667pt;}
.w8{width:206.666667pt;}
.w6{width:209.333333pt;}
.w4{width:213.333333pt;}
.w2{width:214.666667pt;}
.w3{width:217.333333pt;}
.w0{width:565.333333pt;}
.x0{left:0.000000pt;}
.x14{left:1.333333pt;}
.x5{left:4.000000pt;}
.x10{left:41.503733pt;}
.x9{left:43.168133pt;}
.xe{left:48.341467pt;}
.xd{left:51.296267pt;}
.xa{left:54.666667pt;}
.x8{left:56.000000pt;}
.xc{left:57.333333pt;}
.xf{left:60.000000pt;}
.x1{left:66.400000pt;}
.x16{left:67.480000pt;}
.x24{left:70.078667pt;}
.xb{left:73.514933pt;}
.x31{left:77.924000pt;}
.x34{left:80.360000pt;}
.x57{left:83.354667pt;}
.x2{left:86.399400pt;}
.x17{left:87.470667pt;}
.x6{left:89.333333pt;}
.x55{left:90.317333pt;}
.x4b{left:92.632000pt;}
.x59{left:94.648000pt;}
.x46{left:97.074667pt;}
.x1e{left:99.842667pt;}
.x40{left:101.893333pt;}
.x43{left:104.026667pt;}
.x12{left:105.205467pt;}
.x35{left:106.950667pt;}
.x23{left:108.765333pt;}
.x63{left:110.166667pt;}
.x19{left:111.277333pt;}
.x26{left:114.850667pt;}
.x11{left:116.000000pt;}
.x5b{left:117.048000pt;}
.x49{left:118.037333pt;}
.x6c{left:122.208000pt;}
.x7{left:126.826800pt;}
.x6b{left:134.033333pt;}
.x36{left:138.730667pt;}
.x6d{left:140.912000pt;}
.x44{left:142.229333pt;}
.x1d{left:149.001333pt;}
.x69{left:153.960000pt;}
.x6a{left:155.276000pt;}
.x20{left:156.692000pt;}
.x64{left:157.822667pt;}
.x22{left:162.777333pt;}
.x5c{left:166.178667pt;}
.x45{left:168.792000pt;}
.x32{left:171.229333pt;}
.x33{left:172.601333pt;}
.x54{left:174.093333pt;}
.x38{left:177.996000pt;}
.x37{left:185.061333pt;}
.x27{left:186.876000pt;}
.x30{left:188.813333pt;}
.x48{left:193.786667pt;}
.x21{left:199.924000pt;}
.x25{left:201.492000pt;}
.x58{left:205.724000pt;}
.x1b{left:217.666667pt;}
.x5a{left:220.984000pt;}
.x1a{left:222.114667pt;}
.x1c{left:226.160000pt;}
.x47{left:227.956000pt;}
.x1f{left:228.969333pt;}
.x65{left:231.789333pt;}
.x4a{left:235.609333pt;}
.x42{left:239.248000pt;}
.x56{left:243.290667pt;}
.x39{left:258.664000pt;}
.x4{left:261.360000pt;}
.x28{left:266.088000pt;}
.x3e{left:269.061333pt;}
.x74{left:272.232000pt;}
.x53{left:274.296000pt;}
.x52{left:276.190667pt;}
.x2f{left:277.390667pt;}
.x5d{left:278.916000pt;}
.x2e{left:280.937333pt;}
.x2d{left:284.054667pt;}
.x51{left:286.084000pt;}
.x2c{left:289.384000pt;}
.x50{left:292.682667pt;}
.x68{left:293.930667pt;}
.x13{left:296.000000pt;}
.x15{left:297.333333pt;}
.x62{left:299.552000pt;}
.x73{left:301.790667pt;}
.x61{left:306.001333pt;}
.x18{left:310.040000pt;}
.x2b{left:314.210667pt;}
.x67{left:317.945333pt;}
.x4f{left:319.684000pt;}
.x4e{left:322.586667pt;}
.x41{left:324.440000pt;}
.x72{left:327.242667pt;}
.x60{left:329.120000pt;}
.x71{left:332.693333pt;}
.x70{left:335.484000pt;}
.x2a{left:339.541333pt;}
.x3f{left:343.653333pt;}
.x3d{left:349.738667pt;}
.x6f{left:362.952000pt;}
.x3c{left:375.097333pt;}
.x3b{left:379.661333pt;}
.x3{left:381.400000pt;}
.x5f{left:393.585333pt;}
.x4d{left:406.904000pt;}
.x66{left:419.249333pt;}
.x3a{left:460.992000pt;}
.x29{left:464.878667pt;}
.x4c{left:467.570667pt;}
.x6e{left:468.950667pt;}
.x5e{left:473.581333pt;}
}




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