
    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_68637d0b03516762accf4388.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_2fbb753f13a4b0364397ade0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027000;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_8fbe07fff0af1bfd35b57043.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fa1e25019ec09bf4a799597f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.023000;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_66a38d7de6f0d6ce9d3e9795.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115000;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_b22c02e8f3ef3053e63e4d27.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.934000;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:ff8;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls64{letter-spacing:-1.680000px;}
.ls63{letter-spacing:-1.620000px;}
.ls61{letter-spacing:-1.500000px;}
.ls3e{letter-spacing:-1.386000px;}
.ls62{letter-spacing:-1.140000px;}
.ls47{letter-spacing:-1.122000px;}
.ls30{letter-spacing:-1.008000px;}
.ls65{letter-spacing:-0.960000px;}
.ls53{letter-spacing:-0.936000px;}
.ls66{letter-spacing:-0.660000px;}
.ls39{letter-spacing:-0.594000px;}
.ls11{letter-spacing:-0.576000px;}
.ls5f{letter-spacing:-0.540000px;}
.ls42{letter-spacing:-0.528000px;}
.ls22{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.480000px;}
.ls4b{letter-spacing:-0.462000px;}
.ls18{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.420000px;}
.ls6a{letter-spacing:-0.396000px;}
.ls16{letter-spacing:-0.360000px;}
.ls3a{letter-spacing:-0.330000px;}
.ls15{letter-spacing:-0.300000px;}
.ls17{letter-spacing:-0.288000px;}
.ls38{letter-spacing:-0.264000px;}
.ls21{letter-spacing:-0.216000px;}
.ls3f{letter-spacing:-0.198000px;}
.lsd{letter-spacing:-0.180000px;}
.ls2f{letter-spacing:-0.144000px;}
.ls3c{letter-spacing:-0.132000px;}
.ls60{letter-spacing:-0.120000px;}
.ls10{letter-spacing:-0.072000px;}
.ls41{letter-spacing:-0.066000px;}
.ls5e{letter-spacing:-0.060000px;}
.lsb{letter-spacing:0.000000px;}
.ls5d{letter-spacing:0.060000px;}
.ls40{letter-spacing:0.066000px;}
.lsf{letter-spacing:0.084000px;}
.lsa{letter-spacing:0.120000px;}
.ls48{letter-spacing:0.132000px;}
.ls2e{letter-spacing:0.144000px;}
.ls33{letter-spacing:0.198000px;}
.ls36{letter-spacing:0.211200px;}
.ls23{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.240000px;}
.lse{letter-spacing:0.252000px;}
.ls34{letter-spacing:0.264000px;}
.ls19{letter-spacing:0.288000px;}
.ls3d{letter-spacing:0.330000px;}
.ls1e{letter-spacing:0.338400px;}
.ls5{letter-spacing:0.360000px;}
.ls35{letter-spacing:0.396000px;}
.ls2a{letter-spacing:0.432000px;}
.ls3b{letter-spacing:0.462000px;}
.ls4{letter-spacing:0.482400px;}
.ls6{letter-spacing:0.504000px;}
.ls4d{letter-spacing:0.528000px;}
.ls14{letter-spacing:0.540000px;}
.ls29{letter-spacing:0.576000px;}
.ls67{letter-spacing:0.600000px;}
.ls2b{letter-spacing:0.648000px;}
.ls31{letter-spacing:0.662400px;}
.ls4f{letter-spacing:0.864000px;}
.ls68{letter-spacing:0.900000px;}
.ls2c{letter-spacing:1.008000px;}
.ls27{letter-spacing:1.152000px;}
.ls57{letter-spacing:1.194000px;}
.ls5b{letter-spacing:1.200000px;}
.ls4e{letter-spacing:1.368000px;}
.ls2d{letter-spacing:1.584000px;}
.ls69{letter-spacing:1.980000px;}
.ls28{letter-spacing:2.376000px;}
.ls59{letter-spacing:3.180000px;}
.ls4a{letter-spacing:3.234000px;}
.ls1d{letter-spacing:3.600000px;}
.ls49{letter-spacing:3.960000px;}
.ls1f{letter-spacing:4.752000px;}
.ls37{letter-spacing:5.148000px;}
.ls26{letter-spacing:5.976000px;}
.ls51{letter-spacing:7.200000px;}
.ls43{letter-spacing:7.590000px;}
.ls7{letter-spacing:8.352000px;}
.ls25{letter-spacing:8.575200px;}
.ls44{letter-spacing:8.778000px;}
.ls55{letter-spacing:9.576000px;}
.ls52{letter-spacing:10.800000px;}
.ls9{letter-spacing:11.952000px;}
.ls20{letter-spacing:15.552000px;}
.ls50{letter-spacing:16.776000px;}
.ls56{letter-spacing:19.320000px;}
.ls46{letter-spacing:19.450200px;}
.ls45{letter-spacing:19.602000px;}
.ls4c{letter-spacing:20.790000px;}
.ls24{letter-spacing:21.492000px;}
.ls5a{letter-spacing:23.580000px;}
.ls54{letter-spacing:25.200000px;}
.ls58{letter-spacing:37.980000px;}
.ls1b{letter-spacing:44.352000px;}
.ls8{letter-spacing:54.000000px;}
.ls32{letter-spacing:58.476000px;}
.ls1c{letter-spacing:193.176000px;}
.ls5c{letter-spacing:195.180000px;}
.ls1{letter-spacing:846.780000px;}
.ls3{letter-spacing:874.380000px;}
.ls2{letter-spacing:1137.180000px;}
.ls1a{letter-spacing:1253.580000px;}
.ls0{letter-spacing:1335.180000px;}
.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;}
}
.ws111{word-spacing:-20.592000px;}
.ws12e{word-spacing:-19.800000px;}
.ws4{word-spacing:-19.584000px;}
.ws51{word-spacing:-19.512000px;}
.ws5{word-spacing:-19.224000px;}
.ws89{word-spacing:-19.152000px;}
.ws34{word-spacing:-19.008000px;}
.ws6c{word-spacing:-18.936000px;}
.ws50{word-spacing:-18.864000px;}
.ws130{word-spacing:-18.792000px;}
.ws6d{word-spacing:-18.720000px;}
.ws33{word-spacing:-18.648000px;}
.ws12f{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.216000px;}
.ws110{word-spacing:-18.084000px;}
.wsf9{word-spacing:-18.018000px;}
.ws99{word-spacing:-17.952000px;}
.ws9{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.640000px;}
.ws97{word-spacing:-17.622000px;}
.ws98{word-spacing:-17.556000px;}
.wscb{word-spacing:-17.358000px;}
.ws9a{word-spacing:-17.292000px;}
.ws178{word-spacing:-17.094000px;}
.wscc{word-spacing:-17.028000px;}
.ws14d{word-spacing:-16.920000px;}
.ws14a{word-spacing:-16.620000px;}
.ws6{word-spacing:-16.560000px;}
.wsfa{word-spacing:-16.500000px;}
.ws14c{word-spacing:-16.380000px;}
.ws177{word-spacing:-16.368000px;}
.ws1{word-spacing:-16.140000px;}
.ws146{word-spacing:-16.080000px;}
.ws148{word-spacing:-16.020000px;}
.ws149{word-spacing:-15.960000px;}
.ws2{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.720000px;}
.ws145{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.540000px;}
.ws14b{word-spacing:-14.880000px;}
.ws144{word-spacing:-14.700000px;}
.ws147{word-spacing:-14.520000px;}
.ws128{word-spacing:-10.800000px;}
.ws67{word-spacing:-5.976000px;}
.ws143{word-spacing:-5.472000px;}
.ws12d{word-spacing:-5.112000px;}
.ws6e{word-spacing:-5.040000px;}
.ws104{word-spacing:-4.884000px;}
.ws103{word-spacing:-4.818000px;}
.ws6f{word-spacing:-4.752000px;}
.ws139{word-spacing:-4.608000px;}
.ws116{word-spacing:-4.488000px;}
.ws142{word-spacing:-4.392000px;}
.ws79{word-spacing:-4.248000px;}
.ws63{word-spacing:-3.888000px;}
.ws96{word-spacing:-3.816000px;}
.wsa6{word-spacing:-3.696000px;}
.wsde{word-spacing:-3.564000px;}
.ws64{word-spacing:-3.528000px;}
.ws135{word-spacing:-3.312000px;}
.wsff{word-spacing:-3.300000px;}
.ws40{word-spacing:-3.168000px;}
.wsd6{word-spacing:-3.102000px;}
.ws5b{word-spacing:-3.024000px;}
.ws9d{word-spacing:-2.970000px;}
.ws16d{word-spacing:-2.880000px;}
.ws69{word-spacing:-2.808000px;}
.ws8a{word-spacing:-2.736000px;}
.ws123{word-spacing:-2.664000px;}
.ws9e{word-spacing:-2.640000px;}
.ws7b{word-spacing:-2.592000px;}
.wsb6{word-spacing:-2.508000px;}
.ws1c{word-spacing:-2.376000px;}
.ws7c{word-spacing:-2.232000px;}
.ws65{word-spacing:-2.160000px;}
.ws6a{word-spacing:-2.016000px;}
.wsd3{word-spacing:-1.914000px;}
.ws21{word-spacing:-1.872000px;}
.ws16f{word-spacing:-1.860000px;}
.wse9{word-spacing:-1.848000px;}
.ws160{word-spacing:-1.740000px;}
.ws7a{word-spacing:-1.584000px;}
.ws60{word-spacing:-1.512000px;}
.ws39{word-spacing:-1.440000px;}
.ws161{word-spacing:-1.320000px;}
.wsa7{word-spacing:-1.254000px;}
.ws170{word-spacing:-1.200000px;}
.ws3f{word-spacing:-1.152000px;}
.ws15f{word-spacing:-1.140000px;}
.ws106{word-spacing:-1.122000px;}
.ws83{word-spacing:-1.080000px;}
.ws71{word-spacing:-1.008000px;}
.ws137{word-spacing:-0.936000px;}
.ws11{word-spacing:-0.924000px;}
.ws125{word-spacing:-0.864000px;}
.ws2a{word-spacing:-0.792000px;}
.ws19{word-spacing:-0.660000px;}
.ws29{word-spacing:-0.648000px;}
.wsf0{word-spacing:-0.594000px;}
.ws53{word-spacing:-0.576000px;}
.wsb{word-spacing:-0.540000px;}
.ws150{word-spacing:-0.480000px;}
.wsc8{word-spacing:-0.462000px;}
.wsd{word-spacing:-0.420000px;}
.wse6{word-spacing:-0.396000px;}
.ws17{word-spacing:-0.360000px;}
.ws15c{word-spacing:-0.300000px;}
.ws31{word-spacing:-0.288000px;}
.wsbd{word-spacing:-0.264000px;}
.ws10{word-spacing:-0.252000px;}
.wse{word-spacing:-0.240000px;}
.wsf{word-spacing:-0.216000px;}
.wsc5{word-spacing:-0.198000px;}
.ws13c{word-spacing:-0.144000px;}
.wsea{word-spacing:-0.132000px;}
.ws151{word-spacing:-0.120000px;}
.wsaa{word-spacing:-0.066000px;}
.ws16e{word-spacing:-0.060000px;}
.wsc{word-spacing:0.000000px;}
.ws1a{word-spacing:0.060000px;}
.wsb8{word-spacing:0.066000px;}
.ws15{word-spacing:0.072000px;}
.ws13{word-spacing:0.084000px;}
.wsda{word-spacing:0.132000px;}
.ws93{word-spacing:0.144000px;}
.wsee{word-spacing:0.198000px;}
.ws132{word-spacing:0.216000px;}
.ws14{word-spacing:0.252000px;}
.ws11d{word-spacing:0.288000px;}
.ws1b{word-spacing:0.300000px;}
.wsdb{word-spacing:0.330000px;}
.ws12{word-spacing:0.336000px;}
.ws54{word-spacing:0.360000px;}
.wsab{word-spacing:0.396000px;}
.ws18{word-spacing:0.420000px;}
.ws32{word-spacing:0.432000px;}
.wsd4{word-spacing:0.462000px;}
.ws163{word-spacing:0.480000px;}
.ws129{word-spacing:0.504000px;}
.wsd5{word-spacing:0.528000px;}
.ws158{word-spacing:0.540000px;}
.ws16{word-spacing:0.576000px;}
.wsbe{word-spacing:0.594000px;}
.ws10f{word-spacing:0.660000px;}
.wsfe{word-spacing:0.726000px;}
.ws90{word-spacing:0.792000px;}
.ws48{word-spacing:0.864000px;}
.ws91{word-spacing:0.936000px;}
.ws16c{word-spacing:0.960000px;}
.wsa8{word-spacing:0.990000px;}
.wsd7{word-spacing:1.122000px;}
.ws169{word-spacing:1.140000px;}
.ws100{word-spacing:1.188000px;}
.ws5a{word-spacing:1.224000px;}
.ws122{word-spacing:1.368000px;}
.ws176{word-spacing:1.500000px;}
.wse8{word-spacing:1.518000px;}
.ws47{word-spacing:1.584000px;}
.ws16a{word-spacing:1.620000px;}
.wsce{word-spacing:1.650000px;}
.ws16b{word-spacing:1.680000px;}
.wse3{word-spacing:1.716000px;}
.ws58{word-spacing:1.728000px;}
.ws159{word-spacing:1.740000px;}
.wsa9{word-spacing:1.782000px;}
.wsbc{word-spacing:1.848000px;}
.ws15b{word-spacing:1.860000px;}
.wsd8{word-spacing:1.914000px;}
.ws84{word-spacing:1.944000px;}
.ws94{word-spacing:2.016000px;}
.ws86{word-spacing:2.088000px;}
.wscd{word-spacing:2.112000px;}
.ws5e{word-spacing:2.160000px;}
.wsbb{word-spacing:2.178000px;}
.ws119{word-spacing:2.310000px;}
.wsc7{word-spacing:2.376000px;}
.wsc2{word-spacing:2.442000px;}
.ws3d{word-spacing:2.448000px;}
.ws15a{word-spacing:2.460000px;}
.ws4a{word-spacing:2.664000px;}
.wsc6{word-spacing:2.772000px;}
.ws4d{word-spacing:2.808000px;}
.wsa3{word-spacing:2.904000px;}
.ws162{word-spacing:2.940000px;}
.ws4c{word-spacing:2.952000px;}
.ws109{word-spacing:2.970000px;}
.wsac{word-spacing:3.102000px;}
.ws3c{word-spacing:3.312000px;}
.ws157{word-spacing:3.360000px;}
.wsf5{word-spacing:3.366000px;}
.ws95{word-spacing:3.384000px;}
.ws11b{word-spacing:3.432000px;}
.ws88{word-spacing:3.456000px;}
.wsf6{word-spacing:3.498000px;}
.wsaf{word-spacing:3.564000px;}
.wse5{word-spacing:3.630000px;}
.ws156{word-spacing:3.660000px;}
.ws3b{word-spacing:3.672000px;}
.ws55{word-spacing:3.816000px;}
.ws87{word-spacing:3.888000px;}
.wsf8{word-spacing:3.894000px;}
.ws140{word-spacing:3.960000px;}
.ws6b{word-spacing:4.032000px;}
.wsf1{word-spacing:4.092000px;}
.ws13e{word-spacing:4.104000px;}
.ws4f{word-spacing:4.176000px;}
.wsb3{word-spacing:4.290000px;}
.ws8d{word-spacing:4.392000px;}
.ws13b{word-spacing:4.464000px;}
.ws41{word-spacing:4.536000px;}
.ws105{word-spacing:4.554000px;}
.wsa4{word-spacing:4.752000px;}
.ws14f{word-spacing:4.800000px;}
.wsbf{word-spacing:4.818000px;}
.ws28{word-spacing:4.824000px;}
.ws14e{word-spacing:4.860000px;}
.wsa5{word-spacing:4.884000px;}
.ws36{word-spacing:4.968000px;}
.wse2{word-spacing:5.148000px;}
.ws27{word-spacing:5.184000px;}
.ws43{word-spacing:5.256000px;}
.ws2f{word-spacing:5.328000px;}
.wsc0{word-spacing:5.346000px;}
.ws8b{word-spacing:5.544000px;}
.ws8e{word-spacing:5.760000px;}
.ws114{word-spacing:6.006000px;}
.ws8c{word-spacing:6.048000px;}
.ws5d{word-spacing:6.264000px;}
.ws68{word-spacing:6.408000px;}
.wsdd{word-spacing:6.534000px;}
.ws3e{word-spacing:6.552000px;}
.ws117{word-spacing:6.600000px;}
.ws112{word-spacing:6.732000px;}
.ws76{word-spacing:6.840000px;}
.ws174{word-spacing:6.960000px;}
.ws131{word-spacing:6.984000px;}
.ws13d{word-spacing:7.056000px;}
.ws175{word-spacing:7.080000px;}
.ws101{word-spacing:7.128000px;}
.wsed{word-spacing:7.194000px;}
.ws173{word-spacing:7.260000px;}
.ws9c{word-spacing:7.272000px;}
.wsfb{word-spacing:7.326000px;}
.ws11f{word-spacing:7.416000px;}
.ws17a{word-spacing:7.620000px;}
.ws78{word-spacing:7.632000px;}
.ws138{word-spacing:7.704000px;}
.ws108{word-spacing:7.722000px;}
.ws4e{word-spacing:7.776000px;}
.wsfd{word-spacing:7.854000px;}
.ws166{word-spacing:7.980000px;}
.wsfc{word-spacing:8.052000px;}
.ws81{word-spacing:8.064000px;}
.wsd9{word-spacing:8.118000px;}
.ws136{word-spacing:8.136000px;}
.ws167{word-spacing:8.160000px;}
.ws165{word-spacing:8.280000px;}
.wsa0{word-spacing:8.316000px;}
.ws24{word-spacing:8.424000px;}
.ws10a{word-spacing:8.448000px;}
.ws168{word-spacing:8.460000px;}
.ws85{word-spacing:8.640000px;}
.ws5c{word-spacing:8.784000px;}
.wsa2{word-spacing:8.910000px;}
.ws25{word-spacing:8.928000px;}
.wsa1{word-spacing:9.042000px;}
.ws9f{word-spacing:9.108000px;}
.ws141{word-spacing:9.288000px;}
.ws134{word-spacing:9.360000px;}
.ws113{word-spacing:9.504000px;}
.ws57{word-spacing:9.648000px;}
.ws13a{word-spacing:9.792000px;}
.ws66{word-spacing:9.864000px;}
.ws42{word-spacing:10.008000px;}
.ws115{word-spacing:10.098000px;}
.ws22{word-spacing:10.152000px;}
.ws72{word-spacing:10.584000px;}
.wsc4{word-spacing:10.692000px;}
.wsd2{word-spacing:10.824000px;}
.ws92{word-spacing:10.872000px;}
.ws3a{word-spacing:11.088000px;}
.wsc3{word-spacing:11.154000px;}
.ws56{word-spacing:11.232000px;}
.ws11c{word-spacing:11.376000px;}
.ws133{word-spacing:11.664000px;}
.ws62{word-spacing:11.736000px;}
.wsdc{word-spacing:11.946000px;}
.wsf7{word-spacing:12.012000px;}
.ws45{word-spacing:12.024000px;}
.ws10c{word-spacing:12.078000px;}
.ws1e{word-spacing:12.240000px;}
.wse1{word-spacing:12.342000px;}
.ws11e{word-spacing:12.384000px;}
.ws10b{word-spacing:12.408000px;}
.ws9b{word-spacing:12.456000px;}
.ws49{word-spacing:12.528000px;}
.wsae{word-spacing:12.606000px;}
.wse0{word-spacing:12.672000px;}
.ws155{word-spacing:12.840000px;}
.wsdf{word-spacing:12.936000px;}
.ws124{word-spacing:12.960000px;}
.wscf{word-spacing:13.002000px;}
.ws102{word-spacing:13.134000px;}
.ws153{word-spacing:13.200000px;}
.ws127{word-spacing:13.248000px;}
.ws154{word-spacing:13.260000px;}
.wse4{word-spacing:13.266000px;}
.ws12b{word-spacing:13.608000px;}
.ws38{word-spacing:13.680000px;}
.wsad{word-spacing:13.728000px;}
.ws37{word-spacing:13.752000px;}
.ws44{word-spacing:14.184000px;}
.ws17c{word-spacing:14.322000px;}
.ws2c{word-spacing:14.472000px;}
.ws77{word-spacing:14.616000px;}
.ws46{word-spacing:14.688000px;}
.wsb1{word-spacing:14.718000px;}
.ws1f{word-spacing:14.832000px;}
.ws17b{word-spacing:14.850000px;}
.wsb2{word-spacing:14.916000px;}
.ws152{word-spacing:14.940000px;}
.ws26{word-spacing:14.976000px;}
.ws74{word-spacing:15.192000px;}
.ws75{word-spacing:15.336000px;}
.wsb0{word-spacing:15.378000px;}
.ws5f{word-spacing:15.624000px;}
.ws73{word-spacing:15.984000px;}
.ws20{word-spacing:16.128000px;}
.ws8f{word-spacing:16.560000px;}
.ws118{word-spacing:16.764000px;}
.ws10e{word-spacing:16.830000px;}
.ws61{word-spacing:16.848000px;}
.ws179{word-spacing:16.860000px;}
.ws10d{word-spacing:17.094000px;}
.ws2b{word-spacing:17.208000px;}
.wsc9{word-spacing:18.018000px;}
.ws35{word-spacing:18.072000px;}
.ws80{word-spacing:18.144000px;}
.wsca{word-spacing:18.282000px;}
.wsf3{word-spacing:18.348000px;}
.ws82{word-spacing:18.432000px;}
.ws52{word-spacing:18.576000px;}
.wsef{word-spacing:19.140000px;}
.wsf2{word-spacing:19.206000px;}
.ws1d{word-spacing:19.224000px;}
.wsf4{word-spacing:19.272000px;}
.wsb5{word-spacing:19.536000px;}
.ws121{word-spacing:19.584000px;}
.wsb7{word-spacing:19.734000px;}
.wsb4{word-spacing:19.932000px;}
.wsd0{word-spacing:20.328000px;}
.ws23{word-spacing:20.448000px;}
.ws11a{word-spacing:20.460000px;}
.wsc1{word-spacing:20.724000px;}
.ws12a{word-spacing:20.952000px;}
.wsd1{word-spacing:21.384000px;}
.ws164{word-spacing:22.140000px;}
.ws59{word-spacing:22.176000px;}
.ws120{word-spacing:22.536000px;}
.ws7d{word-spacing:22.824000px;}
.ws7e{word-spacing:23.256000px;}
.ws7f{word-spacing:23.328000px;}
.ws4b{word-spacing:24.408000px;}
.wseb{word-spacing:25.542000px;}
.wse7{word-spacing:25.740000px;}
.ws70{word-spacing:25.776000px;}
.ws126{word-spacing:26.784000px;}
.ws12c{word-spacing:26.928000px;}
.wsec{word-spacing:28.182000px;}
.ws13f{word-spacing:30.528000px;}
.ws2d{word-spacing:32.472000px;}
.ws2e{word-spacing:32.976000px;}
.ws107{word-spacing:35.112000px;}
.wsba{word-spacing:37.092000px;}
.ws15e{word-spacing:37.440000px;}
.wsb9{word-spacing:38.082000px;}
.ws30{word-spacing:53.712000px;}
.ws15d{word-spacing:79.740000px;}
.ws171{word-spacing:195.600000px;}
.ws172{word-spacing:195.660000px;}
._1e{margin-left:-12.420000px;}
._1b{margin-left:-11.253600px;}
._1c{margin-left:-9.943200px;}
._1d{margin-left:-8.798400px;}
._19{margin-left:-6.336000px;}
._12{margin-left:-4.420800px;}
._5{margin-left:-2.272800px;}
._0{margin-left:-1.020000px;}
._1{width:1.260000px;}
._6{width:2.280000px;}
._10{width:3.921600px;}
._f{width:5.061600px;}
._a{width:6.307200px;}
._c{width:8.073600px;}
._b{width:9.237600px;}
._16{width:10.480800px;}
._7{width:12.052800px;}
._8{width:13.528800px;}
._11{width:15.998400px;}
._15{width:17.179200px;}
._20{width:18.600000px;}
._21{width:19.614000px;}
._1a{width:20.712000px;}
._e{width:22.173600px;}
._d{width:23.479200px;}
._9{width:43.372800px;}
._17{width:45.254400px;}
._1f{width:195.292800px;}
._18{width:393.180000px;}
._3{width:765.900000px;}
._14{width:808.860000px;}
._4{width:821.580000px;}
._2{width:1005.420000px;}
._13{width:1161.360000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:81.600000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.300000px;}
.y7{bottom:5.100000px;}
.ya{bottom:6.000000px;}
.y4{bottom:67.800000px;}
.y65{bottom:97.278000px;}
.y157{bottom:97.500000px;}
.y21f{bottom:104.100000px;}
.yb8{bottom:105.000000px;}
.y1ec{bottom:105.012000px;}
.y1a8{bottom:105.048000px;}
.y132{bottom:108.274500px;}
.ydc{bottom:112.848000px;}
.y91{bottom:112.890000px;}
.y35{bottom:114.018000px;}
.y100{bottom:116.712000px;}
.y156{bottom:119.100000px;}
.y64{bottom:120.678000px;}
.y181{bottom:122.400000px;}
.y21e{bottom:123.600000px;}
.yb7{bottom:128.100000px;}
.y1eb{bottom:128.106000px;}
.y1a7{bottom:128.142000px;}
.y131{bottom:129.576000px;}
.y1dc{bottom:135.918000px;}
.ydb{bottom:135.942000px;}
.y90{bottom:135.984000px;}
.y34{bottom:137.418000px;}
.yff{bottom:139.806000px;}
.y21d{bottom:142.800000px;}
.y155{bottom:143.400000px;}
.y63{bottom:143.772000px;}
.y180{bottom:145.800000px;}
.y130{bottom:150.877500px;}
.yb6{bottom:151.500000px;}
.y1ea{bottom:151.506000px;}
.y1a6{bottom:151.542000px;}
.y1db{bottom:159.318000px;}
.yda{bottom:159.342000px;}
.y8f{bottom:159.384000px;}
.y33{bottom:160.818000px;}
.y21c{bottom:162.300000px;}
.yfe{bottom:163.206000px;}
.y62{bottom:167.172000px;}
.y154{bottom:168.000000px;}
.y17f{bottom:168.900000px;}
.y12f{bottom:172.179000px;}
.yb5{bottom:174.900000px;}
.y1e9{bottom:174.906000px;}
.y1a5{bottom:174.942000px;}
.y21b{bottom:181.800000px;}
.y1da{bottom:182.718000px;}
.yd9{bottom:182.742000px;}
.y8e{bottom:182.784000px;}
.y32{bottom:183.912000px;}
.yfd{bottom:186.606000px;}
.y61{bottom:190.266000px;}
.y17e{bottom:192.300000px;}
.y153{bottom:192.600000px;}
.y12e{bottom:193.777500px;}
.yb4{bottom:198.000000px;}
.y1a4{bottom:198.036000px;}
.y21a{bottom:201.000000px;}
.y1d9{bottom:205.812000px;}
.yd8{bottom:205.836000px;}
.y8d{bottom:205.878000px;}
.y31{bottom:207.312000px;}
.yfc{bottom:209.700000px;}
.y60{bottom:213.666000px;}
.y12d{bottom:215.079000px;}
.y17d{bottom:215.700000px;}
.y152{bottom:217.200000px;}
.y219{bottom:220.500000px;}
.yb3{bottom:221.400000px;}
.y1a3{bottom:221.436000px;}
.y1d8{bottom:229.212000px;}
.yd7{bottom:229.236000px;}
.y8c{bottom:229.278000px;}
.y30{bottom:230.712000px;}
.yfb{bottom:233.100000px;}
.y12c{bottom:236.380500px;}
.y5f{bottom:237.066000px;}
.y17c{bottom:238.800000px;}
.y218{bottom:240.000000px;}
.y151{bottom:241.800000px;}
.yb2{bottom:244.800000px;}
.y1a2{bottom:244.836000px;}
.y1d7{bottom:252.612000px;}
.yd6{bottom:252.636000px;}
.y8b{bottom:252.678000px;}
.y2f{bottom:253.806000px;}
.yfa{bottom:255.888000px;}
.y12b{bottom:257.682000px;}
.y217{bottom:259.200000px;}
.y5e{bottom:260.160000px;}
.y17b{bottom:262.200000px;}
.y150{bottom:263.100000px;}
.yb1{bottom:267.900000px;}
.y1d0{bottom:267.924000px;}
.y1a1{bottom:267.930000px;}
.y1d6{bottom:275.706000px;}
.yd5{bottom:275.730000px;}
.y8a{bottom:275.772000px;}
.yf9{bottom:277.189500px;}
.y2e{bottom:277.206000px;}
.y216{bottom:278.700000px;}
.y12a{bottom:278.983500px;}
.y5d{bottom:283.560000px;}
.y14f{bottom:284.400000px;}
.y17a{bottom:285.618000px;}
.yb0{bottom:291.300000px;}
.y1e8{bottom:291.318000px;}
.y1cf{bottom:291.324000px;}
.y1a0{bottom:291.330000px;}
.y215{bottom:298.200000px;}
.yf8{bottom:298.491000px;}
.y1d5{bottom:299.106000px;}
.yd4{bottom:299.130000px;}
.y89{bottom:299.172000px;}
.y129{bottom:300.285000px;}
.y2d{bottom:300.300000px;}
.y14e{bottom:305.700000px;}
.y5c{bottom:306.960000px;}
.y179{bottom:308.712000px;}
.yaf{bottom:314.700000px;}
.y1e7{bottom:314.718000px;}
.y1ce{bottom:314.724000px;}
.y19f{bottom:314.730000px;}
.y214{bottom:317.700000px;}
.yf7{bottom:319.792500px;}
.y128{bottom:321.883500px;}
.y1d4{bottom:322.200000px;}
.yd3{bottom:322.224000px;}
.y88{bottom:322.266000px;}
.y2c{bottom:323.700000px;}
.y14d{bottom:327.000000px;}
.y5b{bottom:330.054000px;}
.y178{bottom:332.112000px;}
.y213{bottom:336.900000px;}
.yae{bottom:337.800000px;}
.y1e6{bottom:337.812000px;}
.y1cd{bottom:337.818000px;}
.y19e{bottom:337.824000px;}
.yf6{bottom:341.094000px;}
.y127{bottom:343.185000px;}
.y2b{bottom:345.300000px;}
.y1d3{bottom:345.600000px;}
.yd2{bottom:345.624000px;}
.y87{bottom:345.666000px;}
.y14c{bottom:348.600000px;}
.y5a{bottom:353.454000px;}
.y177{bottom:355.206000px;}
.y212{bottom:356.400000px;}
.y1b5{bottom:361.200000px;}
.y1e5{bottom:361.212000px;}
.y1cc{bottom:361.218000px;}
.y19d{bottom:361.224000px;}
.yad{bottom:361.272000px;}
.yf5{bottom:362.395500px;}
.y2a{bottom:362.400000px;}
.y126{bottom:364.486500px;}
.y1d2{bottom:367.200000px;}
.yd1{bottom:369.024000px;}
.y86{bottom:369.066000px;}
.y14b{bottom:372.900000px;}
.y211{bottom:375.900000px;}
.y59{bottom:376.854000px;}
.y176{bottom:378.606000px;}
.yf4{bottom:383.994000px;}
.y1b4{bottom:384.300000px;}
.y1e4{bottom:384.306000px;}
.y1cb{bottom:384.312000px;}
.y19c{bottom:384.318000px;}
.yac{bottom:384.366000px;}
.y125{bottom:385.788000px;}
.y29{bottom:385.800000px;}
.yd0{bottom:392.118000px;}
.y85{bottom:392.160000px;}
.y210{bottom:395.100000px;}
.y14a{bottom:397.500000px;}
.y58{bottom:399.948000px;}
.y175{bottom:402.006000px;}
.yf3{bottom:405.295500px;}
.y124{bottom:407.089500px;}
.y28{bottom:407.400000px;}
.y1b3{bottom:407.700000px;}
.y1e3{bottom:407.706000px;}
.y1ca{bottom:407.712000px;}
.y19b{bottom:407.718000px;}
.yab{bottom:407.766000px;}
.y20f{bottom:414.600000px;}
.ycf{bottom:415.518000px;}
.y84{bottom:415.560000px;}
.y149{bottom:422.100000px;}
.y57{bottom:423.348000px;}
.y27{bottom:424.836000px;}
.y174{bottom:425.100000px;}
.yf2{bottom:426.597000px;}
.y123{bottom:428.391000px;}
.y1b2{bottom:431.100000px;}
.y1e2{bottom:431.106000px;}
.y1c9{bottom:431.112000px;}
.y19a{bottom:431.118000px;}
.yaa{bottom:431.166000px;}
.y20e{bottom:434.100000px;}
.yce{bottom:438.918000px;}
.y83{bottom:438.960000px;}
.y148{bottom:446.700000px;}
.y56{bottom:446.748000px;}
.yf1{bottom:447.898500px;}
.y26{bottom:447.930000px;}
.y173{bottom:448.500000px;}
.y122{bottom:449.989500px;}
.y20d{bottom:453.300000px;}
.y1b1{bottom:454.200000px;}
.y1c8{bottom:454.206000px;}
.y199{bottom:454.212000px;}
.ya9{bottom:454.260000px;}
.ycd{bottom:462.012000px;}
.y82{bottom:462.054000px;}
.yf0{bottom:469.200000px;}
.y55{bottom:469.842000px;}
.y172{bottom:471.283500px;}
.y121{bottom:471.291000px;}
.y147{bottom:471.300000px;}
.y25{bottom:471.330000px;}
.y20c{bottom:472.800000px;}
.y1b0{bottom:477.600000px;}
.y1c7{bottom:477.606000px;}
.y198{bottom:477.612000px;}
.ya8{bottom:477.660000px;}
.ycc{bottom:485.412000px;}
.y81{bottom:485.454000px;}
.yef{bottom:490.798500px;}
.y20b{bottom:492.300000px;}
.y171{bottom:492.585000px;}
.y120{bottom:492.592500px;}
.y146{bottom:492.600000px;}
.y54{bottom:493.242000px;}
.y24{bottom:494.424000px;}
.y1af{bottom:501.000000px;}
.y1c6{bottom:501.006000px;}
.y197{bottom:501.012000px;}
.y1e1{bottom:501.042000px;}
.ya7{bottom:501.060000px;}
.ycb{bottom:508.812000px;}
.y80{bottom:508.854000px;}
.y20a{bottom:511.800000px;}
.yee{bottom:512.100000px;}
.y170{bottom:513.886500px;}
.y11f{bottom:513.894000px;}
.y145{bottom:513.900000px;}
.y53{bottom:516.336000px;}
.y23{bottom:517.824000px;}
.y1ae{bottom:524.100000px;}
.y196{bottom:524.106000px;}
.y1e0{bottom:524.136000px;}
.ya6{bottom:524.154000px;}
.y209{bottom:531.000000px;}
.yca{bottom:531.906000px;}
.y7f{bottom:531.948000px;}
.yed{bottom:533.400000px;}
.y16f{bottom:535.188000px;}
.y11e{bottom:535.195500px;}
.y144{bottom:535.200000px;}
.y52{bottom:539.736000px;}
.y22{bottom:541.224000px;}
.y1ad{bottom:547.500000px;}
.y195{bottom:547.506000px;}
.y1df{bottom:547.536000px;}
.ya5{bottom:547.554000px;}
.y208{bottom:550.500000px;}
.yec{bottom:554.700000px;}
.yc9{bottom:555.306000px;}
.y7e{bottom:555.348000px;}
.y16e{bottom:556.786500px;}
.y11d{bottom:556.794000px;}
.y143{bottom:556.800000px;}
.y51{bottom:563.136000px;}
.y21{bottom:564.318000px;}
.y207{bottom:570.000000px;}
.y1ac{bottom:570.900000px;}
.y194{bottom:570.906000px;}
.y1de{bottom:570.936000px;}
.ya4{bottom:570.954000px;}
.yeb{bottom:576.000000px;}
.y16d{bottom:578.088000px;}
.y11c{bottom:578.095500px;}
.y142{bottom:578.100000px;}
.yc8{bottom:578.400000px;}
.y7d{bottom:578.442000px;}
.y50{bottom:586.230000px;}
.y20{bottom:587.718000px;}
.y206{bottom:589.200000px;}
.y193{bottom:594.000000px;}
.y1dd{bottom:594.030000px;}
.ya3{bottom:594.048000px;}
.yea{bottom:597.300000px;}
.y16c{bottom:599.389500px;}
.y11b{bottom:599.397000px;}
.y141{bottom:599.400000px;}
.yc7{bottom:600.000000px;}
.y7c{bottom:601.842000px;}
.y205{bottom:608.700000px;}
.y4f{bottom:609.630000px;}
.y1f{bottom:611.118000px;}
.y192{bottom:617.400000px;}
.yc6{bottom:617.430000px;}
.ya2{bottom:617.448000px;}
.ye9{bottom:618.900000px;}
.y16b{bottom:620.691000px;}
.y11a{bottom:620.698500px;}
.y140{bottom:620.700000px;}
.y7b{bottom:625.242000px;}
.y204{bottom:628.200000px;}
.y4e{bottom:633.030000px;}
.y1e{bottom:634.212000px;}
.ye8{bottom:640.200000px;}
.y191{bottom:640.800000px;}
.yc5{bottom:640.830000px;}
.ya1{bottom:640.848000px;}
.y16a{bottom:641.992500px;}
.y119{bottom:642.000000px;}
.y236{bottom:645.600000px;}
.y203{bottom:647.400000px;}
.y7a{bottom:648.336000px;}
.y4d{bottom:656.124000px;}
.y1d{bottom:657.612000px;}
.ye7{bottom:661.500000px;}
.y169{bottom:663.294000px;}
.y13f{bottom:663.300000px;}
.y118{bottom:663.301500px;}
.y190{bottom:663.900000px;}
.yc4{bottom:663.924000px;}
.ya0{bottom:663.942000px;}
.y202{bottom:666.900000px;}
.y79{bottom:671.736000px;}
.y4c{bottom:679.524000px;}
.y1c{bottom:681.012000px;}
.ye6{bottom:682.800000px;}
.y168{bottom:684.892500px;}
.y117{bottom:684.900000px;}
.y201{bottom:686.400000px;}
.y235{bottom:687.000000px;}
.y18f{bottom:687.300000px;}
.yc3{bottom:687.324000px;}
.y9f{bottom:687.342000px;}
.y78{bottom:695.136000px;}
.y4b{bottom:702.924000px;}
.y234{bottom:703.797000px;}
.ye5{bottom:704.100000px;}
.y1b{bottom:704.106000px;}
.y200{bottom:705.900000px;}
.y167{bottom:706.194000px;}
.y116{bottom:706.200000px;}
.y1ab{bottom:710.400000px;}
.y18e{bottom:710.406000px;}
.yc2{bottom:710.418000px;}
.y1c5{bottom:710.430000px;}
.y9e{bottom:710.436000px;}
.y77{bottom:718.230000px;}
.y233{bottom:725.098500px;}
.y1ff{bottom:725.100000px;}
.ye4{bottom:725.400000px;}
.y4a{bottom:726.018000px;}
.y166{bottom:727.495500px;}
.y115{bottom:727.500000px;}
.y1a{bottom:727.506000px;}
.y1aa{bottom:733.800000px;}
.y18d{bottom:733.806000px;}
.yc1{bottom:733.818000px;}
.y1c4{bottom:733.830000px;}
.y9d{bottom:733.836000px;}
.y76{bottom:741.630000px;}
.y1fe{bottom:744.600000px;}
.y232{bottom:746.400000px;}
.ye3{bottom:747.000000px;}
.y165{bottom:748.797000px;}
.y114{bottom:748.800000px;}
.y49{bottom:749.418000px;}
.y19{bottom:750.600000px;}
.y1a9{bottom:757.200000px;}
.y18c{bottom:757.206000px;}
.yc0{bottom:757.218000px;}
.y1c3{bottom:757.230000px;}
.y9c{bottom:757.236000px;}
.y1fd{bottom:764.100000px;}
.y75{bottom:765.030000px;}
.ye2{bottom:768.300000px;}
.y164{bottom:770.098500px;}
.y113{bottom:770.100000px;}
.y231{bottom:772.500000px;}
.y48{bottom:772.512000px;}
.y18{bottom:774.000000px;}
.y18b{bottom:780.300000px;}
.ybf{bottom:780.312000px;}
.y1c2{bottom:780.324000px;}
.y9b{bottom:780.330000px;}
.y1fc{bottom:783.300000px;}
.y74{bottom:788.124000px;}
.ye1{bottom:789.600000px;}
.y112{bottom:791.400000px;}
.y47{bottom:795.912000px;}
.y17{bottom:797.400000px;}
.y1fb{bottom:802.800000px;}
.y18a{bottom:803.700000px;}
.ybe{bottom:803.712000px;}
.y1c1{bottom:803.724000px;}
.y9a{bottom:803.730000px;}
.ye0{bottom:810.900000px;}
.y73{bottom:811.524000px;}
.y163{bottom:812.998500px;}
.y111{bottom:813.000000px;}
.y230{bottom:815.398500px;}
.y16{bottom:818.700000px;}
.y46{bottom:819.312000px;}
.y1fa{bottom:822.300000px;}
.y189{bottom:827.100000px;}
.ybd{bottom:827.112000px;}
.y1c0{bottom:827.124000px;}
.y99{bottom:827.130000px;}
.ydf{bottom:832.200000px;}
.y110{bottom:834.300000px;}
.y72{bottom:834.924000px;}
.y15{bottom:835.200000px;}
.y22f{bottom:836.700000px;}
.y1f9{bottom:841.500000px;}
.y45{bottom:842.406000px;}
.y188{bottom:850.200000px;}
.ybc{bottom:850.206000px;}
.y1bf{bottom:850.218000px;}
.y98{bottom:850.224000px;}
.yde{bottom:853.500000px;}
.y14{bottom:854.700000px;}
.y13e{bottom:855.588000px;}
.y10f{bottom:855.600000px;}
.y22e{bottom:856.800000px;}
.y71{bottom:858.018000px;}
.y1f8{bottom:861.000000px;}
.y44{bottom:865.806000px;}
.y13{bottom:873.300000px;}
.y187{bottom:873.600000px;}
.ybb{bottom:873.606000px;}
.y1be{bottom:873.618000px;}
.y97{bottom:873.624000px;}
.ydd{bottom:875.100000px;}
.y13d{bottom:876.889500px;}
.y10e{bottom:876.900000px;}
.y1f7{bottom:880.500000px;}
.y70{bottom:881.418000px;}
.y43{bottom:889.206000px;}
.y12{bottom:889.500000px;}
.y22d{bottom:892.500000px;}
.y186{bottom:897.000000px;}
.yba{bottom:897.006000px;}
.y1bd{bottom:897.018000px;}
.y96{bottom:897.024000px;}
.y13c{bottom:898.191000px;}
.y10d{bottom:898.200000px;}
.y1f6{bottom:900.000000px;}
.y6f{bottom:904.512000px;}
.y11{bottom:909.000000px;}
.y22c{bottom:911.100000px;}
.y42{bottom:912.300000px;}
.y1f5{bottom:919.200000px;}
.y10c{bottom:919.489500px;}
.y13b{bottom:919.492500px;}
.y162{bottom:919.500000px;}
.yb9{bottom:920.100000px;}
.y1bc{bottom:920.112000px;}
.y95{bottom:920.118000px;}
.y6e{bottom:927.912000px;}
.y10{bottom:929.400000px;}
.y41{bottom:933.900000px;}
.y1f4{bottom:938.700000px;}
.y10b{bottom:941.088000px;}
.y13a{bottom:941.091000px;}
.y161{bottom:941.100000px;}
.y22b{bottom:942.600000px;}
.y185{bottom:943.500000px;}
.y1bb{bottom:943.512000px;}
.y94{bottom:943.518000px;}
.y40{bottom:951.306000px;}
.y6d{bottom:951.312000px;}
.yf{bottom:952.500000px;}
.y1f3{bottom:958.200000px;}
.y22a{bottom:962.100000px;}
.y10a{bottom:962.389500px;}
.y139{bottom:962.392500px;}
.y160{bottom:962.400000px;}
.y184{bottom:966.600000px;}
.y1ba{bottom:966.606000px;}
.y93{bottom:966.612000px;}
.y3f{bottom:974.400000px;}
.y6c{bottom:974.406000px;}
.ye{bottom:976.494000px;}
.y1f2{bottom:977.400000px;}
.y229{bottom:981.300000px;}
.y109{bottom:983.691000px;}
.y138{bottom:983.694000px;}
.y15f{bottom:983.700000px;}
.y183{bottom:990.000000px;}
.y1b9{bottom:990.006000px;}
.y92{bottom:990.012000px;}
.y3e{bottom:996.000000px;}
.y1f1{bottom:996.900000px;}
.y6b{bottom:997.806000px;}
.y228{bottom:1000.800000px;}
.yd{bottom:1003.794000px;}
.y108{bottom:1004.992500px;}
.y137{bottom:1004.995500px;}
.y15e{bottom:1005.000000px;}
.y182{bottom:1013.400000px;}
.y1b8{bottom:1013.406000px;}
.y3d{bottom:1013.412000px;}
.y1f0{bottom:1016.400000px;}
.y227{bottom:1020.300000px;}
.y6a{bottom:1021.206000px;}
.y107{bottom:1026.294000px;}
.y136{bottom:1026.297000px;}
.y15d{bottom:1026.300000px;}
.yc{bottom:1030.800000px;}
.y1ef{bottom:1035.600000px;}
.y1b7{bottom:1036.500000px;}
.y3c{bottom:1036.506000px;}
.y226{bottom:1039.500000px;}
.y69{bottom:1044.300000px;}
.y106{bottom:1047.595500px;}
.y135{bottom:1047.598500px;}
.y15c{bottom:1047.600000px;}
.y1ee{bottom:1055.100000px;}
.yb{bottom:1058.100000px;}
.y225{bottom:1059.000000px;}
.y1b6{bottom:1059.900000px;}
.y3b{bottom:1059.906000px;}
.y68{bottom:1067.700000px;}
.y105{bottom:1069.194000px;}
.y134{bottom:1069.197000px;}
.y15b{bottom:1069.200000px;}
.y1ed{bottom:1073.700000px;}
.y224{bottom:1078.500000px;}
.y8{bottom:1079.400000px;}
.y1d1{bottom:1083.300000px;}
.y3a{bottom:1083.306000px;}
.y104{bottom:1090.495500px;}
.y133{bottom:1090.498500px;}
.y15a{bottom:1090.500000px;}
.y67{bottom:1091.100000px;}
.y223{bottom:1097.700000px;}
.y6{bottom:1103.400000px;}
.y39{bottom:1106.400000px;}
.y103{bottom:1111.797000px;}
.y159{bottom:1111.800000px;}
.y66{bottom:1112.400000px;}
.y222{bottom:1117.200000px;}
.y5{bottom:1129.200000px;}
.y38{bottom:1129.800000px;}
.y102{bottom:1133.098500px;}
.y158{bottom:1133.100000px;}
.y221{bottom:1136.700000px;}
.y3{bottom:1144.800000px;}
.y37{bottom:1153.200000px;}
.y101{bottom:1154.400000px;}
.y220{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y36{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.h5{height:23.401500px;}
.h9{height:23.998500px;}
.h4{height:31.320000px;}
.hf{height:41.760000px;}
.h3{height:43.920000px;}
.hd{height:46.680000px;}
.h7{height:47.400000px;}
.h16{height:48.312000px;}
.h2{height:48.420000px;}
.he{height:52.200000px;}
.h10{height:52.704000px;}
.h11{height:56.016000px;}
.h13{height:57.420000px;}
.h8{height:58.104000px;}
.h15{height:62.578125px;}
.hc{height:62.640000px;}
.hb{height:67.788000px;}
.h12{height:68.835938px;}
.h6{height:70.664062px;}
.h14{height:71.004000px;}
.ha{height:73.080000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.w2{width:478.200000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x3{left:79.800000px;}
.x1{left:91.500000px;}
.x11{left:95.700000px;}
.x14{left:111.900000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x12{left:144.600000px;}
.x9{left:169.200000px;}
.x15{left:173.100000px;}
.x10{left:179.394000px;}
.xc{left:197.400000px;}
.xd{left:235.500000px;}
.xb{left:252.900000px;}
.xa{left:336.591000px;}
.xe{left:374.100000px;}
.x2{left:446.400000px;}
.xf{left:449.400000px;}
.x13{left:473.100000px;}
.x5{left:558.000000px;}
.x7{left:685.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls64{letter-spacing:-1.493333pt;}
.ls63{letter-spacing:-1.440000pt;}
.ls61{letter-spacing:-1.333333pt;}
.ls3e{letter-spacing:-1.232000pt;}
.ls62{letter-spacing:-1.013333pt;}
.ls47{letter-spacing:-0.997333pt;}
.ls30{letter-spacing:-0.896000pt;}
.ls65{letter-spacing:-0.853333pt;}
.ls53{letter-spacing:-0.832000pt;}
.ls66{letter-spacing:-0.586667pt;}
.ls39{letter-spacing:-0.528000pt;}
.ls11{letter-spacing:-0.512000pt;}
.ls5f{letter-spacing:-0.480000pt;}
.ls42{letter-spacing:-0.469333pt;}
.ls22{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.426667pt;}
.ls4b{letter-spacing:-0.410667pt;}
.ls18{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.373333pt;}
.ls6a{letter-spacing:-0.352000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls3a{letter-spacing:-0.293333pt;}
.ls15{letter-spacing:-0.266667pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls38{letter-spacing:-0.234667pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls3f{letter-spacing:-0.176000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls2f{letter-spacing:-0.128000pt;}
.ls3c{letter-spacing:-0.117333pt;}
.ls60{letter-spacing:-0.106667pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls41{letter-spacing:-0.058667pt;}
.ls5e{letter-spacing:-0.053333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls5d{letter-spacing:0.053333pt;}
.ls40{letter-spacing:0.058667pt;}
.lsf{letter-spacing:0.074667pt;}
.lsa{letter-spacing:0.106667pt;}
.ls48{letter-spacing:0.117333pt;}
.ls2e{letter-spacing:0.128000pt;}
.ls33{letter-spacing:0.176000pt;}
.ls36{letter-spacing:0.187733pt;}
.ls23{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.213333pt;}
.lse{letter-spacing:0.224000pt;}
.ls34{letter-spacing:0.234667pt;}
.ls19{letter-spacing:0.256000pt;}
.ls3d{letter-spacing:0.293333pt;}
.ls1e{letter-spacing:0.300800pt;}
.ls5{letter-spacing:0.320000pt;}
.ls35{letter-spacing:0.352000pt;}
.ls2a{letter-spacing:0.384000pt;}
.ls3b{letter-spacing:0.410667pt;}
.ls4{letter-spacing:0.428800pt;}
.ls6{letter-spacing:0.448000pt;}
.ls4d{letter-spacing:0.469333pt;}
.ls14{letter-spacing:0.480000pt;}
.ls29{letter-spacing:0.512000pt;}
.ls67{letter-spacing:0.533333pt;}
.ls2b{letter-spacing:0.576000pt;}
.ls31{letter-spacing:0.588800pt;}
.ls4f{letter-spacing:0.768000pt;}
.ls68{letter-spacing:0.800000pt;}
.ls2c{letter-spacing:0.896000pt;}
.ls27{letter-spacing:1.024000pt;}
.ls57{letter-spacing:1.061333pt;}
.ls5b{letter-spacing:1.066667pt;}
.ls4e{letter-spacing:1.216000pt;}
.ls2d{letter-spacing:1.408000pt;}
.ls69{letter-spacing:1.760000pt;}
.ls28{letter-spacing:2.112000pt;}
.ls59{letter-spacing:2.826667pt;}
.ls4a{letter-spacing:2.874667pt;}
.ls1d{letter-spacing:3.200000pt;}
.ls49{letter-spacing:3.520000pt;}
.ls1f{letter-spacing:4.224000pt;}
.ls37{letter-spacing:4.576000pt;}
.ls26{letter-spacing:5.312000pt;}
.ls51{letter-spacing:6.400000pt;}
.ls43{letter-spacing:6.746667pt;}
.ls7{letter-spacing:7.424000pt;}
.ls25{letter-spacing:7.622400pt;}
.ls44{letter-spacing:7.802667pt;}
.ls55{letter-spacing:8.512000pt;}
.ls52{letter-spacing:9.600000pt;}
.ls9{letter-spacing:10.624000pt;}
.ls20{letter-spacing:13.824000pt;}
.ls50{letter-spacing:14.912000pt;}
.ls56{letter-spacing:17.173333pt;}
.ls46{letter-spacing:17.289067pt;}
.ls45{letter-spacing:17.424000pt;}
.ls4c{letter-spacing:18.480000pt;}
.ls24{letter-spacing:19.104000pt;}
.ls5a{letter-spacing:20.960000pt;}
.ls54{letter-spacing:22.400000pt;}
.ls58{letter-spacing:33.760000pt;}
.ls1b{letter-spacing:39.424000pt;}
.ls8{letter-spacing:48.000000pt;}
.ls32{letter-spacing:51.978667pt;}
.ls1c{letter-spacing:171.712000pt;}
.ls5c{letter-spacing:173.493333pt;}
.ls1{letter-spacing:752.693333pt;}
.ls3{letter-spacing:777.226667pt;}
.ls2{letter-spacing:1010.826667pt;}
.ls1a{letter-spacing:1114.293333pt;}
.ls0{letter-spacing:1186.826667pt;}
.ws111{word-spacing:-18.304000pt;}
.ws12e{word-spacing:-17.600000pt;}
.ws4{word-spacing:-17.408000pt;}
.ws51{word-spacing:-17.344000pt;}
.ws5{word-spacing:-17.088000pt;}
.ws89{word-spacing:-17.024000pt;}
.ws34{word-spacing:-16.896000pt;}
.ws6c{word-spacing:-16.832000pt;}
.ws50{word-spacing:-16.768000pt;}
.ws130{word-spacing:-16.704000pt;}
.ws6d{word-spacing:-16.640000pt;}
.ws33{word-spacing:-16.576000pt;}
.ws12f{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.192000pt;}
.ws110{word-spacing:-16.074667pt;}
.wsf9{word-spacing:-16.016000pt;}
.ws99{word-spacing:-15.957333pt;}
.ws9{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.680000pt;}
.ws97{word-spacing:-15.664000pt;}
.ws98{word-spacing:-15.605333pt;}
.wscb{word-spacing:-15.429333pt;}
.ws9a{word-spacing:-15.370667pt;}
.ws178{word-spacing:-15.194667pt;}
.wscc{word-spacing:-15.136000pt;}
.ws14d{word-spacing:-15.040000pt;}
.ws14a{word-spacing:-14.773333pt;}
.ws6{word-spacing:-14.720000pt;}
.wsfa{word-spacing:-14.666667pt;}
.ws14c{word-spacing:-14.560000pt;}
.ws177{word-spacing:-14.549333pt;}
.ws1{word-spacing:-14.346667pt;}
.ws146{word-spacing:-14.293333pt;}
.ws148{word-spacing:-14.240000pt;}
.ws149{word-spacing:-14.186667pt;}
.ws2{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.973333pt;}
.ws145{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.813333pt;}
.ws14b{word-spacing:-13.226667pt;}
.ws144{word-spacing:-13.066667pt;}
.ws147{word-spacing:-12.906667pt;}
.ws128{word-spacing:-9.600000pt;}
.ws67{word-spacing:-5.312000pt;}
.ws143{word-spacing:-4.864000pt;}
.ws12d{word-spacing:-4.544000pt;}
.ws6e{word-spacing:-4.480000pt;}
.ws104{word-spacing:-4.341333pt;}
.ws103{word-spacing:-4.282667pt;}
.ws6f{word-spacing:-4.224000pt;}
.ws139{word-spacing:-4.096000pt;}
.ws116{word-spacing:-3.989333pt;}
.ws142{word-spacing:-3.904000pt;}
.ws79{word-spacing:-3.776000pt;}
.ws63{word-spacing:-3.456000pt;}
.ws96{word-spacing:-3.392000pt;}
.wsa6{word-spacing:-3.285333pt;}
.wsde{word-spacing:-3.168000pt;}
.ws64{word-spacing:-3.136000pt;}
.ws135{word-spacing:-2.944000pt;}
.wsff{word-spacing:-2.933333pt;}
.ws40{word-spacing:-2.816000pt;}
.wsd6{word-spacing:-2.757333pt;}
.ws5b{word-spacing:-2.688000pt;}
.ws9d{word-spacing:-2.640000pt;}
.ws16d{word-spacing:-2.560000pt;}
.ws69{word-spacing:-2.496000pt;}
.ws8a{word-spacing:-2.432000pt;}
.ws123{word-spacing:-2.368000pt;}
.ws9e{word-spacing:-2.346667pt;}
.ws7b{word-spacing:-2.304000pt;}
.wsb6{word-spacing:-2.229333pt;}
.ws1c{word-spacing:-2.112000pt;}
.ws7c{word-spacing:-1.984000pt;}
.ws65{word-spacing:-1.920000pt;}
.ws6a{word-spacing:-1.792000pt;}
.wsd3{word-spacing:-1.701333pt;}
.ws21{word-spacing:-1.664000pt;}
.ws16f{word-spacing:-1.653333pt;}
.wse9{word-spacing:-1.642667pt;}
.ws160{word-spacing:-1.546667pt;}
.ws7a{word-spacing:-1.408000pt;}
.ws60{word-spacing:-1.344000pt;}
.ws39{word-spacing:-1.280000pt;}
.ws161{word-spacing:-1.173333pt;}
.wsa7{word-spacing:-1.114667pt;}
.ws170{word-spacing:-1.066667pt;}
.ws3f{word-spacing:-1.024000pt;}
.ws15f{word-spacing:-1.013333pt;}
.ws106{word-spacing:-0.997333pt;}
.ws83{word-spacing:-0.960000pt;}
.ws71{word-spacing:-0.896000pt;}
.ws137{word-spacing:-0.832000pt;}
.ws11{word-spacing:-0.821333pt;}
.ws125{word-spacing:-0.768000pt;}
.ws2a{word-spacing:-0.704000pt;}
.ws19{word-spacing:-0.586667pt;}
.ws29{word-spacing:-0.576000pt;}
.wsf0{word-spacing:-0.528000pt;}
.ws53{word-spacing:-0.512000pt;}
.wsb{word-spacing:-0.480000pt;}
.ws150{word-spacing:-0.426667pt;}
.wsc8{word-spacing:-0.410667pt;}
.wsd{word-spacing:-0.373333pt;}
.wse6{word-spacing:-0.352000pt;}
.ws17{word-spacing:-0.320000pt;}
.ws15c{word-spacing:-0.266667pt;}
.ws31{word-spacing:-0.256000pt;}
.wsbd{word-spacing:-0.234667pt;}
.ws10{word-spacing:-0.224000pt;}
.wse{word-spacing:-0.213333pt;}
.wsf{word-spacing:-0.192000pt;}
.wsc5{word-spacing:-0.176000pt;}
.ws13c{word-spacing:-0.128000pt;}
.wsea{word-spacing:-0.117333pt;}
.ws151{word-spacing:-0.106667pt;}
.wsaa{word-spacing:-0.058667pt;}
.ws16e{word-spacing:-0.053333pt;}
.wsc{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.053333pt;}
.wsb8{word-spacing:0.058667pt;}
.ws15{word-spacing:0.064000pt;}
.ws13{word-spacing:0.074667pt;}
.wsda{word-spacing:0.117333pt;}
.ws93{word-spacing:0.128000pt;}
.wsee{word-spacing:0.176000pt;}
.ws132{word-spacing:0.192000pt;}
.ws14{word-spacing:0.224000pt;}
.ws11d{word-spacing:0.256000pt;}
.ws1b{word-spacing:0.266667pt;}
.wsdb{word-spacing:0.293333pt;}
.ws12{word-spacing:0.298667pt;}
.ws54{word-spacing:0.320000pt;}
.wsab{word-spacing:0.352000pt;}
.ws18{word-spacing:0.373333pt;}
.ws32{word-spacing:0.384000pt;}
.wsd4{word-spacing:0.410667pt;}
.ws163{word-spacing:0.426667pt;}
.ws129{word-spacing:0.448000pt;}
.wsd5{word-spacing:0.469333pt;}
.ws158{word-spacing:0.480000pt;}
.ws16{word-spacing:0.512000pt;}
.wsbe{word-spacing:0.528000pt;}
.ws10f{word-spacing:0.586667pt;}
.wsfe{word-spacing:0.645333pt;}
.ws90{word-spacing:0.704000pt;}
.ws48{word-spacing:0.768000pt;}
.ws91{word-spacing:0.832000pt;}
.ws16c{word-spacing:0.853333pt;}
.wsa8{word-spacing:0.880000pt;}
.wsd7{word-spacing:0.997333pt;}
.ws169{word-spacing:1.013333pt;}
.ws100{word-spacing:1.056000pt;}
.ws5a{word-spacing:1.088000pt;}
.ws122{word-spacing:1.216000pt;}
.ws176{word-spacing:1.333333pt;}
.wse8{word-spacing:1.349333pt;}
.ws47{word-spacing:1.408000pt;}
.ws16a{word-spacing:1.440000pt;}
.wsce{word-spacing:1.466667pt;}
.ws16b{word-spacing:1.493333pt;}
.wse3{word-spacing:1.525333pt;}
.ws58{word-spacing:1.536000pt;}
.ws159{word-spacing:1.546667pt;}
.wsa9{word-spacing:1.584000pt;}
.wsbc{word-spacing:1.642667pt;}
.ws15b{word-spacing:1.653333pt;}
.wsd8{word-spacing:1.701333pt;}
.ws84{word-spacing:1.728000pt;}
.ws94{word-spacing:1.792000pt;}
.ws86{word-spacing:1.856000pt;}
.wscd{word-spacing:1.877333pt;}
.ws5e{word-spacing:1.920000pt;}
.wsbb{word-spacing:1.936000pt;}
.ws119{word-spacing:2.053333pt;}
.wsc7{word-spacing:2.112000pt;}
.wsc2{word-spacing:2.170667pt;}
.ws3d{word-spacing:2.176000pt;}
.ws15a{word-spacing:2.186667pt;}
.ws4a{word-spacing:2.368000pt;}
.wsc6{word-spacing:2.464000pt;}
.ws4d{word-spacing:2.496000pt;}
.wsa3{word-spacing:2.581333pt;}
.ws162{word-spacing:2.613333pt;}
.ws4c{word-spacing:2.624000pt;}
.ws109{word-spacing:2.640000pt;}
.wsac{word-spacing:2.757333pt;}
.ws3c{word-spacing:2.944000pt;}
.ws157{word-spacing:2.986667pt;}
.wsf5{word-spacing:2.992000pt;}
.ws95{word-spacing:3.008000pt;}
.ws11b{word-spacing:3.050667pt;}
.ws88{word-spacing:3.072000pt;}
.wsf6{word-spacing:3.109333pt;}
.wsaf{word-spacing:3.168000pt;}
.wse5{word-spacing:3.226667pt;}
.ws156{word-spacing:3.253333pt;}
.ws3b{word-spacing:3.264000pt;}
.ws55{word-spacing:3.392000pt;}
.ws87{word-spacing:3.456000pt;}
.wsf8{word-spacing:3.461333pt;}
.ws140{word-spacing:3.520000pt;}
.ws6b{word-spacing:3.584000pt;}
.wsf1{word-spacing:3.637333pt;}
.ws13e{word-spacing:3.648000pt;}
.ws4f{word-spacing:3.712000pt;}
.wsb3{word-spacing:3.813333pt;}
.ws8d{word-spacing:3.904000pt;}
.ws13b{word-spacing:3.968000pt;}
.ws41{word-spacing:4.032000pt;}
.ws105{word-spacing:4.048000pt;}
.wsa4{word-spacing:4.224000pt;}
.ws14f{word-spacing:4.266667pt;}
.wsbf{word-spacing:4.282667pt;}
.ws28{word-spacing:4.288000pt;}
.ws14e{word-spacing:4.320000pt;}
.wsa5{word-spacing:4.341333pt;}
.ws36{word-spacing:4.416000pt;}
.wse2{word-spacing:4.576000pt;}
.ws27{word-spacing:4.608000pt;}
.ws43{word-spacing:4.672000pt;}
.ws2f{word-spacing:4.736000pt;}
.wsc0{word-spacing:4.752000pt;}
.ws8b{word-spacing:4.928000pt;}
.ws8e{word-spacing:5.120000pt;}
.ws114{word-spacing:5.338667pt;}
.ws8c{word-spacing:5.376000pt;}
.ws5d{word-spacing:5.568000pt;}
.ws68{word-spacing:5.696000pt;}
.wsdd{word-spacing:5.808000pt;}
.ws3e{word-spacing:5.824000pt;}
.ws117{word-spacing:5.866667pt;}
.ws112{word-spacing:5.984000pt;}
.ws76{word-spacing:6.080000pt;}
.ws174{word-spacing:6.186667pt;}
.ws131{word-spacing:6.208000pt;}
.ws13d{word-spacing:6.272000pt;}
.ws175{word-spacing:6.293333pt;}
.ws101{word-spacing:6.336000pt;}
.wsed{word-spacing:6.394667pt;}
.ws173{word-spacing:6.453333pt;}
.ws9c{word-spacing:6.464000pt;}
.wsfb{word-spacing:6.512000pt;}
.ws11f{word-spacing:6.592000pt;}
.ws17a{word-spacing:6.773333pt;}
.ws78{word-spacing:6.784000pt;}
.ws138{word-spacing:6.848000pt;}
.ws108{word-spacing:6.864000pt;}
.ws4e{word-spacing:6.912000pt;}
.wsfd{word-spacing:6.981333pt;}
.ws166{word-spacing:7.093333pt;}
.wsfc{word-spacing:7.157333pt;}
.ws81{word-spacing:7.168000pt;}
.wsd9{word-spacing:7.216000pt;}
.ws136{word-spacing:7.232000pt;}
.ws167{word-spacing:7.253333pt;}
.ws165{word-spacing:7.360000pt;}
.wsa0{word-spacing:7.392000pt;}
.ws24{word-spacing:7.488000pt;}
.ws10a{word-spacing:7.509333pt;}
.ws168{word-spacing:7.520000pt;}
.ws85{word-spacing:7.680000pt;}
.ws5c{word-spacing:7.808000pt;}
.wsa2{word-spacing:7.920000pt;}
.ws25{word-spacing:7.936000pt;}
.wsa1{word-spacing:8.037333pt;}
.ws9f{word-spacing:8.096000pt;}
.ws141{word-spacing:8.256000pt;}
.ws134{word-spacing:8.320000pt;}
.ws113{word-spacing:8.448000pt;}
.ws57{word-spacing:8.576000pt;}
.ws13a{word-spacing:8.704000pt;}
.ws66{word-spacing:8.768000pt;}
.ws42{word-spacing:8.896000pt;}
.ws115{word-spacing:8.976000pt;}
.ws22{word-spacing:9.024000pt;}
.ws72{word-spacing:9.408000pt;}
.wsc4{word-spacing:9.504000pt;}
.wsd2{word-spacing:9.621333pt;}
.ws92{word-spacing:9.664000pt;}
.ws3a{word-spacing:9.856000pt;}
.wsc3{word-spacing:9.914667pt;}
.ws56{word-spacing:9.984000pt;}
.ws11c{word-spacing:10.112000pt;}
.ws133{word-spacing:10.368000pt;}
.ws62{word-spacing:10.432000pt;}
.wsdc{word-spacing:10.618667pt;}
.wsf7{word-spacing:10.677333pt;}
.ws45{word-spacing:10.688000pt;}
.ws10c{word-spacing:10.736000pt;}
.ws1e{word-spacing:10.880000pt;}
.wse1{word-spacing:10.970667pt;}
.ws11e{word-spacing:11.008000pt;}
.ws10b{word-spacing:11.029333pt;}
.ws9b{word-spacing:11.072000pt;}
.ws49{word-spacing:11.136000pt;}
.wsae{word-spacing:11.205333pt;}
.wse0{word-spacing:11.264000pt;}
.ws155{word-spacing:11.413333pt;}
.wsdf{word-spacing:11.498667pt;}
.ws124{word-spacing:11.520000pt;}
.wscf{word-spacing:11.557333pt;}
.ws102{word-spacing:11.674667pt;}
.ws153{word-spacing:11.733333pt;}
.ws127{word-spacing:11.776000pt;}
.ws154{word-spacing:11.786667pt;}
.wse4{word-spacing:11.792000pt;}
.ws12b{word-spacing:12.096000pt;}
.ws38{word-spacing:12.160000pt;}
.wsad{word-spacing:12.202667pt;}
.ws37{word-spacing:12.224000pt;}
.ws44{word-spacing:12.608000pt;}
.ws17c{word-spacing:12.730667pt;}
.ws2c{word-spacing:12.864000pt;}
.ws77{word-spacing:12.992000pt;}
.ws46{word-spacing:13.056000pt;}
.wsb1{word-spacing:13.082667pt;}
.ws1f{word-spacing:13.184000pt;}
.ws17b{word-spacing:13.200000pt;}
.wsb2{word-spacing:13.258667pt;}
.ws152{word-spacing:13.280000pt;}
.ws26{word-spacing:13.312000pt;}
.ws74{word-spacing:13.504000pt;}
.ws75{word-spacing:13.632000pt;}
.wsb0{word-spacing:13.669333pt;}
.ws5f{word-spacing:13.888000pt;}
.ws73{word-spacing:14.208000pt;}
.ws20{word-spacing:14.336000pt;}
.ws8f{word-spacing:14.720000pt;}
.ws118{word-spacing:14.901333pt;}
.ws10e{word-spacing:14.960000pt;}
.ws61{word-spacing:14.976000pt;}
.ws179{word-spacing:14.986667pt;}
.ws10d{word-spacing:15.194667pt;}
.ws2b{word-spacing:15.296000pt;}
.wsc9{word-spacing:16.016000pt;}
.ws35{word-spacing:16.064000pt;}
.ws80{word-spacing:16.128000pt;}
.wsca{word-spacing:16.250667pt;}
.wsf3{word-spacing:16.309333pt;}
.ws82{word-spacing:16.384000pt;}
.ws52{word-spacing:16.512000pt;}
.wsef{word-spacing:17.013333pt;}
.wsf2{word-spacing:17.072000pt;}
.ws1d{word-spacing:17.088000pt;}
.wsf4{word-spacing:17.130667pt;}
.wsb5{word-spacing:17.365333pt;}
.ws121{word-spacing:17.408000pt;}
.wsb7{word-spacing:17.541333pt;}
.wsb4{word-spacing:17.717333pt;}
.wsd0{word-spacing:18.069333pt;}
.ws23{word-spacing:18.176000pt;}
.ws11a{word-spacing:18.186667pt;}
.wsc1{word-spacing:18.421333pt;}
.ws12a{word-spacing:18.624000pt;}
.wsd1{word-spacing:19.008000pt;}
.ws164{word-spacing:19.680000pt;}
.ws59{word-spacing:19.712000pt;}
.ws120{word-spacing:20.032000pt;}
.ws7d{word-spacing:20.288000pt;}
.ws7e{word-spacing:20.672000pt;}
.ws7f{word-spacing:20.736000pt;}
.ws4b{word-spacing:21.696000pt;}
.wseb{word-spacing:22.704000pt;}
.wse7{word-spacing:22.880000pt;}
.ws70{word-spacing:22.912000pt;}
.ws126{word-spacing:23.808000pt;}
.ws12c{word-spacing:23.936000pt;}
.wsec{word-spacing:25.050667pt;}
.ws13f{word-spacing:27.136000pt;}
.ws2d{word-spacing:28.864000pt;}
.ws2e{word-spacing:29.312000pt;}
.ws107{word-spacing:31.210667pt;}
.wsba{word-spacing:32.970667pt;}
.ws15e{word-spacing:33.280000pt;}
.wsb9{word-spacing:33.850667pt;}
.ws30{word-spacing:47.744000pt;}
.ws15d{word-spacing:70.880000pt;}
.ws171{word-spacing:173.866667pt;}
.ws172{word-spacing:173.920000pt;}
._1e{margin-left:-11.040000pt;}
._1b{margin-left:-10.003200pt;}
._1c{margin-left:-8.838400pt;}
._1d{margin-left:-7.820800pt;}
._19{margin-left:-5.632000pt;}
._12{margin-left:-3.929600pt;}
._5{margin-left:-2.020267pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.120000pt;}
._6{width:2.026667pt;}
._10{width:3.485867pt;}
._f{width:4.499200pt;}
._a{width:5.606400pt;}
._c{width:7.176533pt;}
._b{width:8.211200pt;}
._16{width:9.316267pt;}
._7{width:10.713600pt;}
._8{width:12.025600pt;}
._11{width:14.220800pt;}
._15{width:15.270400pt;}
._20{width:16.533333pt;}
._21{width:17.434667pt;}
._1a{width:18.410667pt;}
._e{width:19.709867pt;}
._d{width:20.870400pt;}
._9{width:38.553600pt;}
._17{width:40.226133pt;}
._1f{width:173.593600pt;}
._18{width:349.493333pt;}
._3{width:680.800000pt;}
._14{width:718.986667pt;}
._4{width:730.293333pt;}
._2{width:893.706667pt;}
._13{width:1032.320000pt;}
.fs1{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:72.533333pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.933333pt;}
.y7{bottom:4.533333pt;}
.ya{bottom:5.333333pt;}
.y4{bottom:60.266667pt;}
.y65{bottom:86.469333pt;}
.y157{bottom:86.666667pt;}
.y21f{bottom:92.533333pt;}
.yb8{bottom:93.333333pt;}
.y1ec{bottom:93.344000pt;}
.y1a8{bottom:93.376000pt;}
.y132{bottom:96.244000pt;}
.ydc{bottom:100.309333pt;}
.y91{bottom:100.346667pt;}
.y35{bottom:101.349333pt;}
.y100{bottom:103.744000pt;}
.y156{bottom:105.866667pt;}
.y64{bottom:107.269333pt;}
.y181{bottom:108.800000pt;}
.y21e{bottom:109.866667pt;}
.yb7{bottom:113.866667pt;}
.y1eb{bottom:113.872000pt;}
.y1a7{bottom:113.904000pt;}
.y131{bottom:115.178667pt;}
.y1dc{bottom:120.816000pt;}
.ydb{bottom:120.837333pt;}
.y90{bottom:120.874667pt;}
.y34{bottom:122.149333pt;}
.yff{bottom:124.272000pt;}
.y21d{bottom:126.933333pt;}
.y155{bottom:127.466667pt;}
.y63{bottom:127.797333pt;}
.y180{bottom:129.600000pt;}
.y130{bottom:134.113333pt;}
.yb6{bottom:134.666667pt;}
.y1ea{bottom:134.672000pt;}
.y1a6{bottom:134.704000pt;}
.y1db{bottom:141.616000pt;}
.yda{bottom:141.637333pt;}
.y8f{bottom:141.674667pt;}
.y33{bottom:142.949333pt;}
.y21c{bottom:144.266667pt;}
.yfe{bottom:145.072000pt;}
.y62{bottom:148.597333pt;}
.y154{bottom:149.333333pt;}
.y17f{bottom:150.133333pt;}
.y12f{bottom:153.048000pt;}
.yb5{bottom:155.466667pt;}
.y1e9{bottom:155.472000pt;}
.y1a5{bottom:155.504000pt;}
.y21b{bottom:161.600000pt;}
.y1da{bottom:162.416000pt;}
.yd9{bottom:162.437333pt;}
.y8e{bottom:162.474667pt;}
.y32{bottom:163.477333pt;}
.yfd{bottom:165.872000pt;}
.y61{bottom:169.125333pt;}
.y17e{bottom:170.933333pt;}
.y153{bottom:171.200000pt;}
.y12e{bottom:172.246667pt;}
.yb4{bottom:176.000000pt;}
.y1a4{bottom:176.032000pt;}
.y21a{bottom:178.666667pt;}
.y1d9{bottom:182.944000pt;}
.yd8{bottom:182.965333pt;}
.y8d{bottom:183.002667pt;}
.y31{bottom:184.277333pt;}
.yfc{bottom:186.400000pt;}
.y60{bottom:189.925333pt;}
.y12d{bottom:191.181333pt;}
.y17d{bottom:191.733333pt;}
.y152{bottom:193.066667pt;}
.y219{bottom:196.000000pt;}
.yb3{bottom:196.800000pt;}
.y1a3{bottom:196.832000pt;}
.y1d8{bottom:203.744000pt;}
.yd7{bottom:203.765333pt;}
.y8c{bottom:203.802667pt;}
.y30{bottom:205.077333pt;}
.yfb{bottom:207.200000pt;}
.y12c{bottom:210.116000pt;}
.y5f{bottom:210.725333pt;}
.y17c{bottom:212.266667pt;}
.y218{bottom:213.333333pt;}
.y151{bottom:214.933333pt;}
.yb2{bottom:217.600000pt;}
.y1a2{bottom:217.632000pt;}
.y1d7{bottom:224.544000pt;}
.yd6{bottom:224.565333pt;}
.y8b{bottom:224.602667pt;}
.y2f{bottom:225.605333pt;}
.yfa{bottom:227.456000pt;}
.y12b{bottom:229.050667pt;}
.y217{bottom:230.400000pt;}
.y5e{bottom:231.253333pt;}
.y17b{bottom:233.066667pt;}
.y150{bottom:233.866667pt;}
.yb1{bottom:238.133333pt;}
.y1d0{bottom:238.154667pt;}
.y1a1{bottom:238.160000pt;}
.y1d6{bottom:245.072000pt;}
.yd5{bottom:245.093333pt;}
.y8a{bottom:245.130667pt;}
.yf9{bottom:246.390667pt;}
.y2e{bottom:246.405333pt;}
.y216{bottom:247.733333pt;}
.y12a{bottom:247.985333pt;}
.y5d{bottom:252.053333pt;}
.y14f{bottom:252.800000pt;}
.y17a{bottom:253.882667pt;}
.yb0{bottom:258.933333pt;}
.y1e8{bottom:258.949333pt;}
.y1cf{bottom:258.954667pt;}
.y1a0{bottom:258.960000pt;}
.y215{bottom:265.066667pt;}
.yf8{bottom:265.325333pt;}
.y1d5{bottom:265.872000pt;}
.yd4{bottom:265.893333pt;}
.y89{bottom:265.930667pt;}
.y129{bottom:266.920000pt;}
.y2d{bottom:266.933333pt;}
.y14e{bottom:271.733333pt;}
.y5c{bottom:272.853333pt;}
.y179{bottom:274.410667pt;}
.yaf{bottom:279.733333pt;}
.y1e7{bottom:279.749333pt;}
.y1ce{bottom:279.754667pt;}
.y19f{bottom:279.760000pt;}
.y214{bottom:282.400000pt;}
.yf7{bottom:284.260000pt;}
.y128{bottom:286.118667pt;}
.y1d4{bottom:286.400000pt;}
.yd3{bottom:286.421333pt;}
.y88{bottom:286.458667pt;}
.y2c{bottom:287.733333pt;}
.y14d{bottom:290.666667pt;}
.y5b{bottom:293.381333pt;}
.y178{bottom:295.210667pt;}
.y213{bottom:299.466667pt;}
.yae{bottom:300.266667pt;}
.y1e6{bottom:300.277333pt;}
.y1cd{bottom:300.282667pt;}
.y19e{bottom:300.288000pt;}
.yf6{bottom:303.194667pt;}
.y127{bottom:305.053333pt;}
.y2b{bottom:306.933333pt;}
.y1d3{bottom:307.200000pt;}
.yd2{bottom:307.221333pt;}
.y87{bottom:307.258667pt;}
.y14c{bottom:309.866667pt;}
.y5a{bottom:314.181333pt;}
.y177{bottom:315.738667pt;}
.y212{bottom:316.800000pt;}
.y1b5{bottom:321.066667pt;}
.y1e5{bottom:321.077333pt;}
.y1cc{bottom:321.082667pt;}
.y19d{bottom:321.088000pt;}
.yad{bottom:321.130667pt;}
.yf5{bottom:322.129333pt;}
.y2a{bottom:322.133333pt;}
.y126{bottom:323.988000pt;}
.y1d2{bottom:326.400000pt;}
.yd1{bottom:328.021333pt;}
.y86{bottom:328.058667pt;}
.y14b{bottom:331.466667pt;}
.y211{bottom:334.133333pt;}
.y59{bottom:334.981333pt;}
.y176{bottom:336.538667pt;}
.yf4{bottom:341.328000pt;}
.y1b4{bottom:341.600000pt;}
.y1e4{bottom:341.605333pt;}
.y1cb{bottom:341.610667pt;}
.y19c{bottom:341.616000pt;}
.yac{bottom:341.658667pt;}
.y125{bottom:342.922667pt;}
.y29{bottom:342.933333pt;}
.yd0{bottom:348.549333pt;}
.y85{bottom:348.586667pt;}
.y210{bottom:351.200000pt;}
.y14a{bottom:353.333333pt;}
.y58{bottom:355.509333pt;}
.y175{bottom:357.338667pt;}
.yf3{bottom:360.262667pt;}
.y124{bottom:361.857333pt;}
.y28{bottom:362.133333pt;}
.y1b3{bottom:362.400000pt;}
.y1e3{bottom:362.405333pt;}
.y1ca{bottom:362.410667pt;}
.y19b{bottom:362.416000pt;}
.yab{bottom:362.458667pt;}
.y20f{bottom:368.533333pt;}
.ycf{bottom:369.349333pt;}
.y84{bottom:369.386667pt;}
.y149{bottom:375.200000pt;}
.y57{bottom:376.309333pt;}
.y27{bottom:377.632000pt;}
.y174{bottom:377.866667pt;}
.yf2{bottom:379.197333pt;}
.y123{bottom:380.792000pt;}
.y1b2{bottom:383.200000pt;}
.y1e2{bottom:383.205333pt;}
.y1c9{bottom:383.210667pt;}
.y19a{bottom:383.216000pt;}
.yaa{bottom:383.258667pt;}
.y20e{bottom:385.866667pt;}
.yce{bottom:390.149333pt;}
.y83{bottom:390.186667pt;}
.y148{bottom:397.066667pt;}
.y56{bottom:397.109333pt;}
.yf1{bottom:398.132000pt;}
.y26{bottom:398.160000pt;}
.y173{bottom:398.666667pt;}
.y122{bottom:399.990667pt;}
.y20d{bottom:402.933333pt;}
.y1b1{bottom:403.733333pt;}
.y1c8{bottom:403.738667pt;}
.y199{bottom:403.744000pt;}
.ya9{bottom:403.786667pt;}
.ycd{bottom:410.677333pt;}
.y82{bottom:410.714667pt;}
.yf0{bottom:417.066667pt;}
.y55{bottom:417.637333pt;}
.y172{bottom:418.918667pt;}
.y121{bottom:418.925333pt;}
.y147{bottom:418.933333pt;}
.y25{bottom:418.960000pt;}
.y20c{bottom:420.266667pt;}
.y1b0{bottom:424.533333pt;}
.y1c7{bottom:424.538667pt;}
.y198{bottom:424.544000pt;}
.ya8{bottom:424.586667pt;}
.ycc{bottom:431.477333pt;}
.y81{bottom:431.514667pt;}
.yef{bottom:436.265333pt;}
.y20b{bottom:437.600000pt;}
.y171{bottom:437.853333pt;}
.y120{bottom:437.860000pt;}
.y146{bottom:437.866667pt;}
.y54{bottom:438.437333pt;}
.y24{bottom:439.488000pt;}
.y1af{bottom:445.333333pt;}
.y1c6{bottom:445.338667pt;}
.y197{bottom:445.344000pt;}
.y1e1{bottom:445.370667pt;}
.ya7{bottom:445.386667pt;}
.ycb{bottom:452.277333pt;}
.y80{bottom:452.314667pt;}
.y20a{bottom:454.933333pt;}
.yee{bottom:455.200000pt;}
.y170{bottom:456.788000pt;}
.y11f{bottom:456.794667pt;}
.y145{bottom:456.800000pt;}
.y53{bottom:458.965333pt;}
.y23{bottom:460.288000pt;}
.y1ae{bottom:465.866667pt;}
.y196{bottom:465.872000pt;}
.y1e0{bottom:465.898667pt;}
.ya6{bottom:465.914667pt;}
.y209{bottom:472.000000pt;}
.yca{bottom:472.805333pt;}
.y7f{bottom:472.842667pt;}
.yed{bottom:474.133333pt;}
.y16f{bottom:475.722667pt;}
.y11e{bottom:475.729333pt;}
.y144{bottom:475.733333pt;}
.y52{bottom:479.765333pt;}
.y22{bottom:481.088000pt;}
.y1ad{bottom:486.666667pt;}
.y195{bottom:486.672000pt;}
.y1df{bottom:486.698667pt;}
.ya5{bottom:486.714667pt;}
.y208{bottom:489.333333pt;}
.yec{bottom:493.066667pt;}
.yc9{bottom:493.605333pt;}
.y7e{bottom:493.642667pt;}
.y16e{bottom:494.921333pt;}
.y11d{bottom:494.928000pt;}
.y143{bottom:494.933333pt;}
.y51{bottom:500.565333pt;}
.y21{bottom:501.616000pt;}
.y207{bottom:506.666667pt;}
.y1ac{bottom:507.466667pt;}
.y194{bottom:507.472000pt;}
.y1de{bottom:507.498667pt;}
.ya4{bottom:507.514667pt;}
.yeb{bottom:512.000000pt;}
.y16d{bottom:513.856000pt;}
.y11c{bottom:513.862667pt;}
.y142{bottom:513.866667pt;}
.yc8{bottom:514.133333pt;}
.y7d{bottom:514.170667pt;}
.y50{bottom:521.093333pt;}
.y20{bottom:522.416000pt;}
.y206{bottom:523.733333pt;}
.y193{bottom:528.000000pt;}
.y1dd{bottom:528.026667pt;}
.ya3{bottom:528.042667pt;}
.yea{bottom:530.933333pt;}
.y16c{bottom:532.790667pt;}
.y11b{bottom:532.797333pt;}
.y141{bottom:532.800000pt;}
.yc7{bottom:533.333333pt;}
.y7c{bottom:534.970667pt;}
.y205{bottom:541.066667pt;}
.y4f{bottom:541.893333pt;}
.y1f{bottom:543.216000pt;}
.y192{bottom:548.800000pt;}
.yc6{bottom:548.826667pt;}
.ya2{bottom:548.842667pt;}
.ye9{bottom:550.133333pt;}
.y16b{bottom:551.725333pt;}
.y11a{bottom:551.732000pt;}
.y140{bottom:551.733333pt;}
.y7b{bottom:555.770667pt;}
.y204{bottom:558.400000pt;}
.y4e{bottom:562.693333pt;}
.y1e{bottom:563.744000pt;}
.ye8{bottom:569.066667pt;}
.y191{bottom:569.600000pt;}
.yc5{bottom:569.626667pt;}
.ya1{bottom:569.642667pt;}
.y16a{bottom:570.660000pt;}
.y119{bottom:570.666667pt;}
.y236{bottom:573.866667pt;}
.y203{bottom:575.466667pt;}
.y7a{bottom:576.298667pt;}
.y4d{bottom:583.221333pt;}
.y1d{bottom:584.544000pt;}
.ye7{bottom:588.000000pt;}
.y169{bottom:589.594667pt;}
.y13f{bottom:589.600000pt;}
.y118{bottom:589.601333pt;}
.y190{bottom:590.133333pt;}
.yc4{bottom:590.154667pt;}
.ya0{bottom:590.170667pt;}
.y202{bottom:592.800000pt;}
.y79{bottom:597.098667pt;}
.y4c{bottom:604.021333pt;}
.y1c{bottom:605.344000pt;}
.ye6{bottom:606.933333pt;}
.y168{bottom:608.793333pt;}
.y117{bottom:608.800000pt;}
.y201{bottom:610.133333pt;}
.y235{bottom:610.666667pt;}
.y18f{bottom:610.933333pt;}
.yc3{bottom:610.954667pt;}
.y9f{bottom:610.970667pt;}
.y78{bottom:617.898667pt;}
.y4b{bottom:624.821333pt;}
.y234{bottom:625.597333pt;}
.ye5{bottom:625.866667pt;}
.y1b{bottom:625.872000pt;}
.y200{bottom:627.466667pt;}
.y167{bottom:627.728000pt;}
.y116{bottom:627.733333pt;}
.y1ab{bottom:631.466667pt;}
.y18e{bottom:631.472000pt;}
.yc2{bottom:631.482667pt;}
.y1c5{bottom:631.493333pt;}
.y9e{bottom:631.498667pt;}
.y77{bottom:638.426667pt;}
.y233{bottom:644.532000pt;}
.y1ff{bottom:644.533333pt;}
.ye4{bottom:644.800000pt;}
.y4a{bottom:645.349333pt;}
.y166{bottom:646.662667pt;}
.y115{bottom:646.666667pt;}
.y1a{bottom:646.672000pt;}
.y1aa{bottom:652.266667pt;}
.y18d{bottom:652.272000pt;}
.yc1{bottom:652.282667pt;}
.y1c4{bottom:652.293333pt;}
.y9d{bottom:652.298667pt;}
.y76{bottom:659.226667pt;}
.y1fe{bottom:661.866667pt;}
.y232{bottom:663.466667pt;}
.ye3{bottom:664.000000pt;}
.y165{bottom:665.597333pt;}
.y114{bottom:665.600000pt;}
.y49{bottom:666.149333pt;}
.y19{bottom:667.200000pt;}
.y1a9{bottom:673.066667pt;}
.y18c{bottom:673.072000pt;}
.yc0{bottom:673.082667pt;}
.y1c3{bottom:673.093333pt;}
.y9c{bottom:673.098667pt;}
.y1fd{bottom:679.200000pt;}
.y75{bottom:680.026667pt;}
.ye2{bottom:682.933333pt;}
.y164{bottom:684.532000pt;}
.y113{bottom:684.533333pt;}
.y231{bottom:686.666667pt;}
.y48{bottom:686.677333pt;}
.y18{bottom:688.000000pt;}
.y18b{bottom:693.600000pt;}
.ybf{bottom:693.610667pt;}
.y1c2{bottom:693.621333pt;}
.y9b{bottom:693.626667pt;}
.y1fc{bottom:696.266667pt;}
.y74{bottom:700.554667pt;}
.ye1{bottom:701.866667pt;}
.y112{bottom:703.466667pt;}
.y47{bottom:707.477333pt;}
.y17{bottom:708.800000pt;}
.y1fb{bottom:713.600000pt;}
.y18a{bottom:714.400000pt;}
.ybe{bottom:714.410667pt;}
.y1c1{bottom:714.421333pt;}
.y9a{bottom:714.426667pt;}
.ye0{bottom:720.800000pt;}
.y73{bottom:721.354667pt;}
.y163{bottom:722.665333pt;}
.y111{bottom:722.666667pt;}
.y230{bottom:724.798667pt;}
.y16{bottom:727.733333pt;}
.y46{bottom:728.277333pt;}
.y1fa{bottom:730.933333pt;}
.y189{bottom:735.200000pt;}
.ybd{bottom:735.210667pt;}
.y1c0{bottom:735.221333pt;}
.y99{bottom:735.226667pt;}
.ydf{bottom:739.733333pt;}
.y110{bottom:741.600000pt;}
.y72{bottom:742.154667pt;}
.y15{bottom:742.400000pt;}
.y22f{bottom:743.733333pt;}
.y1f9{bottom:748.000000pt;}
.y45{bottom:748.805333pt;}
.y188{bottom:755.733333pt;}
.ybc{bottom:755.738667pt;}
.y1bf{bottom:755.749333pt;}
.y98{bottom:755.754667pt;}
.yde{bottom:758.666667pt;}
.y14{bottom:759.733333pt;}
.y13e{bottom:760.522667pt;}
.y10f{bottom:760.533333pt;}
.y22e{bottom:761.600000pt;}
.y71{bottom:762.682667pt;}
.y1f8{bottom:765.333333pt;}
.y44{bottom:769.605333pt;}
.y13{bottom:776.266667pt;}
.y187{bottom:776.533333pt;}
.ybb{bottom:776.538667pt;}
.y1be{bottom:776.549333pt;}
.y97{bottom:776.554667pt;}
.ydd{bottom:777.866667pt;}
.y13d{bottom:779.457333pt;}
.y10e{bottom:779.466667pt;}
.y1f7{bottom:782.666667pt;}
.y70{bottom:783.482667pt;}
.y43{bottom:790.405333pt;}
.y12{bottom:790.666667pt;}
.y22d{bottom:793.333333pt;}
.y186{bottom:797.333333pt;}
.yba{bottom:797.338667pt;}
.y1bd{bottom:797.349333pt;}
.y96{bottom:797.354667pt;}
.y13c{bottom:798.392000pt;}
.y10d{bottom:798.400000pt;}
.y1f6{bottom:800.000000pt;}
.y6f{bottom:804.010667pt;}
.y11{bottom:808.000000pt;}
.y22c{bottom:809.866667pt;}
.y42{bottom:810.933333pt;}
.y1f5{bottom:817.066667pt;}
.y10c{bottom:817.324000pt;}
.y13b{bottom:817.326667pt;}
.y162{bottom:817.333333pt;}
.yb9{bottom:817.866667pt;}
.y1bc{bottom:817.877333pt;}
.y95{bottom:817.882667pt;}
.y6e{bottom:824.810667pt;}
.y10{bottom:826.133333pt;}
.y41{bottom:830.133333pt;}
.y1f4{bottom:834.400000pt;}
.y10b{bottom:836.522667pt;}
.y13a{bottom:836.525333pt;}
.y161{bottom:836.533333pt;}
.y22b{bottom:837.866667pt;}
.y185{bottom:838.666667pt;}
.y1bb{bottom:838.677333pt;}
.y94{bottom:838.682667pt;}
.y40{bottom:845.605333pt;}
.y6d{bottom:845.610667pt;}
.yf{bottom:846.666667pt;}
.y1f3{bottom:851.733333pt;}
.y22a{bottom:855.200000pt;}
.y10a{bottom:855.457333pt;}
.y139{bottom:855.460000pt;}
.y160{bottom:855.466667pt;}
.y184{bottom:859.200000pt;}
.y1ba{bottom:859.205333pt;}
.y93{bottom:859.210667pt;}
.y3f{bottom:866.133333pt;}
.y6c{bottom:866.138667pt;}
.ye{bottom:867.994667pt;}
.y1f2{bottom:868.800000pt;}
.y229{bottom:872.266667pt;}
.y109{bottom:874.392000pt;}
.y138{bottom:874.394667pt;}
.y15f{bottom:874.400000pt;}
.y183{bottom:880.000000pt;}
.y1b9{bottom:880.005333pt;}
.y92{bottom:880.010667pt;}
.y3e{bottom:885.333333pt;}
.y1f1{bottom:886.133333pt;}
.y6b{bottom:886.938667pt;}
.y228{bottom:889.600000pt;}
.yd{bottom:892.261333pt;}
.y108{bottom:893.326667pt;}
.y137{bottom:893.329333pt;}
.y15e{bottom:893.333333pt;}
.y182{bottom:900.800000pt;}
.y1b8{bottom:900.805333pt;}
.y3d{bottom:900.810667pt;}
.y1f0{bottom:903.466667pt;}
.y227{bottom:906.933333pt;}
.y6a{bottom:907.738667pt;}
.y107{bottom:912.261333pt;}
.y136{bottom:912.264000pt;}
.y15d{bottom:912.266667pt;}
.yc{bottom:916.266667pt;}
.y1ef{bottom:920.533333pt;}
.y1b7{bottom:921.333333pt;}
.y3c{bottom:921.338667pt;}
.y226{bottom:924.000000pt;}
.y69{bottom:928.266667pt;}
.y106{bottom:931.196000pt;}
.y135{bottom:931.198667pt;}
.y15c{bottom:931.200000pt;}
.y1ee{bottom:937.866667pt;}
.yb{bottom:940.533333pt;}
.y225{bottom:941.333333pt;}
.y1b6{bottom:942.133333pt;}
.y3b{bottom:942.138667pt;}
.y68{bottom:949.066667pt;}
.y105{bottom:950.394667pt;}
.y134{bottom:950.397333pt;}
.y15b{bottom:950.400000pt;}
.y1ed{bottom:954.400000pt;}
.y224{bottom:958.666667pt;}
.y8{bottom:959.466667pt;}
.y1d1{bottom:962.933333pt;}
.y3a{bottom:962.938667pt;}
.y104{bottom:969.329333pt;}
.y133{bottom:969.332000pt;}
.y15a{bottom:969.333333pt;}
.y67{bottom:969.866667pt;}
.y223{bottom:975.733333pt;}
.y6{bottom:980.800000pt;}
.y39{bottom:983.466667pt;}
.y103{bottom:988.264000pt;}
.y159{bottom:988.266667pt;}
.y66{bottom:988.800000pt;}
.y222{bottom:993.066667pt;}
.y5{bottom:1003.733333pt;}
.y38{bottom:1004.266667pt;}
.y102{bottom:1007.198667pt;}
.y158{bottom:1007.200000pt;}
.y221{bottom:1010.400000pt;}
.y3{bottom:1017.600000pt;}
.y37{bottom:1025.066667pt;}
.y101{bottom:1026.133333pt;}
.y220{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y36{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.h5{height:20.801333pt;}
.h9{height:21.332000pt;}
.h4{height:27.840000pt;}
.hf{height:37.120000pt;}
.h3{height:39.040000pt;}
.hd{height:41.493333pt;}
.h7{height:42.133333pt;}
.h16{height:42.944000pt;}
.h2{height:43.040000pt;}
.he{height:46.400000pt;}
.h10{height:46.848000pt;}
.h11{height:49.792000pt;}
.h13{height:51.040000pt;}
.h8{height:51.648000pt;}
.h15{height:55.625000pt;}
.hc{height:55.680000pt;}
.hb{height:60.256000pt;}
.h12{height:61.187500pt;}
.h6{height:62.812500pt;}
.h14{height:63.114667pt;}
.ha{height:64.960000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.w2{width:425.066667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x3{left:70.933333pt;}
.x1{left:81.333333pt;}
.x11{left:85.066667pt;}
.x14{left:99.466667pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x12{left:128.533333pt;}
.x9{left:150.400000pt;}
.x15{left:153.866667pt;}
.x10{left:159.461333pt;}
.xc{left:175.466667pt;}
.xd{left:209.333333pt;}
.xb{left:224.800000pt;}
.xa{left:299.192000pt;}
.xe{left:332.533333pt;}
.x2{left:396.800000pt;}
.xf{left:399.466667pt;}
.x13{left:420.533333pt;}
.x5{left:496.000000pt;}
.x7{left:609.600000pt;}
}




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