
    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_ab5303851bae90e3c57217e8.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_0392d6fd5c01535cb5c691c2.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_2a0931038686cc1317ea19d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7e8d7338722280d700f27b06.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_590dcb4f01f70f72ff515674.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-98.406000px;}
.v9{vertical-align:-62.034000px;}
.v3{vertical-align:-58.380000px;}
.v1{vertical-align:-53.214000px;}
.v7{vertical-align:-47.838000px;}
.v8{vertical-align:-32.214000px;}
.v6{vertical-align:-23.982000px;}
.v5{vertical-align:-5.922000px;}
.ve{vertical-align:-1.092000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.638000px;}
.v2{vertical-align:10.038000px;}
.vd{vertical-align:20.688000px;}
.vc{vertical-align:21.780000px;}
.va{vertical-align:38.052000px;}
.ls1b{letter-spacing:-7.410000px;}
.ls38{letter-spacing:-5.073000px;}
.ls3a{letter-spacing:-4.389000px;}
.ls3b{letter-spacing:-3.990000px;}
.ls36{letter-spacing:-3.756300px;}
.ls1f{letter-spacing:-3.744900px;}
.ls2c{letter-spacing:-3.653700px;}
.ls42{letter-spacing:-3.528300px;}
.ls23{letter-spacing:-3.482700px;}
.ls44{letter-spacing:-3.477000px;}
.ls1c{letter-spacing:-3.249000px;}
.ls50{letter-spacing:-3.042600px;}
.ls2d{letter-spacing:-2.975400px;}
.ls52{letter-spacing:-2.928000px;}
.ls2f{letter-spacing:-2.895600px;}
.ls4c{letter-spacing:-2.640000px;}
.ls33{letter-spacing:-2.627700px;}
.ls34{letter-spacing:-2.565000px;}
.ls37{letter-spacing:-2.394000px;}
.ls71{letter-spacing:-2.244000px;}
.ls4d{letter-spacing:-2.237400px;}
.ls29{letter-spacing:-2.046300px;}
.ls30{letter-spacing:-1.938000px;}
.ls28{letter-spacing:-1.875300px;}
.ls4f{letter-spacing:-1.848000px;}
.ls31{letter-spacing:-1.829700px;}
.ls93{letter-spacing:-1.782000px;}
.ls40{letter-spacing:-1.772700px;}
.ls27{letter-spacing:-1.767000px;}
.ls75{letter-spacing:-1.716000px;}
.ls32{letter-spacing:-1.715700px;}
.ls26{letter-spacing:-1.710000px;}
.ls2e{letter-spacing:-1.653000px;}
.ls7b{letter-spacing:-1.650000px;}
.ls21{letter-spacing:-1.596000px;}
.ls87{letter-spacing:-1.584000px;}
.ls3f{letter-spacing:-1.544700px;}
.ls22{letter-spacing:-1.539000px;}
.ls73{letter-spacing:-1.518000px;}
.ls6a{letter-spacing:-1.452000px;}
.ls54{letter-spacing:-1.440000px;}
.ls94{letter-spacing:-1.386000px;}
.lsc{letter-spacing:-1.368000px;}
.ls47{letter-spacing:-1.322400px;}
.ls83{letter-spacing:-1.320000px;}
.ls76{letter-spacing:-1.254000px;}
.ls3d{letter-spacing:-1.197000px;}
.ls7c{letter-spacing:-1.188000px;}
.ls3e{letter-spacing:-1.140000px;}
.ls67{letter-spacing:-1.122000px;}
.ls2a{letter-spacing:-1.083000px;}
.ls4e{letter-spacing:-1.056000px;}
.ls25{letter-spacing:-1.026000px;}
.ls77{letter-spacing:-0.990000px;}
.ls20{letter-spacing:-0.969000px;}
.ls35{letter-spacing:-0.963300px;}
.ls84{letter-spacing:-0.924000px;}
.ls8{letter-spacing:-0.912000px;}
.ls1e{letter-spacing:-0.906300px;}
.ls41{letter-spacing:-0.866400px;}
.ls72{letter-spacing:-0.858000px;}
.ls3c{letter-spacing:-0.855000px;}
.ls45{letter-spacing:-0.798000px;}
.ls49{letter-spacing:-0.792000px;}
.ls1a{letter-spacing:-0.741000px;}
.ls6b{letter-spacing:-0.726000px;}
.lse{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.684000px;}
.ls43{letter-spacing:-0.672600px;}
.ls4a{letter-spacing:-0.660000px;}
.ls5{letter-spacing:-0.627000px;}
.ls74{letter-spacing:-0.594000px;}
.ls48{letter-spacing:-0.581400px;}
.ls53{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.570000px;}
.ls7f{letter-spacing:-0.540000px;}
.ls51{letter-spacing:-0.528000px;}
.ls46{letter-spacing:-0.518700px;}
.ls24{letter-spacing:-0.513000px;}
.ls90{letter-spacing:-0.495000px;}
.ls66{letter-spacing:-0.462000px;}
.ls4{letter-spacing:-0.399000px;}
.ls68{letter-spacing:-0.396000px;}
.ls2b{letter-spacing:-0.342000px;}
.ls69{letter-spacing:-0.330000px;}
.ls8d{letter-spacing:-0.297000px;}
.ls39{letter-spacing:-0.290700px;}
.ls1d{letter-spacing:-0.285000px;}
.ls6c{letter-spacing:-0.264000px;}
.ls7{letter-spacing:-0.228000px;}
.ls4b{letter-spacing:-0.198000px;}
.lsa{letter-spacing:-0.171000px;}
.ls78{letter-spacing:-0.132000px;}
.ls9{letter-spacing:-0.114000px;}
.ls88{letter-spacing:-0.099000px;}
.ls65{letter-spacing:-0.066000px;}
.ls3{letter-spacing:-0.057000px;}
.ls7d{letter-spacing:-0.049500px;}
.lsd{letter-spacing:-0.048000px;}
.ls8e{letter-spacing:-0.042000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.057000px;}
.ls95{letter-spacing:0.060000px;}
.ls58{letter-spacing:0.066000px;}
.ls18{letter-spacing:0.085800px;}
.ls55{letter-spacing:0.132000px;}
.ls5b{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.228000px;}
.ls5a{letter-spacing:0.264000px;}
.ls86{letter-spacing:0.297000px;}
.ls63{letter-spacing:0.330000px;}
.ls82{letter-spacing:0.346500px;}
.ls62{letter-spacing:0.396000px;}
.ls11{letter-spacing:0.456000px;}
.ls59{letter-spacing:0.462000px;}
.ls10{letter-spacing:0.501600px;}
.ls16{letter-spacing:0.513000px;}
.ls57{letter-spacing:0.528000px;}
.ls6d{letter-spacing:0.594000px;}
.ls70{letter-spacing:0.660000px;}
.ls17{letter-spacing:0.666600px;}
.ls92{letter-spacing:0.693000px;}
.ls64{letter-spacing:0.726000px;}
.ls7a{letter-spacing:0.792000px;}
.ls79{letter-spacing:0.858000px;}
.ls15{letter-spacing:0.912000px;}
.ls81{letter-spacing:0.924000px;}
.ls60{letter-spacing:0.990000px;}
.ls61{letter-spacing:1.056000px;}
.ls7e{letter-spacing:1.092000px;}
.ls12{letter-spacing:1.094400px;}
.lsf{letter-spacing:1.117200px;}
.ls5e{letter-spacing:1.122000px;}
.ls13{letter-spacing:1.151400px;}
.ls56{letter-spacing:1.188000px;}
.ls8f{letter-spacing:1.254000px;}
.ls5f{letter-spacing:1.320000px;}
.ls6f{letter-spacing:1.386000px;}
.ls5c{letter-spacing:1.518000px;}
.ls5d{letter-spacing:1.584000px;}
.ls85{letter-spacing:1.650000px;}
.ls6e{letter-spacing:1.716000px;}
.ls98{letter-spacing:1.782000px;}
.ls91{letter-spacing:1.980000px;}
.ls80{letter-spacing:4.074000px;}
.ls8a{letter-spacing:8.820000px;}
.ls14{letter-spacing:14.193000px;}
.ls96{letter-spacing:18.240000px;}
.ls97{letter-spacing:24.024000px;}
.ls8b{letter-spacing:31.962000px;}
.ls8c{letter-spacing:32.046000px;}
.ls19{letter-spacing:47.952000px;}
.ls89{letter-spacing:626.598000px;}
.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;}
}
.ws85{word-spacing:-18.216000px;}
.wsaa{word-spacing:-18.150000px;}
.ws86{word-spacing:-17.886000px;}
.wsc8{word-spacing:-17.820000px;}
.wsc7{word-spacing:-17.754000px;}
.ws89{word-spacing:-17.688000px;}
.wsc2{word-spacing:-17.556000px;}
.wsd4{word-spacing:-17.490000px;}
.wsb2{word-spacing:-17.424000px;}
.ws95{word-spacing:-17.358000px;}
.ws96{word-spacing:-17.292000px;}
.wsa4{word-spacing:-17.160000px;}
.wsc5{word-spacing:-17.028000px;}
.ws84{word-spacing:-16.962000px;}
.ws6b{word-spacing:-16.896000px;}
.ws4c{word-spacing:-16.830000px;}
.ws6a{word-spacing:-16.764000px;}
.ws69{word-spacing:-16.698000px;}
.wsc1{word-spacing:-16.632000px;}
.ws67{word-spacing:-16.566000px;}
.ws4d{word-spacing:-16.500000px;}
.ws64{word-spacing:-16.434000px;}
.ws87{word-spacing:-16.368000px;}
.wsa9{word-spacing:-16.302000px;}
.wsb4{word-spacing:-16.236000px;}
.ws94{word-spacing:-16.170000px;}
.ws66{word-spacing:-16.104000px;}
.ws4b{word-spacing:-16.038000px;}
.wsbf{word-spacing:-15.972000px;}
.ws88{word-spacing:-15.906000px;}
.ws4e{word-spacing:-15.840000px;}
.ws83{word-spacing:-15.774000px;}
.wscc{word-spacing:-15.708000px;}
.wsce{word-spacing:-15.642000px;}
.wsa5{word-spacing:-15.576000px;}
.wsc0{word-spacing:-15.510000px;}
.wsbe{word-spacing:-15.444000px;}
.ws65{word-spacing:-15.378000px;}
.wsa2{word-spacing:-15.312000px;}
.ws82{word-spacing:-15.246000px;}
.wsbd{word-spacing:-15.180000px;}
.ws68{word-spacing:-15.048000px;}
.wsc4{word-spacing:-14.850000px;}
.ws81{word-spacing:-14.784000px;}
.ws51{word-spacing:-14.652000px;}
.ws0{word-spacing:-14.535000px;}
.ws48{word-spacing:-14.307000px;}
.ws50{word-spacing:-14.262600px;}
.ws32{word-spacing:-14.250000px;}
.ws1a{word-spacing:-14.193000px;}
.ws43{word-spacing:-14.136000px;}
.ws39{word-spacing:-14.022000px;}
.ws36{word-spacing:-13.959300px;}
.ws2c{word-spacing:-13.908000px;}
.ws4f{word-spacing:-13.860000px;}
.ws31{word-spacing:-13.851000px;}
.ws13{word-spacing:-13.794000px;}
.ws9b{word-spacing:-13.770000px;}
.ws46{word-spacing:-13.731300px;}
.ws49{word-spacing:-13.668600px;}
.ws37{word-spacing:-13.623000px;}
.ws42{word-spacing:-13.577400px;}
.ws4a{word-spacing:-13.566000px;}
.ws23{word-spacing:-13.509000px;}
.ws52{word-spacing:-13.457400px;}
.ws45{word-spacing:-13.452000px;}
.ws3b{word-spacing:-13.395000px;}
.ws40{word-spacing:-13.383600px;}
.ws16{word-spacing:-13.343700px;}
.ws33{word-spacing:-13.338000px;}
.ws2e{word-spacing:-13.286700px;}
.ws19{word-spacing:-13.281000px;}
.ws1d{word-spacing:-13.224000px;}
.ws22{word-spacing:-13.167000px;}
.ws3d{word-spacing:-13.110000px;}
.ws3c{word-spacing:-13.053000px;}
.ws47{word-spacing:-12.927600px;}
.ws34{word-spacing:-12.882000px;}
.ws1b{word-spacing:-12.711000px;}
.ws3e{word-spacing:-12.705300px;}
.ws18{word-spacing:-12.654000px;}
.ws26{word-spacing:-12.597000px;}
.ws1e{word-spacing:-12.540000px;}
.ws2a{word-spacing:-12.534300px;}
.ws1f{word-spacing:-12.483000px;}
.ws3f{word-spacing:-12.477300px;}
.ws29{word-spacing:-12.420300px;}
.wsa3{word-spacing:-12.375000px;}
.ws20{word-spacing:-12.374700px;}
.ws28{word-spacing:-12.312000px;}
.ws53{word-spacing:-12.240000px;}
.ws21{word-spacing:-12.203700px;}
.wsaf{word-spacing:-12.177000px;}
.wsb5{word-spacing:-12.078000px;}
.ws8b{word-spacing:-12.000000px;}
.ws30{word-spacing:-11.856000px;}
.ws2d{word-spacing:-11.685000px;}
.ws2b{word-spacing:-11.622300px;}
.ws9f{word-spacing:-11.592000px;}
.wsb0{word-spacing:-11.583000px;}
.wsd0{word-spacing:-11.550000px;}
.ws54{word-spacing:-11.472000px;}
.ws56{word-spacing:-11.424000px;}
.ws27{word-spacing:-11.354400px;}
.ws25{word-spacing:-11.274600px;}
.ws15{word-spacing:-11.001000px;}
.ws44{word-spacing:-10.773000px;}
.ws1c{word-spacing:-10.767300px;}
.ws41{word-spacing:-10.721700px;}
.ws24{word-spacing:-10.596300px;}
.ws57{word-spacing:-10.560000px;}
.ws17{word-spacing:-10.505100px;}
.ws9d{word-spacing:-10.500000px;}
.ws2f{word-spacing:-10.493700px;}
.wsb6{word-spacing:-10.458000px;}
.ws3a{word-spacing:-10.260000px;}
.ws38{word-spacing:-9.861000px;}
.ws35{word-spacing:-9.177000px;}
.ws55{word-spacing:-9.072000px;}
.ws12{word-spacing:-7.392000px;}
.ws14{word-spacing:-6.840000px;}
.ws8e{word-spacing:-0.858000px;}
.ws61{word-spacing:-0.792000px;}
.wsc{word-spacing:-0.741000px;}
.ws7e{word-spacing:-0.726000px;}
.ws1{word-spacing:-0.684000px;}
.ws5f{word-spacing:-0.660000px;}
.wsb{word-spacing:-0.627000px;}
.ws7f{word-spacing:-0.594000px;}
.ws62{word-spacing:-0.576000px;}
.ws77{word-spacing:-0.528000px;}
.ws6{word-spacing:-0.513000px;}
.ws74{word-spacing:-0.462000px;}
.wsd{word-spacing:-0.456000px;}
.ws7{word-spacing:-0.399000px;}
.ws72{word-spacing:-0.396000px;}
.ws6e{word-spacing:-0.330000px;}
.ws3{word-spacing:-0.285000px;}
.ws7c{word-spacing:-0.264000px;}
.ws78{word-spacing:-0.198000px;}
.wse{word-spacing:-0.171000px;}
.ws8f{word-spacing:-0.132000px;}
.ws4{word-spacing:-0.114000px;}
.ws6d{word-spacing:-0.066000px;}
.ws5{word-spacing:-0.057000px;}
.wsa{word-spacing:0.000000px;}
.ws5a{word-spacing:0.057000px;}
.ws91{word-spacing:0.066000px;}
.ws90{word-spacing:0.132000px;}
.wsa0{word-spacing:0.162000px;}
.ws73{word-spacing:0.198000px;}
.ws8{word-spacing:0.228000px;}
.ws60{word-spacing:0.264000px;}
.wsa7{word-spacing:0.330000px;}
.ws75{word-spacing:0.396000px;}
.ws7b{word-spacing:0.462000px;}
.ws8d{word-spacing:0.528000px;}
.wsb3{word-spacing:0.594000px;}
.wsf{word-spacing:0.627000px;}
.ws79{word-spacing:0.660000px;}
.ws59{word-spacing:0.684000px;}
.ws99{word-spacing:0.726000px;}
.ws92{word-spacing:0.792000px;}
.ws7d{word-spacing:0.858000px;}
.ws5e{word-spacing:0.912000px;}
.wsa8{word-spacing:0.924000px;}
.ws80{word-spacing:0.990000px;}
.ws5d{word-spacing:1.026000px;}
.ws93{word-spacing:1.056000px;}
.wsd5{word-spacing:1.062600px;}
.ws58{word-spacing:1.071600px;}
.wsd2{word-spacing:1.108800px;}
.ws76{word-spacing:1.122000px;}
.ws9{word-spacing:1.140000px;}
.ws6c{word-spacing:1.188000px;}
.ws5b{word-spacing:1.197000px;}
.wsca{word-spacing:1.237500px;}
.ws5c{word-spacing:1.254000px;}
.wsa1{word-spacing:1.260000px;}
.ws10{word-spacing:1.311000px;}
.ws98{word-spacing:1.320000px;}
.ws11{word-spacing:1.368000px;}
.ws7a{word-spacing:1.386000px;}
.ws2{word-spacing:1.425000px;}
.ws70{word-spacing:1.452000px;}
.ws6f{word-spacing:1.518000px;}
.ws71{word-spacing:1.584000px;}
.ws8c{word-spacing:1.650000px;}
.wsad{word-spacing:3.301500px;}
.wscf{word-spacing:3.366000px;}
.wsae{word-spacing:3.547500px;}
.wsc3{word-spacing:3.777000px;}
.ws97{word-spacing:3.915000px;}
.wsc6{word-spacing:4.422000px;}
.ws9a{word-spacing:4.423500px;}
.wscd{word-spacing:4.620000px;}
.wsd6{word-spacing:4.818000px;}
.wsac{word-spacing:4.939500px;}
.wsbc{word-spacing:5.040000px;}
.wscb{word-spacing:5.085000px;}
.wsa6{word-spacing:5.331000px;}
.wsab{word-spacing:5.455500px;}
.wsb1{word-spacing:5.610000px;}
.wsc9{word-spacing:6.204000px;}
.wsd1{word-spacing:7.524000px;}
.wsd7{word-spacing:9.306000px;}
.wsd3{word-spacing:10.164000px;}
.ws8a{word-spacing:35.712000px;}
.wsba{word-spacing:38.892000px;}
.wsbb{word-spacing:51.324000px;}
.wsb7{word-spacing:93.912000px;}
.wsb8{word-spacing:109.074000px;}
.ws9c{word-spacing:160.032000px;}
.ws9e{word-spacing:160.608000px;}
.wsb9{word-spacing:299.796000px;}
.ws63{word-spacing:1021.152000px;}
._d{margin-left:-10.230000px;}
._c{margin-left:-8.382000px;}
._6{margin-left:-6.966000px;}
._8{margin-left:-5.742000px;}
._9{margin-left:-4.488000px;}
._3{margin-left:-3.477000px;}
._1{margin-left:-2.052000px;}
._5{margin-left:-1.026000px;}
._2{width:1.026000px;}
._0{width:2.166000px;}
._19{width:3.762000px;}
._14{width:7.098000px;}
._4{width:13.509000px;}
._1d{width:24.024000px;}
._7{width:47.685000px;}
._b{width:48.696000px;}
._18{width:180.012000px;}
._17{width:184.002000px;}
._16{width:185.682000px;}
._f{width:187.968000px;}
._15{width:198.660000px;}
._13{width:214.080000px;}
._10{width:216.000000px;}
._12{width:231.120000px;}
._11{width:233.472000px;}
._1b{width:384.636000px;}
._1c{width:402.864000px;}
._a{width:494.742000px;}
._1a{width:721.434000px;}
._e{width:1033.848000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:42.000000px;}
.fs8{font-size:46.200000px;}
.fs2{font-size:48.000000px;}
.fs6{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:0.646500px;}
.y50{bottom:1.396500px;}
.y48{bottom:2.146500px;}
.y4a{bottom:2.896500px;}
.y4e{bottom:3.646500px;}
.y139{bottom:54.090000px;}
.yca{bottom:54.667500px;}
.y1d{bottom:54.870000px;}
.yf8{bottom:54.892500px;}
.ybd{bottom:54.987000px;}
.y43{bottom:55.015500px;}
.y1ca{bottom:55.072500px;}
.y1e9{bottom:55.099500px;}
.y1f9{bottom:55.149000px;}
.yad{bottom:55.165500px;}
.y17a{bottom:55.182000px;}
.y1ac{bottom:55.192500px;}
.y85{bottom:55.215000px;}
.y22a{bottom:55.231500px;}
.y208{bottom:55.512000px;}
.y129{bottom:55.891500px;}
.y182{bottom:55.924500px;}
.y1f0{bottom:56.385000px;}
.y138{bottom:71.332500px;}
.yc9{bottom:71.910000px;}
.y104{bottom:72.172500px;}
.ybc{bottom:72.229500px;}
.y42{bottom:72.258000px;}
.y1c9{bottom:72.315000px;}
.yf7{bottom:72.334500px;}
.y1e8{bottom:72.342000px;}
.y1f8{bottom:72.391500px;}
.yac{bottom:72.408000px;}
.y179{bottom:72.424500px;}
.y1ab{bottom:72.435000px;}
.y84{bottom:72.457500px;}
.y229{bottom:72.474000px;}
.y207{bottom:72.754500px;}
.y128{bottom:73.134000px;}
.y181{bottom:73.167000px;}
.y1ef{bottom:73.627500px;}
.y137{bottom:88.575000px;}
.yc8{bottom:89.152500px;}
.y103{bottom:89.415000px;}
.y41{bottom:89.500500px;}
.yf6{bottom:89.577000px;}
.y1e7{bottom:89.584500px;}
.y1f7{bottom:89.634000px;}
.yab{bottom:89.650500px;}
.y178{bottom:89.667000px;}
.y1aa{bottom:89.677500px;}
.y83{bottom:89.700000px;}
.y228{bottom:89.716500px;}
.y127{bottom:90.376500px;}
.y180{bottom:90.409500px;}
.y1ee{bottom:90.870000px;}
.ybb{bottom:98.101500px;}
.y1c8{bottom:98.187000px;}
.y206{bottom:99.385500px;}
.y136{bottom:105.817500px;}
.yc7{bottom:106.395000px;}
.y102{bottom:106.657500px;}
.y40{bottom:106.743000px;}
.yf5{bottom:106.819500px;}
.y1e6{bottom:106.827000px;}
.y1f6{bottom:106.876500px;}
.yaa{bottom:106.893000px;}
.y177{bottom:106.909500px;}
.y1a9{bottom:106.920000px;}
.y82{bottom:106.942500px;}
.y227{bottom:106.959000px;}
.y126{bottom:107.619000px;}
.y17f{bottom:107.652000px;}
.y1ed{bottom:108.112500px;}
.y219{bottom:115.522500px;}
.y1c{bottom:115.681500px;}
.y135{bottom:123.060000px;}
.yc6{bottom:123.637500px;}
.y101{bottom:123.900000px;}
.yf4{bottom:124.062000px;}
.y1e5{bottom:124.069500px;}
.ya9{bottom:124.135500px;}
.y176{bottom:124.152000px;}
.y1a8{bottom:124.162500px;}
.y81{bottom:124.185000px;}
.y226{bottom:124.201500px;}
.y125{bottom:124.861500px;}
.y17e{bottom:124.894500px;}
.y1ec{bottom:125.355000px;}
.y205{bottom:130.504500px;}
.y3f{bottom:132.615000px;}
.y1f5{bottom:132.748500px;}
.y1b{bottom:136.686000px;}
.y134{bottom:140.302500px;}
.yc5{bottom:140.880000px;}
.y100{bottom:141.142500px;}
.yba{bottom:141.232500px;}
.yf3{bottom:141.304500px;}
.y1e4{bottom:141.312000px;}
.y1c7{bottom:141.318000px;}
.ya8{bottom:141.378000px;}
.y175{bottom:141.394500px;}
.y1a7{bottom:141.405000px;}
.y80{bottom:141.427500px;}
.y225{bottom:141.444000px;}
.y124{bottom:142.104000px;}
.y17d{bottom:142.137000px;}
.y1eb{bottom:142.597500px;}
.y1a{bottom:151.691250px;}
.y133{bottom:157.612500px;}
.yc4{bottom:158.122500px;}
.yff{bottom:158.400000px;}
.yb9{bottom:158.475000px;}
.yf2{bottom:158.547000px;}
.y1e3{bottom:158.554500px;}
.y1c6{bottom:158.560500px;}
.ya7{bottom:158.620500px;}
.y174{bottom:158.637000px;}
.y1a6{bottom:158.647500px;}
.y218{bottom:158.653500px;}
.y7f{bottom:158.670000px;}
.y224{bottom:158.686500px;}
.y1ea{bottom:159.840000px;}
.y19{bottom:166.696500px;}
.y123{bottom:167.976000px;}
.y17c{bottom:168.009000px;}
.y204{bottom:174.378000px;}
.y132{bottom:174.855000px;}
.yc3{bottom:175.365000px;}
.yfe{bottom:175.642500px;}
.yb8{bottom:175.717500px;}
.yf1{bottom:175.789500px;}
.y1e2{bottom:175.797000px;}
.y1c5{bottom:175.803000px;}
.ya6{bottom:175.863000px;}
.y173{bottom:175.879500px;}
.y1a5{bottom:175.890000px;}
.y217{bottom:175.896000px;}
.y7e{bottom:175.912500px;}
.y223{bottom:175.929000px;}
.y18{bottom:181.701750px;}
.y203{bottom:191.620500px;}
.y53{bottom:192.000000px;}
.y131{bottom:192.097500px;}
.yc2{bottom:192.607500px;}
.yfd{bottom:192.907500px;}
.yb7{bottom:192.960000px;}
.yf0{bottom:193.032000px;}
.y1e1{bottom:193.039500px;}
.y1c4{bottom:193.045500px;}
.y172{bottom:193.122000px;}
.y1a4{bottom:193.132500px;}
.y216{bottom:193.138500px;}
.y7d{bottom:193.155000px;}
.y222{bottom:193.171500px;}
.y17{bottom:196.707000px;}
.y1f1{bottom:199.740000px;}
.y122{bottom:201.718500px;}
.ya5{bottom:201.735000px;}
.y17b{bottom:201.751500px;}
.y52{bottom:205.500000px;}
.y202{bottom:208.863000px;}
.y130{bottom:209.340000px;}
.yc1{bottom:209.872500px;}
.yfc{bottom:210.150000px;}
.yb6{bottom:210.202500px;}
.yef{bottom:210.274500px;}
.y1e0{bottom:210.282000px;}
.y1c3{bottom:210.288000px;}
.y171{bottom:210.364500px;}
.y1a3{bottom:210.375000px;}
.y215{bottom:210.381000px;}
.y7c{bottom:210.397500px;}
.y16{bottom:211.712250px;}
.y59{bottom:217.500000px;}
.y221{bottom:221.898000px;}
.y51{bottom:225.000000px;}
.y201{bottom:226.105500px;}
.y12f{bottom:226.582500px;}
.y15{bottom:226.717500px;}
.yc0{bottom:227.115000px;}
.yfb{bottom:227.392500px;}
.yb5{bottom:227.445000px;}
.yee{bottom:227.517000px;}
.y1df{bottom:227.524500px;}
.y1c2{bottom:227.530500px;}
.y170{bottom:227.607000px;}
.y1a2{bottom:227.617500px;}
.y214{bottom:227.623500px;}
.y7b{bottom:227.640000px;}
.y58{bottom:234.000000px;}
.y1f4{bottom:237.142500px;}
.y14{bottom:241.722750px;}
.y200{bottom:243.348000px;}
.y12e{bottom:243.825000px;}
.ybf{bottom:244.357500px;}
.y4f{bottom:244.500000px;}
.yb4{bottom:244.687500px;}
.yed{bottom:244.759500px;}
.y1de{bottom:244.767000px;}
.y1c1{bottom:244.773000px;}
.y121{bottom:244.849500px;}
.y1a1{bottom:244.860000px;}
.ya4{bottom:244.866000px;}
.y7a{bottom:244.882500px;}
.y57{bottom:246.000000px;}
.y220{bottom:250.624500px;}
.y46{bottom:251.605500px;}
.y183{bottom:253.479000px;}
.y13{bottom:256.728000px;}
.y1ff{bottom:260.590500px;}
.y12d{bottom:261.067500px;}
.ybe{bottom:261.600000px;}
.yb3{bottom:261.930000px;}
.yec{bottom:262.002000px;}
.y1dd{bottom:262.009500px;}
.y1c0{bottom:262.015500px;}
.y120{bottom:262.092000px;}
.y1a0{bottom:262.102500px;}
.ya3{bottom:262.108500px;}
.y79{bottom:262.125000px;}
.y4d{bottom:264.000000px;}
.y56{bottom:267.000000px;}
.y21f{bottom:267.867000px;}
.y12{bottom:271.733250px;}
.y1fe{bottom:277.833000px;}
.y12c{bottom:278.310000px;}
.yb2{bottom:279.172500px;}
.yeb{bottom:279.244500px;}
.y1dc{bottom:279.252000px;}
.y1bf{bottom:279.258000px;}
.y11f{bottom:279.334500px;}
.y19f{bottom:279.345000px;}
.ya2{bottom:279.351000px;}
.y78{bottom:279.367500px;}
.y4b{bottom:283.500000px;}
.y11{bottom:286.738500px;}
.y1f3{bottom:293.454000px;}
.y1fd{bottom:295.075500px;}
.y12b{bottom:295.552500px;}
.yb1{bottom:296.415000px;}
.yea{bottom:296.487000px;}
.y1db{bottom:296.494500px;}
.y1be{bottom:296.500500px;}
.y11e{bottom:296.577000px;}
.y19e{bottom:296.587500px;}
.ya1{bottom:296.593500px;}
.y77{bottom:296.610000px;}
.y49{bottom:297.000000px;}
.y10{bottom:301.743750px;}
.y45{bottom:302.620500px;}
.y55{bottom:304.500000px;}
.y1fc{bottom:312.318000px;}
.y12a{bottom:312.795000px;}
.yb0{bottom:313.657500px;}
.y1da{bottom:313.737000px;}
.y1bd{bottom:313.743000px;}
.y11d{bottom:313.819500px;}
.y19d{bottom:313.830000px;}
.ya0{bottom:313.836000px;}
.y76{bottom:313.852500px;}
.ycb{bottom:315.825000px;}
.y47{bottom:319.500000px;}
.y54{bottom:321.000000px;}
.ye9{bottom:322.359000px;}
.y213{bottom:322.465500px;}
.y1fb{bottom:329.560500px;}
.yaf{bottom:330.900000px;}
.y1d9{bottom:330.979500px;}
.y1bc{bottom:330.985500px;}
.y11c{bottom:331.062000px;}
.y19c{bottom:331.072500px;}
.y9f{bottom:331.078500px;}
.y75{bottom:331.095000px;}
.yf{bottom:331.740000px;}
.y212{bottom:339.708000px;}
.yae{bottom:348.142500px;}
.y1d8{bottom:348.222000px;}
.y1bb{bottom:348.228000px;}
.y11b{bottom:348.304500px;}
.y19b{bottom:348.315000px;}
.y9e{bottom:348.321000px;}
.y74{bottom:348.337500px;}
.y44{bottom:348.735000px;}
.y1fa{bottom:356.191500px;}
.y211{bottom:356.950500px;}
.y1d7{bottom:365.464500px;}
.y1ba{bottom:365.470500px;}
.ye8{bottom:365.490000px;}
.yfa{bottom:365.547000px;}
.y19a{bottom:365.557500px;}
.y9d{bottom:365.563500px;}
.y73{bottom:365.580000px;}
.ye{bottom:367.677750px;}
.y13a{bottom:367.815000px;}
.yd4{bottom:367.966500px;}
.yd3{bottom:372.750000px;}
.y210{bottom:374.193000px;}
.y1b9{bottom:382.713000px;}
.ye7{bottom:382.732500px;}
.y11a{bottom:382.789500px;}
.y199{bottom:382.800000px;}
.y9c{bottom:382.806000px;}
.y72{bottom:382.822500px;}
.yd{bottom:388.682250px;}
.y3e{bottom:390.885000px;}
.y1d6{bottom:391.336500px;}
.yf9{bottom:391.419000px;}
.y20f{bottom:391.435500px;}
.y1b8{bottom:399.955500px;}
.ye6{bottom:399.975000px;}
.y119{bottom:400.032000px;}
.y198{bottom:400.042500px;}
.y9b{bottom:400.048500px;}
.y71{bottom:400.065000px;}
.yc{bottom:403.687500px;}
.y20e{bottom:408.678000px;}
.y3d{bottom:411.846750px;}
.yd2{bottom:412.377000px;}
.y15f{bottom:414.412500px;}
.y1b7{bottom:417.198000px;}
.ye5{bottom:417.217500px;}
.y118{bottom:417.274500px;}
.y197{bottom:417.285000px;}
.y9a{bottom:417.291000px;}
.y70{bottom:417.307500px;}
.yb{bottom:418.692750px;}
.y20d{bottom:425.920500px;}
.y3c{bottom:426.852000px;}
.y167{bottom:431.055000px;}
.y169{bottom:431.370000px;}
.y166{bottom:433.543500px;}
.ya{bottom:433.698000px;}
.y1b6{bottom:434.440500px;}
.ye4{bottom:434.460000px;}
.y1d5{bottom:434.467500px;}
.y117{bottom:434.517000px;}
.y196{bottom:434.527500px;}
.y99{bottom:434.533500px;}
.y6f{bottom:434.550000px;}
.y16c{bottom:436.987500px;}
.y164{bottom:438.415500px;}
.y161{bottom:438.520500px;}
.y3b{bottom:441.857250px;}
.y144{bottom:441.999000px;}
.y20c{bottom:443.163000px;}
.y168{bottom:443.371500px;}
.y9{bottom:448.703250px;}
.y1b5{bottom:451.683000px;}
.ye3{bottom:451.702500px;}
.y1d4{bottom:451.710000px;}
.y116{bottom:451.759500px;}
.y195{bottom:451.770000px;}
.y98{bottom:451.776000px;}
.y6e{bottom:451.792500px;}
.yd1{bottom:452.025000px;}
.y143{bottom:454.000500px;}
.y3a{bottom:456.862500px;}
.y16f{bottom:460.389000px;}
.y20b{bottom:460.405500px;}
.yd9{bottom:460.539000px;}
.y8{bottom:463.708500px;}
.yd5{bottom:468.435000px;}
.y1b4{bottom:468.925500px;}
.ye2{bottom:468.945000px;}
.y1d3{bottom:468.952500px;}
.y115{bottom:469.002000px;}
.y194{bottom:469.012500px;}
.y97{bottom:469.018500px;}
.y6d{bottom:469.035000px;}
.y39{bottom:471.867750px;}
.yd8{bottom:472.540500px;}
.y20a{bottom:477.648000px;}
.y165{bottom:478.200000px;}
.y7{bottom:478.713750px;}
.y14c{bottom:479.409000px;}
.y152{bottom:483.229500px;}
.y16a{bottom:483.765000px;}
.y1b3{bottom:486.168000px;}
.ye1{bottom:486.187500px;}
.y1d2{bottom:486.195000px;}
.y114{bottom:486.244500px;}
.y193{bottom:486.255000px;}
.y96{bottom:486.261000px;}
.y6c{bottom:486.277500px;}
.y38{bottom:486.873000px;}
.y160{bottom:488.017500px;}
.y14b{bottom:491.400000px;}
.yd0{bottom:491.652000px;}
.y6{bottom:493.719000px;}
.y209{bottom:494.890500px;}
.y37{bottom:501.878250px;}
.y1b2{bottom:503.410500px;}
.ye0{bottom:503.430000px;}
.y1d1{bottom:503.437500px;}
.y113{bottom:503.487000px;}
.y192{bottom:503.497500px;}
.y95{bottom:503.503500px;}
.y6b{bottom:503.520000px;}
.yd7{bottom:508.020000px;}
.y5{bottom:508.724250px;}
.y22b{bottom:512.116500px;}
.yda{bottom:513.501000px;}
.y16b{bottom:514.330500px;}
.y14a{bottom:516.414000px;}
.y36{bottom:516.883500px;}
.yd6{bottom:520.021500px;}
.y1b1{bottom:520.653000px;}
.ydf{bottom:520.672500px;}
.y1d0{bottom:520.680000px;}
.y112{bottom:520.729500px;}
.y191{bottom:520.740000px;}
.y94{bottom:520.746000px;}
.y6a{bottom:520.762500px;}
.y16d{bottom:522.835500px;}
.y4{bottom:523.729500px;}
.y163{bottom:524.337000px;}
.y149{bottom:528.405000px;}
.ycf{bottom:531.300000px;}
.y35{bottom:531.888750px;}
.y162{bottom:536.338500px;}
.y1b0{bottom:537.895500px;}
.yde{bottom:537.915000px;}
.y1cf{bottom:537.922500px;}
.y111{bottom:537.972000px;}
.y190{bottom:537.982500px;}
.y93{bottom:537.988500px;}
.y69{bottom:538.005000px;}
.y3{bottom:538.734750px;}
.y153{bottom:541.536000px;}
.y14e{bottom:552.549000px;}
.y2{bottom:553.740000px;}
.y1af{bottom:555.138000px;}
.ydd{bottom:555.157500px;}
.y1ce{bottom:555.165000px;}
.y110{bottom:555.214500px;}
.y18f{bottom:555.225000px;}
.y92{bottom:555.231000px;}
.y68{bottom:555.247500px;}
.y16e{bottom:560.310000px;}
.y34{bottom:561.885000px;}
.y14d{bottom:564.540000px;}
.y148{bottom:565.509000px;}
.yce{bottom:570.927000px;}
.ydc{bottom:572.400000px;}
.y1cd{bottom:572.407500px;}
.y10f{bottom:572.457000px;}
.y18e{bottom:572.467500px;}
.y91{bottom:572.473500px;}
.y67{bottom:572.490000px;}
.y1f2{bottom:574.035000px;}
.y147{bottom:577.500000px;}
.y1ae{bottom:581.010000px;}
.y1{bottom:583.740000px;}
.ydb{bottom:589.642500px;}
.y1cc{bottom:589.650000px;}
.y10e{bottom:589.699500px;}
.y18d{bottom:589.710000px;}
.y90{bottom:589.716000px;}
.y66{bottom:589.732500px;}
.y13c{bottom:595.939500px;}
.y33{bottom:597.826500px;}
.y1ad{bottom:598.329000px;}
.y1cb{bottom:606.892500px;}
.y10d{bottom:606.942000px;}
.y18c{bottom:606.952500px;}
.y8f{bottom:606.958500px;}
.y65{bottom:606.975000px;}
.ycd{bottom:610.575000px;}
.y21e{bottom:615.588000px;}
.y32{bottom:618.831000px;}
.y10c{bottom:624.184500px;}
.y18b{bottom:624.195000px;}
.y8e{bottom:624.201000px;}
.y64{bottom:624.217500px;}
.y15e{bottom:624.381000px;}
.y24{bottom:624.384000px;}
.y21d{bottom:632.830500px;}
.y31{bottom:633.836250px;}
.y23{bottom:638.640000px;}
.y154{bottom:639.742500px;}
.y10b{bottom:641.427000px;}
.y18a{bottom:641.437500px;}
.y8d{bottom:641.443500px;}
.y63{bottom:641.460000px;}
.y15c{bottom:644.016000px;}
.y140{bottom:647.736000px;}
.y142{bottom:648.156000px;}
.y30{bottom:648.841500px;}
.y21c{bottom:650.073000px;}
.y10a{bottom:658.669500px;}
.y189{bottom:658.680000px;}
.y8c{bottom:658.686000px;}
.y62{bottom:658.702500px;}
.y15d{bottom:663.514500px;}
.y2f{bottom:663.846750px;}
.y21b{bottom:667.315500px;}
.y146{bottom:675.849000px;}
.y109{bottom:675.912000px;}
.y188{bottom:675.922500px;}
.y8b{bottom:675.928500px;}
.y61{bottom:675.945000px;}
.y2e{bottom:678.852000px;}
.y21a{bottom:684.558000px;}
.y141{bottom:686.239500px;}
.y145{bottom:687.840000px;}
.y108{bottom:693.154500px;}
.y187{bottom:693.165000px;}
.y8a{bottom:693.171000px;}
.y60{bottom:693.187500px;}
.y2d{bottom:693.857250px;}
.y151{bottom:701.241000px;}
.y150{bottom:704.349000px;}
.y156{bottom:706.533000px;}
.y2c{bottom:708.862500px;}
.y107{bottom:710.397000px;}
.y186{bottom:710.407500px;}
.y89{bottom:710.413500px;}
.y5f{bottom:710.430000px;}
.y14f{bottom:716.340000px;}
.y13f{bottom:719.734500px;}
.y2b{bottom:723.867750px;}
.y106{bottom:727.639500px;}
.y185{bottom:727.650000px;}
.y88{bottom:727.656000px;}
.y5e{bottom:727.672500px;}
.y15b{bottom:730.504500px;}
.y22{bottom:732.849000px;}
.y2a{bottom:738.873000px;}
.y15a{bottom:741.004500px;}
.y184{bottom:744.892500px;}
.y87{bottom:744.898500px;}
.y5d{bottom:744.915000px;}
.y21{bottom:747.105000px;}
.y105{bottom:753.511500px;}
.y29{bottom:753.878250px;}
.y13d{bottom:754.563000px;}
.y5c{bottom:762.157500px;}
.y20{bottom:765.105000px;}
.y28{bottom:768.883500px;}
.y86{bottom:770.770500px;}
.y157{bottom:771.979500px;}
.y13e{bottom:774.019500px;}
.y5b{bottom:779.400000px;}
.y155{bottom:781.398000px;}
.y27{bottom:783.888750px;}
.y159{bottom:785.272500px;}
.y158{bottom:795.772500px;}
.y5a{bottom:796.642500px;}
.y1f{bottom:810.105000px;}
.y26{bottom:813.885000px;}
.ycc{bottom:818.580000px;}
.y13b{bottom:823.905000px;}
.y1e{bottom:861.105000px;}
.y25{bottom:924.000000px;}
.hc{height:10.500000px;}
.he{height:12.000000px;}
.h9{height:13.500000px;}
.hb{height:15.000000px;}
.hd{height:16.500000px;}
.h10{height:44.814000px;}
.h13{height:46.452000px;}
.h7{height:47.085938px;}
.h4{height:51.216000px;}
.ha{height:52.998047px;}
.h11{height:54.852000px;}
.h3{height:57.618000px;}
.h1{height:60.819000px;}
.h2{height:61.788000px;}
.h8{height:70.422000px;}
.h14{height:71.075400px;}
.hf{height:71.544000px;}
.h6{height:76.824000px;}
.h12{height:82.866000px;}
.h5{height:102.432000px;}
.h0{height:894.000000px;}
.wc{width:135.000000px;}
.w1{width:148.500000px;}
.wf{width:168.000000px;}
.wa{width:186.000000px;}
.w9{width:187.500000px;}
.w2{width:189.000000px;}
.w8{width:193.500000px;}
.w3{width:201.000000px;}
.w4{width:205.500000px;}
.w6{width:207.000000px;}
.we{width:222.000000px;}
.wb{width:223.500000px;}
.wd{width:252.000000px;}
.w5{width:259.500000px;}
.w7{width:282.000000px;}
.w0{width:636.000000px;}
.xf{left:-4.092150px;}
.x0{left:0.000000px;}
.x19{left:1.500000px;}
.x5{left:6.000000px;}
.x15{left:25.500000px;}
.x11{left:33.400650px;}
.xd{left:40.525350px;}
.x12{left:46.500000px;}
.x16{left:60.801450px;}
.x13{left:73.901850px;}
.x1{left:76.200000px;}
.x6{left:77.415000px;}
.xb{left:86.265150px;}
.x33{left:90.793500px;}
.x1b{left:93.409500px;}
.x1c{left:94.674000px;}
.x14{left:96.014850px;}
.x10{left:100.500000px;}
.x34{left:105.325500px;}
.xe{left:106.500000px;}
.x17{left:111.000000px;}
.x1f{left:112.293000px;}
.x9{left:113.319450px;}
.xc{left:117.000000px;}
.x48{left:122.223000px;}
.x20{left:124.200000px;}
.x1e{left:127.560000px;}
.x1d{left:154.620000px;}
.xa{left:156.000000px;}
.x8{left:158.534700px;}
.x26{left:169.494000px;}
.x21{left:174.150000px;}
.x45{left:186.763500px;}
.x46{left:225.267000px;}
.x43{left:234.759000px;}
.x24{left:242.253000px;}
.x44{left:259.644000px;}
.x35{left:277.242000px;}
.x27{left:287.241000px;}
.x7{left:300.240000px;}
.x25{left:307.275000px;}
.x3f{left:326.161500px;}
.x18{left:333.000000px;}
.x1a{left:334.500000px;}
.x3c{left:337.942500px;}
.x42{left:342.079500px;}
.x2{left:391.110000px;}
.x4{left:393.405000px;}
.x30{left:402.180000px;}
.x36{left:403.599000px;}
.x3{left:407.715000px;}
.x40{left:412.692000px;}
.x41{left:417.585000px;}
.x3b{left:423.727500px;}
.x3e{left:432.463500px;}
.x3a{left:435.687000px;}
.x37{left:440.370000px;}
.x47{left:442.596000px;}
.x23{left:453.712500px;}
.x3d{left:464.352000px;}
.x38{left:469.707000px;}
.x2d{left:470.850000px;}
.x39{left:474.264000px;}
.x2f{left:484.590000px;}
.x2c{left:492.225000px;}
.x2b{left:494.850000px;}
.x2e{left:499.095000px;}
.x22{left:504.091500px;}
.x2a{left:514.125000px;}
.x28{left:516.624000px;}
.x29{left:518.755500px;}
.x32{left:521.220000px;}
.x31{left:523.845000px;}
@media print{
.v4{vertical-align:-87.472000pt;}
.v9{vertical-align:-55.141333pt;}
.v3{vertical-align:-51.893333pt;}
.v1{vertical-align:-47.301333pt;}
.v7{vertical-align:-42.522667pt;}
.v8{vertical-align:-28.634667pt;}
.v6{vertical-align:-21.317333pt;}
.v5{vertical-align:-5.264000pt;}
.ve{vertical-align:-0.970667pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.456000pt;}
.v2{vertical-align:8.922667pt;}
.vd{vertical-align:18.389333pt;}
.vc{vertical-align:19.360000pt;}
.va{vertical-align:33.824000pt;}
.ls1b{letter-spacing:-6.586667pt;}
.ls38{letter-spacing:-4.509333pt;}
.ls3a{letter-spacing:-3.901333pt;}
.ls3b{letter-spacing:-3.546667pt;}
.ls36{letter-spacing:-3.338933pt;}
.ls1f{letter-spacing:-3.328800pt;}
.ls2c{letter-spacing:-3.247733pt;}
.ls42{letter-spacing:-3.136267pt;}
.ls23{letter-spacing:-3.095733pt;}
.ls44{letter-spacing:-3.090667pt;}
.ls1c{letter-spacing:-2.888000pt;}
.ls50{letter-spacing:-2.704533pt;}
.ls2d{letter-spacing:-2.644800pt;}
.ls52{letter-spacing:-2.602667pt;}
.ls2f{letter-spacing:-2.573867pt;}
.ls4c{letter-spacing:-2.346667pt;}
.ls33{letter-spacing:-2.335733pt;}
.ls34{letter-spacing:-2.280000pt;}
.ls37{letter-spacing:-2.128000pt;}
.ls71{letter-spacing:-1.994667pt;}
.ls4d{letter-spacing:-1.988800pt;}
.ls29{letter-spacing:-1.818933pt;}
.ls30{letter-spacing:-1.722667pt;}
.ls28{letter-spacing:-1.666933pt;}
.ls4f{letter-spacing:-1.642667pt;}
.ls31{letter-spacing:-1.626400pt;}
.ls93{letter-spacing:-1.584000pt;}
.ls40{letter-spacing:-1.575733pt;}
.ls27{letter-spacing:-1.570667pt;}
.ls75{letter-spacing:-1.525333pt;}
.ls32{letter-spacing:-1.525067pt;}
.ls26{letter-spacing:-1.520000pt;}
.ls2e{letter-spacing:-1.469333pt;}
.ls7b{letter-spacing:-1.466667pt;}
.ls21{letter-spacing:-1.418667pt;}
.ls87{letter-spacing:-1.408000pt;}
.ls3f{letter-spacing:-1.373067pt;}
.ls22{letter-spacing:-1.368000pt;}
.ls73{letter-spacing:-1.349333pt;}
.ls6a{letter-spacing:-1.290667pt;}
.ls54{letter-spacing:-1.280000pt;}
.ls94{letter-spacing:-1.232000pt;}
.lsc{letter-spacing:-1.216000pt;}
.ls47{letter-spacing:-1.175467pt;}
.ls83{letter-spacing:-1.173333pt;}
.ls76{letter-spacing:-1.114667pt;}
.ls3d{letter-spacing:-1.064000pt;}
.ls7c{letter-spacing:-1.056000pt;}
.ls3e{letter-spacing:-1.013333pt;}
.ls67{letter-spacing:-0.997333pt;}
.ls2a{letter-spacing:-0.962667pt;}
.ls4e{letter-spacing:-0.938667pt;}
.ls25{letter-spacing:-0.912000pt;}
.ls77{letter-spacing:-0.880000pt;}
.ls20{letter-spacing:-0.861333pt;}
.ls35{letter-spacing:-0.856267pt;}
.ls84{letter-spacing:-0.821333pt;}
.ls8{letter-spacing:-0.810667pt;}
.ls1e{letter-spacing:-0.805600pt;}
.ls41{letter-spacing:-0.770133pt;}
.ls72{letter-spacing:-0.762667pt;}
.ls3c{letter-spacing:-0.760000pt;}
.ls45{letter-spacing:-0.709333pt;}
.ls49{letter-spacing:-0.704000pt;}
.ls1a{letter-spacing:-0.658667pt;}
.ls6b{letter-spacing:-0.645333pt;}
.lse{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.608000pt;}
.ls43{letter-spacing:-0.597867pt;}
.ls4a{letter-spacing:-0.586667pt;}
.ls5{letter-spacing:-0.557333pt;}
.ls74{letter-spacing:-0.528000pt;}
.ls48{letter-spacing:-0.516800pt;}
.ls53{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.506667pt;}
.ls7f{letter-spacing:-0.480000pt;}
.ls51{letter-spacing:-0.469333pt;}
.ls46{letter-spacing:-0.461067pt;}
.ls24{letter-spacing:-0.456000pt;}
.ls90{letter-spacing:-0.440000pt;}
.ls66{letter-spacing:-0.410667pt;}
.ls4{letter-spacing:-0.354667pt;}
.ls68{letter-spacing:-0.352000pt;}
.ls2b{letter-spacing:-0.304000pt;}
.ls69{letter-spacing:-0.293333pt;}
.ls8d{letter-spacing:-0.264000pt;}
.ls39{letter-spacing:-0.258400pt;}
.ls1d{letter-spacing:-0.253333pt;}
.ls6c{letter-spacing:-0.234667pt;}
.ls7{letter-spacing:-0.202667pt;}
.ls4b{letter-spacing:-0.176000pt;}
.lsa{letter-spacing:-0.152000pt;}
.ls78{letter-spacing:-0.117333pt;}
.ls9{letter-spacing:-0.101333pt;}
.ls88{letter-spacing:-0.088000pt;}
.ls65{letter-spacing:-0.058667pt;}
.ls3{letter-spacing:-0.050667pt;}
.ls7d{letter-spacing:-0.044000pt;}
.lsd{letter-spacing:-0.042667pt;}
.ls8e{letter-spacing:-0.037333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.050667pt;}
.ls95{letter-spacing:0.053333pt;}
.ls58{letter-spacing:0.058667pt;}
.ls18{letter-spacing:0.076267pt;}
.ls55{letter-spacing:0.117333pt;}
.ls5b{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.202667pt;}
.ls5a{letter-spacing:0.234667pt;}
.ls86{letter-spacing:0.264000pt;}
.ls63{letter-spacing:0.293333pt;}
.ls82{letter-spacing:0.308000pt;}
.ls62{letter-spacing:0.352000pt;}
.ls11{letter-spacing:0.405333pt;}
.ls59{letter-spacing:0.410667pt;}
.ls10{letter-spacing:0.445867pt;}
.ls16{letter-spacing:0.456000pt;}
.ls57{letter-spacing:0.469333pt;}
.ls6d{letter-spacing:0.528000pt;}
.ls70{letter-spacing:0.586667pt;}
.ls17{letter-spacing:0.592533pt;}
.ls92{letter-spacing:0.616000pt;}
.ls64{letter-spacing:0.645333pt;}
.ls7a{letter-spacing:0.704000pt;}
.ls79{letter-spacing:0.762667pt;}
.ls15{letter-spacing:0.810667pt;}
.ls81{letter-spacing:0.821333pt;}
.ls60{letter-spacing:0.880000pt;}
.ls61{letter-spacing:0.938667pt;}
.ls7e{letter-spacing:0.970667pt;}
.ls12{letter-spacing:0.972800pt;}
.lsf{letter-spacing:0.993067pt;}
.ls5e{letter-spacing:0.997333pt;}
.ls13{letter-spacing:1.023467pt;}
.ls56{letter-spacing:1.056000pt;}
.ls8f{letter-spacing:1.114667pt;}
.ls5f{letter-spacing:1.173333pt;}
.ls6f{letter-spacing:1.232000pt;}
.ls5c{letter-spacing:1.349333pt;}
.ls5d{letter-spacing:1.408000pt;}
.ls85{letter-spacing:1.466667pt;}
.ls6e{letter-spacing:1.525333pt;}
.ls98{letter-spacing:1.584000pt;}
.ls91{letter-spacing:1.760000pt;}
.ls80{letter-spacing:3.621333pt;}
.ls8a{letter-spacing:7.840000pt;}
.ls14{letter-spacing:12.616000pt;}
.ls96{letter-spacing:16.213333pt;}
.ls97{letter-spacing:21.354667pt;}
.ls8b{letter-spacing:28.410667pt;}
.ls8c{letter-spacing:28.485333pt;}
.ls19{letter-spacing:42.624000pt;}
.ls89{letter-spacing:556.976000pt;}
.ws85{word-spacing:-16.192000pt;}
.wsaa{word-spacing:-16.133333pt;}
.ws86{word-spacing:-15.898667pt;}
.wsc8{word-spacing:-15.840000pt;}
.wsc7{word-spacing:-15.781333pt;}
.ws89{word-spacing:-15.722667pt;}
.wsc2{word-spacing:-15.605333pt;}
.wsd4{word-spacing:-15.546667pt;}
.wsb2{word-spacing:-15.488000pt;}
.ws95{word-spacing:-15.429333pt;}
.ws96{word-spacing:-15.370667pt;}
.wsa4{word-spacing:-15.253333pt;}
.wsc5{word-spacing:-15.136000pt;}
.ws84{word-spacing:-15.077333pt;}
.ws6b{word-spacing:-15.018667pt;}
.ws4c{word-spacing:-14.960000pt;}
.ws6a{word-spacing:-14.901333pt;}
.ws69{word-spacing:-14.842667pt;}
.wsc1{word-spacing:-14.784000pt;}
.ws67{word-spacing:-14.725333pt;}
.ws4d{word-spacing:-14.666667pt;}
.ws64{word-spacing:-14.608000pt;}
.ws87{word-spacing:-14.549333pt;}
.wsa9{word-spacing:-14.490667pt;}
.wsb4{word-spacing:-14.432000pt;}
.ws94{word-spacing:-14.373333pt;}
.ws66{word-spacing:-14.314667pt;}
.ws4b{word-spacing:-14.256000pt;}
.wsbf{word-spacing:-14.197333pt;}
.ws88{word-spacing:-14.138667pt;}
.ws4e{word-spacing:-14.080000pt;}
.ws83{word-spacing:-14.021333pt;}
.wscc{word-spacing:-13.962667pt;}
.wsce{word-spacing:-13.904000pt;}
.wsa5{word-spacing:-13.845333pt;}
.wsc0{word-spacing:-13.786667pt;}
.wsbe{word-spacing:-13.728000pt;}
.ws65{word-spacing:-13.669333pt;}
.wsa2{word-spacing:-13.610667pt;}
.ws82{word-spacing:-13.552000pt;}
.wsbd{word-spacing:-13.493333pt;}
.ws68{word-spacing:-13.376000pt;}
.wsc4{word-spacing:-13.200000pt;}
.ws81{word-spacing:-13.141333pt;}
.ws51{word-spacing:-13.024000pt;}
.ws0{word-spacing:-12.920000pt;}
.ws48{word-spacing:-12.717333pt;}
.ws50{word-spacing:-12.677867pt;}
.ws32{word-spacing:-12.666667pt;}
.ws1a{word-spacing:-12.616000pt;}
.ws43{word-spacing:-12.565333pt;}
.ws39{word-spacing:-12.464000pt;}
.ws36{word-spacing:-12.408267pt;}
.ws2c{word-spacing:-12.362667pt;}
.ws4f{word-spacing:-12.320000pt;}
.ws31{word-spacing:-12.312000pt;}
.ws13{word-spacing:-12.261333pt;}
.ws9b{word-spacing:-12.240000pt;}
.ws46{word-spacing:-12.205600pt;}
.ws49{word-spacing:-12.149867pt;}
.ws37{word-spacing:-12.109333pt;}
.ws42{word-spacing:-12.068800pt;}
.ws4a{word-spacing:-12.058667pt;}
.ws23{word-spacing:-12.008000pt;}
.ws52{word-spacing:-11.962133pt;}
.ws45{word-spacing:-11.957333pt;}
.ws3b{word-spacing:-11.906667pt;}
.ws40{word-spacing:-11.896533pt;}
.ws16{word-spacing:-11.861067pt;}
.ws33{word-spacing:-11.856000pt;}
.ws2e{word-spacing:-11.810400pt;}
.ws19{word-spacing:-11.805333pt;}
.ws1d{word-spacing:-11.754667pt;}
.ws22{word-spacing:-11.704000pt;}
.ws3d{word-spacing:-11.653333pt;}
.ws3c{word-spacing:-11.602667pt;}
.ws47{word-spacing:-11.491200pt;}
.ws34{word-spacing:-11.450667pt;}
.ws1b{word-spacing:-11.298667pt;}
.ws3e{word-spacing:-11.293600pt;}
.ws18{word-spacing:-11.248000pt;}
.ws26{word-spacing:-11.197333pt;}
.ws1e{word-spacing:-11.146667pt;}
.ws2a{word-spacing:-11.141600pt;}
.ws1f{word-spacing:-11.096000pt;}
.ws3f{word-spacing:-11.090933pt;}
.ws29{word-spacing:-11.040267pt;}
.wsa3{word-spacing:-11.000000pt;}
.ws20{word-spacing:-10.999733pt;}
.ws28{word-spacing:-10.944000pt;}
.ws53{word-spacing:-10.880000pt;}
.ws21{word-spacing:-10.847733pt;}
.wsaf{word-spacing:-10.824000pt;}
.wsb5{word-spacing:-10.736000pt;}
.ws8b{word-spacing:-10.666667pt;}
.ws30{word-spacing:-10.538667pt;}
.ws2d{word-spacing:-10.386667pt;}
.ws2b{word-spacing:-10.330933pt;}
.ws9f{word-spacing:-10.304000pt;}
.wsb0{word-spacing:-10.296000pt;}
.wsd0{word-spacing:-10.266667pt;}
.ws54{word-spacing:-10.197333pt;}
.ws56{word-spacing:-10.154667pt;}
.ws27{word-spacing:-10.092800pt;}
.ws25{word-spacing:-10.021867pt;}
.ws15{word-spacing:-9.778667pt;}
.ws44{word-spacing:-9.576000pt;}
.ws1c{word-spacing:-9.570933pt;}
.ws41{word-spacing:-9.530400pt;}
.ws24{word-spacing:-9.418933pt;}
.ws57{word-spacing:-9.386667pt;}
.ws17{word-spacing:-9.337867pt;}
.ws9d{word-spacing:-9.333333pt;}
.ws2f{word-spacing:-9.327733pt;}
.wsb6{word-spacing:-9.296000pt;}
.ws3a{word-spacing:-9.120000pt;}
.ws38{word-spacing:-8.765333pt;}
.ws35{word-spacing:-8.157333pt;}
.ws55{word-spacing:-8.064000pt;}
.ws12{word-spacing:-6.570667pt;}
.ws14{word-spacing:-6.080000pt;}
.ws8e{word-spacing:-0.762667pt;}
.ws61{word-spacing:-0.704000pt;}
.wsc{word-spacing:-0.658667pt;}
.ws7e{word-spacing:-0.645333pt;}
.ws1{word-spacing:-0.608000pt;}
.ws5f{word-spacing:-0.586667pt;}
.wsb{word-spacing:-0.557333pt;}
.ws7f{word-spacing:-0.528000pt;}
.ws62{word-spacing:-0.512000pt;}
.ws77{word-spacing:-0.469333pt;}
.ws6{word-spacing:-0.456000pt;}
.ws74{word-spacing:-0.410667pt;}
.wsd{word-spacing:-0.405333pt;}
.ws7{word-spacing:-0.354667pt;}
.ws72{word-spacing:-0.352000pt;}
.ws6e{word-spacing:-0.293333pt;}
.ws3{word-spacing:-0.253333pt;}
.ws7c{word-spacing:-0.234667pt;}
.ws78{word-spacing:-0.176000pt;}
.wse{word-spacing:-0.152000pt;}
.ws8f{word-spacing:-0.117333pt;}
.ws4{word-spacing:-0.101333pt;}
.ws6d{word-spacing:-0.058667pt;}
.ws5{word-spacing:-0.050667pt;}
.wsa{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.050667pt;}
.ws91{word-spacing:0.058667pt;}
.ws90{word-spacing:0.117333pt;}
.wsa0{word-spacing:0.144000pt;}
.ws73{word-spacing:0.176000pt;}
.ws8{word-spacing:0.202667pt;}
.ws60{word-spacing:0.234667pt;}
.wsa7{word-spacing:0.293333pt;}
.ws75{word-spacing:0.352000pt;}
.ws7b{word-spacing:0.410667pt;}
.ws8d{word-spacing:0.469333pt;}
.wsb3{word-spacing:0.528000pt;}
.wsf{word-spacing:0.557333pt;}
.ws79{word-spacing:0.586667pt;}
.ws59{word-spacing:0.608000pt;}
.ws99{word-spacing:0.645333pt;}
.ws92{word-spacing:0.704000pt;}
.ws7d{word-spacing:0.762667pt;}
.ws5e{word-spacing:0.810667pt;}
.wsa8{word-spacing:0.821333pt;}
.ws80{word-spacing:0.880000pt;}
.ws5d{word-spacing:0.912000pt;}
.ws93{word-spacing:0.938667pt;}
.wsd5{word-spacing:0.944533pt;}
.ws58{word-spacing:0.952533pt;}
.wsd2{word-spacing:0.985600pt;}
.ws76{word-spacing:0.997333pt;}
.ws9{word-spacing:1.013333pt;}
.ws6c{word-spacing:1.056000pt;}
.ws5b{word-spacing:1.064000pt;}
.wsca{word-spacing:1.100000pt;}
.ws5c{word-spacing:1.114667pt;}
.wsa1{word-spacing:1.120000pt;}
.ws10{word-spacing:1.165333pt;}
.ws98{word-spacing:1.173333pt;}
.ws11{word-spacing:1.216000pt;}
.ws7a{word-spacing:1.232000pt;}
.ws2{word-spacing:1.266667pt;}
.ws70{word-spacing:1.290667pt;}
.ws6f{word-spacing:1.349333pt;}
.ws71{word-spacing:1.408000pt;}
.ws8c{word-spacing:1.466667pt;}
.wsad{word-spacing:2.934667pt;}
.wscf{word-spacing:2.992000pt;}
.wsae{word-spacing:3.153333pt;}
.wsc3{word-spacing:3.357333pt;}
.ws97{word-spacing:3.480000pt;}
.wsc6{word-spacing:3.930667pt;}
.ws9a{word-spacing:3.932000pt;}
.wscd{word-spacing:4.106667pt;}
.wsd6{word-spacing:4.282667pt;}
.wsac{word-spacing:4.390667pt;}
.wsbc{word-spacing:4.480000pt;}
.wscb{word-spacing:4.520000pt;}
.wsa6{word-spacing:4.738667pt;}
.wsab{word-spacing:4.849333pt;}
.wsb1{word-spacing:4.986667pt;}
.wsc9{word-spacing:5.514667pt;}
.wsd1{word-spacing:6.688000pt;}
.wsd7{word-spacing:8.272000pt;}
.wsd3{word-spacing:9.034667pt;}
.ws8a{word-spacing:31.744000pt;}
.wsba{word-spacing:34.570667pt;}
.wsbb{word-spacing:45.621333pt;}
.wsb7{word-spacing:83.477333pt;}
.wsb8{word-spacing:96.954667pt;}
.ws9c{word-spacing:142.250667pt;}
.ws9e{word-spacing:142.762667pt;}
.wsb9{word-spacing:266.485333pt;}
.ws63{word-spacing:907.690667pt;}
._d{margin-left:-9.093333pt;}
._c{margin-left:-7.450667pt;}
._6{margin-left:-6.192000pt;}
._8{margin-left:-5.104000pt;}
._9{margin-left:-3.989333pt;}
._3{margin-left:-3.090667pt;}
._1{margin-left:-1.824000pt;}
._5{margin-left:-0.912000pt;}
._2{width:0.912000pt;}
._0{width:1.925333pt;}
._19{width:3.344000pt;}
._14{width:6.309333pt;}
._4{width:12.008000pt;}
._1d{width:21.354667pt;}
._7{width:42.386667pt;}
._b{width:43.285333pt;}
._18{width:160.010667pt;}
._17{width:163.557333pt;}
._16{width:165.050667pt;}
._f{width:167.082667pt;}
._15{width:176.586667pt;}
._13{width:190.293333pt;}
._10{width:192.000000pt;}
._12{width:205.440000pt;}
._11{width:207.530667pt;}
._1b{width:341.898667pt;}
._1c{width:358.101333pt;}
._a{width:439.770667pt;}
._1a{width:641.274667pt;}
._e{width:918.976000pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:41.066667pt;}
.fs2{font-size:42.666667pt;}
.fs6{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:0.574667pt;}
.y50{bottom:1.241333pt;}
.y48{bottom:1.908000pt;}
.y4a{bottom:2.574667pt;}
.y4e{bottom:3.241333pt;}
.y139{bottom:48.080000pt;}
.yca{bottom:48.593333pt;}
.y1d{bottom:48.773333pt;}
.yf8{bottom:48.793333pt;}
.ybd{bottom:48.877333pt;}
.y43{bottom:48.902667pt;}
.y1ca{bottom:48.953333pt;}
.y1e9{bottom:48.977333pt;}
.y1f9{bottom:49.021333pt;}
.yad{bottom:49.036000pt;}
.y17a{bottom:49.050667pt;}
.y1ac{bottom:49.060000pt;}
.y85{bottom:49.080000pt;}
.y22a{bottom:49.094667pt;}
.y208{bottom:49.344000pt;}
.y129{bottom:49.681333pt;}
.y182{bottom:49.710667pt;}
.y1f0{bottom:50.120000pt;}
.y138{bottom:63.406667pt;}
.yc9{bottom:63.920000pt;}
.y104{bottom:64.153333pt;}
.ybc{bottom:64.204000pt;}
.y42{bottom:64.229333pt;}
.y1c9{bottom:64.280000pt;}
.yf7{bottom:64.297333pt;}
.y1e8{bottom:64.304000pt;}
.y1f8{bottom:64.348000pt;}
.yac{bottom:64.362667pt;}
.y179{bottom:64.377333pt;}
.y1ab{bottom:64.386667pt;}
.y84{bottom:64.406667pt;}
.y229{bottom:64.421333pt;}
.y207{bottom:64.670667pt;}
.y128{bottom:65.008000pt;}
.y181{bottom:65.037333pt;}
.y1ef{bottom:65.446667pt;}
.y137{bottom:78.733333pt;}
.yc8{bottom:79.246667pt;}
.y103{bottom:79.480000pt;}
.y41{bottom:79.556000pt;}
.yf6{bottom:79.624000pt;}
.y1e7{bottom:79.630667pt;}
.y1f7{bottom:79.674667pt;}
.yab{bottom:79.689333pt;}
.y178{bottom:79.704000pt;}
.y1aa{bottom:79.713333pt;}
.y83{bottom:79.733333pt;}
.y228{bottom:79.748000pt;}
.y127{bottom:80.334667pt;}
.y180{bottom:80.364000pt;}
.y1ee{bottom:80.773333pt;}
.ybb{bottom:87.201333pt;}
.y1c8{bottom:87.277333pt;}
.y206{bottom:88.342667pt;}
.y136{bottom:94.060000pt;}
.yc7{bottom:94.573333pt;}
.y102{bottom:94.806667pt;}
.y40{bottom:94.882667pt;}
.yf5{bottom:94.950667pt;}
.y1e6{bottom:94.957333pt;}
.y1f6{bottom:95.001333pt;}
.yaa{bottom:95.016000pt;}
.y177{bottom:95.030667pt;}
.y1a9{bottom:95.040000pt;}
.y82{bottom:95.060000pt;}
.y227{bottom:95.074667pt;}
.y126{bottom:95.661333pt;}
.y17f{bottom:95.690667pt;}
.y1ed{bottom:96.100000pt;}
.y219{bottom:102.686667pt;}
.y1c{bottom:102.828000pt;}
.y135{bottom:109.386667pt;}
.yc6{bottom:109.900000pt;}
.y101{bottom:110.133333pt;}
.yf4{bottom:110.277333pt;}
.y1e5{bottom:110.284000pt;}
.ya9{bottom:110.342667pt;}
.y176{bottom:110.357333pt;}
.y1a8{bottom:110.366667pt;}
.y81{bottom:110.386667pt;}
.y226{bottom:110.401333pt;}
.y125{bottom:110.988000pt;}
.y17e{bottom:111.017333pt;}
.y1ec{bottom:111.426667pt;}
.y205{bottom:116.004000pt;}
.y3f{bottom:117.880000pt;}
.y1f5{bottom:117.998667pt;}
.y1b{bottom:121.498667pt;}
.y134{bottom:124.713333pt;}
.yc5{bottom:125.226667pt;}
.y100{bottom:125.460000pt;}
.yba{bottom:125.540000pt;}
.yf3{bottom:125.604000pt;}
.y1e4{bottom:125.610667pt;}
.y1c7{bottom:125.616000pt;}
.ya8{bottom:125.669333pt;}
.y175{bottom:125.684000pt;}
.y1a7{bottom:125.693333pt;}
.y80{bottom:125.713333pt;}
.y225{bottom:125.728000pt;}
.y124{bottom:126.314667pt;}
.y17d{bottom:126.344000pt;}
.y1eb{bottom:126.753333pt;}
.y1a{bottom:134.836667pt;}
.y133{bottom:140.100000pt;}
.yc4{bottom:140.553333pt;}
.yff{bottom:140.800000pt;}
.yb9{bottom:140.866667pt;}
.yf2{bottom:140.930667pt;}
.y1e3{bottom:140.937333pt;}
.y1c6{bottom:140.942667pt;}
.ya7{bottom:140.996000pt;}
.y174{bottom:141.010667pt;}
.y1a6{bottom:141.020000pt;}
.y218{bottom:141.025333pt;}
.y7f{bottom:141.040000pt;}
.y224{bottom:141.054667pt;}
.y1ea{bottom:142.080000pt;}
.y19{bottom:148.174667pt;}
.y123{bottom:149.312000pt;}
.y17c{bottom:149.341333pt;}
.y204{bottom:155.002667pt;}
.y132{bottom:155.426667pt;}
.yc3{bottom:155.880000pt;}
.yfe{bottom:156.126667pt;}
.yb8{bottom:156.193333pt;}
.yf1{bottom:156.257333pt;}
.y1e2{bottom:156.264000pt;}
.y1c5{bottom:156.269333pt;}
.ya6{bottom:156.322667pt;}
.y173{bottom:156.337333pt;}
.y1a5{bottom:156.346667pt;}
.y217{bottom:156.352000pt;}
.y7e{bottom:156.366667pt;}
.y223{bottom:156.381333pt;}
.y18{bottom:161.512667pt;}
.y203{bottom:170.329333pt;}
.y53{bottom:170.666667pt;}
.y131{bottom:170.753333pt;}
.yc2{bottom:171.206667pt;}
.yfd{bottom:171.473333pt;}
.yb7{bottom:171.520000pt;}
.yf0{bottom:171.584000pt;}
.y1e1{bottom:171.590667pt;}
.y1c4{bottom:171.596000pt;}
.y172{bottom:171.664000pt;}
.y1a4{bottom:171.673333pt;}
.y216{bottom:171.678667pt;}
.y7d{bottom:171.693333pt;}
.y222{bottom:171.708000pt;}
.y17{bottom:174.850667pt;}
.y1f1{bottom:177.546667pt;}
.y122{bottom:179.305333pt;}
.ya5{bottom:179.320000pt;}
.y17b{bottom:179.334667pt;}
.y52{bottom:182.666667pt;}
.y202{bottom:185.656000pt;}
.y130{bottom:186.080000pt;}
.yc1{bottom:186.553333pt;}
.yfc{bottom:186.800000pt;}
.yb6{bottom:186.846667pt;}
.yef{bottom:186.910667pt;}
.y1e0{bottom:186.917333pt;}
.y1c3{bottom:186.922667pt;}
.y171{bottom:186.990667pt;}
.y1a3{bottom:187.000000pt;}
.y215{bottom:187.005333pt;}
.y7c{bottom:187.020000pt;}
.y16{bottom:188.188667pt;}
.y59{bottom:193.333333pt;}
.y221{bottom:197.242667pt;}
.y51{bottom:200.000000pt;}
.y201{bottom:200.982667pt;}
.y12f{bottom:201.406667pt;}
.y15{bottom:201.526667pt;}
.yc0{bottom:201.880000pt;}
.yfb{bottom:202.126667pt;}
.yb5{bottom:202.173333pt;}
.yee{bottom:202.237333pt;}
.y1df{bottom:202.244000pt;}
.y1c2{bottom:202.249333pt;}
.y170{bottom:202.317333pt;}
.y1a2{bottom:202.326667pt;}
.y214{bottom:202.332000pt;}
.y7b{bottom:202.346667pt;}
.y58{bottom:208.000000pt;}
.y1f4{bottom:210.793333pt;}
.y14{bottom:214.864667pt;}
.y200{bottom:216.309333pt;}
.y12e{bottom:216.733333pt;}
.ybf{bottom:217.206667pt;}
.y4f{bottom:217.333333pt;}
.yb4{bottom:217.500000pt;}
.yed{bottom:217.564000pt;}
.y1de{bottom:217.570667pt;}
.y1c1{bottom:217.576000pt;}
.y121{bottom:217.644000pt;}
.y1a1{bottom:217.653333pt;}
.ya4{bottom:217.658667pt;}
.y7a{bottom:217.673333pt;}
.y57{bottom:218.666667pt;}
.y220{bottom:222.777333pt;}
.y46{bottom:223.649333pt;}
.y183{bottom:225.314667pt;}
.y13{bottom:228.202667pt;}
.y1ff{bottom:231.636000pt;}
.y12d{bottom:232.060000pt;}
.ybe{bottom:232.533333pt;}
.yb3{bottom:232.826667pt;}
.yec{bottom:232.890667pt;}
.y1dd{bottom:232.897333pt;}
.y1c0{bottom:232.902667pt;}
.y120{bottom:232.970667pt;}
.y1a0{bottom:232.980000pt;}
.ya3{bottom:232.985333pt;}
.y79{bottom:233.000000pt;}
.y4d{bottom:234.666667pt;}
.y56{bottom:237.333333pt;}
.y21f{bottom:238.104000pt;}
.y12{bottom:241.540667pt;}
.y1fe{bottom:246.962667pt;}
.y12c{bottom:247.386667pt;}
.yb2{bottom:248.153333pt;}
.yeb{bottom:248.217333pt;}
.y1dc{bottom:248.224000pt;}
.y1bf{bottom:248.229333pt;}
.y11f{bottom:248.297333pt;}
.y19f{bottom:248.306667pt;}
.ya2{bottom:248.312000pt;}
.y78{bottom:248.326667pt;}
.y4b{bottom:252.000000pt;}
.y11{bottom:254.878667pt;}
.y1f3{bottom:260.848000pt;}
.y1fd{bottom:262.289333pt;}
.y12b{bottom:262.713333pt;}
.yb1{bottom:263.480000pt;}
.yea{bottom:263.544000pt;}
.y1db{bottom:263.550667pt;}
.y1be{bottom:263.556000pt;}
.y11e{bottom:263.624000pt;}
.y19e{bottom:263.633333pt;}
.ya1{bottom:263.638667pt;}
.y77{bottom:263.653333pt;}
.y49{bottom:264.000000pt;}
.y10{bottom:268.216667pt;}
.y45{bottom:268.996000pt;}
.y55{bottom:270.666667pt;}
.y1fc{bottom:277.616000pt;}
.y12a{bottom:278.040000pt;}
.yb0{bottom:278.806667pt;}
.y1da{bottom:278.877333pt;}
.y1bd{bottom:278.882667pt;}
.y11d{bottom:278.950667pt;}
.y19d{bottom:278.960000pt;}
.ya0{bottom:278.965333pt;}
.y76{bottom:278.980000pt;}
.ycb{bottom:280.733333pt;}
.y47{bottom:284.000000pt;}
.y54{bottom:285.333333pt;}
.ye9{bottom:286.541333pt;}
.y213{bottom:286.636000pt;}
.y1fb{bottom:292.942667pt;}
.yaf{bottom:294.133333pt;}
.y1d9{bottom:294.204000pt;}
.y1bc{bottom:294.209333pt;}
.y11c{bottom:294.277333pt;}
.y19c{bottom:294.286667pt;}
.y9f{bottom:294.292000pt;}
.y75{bottom:294.306667pt;}
.yf{bottom:294.880000pt;}
.y212{bottom:301.962667pt;}
.yae{bottom:309.460000pt;}
.y1d8{bottom:309.530667pt;}
.y1bb{bottom:309.536000pt;}
.y11b{bottom:309.604000pt;}
.y19b{bottom:309.613333pt;}
.y9e{bottom:309.618667pt;}
.y74{bottom:309.633333pt;}
.y44{bottom:309.986667pt;}
.y1fa{bottom:316.614667pt;}
.y211{bottom:317.289333pt;}
.y1d7{bottom:324.857333pt;}
.y1ba{bottom:324.862667pt;}
.ye8{bottom:324.880000pt;}
.yfa{bottom:324.930667pt;}
.y19a{bottom:324.940000pt;}
.y9d{bottom:324.945333pt;}
.y73{bottom:324.960000pt;}
.ye{bottom:326.824667pt;}
.y13a{bottom:326.946667pt;}
.yd4{bottom:327.081333pt;}
.yd3{bottom:331.333333pt;}
.y210{bottom:332.616000pt;}
.y1b9{bottom:340.189333pt;}
.ye7{bottom:340.206667pt;}
.y11a{bottom:340.257333pt;}
.y199{bottom:340.266667pt;}
.y9c{bottom:340.272000pt;}
.y72{bottom:340.286667pt;}
.yd{bottom:345.495333pt;}
.y3e{bottom:347.453333pt;}
.y1d6{bottom:347.854667pt;}
.yf9{bottom:347.928000pt;}
.y20f{bottom:347.942667pt;}
.y1b8{bottom:355.516000pt;}
.ye6{bottom:355.533333pt;}
.y119{bottom:355.584000pt;}
.y198{bottom:355.593333pt;}
.y9b{bottom:355.598667pt;}
.y71{bottom:355.613333pt;}
.yc{bottom:358.833333pt;}
.y20e{bottom:363.269333pt;}
.y3d{bottom:366.086000pt;}
.yd2{bottom:366.557333pt;}
.y15f{bottom:368.366667pt;}
.y1b7{bottom:370.842667pt;}
.ye5{bottom:370.860000pt;}
.y118{bottom:370.910667pt;}
.y197{bottom:370.920000pt;}
.y9a{bottom:370.925333pt;}
.y70{bottom:370.940000pt;}
.yb{bottom:372.171333pt;}
.y20d{bottom:378.596000pt;}
.y3c{bottom:379.424000pt;}
.y167{bottom:383.160000pt;}
.y169{bottom:383.440000pt;}
.y166{bottom:385.372000pt;}
.ya{bottom:385.509333pt;}
.y1b6{bottom:386.169333pt;}
.ye4{bottom:386.186667pt;}
.y1d5{bottom:386.193333pt;}
.y117{bottom:386.237333pt;}
.y196{bottom:386.246667pt;}
.y99{bottom:386.252000pt;}
.y6f{bottom:386.266667pt;}
.y16c{bottom:388.433333pt;}
.y164{bottom:389.702667pt;}
.y161{bottom:389.796000pt;}
.y3b{bottom:392.762000pt;}
.y144{bottom:392.888000pt;}
.y20c{bottom:393.922667pt;}
.y168{bottom:394.108000pt;}
.y9{bottom:398.847333pt;}
.y1b5{bottom:401.496000pt;}
.ye3{bottom:401.513333pt;}
.y1d4{bottom:401.520000pt;}
.y116{bottom:401.564000pt;}
.y195{bottom:401.573333pt;}
.y98{bottom:401.578667pt;}
.y6e{bottom:401.593333pt;}
.yd1{bottom:401.800000pt;}
.y143{bottom:403.556000pt;}
.y3a{bottom:406.100000pt;}
.y16f{bottom:409.234667pt;}
.y20b{bottom:409.249333pt;}
.yd9{bottom:409.368000pt;}
.y8{bottom:412.185333pt;}
.yd5{bottom:416.386667pt;}
.y1b4{bottom:416.822667pt;}
.ye2{bottom:416.840000pt;}
.y1d3{bottom:416.846667pt;}
.y115{bottom:416.890667pt;}
.y194{bottom:416.900000pt;}
.y97{bottom:416.905333pt;}
.y6d{bottom:416.920000pt;}
.y39{bottom:419.438000pt;}
.yd8{bottom:420.036000pt;}
.y20a{bottom:424.576000pt;}
.y165{bottom:425.066667pt;}
.y7{bottom:425.523333pt;}
.y14c{bottom:426.141333pt;}
.y152{bottom:429.537333pt;}
.y16a{bottom:430.013333pt;}
.y1b3{bottom:432.149333pt;}
.ye1{bottom:432.166667pt;}
.y1d2{bottom:432.173333pt;}
.y114{bottom:432.217333pt;}
.y193{bottom:432.226667pt;}
.y96{bottom:432.232000pt;}
.y6c{bottom:432.246667pt;}
.y38{bottom:432.776000pt;}
.y160{bottom:433.793333pt;}
.y14b{bottom:436.800000pt;}
.yd0{bottom:437.024000pt;}
.y6{bottom:438.861333pt;}
.y209{bottom:439.902667pt;}
.y37{bottom:446.114000pt;}
.y1b2{bottom:447.476000pt;}
.ye0{bottom:447.493333pt;}
.y1d1{bottom:447.500000pt;}
.y113{bottom:447.544000pt;}
.y192{bottom:447.553333pt;}
.y95{bottom:447.558667pt;}
.y6b{bottom:447.573333pt;}
.yd7{bottom:451.573333pt;}
.y5{bottom:452.199333pt;}
.y22b{bottom:455.214667pt;}
.yda{bottom:456.445333pt;}
.y16b{bottom:457.182667pt;}
.y14a{bottom:459.034667pt;}
.y36{bottom:459.452000pt;}
.yd6{bottom:462.241333pt;}
.y1b1{bottom:462.802667pt;}
.ydf{bottom:462.820000pt;}
.y1d0{bottom:462.826667pt;}
.y112{bottom:462.870667pt;}
.y191{bottom:462.880000pt;}
.y94{bottom:462.885333pt;}
.y6a{bottom:462.900000pt;}
.y16d{bottom:464.742667pt;}
.y4{bottom:465.537333pt;}
.y163{bottom:466.077333pt;}
.y149{bottom:469.693333pt;}
.ycf{bottom:472.266667pt;}
.y35{bottom:472.790000pt;}
.y162{bottom:476.745333pt;}
.y1b0{bottom:478.129333pt;}
.yde{bottom:478.146667pt;}
.y1cf{bottom:478.153333pt;}
.y111{bottom:478.197333pt;}
.y190{bottom:478.206667pt;}
.y93{bottom:478.212000pt;}
.y69{bottom:478.226667pt;}
.y3{bottom:478.875333pt;}
.y153{bottom:481.365333pt;}
.y14e{bottom:491.154667pt;}
.y2{bottom:492.213333pt;}
.y1af{bottom:493.456000pt;}
.ydd{bottom:493.473333pt;}
.y1ce{bottom:493.480000pt;}
.y110{bottom:493.524000pt;}
.y18f{bottom:493.533333pt;}
.y92{bottom:493.538667pt;}
.y68{bottom:493.553333pt;}
.y16e{bottom:498.053333pt;}
.y34{bottom:499.453333pt;}
.y14d{bottom:501.813333pt;}
.y148{bottom:502.674667pt;}
.yce{bottom:507.490667pt;}
.ydc{bottom:508.800000pt;}
.y1cd{bottom:508.806667pt;}
.y10f{bottom:508.850667pt;}
.y18e{bottom:508.860000pt;}
.y91{bottom:508.865333pt;}
.y67{bottom:508.880000pt;}
.y1f2{bottom:510.253333pt;}
.y147{bottom:513.333333pt;}
.y1ae{bottom:516.453333pt;}
.y1{bottom:518.880000pt;}
.ydb{bottom:524.126667pt;}
.y1cc{bottom:524.133333pt;}
.y10e{bottom:524.177333pt;}
.y18d{bottom:524.186667pt;}
.y90{bottom:524.192000pt;}
.y66{bottom:524.206667pt;}
.y13c{bottom:529.724000pt;}
.y33{bottom:531.401333pt;}
.y1ad{bottom:531.848000pt;}
.y1cb{bottom:539.460000pt;}
.y10d{bottom:539.504000pt;}
.y18c{bottom:539.513333pt;}
.y8f{bottom:539.518667pt;}
.y65{bottom:539.533333pt;}
.ycd{bottom:542.733333pt;}
.y21e{bottom:547.189333pt;}
.y32{bottom:550.072000pt;}
.y10c{bottom:554.830667pt;}
.y18b{bottom:554.840000pt;}
.y8e{bottom:554.845333pt;}
.y64{bottom:554.860000pt;}
.y15e{bottom:555.005333pt;}
.y24{bottom:555.008000pt;}
.y21d{bottom:562.516000pt;}
.y31{bottom:563.410000pt;}
.y23{bottom:567.680000pt;}
.y154{bottom:568.660000pt;}
.y10b{bottom:570.157333pt;}
.y18a{bottom:570.166667pt;}
.y8d{bottom:570.172000pt;}
.y63{bottom:570.186667pt;}
.y15c{bottom:572.458667pt;}
.y140{bottom:575.765333pt;}
.y142{bottom:576.138667pt;}
.y30{bottom:576.748000pt;}
.y21c{bottom:577.842667pt;}
.y10a{bottom:585.484000pt;}
.y189{bottom:585.493333pt;}
.y8c{bottom:585.498667pt;}
.y62{bottom:585.513333pt;}
.y15d{bottom:589.790667pt;}
.y2f{bottom:590.086000pt;}
.y21b{bottom:593.169333pt;}
.y146{bottom:600.754667pt;}
.y109{bottom:600.810667pt;}
.y188{bottom:600.820000pt;}
.y8b{bottom:600.825333pt;}
.y61{bottom:600.840000pt;}
.y2e{bottom:603.424000pt;}
.y21a{bottom:608.496000pt;}
.y141{bottom:609.990667pt;}
.y145{bottom:611.413333pt;}
.y108{bottom:616.137333pt;}
.y187{bottom:616.146667pt;}
.y8a{bottom:616.152000pt;}
.y60{bottom:616.166667pt;}
.y2d{bottom:616.762000pt;}
.y151{bottom:623.325333pt;}
.y150{bottom:626.088000pt;}
.y156{bottom:628.029333pt;}
.y2c{bottom:630.100000pt;}
.y107{bottom:631.464000pt;}
.y186{bottom:631.473333pt;}
.y89{bottom:631.478667pt;}
.y5f{bottom:631.493333pt;}
.y14f{bottom:636.746667pt;}
.y13f{bottom:639.764000pt;}
.y2b{bottom:643.438000pt;}
.y106{bottom:646.790667pt;}
.y185{bottom:646.800000pt;}
.y88{bottom:646.805333pt;}
.y5e{bottom:646.820000pt;}
.y15b{bottom:649.337333pt;}
.y22{bottom:651.421333pt;}
.y2a{bottom:656.776000pt;}
.y15a{bottom:658.670667pt;}
.y184{bottom:662.126667pt;}
.y87{bottom:662.132000pt;}
.y5d{bottom:662.146667pt;}
.y21{bottom:664.093333pt;}
.y105{bottom:669.788000pt;}
.y29{bottom:670.114000pt;}
.y13d{bottom:670.722667pt;}
.y5c{bottom:677.473333pt;}
.y20{bottom:680.093333pt;}
.y28{bottom:683.452000pt;}
.y86{bottom:685.129333pt;}
.y157{bottom:686.204000pt;}
.y13e{bottom:688.017333pt;}
.y5b{bottom:692.800000pt;}
.y155{bottom:694.576000pt;}
.y27{bottom:696.790000pt;}
.y159{bottom:698.020000pt;}
.y158{bottom:707.353333pt;}
.y5a{bottom:708.126667pt;}
.y1f{bottom:720.093333pt;}
.y26{bottom:723.453333pt;}
.ycc{bottom:727.626667pt;}
.y13b{bottom:732.360000pt;}
.y1e{bottom:765.426667pt;}
.y25{bottom:821.333333pt;}
.hc{height:9.333333pt;}
.he{height:10.666667pt;}
.h9{height:12.000000pt;}
.hb{height:13.333333pt;}
.hd{height:14.666667pt;}
.h10{height:39.834667pt;}
.h13{height:41.290667pt;}
.h7{height:41.854167pt;}
.h4{height:45.525333pt;}
.ha{height:47.109375pt;}
.h11{height:48.757333pt;}
.h3{height:51.216000pt;}
.h1{height:54.061333pt;}
.h2{height:54.922667pt;}
.h8{height:62.597333pt;}
.h14{height:63.178133pt;}
.hf{height:63.594667pt;}
.h6{height:68.288000pt;}
.h12{height:73.658667pt;}
.h5{height:91.050667pt;}
.h0{height:794.666667pt;}
.wc{width:120.000000pt;}
.w1{width:132.000000pt;}
.wf{width:149.333333pt;}
.wa{width:165.333333pt;}
.w9{width:166.666667pt;}
.w2{width:168.000000pt;}
.w8{width:172.000000pt;}
.w3{width:178.666667pt;}
.w4{width:182.666667pt;}
.w6{width:184.000000pt;}
.we{width:197.333333pt;}
.wb{width:198.666667pt;}
.wd{width:224.000000pt;}
.w5{width:230.666667pt;}
.w7{width:250.666667pt;}
.w0{width:565.333333pt;}
.xf{left:-3.637467pt;}
.x0{left:0.000000pt;}
.x19{left:1.333333pt;}
.x5{left:5.333333pt;}
.x15{left:22.666667pt;}
.x11{left:29.689467pt;}
.xd{left:36.022533pt;}
.x12{left:41.333333pt;}
.x16{left:54.045733pt;}
.x13{left:65.690533pt;}
.x1{left:67.733333pt;}
.x6{left:68.813333pt;}
.xb{left:76.680133pt;}
.x33{left:80.705333pt;}
.x1b{left:83.030667pt;}
.x1c{left:84.154667pt;}
.x14{left:85.346533pt;}
.x10{left:89.333333pt;}
.x34{left:93.622667pt;}
.xe{left:94.666667pt;}
.x17{left:98.666667pt;}
.x1f{left:99.816000pt;}
.x9{left:100.728400pt;}
.xc{left:104.000000pt;}
.x48{left:108.642667pt;}
.x20{left:110.400000pt;}
.x1e{left:113.386667pt;}
.x1d{left:137.440000pt;}
.xa{left:138.666667pt;}
.x8{left:140.919733pt;}
.x26{left:150.661333pt;}
.x21{left:154.800000pt;}
.x45{left:166.012000pt;}
.x46{left:200.237333pt;}
.x43{left:208.674667pt;}
.x24{left:215.336000pt;}
.x44{left:230.794667pt;}
.x35{left:246.437333pt;}
.x27{left:255.325333pt;}
.x7{left:266.880000pt;}
.x25{left:273.133333pt;}
.x3f{left:289.921333pt;}
.x18{left:296.000000pt;}
.x1a{left:297.333333pt;}
.x3c{left:300.393333pt;}
.x42{left:304.070667pt;}
.x2{left:347.653333pt;}
.x4{left:349.693333pt;}
.x30{left:357.493333pt;}
.x36{left:358.754667pt;}
.x3{left:362.413333pt;}
.x40{left:366.837333pt;}
.x41{left:371.186667pt;}
.x3b{left:376.646667pt;}
.x3e{left:384.412000pt;}
.x3a{left:387.277333pt;}
.x37{left:391.440000pt;}
.x47{left:393.418667pt;}
.x23{left:403.300000pt;}
.x3d{left:412.757333pt;}
.x38{left:417.517333pt;}
.x2d{left:418.533333pt;}
.x39{left:421.568000pt;}
.x2f{left:430.746667pt;}
.x2c{left:437.533333pt;}
.x2b{left:439.866667pt;}
.x2e{left:443.640000pt;}
.x22{left:448.081333pt;}
.x2a{left:457.000000pt;}
.x28{left:459.221333pt;}
.x29{left:461.116000pt;}
.x32{left:463.306667pt;}
.x31{left:465.640000pt;}
}




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