
    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_44037e61f9bbba61336de995.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_8a1899762b34b3196ac450a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962000;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_f028598ead70f64a1930cf91.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.993000;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_77be95af824f3991647d3ce0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938000;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_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691406;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_2581fe0f209ce3bff171664e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_09b5586e44d87a6c68761de2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8ddd8a097f7986ef8ab5ac0c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.859863;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:ffb;src:url('chunks/assets/font_85f62c50bbdbc75c94247a3a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_db480f7bbd513f9857e06a6b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;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:ffd;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1fceab4fb2232620634266e1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.272949;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:fff;src:url('chunks/assets/font_2a5f888f1cb1296a8aed09b6.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;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:ff10;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_5fd1eeab6a2249700bcaf7b8.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.860840;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:ff12;src:url('chunks/assets/font_65a2397079f81b49d1b46e85.woff2')format("woff");}.ff12{font-family:ff12;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:-94.351686px;}
.v4{vertical-align:-82.800288px;}
.v8{vertical-align:-79.067598px;}
.v3{vertical-align:-38.879880px;}
.v5{vertical-align:-33.120120px;}
.v7{vertical-align:-27.359988px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:33.119880px;}
.v9{vertical-align:34.541382px;}
.v2{vertical-align:38.774778px;}
.va{vertical-align:69.142320px;}
.ls2{letter-spacing:-20.664000px;}
.ls3e{letter-spacing:-2.160000px;}
.ls53{letter-spacing:-1.553760px;}
.ls4b{letter-spacing:-1.440000px;}
.ls38{letter-spacing:-1.135440px;}
.ls43{letter-spacing:-1.008000px;}
.ls21{letter-spacing:-0.936000px;}
.ls28{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.758160px;}
.ls2a{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.673920px;}
.ls44{letter-spacing:-0.657360px;}
.ls3d{letter-spacing:-0.648000px;}
.ls25{letter-spacing:-0.504000px;}
.ls55{letter-spacing:-0.478080px;}
.ls26{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.421200px;}
.ls54{letter-spacing:-0.418320px;}
.ls35{letter-spacing:-0.358560px;}
.lsf{letter-spacing:-0.336960px;}
.ls13{letter-spacing:-0.288000px;}
.ls3a{letter-spacing:-0.239040px;}
.ls22{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.168480px;}
.ls24{letter-spacing:-0.144000px;}
.ls4c{letter-spacing:-0.119520px;}
.lsa{letter-spacing:-0.084240px;}
.ls29{letter-spacing:-0.072000px;}
.ls39{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.059760px;}
.ls1f{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.084240px;}
.ls37{letter-spacing:0.119520px;}
.ls12{letter-spacing:0.144000px;}
.ls30{letter-spacing:0.179280px;}
.ls5c{letter-spacing:0.179934px;}
.ls3{letter-spacing:0.216000px;}
.ls32{letter-spacing:0.239040px;}
.ls50{letter-spacing:0.259920px;}
.ls27{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.336960px;}
.ls31{letter-spacing:0.358560px;}
.ls57{letter-spacing:0.359916px;}
.ls4a{letter-spacing:0.359922px;}
.ls6a{letter-spacing:0.359964px;}
.ls7{letter-spacing:0.359982px;}
.ls6{letter-spacing:0.359988px;}
.ls2c{letter-spacing:0.360012px;}
.ls5{letter-spacing:0.360072px;}
.ls6d{letter-spacing:0.385920px;}
.ls33{letter-spacing:0.478080px;}
.ls1{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.504000px;}
.ls23{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.ls15{letter-spacing:0.864000px;}
.ls34{letter-spacing:0.896400px;}
.ls1d{letter-spacing:1.224000px;}
.ls45{letter-spacing:1.440000px;}
.ls1b{letter-spacing:2.160000px;}
.ls2d{letter-spacing:2.880000px;}
.ls60{letter-spacing:2.880024px;}
.ls63{letter-spacing:2.880030px;}
.ls2e{letter-spacing:3.600000px;}
.ls62{letter-spacing:3.600060px;}
.ls1a{letter-spacing:4.320000px;}
.ls19{letter-spacing:5.040000px;}
.ls5b{letter-spacing:5.199120px;}
.ls3f{letter-spacing:5.760000px;}
.ls42{letter-spacing:6.480000px;}
.ls18{letter-spacing:7.200000px;}
.ls5a{letter-spacing:7.350480px;}
.ls47{letter-spacing:7.920000px;}
.ls1c{letter-spacing:8.640000px;}
.ls59{letter-spacing:8.844480px;}
.ls4d{letter-spacing:9.360000px;}
.ls2f{letter-spacing:10.080000px;}
.ls1e{letter-spacing:10.800000px;}
.ls17{letter-spacing:11.520000px;}
.ls56{letter-spacing:12.960000px;}
.ls41{letter-spacing:13.680000px;}
.ls48{letter-spacing:15.120000px;}
.ls6e{letter-spacing:15.840000px;}
.ls6b{letter-spacing:17.280030px;}
.ls6c{letter-spacing:17.449920px;}
.ls46{letter-spacing:18.000000px;}
.ls49{letter-spacing:19.440000px;}
.ls3c{letter-spacing:20.160072px;}
.ls20{letter-spacing:20.880000px;}
.ls51{letter-spacing:24.680880px;}
.ls64{letter-spacing:25.200000px;}
.ls5f{letter-spacing:25.920000px;}
.ls6f{letter-spacing:27.360000px;}
.ls61{letter-spacing:28.080000px;}
.ls4e{letter-spacing:30.960000px;}
.ls40{letter-spacing:32.400000px;}
.ls66{letter-spacing:49.839882px;}
.ls2b{letter-spacing:51.984000px;}
.ls3b{letter-spacing:64.224000px;}
.ls8{letter-spacing:83.664000px;}
.ls52{letter-spacing:147.970842px;}
.ls58{letter-spacing:194.400000px;}
.ls5d{letter-spacing:222.665754px;}
.ls5e{letter-spacing:241.370634px;}
.ls69{letter-spacing:276.688776px;}
.ls68{letter-spacing:476.825082px;}
.ls65{letter-spacing:739.649526px;}
.ls67{letter-spacing:986.577882px;}
.ls9{letter-spacing:1126.800018px;}
.ls4f{letter-spacing:1139.204988px;}
.ls4{letter-spacing:1344.240018px;}
.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;}
}
.ws1{word-spacing:-48.000000px;}
.ws7{word-spacing:-21.396960px;}
.ws4{word-spacing:-21.060000px;}
.ws6{word-spacing:-20.723040px;}
.ws5{word-spacing:-20.386080px;}
.wsd{word-spacing:-18.864000px;}
.wsc{word-spacing:-18.792000px;}
.wse6{word-spacing:-18.720000px;}
.ws1b{word-spacing:-18.288000px;}
.ws4b{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.144000px;}
.wsbd{word-spacing:-18.072000px;}
.wsa{word-spacing:-18.000000px;}
.ws1d{word-spacing:-17.928000px;}
.ws19{word-spacing:-17.856000px;}
.ws18{word-spacing:-17.784000px;}
.ws17{word-spacing:-17.712000px;}
.ws1a{word-spacing:-17.496000px;}
.ws6e{word-spacing:-17.352000px;}
.ws1e{word-spacing:-17.280000px;}
.ws1c{word-spacing:-17.208000px;}
.wse2{word-spacing:-17.064000px;}
.ws3{word-spacing:-16.488000px;}
.ws52{word-spacing:-15.298560px;}
.wsa7{word-spacing:-15.179040px;}
.wsa4{word-spacing:-15.059520px;}
.wsa5{word-spacing:-14.999760px;}
.ws50{word-spacing:-14.940000px;}
.ws51{word-spacing:-14.880240px;}
.ws88{word-spacing:-14.820480px;}
.ws4f{word-spacing:-14.700960px;}
.ws4d{word-spacing:-14.581440px;}
.wsbe{word-spacing:-14.461920px;}
.ws89{word-spacing:-14.282640px;}
.ws4e{word-spacing:-13.804560px;}
.ws8{word-spacing:-13.500000px;}
.wsa6{word-spacing:-13.386240px;}
.wsdd{word-spacing:-12.445920px;}
.ws9{word-spacing:-12.060000px;}
.ws4c{word-spacing:-9.720000px;}
.ws6b{word-spacing:-0.896400px;}
.ws29{word-spacing:-0.720000px;}
.ws13{word-spacing:-0.589680px;}
.wsf{word-spacing:-0.505440px;}
.ws67{word-spacing:-0.358560px;}
.ws65{word-spacing:-0.288000px;}
.ws12{word-spacing:-0.252720px;}
.ws6a{word-spacing:-0.179280px;}
.ws15{word-spacing:-0.144000px;}
.wsba{word-spacing:-0.119520px;}
.ws21{word-spacing:-0.072000px;}
.ws69{word-spacing:-0.059760px;}
.ws0{word-spacing:0.000000px;}
.ws6c{word-spacing:0.059760px;}
.wse{word-spacing:0.084240px;}
.wsa8{word-spacing:0.119520px;}
.ws4a{word-spacing:0.144000px;}
.ws14{word-spacing:0.168480px;}
.wsa9{word-spacing:0.179280px;}
.ws25{word-spacing:0.216000px;}
.ws6d{word-spacing:0.239040px;}
.ws11{word-spacing:0.252720px;}
.ws16{word-spacing:0.288000px;}
.wsc0{word-spacing:0.358560px;}
.wsc1{word-spacing:0.418320px;}
.ws68{word-spacing:0.537840px;}
.ws9b{word-spacing:0.576000px;}
.ws10{word-spacing:0.589680px;}
.ws43{word-spacing:0.720000px;}
.wsc9{word-spacing:0.776880px;}
.wse4{word-spacing:0.792000px;}
.ws87{word-spacing:0.836640px;}
.ws20{word-spacing:0.936000px;}
.wse1{word-spacing:0.956160px;}
.ws3a{word-spacing:1.008000px;}
.wsc2{word-spacing:1.135440px;}
.ws39{word-spacing:1.224000px;}
.wsaa{word-spacing:1.254960px;}
.ws94{word-spacing:1.296000px;}
.ws5a{word-spacing:1.440000px;}
.ws74{word-spacing:1.728000px;}
.ws9c{word-spacing:1.944000px;}
.wsca{word-spacing:1.972080px;}
.ws62{word-spacing:2.016000px;}
.ws35{word-spacing:2.160000px;}
.wse5{word-spacing:2.304000px;}
.ws95{word-spacing:2.376000px;}
.ws7a{word-spacing:2.448000px;}
.ws58{word-spacing:2.664000px;}
.wsd0{word-spacing:2.689200px;}
.ws61{word-spacing:2.736000px;}
.ws2e{word-spacing:2.880000px;}
.ws59{word-spacing:3.096000px;}
.ws2f{word-spacing:3.168000px;}
.wscb{word-spacing:3.406320px;}
.ws85{word-spacing:3.456000px;}
.ws5f{word-spacing:3.600000px;}
.ws60{word-spacing:3.888000px;}
.wscc{word-spacing:4.123440px;}
.ws33{word-spacing:4.176000px;}
.ws32{word-spacing:4.320000px;}
.ws5b{word-spacing:4.536000px;}
.ws34{word-spacing:4.608000px;}
.wse3{word-spacing:4.824000px;}
.wsce{word-spacing:4.840560px;}
.ws8c{word-spacing:4.896000px;}
.ws31{word-spacing:5.040000px;}
.ws79{word-spacing:5.256000px;}
.ws30{word-spacing:5.328000px;}
.wsd6{word-spacing:5.544000px;}
.wscd{word-spacing:5.557680px;}
.ws8a{word-spacing:5.616000px;}
.wsb9{word-spacing:5.677200px;}
.ws7c{word-spacing:5.688000px;}
.ws3e{word-spacing:5.760000px;}
.wsb7{word-spacing:5.796720px;}
.wsb8{word-spacing:5.976000px;}
.ws3f{word-spacing:6.048000px;}
.ws9d{word-spacing:6.336000px;}
.ws6f{word-spacing:6.480000px;}
.ws7f{word-spacing:6.768000px;}
.ws53{word-spacing:7.056000px;}
.ws28{word-spacing:7.200000px;}
.wsc8{word-spacing:7.290720px;}
.ws5c{word-spacing:7.488000px;}
.wsbf{word-spacing:7.704000px;}
.wsaf{word-spacing:7.768800px;}
.wsbc{word-spacing:7.776000px;}
.wsae{word-spacing:7.888320px;}
.ws3d{word-spacing:7.920000px;}
.wsad{word-spacing:8.007840px;}
.wsd9{word-spacing:8.136000px;}
.wsb6{word-spacing:8.187120px;}
.ws75{word-spacing:8.208000px;}
.wsc7{word-spacing:8.485920px;}
.ws37{word-spacing:8.496000px;}
.ws2c{word-spacing:8.640000px;}
.wsd2{word-spacing:8.724960px;}
.wsd1{word-spacing:8.904240px;}
.ws36{word-spacing:8.928000px;}
.ws38{word-spacing:9.072000px;}
.wsac{word-spacing:9.203040px;}
.ws73{word-spacing:9.216000px;}
.ws2a{word-spacing:9.360000px;}
.wsbb{word-spacing:9.576000px;}
.ws2b{word-spacing:9.648000px;}
.wsd3{word-spacing:9.864000px;}
.wsab{word-spacing:9.920160px;}
.ws64{word-spacing:9.936000px;}
.ws63{word-spacing:10.080000px;}
.ws76{word-spacing:10.368000px;}
.ws3b{word-spacing:10.656000px;}
.ws54{word-spacing:10.800000px;}
.ws9a{word-spacing:11.016000px;}
.ws3c{word-spacing:11.088000px;}
.ws26{word-spacing:11.376000px;}
.ws24{word-spacing:11.520000px;}
.ws27{word-spacing:11.808000px;}
.ws86{word-spacing:12.240000px;}
.ws93{word-spacing:12.384000px;}
.ws92{word-spacing:12.744000px;}
.ws80{word-spacing:12.960000px;}
.ws81{word-spacing:13.248000px;}
.ws83{word-spacing:13.536000px;}
.wsa3{word-spacing:13.680000px;}
.ws96{word-spacing:13.896000px;}
.ws82{word-spacing:13.968000px;}
.ws78{word-spacing:14.400000px;}
.ws8d{word-spacing:14.976000px;}
.ws9f{word-spacing:15.048000px;}
.ws70{word-spacing:15.120000px;}
.ws9e{word-spacing:15.408000px;}
.ws97{word-spacing:15.840000px;}
.ws98{word-spacing:16.128000px;}
.ws8e{word-spacing:16.560000px;}
.wsb0{word-spacing:16.613280px;}
.wsb1{word-spacing:16.792560px;}
.ws8f{word-spacing:16.848000px;}
.wscf{word-spacing:17.091360px;}
.wsc3{word-spacing:17.280000px;}
.wsdf{word-spacing:17.330400px;}
.wse0{word-spacing:17.509680px;}
.wsc4{word-spacing:17.568000px;}
.ws7b{word-spacing:17.856000px;}
.ws71{word-spacing:18.000000px;}
.ws5d{word-spacing:18.720000px;}
.ws5e{word-spacing:19.008000px;}
.ws41{word-spacing:19.296000px;}
.ws40{word-spacing:19.440000px;}
.ws42{word-spacing:19.728000px;}
.ws66{word-spacing:20.160000px;}
.wsa2{word-spacing:20.448000px;}
.ws2{word-spacing:20.664000px;}
.wsc5{word-spacing:20.736000px;}
.ws49{word-spacing:20.880000px;}
.ws48{word-spacing:21.168000px;}
.wsc6{word-spacing:21.600000px;}
.ws72{word-spacing:22.320000px;}
.ws22{word-spacing:22.896000px;}
.ws1f{word-spacing:23.040000px;}
.wsb3{word-spacing:23.127120px;}
.ws23{word-spacing:23.256000px;}
.wsb5{word-spacing:23.306400px;}
.wsb4{word-spacing:23.664960px;}
.ws84{word-spacing:23.760000px;}
.ws8b{word-spacing:24.048000px;}
.wsb2{word-spacing:24.322320px;}
.ws2d{word-spacing:24.480000px;}
.wsde{word-spacing:25.200000px;}
.wsda{word-spacing:25.920000px;}
.wsdc{word-spacing:26.208000px;}
.wsd8{word-spacing:26.640000px;}
.wsdb{word-spacing:26.712000px;}
.wsd7{word-spacing:26.928000px;}
.wsd5{word-spacing:28.080000px;}
.wsd4{word-spacing:28.800000px;}
.ws44{word-spacing:29.088000px;}
.ws90{word-spacing:29.376000px;}
.ws91{word-spacing:29.520000px;}
.wsa0{word-spacing:30.960000px;}
.wsa1{word-spacing:31.248000px;}
.ws7d{word-spacing:32.976000px;}
.ws77{word-spacing:33.120000px;}
.wse7{word-spacing:33.408000px;}
.ws7e{word-spacing:34.128000px;}
.ws56{word-spacing:35.136000px;}
.ws57{word-spacing:35.280000px;}
.ws55{word-spacing:36.288000px;}
.ws99{word-spacing:40.320000px;}
.wseb{word-spacing:54.000000px;}
.wsea{word-spacing:54.216000px;}
.wsec{word-spacing:54.288000px;}
.ws45{word-spacing:60.408000px;}
.ws46{word-spacing:60.480000px;}
.ws47{word-spacing:60.768000px;}
.wse8{word-spacing:82.080000px;}
.wse9{word-spacing:82.944000px;}
._11{margin-left:-9.400320px;}
._6{margin-left:-4.717440px;}
._1{margin-left:-3.600000px;}
._0{margin-left:-1.980000px;}
._4{width:1.432080px;}
._2{width:2.502000px;}
._f{width:3.720240px;}
._d{width:4.971600px;}
._5{width:6.517680px;}
._c{width:8.791920px;}
._17{width:9.828000px;}
._b{width:11.052000px;}
._13{width:13.047840px;}
._16{width:14.215680px;}
._12{width:15.271920px;}
._1a{width:16.776000px;}
._1c{width:17.788320px;}
._1b{width:19.008000px;}
._e{width:20.019600px;}
._a{width:22.219920px;}
._9{width:24.027840px;}
._19{width:26.064000px;}
._18{width:30.715920px;}
._10{width:36.411840px;}
._1d{width:81.907920px;}
._15{width:158.400000px;}
._14{width:176.400000px;}
._8{width:846.000000px;}
._7{width:1324.800018px;}
._3{width:1783.692000px;}
.fc3{color:transparent;}
.fc2{color:rgb(182,34,52);}
.fc1{color:rgb(79,117,144);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fsf{font-size:48.240000px;}
.fse{font-size:54.000000px;}
.fs11{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fsd{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:84.240000px;}
.fs6{font-size:90.000000px;}
.fs10{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fsb{font-size:156.240000px;}
.fs5{font-size:180.000000px;}
.fs7{font-size:192.000000px;}
.fs8{font-size:738.000000px;}
.y0{bottom:0.000000px;}
.y161{bottom:3.420015px;}
.y163{bottom:3.599986px;}
.y1d4{bottom:3.599992px;}
.y16b{bottom:3.599997px;}
.y180{bottom:3.599998px;}
.y176{bottom:3.600003px;}
.y17b{bottom:3.600011px;}
.y65{bottom:3.752965px;}
.y1d2{bottom:3.779960px;}
.y18b{bottom:3.779967px;}
.y18e{bottom:3.779984px;}
.y1d6{bottom:3.779990px;}
.y170{bottom:3.779994px;}
.y165{bottom:3.779997px;}
.y160{bottom:3.780000px;}
.y1bd{bottom:3.780004px;}
.y16d{bottom:3.780006px;}
.y169{bottom:3.780016px;}
.y1d9{bottom:3.960022px;}
.y1d8{bottom:4.140015px;}
.y1dd{bottom:4.140017px;}
.y1dc{bottom:4.320009px;}
.y213{bottom:4.499970px;}
.y203{bottom:4.499975px;}
.y21c{bottom:4.499984px;}
.y228{bottom:4.499987px;}
.y22b{bottom:4.499994px;}
.y234{bottom:4.499997px;}
.y216{bottom:4.500000px;}
.y205{bottom:4.500003px;}
.y230{bottom:4.500006px;}
.y222{bottom:4.500020px;}
.y20c{bottom:4.500033px;}
.y1ba{bottom:4.679991px;}
.y1da{bottom:4.679993px;}
.y12a{bottom:4.680010px;}
.y12c{bottom:4.860007px;}
.y167{bottom:5.219987px;}
.y17a{bottom:5.219989px;}
.y17d{bottom:5.219994px;}
.y17f{bottom:5.220001px;}
.y175{bottom:5.220006px;}
.y177{bottom:6.659994px;}
.y172{bottom:6.660010px;}
.y1bf{bottom:7.739999px;}
.y1c3{bottom:7.740004px;}
.y45{bottom:57.600000px;}
.y5{bottom:66.525004px;}
.y44{bottom:78.300000px;}
.y4{bottom:97.125005px;}
.y64{bottom:98.198285px;}
.y43{bottom:99.000000px;}
.y1c5{bottom:120.600003px;}
.y29{bottom:128.834700px;}
.y182{bottom:131.399997px;}
.y25e{bottom:133.739997px;}
.y237{bottom:134.819996px;}
.y8a{bottom:136.259994px;}
.y1c4{bottom:137.700000px;}
.y20{bottom:139.264499px;}
.y1c1{bottom:143.465939px;}
.y116{bottom:146.699997px;}
.y154{bottom:149.220004px;}
.y181{bottom:151.560001px;}
.y2a{bottom:155.834700px;}
.y89{bottom:157.319995px;}
.y1c2{bottom:158.940000px;}
.yad{bottom:160.374423px;}
.y1a8{bottom:161.100003px;}
.y1c0{bottom:163.620003px;}
.y25d{bottom:164.879997px;}
.y236{bottom:165.779996px;}
.y17e{bottom:168.840000px;}
.y200{bottom:169.379997px;}
.y108{bottom:177.839987px;}
.y115{bottom:177.839997px;}
.ycd{bottom:177.839998px;}
.y88{bottom:178.020000px;}
.y1be{bottom:180.180000px;}
.y153{bottom:180.180004px;}
.y1a7{bottom:181.022749px;}
.y235{bottom:182.880000px;}
.yac{bottom:184.500000px;}
.y17c{bottom:189.000000px;}
.y1ff{bottom:190.080001px;}
.yab{bottom:194.933702px;}
.ye3{bottom:195.660003px;}
.y25c{bottom:195.839997px;}
.y17{bottom:196.933500px;}
.y1a6{bottom:198.308329px;}
.y87{bottom:198.719998px;}
.y1bc{bottom:201.420000px;}
.y1fe{bottom:201.777306px;}
.y1bb{bottom:205.200005px;}
.y233{bottom:205.380000px;}
.y107{bottom:208.799987px;}
.y114{bottom:208.799991px;}
.ycc{bottom:208.799998px;}
.y179{bottom:209.340000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y152{bottom:211.320008px;}
.y1a5{bottom:215.593909px;}
.ye2{bottom:216.360007px;}
.y26{bottom:218.834700px;}
.yaa{bottom:218.879997px;}
.y86{bottom:219.419998px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y1b9{bottom:223.920000px;}
.y25b{bottom:226.980011px;}
.y1fd{bottom:228.059989px;}
.y232{bottom:228.780000px;}
.y40{bottom:229.170000px;}
.ya9{bottom:229.303263px;}
.y178{bottom:229.500000px;}
.y151{bottom:232.200005px;}
.y1a4{bottom:232.700209px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y106{bottom:239.939987px;}
.y113{bottom:239.939991px;}
.ycb{bottom:239.939998px;}
.yfa{bottom:239.940007px;}
.y85{bottom:240.120003px;}
.y1fc{bottom:240.480011px;}
.ya8{bottom:246.588843px;}
.y1a3{bottom:249.985789px;}
.y1b8{bottom:250.379997px;}
.y174{bottom:250.560000px;}
.y231{bottom:251.280000px;}
.y150{bottom:252.900009px;}
.y25a{bottom:257.940011px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y84{bottom:260.280006px;}
.y1fb{bottom:261.179992px;}
.ya7{bottom:263.874423px;}
.y3f{bottom:264.630000px;}
.y1a2{bottom:267.271369px;}
.y25{bottom:268.334700px;}
.y173{bottom:270.720000px;}
.ye1{bottom:270.899991px;}
.yca{bottom:270.899998px;}
.yf9{bottom:270.900007px;}
.y1b7{bottom:271.080001px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y22f{bottom:273.780002px;}
.y1a1{bottom:284.556949px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.ya6{bottom:288.000000px;}
.y259{bottom:289.080002px;}
.y83{bottom:291.599982px;}
.y14f{bottom:293.366891px;}
.y1ec{bottom:296.459981px;}
.y22e{bottom:297.000002px;}
.ya5{bottom:299.160003px;}
.y3e{bottom:299.955000px;}
.y1a0{bottom:301.842529px;}
.ye0{bottom:301.859991px;}
.yc9{bottom:301.859998px;}
.y1b6{bottom:301.860007px;}
.y171{bottom:305.280000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y14e{bottom:313.700210px;}
.y24{bottom:317.834700px;}
.y19f{bottom:319.128109px;}
.y22d{bottom:319.500002px;}
.ya4{bottom:319.860007px;}
.y258{bottom:320.040002px;}
.y82{bottom:322.559982px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y16f{bottom:325.440000px;}
.y1eb{bottom:327.419981px;}
.y14d{bottom:330.985790px;}
.ydf{bottom:332.999991px;}
.yc8{bottom:332.999999px;}
.y1b5{bottom:333.000003px;}
.y3d{bottom:335.415000px;}
.y19e{bottom:336.234409px;}
.y16e{bottom:342.720000px;}
.y22c{bottom:342.720002px;}
.ye{bottom:348.133500px;}
.y14c{bottom:348.271370px;}
.y257{bottom:351.179992px;}
.y81{bottom:353.699982px;}
.y1ea{bottom:358.379980px;}
.y16c{bottom:360.000000px;}
.y19d{bottom:360.360007px;}
.yde{bottom:363.959991px;}
.yc7{bottom:363.959998px;}
.y1b4{bottom:363.960003px;}
.y22a{bottom:365.220002px;}
.y14b{bottom:365.556950px;}
.y23{bottom:367.334700px;}
.y3c{bottom:370.695000px;}
.y19c{bottom:371.519989px;}
.y16a{bottom:377.280000px;}
.y256{bottom:382.139992px;}
.y14a{bottom:382.663250px;}
.y80{bottom:384.659982px;}
.yd{bottom:386.785499px;}
.y229{bottom:388.440002px;}
.y1e9{bottom:389.519980px;}
.y19b{bottom:392.220016px;}
.ydd{bottom:395.099991px;}
.yc6{bottom:395.100003px;}
.y168{bottom:397.440000px;}
.ya3{bottom:398.520003px;}
.y149{bottom:399.948830px;}
.y3b{bottom:406.155000px;}
.yc{bottom:408.044999px;}
.y227{bottom:410.940000px;}
.y255{bottom:413.279997px;}
.y166{bottom:414.720000px;}
.y7f{bottom:415.799982px;}
.y148{bottom:417.234409px;}
.y1e8{bottom:420.479981px;}
.yc5{bottom:426.060003px;}
.yf8{bottom:426.060013px;}
.ydc{bottom:426.060018px;}
.y112{bottom:426.060022px;}
.y264{bottom:426.240006px;}
.y19a{bottom:427.319998px;}
.ya2{bottom:429.660003px;}
.y226{bottom:434.160000px;}
.y147{bottom:434.519990px;}
.y164{bottom:435.060000px;}
.y3a{bottom:441.435000px;}
.y28{bottom:443.834700px;}
.y254{bottom:444.239997px;}
.y7e{bottom:446.759982px;}
.ya1{bottom:450.179993px;}
.y1fa{bottom:451.259994px;}
.y1e7{bottom:451.619980px;}
.y145{bottom:451.800000px;}
.y63{bottom:451.800018px;}
.y162{bottom:452.340000px;}
.y225{bottom:456.660000px;}
.y124{bottom:457.019990px;}
.yc4{bottom:457.200003px;}
.yf7{bottom:457.200013px;}
.ydb{bottom:457.200018px;}
.y111{bottom:457.200022px;}
.y199{bottom:458.459998px;}
.y146{bottom:463.320007px;}
.ya0{bottom:470.880019px;}
.y62{bottom:472.500000px;}
.y15f{bottom:473.220000px;}
.y1f9{bottom:475.019990px;}
.y253{bottom:475.379997px;}
.y144{bottom:476.460000px;}
.y39{bottom:476.895000px;}
.y7d{bottom:477.899982px;}
.y224{bottom:479.160000px;}
.y1e6{bottom:482.579998px;}
.y123{bottom:488.160003px;}
.yf6{bottom:488.160013px;}
.yc3{bottom:488.160018px;}
.y110{bottom:488.160023px;}
.y198{bottom:489.419998px;}
.y61{bottom:493.560013px;}
.y1f8{bottom:498.246140px;}
.y15e{bottom:498.419998px;}
.y143{bottom:501.300000px;}
.y223{bottom:501.660000px;}
.y9f{bottom:502.019990px;}
.y252{bottom:506.339997px;}
.y7c{bottom:508.859982px;}
.y38{bottom:512.175000px;}
.y1e5{bottom:513.719998px;}
.y60{bottom:514.259994px;}
.y1b3{bottom:519.300000px;}
.yda{bottom:519.300009px;}
.yf5{bottom:519.300013px;}
.yc2{bottom:519.300018px;}
.y10f{bottom:519.300023px;}
.y15d{bottom:519.480010px;}
.y197{bottom:520.560001px;}
.yb{bottom:520.864502px;}
.y1f7{bottom:522.179993px;}
.y221{bottom:524.880000px;}
.y142{bottom:525.960000px;}
.y9e{bottom:533.160003px;}
.y5f{bottom:534.960023px;}
.y251{bottom:537.479986px;}
.ya{bottom:538.864499px;}
.y7b{bottom:539.999982px;}
.y1e4{bottom:544.679998px;}
.y1f6{bottom:545.592591px;}
.y220{bottom:548.280000px;}
.yc1{bottom:550.259994px;}
.y1b2{bottom:550.260000px;}
.yd9{bottom:550.260009px;}
.yf4{bottom:550.260014px;}
.y10e{bottom:550.260022px;}
.y141{bottom:550.800000px;}
.y196{bottom:551.520001px;}
.y5e{bottom:555.660003px;}
.y9{bottom:556.864499px;}
.y37{bottom:557.565000px;}
.y9d{bottom:564.119974px;}
.y250{bottom:568.439987px;}
.y1f5{bottom:569.526489px;}
.y21f{bottom:570.780000px;}
.y7a{bottom:570.959982px;}
.y140{bottom:575.460000px;}
.y1e3{bottom:575.819998px;}
.y5d{bottom:576.359985px;}
.y1b1{bottom:581.400000px;}
.y15c{bottom:581.400003px;}
.yc0{bottom:581.400009px;}
.yf3{bottom:581.400014px;}
.y10d{bottom:581.400022px;}
.y195{bottom:582.660001px;}
.y36{bottom:583.125000px;}
.y1f4{bottom:592.743255px;}
.y21e{bottom:593.280000px;}
.y9c{bottom:595.259974px;}
.y5c{bottom:597.060013px;}
.y24f{bottom:599.580015px;}
.y13e{bottom:600.300000px;}
.y79{bottom:602.099982px;}
.y1e2{bottom:606.779998px;}
.y13f{bottom:611.820007px;}
.ybf{bottom:612.359985px;}
.yd8{bottom:612.360000px;}
.y15b{bottom:612.360003px;}
.yf2{bottom:612.360013px;}
.y10c{bottom:612.360023px;}
.y194{bottom:613.620001px;}
.y21d{bottom:615.780000px;}
.y1f3{bottom:615.960023px;}
.y35{bottom:621.465000px;}
.y13d{bottom:624.960000px;}
.y9b{bottom:626.219975px;}
.y24e{bottom:630.540015px;}
.y78{bottom:633.059982px;}
.y1e1{bottom:637.919989px;}
.y21b{bottom:638.280000px;}
.y5b{bottom:638.460023px;}
.y1f2{bottom:639.179993px;}
.ybe{bottom:643.500000px;}
.y15a{bottom:643.500003px;}
.yf1{bottom:643.500014px;}
.y10b{bottom:643.500023px;}
.y193{bottom:644.580001px;}
.y8{bottom:645.510000px;}
.y13c{bottom:649.800000px;}
.y9a{bottom:657.179974px;}
.y5a{bottom:659.159985px;}
.y21a{bottom:661.500000px;}
.y24d{bottom:661.680015px;}
.y1f1{bottom:662.939987px;}
.y77{bottom:664.199982px;}
.y7{bottom:666.771000px;}
.y1e0{bottom:668.879990px;}
.y1b0{bottom:674.459982px;}
.y263{bottom:674.459991px;}
.yd7{bottom:674.460000px;}
.y159{bottom:674.460003px;}
.yf0{bottom:674.460013px;}
.ybd{bottom:674.460023px;}
.y192{bottom:675.720016px;}
.y219{bottom:684.000000px;}
.y76{bottom:684.720016px;}
.y1f0{bottom:685.080001px;}
.y59{bottom:688.140015px;}
.y99{bottom:688.319974px;}
.y24c{bottom:692.640015px;}
.y191{bottom:696.599991px;}
.y13b{bottom:699.300000px;}
.y1df{bottom:700.019990px;}
.y58{bottom:700.199982px;}
.y75{bottom:705.419999px;}
.y122{bottom:705.599967px;}
.y1af{bottom:705.599982px;}
.ybc{bottom:705.599991px;}
.yd6{bottom:705.600000px;}
.y158{bottom:705.600003px;}
.yef{bottom:705.600014px;}
.y10a{bottom:705.600040px;}
.y1ef{bottom:705.779984px;}
.y218{bottom:706.500000px;}
.y190{bottom:717.300018px;}
.y98{bottom:719.279974px;}
.y24b{bottom:723.780006px;}
.y13a{bottom:723.960000px;}
.y74{bottom:726.119980px;}
.y6{bottom:726.298500px;}
.y217{bottom:729.000000px;}
.y57{bottom:729.539978px;}
.y1de{bottom:730.980010px;}
.y18f{bottom:734.220000px;}
.y121{bottom:736.559967px;}
.y1ae{bottom:736.559982px;}
.yd5{bottom:736.560000px;}
.y157{bottom:736.560003px;}
.ybb{bottom:736.560013px;}
.y109{bottom:736.560040px;}
.y2d{bottom:741.525000px;}
.y56{bottom:741.960023px;}
.y1db{bottom:748.080000px;}
.y139{bottom:748.800000px;}
.y97{bottom:750.419975px;}
.y215{bottom:751.499998px;}
.y18d{bottom:751.500000px;}
.y3{bottom:752.599495px;}
.y24a{bottom:754.740006px;}
.y73{bottom:757.259964px;}
.y120{bottom:767.699967px;}
.y1ad{bottom:767.699982px;}
.yd4{bottom:767.700000px;}
.y156{bottom:767.700003px;}
.y1ee{bottom:767.700018px;}
.y105{bottom:767.700022px;}
.yee{bottom:767.700036px;}
.yba{bottom:767.700040px;}
.y18c{bottom:768.780000px;}
.y1d7{bottom:769.500000px;}
.y55{bottom:770.940033px;}
.y2c{bottom:772.485000px;}
.y137{bottom:773.460000px;}
.y214{bottom:774.719998px;}
.y96{bottom:781.380026px;}
.y54{bottom:783.359985px;}
.y138{bottom:785.160003px;}
.y249{bottom:785.880010px;}
.y18a{bottom:786.780000px;}
.y72{bottom:788.399964px;}
.y1d5{bottom:790.740000px;}
.y212{bottom:797.220000px;}
.y136{bottom:798.300000px;}
.y1ac{bottom:798.659964px;}
.y11f{bottom:798.659967px;}
.yd3{bottom:798.660000px;}
.y155{bottom:798.660003px;}
.y1ed{bottom:798.660018px;}
.y104{bottom:798.660022px;}
.yed{bottom:798.660036px;}
.yb9{bottom:798.660040px;}
.y2b{bottom:803.445000px;}
.y189{bottom:808.920044px;}
.y1d3{bottom:811.080000px;}
.y53{bottom:812.339997px;}
.y95{bottom:812.520025px;}
.y248{bottom:816.840010px;}
.y71{bottom:819.359964px;}
.y211{bottom:820.440000px;}
.y135{bottom:822.960000px;}
.y1ab{bottom:829.799964px;}
.y11e{bottom:829.799967px;}
.y262{bottom:829.799985px;}
.yd2{bottom:829.800000px;}
.y103{bottom:829.800022px;}
.yec{bottom:829.800036px;}
.yb8{bottom:829.800040px;}
.y188{bottom:829.980010px;}
.y1d1{bottom:831.960000px;}
.y210{bottom:842.940000px;}
.y94{bottom:843.480026px;}
.y34{bottom:844.350000px;}
.y1ce{bottom:844.369755px;}
.y52{bottom:845.100036px;}
.y134{bottom:847.800000px;}
.y247{bottom:847.980010px;}
.y70{bottom:850.499964px;}
.y1d0{bottom:853.014438px;}
.y1cd{bottom:853.019990px;}
.y1aa{bottom:860.759964px;}
.y11d{bottom:860.759967px;}
.y261{bottom:860.759985px;}
.yd1{bottom:860.760000px;}
.y102{bottom:860.760022px;}
.yeb{bottom:860.760036px;}
.yb7{bottom:860.760040px;}
.y20f{bottom:865.440000px;}
.y51{bottom:865.800018px;}
.y22{bottom:866.834700px;}
.y1cf{bottom:870.300018px;}
.y133{bottom:872.460000px;}
.y93{bottom:874.619957px;}
.y246{bottom:878.939957px;}
.y2{bottom:879.369000px;}
.y23d{bottom:881.280030px;}
.y6f{bottom:881.459964px;}
.y50{bottom:887.048310px;}
.y20e{bottom:887.940000px;}
.y1a9{bottom:891.899964px;}
.y11c{bottom:891.899967px;}
.yb6{bottom:891.899982px;}
.y260{bottom:891.899985px;}
.yd0{bottom:891.900000px;}
.y187{bottom:891.900018px;}
.y101{bottom:891.900022px;}
.yea{bottom:891.900036px;}
.y33{bottom:892.050000px;}
.y1cc{bottom:892.079957px;}
.y131{bottom:897.300000px;}
.y23c{bottom:901.980010px;}
.y21{bottom:902.834700px;}
.y92{bottom:905.579957px;}
.y132{bottom:908.820007px;}
.y245{bottom:910.079957px;}
.y20d{bottom:910.440000px;}
.y4f{bottom:911.526315px;}
.y6e{bottom:912.599964px;}
.y1cb{bottom:912.780030px;}
.y130{bottom:921.960000px;}
.y11b{bottom:922.859967px;}
.yb5{bottom:922.859982px;}
.y25f{bottom:922.859985px;}
.ycf{bottom:922.860000px;}
.y186{bottom:922.860018px;}
.y100{bottom:922.860023px;}
.ye9{bottom:922.860036px;}
.y23b{bottom:923.039960px;}
.y20b{bottom:932.940000px;}
.y4e{bottom:935.666290px;}
.y91{bottom:936.720030px;}
.y32{bottom:939.570000px;}
.y244{bottom:941.040036px;}
.y6d{bottom:943.559964px;}
.y1ca{bottom:943.559967px;}
.y23a{bottom:943.739960px;}
.y12f{bottom:946.800000px;}
.y11a{bottom:953.999967px;}
.yb4{bottom:953.999982px;}
.yce{bottom:954.000000px;}
.y185{bottom:954.000018px;}
.yff{bottom:954.000022px;}
.ye8{bottom:954.000036px;}
.y20a{bottom:956.160000px;}
.y4d{bottom:959.611542px;}
.y1{bottom:966.726000px;}
.y90{bottom:967.680030px;}
.y12e{bottom:971.460000px;}
.y243{bottom:972.000036px;}
.y6c{bottom:974.699964px;}
.y239{bottom:974.700003px;}
.y1c9{bottom:974.700040px;}
.y209{bottom:978.660000px;}
.y4c{bottom:983.725158px;}
.y119{bottom:984.959967px;}
.yb3{bottom:984.959982px;}
.y184{bottom:984.960018px;}
.yfe{bottom:984.960022px;}
.ye7{bottom:984.960036px;}
.y31{bottom:987.270000px;}
.y12d{bottom:996.300000px;}
.y8f{bottom:998.820030px;}
.y208{bottom:1001.160000px;}
.y242{bottom:1003.140036px;}
.y6b{bottom:1005.659964px;}
.y238{bottom:1005.660003px;}
.y1c8{bottom:1005.660040px;}
.y4b{bottom:1007.838867px;}
.y27{bottom:1010.834700px;}
.y118{bottom:1016.099967px;}
.yb2{bottom:1016.099982px;}
.y183{bottom:1016.100018px;}
.ye6{bottom:1016.100036px;}
.y12b{bottom:1020.960000px;}
.y207{bottom:1023.660000px;}
.y8e{bottom:1029.780030px;}
.y4a{bottom:1031.952576px;}
.y241{bottom:1034.100036px;}
.y30{bottom:1034.790000px;}
.yfd{bottom:1036.620025px;}
.y6a{bottom:1036.799964px;}
.y1c7{bottom:1036.800040px;}
.y129{bottom:1045.800000px;}
.y206{bottom:1046.160000px;}
.y117{bottom:1047.059967px;}
.yb1{bottom:1047.059982px;}
.ye5{bottom:1047.060018px;}
.y49{bottom:1056.066283px;}
.y8d{bottom:1060.919975px;}
.y240{bottom:1065.239982px;}
.y69{bottom:1067.759964px;}
.y1c6{bottom:1067.760040px;}
.y204{bottom:1068.660000px;}
.y128{bottom:1074.420044px;}
.yfc{bottom:1078.019990px;}
.yb0{bottom:1078.199982px;}
.ye4{bottom:1078.200018px;}
.y2f{bottom:1082.490000px;}
.y8c{bottom:1091.879975px;}
.y202{bottom:1091.880000px;}
.y23f{bottom:1096.199982px;}
.y127{bottom:1098.719970px;}
.y68{bottom:1098.899964px;}
.y48{bottom:1103.767914px;}
.yfb{bottom:1109.160003px;}
.yaf{bottom:1109.160018px;}
.y8b{bottom:1114.199982px;}
.y67{bottom:1119.420044px;}
.y126{bottom:1119.780010px;}
.y201{bottom:1119.780030px;}
.y23e{bottom:1121.940033px;}
.y47{bottom:1122.662842px;}
.y2e{bottom:1130.040000px;}
.y66{bottom:1140.120025px;}
.yae{bottom:1140.300018px;}
.y125{bottom:1140.480010px;}
.y46{bottom:1141.739960px;}
.y42{bottom:1172.879957px;}
.y41{bottom:1193.579957px;}
.h1a{height:13.877998px;}
.h2f{height:17.280000px;}
.h2e{height:20.160000px;}
.h31{height:20.161500px;}
.h2d{height:20.340000px;}
.h33{height:21.240000px;}
.h35{height:21.241500px;}
.h3a{height:21.420000px;}
.h34{height:21.780000px;}
.h3e{height:22.498500px;}
.h3d{height:22.500000px;}
.h29{height:23.940000px;}
.h2b{height:23.941500px;}
.h28{height:24.118500px;}
.h2a{height:24.120000px;}
.h7{height:32.130000px;}
.hd{height:34.752000px;}
.h21{height:38.158594px;}
.h2c{height:39.183750px;}
.h39{height:39.830273px;}
.h6{height:45.900000px;}
.h19{height:47.344922px;}
.he{height:47.784000px;}
.h27{height:47.878500px;}
.h3{height:48.195000px;}
.h10{height:49.113281px;}
.h1b{height:54.791016px;}
.h38{height:54.898500px;}
.h2{height:55.080000px;}
.h12{height:57.585938px;}
.h30{height:58.621992px;}
.h22{height:58.651172px;}
.h26{height:60.226875px;}
.h3f{height:62.327813px;}
.h14{height:65.010937px;}
.ha{height:66.330000px;}
.h25{height:70.628906px;}
.h13{height:70.664062px;}
.h3c{height:70.674863px;}
.h18{height:72.562500px;}
.h1c{height:75.093750px;}
.h5{height:78.030000px;}
.h3b{height:80.464688px;}
.h1e{height:80.464802px;}
.h32{height:80.464820px;}
.h20{height:80.464832px;}
.h23{height:80.464892px;}
.h24{height:80.464928px;}
.h1f{height:80.464952px;}
.h15{height:84.898125px;}
.h16{height:91.772825px;}
.h17{height:91.852625px;}
.h36{height:93.192554px;}
.h1d{height:93.936445px;}
.h11{height:106.804688px;}
.h4{height:119.055004px;}
.h37{height:127.793492px;}
.h9{height:132.660000px;}
.hb{height:141.504000px;}
.hc{height:545.382000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.hf{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:40.140000px;}
.w1e{width:41.761500px;}
.w1d{width:42.840000px;}
.w1f{width:45.180000px;}
.w16{width:45.360000px;}
.w17{width:45.541500px;}
.w20{width:45.718500px;}
.w15{width:45.900000px;}
.w19{width:47.700000px;}
.w18{width:48.420000px;}
.w1c{width:51.660000px;}
.wa{width:77.580000px;}
.wb{width:77.760000px;}
.wd{width:99.360000px;}
.we{width:99.540000px;}
.w1b{width:102.060000px;}
.w12{width:102.420000px;}
.w10{width:123.120000px;}
.w6{width:134.243580px;}
.w14{width:136.801500px;}
.w13{width:136.978500px;}
.wf{width:139.320000px;}
.w11{width:163.080000px;}
.wc{width:180.900000px;}
.w9{width:199.260000px;}
.w7{width:234.720000px;}
.w8{width:234.900000px;}
.w22{width:321.120000px;}
.w21{width:325.800000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w5{width:892.979987px;}
.w4{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.559995px;}
.x4d{left:9.179984px;}
.x24{left:10.980003px;}
.x20{left:12.780000px;}
.x29{left:14.399978px;}
.x3d{left:16.559994px;}
.x2b{left:18.179985px;}
.x22{left:19.979992px;}
.x28{left:21.960015px;}
.x57{left:23.939997px;}
.x2a{left:25.739998px;}
.x27{left:27.539994px;}
.x46{left:32.040008px;}
.x2f{left:35.100008px;}
.x2e{left:38.879991px;}
.x48{left:42.659990px;}
.x41{left:45.180009px;}
.x58{left:51.120016px;}
.x3f{left:52.560003px;}
.x40{left:57.600013px;}
.x37{left:61.199995px;}
.x3e{left:68.760007px;}
.x1b{left:80.459992px;}
.x5{left:81.850350px;}
.x7{left:83.622000px;}
.x6{left:85.039350px;}
.x1e{left:86.220019px;}
.x3c{left:91.260007px;}
.x2d{left:98.639997px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x35{left:111.960005px;}
.x19{left:114.299995px;}
.x5d{left:116.819995px;}
.xa{left:118.074600px;}
.x33{left:119.519994px;}
.xd{left:128.351876px;}
.x15{left:133.200005px;}
.x5f{left:148.680004px;}
.x31{left:151.559996px;}
.x52{left:153.000000px;}
.x11{left:160.200005px;}
.x18{left:170.100005px;}
.x36{left:172.620008px;}
.x49{left:179.094785px;}
.x53{left:198.360000px;}
.x2c{left:200.339997px;}
.x4{left:203.484001px;}
.x34{left:213.660003px;}
.x32{left:221.400009px;}
.x54{left:243.900000px;}
.x42{left:245.520000px;}
.x30{left:253.440011px;}
.xb{left:257.597100px;}
.x45{left:269.280000px;}
.xf{left:286.919998px;}
.x55{left:289.980000px;}
.xe{left:295.192454px;}
.x1a{left:306.720000px;}
.x4a{left:316.079643px;}
.x10{left:318.780007px;}
.x56{left:338.400000px;}
.x14{left:374.400009px;}
.x12{left:384.119980px;}
.x21{left:385.200000px;}
.x38{left:386.460000px;}
.x13{left:412.919998px;}
.x5e{left:423.900000px;}
.x4c{left:426.600000px;}
.x47{left:432.360000px;}
.x4b{left:435.779807px;}
.x16{left:443.699982px;}
.xc{left:446.421066px;}
.x3{left:454.959000px;}
.x23{left:463.680000px;}
.x39{left:485.820000px;}
.x43{left:524.160000px;}
.x4f{left:529.020000px;}
.x8{left:536.342700px;}
.x1d{left:542.160000px;}
.x4e{left:566.640015px;}
.x59{left:581.040000px;}
.x3a{left:585.360000px;}
.x25{left:620.640000px;}
.x5a{left:623.880000px;}
.x1c{left:647.460023px;}
.x44{left:663.480000px;}
.x51{left:666.000000px;}
.x3b{left:684.720000px;}
.x26{left:699.300000px;}
.x50{left:704.160003px;}
.x5b{left:711.540000px;}
.x5c{left:757.260000px;}
.x17{left:768.600036px;}
.x9{left:777.600036px;}
@media print{
.v1{vertical-align:-83.868165pt;}
.v4{vertical-align:-73.600256pt;}
.v8{vertical-align:-70.282309pt;}
.v3{vertical-align:-34.559893pt;}
.v5{vertical-align:-29.440107pt;}
.v7{vertical-align:-24.319989pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:29.439893pt;}
.v9{vertical-align:30.703451pt;}
.v2{vertical-align:34.466469pt;}
.va{vertical-align:61.459840pt;}
.ls2{letter-spacing:-18.368000pt;}
.ls3e{letter-spacing:-1.920000pt;}
.ls53{letter-spacing:-1.381120pt;}
.ls4b{letter-spacing:-1.280000pt;}
.ls38{letter-spacing:-1.009280pt;}
.ls43{letter-spacing:-0.896000pt;}
.ls21{letter-spacing:-0.832000pt;}
.ls28{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.673920pt;}
.ls2a{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.599040pt;}
.ls44{letter-spacing:-0.584320pt;}
.ls3d{letter-spacing:-0.576000pt;}
.ls25{letter-spacing:-0.448000pt;}
.ls55{letter-spacing:-0.424960pt;}
.ls26{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.374400pt;}
.ls54{letter-spacing:-0.371840pt;}
.ls35{letter-spacing:-0.318720pt;}
.lsf{letter-spacing:-0.299520pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls3a{letter-spacing:-0.212480pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.149760pt;}
.ls24{letter-spacing:-0.128000pt;}
.ls4c{letter-spacing:-0.106240pt;}
.lsa{letter-spacing:-0.074880pt;}
.ls29{letter-spacing:-0.064000pt;}
.ls39{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.053120pt;}
.ls1f{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.074880pt;}
.ls37{letter-spacing:0.106240pt;}
.ls12{letter-spacing:0.128000pt;}
.ls30{letter-spacing:0.159360pt;}
.ls5c{letter-spacing:0.159941pt;}
.ls3{letter-spacing:0.192000pt;}
.ls32{letter-spacing:0.212480pt;}
.ls50{letter-spacing:0.231040pt;}
.ls27{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.299520pt;}
.ls31{letter-spacing:0.318720pt;}
.ls57{letter-spacing:0.319925pt;}
.ls4a{letter-spacing:0.319931pt;}
.ls6a{letter-spacing:0.319968pt;}
.ls7{letter-spacing:0.319984pt;}
.ls6{letter-spacing:0.319989pt;}
.ls2c{letter-spacing:0.320011pt;}
.ls5{letter-spacing:0.320064pt;}
.ls6d{letter-spacing:0.343040pt;}
.ls33{letter-spacing:0.424960pt;}
.ls1{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.448000pt;}
.ls23{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.ls15{letter-spacing:0.768000pt;}
.ls34{letter-spacing:0.796800pt;}
.ls1d{letter-spacing:1.088000pt;}
.ls45{letter-spacing:1.280000pt;}
.ls1b{letter-spacing:1.920000pt;}
.ls2d{letter-spacing:2.560000pt;}
.ls60{letter-spacing:2.560021pt;}
.ls63{letter-spacing:2.560027pt;}
.ls2e{letter-spacing:3.200000pt;}
.ls62{letter-spacing:3.200053pt;}
.ls1a{letter-spacing:3.840000pt;}
.ls19{letter-spacing:4.480000pt;}
.ls5b{letter-spacing:4.621440pt;}
.ls3f{letter-spacing:5.120000pt;}
.ls42{letter-spacing:5.760000pt;}
.ls18{letter-spacing:6.400000pt;}
.ls5a{letter-spacing:6.533760pt;}
.ls47{letter-spacing:7.040000pt;}
.ls1c{letter-spacing:7.680000pt;}
.ls59{letter-spacing:7.861760pt;}
.ls4d{letter-spacing:8.320000pt;}
.ls2f{letter-spacing:8.960000pt;}
.ls1e{letter-spacing:9.600000pt;}
.ls17{letter-spacing:10.240000pt;}
.ls56{letter-spacing:11.520000pt;}
.ls41{letter-spacing:12.160000pt;}
.ls48{letter-spacing:13.440000pt;}
.ls6e{letter-spacing:14.080000pt;}
.ls6b{letter-spacing:15.360027pt;}
.ls6c{letter-spacing:15.511040pt;}
.ls46{letter-spacing:16.000000pt;}
.ls49{letter-spacing:17.280000pt;}
.ls3c{letter-spacing:17.920064pt;}
.ls20{letter-spacing:18.560000pt;}
.ls51{letter-spacing:21.938560pt;}
.ls64{letter-spacing:22.400000pt;}
.ls5f{letter-spacing:23.040000pt;}
.ls6f{letter-spacing:24.320000pt;}
.ls61{letter-spacing:24.960000pt;}
.ls4e{letter-spacing:27.520000pt;}
.ls40{letter-spacing:28.800000pt;}
.ls66{letter-spacing:44.302117pt;}
.ls2b{letter-spacing:46.208000pt;}
.ls3b{letter-spacing:57.088000pt;}
.ls8{letter-spacing:74.368000pt;}
.ls52{letter-spacing:131.529637pt;}
.ls58{letter-spacing:172.800000pt;}
.ls5d{letter-spacing:197.925115pt;}
.ls5e{letter-spacing:214.551675pt;}
.ls69{letter-spacing:245.945579pt;}
.ls68{letter-spacing:423.844517pt;}
.ls65{letter-spacing:657.466245pt;}
.ls67{letter-spacing:876.958117pt;}
.ls9{letter-spacing:1001.600016pt;}
.ls4f{letter-spacing:1012.626656pt;}
.ls4{letter-spacing:1194.880016pt;}
.ws1{word-spacing:-42.666667pt;}
.ws7{word-spacing:-19.019520pt;}
.ws4{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.420480pt;}
.ws5{word-spacing:-18.120960pt;}
.wsd{word-spacing:-16.768000pt;}
.wsc{word-spacing:-16.704000pt;}
.wse6{word-spacing:-16.640000pt;}
.ws1b{word-spacing:-16.256000pt;}
.ws4b{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.128000pt;}
.wsbd{word-spacing:-16.064000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws1d{word-spacing:-15.936000pt;}
.ws19{word-spacing:-15.872000pt;}
.ws18{word-spacing:-15.808000pt;}
.ws17{word-spacing:-15.744000pt;}
.ws1a{word-spacing:-15.552000pt;}
.ws6e{word-spacing:-15.424000pt;}
.ws1e{word-spacing:-15.360000pt;}
.ws1c{word-spacing:-15.296000pt;}
.wse2{word-spacing:-15.168000pt;}
.ws3{word-spacing:-14.656000pt;}
.ws52{word-spacing:-13.598720pt;}
.wsa7{word-spacing:-13.492480pt;}
.wsa4{word-spacing:-13.386240pt;}
.wsa5{word-spacing:-13.333120pt;}
.ws50{word-spacing:-13.280000pt;}
.ws51{word-spacing:-13.226880pt;}
.ws88{word-spacing:-13.173760pt;}
.ws4f{word-spacing:-13.067520pt;}
.ws4d{word-spacing:-12.961280pt;}
.wsbe{word-spacing:-12.855040pt;}
.ws89{word-spacing:-12.695680pt;}
.ws4e{word-spacing:-12.270720pt;}
.ws8{word-spacing:-12.000000pt;}
.wsa6{word-spacing:-11.898880pt;}
.wsdd{word-spacing:-11.063040pt;}
.ws9{word-spacing:-10.720000pt;}
.ws4c{word-spacing:-8.640000pt;}
.ws6b{word-spacing:-0.796800pt;}
.ws29{word-spacing:-0.640000pt;}
.ws13{word-spacing:-0.524160pt;}
.wsf{word-spacing:-0.449280pt;}
.ws67{word-spacing:-0.318720pt;}
.ws65{word-spacing:-0.256000pt;}
.ws12{word-spacing:-0.224640pt;}
.ws6a{word-spacing:-0.159360pt;}
.ws15{word-spacing:-0.128000pt;}
.wsba{word-spacing:-0.106240pt;}
.ws21{word-spacing:-0.064000pt;}
.ws69{word-spacing:-0.053120pt;}
.ws0{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.053120pt;}
.wse{word-spacing:0.074880pt;}
.wsa8{word-spacing:0.106240pt;}
.ws4a{word-spacing:0.128000pt;}
.ws14{word-spacing:0.149760pt;}
.wsa9{word-spacing:0.159360pt;}
.ws25{word-spacing:0.192000pt;}
.ws6d{word-spacing:0.212480pt;}
.ws11{word-spacing:0.224640pt;}
.ws16{word-spacing:0.256000pt;}
.wsc0{word-spacing:0.318720pt;}
.wsc1{word-spacing:0.371840pt;}
.ws68{word-spacing:0.478080pt;}
.ws9b{word-spacing:0.512000pt;}
.ws10{word-spacing:0.524160pt;}
.ws43{word-spacing:0.640000pt;}
.wsc9{word-spacing:0.690560pt;}
.wse4{word-spacing:0.704000pt;}
.ws87{word-spacing:0.743680pt;}
.ws20{word-spacing:0.832000pt;}
.wse1{word-spacing:0.849920pt;}
.ws3a{word-spacing:0.896000pt;}
.wsc2{word-spacing:1.009280pt;}
.ws39{word-spacing:1.088000pt;}
.wsaa{word-spacing:1.115520pt;}
.ws94{word-spacing:1.152000pt;}
.ws5a{word-spacing:1.280000pt;}
.ws74{word-spacing:1.536000pt;}
.ws9c{word-spacing:1.728000pt;}
.wsca{word-spacing:1.752960pt;}
.ws62{word-spacing:1.792000pt;}
.ws35{word-spacing:1.920000pt;}
.wse5{word-spacing:2.048000pt;}
.ws95{word-spacing:2.112000pt;}
.ws7a{word-spacing:2.176000pt;}
.ws58{word-spacing:2.368000pt;}
.wsd0{word-spacing:2.390400pt;}
.ws61{word-spacing:2.432000pt;}
.ws2e{word-spacing:2.560000pt;}
.ws59{word-spacing:2.752000pt;}
.ws2f{word-spacing:2.816000pt;}
.wscb{word-spacing:3.027840pt;}
.ws85{word-spacing:3.072000pt;}
.ws5f{word-spacing:3.200000pt;}
.ws60{word-spacing:3.456000pt;}
.wscc{word-spacing:3.665280pt;}
.ws33{word-spacing:3.712000pt;}
.ws32{word-spacing:3.840000pt;}
.ws5b{word-spacing:4.032000pt;}
.ws34{word-spacing:4.096000pt;}
.wse3{word-spacing:4.288000pt;}
.wsce{word-spacing:4.302720pt;}
.ws8c{word-spacing:4.352000pt;}
.ws31{word-spacing:4.480000pt;}
.ws79{word-spacing:4.672000pt;}
.ws30{word-spacing:4.736000pt;}
.wsd6{word-spacing:4.928000pt;}
.wscd{word-spacing:4.940160pt;}
.ws8a{word-spacing:4.992000pt;}
.wsb9{word-spacing:5.046400pt;}
.ws7c{word-spacing:5.056000pt;}
.ws3e{word-spacing:5.120000pt;}
.wsb7{word-spacing:5.152640pt;}
.wsb8{word-spacing:5.312000pt;}
.ws3f{word-spacing:5.376000pt;}
.ws9d{word-spacing:5.632000pt;}
.ws6f{word-spacing:5.760000pt;}
.ws7f{word-spacing:6.016000pt;}
.ws53{word-spacing:6.272000pt;}
.ws28{word-spacing:6.400000pt;}
.wsc8{word-spacing:6.480640pt;}
.ws5c{word-spacing:6.656000pt;}
.wsbf{word-spacing:6.848000pt;}
.wsaf{word-spacing:6.905600pt;}
.wsbc{word-spacing:6.912000pt;}
.wsae{word-spacing:7.011840pt;}
.ws3d{word-spacing:7.040000pt;}
.wsad{word-spacing:7.118080pt;}
.wsd9{word-spacing:7.232000pt;}
.wsb6{word-spacing:7.277440pt;}
.ws75{word-spacing:7.296000pt;}
.wsc7{word-spacing:7.543040pt;}
.ws37{word-spacing:7.552000pt;}
.ws2c{word-spacing:7.680000pt;}
.wsd2{word-spacing:7.755520pt;}
.wsd1{word-spacing:7.914880pt;}
.ws36{word-spacing:7.936000pt;}
.ws38{word-spacing:8.064000pt;}
.wsac{word-spacing:8.180480pt;}
.ws73{word-spacing:8.192000pt;}
.ws2a{word-spacing:8.320000pt;}
.wsbb{word-spacing:8.512000pt;}
.ws2b{word-spacing:8.576000pt;}
.wsd3{word-spacing:8.768000pt;}
.wsab{word-spacing:8.817920pt;}
.ws64{word-spacing:8.832000pt;}
.ws63{word-spacing:8.960000pt;}
.ws76{word-spacing:9.216000pt;}
.ws3b{word-spacing:9.472000pt;}
.ws54{word-spacing:9.600000pt;}
.ws9a{word-spacing:9.792000pt;}
.ws3c{word-spacing:9.856000pt;}
.ws26{word-spacing:10.112000pt;}
.ws24{word-spacing:10.240000pt;}
.ws27{word-spacing:10.496000pt;}
.ws86{word-spacing:10.880000pt;}
.ws93{word-spacing:11.008000pt;}
.ws92{word-spacing:11.328000pt;}
.ws80{word-spacing:11.520000pt;}
.ws81{word-spacing:11.776000pt;}
.ws83{word-spacing:12.032000pt;}
.wsa3{word-spacing:12.160000pt;}
.ws96{word-spacing:12.352000pt;}
.ws82{word-spacing:12.416000pt;}
.ws78{word-spacing:12.800000pt;}
.ws8d{word-spacing:13.312000pt;}
.ws9f{word-spacing:13.376000pt;}
.ws70{word-spacing:13.440000pt;}
.ws9e{word-spacing:13.696000pt;}
.ws97{word-spacing:14.080000pt;}
.ws98{word-spacing:14.336000pt;}
.ws8e{word-spacing:14.720000pt;}
.wsb0{word-spacing:14.767360pt;}
.wsb1{word-spacing:14.926720pt;}
.ws8f{word-spacing:14.976000pt;}
.wscf{word-spacing:15.192320pt;}
.wsc3{word-spacing:15.360000pt;}
.wsdf{word-spacing:15.404800pt;}
.wse0{word-spacing:15.564160pt;}
.wsc4{word-spacing:15.616000pt;}
.ws7b{word-spacing:15.872000pt;}
.ws71{word-spacing:16.000000pt;}
.ws5d{word-spacing:16.640000pt;}
.ws5e{word-spacing:16.896000pt;}
.ws41{word-spacing:17.152000pt;}
.ws40{word-spacing:17.280000pt;}
.ws42{word-spacing:17.536000pt;}
.ws66{word-spacing:17.920000pt;}
.wsa2{word-spacing:18.176000pt;}
.ws2{word-spacing:18.368000pt;}
.wsc5{word-spacing:18.432000pt;}
.ws49{word-spacing:18.560000pt;}
.ws48{word-spacing:18.816000pt;}
.wsc6{word-spacing:19.200000pt;}
.ws72{word-spacing:19.840000pt;}
.ws22{word-spacing:20.352000pt;}
.ws1f{word-spacing:20.480000pt;}
.wsb3{word-spacing:20.557440pt;}
.ws23{word-spacing:20.672000pt;}
.wsb5{word-spacing:20.716800pt;}
.wsb4{word-spacing:21.035520pt;}
.ws84{word-spacing:21.120000pt;}
.ws8b{word-spacing:21.376000pt;}
.wsb2{word-spacing:21.619840pt;}
.ws2d{word-spacing:21.760000pt;}
.wsde{word-spacing:22.400000pt;}
.wsda{word-spacing:23.040000pt;}
.wsdc{word-spacing:23.296000pt;}
.wsd8{word-spacing:23.680000pt;}
.wsdb{word-spacing:23.744000pt;}
.wsd7{word-spacing:23.936000pt;}
.wsd5{word-spacing:24.960000pt;}
.wsd4{word-spacing:25.600000pt;}
.ws44{word-spacing:25.856000pt;}
.ws90{word-spacing:26.112000pt;}
.ws91{word-spacing:26.240000pt;}
.wsa0{word-spacing:27.520000pt;}
.wsa1{word-spacing:27.776000pt;}
.ws7d{word-spacing:29.312000pt;}
.ws77{word-spacing:29.440000pt;}
.wse7{word-spacing:29.696000pt;}
.ws7e{word-spacing:30.336000pt;}
.ws56{word-spacing:31.232000pt;}
.ws57{word-spacing:31.360000pt;}
.ws55{word-spacing:32.256000pt;}
.ws99{word-spacing:35.840000pt;}
.wseb{word-spacing:48.000000pt;}
.wsea{word-spacing:48.192000pt;}
.wsec{word-spacing:48.256000pt;}
.ws45{word-spacing:53.696000pt;}
.ws46{word-spacing:53.760000pt;}
.ws47{word-spacing:54.016000pt;}
.wse8{word-spacing:72.960000pt;}
.wse9{word-spacing:73.728000pt;}
._11{margin-left:-8.355840pt;}
._6{margin-left:-4.193280pt;}
._1{margin-left:-3.200000pt;}
._0{margin-left:-1.760000pt;}
._4{width:1.272960pt;}
._2{width:2.224000pt;}
._f{width:3.306880pt;}
._d{width:4.419200pt;}
._5{width:5.793493pt;}
._c{width:7.815040pt;}
._17{width:8.736000pt;}
._b{width:9.824000pt;}
._13{width:11.598080pt;}
._16{width:12.636160pt;}
._12{width:13.575040pt;}
._1a{width:14.912000pt;}
._1c{width:15.811840pt;}
._1b{width:16.896000pt;}
._e{width:17.795200pt;}
._a{width:19.751040pt;}
._9{width:21.358080pt;}
._19{width:23.168000pt;}
._18{width:27.303040pt;}
._10{width:32.366080pt;}
._1d{width:72.807040pt;}
._15{width:140.800000pt;}
._14{width:156.800000pt;}
._8{width:752.000000pt;}
._7{width:1177.600016pt;}
._3{width:1585.504000pt;}
.fs12{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fsf{font-size:42.880000pt;}
.fse{font-size:48.000000pt;}
.fs11{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fsd{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:74.880000pt;}
.fs6{font-size:80.000000pt;}
.fs10{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fsb{font-size:138.880000pt;}
.fs5{font-size:160.000000pt;}
.fs7{font-size:170.666667pt;}
.fs8{font-size:656.000000pt;}
.y0{bottom:0.000000pt;}
.y161{bottom:3.040013pt;}
.y163{bottom:3.199988pt;}
.y1d4{bottom:3.199993pt;}
.y16b{bottom:3.199997pt;}
.y180{bottom:3.199999pt;}
.y176{bottom:3.200003pt;}
.y17b{bottom:3.200009pt;}
.y65{bottom:3.335969pt;}
.y1d2{bottom:3.359964pt;}
.y18b{bottom:3.359971pt;}
.y18e{bottom:3.359985pt;}
.y1d6{bottom:3.359991pt;}
.y170{bottom:3.359995pt;}
.y165{bottom:3.359997pt;}
.y160{bottom:3.360000pt;}
.y1bd{bottom:3.360004pt;}
.y16d{bottom:3.360005pt;}
.y169{bottom:3.360015pt;}
.y1d9{bottom:3.520020pt;}
.y1d8{bottom:3.680013pt;}
.y1dd{bottom:3.680015pt;}
.y1dc{bottom:3.840008pt;}
.y213{bottom:3.999973pt;}
.y203{bottom:3.999977pt;}
.y21c{bottom:3.999985pt;}
.y228{bottom:3.999988pt;}
.y22b{bottom:3.999995pt;}
.y234{bottom:3.999997pt;}
.y216{bottom:4.000000pt;}
.y205{bottom:4.000003pt;}
.y230{bottom:4.000005pt;}
.y222{bottom:4.000017pt;}
.y20c{bottom:4.000029pt;}
.y1ba{bottom:4.159992pt;}
.y1da{bottom:4.159993pt;}
.y12a{bottom:4.160009pt;}
.y12c{bottom:4.320007pt;}
.y167{bottom:4.639988pt;}
.y17a{bottom:4.639991pt;}
.y17d{bottom:4.639995pt;}
.y17f{bottom:4.640001pt;}
.y175{bottom:4.640005pt;}
.y177{bottom:5.919995pt;}
.y172{bottom:5.920009pt;}
.y1bf{bottom:6.879999pt;}
.y1c3{bottom:6.880004pt;}
.y45{bottom:51.200000pt;}
.y5{bottom:59.133337pt;}
.y44{bottom:69.600000pt;}
.y4{bottom:86.333337pt;}
.y64{bottom:87.287364pt;}
.y43{bottom:88.000000pt;}
.y1c5{bottom:107.200003pt;}
.y29{bottom:114.519733pt;}
.y182{bottom:116.799997pt;}
.y25e{bottom:118.879997pt;}
.y237{bottom:119.839996pt;}
.y8a{bottom:121.119995pt;}
.y1c4{bottom:122.400000pt;}
.y20{bottom:123.790666pt;}
.y1c1{bottom:127.525279pt;}
.y116{bottom:130.399997pt;}
.y154{bottom:132.640004pt;}
.y181{bottom:134.720001pt;}
.y2a{bottom:138.519733pt;}
.y89{bottom:139.839996pt;}
.y1c2{bottom:141.280000pt;}
.yad{bottom:142.555043pt;}
.y1a8{bottom:143.200003pt;}
.y1c0{bottom:145.440003pt;}
.y25d{bottom:146.559997pt;}
.y236{bottom:147.359996pt;}
.y17e{bottom:150.080000pt;}
.y200{bottom:150.559997pt;}
.y108{bottom:158.079988pt;}
.y115{bottom:158.079997pt;}
.ycd{bottom:158.079999pt;}
.y88{bottom:158.240000pt;}
.y1be{bottom:160.160000pt;}
.y153{bottom:160.160004pt;}
.y1a7{bottom:160.909111pt;}
.y235{bottom:162.560000pt;}
.yac{bottom:164.000000pt;}
.y17c{bottom:168.000000pt;}
.y1ff{bottom:168.960001pt;}
.yab{bottom:173.274401pt;}
.ye3{bottom:173.920003pt;}
.y25c{bottom:174.079997pt;}
.y17{bottom:175.052000pt;}
.y1a6{bottom:176.274071pt;}
.y87{bottom:176.639999pt;}
.y1bc{bottom:179.040000pt;}
.y1fe{bottom:179.357605pt;}
.y1bb{bottom:182.400004pt;}
.y233{bottom:182.560000pt;}
.y107{bottom:185.599988pt;}
.y114{bottom:185.599992pt;}
.ycc{bottom:185.599999pt;}
.y179{bottom:186.080000pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y152{bottom:187.840007pt;}
.y1a5{bottom:191.639031pt;}
.ye2{bottom:192.320007pt;}
.y26{bottom:194.519733pt;}
.yaa{bottom:194.559997pt;}
.y86{bottom:195.039999pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y1b9{bottom:199.040000pt;}
.y25b{bottom:201.760009pt;}
.y1fd{bottom:202.719991pt;}
.y232{bottom:203.360000pt;}
.y40{bottom:203.706667pt;}
.ya9{bottom:203.825123pt;}
.y178{bottom:204.000000pt;}
.y151{bottom:206.400004pt;}
.y1a4{bottom:206.844631pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y106{bottom:213.279988pt;}
.y113{bottom:213.279992pt;}
.ycb{bottom:213.279999pt;}
.yfa{bottom:213.280007pt;}
.y85{bottom:213.440003pt;}
.y1fc{bottom:213.760009pt;}
.ya8{bottom:219.190083pt;}
.y1a3{bottom:222.209591pt;}
.y1b8{bottom:222.559997pt;}
.y174{bottom:222.720000pt;}
.y231{bottom:223.360000pt;}
.y150{bottom:224.800008pt;}
.y25a{bottom:229.280009pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y84{bottom:231.360005pt;}
.y1fb{bottom:232.159993pt;}
.ya7{bottom:234.555043pt;}
.y3f{bottom:235.226667pt;}
.y1a2{bottom:237.574551pt;}
.y25{bottom:238.519733pt;}
.y173{bottom:240.640000pt;}
.ye1{bottom:240.799992pt;}
.yca{bottom:240.799999pt;}
.yf9{bottom:240.800007pt;}
.y1b7{bottom:240.960001pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y22f{bottom:243.360001pt;}
.y1a1{bottom:252.939511pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.ya6{bottom:256.000000pt;}
.y259{bottom:256.960001pt;}
.y83{bottom:259.199984pt;}
.y14f{bottom:260.770569pt;}
.y1ec{bottom:263.519983pt;}
.y22e{bottom:264.000001pt;}
.ya5{bottom:265.920003pt;}
.y3e{bottom:266.626667pt;}
.y1a0{bottom:268.304471pt;}
.ye0{bottom:268.319992pt;}
.yc9{bottom:268.319999pt;}
.y1b6{bottom:268.320007pt;}
.y171{bottom:271.360000pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y14e{bottom:278.844631pt;}
.y24{bottom:282.519733pt;}
.y19f{bottom:283.669431pt;}
.y22d{bottom:284.000001pt;}
.ya4{bottom:284.320007pt;}
.y258{bottom:284.480001pt;}
.y82{bottom:286.719984pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y16f{bottom:289.280000pt;}
.y1eb{bottom:291.039983pt;}
.y14d{bottom:294.209591pt;}
.ydf{bottom:295.999992pt;}
.yc8{bottom:295.999999pt;}
.y1b5{bottom:296.000003pt;}
.y3d{bottom:298.146667pt;}
.y19e{bottom:298.875031pt;}
.y16e{bottom:304.640000pt;}
.y22c{bottom:304.640001pt;}
.ye{bottom:309.452000pt;}
.y14c{bottom:309.574551pt;}
.y257{bottom:312.159993pt;}
.y81{bottom:314.399984pt;}
.y1ea{bottom:318.559983pt;}
.y16c{bottom:320.000000pt;}
.y19d{bottom:320.320007pt;}
.yde{bottom:323.519992pt;}
.yc7{bottom:323.519999pt;}
.y1b4{bottom:323.520003pt;}
.y22a{bottom:324.640001pt;}
.y14b{bottom:324.939511pt;}
.y23{bottom:326.519733pt;}
.y3c{bottom:329.506667pt;}
.y19c{bottom:330.239991pt;}
.y16a{bottom:335.360000pt;}
.y256{bottom:339.679993pt;}
.y14a{bottom:340.145111pt;}
.y80{bottom:341.919984pt;}
.yd{bottom:343.809333pt;}
.y229{bottom:345.280001pt;}
.y1e9{bottom:346.239983pt;}
.y19b{bottom:348.640015pt;}
.ydd{bottom:351.199992pt;}
.yc6{bottom:351.200003pt;}
.y168{bottom:353.280000pt;}
.ya3{bottom:354.240003pt;}
.y149{bottom:355.510071pt;}
.y3b{bottom:361.026667pt;}
.yc{bottom:362.706666pt;}
.y227{bottom:365.280000pt;}
.y255{bottom:367.359997pt;}
.y166{bottom:368.640000pt;}
.y7f{bottom:369.599984pt;}
.y148{bottom:370.875031pt;}
.y1e8{bottom:373.759983pt;}
.yc5{bottom:378.720003pt;}
.yf8{bottom:378.720012pt;}
.ydc{bottom:378.720016pt;}
.y112{bottom:378.720020pt;}
.y264{bottom:378.880005pt;}
.y19a{bottom:379.839999pt;}
.ya2{bottom:381.920003pt;}
.y226{bottom:385.920000pt;}
.y147{bottom:386.239991pt;}
.y164{bottom:386.720000pt;}
.y3a{bottom:392.386667pt;}
.y28{bottom:394.519733pt;}
.y254{bottom:394.879997pt;}
.y7e{bottom:397.119984pt;}
.ya1{bottom:400.159993pt;}
.y1fa{bottom:401.119995pt;}
.y1e7{bottom:401.439983pt;}
.y145{bottom:401.600000pt;}
.y63{bottom:401.600016pt;}
.y162{bottom:402.080000pt;}
.y225{bottom:405.920000pt;}
.y124{bottom:406.239991pt;}
.yc4{bottom:406.400003pt;}
.yf7{bottom:406.400012pt;}
.ydb{bottom:406.400016pt;}
.y111{bottom:406.400020pt;}
.y199{bottom:407.519999pt;}
.y146{bottom:411.840007pt;}
.ya0{bottom:418.560017pt;}
.y62{bottom:420.000000pt;}
.y15f{bottom:420.640000pt;}
.y1f9{bottom:422.239991pt;}
.y253{bottom:422.559997pt;}
.y144{bottom:423.520000pt;}
.y39{bottom:423.906667pt;}
.y7d{bottom:424.799984pt;}
.y224{bottom:425.920000pt;}
.y1e6{bottom:428.959999pt;}
.y123{bottom:433.920003pt;}
.yf6{bottom:433.920012pt;}
.yc3{bottom:433.920016pt;}
.y110{bottom:433.920020pt;}
.y198{bottom:435.039999pt;}
.y61{bottom:438.720012pt;}
.y1f8{bottom:442.885457pt;}
.y15e{bottom:443.039999pt;}
.y143{bottom:445.600000pt;}
.y223{bottom:445.920000pt;}
.y9f{bottom:446.239991pt;}
.y252{bottom:450.079997pt;}
.y7c{bottom:452.319984pt;}
.y38{bottom:455.266667pt;}
.y1e5{bottom:456.639999pt;}
.y60{bottom:457.119995pt;}
.y1b3{bottom:461.600000pt;}
.yda{bottom:461.600008pt;}
.yf5{bottom:461.600012pt;}
.yc2{bottom:461.600016pt;}
.y10f{bottom:461.600020pt;}
.y15d{bottom:461.760009pt;}
.y197{bottom:462.720001pt;}
.yb{bottom:462.990669pt;}
.y1f7{bottom:464.159993pt;}
.y221{bottom:466.560000pt;}
.y142{bottom:467.520000pt;}
.y9e{bottom:473.920003pt;}
.y5f{bottom:475.520020pt;}
.y251{bottom:477.759988pt;}
.ya{bottom:478.990666pt;}
.y7b{bottom:479.999984pt;}
.y1e4{bottom:484.159999pt;}
.y1f6{bottom:484.971192pt;}
.y220{bottom:487.360000pt;}
.yc1{bottom:489.119995pt;}
.y1b2{bottom:489.120000pt;}
.yd9{bottom:489.120008pt;}
.yf4{bottom:489.120012pt;}
.y10e{bottom:489.120020pt;}
.y141{bottom:489.600000pt;}
.y196{bottom:490.240001pt;}
.y5e{bottom:493.920003pt;}
.y9{bottom:494.990666pt;}
.y37{bottom:495.613333pt;}
.y9d{bottom:501.439977pt;}
.y250{bottom:505.279988pt;}
.y1f5{bottom:506.245768pt;}
.y21f{bottom:507.360000pt;}
.y7a{bottom:507.519984pt;}
.y140{bottom:511.520000pt;}
.y1e3{bottom:511.839999pt;}
.y5d{bottom:512.319987pt;}
.y1b1{bottom:516.800000pt;}
.y15c{bottom:516.800003pt;}
.yc0{bottom:516.800008pt;}
.yf3{bottom:516.800012pt;}
.y10d{bottom:516.800020pt;}
.y195{bottom:517.920001pt;}
.y36{bottom:518.333333pt;}
.y1f4{bottom:526.882893pt;}
.y21e{bottom:527.360000pt;}
.y9c{bottom:529.119977pt;}
.y5c{bottom:530.720012pt;}
.y24f{bottom:532.960013pt;}
.y13e{bottom:533.600000pt;}
.y79{bottom:535.199984pt;}
.y1e2{bottom:539.359999pt;}
.y13f{bottom:543.840007pt;}
.ybf{bottom:544.319987pt;}
.yd8{bottom:544.320000pt;}
.y15b{bottom:544.320003pt;}
.yf2{bottom:544.320012pt;}
.y10c{bottom:544.320020pt;}
.y194{bottom:545.440001pt;}
.y21d{bottom:547.360000pt;}
.y1f3{bottom:547.520020pt;}
.y35{bottom:552.413333pt;}
.y13d{bottom:555.520000pt;}
.y9b{bottom:556.639977pt;}
.y24e{bottom:560.480013pt;}
.y78{bottom:562.719984pt;}
.y1e1{bottom:567.039991pt;}
.y21b{bottom:567.360000pt;}
.y5b{bottom:567.520020pt;}
.y1f2{bottom:568.159993pt;}
.ybe{bottom:572.000000pt;}
.y15a{bottom:572.000003pt;}
.yf1{bottom:572.000012pt;}
.y10b{bottom:572.000020pt;}
.y193{bottom:572.960001pt;}
.y8{bottom:573.786667pt;}
.y13c{bottom:577.600000pt;}
.y9a{bottom:584.159977pt;}
.y5a{bottom:585.919987pt;}
.y21a{bottom:588.000000pt;}
.y24d{bottom:588.160013pt;}
.y1f1{bottom:589.279988pt;}
.y77{bottom:590.399984pt;}
.y7{bottom:592.685334pt;}
.y1e0{bottom:594.559991pt;}
.y1b0{bottom:599.519984pt;}
.y263{bottom:599.519992pt;}
.yd7{bottom:599.520000pt;}
.y159{bottom:599.520003pt;}
.yf0{bottom:599.520012pt;}
.ybd{bottom:599.520020pt;}
.y192{bottom:600.640015pt;}
.y219{bottom:608.000000pt;}
.y76{bottom:608.640015pt;}
.y1f0{bottom:608.960001pt;}
.y59{bottom:611.680013pt;}
.y99{bottom:611.839977pt;}
.y24c{bottom:615.680013pt;}
.y191{bottom:619.199992pt;}
.y13b{bottom:621.600000pt;}
.y1df{bottom:622.239991pt;}
.y58{bottom:622.399984pt;}
.y75{bottom:627.039999pt;}
.y122{bottom:627.199971pt;}
.y1af{bottom:627.199984pt;}
.ybc{bottom:627.199992pt;}
.yd6{bottom:627.200000pt;}
.y158{bottom:627.200003pt;}
.yef{bottom:627.200012pt;}
.y10a{bottom:627.200036pt;}
.y1ef{bottom:627.359985pt;}
.y218{bottom:628.000000pt;}
.y190{bottom:637.600016pt;}
.y98{bottom:639.359977pt;}
.y24b{bottom:643.360005pt;}
.y13a{bottom:643.520000pt;}
.y74{bottom:645.439983pt;}
.y6{bottom:645.598667pt;}
.y217{bottom:648.000000pt;}
.y57{bottom:648.479980pt;}
.y1de{bottom:649.760009pt;}
.y18f{bottom:652.640000pt;}
.y121{bottom:654.719971pt;}
.y1ae{bottom:654.719984pt;}
.yd5{bottom:654.720000pt;}
.y157{bottom:654.720003pt;}
.ybb{bottom:654.720012pt;}
.y109{bottom:654.720036pt;}
.y2d{bottom:659.133333pt;}
.y56{bottom:659.520020pt;}
.y1db{bottom:664.960000pt;}
.y139{bottom:665.600000pt;}
.y97{bottom:667.039977pt;}
.y215{bottom:667.999999pt;}
.y18d{bottom:668.000000pt;}
.y3{bottom:668.977329pt;}
.y24a{bottom:670.880005pt;}
.y73{bottom:673.119968pt;}
.y120{bottom:682.399971pt;}
.y1ad{bottom:682.399984pt;}
.yd4{bottom:682.400000pt;}
.y156{bottom:682.400003pt;}
.y1ee{bottom:682.400016pt;}
.y105{bottom:682.400020pt;}
.yee{bottom:682.400032pt;}
.yba{bottom:682.400036pt;}
.y18c{bottom:683.360000pt;}
.y1d7{bottom:684.000000pt;}
.y55{bottom:685.280029pt;}
.y2c{bottom:686.653333pt;}
.y137{bottom:687.520000pt;}
.y214{bottom:688.639999pt;}
.y96{bottom:694.560023pt;}
.y54{bottom:696.319987pt;}
.y138{bottom:697.920003pt;}
.y249{bottom:698.560009pt;}
.y18a{bottom:699.360000pt;}
.y72{bottom:700.799968pt;}
.y1d5{bottom:702.880000pt;}
.y212{bottom:708.640000pt;}
.y136{bottom:709.600000pt;}
.y1ac{bottom:709.919968pt;}
.y11f{bottom:709.919971pt;}
.yd3{bottom:709.920000pt;}
.y155{bottom:709.920003pt;}
.y1ed{bottom:709.920016pt;}
.y104{bottom:709.920020pt;}
.yed{bottom:709.920032pt;}
.yb9{bottom:709.920036pt;}
.y2b{bottom:714.173333pt;}
.y189{bottom:719.040039pt;}
.y1d3{bottom:720.960000pt;}
.y53{bottom:722.079997pt;}
.y95{bottom:722.240023pt;}
.y248{bottom:726.080009pt;}
.y71{bottom:728.319968pt;}
.y211{bottom:729.280000pt;}
.y135{bottom:731.520000pt;}
.y1ab{bottom:737.599968pt;}
.y11e{bottom:737.599971pt;}
.y262{bottom:737.599987pt;}
.yd2{bottom:737.600000pt;}
.y103{bottom:737.600020pt;}
.yec{bottom:737.600032pt;}
.yb8{bottom:737.600036pt;}
.y188{bottom:737.760009pt;}
.y1d1{bottom:739.520000pt;}
.y210{bottom:749.280000pt;}
.y94{bottom:749.760023pt;}
.y34{bottom:750.533333pt;}
.y1ce{bottom:750.550893pt;}
.y52{bottom:751.200032pt;}
.y134{bottom:753.600000pt;}
.y247{bottom:753.760009pt;}
.y70{bottom:755.999968pt;}
.y1d0{bottom:758.235056pt;}
.y1cd{bottom:758.239991pt;}
.y1aa{bottom:765.119968pt;}
.y11d{bottom:765.119971pt;}
.y261{bottom:765.119987pt;}
.yd1{bottom:765.120000pt;}
.y102{bottom:765.120020pt;}
.yeb{bottom:765.120032pt;}
.yb7{bottom:765.120036pt;}
.y20f{bottom:769.280000pt;}
.y51{bottom:769.600016pt;}
.y22{bottom:770.519733pt;}
.y1cf{bottom:773.600016pt;}
.y133{bottom:775.520000pt;}
.y93{bottom:777.439961pt;}
.y246{bottom:781.279961pt;}
.y2{bottom:781.661334pt;}
.y23d{bottom:783.360027pt;}
.y6f{bottom:783.519968pt;}
.y50{bottom:788.487387pt;}
.y20e{bottom:789.280000pt;}
.y1a9{bottom:792.799968pt;}
.y11c{bottom:792.799971pt;}
.yb6{bottom:792.799984pt;}
.y260{bottom:792.799987pt;}
.yd0{bottom:792.800000pt;}
.y187{bottom:792.800016pt;}
.y101{bottom:792.800020pt;}
.yea{bottom:792.800032pt;}
.y33{bottom:792.933333pt;}
.y1cc{bottom:792.959961pt;}
.y131{bottom:797.600000pt;}
.y23c{bottom:801.760009pt;}
.y21{bottom:802.519733pt;}
.y92{bottom:804.959961pt;}
.y132{bottom:807.840007pt;}
.y245{bottom:808.959961pt;}
.y20d{bottom:809.280000pt;}
.y4f{bottom:810.245613pt;}
.y6e{bottom:811.199968pt;}
.y1cb{bottom:811.360027pt;}
.y130{bottom:819.520000pt;}
.y11b{bottom:820.319971pt;}
.yb5{bottom:820.319984pt;}
.y25f{bottom:820.319987pt;}
.ycf{bottom:820.320000pt;}
.y186{bottom:820.320016pt;}
.y100{bottom:820.320020pt;}
.ye9{bottom:820.320032pt;}
.y23b{bottom:820.479964pt;}
.y20b{bottom:829.280000pt;}
.y4e{bottom:831.703369pt;}
.y91{bottom:832.640027pt;}
.y32{bottom:835.173333pt;}
.y244{bottom:836.480032pt;}
.y6d{bottom:838.719968pt;}
.y1ca{bottom:838.719971pt;}
.y23a{bottom:838.879964pt;}
.y12f{bottom:841.600000pt;}
.y11a{bottom:847.999971pt;}
.yb4{bottom:847.999984pt;}
.yce{bottom:848.000000pt;}
.y185{bottom:848.000016pt;}
.yff{bottom:848.000020pt;}
.ye8{bottom:848.000032pt;}
.y20a{bottom:849.920000pt;}
.y4d{bottom:852.988037pt;}
.y1{bottom:859.312000pt;}
.y90{bottom:860.160027pt;}
.y12e{bottom:863.520000pt;}
.y243{bottom:864.000032pt;}
.y6c{bottom:866.399968pt;}
.y239{bottom:866.400003pt;}
.y1c9{bottom:866.400036pt;}
.y209{bottom:869.920000pt;}
.y4c{bottom:874.422363pt;}
.y119{bottom:875.519971pt;}
.yb3{bottom:875.519984pt;}
.y184{bottom:875.520016pt;}
.yfe{bottom:875.520020pt;}
.ye7{bottom:875.520032pt;}
.y31{bottom:877.573333pt;}
.y12d{bottom:885.600000pt;}
.y8f{bottom:887.840027pt;}
.y208{bottom:889.920000pt;}
.y242{bottom:891.680032pt;}
.y6b{bottom:893.919968pt;}
.y238{bottom:893.920003pt;}
.y1c8{bottom:893.920036pt;}
.y4b{bottom:895.856771pt;}
.y27{bottom:898.519733pt;}
.y118{bottom:903.199971pt;}
.yb2{bottom:903.199984pt;}
.y183{bottom:903.200016pt;}
.ye6{bottom:903.200032pt;}
.y12b{bottom:907.520000pt;}
.y207{bottom:909.920000pt;}
.y8e{bottom:915.360027pt;}
.y4a{bottom:917.291179pt;}
.y241{bottom:919.200032pt;}
.y30{bottom:919.813333pt;}
.yfd{bottom:921.440023pt;}
.y6a{bottom:921.599968pt;}
.y1c7{bottom:921.600036pt;}
.y129{bottom:929.600000pt;}
.y206{bottom:929.920000pt;}
.y117{bottom:930.719971pt;}
.yb1{bottom:930.719984pt;}
.ye5{bottom:930.720016pt;}
.y49{bottom:938.725585pt;}
.y8d{bottom:943.039977pt;}
.y240{bottom:946.879984pt;}
.y69{bottom:949.119968pt;}
.y1c6{bottom:949.120036pt;}
.y204{bottom:949.920000pt;}
.y128{bottom:955.040039pt;}
.yfc{bottom:958.239991pt;}
.yb0{bottom:958.399984pt;}
.ye4{bottom:958.400016pt;}
.y2f{bottom:962.213333pt;}
.y8c{bottom:970.559977pt;}
.y202{bottom:970.560000pt;}
.y23f{bottom:974.399984pt;}
.y127{bottom:976.639973pt;}
.y68{bottom:976.799968pt;}
.y48{bottom:981.127035pt;}
.yfb{bottom:985.920003pt;}
.yaf{bottom:985.920016pt;}
.y8b{bottom:990.399984pt;}
.y67{bottom:995.040039pt;}
.y126{bottom:995.360009pt;}
.y201{bottom:995.360027pt;}
.y23e{bottom:997.280029pt;}
.y47{bottom:997.922527pt;}
.y2e{bottom:1004.480000pt;}
.y66{bottom:1013.440023pt;}
.yae{bottom:1013.600016pt;}
.y125{bottom:1013.760009pt;}
.y46{bottom:1014.879964pt;}
.y42{bottom:1042.559961pt;}
.y41{bottom:1060.959961pt;}
.h1a{height:12.335999pt;}
.h2f{height:15.360000pt;}
.h2e{height:17.920000pt;}
.h31{height:17.921333pt;}
.h2d{height:18.080000pt;}
.h33{height:18.880000pt;}
.h35{height:18.881333pt;}
.h3a{height:19.040000pt;}
.h34{height:19.360000pt;}
.h3e{height:19.998667pt;}
.h3d{height:20.000000pt;}
.h29{height:21.280000pt;}
.h2b{height:21.281333pt;}
.h28{height:21.438667pt;}
.h2a{height:21.440000pt;}
.h7{height:28.560000pt;}
.hd{height:30.890667pt;}
.h21{height:33.918750pt;}
.h2c{height:34.830000pt;}
.h39{height:35.404688pt;}
.h6{height:40.800000pt;}
.h19{height:42.084375pt;}
.he{height:42.474667pt;}
.h27{height:42.558667pt;}
.h3{height:42.840000pt;}
.h10{height:43.656250pt;}
.h1b{height:48.703125pt;}
.h38{height:48.798667pt;}
.h2{height:48.960000pt;}
.h12{height:51.187500pt;}
.h30{height:52.108438pt;}
.h22{height:52.134375pt;}
.h26{height:53.535000pt;}
.h3f{height:55.402500pt;}
.h14{height:57.787500pt;}
.ha{height:58.960000pt;}
.h25{height:62.781250pt;}
.h13{height:62.812500pt;}
.h3c{height:62.822100pt;}
.h18{height:64.500000pt;}
.h1c{height:66.750000pt;}
.h5{height:69.360000pt;}
.h3b{height:71.524167pt;}
.h1e{height:71.524268pt;}
.h32{height:71.524284pt;}
.h20{height:71.524295pt;}
.h23{height:71.524348pt;}
.h24{height:71.524380pt;}
.h1f{height:71.524402pt;}
.h15{height:75.465000pt;}
.h16{height:81.575844pt;}
.h17{height:81.646778pt;}
.h36{height:82.837826pt;}
.h1d{height:83.499062pt;}
.h11{height:94.937500pt;}
.h4{height:105.826671pt;}
.h37{height:113.594215pt;}
.h9{height:117.920000pt;}
.hb{height:125.781333pt;}
.hc{height:484.784000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.hf{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:35.680000pt;}
.w1e{width:37.121333pt;}
.w1d{width:38.080000pt;}
.w1f{width:40.160000pt;}
.w16{width:40.320000pt;}
.w17{width:40.481333pt;}
.w20{width:40.638667pt;}
.w15{width:40.800000pt;}
.w19{width:42.400000pt;}
.w18{width:43.040000pt;}
.w1c{width:45.920000pt;}
.wa{width:68.960000pt;}
.wb{width:69.120000pt;}
.wd{width:88.320000pt;}
.we{width:88.480000pt;}
.w1b{width:90.720000pt;}
.w12{width:91.040000pt;}
.w10{width:109.440000pt;}
.w6{width:119.327627pt;}
.w14{width:121.601333pt;}
.w13{width:121.758667pt;}
.wf{width:123.840000pt;}
.w11{width:144.960000pt;}
.wc{width:160.800000pt;}
.w9{width:177.120000pt;}
.w7{width:208.640000pt;}
.w8{width:208.800000pt;}
.w22{width:285.440000pt;}
.w21{width:289.600000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w5{width:793.759988pt;}
.w4{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.719996pt;}
.x4d{left:8.159985pt;}
.x24{left:9.760003pt;}
.x20{left:11.360000pt;}
.x29{left:12.799980pt;}
.x3d{left:14.719995pt;}
.x2b{left:16.159987pt;}
.x22{left:17.759993pt;}
.x28{left:19.520013pt;}
.x57{left:21.279997pt;}
.x2a{left:22.879999pt;}
.x27{left:24.479995pt;}
.x46{left:28.480007pt;}
.x2f{left:31.200007pt;}
.x2e{left:34.559992pt;}
.x48{left:37.919991pt;}
.x41{left:40.160008pt;}
.x58{left:45.440015pt;}
.x3f{left:46.720003pt;}
.x40{left:51.200012pt;}
.x37{left:54.399996pt;}
.x3e{left:61.120007pt;}
.x1b{left:71.519993pt;}
.x5{left:72.755867pt;}
.x7{left:74.330667pt;}
.x6{left:75.590533pt;}
.x1e{left:76.640017pt;}
.x3c{left:81.120007pt;}
.x2d{left:87.679997pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x35{left:99.520004pt;}
.x19{left:101.599996pt;}
.x5d{left:103.839996pt;}
.xa{left:104.955200pt;}
.x33{left:106.239995pt;}
.xd{left:114.090556pt;}
.x15{left:118.400004pt;}
.x5f{left:132.160004pt;}
.x31{left:134.719996pt;}
.x52{left:136.000000pt;}
.x11{left:142.400004pt;}
.x18{left:151.200004pt;}
.x36{left:153.440007pt;}
.x49{left:159.195364pt;}
.x53{left:176.320000pt;}
.x2c{left:178.079997pt;}
.x4{left:180.874667pt;}
.x34{left:189.920003pt;}
.x32{left:196.800008pt;}
.x54{left:216.800000pt;}
.x42{left:218.240000pt;}
.x30{left:225.280009pt;}
.xb{left:228.975200pt;}
.x45{left:239.360000pt;}
.xf{left:255.039999pt;}
.x55{left:257.760000pt;}
.xe{left:262.393292pt;}
.x1a{left:272.640000pt;}
.x4a{left:280.959683pt;}
.x10{left:283.360007pt;}
.x56{left:300.800000pt;}
.x14{left:332.800008pt;}
.x12{left:341.439983pt;}
.x21{left:342.400000pt;}
.x38{left:343.520000pt;}
.x13{left:367.039999pt;}
.x5e{left:376.800000pt;}
.x4c{left:379.200000pt;}
.x47{left:384.320000pt;}
.x4b{left:387.359828pt;}
.x16{left:394.399984pt;}
.xc{left:396.818725pt;}
.x3{left:404.408000pt;}
.x23{left:412.160000pt;}
.x39{left:431.840000pt;}
.x43{left:465.920000pt;}
.x4f{left:470.240000pt;}
.x8{left:476.749067pt;}
.x1d{left:481.920000pt;}
.x4e{left:503.680013pt;}
.x59{left:516.480000pt;}
.x3a{left:520.320000pt;}
.x25{left:551.680000pt;}
.x5a{left:554.560000pt;}
.x1c{left:575.520020pt;}
.x44{left:589.760000pt;}
.x51{left:592.000000pt;}
.x3b{left:608.640000pt;}
.x26{left:621.600000pt;}
.x50{left:625.920003pt;}
.x5b{left:632.480000pt;}
.x5c{left:673.120000pt;}
.x17{left:683.200032pt;}
.x9{left:691.200032pt;}
}




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