
    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_6733b709f409ca51b41ed553.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_5d7a4517d2478ba6af2487b1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.891602;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_12702adc66f42c02c1e42f7b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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:ff6;src:url('chunks/assets/font_b78af93e3dc5e98ac1f11f39.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.891602;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:ff7;src:url('chunks/assets/font_d2d006e8e7814f998eae3c16.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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);}
.v1{vertical-align:-24.000000px;}
.v3{vertical-align:-21.000000px;}
.v4{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.982000px;}
.v2{vertical-align:21.045000px;}
.v5{vertical-align:23.826000px;}
.ls82{letter-spacing:-0.741000px;}
.ls88{letter-spacing:-0.684000px;}
.ls69{letter-spacing:-0.660000px;}
.ls19{letter-spacing:-0.576000px;}
.ls8c{letter-spacing:-0.570000px;}
.ls94{letter-spacing:-0.567000px;}
.ls53{letter-spacing:-0.528000px;}
.ls12{letter-spacing:-0.480000px;}
.ls63{letter-spacing:-0.462000px;}
.ls3a{letter-spacing:-0.441000px;}
.ls64{letter-spacing:-0.384000px;}
.ls93{letter-spacing:-0.378000px;}
.ls92{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.336000px;}
.ls6b{letter-spacing:-0.330000px;}
.ls37{letter-spacing:-0.315000px;}
.ls81{letter-spacing:-0.285000px;}
.ls55{letter-spacing:-0.264000px;}
.ls28{letter-spacing:-0.252000px;}
.ls15{letter-spacing:-0.240000px;}
.ls61{letter-spacing:-0.210000px;}
.ls51{letter-spacing:-0.198000px;}
.ls18{letter-spacing:-0.192000px;}
.ls29{letter-spacing:-0.189000px;}
.ls21{letter-spacing:-0.180000px;}
.ls7a{letter-spacing:-0.171000px;}
.ls24{letter-spacing:-0.168000px;}
.ls14{letter-spacing:-0.144000px;}
.ls52{letter-spacing:-0.132000px;}
.ls26{letter-spacing:-0.126000px;}
.ls7c{letter-spacing:-0.114000px;}
.ls22{letter-spacing:-0.084000px;}
.ls4f{letter-spacing:-0.066000px;}
.ls7b{letter-spacing:-0.057000px;}
.ls13{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.012000px;}
.ls66{letter-spacing:0.026400px;}
.ls4d{letter-spacing:0.043200px;}
.lsd{letter-spacing:0.048000px;}
.ls80{letter-spacing:0.057000px;}
.ls87{letter-spacing:0.059400px;}
.ls39{letter-spacing:0.063000px;}
.ls40{letter-spacing:0.066000px;}
.ls2{letter-spacing:0.072000px;}
.ls2e{letter-spacing:0.081900px;}
.ls1c{letter-spacing:0.084000px;}
.ls8a{letter-spacing:0.090000px;}
.lse{letter-spacing:0.096000px;}
.ls79{letter-spacing:0.114000px;}
.ls76{letter-spacing:0.125400px;}
.ls36{letter-spacing:0.126000px;}
.ls50{letter-spacing:0.132000px;}
.ls45{letter-spacing:0.134400px;}
.ls16{letter-spacing:0.144000px;}
.ls2f{letter-spacing:0.149400px;}
.ls90{letter-spacing:0.162000px;}
.ls23{letter-spacing:0.168000px;}
.ls5e{letter-spacing:0.171600px;}
.ls8d{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.189000px;}
.ls10{letter-spacing:0.192000px;}
.ls78{letter-spacing:0.193800px;}
.ls3c{letter-spacing:0.198000px;}
.ls84{letter-spacing:0.204000px;}
.ls5d{letter-spacing:0.230400px;}
.lsc{letter-spacing:0.240000px;}
.ls25{letter-spacing:0.252000px;}
.lsf{letter-spacing:0.264000px;}
.ls7d{letter-spacing:0.285000px;}
.ls11{letter-spacing:0.288000px;}
.ls60{letter-spacing:0.294000px;}
.ls71{letter-spacing:0.303600px;}
.ls33{letter-spacing:0.306000px;}
.ls38{letter-spacing:0.315000px;}
.ls85{letter-spacing:0.318000px;}
.lsb{letter-spacing:0.336000px;}
.ls5c{letter-spacing:0.336600px;}
.ls83{letter-spacing:0.342000px;}
.ls8e{letter-spacing:0.360000px;}
.ls89{letter-spacing:0.547800px;}
.ls4a{letter-spacing:0.552000px;}
.ls4c{letter-spacing:0.576000px;}
.ls41{letter-spacing:0.660000px;}
.ls72{letter-spacing:0.666600px;}
.ls65{letter-spacing:0.762000px;}
.ls6a{letter-spacing:0.792000px;}
.ls54{letter-spacing:0.936000px;}
.ls34{letter-spacing:1.152000px;}
.ls4b{letter-spacing:1.176000px;}
.ls42{letter-spacing:1.254000px;}
.ls3{letter-spacing:1.296000px;}
.ls73{letter-spacing:1.368000px;}
.ls8{letter-spacing:1.440000px;}
.ls5{letter-spacing:1.512000px;}
.ls4{letter-spacing:1.728000px;}
.ls4e{letter-spacing:1.776000px;}
.ls57{letter-spacing:1.914000px;}
.ls59{letter-spacing:2.283600px;}
.ls74{letter-spacing:2.412000px;}
.ls49{letter-spacing:2.508000px;}
.ls75{letter-spacing:2.520000px;}
.ls31{letter-spacing:2.583000px;}
.ls6{letter-spacing:2.784000px;}
.ls6c{letter-spacing:2.917200px;}
.ls7{letter-spacing:2.976000px;}
.ls9{letter-spacing:3.072000px;}
.ls47{letter-spacing:3.102000px;}
.ls7f{letter-spacing:3.144000px;}
.ls32{letter-spacing:3.150000px;}
.ls68{letter-spacing:3.162000px;}
.lsa{letter-spacing:3.168000px;}
.ls0{letter-spacing:3.264000px;}
.ls3d{letter-spacing:3.696000px;}
.ls30{letter-spacing:3.780000px;}
.ls43{letter-spacing:3.906000px;}
.ls3b{letter-spacing:4.290000px;}
.ls5a{letter-spacing:4.884000px;}
.ls86{letter-spacing:4.962000px;}
.ls3f{letter-spacing:5.478000px;}
.ls1f{letter-spacing:5.808000px;}
.ls77{letter-spacing:5.856000px;}
.ls35{letter-spacing:5.904000px;}
.ls20{letter-spacing:6.000000px;}
.ls5f{letter-spacing:6.048000px;}
.ls3e{letter-spacing:6.072000px;}
.ls8f{letter-spacing:6.151200px;}
.ls6f{letter-spacing:6.336000px;}
.ls70{letter-spacing:6.360000px;}
.ls48{letter-spacing:6.666000px;}
.ls91{letter-spacing:6.703200px;}
.ls6e{letter-spacing:6.725400px;}
.ls6d{letter-spacing:7.260000px;}
.ls7e{letter-spacing:7.854000px;}
.ls58{letter-spacing:9.702000px;}
.ls67{letter-spacing:12.078000px;}
.ls5b{letter-spacing:22.308000px;}
.ls46{letter-spacing:47.160000px;}
.ls62{letter-spacing:48.660000px;}
.ls8b{letter-spacing:69.234000px;}
.ls56{letter-spacing:70.752000px;}
.ls44{letter-spacing:72.960000px;}
.ls1e{letter-spacing:77.328000px;}
.ls2d{letter-spacing:80.100000px;}
.ls2a{letter-spacing:182.928000px;}
.ls1a{letter-spacing:295.152000px;}
.ls2c{letter-spacing:764.976000px;}
.ls2b{letter-spacing:916.176000px;}
.ls1b{letter-spacing:2428.176000px;}
.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;}
}
.wse7{word-spacing:-40.860000px;}
.wse6{word-spacing:-40.500000px;}
.wseb{word-spacing:-40.320000px;}
.ws33{word-spacing:-38.136000px;}
.wsbf{word-spacing:-37.800000px;}
.ws1{word-spacing:-24.672000px;}
.ws0{word-spacing:-24.480000px;}
.ws2{word-spacing:-23.136000px;}
.ws23{word-spacing:-21.888000px;}
.ws24{word-spacing:-21.696000px;}
.ws59{word-spacing:-21.504000px;}
.ws21{word-spacing:-19.068000px;}
.ws20{word-spacing:-18.900000px;}
.ws22{word-spacing:-18.816000px;}
.ws5b{word-spacing:-17.784000px;}
.wsdb{word-spacing:-17.568000px;}
.ws5a{word-spacing:-17.424000px;}
.ws83{word-spacing:-17.208000px;}
.wsda{word-spacing:-17.064000px;}
.ws1f{word-spacing:-16.848000px;}
.ws32{word-spacing:-16.752000px;}
.wsbe{word-spacing:-16.704000px;}
.ws1e{word-spacing:-16.656000px;}
.ws82{word-spacing:-15.180000px;}
.wsad{word-spacing:-15.114000px;}
.ws55{word-spacing:-15.048000px;}
.ws58{word-spacing:-14.982000px;}
.ws80{word-spacing:-14.916000px;}
.ws56{word-spacing:-14.850000px;}
.ws5c{word-spacing:-14.784000px;}
.ws57{word-spacing:-14.718000px;}
.ws5d{word-spacing:-14.652000px;}
.wsac{word-spacing:-14.586000px;}
.ws36{word-spacing:-14.490000px;}
.ws9a{word-spacing:-14.454000px;}
.ws27{word-spacing:-14.427000px;}
.wsc4{word-spacing:-14.388000px;}
.ws37{word-spacing:-14.301000px;}
.ws26{word-spacing:-14.238000px;}
.ws25{word-spacing:-14.112000px;}
.ws28{word-spacing:-14.049000px;}
.ws35{word-spacing:-13.986000px;}
.ws34{word-spacing:-13.923000px;}
.ws38{word-spacing:-13.797000px;}
.wsd7{word-spacing:-12.996000px;}
.wsd9{word-spacing:-12.939000px;}
.wsc2{word-spacing:-12.882000px;}
.wse0{word-spacing:-12.825000px;}
.wsc3{word-spacing:-12.768000px;}
.wsd6{word-spacing:-12.711000px;}
.wscb{word-spacing:-12.597000px;}
.wsd8{word-spacing:-12.198000px;}
.wscc{word-spacing:-12.141000px;}
.ws10{word-spacing:-11.136000px;}
.ws84{word-spacing:-11.112000px;}
.wsc{word-spacing:-11.040000px;}
.ws14{word-spacing:-10.896000px;}
.wsb{word-spacing:-10.848000px;}
.wse{word-spacing:-10.800000px;}
.wsf{word-spacing:-10.704000px;}
.ws13{word-spacing:-10.656000px;}
.ws11{word-spacing:-10.608000px;}
.ws12{word-spacing:-10.512000px;}
.ws9b{word-spacing:-10.464000px;}
.wsd{word-spacing:-10.368000px;}
.ws15{word-spacing:-10.272000px;}
.ws81{word-spacing:-9.786000px;}
.wsdc{word-spacing:-9.492000px;}
.ws39{word-spacing:-6.780000px;}
.ws85{word-spacing:-6.570000px;}
.ws42{word-spacing:-3.717000px;}
.ws71{word-spacing:-3.432000px;}
.ws8{word-spacing:-3.264000px;}
.ws41{word-spacing:-3.213000px;}
.ws43{word-spacing:-3.150000px;}
.ws7{word-spacing:-3.072000px;}
.wsaf{word-spacing:-3.036000px;}
.ws6e{word-spacing:-2.838000px;}
.ws6d{word-spacing:-2.706000px;}
.ws100{word-spacing:-2.457000px;}
.wsb0{word-spacing:-2.442000px;}
.wse9{word-spacing:-2.376000px;}
.wsa0{word-spacing:-2.244000px;}
.ws101{word-spacing:-2.142000px;}
.ws94{word-spacing:-2.112000px;}
.ws4e{word-spacing:-2.016000px;}
.ws3c{word-spacing:-1.890000px;}
.ws9f{word-spacing:-1.848000px;}
.wsec{word-spacing:-1.827000px;}
.wsa1{word-spacing:-1.650000px;}
.wsb3{word-spacing:-1.518000px;}
.ws3d{word-spacing:-1.512000px;}
.ws4d{word-spacing:-1.323000px;}
.wsd1{word-spacing:-1.254000px;}
.wsb7{word-spacing:-1.188000px;}
.ws60{word-spacing:-1.056000px;}
.wsd2{word-spacing:-0.990000px;}
.ws18{word-spacing:-0.960000px;}
.wsf8{word-spacing:-0.945000px;}
.ws75{word-spacing:-0.936000px;}
.wsb6{word-spacing:-0.924000px;}
.ws1d{word-spacing:-0.912000px;}
.ws53{word-spacing:-0.864000px;}
.ws97{word-spacing:-0.792000px;}
.ws52{word-spacing:-0.756000px;}
.ws50{word-spacing:-0.693000px;}
.ws9d{word-spacing:-0.660000px;}
.ws6{word-spacing:-0.648000px;}
.wsfd{word-spacing:-0.630000px;}
.wsb1{word-spacing:-0.594000px;}
.ws3f{word-spacing:-0.567000px;}
.ws73{word-spacing:-0.462000px;}
.wse4{word-spacing:-0.399000px;}
.wsb2{word-spacing:-0.396000px;}
.ws70{word-spacing:-0.384000px;}
.wse1{word-spacing:-0.342000px;}
.ws16{word-spacing:-0.336000px;}
.ws96{word-spacing:-0.330000px;}
.ws4a{word-spacing:-0.315000px;}
.wsa{word-spacing:-0.288000px;}
.wsdd{word-spacing:-0.285000px;}
.ws8f{word-spacing:-0.264000px;}
.ws4f{word-spacing:-0.252000px;}
.ws1a{word-spacing:-0.240000px;}
.wsa6{word-spacing:-0.198000px;}
.ws17{word-spacing:-0.192000px;}
.ws2f{word-spacing:-0.189000px;}
.wse8{word-spacing:-0.180000px;}
.ws5e{word-spacing:-0.168000px;}
.ws4{word-spacing:-0.144000px;}
.ws76{word-spacing:-0.132000px;}
.ws51{word-spacing:-0.126000px;}
.wsc9{word-spacing:-0.114000px;}
.ws9{word-spacing:-0.096000px;}
.ws67{word-spacing:-0.066000px;}
.ws30{word-spacing:-0.063000px;}
.wsde{word-spacing:-0.057000px;}
.ws1b{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.wsc6{word-spacing:0.057000px;}
.ws3e{word-spacing:0.063000px;}
.ws74{word-spacing:0.066000px;}
.ws2b{word-spacing:0.084000px;}
.wsee{word-spacing:0.126000px;}
.ws65{word-spacing:0.132000px;}
.ws1c{word-spacing:0.144000px;}
.ws5f{word-spacing:0.168000px;}
.wsc5{word-spacing:0.171000px;}
.ws7a{word-spacing:0.198000px;}
.ws5{word-spacing:0.216000px;}
.wsca{word-spacing:0.228000px;}
.ws19{word-spacing:0.240000px;}
.ws40{word-spacing:0.252000px;}
.ws63{word-spacing:0.264000px;}
.wscd{word-spacing:0.285000px;}
.ws99{word-spacing:0.288000px;}
.ws2e{word-spacing:0.315000px;}
.wsc1{word-spacing:0.330000px;}
.ws7e{word-spacing:0.336000px;}
.ws29{word-spacing:0.360000px;}
.wsf7{word-spacing:0.378000px;}
.ws7b{word-spacing:0.396000px;}
.ws31{word-spacing:0.441000px;}
.ws6c{word-spacing:0.528000px;}
.wse3{word-spacing:0.570000px;}
.ws6b{word-spacing:0.594000px;}
.wsae{word-spacing:0.660000px;}
.ws6a{word-spacing:0.726000px;}
.ws93{word-spacing:0.792000px;}
.ws92{word-spacing:0.858000px;}
.ws54{word-spacing:0.864000px;}
.ws46{word-spacing:0.882000px;}
.wse5{word-spacing:0.912000px;}
.ws7d{word-spacing:0.960000px;}
.wse2{word-spacing:1.026000px;}
.ws4b{word-spacing:1.134000px;}
.ws6f{word-spacing:1.320000px;}
.ws7f{word-spacing:1.440000px;}
.ws2d{word-spacing:1.512000px;}
.ws87{word-spacing:1.848000px;}
.ws86{word-spacing:1.980000px;}
.ws47{word-spacing:2.079000px;}
.ws9c{word-spacing:2.112000px;}
.ws3b{word-spacing:2.331000px;}
.wsd5{word-spacing:2.376000px;}
.wsd0{word-spacing:2.442000px;}
.wsc8{word-spacing:2.451000px;}
.ws79{word-spacing:2.574000px;}
.ws91{word-spacing:2.706000px;}
.wsf1{word-spacing:2.709000px;}
.ws4c{word-spacing:2.898000px;}
.wsf0{word-spacing:2.961000px;}
.wsba{word-spacing:2.970000px;}
.wsb9{word-spacing:3.036000px;}
.ws72{word-spacing:3.168000px;}
.wsc7{word-spacing:3.192000px;}
.wsef{word-spacing:3.276000px;}
.wsb8{word-spacing:3.300000px;}
.wsfc{word-spacing:3.339000px;}
.ws44{word-spacing:3.528000px;}
.ws90{word-spacing:3.630000px;}
.wsfb{word-spacing:3.717000px;}
.ws64{word-spacing:3.762000px;}
.ws98{word-spacing:3.828000px;}
.wsdf{word-spacing:3.894000px;}
.ws3a{word-spacing:3.906000px;}
.ws45{word-spacing:4.032000px;}
.ws48{word-spacing:4.095000px;}
.wscf{word-spacing:4.158000px;}
.ws61{word-spacing:4.356000px;}
.ws49{word-spacing:4.473000px;}
.ws62{word-spacing:4.488000px;}
.wsf9{word-spacing:4.599000px;}
.ws89{word-spacing:4.818000px;}
.ws8a{word-spacing:4.950000px;}
.ws8c{word-spacing:5.016000px;}
.ws8d{word-spacing:5.082000px;}
.wsa7{word-spacing:5.346000px;}
.wsb5{word-spacing:5.412000px;}
.ws69{word-spacing:5.544000px;}
.wsb4{word-spacing:5.610000px;}
.ws8e{word-spacing:5.676000px;}
.ws68{word-spacing:5.940000px;}
.ws66{word-spacing:6.138000px;}
.wsc0{word-spacing:6.270000px;}
.wsf6{word-spacing:6.489000px;}
.wsa8{word-spacing:6.534000px;}
.wsf5{word-spacing:6.552000px;}
.wsa9{word-spacing:6.600000px;}
.ws88{word-spacing:6.732000px;}
.ws78{word-spacing:6.798000px;}
.ws77{word-spacing:6.864000px;}
.wsf3{word-spacing:6.867000px;}
.wsf4{word-spacing:6.930000px;}
.wsf2{word-spacing:6.993000px;}
.ws95{word-spacing:7.326000px;}
.wsce{word-spacing:7.920000px;}
.wsea{word-spacing:8.448000px;}
.wsa4{word-spacing:8.580000px;}
.ws9e{word-spacing:9.174000px;}
.ws7c{word-spacing:9.768000px;}
.wsd3{word-spacing:10.164000px;}
.wsbc{word-spacing:10.362000px;}
.wsd4{word-spacing:10.428000px;}
.wsbd{word-spacing:11.550000px;}
.wsa5{word-spacing:12.144000px;}
.wsa3{word-spacing:15.840000px;}
.wsa2{word-spacing:15.906000px;}
.wsbb{word-spacing:16.962000px;}
.wsaa{word-spacing:21.120000px;}
.wsab{word-spacing:21.252000px;}
.ws8b{word-spacing:22.506000px;}
.ws2a{word-spacing:24.696000px;}
.ws2c{word-spacing:34.356000px;}
.wsff{word-spacing:44.919000px;}
.wsfe{word-spacing:45.423000px;}
.wsfa{word-spacing:82.467000px;}
.wsed{word-spacing:99.855000px;}
._13{margin-left:-13.645800px;}
._3{margin-left:-12.268800px;}
._6{margin-left:-11.167200px;}
._14{margin-left:-10.013400px;}
._12{margin-left:-8.202600px;}
._4{margin-left:-5.529600px;}
._5{margin-left:-4.060800px;}
._2{margin-left:-2.764800px;}
._1{margin-left:-1.468800px;}
._0{width:1.101600px;}
._7{width:2.613600px;}
._18{width:3.808800px;}
._1c{width:4.950000px;}
._17{width:6.468000px;}
._19{width:7.478400px;}
._1a{width:10.514400px;}
._1f{width:11.814000px;}
._21{width:13.022400px;}
._1e{width:20.896800px;}
._1d{width:22.418400px;}
._24{width:44.890200px;}
._23{width:82.911600px;}
._a{width:182.928000px;}
._22{width:355.482000px;}
._20{width:415.728000px;}
._16{width:627.552000px;}
._8{width:849.744000px;}
._9{width:853.396800px;}
._1b{width:858.057600px;}
._f{width:989.680800px;}
._10{width:1027.188000px;}
._15{width:1119.552000px;}
._c{width:1399.084800px;}
._e{width:1570.293600px;}
._d{width:1922.340000px;}
._11{width:1970.428800px;}
._b{width:2305.152000px;}
.fc4{color:rgb(146,146,149);}
.fc3{color:rgb(0,106,178);}
.fc2{color:rgb(236,235,236);}
.fc5{color:rgb(242,242,242);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(75,75,77);}
.fs9{font-size:30.000000px;}
.fs8{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:57.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.fs7{font-size:168.000000px;}
.fs5{font-size:180.000000px;}
.fs3{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:1.650000px;}
.y3d{bottom:1.800000px;}
.y1a5{bottom:3.000000px;}
.y195{bottom:13.350000px;}
.y197{bottom:25.950000px;}
.y19a{bottom:26.100000px;}
.y198{bottom:30.450000px;}
.y19b{bottom:30.600000px;}
.y1a1{bottom:43.500000px;}
.y3b{bottom:46.800000px;}
.y1a2{bottom:48.000000px;}
.y68{bottom:71.100000px;}
.y37{bottom:71.250000px;}
.yb7{bottom:74.850000px;}
.y110{bottom:84.027000px;}
.y1c2{bottom:85.078500px;}
.ye5{bottom:86.850000px;}
.y36{bottom:87.750000px;}
.y67{bottom:89.550000px;}
.y66{bottom:100.494000px;}
.y13b{bottom:101.550000px;}
.y35{bottom:104.250000px;}
.y10f{bottom:106.071000px;}
.y2{bottom:106.350000px;}
.y1c1{bottom:107.271000px;}
.y8b{bottom:115.050000px;}
.y173{bottom:116.250000px;}
.y65{bottom:118.800000px;}
.ye4{bottom:119.865000px;}
.y34{bottom:120.750000px;}
.y10e{bottom:128.263500px;}
.y1c0{bottom:129.463500px;}
.y64{bottom:130.800000px;}
.y8a{bottom:133.500000px;}
.y13a{bottom:138.463500px;}
.ye3{bottom:142.057500px;}
.y89{bottom:145.500000px;}
.yb6{bottom:148.200000px;}
.y10d{bottom:150.456000px;}
.y33{bottom:150.750000px;}
.y1bf{bottom:151.507500px;}
.y4f{bottom:152.850000px;}
.y172{bottom:154.513500px;}
.y139{bottom:159.006000px;}
.yb5{bottom:162.750000px;}
.ye2{bottom:164.250000px;}
.y32{bottom:167.250000px;}
.y10c{bottom:172.536000px;}
.y1be{bottom:173.700000px;}
.y171{bottom:176.557500px;}
.yb4{bottom:177.450000px;}
.y4e{bottom:178.500000px;}
.y138{bottom:181.198500px;}
.y31{bottom:183.750000px;}
.yb3{bottom:189.450000px;}
.ye1{bottom:190.678500px;}
.y10b{bottom:194.728500px;}
.y1bd{bottom:195.892500px;}
.y191{bottom:196.200000px;}
.y170{bottom:198.744000px;}
.y4d{bottom:199.650000px;}
.y30{bottom:200.250000px;}
.y137{bottom:203.242500px;}
.yd{bottom:209.400000px;}
.ye0{bottom:212.722500px;}
.y1f4{bottom:216.150000px;}
.y2f{bottom:216.750000px;}
.y10a{bottom:216.921000px;}
.y88{bottom:217.836000px;}
.y4c{bottom:220.800000px;}
.y136{bottom:225.600000px;}
.yb2{bottom:229.528500px;}
.y190{bottom:230.850000px;}
.y1bc{bottom:231.465000px;}
.y2e{bottom:233.250000px;}
.y16f{bottom:234.499500px;}
.ydf{bottom:234.915000px;}
.y109{bottom:238.965000px;}
.y87{bottom:240.028500px;}
.y4b{bottom:241.950000px;}
.y15d{bottom:245.086500px;}
.yc{bottom:247.368000px;}
.yb1{bottom:251.721000px;}
.y135{bottom:251.865000px;}
.y1f3{bottom:251.937000px;}
.y1bb{bottom:253.657500px;}
.y16e{bottom:256.543500px;}
.yde{bottom:257.107500px;}
.y108{bottom:261.157500px;}
.y86{bottom:262.221000px;}
.y4a{bottom:263.100000px;}
.y2d{bottom:263.250000px;}
.y18f{bottom:265.500000px;}
.yb0{bottom:273.913500px;}
.y134{bottom:274.057500px;}
.y1ba{bottom:275.857500px;}
.y16d{bottom:278.736000px;}
.ydd{bottom:279.300000px;}
.y2c{bottom:279.750000px;}
.y15c{bottom:280.644000px;}
.y107{bottom:283.350000px;}
.y49{bottom:284.247750px;}
.y85{bottom:284.265000px;}
.y1f2{bottom:287.494500px;}
.yb{bottom:293.112000px;}
.yaf{bottom:295.957500px;}
.y2b{bottom:296.250000px;}
.y18e{bottom:300.150000px;}
.y16c{bottom:300.928500px;}
.y48{bottom:305.400000px;}
.ydc{bottom:305.721000px;}
.y84{bottom:306.457500px;}
.y1f1{bottom:309.687000px;}
.y106{bottom:309.750000px;}
.y1b9{bottom:311.563500px;}
.y2a{bottom:312.750000px;}
.y15b{bottom:316.372500px;}
.yae{bottom:318.150000px;}
.y133{bottom:322.665000px;}
.y16b{bottom:322.972500px;}
.ydb{bottom:327.765000px;}
.y1d4{bottom:327.900000px;}
.y83{bottom:328.650000px;}
.y29{bottom:329.250000px;}
.y1f0{bottom:331.879500px;}
.y1b8{bottom:333.607500px;}
.y18d{bottom:334.800000px;}
.y15a{bottom:338.565000px;}
.ya{bottom:338.856000px;}
.y47{bottom:344.400000px;}
.y132{bottom:344.857500px;}
.y16a{bottom:345.165000px;}
.y28{bottom:345.750000px;}
.y105{bottom:349.213500px;}
.yda{bottom:349.957500px;}
.y82{bottom:351.450000px;}
.yad{bottom:352.344000px;}
.y1ef{bottom:353.923500px;}
.y1b7{bottom:355.836000px;}
.y159{bottom:360.609000px;}
.y27{bottom:362.250000px;}
.y131{bottom:367.050000px;}
.y169{bottom:367.357500px;}
.y18c{bottom:369.636000px;}
.y104{bottom:371.406000px;}
.yd9{bottom:372.150000px;}
.y1d3{bottom:373.802250px;}
.y1ee{bottom:376.116000px;}
.y1b6{bottom:378.028500px;}
.y20d{bottom:378.416250px;}
.y26{bottom:378.750000px;}
.y158{bottom:382.801500px;}
.y9{bottom:384.600000px;}
.y168{bottom:389.550000px;}
.y81{bottom:390.042000px;}
.y18b{bottom:391.828500px;}
.y130{bottom:393.478500px;}
.y103{bottom:393.598500px;}
.yd8{bottom:398.554500px;}
.y1b5{bottom:400.072500px;}
.y157{bottom:404.994000px;}
.y1ed{bottom:411.822000px;}
.y80{bottom:412.086000px;}
.y167{bottom:412.350000px;}
.y46{bottom:412.650000px;}
.y20c{bottom:413.066250px;}
.y18a{bottom:414.021000px;}
.y12f{bottom:415.522500px;}
.y102{bottom:415.642500px;}
.yd7{bottom:420.747000px;}
.y1b4{bottom:422.265000px;}
.y25{bottom:429.750000px;}
.y8{bottom:430.344000px;}
.y1ec{bottom:433.866000px;}
.y7f{bottom:434.278500px;}
.yac{bottom:434.550000px;}
.y189{bottom:436.065000px;}
.y12e{bottom:437.715000px;}
.y101{bottom:438.000000px;}
.yd6{bottom:440.547000px;}
.y156{bottom:440.700000px;}
.y1b3{bottom:444.457500px;}
.y24{bottom:446.250000px;}
.y20b{bottom:447.716250px;}
.y45{bottom:449.850000px;}
.y166{bottom:450.780000px;}
.y1eb{bottom:456.058500px;}
.y7e{bottom:456.471000px;}
.y188{bottom:458.257500px;}
.yd5{bottom:458.697000px;}
.y12d{bottom:459.907500px;}
.y7{bottom:462.600000px;}
.y23{bottom:462.750000px;}
.y100{bottom:464.263500px;}
.y1b2{bottom:466.650000px;}
.y20a{bottom:468.868500px;}
.yab{bottom:469.393500px;}
.yd4{bottom:476.847000px;}
.y7d{bottom:478.515000px;}
.y22{bottom:479.250000px;}
.y187{bottom:480.450000px;}
.y12c{bottom:482.100000px;}
.y155{bottom:484.950000px;}
.yff{bottom:486.456000px;}
.y165{bottom:486.486000px;}
.y1b1{bottom:489.450000px;}
.y209{bottom:490.020750px;}
.yaa{bottom:491.586000px;}
.y1ea{bottom:491.764500px;}
.yd3{bottom:494.848500px;}
.y21{bottom:495.750000px;}
.y152{bottom:500.299500px;}
.y7c{bottom:500.707500px;}
.y186{bottom:502.642500px;}
.y154{bottom:504.000000px;}
.y12b{bottom:508.576500px;}
.yfe{bottom:508.648500px;}
.y164{bottom:508.678500px;}
.y208{bottom:511.173000px;}
.y20{bottom:512.250000px;}
.y6{bottom:512.676000px;}
.yd2{bottom:512.998500px;}
.ya9{bottom:513.778500px;}
.y1e9{bottom:513.957000px;}
.y1af{bottom:522.300000px;}
.y151{bottom:522.492000px;}
.y7b{bottom:522.900000px;}
.y63{bottom:523.325250px;}
.y1f{bottom:528.750000px;}
.y12a{bottom:530.620500px;}
.yfd{bottom:530.692500px;}
.y163{bottom:530.871000px;}
.yd1{bottom:531.148500px;}
.y207{bottom:532.325250px;}
.y1b0{bottom:533.250000px;}
.ya8{bottom:535.971000px;}
.y1e8{bottom:536.001000px;}
.y1cf{bottom:537.186000px;}
.y185{bottom:538.222500px;}
.y62{bottom:544.477500px;}
.y150{bottom:544.684500px;}
.y1e{bottom:545.250000px;}
.y7a{bottom:545.700000px;}
.yd0{bottom:549.298500px;}
.y153{bottom:549.900000px;}
.y129{bottom:552.813000px;}
.y162{bottom:552.915000px;}
.yfc{bottom:553.050000px;}
.ya7{bottom:558.015000px;}
.y1e7{bottom:558.193500px;}
.y1ce{bottom:559.230000px;}
.y184{bottom:560.415000px;}
.y44{bottom:560.997000px;}
.y1ae{bottom:565.500000px;}
.y61{bottom:565.629750px;}
.y14f{bottom:566.728500px;}
.y206{bottom:566.975250px;}
.ycf{bottom:567.448500px;}
.y128{bottom:575.005500px;}
.y161{bottom:575.107500px;}
.y1d{bottom:575.250000px;}
.yfb{bottom:579.315000px;}
.ya6{bottom:580.207500px;}
.y1e6{bottom:580.386000px;}
.y1cd{bottom:581.422500px;}
.y5{bottom:581.688000px;}
.y183{bottom:582.607500px;}
.yce{bottom:585.598500px;}
.y79{bottom:587.250000px;}
.y205{bottom:588.127500px;}
.y14e{bottom:588.921000px;}
.y43{bottom:589.200000px;}
.y1c{bottom:591.750000px;}
.y127{bottom:597.198000px;}
.y160{bottom:597.300000px;}
.y60{bottom:600.279750px;}
.yfa{bottom:601.507500px;}
.ya5{bottom:602.400000px;}
.y1e5{bottom:602.430000px;}
.ycd{bottom:603.600000px;}
.y1cc{bottom:603.615000px;}
.y182{bottom:604.651500px;}
.y1b{bottom:608.250000px;}
.y1ac{bottom:608.850000px;}
.y204{bottom:609.279750px;}
.y14d{bottom:611.113500px;}
.y126{bottom:619.242000px;}
.y5f{bottom:621.432000px;}
.y1d2{bottom:623.550000px;}
.yf9{bottom:623.700000px;}
.y1ad{bottom:624.300000px;}
.y1e4{bottom:624.622500px;}
.y1a{bottom:624.750000px;}
.ya4{bottom:625.200000px;}
.y1cb{bottom:625.659000px;}
.ycc{bottom:626.098500px;}
.y14c{bottom:633.306000px;}
.y78{bottom:637.527000px;}
.y181{bottom:640.357500px;}
.y19{bottom:641.250000px;}
.y15f{bottom:641.400000px;}
.y125{bottom:641.434500px;}
.y5e{bottom:642.584250px;}
.y203{bottom:643.929750px;}
.ycb{bottom:644.248500px;}
.y1e3{bottom:646.815000px;}
.yf8{bottom:650.115000px;}
.y4{bottom:650.700000px;}
.y1ab{bottom:652.050000px;}
.y14b{bottom:655.371000px;}
.y18{bottom:657.750000px;}
.y77{bottom:659.571000px;}
.y1ca{bottom:661.365000px;}
.yca{bottom:662.398500px;}
.y180{bottom:662.550000px;}
.ya3{bottom:663.622500px;}
.y124{bottom:663.627000px;}
.y5d{bottom:663.736500px;}
.y202{bottom:665.082000px;}
.y1d1{bottom:666.900000px;}
.y1e2{bottom:669.007500px;}
.yf7{bottom:672.307500px;}
.y17{bottom:674.250000px;}
.y14a{bottom:677.563500px;}
.yc9{bottom:680.400000px;}
.y76{bottom:681.763500px;}
.y1c9{bottom:683.557500px;}
.y17f{bottom:684.594000px;}
.y5c{bottom:684.888750px;}
.y123{bottom:685.671000px;}
.ya2{bottom:685.815000px;}
.y15e{bottom:687.300000px;}
.y16{bottom:690.750000px;}
.y1e1{bottom:691.051500px;}
.yf6{bottom:694.500000px;}
.y1a9{bottom:695.400000px;}
.yc8{bottom:698.550000px;}
.y201{bottom:699.732000px;}
.y149{bottom:699.756000px;}
.y75{bottom:703.956000px;}
.y5b{bottom:706.041000px;}
.y15{bottom:707.250000px;}
.y122{bottom:707.863500px;}
.ya1{bottom:708.007500px;}
.y1aa{bottom:710.850000px;}
.y1d0{bottom:712.800000px;}
.yc7{bottom:716.700000px;}
.y1c8{bottom:719.263500px;}
.y17e{bottom:720.300000px;}
.y200{bottom:720.884250px;}
.yf5{bottom:720.921000px;}
.y148{bottom:721.807500px;}
.y14{bottom:723.750000px;}
.y74{bottom:726.043500px;}
.y1e0{bottom:726.757500px;}
.y5a{bottom:727.193250px;}
.y121{bottom:730.056000px;}
.ya0{bottom:730.227000px;}
.y3{bottom:735.900000px;}
.y1a7{bottom:738.600000px;}
.yc6{bottom:739.221000px;}
.y13{bottom:740.250000px;}
.y1c7{bottom:741.307500px;}
.y1ff{bottom:742.036500px;}
.yf4{bottom:742.965000px;}
.y147{bottom:744.000000px;}
.y73{bottom:748.236000px;}
.y59{bottom:748.345500px;}
.y1df{bottom:748.963500px;}
.y120{bottom:752.121000px;}
.y9f{bottom:752.271000px;}
.y1a8{bottom:754.200000px;}
.y17d{bottom:756.006000px;}
.y12{bottom:756.750000px;}
.yc5{bottom:757.222500px;}
.y1c6{bottom:763.507500px;}
.yf3{bottom:765.157500px;}
.y146{bottom:766.800000px;}
.y58{bottom:769.497750px;}
.y72{bottom:770.428500px;}
.y1de{bottom:771.007500px;}
.y11{bottom:773.250000px;}
.y11f{bottom:774.313500px;}
.y9e{bottom:774.463500px;}
.y1fe{bottom:776.686500px;}
.yc4{bottom:777.765000px;}
.y17c{bottom:778.198500px;}
.y1a6{bottom:781.950000px;}
.y1c5{bottom:785.700000px;}
.yf2{bottom:787.350000px;}
.y57{bottom:790.638750px;}
.y71{bottom:792.472500px;}
.y1dd{bottom:793.236000px;}
.y11e{bottom:796.506000px;}
.y9d{bottom:796.656000px;}
.y1fd{bottom:797.838750px;}
.yc3{bottom:799.957500px;}
.y17b{bottom:800.242500px;}
.y145{bottom:805.371000px;}
.y56{bottom:811.791000px;}
.yf1{bottom:813.757500px;}
.y70{bottom:814.665000px;}
.y1dc{bottom:815.428500px;}
.y11d{bottom:818.698500px;}
.y9c{bottom:818.707500px;}
.yc2{bottom:822.150000px;}
.y17a{bottom:822.600000px;}
.y42{bottom:823.497000px;}
.y1a0{bottom:825.150000px;}
.y144{bottom:827.563500px;}
.y1c4{bottom:829.800000px;}
.y1fc{bottom:832.488750px;}
.y55{bottom:832.943250px;}
.yf0{bottom:835.950000px;}
.y11c{bottom:840.742500px;}
.y9b{bottom:840.907500px;}
.y1a4{bottom:843.151500px;}
.yc1{bottom:848.571000px;}
.y179{bottom:849.000000px;}
.y143{bottom:849.607500px;}
.y6f{bottom:850.371000px;}
.y1db{bottom:850.986000px;}
.y41{bottom:851.700000px;}
.y1fb{bottom:853.641000px;}
.y1a3{bottom:858.150000px;}
.y11b{bottom:863.100000px;}
.y9a{bottom:863.113500px;}
.yef{bottom:864.750000px;}
.y54{bottom:867.593250px;}
.yc0{bottom:870.615000px;}
.y142{bottom:871.800000px;}
.y6e{bottom:872.563500px;}
.y1da{bottom:873.178500px;}
.y178{bottom:875.400000px;}
.y1c3{bottom:875.700000px;}
.y99{bottom:885.306000px;}
.y19e{bottom:885.900000px;}
.y1fa{bottom:888.291000px;}
.y53{bottom:888.745500px;}
.y40{bottom:888.900000px;}
.y11a{bottom:889.500000px;}
.ybf{bottom:892.807500px;}
.y6d{bottom:894.607500px;}
.y1d9{bottom:895.371000px;}
.y19f{bottom:901.500000px;}
.y177{bottom:901.800000px;}
.yee{bottom:903.000000px;}
.y98{bottom:907.392000px;}
.y1f9{bottom:909.443250px;}
.y52{bottom:909.897750px;}
.ybe{bottom:915.000000px;}
.y119{bottom:915.921000px;}
.y6c{bottom:916.800000px;}
.y1d8{bottom:917.563500px;}
.y10{bottom:923.250000px;}
.yed{bottom:924.477000px;}
.y3f{bottom:926.100000px;}
.y19c{bottom:929.250000px;}
.y97{bottom:929.584500px;}
.y51{bottom:931.050000px;}
.y140{bottom:933.043500px;}
.y118{bottom:937.965000px;}
.y1d7{bottom:939.607500px;}
.ybd{bottom:941.415000px;}
.y176{bottom:941.722500px;}
.y1f8{bottom:944.093250px;}
.y19d{bottom:944.700000px;}
.yec{bottom:946.521000px;}
.y96{bottom:951.777000px;}
.y13f{bottom:955.236000px;}
.y117{bottom:960.157500px;}
.y1d6{bottom:961.800000px;}
.ybc{bottom:963.607500px;}
.y175{bottom:963.915000px;}
.y1f7{bottom:965.245500px;}
.y141{bottom:968.604000px;}
.yeb{bottom:968.713500px;}
.y199{bottom:972.450000px;}
.y95{bottom:973.821000px;}
.y13e{bottom:977.428500px;}
.y116{bottom:982.350000px;}
.ybb{bottom:985.800000px;}
.y1f6{bottom:986.397750px;}
.yea{bottom:990.906000px;}
.y94{bottom:996.013500px;}
.yf{bottom:996.750000px;}
.y13d{bottom:999.472500px;}
.y1f5{bottom:1007.550000px;}
.y115{bottom:1008.778500px;}
.yba{bottom:1012.200000px;}
.ye9{bottom:1012.986000px;}
.y6b{bottom:1013.586000px;}
.y196{bottom:1015.800000px;}
.ye{bottom:1017.750000px;}
.y93{bottom:1018.206000px;}
.y13c{bottom:1021.665000px;}
.y3e{bottom:1027.050000px;}
.y114{bottom:1030.971000px;}
.ye8{bottom:1035.178500px;}
.y92{bottom:1040.250000px;}
.yb9{bottom:1041.000000px;}
.y174{bottom:1043.857500px;}
.y113{bottom:1053.015000px;}
.ye7{bottom:1057.371000px;}
.y1d5{bottom:1058.550000px;}
.y6a{bottom:1058.568000px;}
.y194{bottom:1059.000000px;}
.y91{bottom:1063.200000px;}
.y193{bottom:1067.850000px;}
.y112{bottom:1075.207500px;}
.yb8{bottom:1079.556000px;}
.ye6{bottom:1079.563500px;}
.y111{bottom:1097.400000px;}
.y90{bottom:1101.607500px;}
.y69{bottom:1103.550000px;}
.y192{bottom:1116.600000px;}
.y8f{bottom:1123.800000px;}
.y3c{bottom:1172.850000px;}
.y3a{bottom:1173.306000px;}
.y1{bottom:1187.550000px;}
.y50{bottom:1187.850000px;}
.y8c{bottom:1196.550000px;}
.y39{bottom:1198.506000px;}
.y8d{bottom:1202.250000px;}
.y38{bottom:1213.050000px;}
.h1a{height:16.650000px;}
.ha{height:16.800000px;}
.h11{height:21.401367px;}
.h24{height:29.100000px;}
.h2f{height:32.083008px;}
.h9{height:32.812500px;}
.h7{height:34.242188px;}
.h2{height:34.453125px;}
.h1f{height:40.913086px;}
.h26{height:42.450000px;}
.h2a{height:42.451500px;}
.h28{height:42.600000px;}
.h3{height:44.942871px;}
.h25{height:45.117188px;}
.h8{height:45.219727px;}
.h23{height:45.717188px;}
.h13{height:47.083008px;}
.h27{height:47.373047px;}
.h1e{height:50.877914px;}
.h22{height:50.985914px;}
.hf{height:51.006914px;}
.h10{height:51.060914px;}
.h4{height:51.679688px;}
.hd{height:51.688688px;}
.h21{height:53.763914px;}
.h14{height:53.787914px;}
.h18{height:53.793914px;}
.h2e{height:53.817914px;}
.h15{height:53.853914px;}
.h20{height:53.871914px;}
.h2b{height:53.901914px;}
.h1b{height:53.907914px;}
.h2c{height:53.913914px;}
.h1c{height:53.931914px;}
.h19{height:58.453125px;}
.h29{height:60.000000px;}
.hc{height:60.292969px;}
.h2d{height:68.835938px;}
.h6{height:68.906250px;}
.h17{height:75.093750px;}
.h1d{height:87.609375px;}
.h16{height:100.125000px;}
.h12{height:120.585938px;}
.hb{height:129.199219px;}
.h5{height:154.089844px;}
.he{height:187.734375px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.800000px;}
.w3{width:16.801500px;}
.w5{width:127.500000px;}
.w6{width:236.400000px;}
.w4{width:298.950000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:4.350000px;}
.x8{left:6.450000px;}
.x21{left:8.100000px;}
.x5{left:57.900000px;}
.x20{left:62.400000px;}
.x3{left:106.350000px;}
.x7{left:111.900000px;}
.x1e{left:114.750000px;}
.x13{left:128.550000px;}
.x15{left:131.850000px;}
.x1a{left:133.194000px;}
.x9{left:140.400000px;}
.xe{left:148.950000px;}
.x16{left:157.333500px;}
.x11{left:161.700000px;}
.xa{left:166.950000px;}
.x18{left:174.450000px;}
.x19{left:175.950000px;}
.x17{left:199.950000px;}
.x14{left:204.318000px;}
.x4{left:228.750000px;}
.x22{left:233.850000px;}
.x24{left:241.950000px;}
.x12{left:322.350000px;}
.xf{left:364.950000px;}
.x1{left:400.950000px;}
.x1f{left:470.250000px;}
.x23{left:478.350000px;}
.xc{left:503.700000px;}
.x26{left:561.750000px;}
.x6{left:598.044000px;}
.x25{left:610.350000px;}
.x29{left:632.544000px;}
.x1d{left:637.950000px;}
.x1b{left:644.544000px;}
.x10{left:689.244000px;}
.x28{left:695.700000px;}
.x27{left:744.004500px;}
.x1c{left:786.600000px;}
.x2{left:799.350000px;}
.xb{left:841.950000px;}
@media print{
.v1{vertical-align:-21.333333pt;}
.v3{vertical-align:-18.666667pt;}
.v4{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.650667pt;}
.v2{vertical-align:18.706667pt;}
.v5{vertical-align:21.178667pt;}
.ls82{letter-spacing:-0.658667pt;}
.ls88{letter-spacing:-0.608000pt;}
.ls69{letter-spacing:-0.586667pt;}
.ls19{letter-spacing:-0.512000pt;}
.ls8c{letter-spacing:-0.506667pt;}
.ls94{letter-spacing:-0.504000pt;}
.ls53{letter-spacing:-0.469333pt;}
.ls12{letter-spacing:-0.426667pt;}
.ls63{letter-spacing:-0.410667pt;}
.ls3a{letter-spacing:-0.392000pt;}
.ls64{letter-spacing:-0.341333pt;}
.ls93{letter-spacing:-0.336000pt;}
.ls92{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.298667pt;}
.ls6b{letter-spacing:-0.293333pt;}
.ls37{letter-spacing:-0.280000pt;}
.ls81{letter-spacing:-0.253333pt;}
.ls55{letter-spacing:-0.234667pt;}
.ls28{letter-spacing:-0.224000pt;}
.ls15{letter-spacing:-0.213333pt;}
.ls61{letter-spacing:-0.186667pt;}
.ls51{letter-spacing:-0.176000pt;}
.ls18{letter-spacing:-0.170667pt;}
.ls29{letter-spacing:-0.168000pt;}
.ls21{letter-spacing:-0.160000pt;}
.ls7a{letter-spacing:-0.152000pt;}
.ls24{letter-spacing:-0.149333pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls52{letter-spacing:-0.117333pt;}
.ls26{letter-spacing:-0.112000pt;}
.ls7c{letter-spacing:-0.101333pt;}
.ls22{letter-spacing:-0.074667pt;}
.ls4f{letter-spacing:-0.058667pt;}
.ls7b{letter-spacing:-0.050667pt;}
.ls13{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.010667pt;}
.ls66{letter-spacing:0.023467pt;}
.ls4d{letter-spacing:0.038400pt;}
.lsd{letter-spacing:0.042667pt;}
.ls80{letter-spacing:0.050667pt;}
.ls87{letter-spacing:0.052800pt;}
.ls39{letter-spacing:0.056000pt;}
.ls40{letter-spacing:0.058667pt;}
.ls2{letter-spacing:0.064000pt;}
.ls2e{letter-spacing:0.072800pt;}
.ls1c{letter-spacing:0.074667pt;}
.ls8a{letter-spacing:0.080000pt;}
.lse{letter-spacing:0.085333pt;}
.ls79{letter-spacing:0.101333pt;}
.ls76{letter-spacing:0.111467pt;}
.ls36{letter-spacing:0.112000pt;}
.ls50{letter-spacing:0.117333pt;}
.ls45{letter-spacing:0.119467pt;}
.ls16{letter-spacing:0.128000pt;}
.ls2f{letter-spacing:0.132800pt;}
.ls90{letter-spacing:0.144000pt;}
.ls23{letter-spacing:0.149333pt;}
.ls5e{letter-spacing:0.152533pt;}
.ls8d{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.168000pt;}
.ls10{letter-spacing:0.170667pt;}
.ls78{letter-spacing:0.172267pt;}
.ls3c{letter-spacing:0.176000pt;}
.ls84{letter-spacing:0.181333pt;}
.ls5d{letter-spacing:0.204800pt;}
.lsc{letter-spacing:0.213333pt;}
.ls25{letter-spacing:0.224000pt;}
.lsf{letter-spacing:0.234667pt;}
.ls7d{letter-spacing:0.253333pt;}
.ls11{letter-spacing:0.256000pt;}
.ls60{letter-spacing:0.261333pt;}
.ls71{letter-spacing:0.269867pt;}
.ls33{letter-spacing:0.272000pt;}
.ls38{letter-spacing:0.280000pt;}
.ls85{letter-spacing:0.282667pt;}
.lsb{letter-spacing:0.298667pt;}
.ls5c{letter-spacing:0.299200pt;}
.ls83{letter-spacing:0.304000pt;}
.ls8e{letter-spacing:0.320000pt;}
.ls89{letter-spacing:0.486933pt;}
.ls4a{letter-spacing:0.490667pt;}
.ls4c{letter-spacing:0.512000pt;}
.ls41{letter-spacing:0.586667pt;}
.ls72{letter-spacing:0.592533pt;}
.ls65{letter-spacing:0.677333pt;}
.ls6a{letter-spacing:0.704000pt;}
.ls54{letter-spacing:0.832000pt;}
.ls34{letter-spacing:1.024000pt;}
.ls4b{letter-spacing:1.045333pt;}
.ls42{letter-spacing:1.114667pt;}
.ls3{letter-spacing:1.152000pt;}
.ls73{letter-spacing:1.216000pt;}
.ls8{letter-spacing:1.280000pt;}
.ls5{letter-spacing:1.344000pt;}
.ls4{letter-spacing:1.536000pt;}
.ls4e{letter-spacing:1.578667pt;}
.ls57{letter-spacing:1.701333pt;}
.ls59{letter-spacing:2.029867pt;}
.ls74{letter-spacing:2.144000pt;}
.ls49{letter-spacing:2.229333pt;}
.ls75{letter-spacing:2.240000pt;}
.ls31{letter-spacing:2.296000pt;}
.ls6{letter-spacing:2.474667pt;}
.ls6c{letter-spacing:2.593067pt;}
.ls7{letter-spacing:2.645333pt;}
.ls9{letter-spacing:2.730667pt;}
.ls47{letter-spacing:2.757333pt;}
.ls7f{letter-spacing:2.794667pt;}
.ls32{letter-spacing:2.800000pt;}
.ls68{letter-spacing:2.810667pt;}
.lsa{letter-spacing:2.816000pt;}
.ls0{letter-spacing:2.901333pt;}
.ls3d{letter-spacing:3.285333pt;}
.ls30{letter-spacing:3.360000pt;}
.ls43{letter-spacing:3.472000pt;}
.ls3b{letter-spacing:3.813333pt;}
.ls5a{letter-spacing:4.341333pt;}
.ls86{letter-spacing:4.410667pt;}
.ls3f{letter-spacing:4.869333pt;}
.ls1f{letter-spacing:5.162667pt;}
.ls77{letter-spacing:5.205333pt;}
.ls35{letter-spacing:5.248000pt;}
.ls20{letter-spacing:5.333333pt;}
.ls5f{letter-spacing:5.376000pt;}
.ls3e{letter-spacing:5.397333pt;}
.ls8f{letter-spacing:5.467733pt;}
.ls6f{letter-spacing:5.632000pt;}
.ls70{letter-spacing:5.653333pt;}
.ls48{letter-spacing:5.925333pt;}
.ls91{letter-spacing:5.958400pt;}
.ls6e{letter-spacing:5.978133pt;}
.ls6d{letter-spacing:6.453333pt;}
.ls7e{letter-spacing:6.981333pt;}
.ls58{letter-spacing:8.624000pt;}
.ls67{letter-spacing:10.736000pt;}
.ls5b{letter-spacing:19.829333pt;}
.ls46{letter-spacing:41.920000pt;}
.ls62{letter-spacing:43.253333pt;}
.ls8b{letter-spacing:61.541333pt;}
.ls56{letter-spacing:62.890667pt;}
.ls44{letter-spacing:64.853333pt;}
.ls1e{letter-spacing:68.736000pt;}
.ls2d{letter-spacing:71.200000pt;}
.ls2a{letter-spacing:162.602667pt;}
.ls1a{letter-spacing:262.357333pt;}
.ls2c{letter-spacing:679.978667pt;}
.ls2b{letter-spacing:814.378667pt;}
.ls1b{letter-spacing:2158.378667pt;}
.wse7{word-spacing:-36.320000pt;}
.wse6{word-spacing:-36.000000pt;}
.wseb{word-spacing:-35.840000pt;}
.ws33{word-spacing:-33.898667pt;}
.wsbf{word-spacing:-33.600000pt;}
.ws1{word-spacing:-21.930667pt;}
.ws0{word-spacing:-21.760000pt;}
.ws2{word-spacing:-20.565333pt;}
.ws23{word-spacing:-19.456000pt;}
.ws24{word-spacing:-19.285333pt;}
.ws59{word-spacing:-19.114667pt;}
.ws21{word-spacing:-16.949333pt;}
.ws20{word-spacing:-16.800000pt;}
.ws22{word-spacing:-16.725333pt;}
.ws5b{word-spacing:-15.808000pt;}
.wsdb{word-spacing:-15.616000pt;}
.ws5a{word-spacing:-15.488000pt;}
.ws83{word-spacing:-15.296000pt;}
.wsda{word-spacing:-15.168000pt;}
.ws1f{word-spacing:-14.976000pt;}
.ws32{word-spacing:-14.890667pt;}
.wsbe{word-spacing:-14.848000pt;}
.ws1e{word-spacing:-14.805333pt;}
.ws82{word-spacing:-13.493333pt;}
.wsad{word-spacing:-13.434667pt;}
.ws55{word-spacing:-13.376000pt;}
.ws58{word-spacing:-13.317333pt;}
.ws80{word-spacing:-13.258667pt;}
.ws56{word-spacing:-13.200000pt;}
.ws5c{word-spacing:-13.141333pt;}
.ws57{word-spacing:-13.082667pt;}
.ws5d{word-spacing:-13.024000pt;}
.wsac{word-spacing:-12.965333pt;}
.ws36{word-spacing:-12.880000pt;}
.ws9a{word-spacing:-12.848000pt;}
.ws27{word-spacing:-12.824000pt;}
.wsc4{word-spacing:-12.789333pt;}
.ws37{word-spacing:-12.712000pt;}
.ws26{word-spacing:-12.656000pt;}
.ws25{word-spacing:-12.544000pt;}
.ws28{word-spacing:-12.488000pt;}
.ws35{word-spacing:-12.432000pt;}
.ws34{word-spacing:-12.376000pt;}
.ws38{word-spacing:-12.264000pt;}
.wsd7{word-spacing:-11.552000pt;}
.wsd9{word-spacing:-11.501333pt;}
.wsc2{word-spacing:-11.450667pt;}
.wse0{word-spacing:-11.400000pt;}
.wsc3{word-spacing:-11.349333pt;}
.wsd6{word-spacing:-11.298667pt;}
.wscb{word-spacing:-11.197333pt;}
.wsd8{word-spacing:-10.842667pt;}
.wscc{word-spacing:-10.792000pt;}
.ws10{word-spacing:-9.898667pt;}
.ws84{word-spacing:-9.877333pt;}
.wsc{word-spacing:-9.813333pt;}
.ws14{word-spacing:-9.685333pt;}
.wsb{word-spacing:-9.642667pt;}
.wse{word-spacing:-9.600000pt;}
.wsf{word-spacing:-9.514667pt;}
.ws13{word-spacing:-9.472000pt;}
.ws11{word-spacing:-9.429333pt;}
.ws12{word-spacing:-9.344000pt;}
.ws9b{word-spacing:-9.301333pt;}
.wsd{word-spacing:-9.216000pt;}
.ws15{word-spacing:-9.130667pt;}
.ws81{word-spacing:-8.698667pt;}
.wsdc{word-spacing:-8.437333pt;}
.ws39{word-spacing:-6.026667pt;}
.ws85{word-spacing:-5.840000pt;}
.ws42{word-spacing:-3.304000pt;}
.ws71{word-spacing:-3.050667pt;}
.ws8{word-spacing:-2.901333pt;}
.ws41{word-spacing:-2.856000pt;}
.ws43{word-spacing:-2.800000pt;}
.ws7{word-spacing:-2.730667pt;}
.wsaf{word-spacing:-2.698667pt;}
.ws6e{word-spacing:-2.522667pt;}
.ws6d{word-spacing:-2.405333pt;}
.ws100{word-spacing:-2.184000pt;}
.wsb0{word-spacing:-2.170667pt;}
.wse9{word-spacing:-2.112000pt;}
.wsa0{word-spacing:-1.994667pt;}
.ws101{word-spacing:-1.904000pt;}
.ws94{word-spacing:-1.877333pt;}
.ws4e{word-spacing:-1.792000pt;}
.ws3c{word-spacing:-1.680000pt;}
.ws9f{word-spacing:-1.642667pt;}
.wsec{word-spacing:-1.624000pt;}
.wsa1{word-spacing:-1.466667pt;}
.wsb3{word-spacing:-1.349333pt;}
.ws3d{word-spacing:-1.344000pt;}
.ws4d{word-spacing:-1.176000pt;}
.wsd1{word-spacing:-1.114667pt;}
.wsb7{word-spacing:-1.056000pt;}
.ws60{word-spacing:-0.938667pt;}
.wsd2{word-spacing:-0.880000pt;}
.ws18{word-spacing:-0.853333pt;}
.wsf8{word-spacing:-0.840000pt;}
.ws75{word-spacing:-0.832000pt;}
.wsb6{word-spacing:-0.821333pt;}
.ws1d{word-spacing:-0.810667pt;}
.ws53{word-spacing:-0.768000pt;}
.ws97{word-spacing:-0.704000pt;}
.ws52{word-spacing:-0.672000pt;}
.ws50{word-spacing:-0.616000pt;}
.ws9d{word-spacing:-0.586667pt;}
.ws6{word-spacing:-0.576000pt;}
.wsfd{word-spacing:-0.560000pt;}
.wsb1{word-spacing:-0.528000pt;}
.ws3f{word-spacing:-0.504000pt;}
.ws73{word-spacing:-0.410667pt;}
.wse4{word-spacing:-0.354667pt;}
.wsb2{word-spacing:-0.352000pt;}
.ws70{word-spacing:-0.341333pt;}
.wse1{word-spacing:-0.304000pt;}
.ws16{word-spacing:-0.298667pt;}
.ws96{word-spacing:-0.293333pt;}
.ws4a{word-spacing:-0.280000pt;}
.wsa{word-spacing:-0.256000pt;}
.wsdd{word-spacing:-0.253333pt;}
.ws8f{word-spacing:-0.234667pt;}
.ws4f{word-spacing:-0.224000pt;}
.ws1a{word-spacing:-0.213333pt;}
.wsa6{word-spacing:-0.176000pt;}
.ws17{word-spacing:-0.170667pt;}
.ws2f{word-spacing:-0.168000pt;}
.wse8{word-spacing:-0.160000pt;}
.ws5e{word-spacing:-0.149333pt;}
.ws4{word-spacing:-0.128000pt;}
.ws76{word-spacing:-0.117333pt;}
.ws51{word-spacing:-0.112000pt;}
.wsc9{word-spacing:-0.101333pt;}
.ws9{word-spacing:-0.085333pt;}
.ws67{word-spacing:-0.058667pt;}
.ws30{word-spacing:-0.056000pt;}
.wsde{word-spacing:-0.050667pt;}
.ws1b{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.wsc6{word-spacing:0.050667pt;}
.ws3e{word-spacing:0.056000pt;}
.ws74{word-spacing:0.058667pt;}
.ws2b{word-spacing:0.074667pt;}
.wsee{word-spacing:0.112000pt;}
.ws65{word-spacing:0.117333pt;}
.ws1c{word-spacing:0.128000pt;}
.ws5f{word-spacing:0.149333pt;}
.wsc5{word-spacing:0.152000pt;}
.ws7a{word-spacing:0.176000pt;}
.ws5{word-spacing:0.192000pt;}
.wsca{word-spacing:0.202667pt;}
.ws19{word-spacing:0.213333pt;}
.ws40{word-spacing:0.224000pt;}
.ws63{word-spacing:0.234667pt;}
.wscd{word-spacing:0.253333pt;}
.ws99{word-spacing:0.256000pt;}
.ws2e{word-spacing:0.280000pt;}
.wsc1{word-spacing:0.293333pt;}
.ws7e{word-spacing:0.298667pt;}
.ws29{word-spacing:0.320000pt;}
.wsf7{word-spacing:0.336000pt;}
.ws7b{word-spacing:0.352000pt;}
.ws31{word-spacing:0.392000pt;}
.ws6c{word-spacing:0.469333pt;}
.wse3{word-spacing:0.506667pt;}
.ws6b{word-spacing:0.528000pt;}
.wsae{word-spacing:0.586667pt;}
.ws6a{word-spacing:0.645333pt;}
.ws93{word-spacing:0.704000pt;}
.ws92{word-spacing:0.762667pt;}
.ws54{word-spacing:0.768000pt;}
.ws46{word-spacing:0.784000pt;}
.wse5{word-spacing:0.810667pt;}
.ws7d{word-spacing:0.853333pt;}
.wse2{word-spacing:0.912000pt;}
.ws4b{word-spacing:1.008000pt;}
.ws6f{word-spacing:1.173333pt;}
.ws7f{word-spacing:1.280000pt;}
.ws2d{word-spacing:1.344000pt;}
.ws87{word-spacing:1.642667pt;}
.ws86{word-spacing:1.760000pt;}
.ws47{word-spacing:1.848000pt;}
.ws9c{word-spacing:1.877333pt;}
.ws3b{word-spacing:2.072000pt;}
.wsd5{word-spacing:2.112000pt;}
.wsd0{word-spacing:2.170667pt;}
.wsc8{word-spacing:2.178667pt;}
.ws79{word-spacing:2.288000pt;}
.ws91{word-spacing:2.405333pt;}
.wsf1{word-spacing:2.408000pt;}
.ws4c{word-spacing:2.576000pt;}
.wsf0{word-spacing:2.632000pt;}
.wsba{word-spacing:2.640000pt;}
.wsb9{word-spacing:2.698667pt;}
.ws72{word-spacing:2.816000pt;}
.wsc7{word-spacing:2.837333pt;}
.wsef{word-spacing:2.912000pt;}
.wsb8{word-spacing:2.933333pt;}
.wsfc{word-spacing:2.968000pt;}
.ws44{word-spacing:3.136000pt;}
.ws90{word-spacing:3.226667pt;}
.wsfb{word-spacing:3.304000pt;}
.ws64{word-spacing:3.344000pt;}
.ws98{word-spacing:3.402667pt;}
.wsdf{word-spacing:3.461333pt;}
.ws3a{word-spacing:3.472000pt;}
.ws45{word-spacing:3.584000pt;}
.ws48{word-spacing:3.640000pt;}
.wscf{word-spacing:3.696000pt;}
.ws61{word-spacing:3.872000pt;}
.ws49{word-spacing:3.976000pt;}
.ws62{word-spacing:3.989333pt;}
.wsf9{word-spacing:4.088000pt;}
.ws89{word-spacing:4.282667pt;}
.ws8a{word-spacing:4.400000pt;}
.ws8c{word-spacing:4.458667pt;}
.ws8d{word-spacing:4.517333pt;}
.wsa7{word-spacing:4.752000pt;}
.wsb5{word-spacing:4.810667pt;}
.ws69{word-spacing:4.928000pt;}
.wsb4{word-spacing:4.986667pt;}
.ws8e{word-spacing:5.045333pt;}
.ws68{word-spacing:5.280000pt;}
.ws66{word-spacing:5.456000pt;}
.wsc0{word-spacing:5.573333pt;}
.wsf6{word-spacing:5.768000pt;}
.wsa8{word-spacing:5.808000pt;}
.wsf5{word-spacing:5.824000pt;}
.wsa9{word-spacing:5.866667pt;}
.ws88{word-spacing:5.984000pt;}
.ws78{word-spacing:6.042667pt;}
.ws77{word-spacing:6.101333pt;}
.wsf3{word-spacing:6.104000pt;}
.wsf4{word-spacing:6.160000pt;}
.wsf2{word-spacing:6.216000pt;}
.ws95{word-spacing:6.512000pt;}
.wsce{word-spacing:7.040000pt;}
.wsea{word-spacing:7.509333pt;}
.wsa4{word-spacing:7.626667pt;}
.ws9e{word-spacing:8.154667pt;}
.ws7c{word-spacing:8.682667pt;}
.wsd3{word-spacing:9.034667pt;}
.wsbc{word-spacing:9.210667pt;}
.wsd4{word-spacing:9.269333pt;}
.wsbd{word-spacing:10.266667pt;}
.wsa5{word-spacing:10.794667pt;}
.wsa3{word-spacing:14.080000pt;}
.wsa2{word-spacing:14.138667pt;}
.wsbb{word-spacing:15.077333pt;}
.wsaa{word-spacing:18.773333pt;}
.wsab{word-spacing:18.890667pt;}
.ws8b{word-spacing:20.005333pt;}
.ws2a{word-spacing:21.952000pt;}
.ws2c{word-spacing:30.538667pt;}
.wsff{word-spacing:39.928000pt;}
.wsfe{word-spacing:40.376000pt;}
.wsfa{word-spacing:73.304000pt;}
.wsed{word-spacing:88.760000pt;}
._13{margin-left:-12.129600pt;}
._3{margin-left:-10.905600pt;}
._6{margin-left:-9.926400pt;}
._14{margin-left:-8.900800pt;}
._12{margin-left:-7.291200pt;}
._4{margin-left:-4.915200pt;}
._5{margin-left:-3.609600pt;}
._2{margin-left:-2.457600pt;}
._1{margin-left:-1.305600pt;}
._0{width:0.979200pt;}
._7{width:2.323200pt;}
._18{width:3.385600pt;}
._1c{width:4.400000pt;}
._17{width:5.749333pt;}
._19{width:6.647467pt;}
._1a{width:9.346133pt;}
._1f{width:10.501333pt;}
._21{width:11.575467pt;}
._1e{width:18.574933pt;}
._1d{width:19.927467pt;}
._24{width:39.902400pt;}
._23{width:73.699200pt;}
._a{width:162.602667pt;}
._22{width:315.984000pt;}
._20{width:369.536000pt;}
._16{width:557.824000pt;}
._8{width:755.328000pt;}
._9{width:758.574933pt;}
._1b{width:762.717867pt;}
._f{width:879.716267pt;}
._10{width:913.056000pt;}
._15{width:995.157333pt;}
._c{width:1243.630933pt;}
._e{width:1395.816533pt;}
._d{width:1708.746667pt;}
._11{width:1751.492267pt;}
._b{width:2049.024000pt;}
.fs9{font-size:26.666667pt;}
.fs8{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:50.666667pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.fs7{font-size:149.333333pt;}
.fs5{font-size:160.000000pt;}
.fs3{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:1.466667pt;}
.y3d{bottom:1.600000pt;}
.y1a5{bottom:2.666667pt;}
.y195{bottom:11.866667pt;}
.y197{bottom:23.066667pt;}
.y19a{bottom:23.200000pt;}
.y198{bottom:27.066667pt;}
.y19b{bottom:27.200000pt;}
.y1a1{bottom:38.666667pt;}
.y3b{bottom:41.600000pt;}
.y1a2{bottom:42.666667pt;}
.y68{bottom:63.200000pt;}
.y37{bottom:63.333333pt;}
.yb7{bottom:66.533333pt;}
.y110{bottom:74.690667pt;}
.y1c2{bottom:75.625333pt;}
.ye5{bottom:77.200000pt;}
.y36{bottom:78.000000pt;}
.y67{bottom:79.600000pt;}
.y66{bottom:89.328000pt;}
.y13b{bottom:90.266667pt;}
.y35{bottom:92.666667pt;}
.y10f{bottom:94.285333pt;}
.y2{bottom:94.533333pt;}
.y1c1{bottom:95.352000pt;}
.y8b{bottom:102.266667pt;}
.y173{bottom:103.333333pt;}
.y65{bottom:105.600000pt;}
.ye4{bottom:106.546667pt;}
.y34{bottom:107.333333pt;}
.y10e{bottom:114.012000pt;}
.y1c0{bottom:115.078667pt;}
.y64{bottom:116.266667pt;}
.y8a{bottom:118.666667pt;}
.y13a{bottom:123.078667pt;}
.ye3{bottom:126.273333pt;}
.y89{bottom:129.333333pt;}
.yb6{bottom:131.733333pt;}
.y10d{bottom:133.738667pt;}
.y33{bottom:134.000000pt;}
.y1bf{bottom:134.673333pt;}
.y4f{bottom:135.866667pt;}
.y172{bottom:137.345333pt;}
.y139{bottom:141.338667pt;}
.yb5{bottom:144.666667pt;}
.ye2{bottom:146.000000pt;}
.y32{bottom:148.666667pt;}
.y10c{bottom:153.365333pt;}
.y1be{bottom:154.400000pt;}
.y171{bottom:156.940000pt;}
.yb4{bottom:157.733333pt;}
.y4e{bottom:158.666667pt;}
.y138{bottom:161.065333pt;}
.y31{bottom:163.333333pt;}
.yb3{bottom:168.400000pt;}
.ye1{bottom:169.492000pt;}
.y10b{bottom:173.092000pt;}
.y1bd{bottom:174.126667pt;}
.y191{bottom:174.400000pt;}
.y170{bottom:176.661333pt;}
.y4d{bottom:177.466667pt;}
.y30{bottom:178.000000pt;}
.y137{bottom:180.660000pt;}
.yd{bottom:186.133333pt;}
.ye0{bottom:189.086667pt;}
.y1f4{bottom:192.133333pt;}
.y2f{bottom:192.666667pt;}
.y10a{bottom:192.818667pt;}
.y88{bottom:193.632000pt;}
.y4c{bottom:196.266667pt;}
.y136{bottom:200.533333pt;}
.yb2{bottom:204.025333pt;}
.y190{bottom:205.200000pt;}
.y1bc{bottom:205.746667pt;}
.y2e{bottom:207.333333pt;}
.y16f{bottom:208.444000pt;}
.ydf{bottom:208.813333pt;}
.y109{bottom:212.413333pt;}
.y87{bottom:213.358667pt;}
.y4b{bottom:215.066667pt;}
.y15d{bottom:217.854667pt;}
.yc{bottom:219.882667pt;}
.yb1{bottom:223.752000pt;}
.y135{bottom:223.880000pt;}
.y1f3{bottom:223.944000pt;}
.y1bb{bottom:225.473333pt;}
.y16e{bottom:228.038667pt;}
.yde{bottom:228.540000pt;}
.y108{bottom:232.140000pt;}
.y86{bottom:233.085333pt;}
.y4a{bottom:233.866667pt;}
.y2d{bottom:234.000000pt;}
.y18f{bottom:236.000000pt;}
.yb0{bottom:243.478667pt;}
.y134{bottom:243.606667pt;}
.y1ba{bottom:245.206667pt;}
.y16d{bottom:247.765333pt;}
.ydd{bottom:248.266667pt;}
.y2c{bottom:248.666667pt;}
.y15c{bottom:249.461333pt;}
.y107{bottom:251.866667pt;}
.y49{bottom:252.664667pt;}
.y85{bottom:252.680000pt;}
.y1f2{bottom:255.550667pt;}
.yb{bottom:260.544000pt;}
.yaf{bottom:263.073333pt;}
.y2b{bottom:263.333333pt;}
.y18e{bottom:266.800000pt;}
.y16c{bottom:267.492000pt;}
.y48{bottom:271.466667pt;}
.ydc{bottom:271.752000pt;}
.y84{bottom:272.406667pt;}
.y1f1{bottom:275.277333pt;}
.y106{bottom:275.333333pt;}
.y1b9{bottom:276.945333pt;}
.y2a{bottom:278.000000pt;}
.y15b{bottom:281.220000pt;}
.yae{bottom:282.800000pt;}
.y133{bottom:286.813333pt;}
.y16b{bottom:287.086667pt;}
.ydb{bottom:291.346667pt;}
.y1d4{bottom:291.466667pt;}
.y83{bottom:292.133333pt;}
.y29{bottom:292.666667pt;}
.y1f0{bottom:295.004000pt;}
.y1b8{bottom:296.540000pt;}
.y18d{bottom:297.600000pt;}
.y15a{bottom:300.946667pt;}
.ya{bottom:301.205333pt;}
.y47{bottom:306.133333pt;}
.y132{bottom:306.540000pt;}
.y16a{bottom:306.813333pt;}
.y28{bottom:307.333333pt;}
.y105{bottom:310.412000pt;}
.yda{bottom:311.073333pt;}
.y82{bottom:312.400000pt;}
.yad{bottom:313.194667pt;}
.y1ef{bottom:314.598667pt;}
.y1b7{bottom:316.298667pt;}
.y159{bottom:320.541333pt;}
.y27{bottom:322.000000pt;}
.y131{bottom:326.266667pt;}
.y169{bottom:326.540000pt;}
.y18c{bottom:328.565333pt;}
.y104{bottom:330.138667pt;}
.yd9{bottom:330.800000pt;}
.y1d3{bottom:332.268667pt;}
.y1ee{bottom:334.325333pt;}
.y1b6{bottom:336.025333pt;}
.y20d{bottom:336.370000pt;}
.y26{bottom:336.666667pt;}
.y158{bottom:340.268000pt;}
.y9{bottom:341.866667pt;}
.y168{bottom:346.266667pt;}
.y81{bottom:346.704000pt;}
.y18b{bottom:348.292000pt;}
.y130{bottom:349.758667pt;}
.y103{bottom:349.865333pt;}
.yd8{bottom:354.270667pt;}
.y1b5{bottom:355.620000pt;}
.y157{bottom:359.994667pt;}
.y1ed{bottom:366.064000pt;}
.y80{bottom:366.298667pt;}
.y167{bottom:366.533333pt;}
.y46{bottom:366.800000pt;}
.y20c{bottom:367.170000pt;}
.y18a{bottom:368.018667pt;}
.y12f{bottom:369.353333pt;}
.y102{bottom:369.460000pt;}
.yd7{bottom:373.997333pt;}
.y1b4{bottom:375.346667pt;}
.y25{bottom:382.000000pt;}
.y8{bottom:382.528000pt;}
.y1ec{bottom:385.658667pt;}
.y7f{bottom:386.025333pt;}
.yac{bottom:386.266667pt;}
.y189{bottom:387.613333pt;}
.y12e{bottom:389.080000pt;}
.y101{bottom:389.333333pt;}
.yd6{bottom:391.597333pt;}
.y156{bottom:391.733333pt;}
.y1b3{bottom:395.073333pt;}
.y24{bottom:396.666667pt;}
.y20b{bottom:397.970000pt;}
.y45{bottom:399.866667pt;}
.y166{bottom:400.693333pt;}
.y1eb{bottom:405.385333pt;}
.y7e{bottom:405.752000pt;}
.y188{bottom:407.340000pt;}
.yd5{bottom:407.730667pt;}
.y12d{bottom:408.806667pt;}
.y7{bottom:411.200000pt;}
.y23{bottom:411.333333pt;}
.y100{bottom:412.678667pt;}
.y1b2{bottom:414.800000pt;}
.y20a{bottom:416.772000pt;}
.yab{bottom:417.238667pt;}
.yd4{bottom:423.864000pt;}
.y7d{bottom:425.346667pt;}
.y22{bottom:426.000000pt;}
.y187{bottom:427.066667pt;}
.y12c{bottom:428.533333pt;}
.y155{bottom:431.066667pt;}
.yff{bottom:432.405333pt;}
.y165{bottom:432.432000pt;}
.y1b1{bottom:435.066667pt;}
.y209{bottom:435.574000pt;}
.yaa{bottom:436.965333pt;}
.y1ea{bottom:437.124000pt;}
.yd3{bottom:439.865333pt;}
.y21{bottom:440.666667pt;}
.y152{bottom:444.710667pt;}
.y7c{bottom:445.073333pt;}
.y186{bottom:446.793333pt;}
.y154{bottom:448.000000pt;}
.y12b{bottom:452.068000pt;}
.yfe{bottom:452.132000pt;}
.y164{bottom:452.158667pt;}
.y208{bottom:454.376000pt;}
.y20{bottom:455.333333pt;}
.y6{bottom:455.712000pt;}
.yd2{bottom:455.998667pt;}
.ya9{bottom:456.692000pt;}
.y1e9{bottom:456.850667pt;}
.y1af{bottom:464.266667pt;}
.y151{bottom:464.437333pt;}
.y7b{bottom:464.800000pt;}
.y63{bottom:465.178000pt;}
.y1f{bottom:470.000000pt;}
.y12a{bottom:471.662667pt;}
.yfd{bottom:471.726667pt;}
.y163{bottom:471.885333pt;}
.yd1{bottom:472.132000pt;}
.y207{bottom:473.178000pt;}
.y1b0{bottom:474.000000pt;}
.ya8{bottom:476.418667pt;}
.y1e8{bottom:476.445333pt;}
.y1cf{bottom:477.498667pt;}
.y185{bottom:478.420000pt;}
.y62{bottom:483.980000pt;}
.y150{bottom:484.164000pt;}
.y1e{bottom:484.666667pt;}
.y7a{bottom:485.066667pt;}
.yd0{bottom:488.265333pt;}
.y153{bottom:488.800000pt;}
.y129{bottom:491.389333pt;}
.y162{bottom:491.480000pt;}
.yfc{bottom:491.600000pt;}
.ya7{bottom:496.013333pt;}
.y1e7{bottom:496.172000pt;}
.y1ce{bottom:497.093333pt;}
.y184{bottom:498.146667pt;}
.y44{bottom:498.664000pt;}
.y1ae{bottom:502.666667pt;}
.y61{bottom:502.782000pt;}
.y14f{bottom:503.758667pt;}
.y206{bottom:503.978000pt;}
.ycf{bottom:504.398667pt;}
.y128{bottom:511.116000pt;}
.y161{bottom:511.206667pt;}
.y1d{bottom:511.333333pt;}
.yfb{bottom:514.946667pt;}
.ya6{bottom:515.740000pt;}
.y1e6{bottom:515.898667pt;}
.y1cd{bottom:516.820000pt;}
.y5{bottom:517.056000pt;}
.y183{bottom:517.873333pt;}
.yce{bottom:520.532000pt;}
.y79{bottom:522.000000pt;}
.y205{bottom:522.780000pt;}
.y14e{bottom:523.485333pt;}
.y43{bottom:523.733333pt;}
.y1c{bottom:526.000000pt;}
.y127{bottom:530.842667pt;}
.y160{bottom:530.933333pt;}
.y60{bottom:533.582000pt;}
.yfa{bottom:534.673333pt;}
.ya5{bottom:535.466667pt;}
.y1e5{bottom:535.493333pt;}
.ycd{bottom:536.533333pt;}
.y1cc{bottom:536.546667pt;}
.y182{bottom:537.468000pt;}
.y1b{bottom:540.666667pt;}
.y1ac{bottom:541.200000pt;}
.y204{bottom:541.582000pt;}
.y14d{bottom:543.212000pt;}
.y126{bottom:550.437333pt;}
.y5f{bottom:552.384000pt;}
.y1d2{bottom:554.266667pt;}
.yf9{bottom:554.400000pt;}
.y1ad{bottom:554.933333pt;}
.y1e4{bottom:555.220000pt;}
.y1a{bottom:555.333333pt;}
.ya4{bottom:555.733333pt;}
.y1cb{bottom:556.141333pt;}
.ycc{bottom:556.532000pt;}
.y14c{bottom:562.938667pt;}
.y78{bottom:566.690667pt;}
.y181{bottom:569.206667pt;}
.y19{bottom:570.000000pt;}
.y15f{bottom:570.133333pt;}
.y125{bottom:570.164000pt;}
.y5e{bottom:571.186000pt;}
.y203{bottom:572.382000pt;}
.ycb{bottom:572.665333pt;}
.y1e3{bottom:574.946667pt;}
.yf8{bottom:577.880000pt;}
.y4{bottom:578.400000pt;}
.y1ab{bottom:579.600000pt;}
.y14b{bottom:582.552000pt;}
.y18{bottom:584.666667pt;}
.y77{bottom:586.285333pt;}
.y1ca{bottom:587.880000pt;}
.yca{bottom:588.798667pt;}
.y180{bottom:588.933333pt;}
.ya3{bottom:589.886667pt;}
.y124{bottom:589.890667pt;}
.y5d{bottom:589.988000pt;}
.y202{bottom:591.184000pt;}
.y1d1{bottom:592.800000pt;}
.y1e2{bottom:594.673333pt;}
.yf7{bottom:597.606667pt;}
.y17{bottom:599.333333pt;}
.y14a{bottom:602.278667pt;}
.yc9{bottom:604.800000pt;}
.y76{bottom:606.012000pt;}
.y1c9{bottom:607.606667pt;}
.y17f{bottom:608.528000pt;}
.y5c{bottom:608.790000pt;}
.y123{bottom:609.485333pt;}
.ya2{bottom:609.613333pt;}
.y15e{bottom:610.933333pt;}
.y16{bottom:614.000000pt;}
.y1e1{bottom:614.268000pt;}
.yf6{bottom:617.333333pt;}
.y1a9{bottom:618.133333pt;}
.yc8{bottom:620.933333pt;}
.y201{bottom:621.984000pt;}
.y149{bottom:622.005333pt;}
.y75{bottom:625.738667pt;}
.y5b{bottom:627.592000pt;}
.y15{bottom:628.666667pt;}
.y122{bottom:629.212000pt;}
.ya1{bottom:629.340000pt;}
.y1aa{bottom:631.866667pt;}
.y1d0{bottom:633.600000pt;}
.yc7{bottom:637.066667pt;}
.y1c8{bottom:639.345333pt;}
.y17e{bottom:640.266667pt;}
.y200{bottom:640.786000pt;}
.yf5{bottom:640.818667pt;}
.y148{bottom:641.606667pt;}
.y14{bottom:643.333333pt;}
.y74{bottom:645.372000pt;}
.y1e0{bottom:646.006667pt;}
.y5a{bottom:646.394000pt;}
.y121{bottom:648.938667pt;}
.ya0{bottom:649.090667pt;}
.y3{bottom:654.133333pt;}
.y1a7{bottom:656.533333pt;}
.yc6{bottom:657.085333pt;}
.y13{bottom:658.000000pt;}
.y1c7{bottom:658.940000pt;}
.y1ff{bottom:659.588000pt;}
.yf4{bottom:660.413333pt;}
.y147{bottom:661.333333pt;}
.y73{bottom:665.098667pt;}
.y59{bottom:665.196000pt;}
.y1df{bottom:665.745333pt;}
.y120{bottom:668.552000pt;}
.y9f{bottom:668.685333pt;}
.y1a8{bottom:670.400000pt;}
.y17d{bottom:672.005333pt;}
.y12{bottom:672.666667pt;}
.yc5{bottom:673.086667pt;}
.y1c6{bottom:678.673333pt;}
.yf3{bottom:680.140000pt;}
.y146{bottom:681.600000pt;}
.y58{bottom:683.998000pt;}
.y72{bottom:684.825333pt;}
.y1de{bottom:685.340000pt;}
.y11{bottom:687.333333pt;}
.y11f{bottom:688.278667pt;}
.y9e{bottom:688.412000pt;}
.y1fe{bottom:690.388000pt;}
.yc4{bottom:691.346667pt;}
.y17c{bottom:691.732000pt;}
.y1a6{bottom:695.066667pt;}
.y1c5{bottom:698.400000pt;}
.yf2{bottom:699.866667pt;}
.y57{bottom:702.790000pt;}
.y71{bottom:704.420000pt;}
.y1dd{bottom:705.098667pt;}
.y11e{bottom:708.005333pt;}
.y9d{bottom:708.138667pt;}
.y1fd{bottom:709.190000pt;}
.yc3{bottom:711.073333pt;}
.y17b{bottom:711.326667pt;}
.y145{bottom:715.885333pt;}
.y56{bottom:721.592000pt;}
.yf1{bottom:723.340000pt;}
.y70{bottom:724.146667pt;}
.y1dc{bottom:724.825333pt;}
.y11d{bottom:727.732000pt;}
.y9c{bottom:727.740000pt;}
.yc2{bottom:730.800000pt;}
.y17a{bottom:731.200000pt;}
.y42{bottom:731.997333pt;}
.y1a0{bottom:733.466667pt;}
.y144{bottom:735.612000pt;}
.y1c4{bottom:737.600000pt;}
.y1fc{bottom:739.990000pt;}
.y55{bottom:740.394000pt;}
.yf0{bottom:743.066667pt;}
.y11c{bottom:747.326667pt;}
.y9b{bottom:747.473333pt;}
.y1a4{bottom:749.468000pt;}
.yc1{bottom:754.285333pt;}
.y179{bottom:754.666667pt;}
.y143{bottom:755.206667pt;}
.y6f{bottom:755.885333pt;}
.y1db{bottom:756.432000pt;}
.y41{bottom:757.066667pt;}
.y1fb{bottom:758.792000pt;}
.y1a3{bottom:762.800000pt;}
.y11b{bottom:767.200000pt;}
.y9a{bottom:767.212000pt;}
.yef{bottom:768.666667pt;}
.y54{bottom:771.194000pt;}
.yc0{bottom:773.880000pt;}
.y142{bottom:774.933333pt;}
.y6e{bottom:775.612000pt;}
.y1da{bottom:776.158667pt;}
.y178{bottom:778.133333pt;}
.y1c3{bottom:778.400000pt;}
.y99{bottom:786.938667pt;}
.y19e{bottom:787.466667pt;}
.y1fa{bottom:789.592000pt;}
.y53{bottom:789.996000pt;}
.y40{bottom:790.133333pt;}
.y11a{bottom:790.666667pt;}
.ybf{bottom:793.606667pt;}
.y6d{bottom:795.206667pt;}
.y1d9{bottom:795.885333pt;}
.y19f{bottom:801.333333pt;}
.y177{bottom:801.600000pt;}
.yee{bottom:802.666667pt;}
.y98{bottom:806.570667pt;}
.y1f9{bottom:808.394000pt;}
.y52{bottom:808.798000pt;}
.ybe{bottom:813.333333pt;}
.y119{bottom:814.152000pt;}
.y6c{bottom:814.933333pt;}
.y1d8{bottom:815.612000pt;}
.y10{bottom:820.666667pt;}
.yed{bottom:821.757333pt;}
.y3f{bottom:823.200000pt;}
.y19c{bottom:826.000000pt;}
.y97{bottom:826.297333pt;}
.y51{bottom:827.600000pt;}
.y140{bottom:829.372000pt;}
.y118{bottom:833.746667pt;}
.y1d7{bottom:835.206667pt;}
.ybd{bottom:836.813333pt;}
.y176{bottom:837.086667pt;}
.y1f8{bottom:839.194000pt;}
.y19d{bottom:839.733333pt;}
.yec{bottom:841.352000pt;}
.y96{bottom:846.024000pt;}
.y13f{bottom:849.098667pt;}
.y117{bottom:853.473333pt;}
.y1d6{bottom:854.933333pt;}
.ybc{bottom:856.540000pt;}
.y175{bottom:856.813333pt;}
.y1f7{bottom:857.996000pt;}
.y141{bottom:860.981333pt;}
.yeb{bottom:861.078667pt;}
.y199{bottom:864.400000pt;}
.y95{bottom:865.618667pt;}
.y13e{bottom:868.825333pt;}
.y116{bottom:873.200000pt;}
.ybb{bottom:876.266667pt;}
.y1f6{bottom:876.798000pt;}
.yea{bottom:880.805333pt;}
.y94{bottom:885.345333pt;}
.yf{bottom:886.000000pt;}
.y13d{bottom:888.420000pt;}
.y1f5{bottom:895.600000pt;}
.y115{bottom:896.692000pt;}
.yba{bottom:899.733333pt;}
.ye9{bottom:900.432000pt;}
.y6b{bottom:900.965333pt;}
.y196{bottom:902.933333pt;}
.ye{bottom:904.666667pt;}
.y93{bottom:905.072000pt;}
.y13c{bottom:908.146667pt;}
.y3e{bottom:912.933333pt;}
.y114{bottom:916.418667pt;}
.ye8{bottom:920.158667pt;}
.y92{bottom:924.666667pt;}
.yb9{bottom:925.333333pt;}
.y174{bottom:927.873333pt;}
.y113{bottom:936.013333pt;}
.ye7{bottom:939.885333pt;}
.y1d5{bottom:940.933333pt;}
.y6a{bottom:940.949333pt;}
.y194{bottom:941.333333pt;}
.y91{bottom:945.066667pt;}
.y193{bottom:949.200000pt;}
.y112{bottom:955.740000pt;}
.yb8{bottom:959.605333pt;}
.ye6{bottom:959.612000pt;}
.y111{bottom:975.466667pt;}
.y90{bottom:979.206667pt;}
.y69{bottom:980.933333pt;}
.y192{bottom:992.533333pt;}
.y8f{bottom:998.933333pt;}
.y3c{bottom:1042.533333pt;}
.y3a{bottom:1042.938667pt;}
.y1{bottom:1055.600000pt;}
.y50{bottom:1055.866667pt;}
.y8c{bottom:1063.600000pt;}
.y39{bottom:1065.338667pt;}
.y8d{bottom:1068.666667pt;}
.y38{bottom:1078.266667pt;}
.h1a{height:14.800000pt;}
.ha{height:14.933333pt;}
.h11{height:19.023438pt;}
.h24{height:25.866667pt;}
.h2f{height:28.518229pt;}
.h9{height:29.166667pt;}
.h7{height:30.437500pt;}
.h2{height:30.625000pt;}
.h1f{height:36.367188pt;}
.h26{height:37.733333pt;}
.h2a{height:37.734667pt;}
.h28{height:37.866667pt;}
.h3{height:39.949219pt;}
.h25{height:40.104167pt;}
.h8{height:40.195312pt;}
.h23{height:40.637500pt;}
.h13{height:41.851562pt;}
.h27{height:42.109375pt;}
.h1e{height:45.224812pt;}
.h22{height:45.320812pt;}
.hf{height:45.339479pt;}
.h10{height:45.387479pt;}
.h4{height:45.937500pt;}
.hd{height:45.945500pt;}
.h21{height:47.790146pt;}
.h14{height:47.811479pt;}
.h18{height:47.816812pt;}
.h2e{height:47.838146pt;}
.h15{height:47.870146pt;}
.h20{height:47.886146pt;}
.h2b{height:47.912813pt;}
.h1b{height:47.918146pt;}
.h2c{height:47.923479pt;}
.h1c{height:47.939479pt;}
.h19{height:51.958333pt;}
.h29{height:53.333333pt;}
.hc{height:53.593750pt;}
.h2d{height:61.187500pt;}
.h6{height:61.250000pt;}
.h17{height:66.750000pt;}
.h1d{height:77.875000pt;}
.h16{height:89.000000pt;}
.h12{height:107.187500pt;}
.hb{height:114.843750pt;}
.h5{height:136.968750pt;}
.he{height:166.875000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.933333pt;}
.w3{width:14.934667pt;}
.w5{width:113.333333pt;}
.w6{width:210.133333pt;}
.w4{width:265.733333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:3.866667pt;}
.x8{left:5.733333pt;}
.x21{left:7.200000pt;}
.x5{left:51.466667pt;}
.x20{left:55.466667pt;}
.x3{left:94.533333pt;}
.x7{left:99.466667pt;}
.x1e{left:102.000000pt;}
.x13{left:114.266667pt;}
.x15{left:117.200000pt;}
.x1a{left:118.394667pt;}
.x9{left:124.800000pt;}
.xe{left:132.400000pt;}
.x16{left:139.852000pt;}
.x11{left:143.733333pt;}
.xa{left:148.400000pt;}
.x18{left:155.066667pt;}
.x19{left:156.400000pt;}
.x17{left:177.733333pt;}
.x14{left:181.616000pt;}
.x4{left:203.333333pt;}
.x22{left:207.866667pt;}
.x24{left:215.066667pt;}
.x12{left:286.533333pt;}
.xf{left:324.400000pt;}
.x1{left:356.400000pt;}
.x1f{left:418.000000pt;}
.x23{left:425.200000pt;}
.xc{left:447.733333pt;}
.x26{left:499.333333pt;}
.x6{left:531.594667pt;}
.x25{left:542.533333pt;}
.x29{left:562.261333pt;}
.x1d{left:567.066667pt;}
.x1b{left:572.928000pt;}
.x10{left:612.661333pt;}
.x28{left:618.400000pt;}
.x27{left:661.337333pt;}
.x1c{left:699.200000pt;}
.x2{left:710.533333pt;}
.xb{left:748.400000pt;}
}




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