
    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_5acffb38366eb22e011c5fdc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.230957;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_9f904d491228f85f0cb77118.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_56c349f328e21011c0978a22.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402832;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_1406dbfc6b2f3f6d2510c565.woff')format("woff");}.ff4{font-family:ff4;line-height:1.230957;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_32156e17e0cdbc9273472e7d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.099609;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_6319b7c256d3af8d33c0dc77.woff')format("woff");}.ff6{font-family:ff6;line-height:1.066406;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_20e2dc2c2746b9e85e1c3a84.woff')format("woff");}.ff7{font-family:ff7;line-height:1.230957;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_9919298d9b12921e78907904.woff')format("woff");}.ff8{font-family:ff8;line-height:1.041992;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_9f69eec50f6eebfe9d8588ea.woff')format("woff");}.ff9{font-family:ff9;line-height:1.053223;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_d80bca4a5b7373dcddf8120f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.101562;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);}
.v4{vertical-align:-16.977000px;}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.026200px;}
.v2{vertical-align:16.956600px;}
.ls9f{letter-spacing:-12.627000px;}
.ls1a{letter-spacing:-7.371000px;}
.ls6a{letter-spacing:-6.969000px;}
.ls84{letter-spacing:-6.693000px;}
.lsa5{letter-spacing:-6.555000px;}
.ls59{letter-spacing:-6.348000px;}
.lsbe{letter-spacing:-5.451000px;}
.lsbd{letter-spacing:-5.175000px;}
.lsaa{letter-spacing:-4.968000px;}
.lsb0{letter-spacing:-4.899000px;}
.ls3e{letter-spacing:-4.761000px;}
.ls8b{letter-spacing:-4.554000px;}
.lsb8{letter-spacing:-4.485000px;}
.ls43{letter-spacing:-4.416000px;}
.ls97{letter-spacing:-4.347000px;}
.ls6c{letter-spacing:-4.278000px;}
.lse6{letter-spacing:-4.221000px;}
.ls7c{letter-spacing:-4.209000px;}
.ls95{letter-spacing:-4.200000px;}
.lsa2{letter-spacing:-4.140000px;}
.ls8d{letter-spacing:-4.071000px;}
.ls86{letter-spacing:-3.933000px;}
.ls6f{letter-spacing:-3.900000px;}
.lsbb{letter-spacing:-3.864000px;}
.ls50{letter-spacing:-3.795000px;}
.ls4f{letter-spacing:-3.657000px;}
.lsa3{letter-spacing:-3.588000px;}
.ls61{letter-spacing:-3.519000px;}
.ls57{letter-spacing:-3.381000px;}
.lsae{letter-spacing:-3.312000px;}
.ls4c{letter-spacing:-3.174000px;}
.ls85{letter-spacing:-3.105000px;}
.ls2e{letter-spacing:-3.036000px;}
.ls49{letter-spacing:-2.970000px;}
.ls83{letter-spacing:-2.967000px;}
.lsf9{letter-spacing:-2.940000px;}
.lsaf{letter-spacing:-2.898000px;}
.lsc6{letter-spacing:-2.835000px;}
.lsbc{letter-spacing:-2.829000px;}
.ls2c{letter-spacing:-2.760000px;}
.ls76{letter-spacing:-2.754000px;}
.ls78{letter-spacing:-2.691000px;}
.lsff{letter-spacing:-2.640000px;}
.ls60{letter-spacing:-2.622000px;}
.ls4d{letter-spacing:-2.553000px;}
.ls51{letter-spacing:-2.484000px;}
.ls18{letter-spacing:-2.475000px;}
.ls67{letter-spacing:-2.415000px;}
.lsd9{letter-spacing:-2.394000px;}
.ls37{letter-spacing:-2.346000px;}
.ls42{letter-spacing:-2.277000px;}
.ls30{letter-spacing:-2.208000px;}
.ls38{letter-spacing:-2.139000px;}
.ls41{letter-spacing:-2.070000px;}
.ls75{letter-spacing:-2.052000px;}
.ls40{letter-spacing:-2.001000px;}
.ls2b{letter-spacing:-1.932000px;}
.lsfe{letter-spacing:-1.920000px;}
.ls31{letter-spacing:-1.863000px;}
.ls29{letter-spacing:-1.794000px;}
.lsd2{letter-spacing:-1.764000px;}
.lsfa{letter-spacing:-1.740000px;}
.ls4e{letter-spacing:-1.725000px;}
.ls12{letter-spacing:-1.680000px;}
.ls3a{letter-spacing:-1.656000px;}
.lsf6{letter-spacing:-1.620000px;}
.ls58{letter-spacing:-1.587000px;}
.lsd7{letter-spacing:-1.575000px;}
.lsa{letter-spacing:-1.560000px;}
.ls3d{letter-spacing:-1.518000px;}
.ls32{letter-spacing:-1.449000px;}
.lsc5{letter-spacing:-1.386000px;}
.ls26{letter-spacing:-1.380000px;}
.lsd6{letter-spacing:-1.323000px;}
.ls1f{letter-spacing:-1.311000px;}
.lsce{letter-spacing:-1.260000px;}
.ls2d{letter-spacing:-1.242000px;}
.ls10{letter-spacing:-1.200000px;}
.lsd3{letter-spacing:-1.197000px;}
.ls2f{letter-spacing:-1.173000px;}
.lsed{letter-spacing:-1.134000px;}
.ls1d{letter-spacing:-1.104000px;}
.lsf7{letter-spacing:-1.080000px;}
.ls1b{letter-spacing:-1.035000px;}
.ls100{letter-spacing:-1.020000px;}
.lscc{letter-spacing:-1.008000px;}
.ls27{letter-spacing:-0.972000px;}
.ls3b{letter-spacing:-0.966000px;}
.lse2{letter-spacing:-0.945000px;}
.ls96{letter-spacing:-0.936000px;}
.ls48{letter-spacing:-0.918000px;}
.ls20{letter-spacing:-0.897000px;}
.ls73{letter-spacing:-0.864000px;}
.ls8{letter-spacing:-0.840000px;}
.ls39{letter-spacing:-0.828000px;}
.lsb4{letter-spacing:-0.825000px;}
.lse4{letter-spacing:-0.819000px;}
.lsf5{letter-spacing:-0.780000px;}
.ls21{letter-spacing:-0.759000px;}
.lsd4{letter-spacing:-0.693000px;}
.ls1c{letter-spacing:-0.690000px;}
.lsb{letter-spacing:-0.660000px;}
.ls47{letter-spacing:-0.648000px;}
.lscb{letter-spacing:-0.630000px;}
.ls5b{letter-spacing:-0.621000px;}
.lsb1{letter-spacing:-0.594000px;}
.lscd{letter-spacing:-0.567000px;}
.ls5c{letter-spacing:-0.552000px;}
.ls74{letter-spacing:-0.540000px;}
.lsc8{letter-spacing:-0.504000px;}
.ls28{letter-spacing:-0.483000px;}
.lsc7{letter-spacing:-0.441000px;}
.ls4{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.420000px;}
.ls22{letter-spacing:-0.414000px;}
.lsd1{letter-spacing:-0.378000px;}
.ls69{letter-spacing:-0.345000px;}
.ls45{letter-spacing:-0.324000px;}
.lsda{letter-spacing:-0.315000px;}
.ls15{letter-spacing:-0.300000px;}
.ls54{letter-spacing:-0.276000px;}
.lse7{letter-spacing:-0.252000px;}
.lsf8{letter-spacing:-0.240000px;}
.ls44{letter-spacing:-0.216000px;}
.ls36{letter-spacing:-0.207000px;}
.lsd5{letter-spacing:-0.189000px;}
.ls7{letter-spacing:-0.180000px;}
.ls9c{letter-spacing:-0.162000px;}
.ls4b{letter-spacing:-0.138000px;}
.lsfc{letter-spacing:-0.120000px;}
.lsc1{letter-spacing:-0.081000px;}
.ls66{letter-spacing:-0.069000px;}
.lsd0{letter-spacing:-0.063000px;}
.lsfb{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls80{letter-spacing:0.000300px;}
.lse8{letter-spacing:0.063000px;}
.ls3c{letter-spacing:0.069000px;}
.ls11{letter-spacing:0.120000px;}
.lse0{letter-spacing:0.126000px;}
.lsc0{letter-spacing:0.138000px;}
.lsee{letter-spacing:0.189000px;}
.ls79{letter-spacing:0.207000px;}
.lsf4{letter-spacing:0.240000px;}
.ls25{letter-spacing:0.243000px;}
.ls70{letter-spacing:0.276000px;}
.lsec{letter-spacing:0.315000px;}
.ls8a{letter-spacing:0.345000px;}
.ls46{letter-spacing:0.378000px;}
.ls52{letter-spacing:0.414000px;}
.lsfd{letter-spacing:0.420000px;}
.ls1{letter-spacing:0.480000px;}
.ls5d{letter-spacing:0.483000px;}
.ls71{letter-spacing:0.552000px;}
.ls34{letter-spacing:0.586500px;}
.ls56{letter-spacing:0.621000px;}
.lsf1{letter-spacing:0.720000px;}
.lsa7{letter-spacing:0.759000px;}
.lsde{letter-spacing:0.819000px;}
.ls8c{letter-spacing:0.828000px;}
.lse5{letter-spacing:0.882000px;}
.ls23{letter-spacing:0.897000px;}
.lsdd{letter-spacing:0.945000px;}
.ls7b{letter-spacing:0.966000px;}
.ls53{letter-spacing:1.035000px;}
.ls1e{letter-spacing:1.104000px;}
.ls3f{letter-spacing:1.173000px;}
.lsc9{letter-spacing:1.197000px;}
.ls72{letter-spacing:1.242000px;}
.ls13{letter-spacing:1.259280px;}
.ls19{letter-spacing:1.260000px;}
.lsa1{letter-spacing:1.311000px;}
.ls6e{letter-spacing:1.311300px;}
.lsdc{letter-spacing:1.386000px;}
.ls9b{letter-spacing:1.404000px;}
.lsf2{letter-spacing:1.422000px;}
.ls6b{letter-spacing:1.587000px;}
.lsa0{letter-spacing:1.656000px;}
.ls94{letter-spacing:1.725000px;}
.ls5{letter-spacing:1.764000px;}
.ls8f{letter-spacing:1.794000px;}
.ls89{letter-spacing:1.863000px;}
.lsad{letter-spacing:2.076900px;}
.lsb3{letter-spacing:2.083800px;}
.lsb5{letter-spacing:2.139000px;}
.lse3{letter-spacing:2.142000px;}
.ls98{letter-spacing:2.208000px;}
.ls87{letter-spacing:2.346000px;}
.ls35{letter-spacing:2.346300px;}
.ls17{letter-spacing:2.400000px;}
.ls5a{letter-spacing:2.415000px;}
.ls64{letter-spacing:2.553000px;}
.lseb{letter-spacing:2.583000px;}
.lsef{letter-spacing:2.709000px;}
.lse1{letter-spacing:2.772000px;}
.lsa4{letter-spacing:2.829000px;}
.lsa6{letter-spacing:2.898000px;}
.ls7a{letter-spacing:3.036000px;}
.ls2a{letter-spacing:3.312000px;}
.lsb6{letter-spacing:3.381000px;}
.ls68{letter-spacing:3.450000px;}
.ls5f{letter-spacing:3.588000px;}
.ls14{letter-spacing:3.696000px;}
.ls9e{letter-spacing:3.864000px;}
.lsc3{letter-spacing:3.906000px;}
.ls5e{letter-spacing:4.002000px;}
.lsb9{letter-spacing:4.071000px;}
.ls9a{letter-spacing:4.140000px;}
.lse{letter-spacing:4.200000px;}
.lsac{letter-spacing:4.485000px;}
.lsd{letter-spacing:4.500000px;}
.lsba{letter-spacing:4.830000px;}
.ls7e{letter-spacing:4.968000px;}
.lsa9{letter-spacing:5.106000px;}
.ls88{letter-spacing:5.244000px;}
.ls101{letter-spacing:5.460000px;}
.ls99{letter-spacing:5.471700px;}
.ls65{letter-spacing:5.658000px;}
.ls6{letter-spacing:5.760000px;}
.lse9{letter-spacing:5.796000px;}
.lsca{letter-spacing:5.859000px;}
.lsb7{letter-spacing:5.865000px;}
.lsf{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.lsab{letter-spacing:6.072000px;}
.lscf{letter-spacing:6.111000px;}
.ls91{letter-spacing:6.154800px;}
.lsc4{letter-spacing:6.300000px;}
.lsdf{letter-spacing:6.489000px;}
.ls82{letter-spacing:6.624000px;}
.ls92{letter-spacing:6.672300px;}
.ls9{letter-spacing:6.720000px;}
.lsea{letter-spacing:6.741000px;}
.ls81{letter-spacing:6.831000px;}
.ls90{letter-spacing:7.038000px;}
.ls93{letter-spacing:7.314000px;}
.lsd8{letter-spacing:7.497000px;}
.ls63{letter-spacing:8.280000px;}
.lsf3{letter-spacing:8.640000px;}
.ls7d{letter-spacing:13.041000px;}
.lsb2{letter-spacing:474.016800px;}
.lsf0{letter-spacing:474.219000px;}
.ls33{letter-spacing:474.639000px;}
.lsc2{letter-spacing:474.654000px;}
.lsdb{letter-spacing:474.684000px;}
.ls55{letter-spacing:474.826800px;}
.lsbf{letter-spacing:474.954000px;}
.ls16{letter-spacing:475.081800px;}
.ls7f{letter-spacing:478.599000px;}
.ls6d{letter-spacing:480.226800px;}
.lsa8{letter-spacing:480.639000px;}
.ls9d{letter-spacing:481.006800px;}
.ls8e{letter-spacing:481.966800px;}
.ls62{letter-spacing:952.522800px;}
.ls0{letter-spacing:953.017800px;}
.ls24{letter-spacing:955.642800px;}
.ls4a{letter-spacing:959.692800px;}
.ls77{letter-spacing:961.672800px;}
.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;}
}
.wsc2{word-spacing:-68.586000px;}
.wsd6{word-spacing:-68.448000px;}
.wsd3{word-spacing:-68.379000px;}
.ws11d{word-spacing:-60.720000px;}
.ws122{word-spacing:-59.760000px;}
.ws11c{word-spacing:-25.500000px;}
.ws25{word-spacing:-22.761000px;}
.ws4{word-spacing:-22.740000px;}
.wse6{word-spacing:-22.680000px;}
.ws0{word-spacing:-22.620000px;}
.wse8{word-spacing:-21.609000px;}
.wsa8{word-spacing:-20.982000px;}
.wsd1{word-spacing:-20.250000px;}
.ws36{word-spacing:-19.389000px;}
.wsde{word-spacing:-19.251000px;}
.wsae{word-spacing:-19.182000px;}
.wsc3{word-spacing:-19.113000px;}
.wsc1{word-spacing:-18.975000px;}
.wsf2{word-spacing:-18.900000px;}
.wsc7{word-spacing:-18.699000px;}
.ws105{word-spacing:-18.648000px;}
.wse0{word-spacing:-18.630000px;}
.ws18{word-spacing:-18.600000px;}
.ws73{word-spacing:-18.561000px;}
.wse9{word-spacing:-18.492000px;}
.ws9d{word-spacing:-18.147000px;}
.wsd4{word-spacing:-18.078000px;}
.ws111{word-spacing:-18.018000px;}
.wsa5{word-spacing:-18.009000px;}
.ws96{word-spacing:-17.940000px;}
.ws10f{word-spacing:-17.766000px;}
.wsbd{word-spacing:-17.664000px;}
.ws69{word-spacing:-17.526000px;}
.wsb2{word-spacing:-17.388000px;}
.wsf4{word-spacing:-17.325000px;}
.wsd2{word-spacing:-17.319000px;}
.ws121{word-spacing:-17.280000px;}
.ws104{word-spacing:-17.262000px;}
.ws75{word-spacing:-17.250000px;}
.ws81{word-spacing:-17.175000px;}
.wsa4{word-spacing:-17.112000px;}
.ws35{word-spacing:-17.043000px;}
.ws82{word-spacing:-16.905000px;}
.wsa3{word-spacing:-16.875000px;}
.ws1{word-spacing:-16.860000px;}
.ws93{word-spacing:-16.836000px;}
.wsd5{word-spacing:-16.767000px;}
.ws8c{word-spacing:-16.698000px;}
.ws3{word-spacing:-16.680000px;}
.ws3e{word-spacing:-16.629000px;}
.ws3d{word-spacing:-16.560000px;}
.wsf0{word-spacing:-16.506000px;}
.ws68{word-spacing:-16.491000px;}
.ws74{word-spacing:-16.422000px;}
.ws43{word-spacing:-16.353000px;}
.wsa7{word-spacing:-16.284000px;}
.ws39{word-spacing:-16.215000px;}
.ws1d{word-spacing:-16.146000px;}
.ws3b{word-spacing:-16.077000px;}
.ws1b{word-spacing:-16.008000px;}
.ws42{word-spacing:-15.939000px;}
.ws29{word-spacing:-15.870000px;}
.ws28{word-spacing:-15.801000px;}
.ws1c{word-spacing:-15.732000px;}
.ws37{word-spacing:-15.663000px;}
.ws3f{word-spacing:-15.594000px;}
.ws3c{word-spacing:-15.525000px;}
.ws66{word-spacing:-15.456000px;}
.ws1a{word-spacing:-15.390000px;}
.ws3a{word-spacing:-15.387000px;}
.wsf1{word-spacing:-15.372000px;}
.ws57{word-spacing:-15.318000px;}
.ws26{word-spacing:-15.249000px;}
.wsf3{word-spacing:-15.183000px;}
.ws2b{word-spacing:-15.180000px;}
.ws27{word-spacing:-15.111000px;}
.ws41{word-spacing:-15.042000px;}
.ws65{word-spacing:-14.973000px;}
.ws6{word-spacing:-14.940000px;}
.ws38{word-spacing:-14.904000px;}
.ws110{word-spacing:-14.868000px;}
.ws2a{word-spacing:-14.835000px;}
.wsc4{word-spacing:-14.766000px;}
.ws40{word-spacing:-14.697000px;}
.ws123{word-spacing:-14.640000px;}
.ws95{word-spacing:-14.628000px;}
.ws59{word-spacing:-14.559000px;}
.ws47{word-spacing:-14.526000px;}
.ws112{word-spacing:-14.427000px;}
.wsc6{word-spacing:-14.421000px;}
.ws2{word-spacing:-14.400000px;}
.ws8b{word-spacing:-14.352000px;}
.ws8{word-spacing:-14.160000px;}
.wsa6{word-spacing:-14.007000px;}
.wsef{word-spacing:-13.797000px;}
.ws11f{word-spacing:-13.740000px;}
.wsc5{word-spacing:-13.731000px;}
.ws46{word-spacing:-13.716000px;}
.ws5{word-spacing:-13.620000px;}
.ws10e{word-spacing:-13.482000px;}
.ws11e{word-spacing:-13.200000px;}
.ws44{word-spacing:-13.122000px;}
.ws120{word-spacing:-13.080000px;}
.ws19{word-spacing:-13.062000px;}
.ws91{word-spacing:-13.041000px;}
.ws45{word-spacing:-13.014000px;}
.ws9e{word-spacing:-12.972000px;}
.ws84{word-spacing:-12.798000px;}
.wsc8{word-spacing:-12.744000px;}
.wsb1{word-spacing:-12.627000px;}
.ws83{word-spacing:-12.474000px;}
.ws48{word-spacing:-12.420000px;}
.ws85{word-spacing:-12.096000px;}
.wsdf{word-spacing:-11.592000px;}
.ws58{word-spacing:-11.303787px;}
.ws7{word-spacing:-11.088660px;}
.ws67{word-spacing:-10.695000px;}
.wsb7{word-spacing:-10.488000px;}
.ws94{word-spacing:-10.350000px;}
.ws76{word-spacing:-10.074000px;}
.ws101{word-spacing:-7.497000px;}
.ws118{word-spacing:-6.741000px;}
.wsf{word-spacing:-6.720000px;}
.ws97{word-spacing:-6.624000px;}
.ws109{word-spacing:-6.489000px;}
.wsea{word-spacing:-6.300000px;}
.wsfb{word-spacing:-6.111000px;}
.wsbf{word-spacing:-6.072000px;}
.wsa{word-spacing:-6.000000px;}
.wsd9{word-spacing:-5.865000px;}
.wsf6{word-spacing:-5.859000px;}
.ws117{word-spacing:-5.796000px;}
.ws12e{word-spacing:-5.460000px;}
.ws92{word-spacing:-4.968000px;}
.wsdd{word-spacing:-4.830000px;}
.ws12{word-spacing:-4.500000px;}
.wsc0{word-spacing:-4.485000px;}
.ws13{word-spacing:-4.200000px;}
.wse5{word-spacing:-4.140000px;}
.wsdc{word-spacing:-4.071000px;}
.ws6e{word-spacing:-4.002000px;}
.wsb3{word-spacing:-3.864000px;}
.ws16{word-spacing:-3.696000px;}
.ws6f{word-spacing:-3.588000px;}
.ws7b{word-spacing:-3.450000px;}
.wsd8{word-spacing:-3.381000px;}
.ws30{word-spacing:-3.312000px;}
.ws8e{word-spacing:-3.036000px;}
.wsbb{word-spacing:-2.898000px;}
.wsba{word-spacing:-2.829000px;}
.ws10b{word-spacing:-2.772000px;}
.ws11b{word-spacing:-2.709000px;}
.ws119{word-spacing:-2.583000px;}
.ws4b{word-spacing:-2.415000px;}
.ws1e{word-spacing:-2.400000px;}
.wsdb{word-spacing:-2.208000px;}
.ws10d{word-spacing:-2.142000px;}
.wsd7{word-spacing:-2.139000px;}
.wsa9{word-spacing:-1.794000px;}
.wsc{word-spacing:-1.764000px;}
.wsb6{word-spacing:-1.656000px;}
.ws7f{word-spacing:-1.587000px;}
.wsaf{word-spacing:-1.404000px;}
.ws106{word-spacing:-1.386000px;}
.ws88{word-spacing:-1.242000px;}
.wsf5{word-spacing:-1.197000px;}
.ws51{word-spacing:-1.173000px;}
.ws21{word-spacing:-1.104000px;}
.ws62{word-spacing:-1.035000px;}
.ws8f{word-spacing:-0.966000px;}
.ws113{word-spacing:-0.945000px;}
.ws24{word-spacing:-0.897000px;}
.ws115{word-spacing:-0.882000px;}
.wsa2{word-spacing:-0.828000px;}
.ws107{word-spacing:-0.819000px;}
.wsbc{word-spacing:-0.759000px;}
.ws72{word-spacing:-0.621000px;}
.ws87{word-spacing:-0.552000px;}
.ws61{word-spacing:-0.414000px;}
.wsa0{word-spacing:-0.345000px;}
.ws86{word-spacing:-0.276000px;}
.ws2c{word-spacing:-0.243000px;}
.ws124{word-spacing:-0.240000px;}
.ws11a{word-spacing:-0.189000px;}
.wse7{word-spacing:-0.138000px;}
.ws10a{word-spacing:-0.126000px;}
.ws4c{word-spacing:-0.069000px;}
.ws9{word-spacing:0.000000px;}
.ws129{word-spacing:0.060000px;}
.wsfc{word-spacing:0.063000px;}
.ws7a{word-spacing:0.069000px;}
.ws12a{word-spacing:0.120000px;}
.ws5b{word-spacing:0.138000px;}
.wsb0{word-spacing:0.162000px;}
.wsd{word-spacing:0.180000px;}
.ws108{word-spacing:0.189000px;}
.ws49{word-spacing:0.207000px;}
.ws127{word-spacing:0.240000px;}
.ws116{word-spacing:0.252000px;}
.ws63{word-spacing:0.276000px;}
.ws17{word-spacing:0.300000px;}
.ws103{word-spacing:0.315000px;}
.ws7c{word-spacing:0.345000px;}
.wsfd{word-spacing:0.378000px;}
.ws23{word-spacing:0.414000px;}
.ws14{word-spacing:0.420000px;}
.wsb{word-spacing:0.432000px;}
.wsed{word-spacing:0.441000px;}
.ws2f{word-spacing:0.483000px;}
.wsee{word-spacing:0.504000px;}
.ws126{word-spacing:0.540000px;}
.wsac{word-spacing:0.552000px;}
.wsf9{word-spacing:0.567000px;}
.ws6c{word-spacing:0.621000px;}
.wsf7{word-spacing:0.630000px;}
.ws11{word-spacing:0.660000px;}
.ws1f{word-spacing:0.690000px;}
.wsfe{word-spacing:0.693000px;}
.ws22{word-spacing:0.759000px;}
.ws125{word-spacing:0.780000px;}
.ws114{word-spacing:0.819000px;}
.ws52{word-spacing:0.828000px;}
.wse{word-spacing:0.840000px;}
.ws64{word-spacing:0.897000px;}
.ws10c{word-spacing:0.945000px;}
.ws6a{word-spacing:0.966000px;}
.ws2e{word-spacing:0.972000px;}
.wsf8{word-spacing:1.008000px;}
.ws12d{word-spacing:1.020000px;}
.ws98{word-spacing:1.035000px;}
.ws20{word-spacing:1.104000px;}
.ws5a{word-spacing:1.173000px;}
.ws33{word-spacing:1.242000px;}
.wsfa{word-spacing:1.260000px;}
.ws50{word-spacing:1.311000px;}
.wsff{word-spacing:1.323000px;}
.ws2d{word-spacing:1.380000px;}
.wseb{word-spacing:1.386000px;}
.ws34{word-spacing:1.449000px;}
.ws4d{word-spacing:1.518000px;}
.ws10{word-spacing:1.560000px;}
.ws100{word-spacing:1.575000px;}
.ws79{word-spacing:1.587000px;}
.ws5c{word-spacing:1.656000px;}
.ws15{word-spacing:1.680000px;}
.ws9f{word-spacing:1.725000px;}
.ws99{word-spacing:1.794000px;}
.ws4f{word-spacing:1.863000px;}
.ws12b{word-spacing:1.920000px;}
.ws7e{word-spacing:1.932000px;}
.ws78{word-spacing:2.001000px;}
.ws89{word-spacing:2.052000px;}
.ws53{word-spacing:2.070000px;}
.wsaa{word-spacing:2.139000px;}
.ws8d{word-spacing:2.208000px;}
.ws54{word-spacing:2.277000px;}
.ws4a{word-spacing:2.346000px;}
.ws102{word-spacing:2.394000px;}
.ws77{word-spacing:2.415000px;}
.ws6d{word-spacing:2.484000px;}
.ws5e{word-spacing:2.553000px;}
.ws70{word-spacing:2.622000px;}
.ws12c{word-spacing:2.640000px;}
.wscc{word-spacing:2.691000px;}
.ws8a{word-spacing:2.754000px;}
.ws31{word-spacing:2.760000px;}
.wse2{word-spacing:2.829000px;}
.wsec{word-spacing:2.835000px;}
.wscf{word-spacing:2.898000px;}
.ws128{word-spacing:2.940000px;}
.ws9a{word-spacing:2.967000px;}
.ws56{word-spacing:2.970000px;}
.ws32{word-spacing:3.036000px;}
.ws9b{word-spacing:3.105000px;}
.ws5d{word-spacing:3.174000px;}
.wsce{word-spacing:3.312000px;}
.ws6b{word-spacing:3.381000px;}
.ws71{word-spacing:3.519000px;}
.wsb9{word-spacing:3.588000px;}
.ws5f{word-spacing:3.657000px;}
.ws60{word-spacing:3.795000px;}
.wse1{word-spacing:3.864000px;}
.ws9c{word-spacing:3.933000px;}
.wsb8{word-spacing:4.140000px;}
.ws90{word-spacing:4.209000px;}
.ws80{word-spacing:4.278000px;}
.wsad{word-spacing:4.347000px;}
.ws55{word-spacing:4.416000px;}
.wsda{word-spacing:4.485000px;}
.wsa1{word-spacing:4.554000px;}
.ws4e{word-spacing:4.761000px;}
.wsbe{word-spacing:4.968000px;}
.wscd{word-spacing:5.037000px;}
.wse3{word-spacing:5.175000px;}
.ws7d{word-spacing:6.210000px;}
.wse4{word-spacing:6.762000px;}
.wsc9{word-spacing:7.935000px;}
.wsab{word-spacing:8.004000px;}
.wsb5{word-spacing:9.108000px;}
.wsca{word-spacing:9.315000px;}
.wscb{word-spacing:10.143000px;}
.wsb4{word-spacing:12.627000px;}
.wsd0{word-spacing:43.445160px;}
._1e{margin-left:-19.683000px;}
._3c{margin-left:-17.447100px;}
._18{margin-left:-14.698800px;}
._16{margin-left:-13.639500px;}
._17{margin-left:-11.504400px;}
._d{margin-left:-9.555300px;}
._c{margin-left:-7.550700px;}
._b{margin-left:-6.349200px;}
._a{margin-left:-4.670100px;}
._8{margin-left:-2.838900px;}
._2{margin-left:-1.373100px;}
._3{width:1.247400px;}
._1{width:2.400000px;}
._9{width:3.829200px;}
._5{width:5.302200px;}
._4{width:6.433800px;}
._6{width:7.506000px;}
._7{width:8.658600px;}
._10{width:10.119180px;}
._13{width:11.825400px;}
._15{width:13.335300px;}
._19{width:14.659200px;}
._1c{width:16.419000px;}
._1b{width:17.849700px;}
._3f{width:19.642200px;}
._3d{width:23.329500px;}
._12{width:27.403200px;}
._2f{width:29.526600px;}
._f{width:36.021000px;}
._14{width:43.445160px;}
._31{width:46.437000px;}
._24{width:47.821500px;}
._1a{width:53.330100px;}
._3e{width:60.924000px;}
._2c{width:64.777200px;}
._37{width:67.087800px;}
._21{width:69.063600px;}
._e{width:71.400000px;}
._23{width:79.285200px;}
._32{width:81.279900px;}
._36{width:82.863600px;}
._22{width:85.299000px;}
._3b{width:88.038600px;}
._20{width:90.336000px;}
._39{width:92.522100px;}
._33{width:97.693200px;}
._1f{width:102.534000px;}
._2e{width:106.798200px;}
._1d{width:111.573000px;}
._2b{width:114.672600px;}
._29{width:117.638100px;}
._35{width:123.717000px;}
._30{width:125.796900px;}
._26{width:129.237000px;}
._38{width:131.348700px;}
._25{width:134.267100px;}
._2d{width:137.303100px;}
._28{width:143.589000px;}
._2a{width:153.939000px;}
._34{width:158.148000px;}
._3a{width:160.886100px;}
._27{width:172.500000px;}
._11{width:253.008000px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fs7{font-size:34.980000px;}
.fsb{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fse{font-size:78.000000px;}
.fs9{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.yed{bottom:106.165350px;}
.y138{bottom:106.168800px;}
.y266{bottom:106.181850px;}
.y66{bottom:106.212450px;}
.y181{bottom:106.245750px;}
.yb3{bottom:106.261500px;}
.y164{bottom:106.264950px;}
.yd9{bottom:106.268850px;}
.y13c{bottom:106.282050px;}
.y1c8{bottom:106.282500px;}
.y112{bottom:106.290300px;}
.y20{bottom:106.296900px;}
.y1a4{bottom:106.299300px;}
.y246{bottom:106.307850px;}
.y226{bottom:106.335450px;}
.y1eb{bottom:106.377900px;}
.y47{bottom:106.519500px;}
.y8c{bottom:109.294800px;}
.y111{bottom:123.543300px;}
.y1c7{bottom:126.551250px;}
.yec{bottom:126.589350px;}
.y225{bottom:126.589950px;}
.y137{bottom:126.592800px;}
.yb2{bottom:126.685500px;}
.y163{bottom:126.688950px;}
.yd8{bottom:127.227600px;}
.y245{bottom:127.239600px;}
.y1ea{bottom:127.319400px;}
.y46{bottom:127.409250px;}
.y1f{bottom:127.626900px;}
.y265{bottom:127.649100px;}
.y65{bottom:127.705950px;}
.y8b{bottom:127.798200px;}
.y180{bottom:130.257750px;}
.y110{bottom:140.796300px;}
.y1c6{bottom:146.820000px;}
.y224{bottom:146.844450px;}
.yeb{bottom:147.013350px;}
.y136{bottom:147.016800px;}
.yb1{bottom:147.109500px;}
.y162{bottom:147.112950px;}
.y13b{bottom:147.130050px;}
.y8a{bottom:148.046700px;}
.yd7{bottom:148.186350px;}
.y1e9{bottom:148.260900px;}
.y45{bottom:148.299000px;}
.y1e{bottom:148.949700px;}
.y264{bottom:149.116350px;}
.y64{bottom:149.199450px;}
.y1a3{bottom:153.204450px;}
.y17f{bottom:154.269750px;}
.y244{bottom:156.676350px;}
.y10f{bottom:161.044800px;}
.yea{bottom:167.437350px;}
.y135{bottom:167.440800px;}
.yb0{bottom:167.533500px;}
.y161{bottom:167.536950px;}
.y13a{bottom:167.554050px;}
.y1d{bottom:168.779700px;}
.yd6{bottom:169.145100px;}
.y44{bottom:169.188750px;}
.y1e8{bottom:169.202400px;}
.y63{bottom:170.692950px;}
.y1a2{bottom:174.456450px;}
.y223{bottom:175.603950px;}
.y243{bottom:177.608100px;}
.y17e{bottom:178.281750px;}
.y263{bottom:179.088600px;}
.ye9{bottom:187.861350px;}
.y134{bottom:187.864800px;}
.yaf{bottom:187.957500px;}
.y160{bottom:187.960950px;}
.y139{bottom:187.978050px;}
.y1c5{bottom:188.334150px;}
.y1c{bottom:188.598150px;}
.y43{bottom:190.078500px;}
.yd5{bottom:190.103850px;}
.y1e7{bottom:190.143900px;}
.y89{bottom:192.082500px;}
.y1a1{bottom:195.708450px;}
.y222{bottom:195.858450px;}
.y262{bottom:200.555850px;}
.y17d{bottom:202.293750px;}
.y15a{bottom:205.086750px;}
.y10e{bottom:205.139850px;}
.y242{bottom:207.044850px;}
.ye8{bottom:208.285350px;}
.y133{bottom:208.288800px;}
.yae{bottom:208.381500px;}
.y15f{bottom:208.384950px;}
.y1b{bottom:208.428150px;}
.y42{bottom:210.968250px;}
.yd4{bottom:211.062600px;}
.y1e6{bottom:211.085400px;}
.y1c4{bottom:212.350650px;}
.y88{bottom:212.385750px;}
.y62{bottom:213.662700px;}
.y221{bottom:216.112950px;}
.y1a0{bottom:216.960450px;}
.y283{bottom:222.763350px;}
.y159{bottom:225.545250px;}
.y10d{bottom:225.650100px;}
.y17c{bottom:226.305750px;}
.y241{bottom:227.976600px;}
.y1a{bottom:228.258150px;}
.ye7{bottom:228.709350px;}
.y132{bottom:228.712800px;}
.yad{bottom:228.805500px;}
.y15e{bottom:228.808950px;}
.y261{bottom:230.528100px;}
.y41{bottom:231.858000px;}
.yd3{bottom:232.021350px;}
.y1e5{bottom:232.026900px;}
.y87{bottom:232.689000px;}
.y61{bottom:235.156200px;}
.y220{bottom:236.367450px;}
.y19f{bottom:238.212450px;}
.y282{bottom:243.017850px;}
.y158{bottom:246.003750px;}
.y10c{bottom:246.160350px;}
.y19{bottom:248.088150px;}
.y240{bottom:248.908350px;}
.ye6{bottom:249.133350px;}
.y131{bottom:249.136800px;}
.yac{bottom:249.229500px;}
.y15d{bottom:249.232950px;}
.y17b{bottom:250.317750px;}
.y40{bottom:252.747750px;}
.y1e4{bottom:252.968400px;}
.yd2{bottom:252.980100px;}
.y86{bottom:252.992250px;}
.y21f{bottom:256.621950px;}
.y60{bottom:256.649700px;}
.y2a0{bottom:257.928900px;}
.y19e{bottom:259.464450px;}
.y260{bottom:260.500350px;}
.y157{bottom:266.462250px;}
.y10b{bottom:266.670600px;}
.y18{bottom:267.918150px;}
.ye5{bottom:269.557350px;}
.y130{bottom:269.560800px;}
.yab{bottom:269.653500px;}
.y15c{bottom:269.656950px;}
.y281{bottom:271.777350px;}
.y85{bottom:273.295500px;}
.y3f{bottom:273.637500px;}
.y1e3{bottom:273.909900px;}
.yd1{bottom:273.938850px;}
.y17a{bottom:274.329750px;}
.y1c3{bottom:274.370100px;}
.y5f{bottom:278.143200px;}
.y29f{bottom:278.178900px;}
.y23f{bottom:278.345100px;}
.y19d{bottom:280.716450px;}
.y21e{bottom:285.381450px;}
.y156{bottom:286.920750px;}
.y10a{bottom:287.180850px;}
.y17{bottom:287.748150px;}
.ye4{bottom:289.981350px;}
.y12f{bottom:289.984800px;}
.yaa{bottom:290.077500px;}
.y15b{bottom:290.080950px;}
.y25f{bottom:290.472600px;}
.y280{bottom:292.031850px;}
.y84{bottom:293.598750px;}
.y3e{bottom:294.527250px;}
.y1c2{bottom:294.638850px;}
.y1e2{bottom:294.851400px;}
.yd0{bottom:294.897600px;}
.y179{bottom:298.341750px;}
.y29e{bottom:298.428900px;}
.y5e{bottom:299.636700px;}
.y19c{bottom:301.968450px;}
.y155{bottom:307.379250px;}
.y16{bottom:307.578150px;}
.y109{bottom:307.691100px;}
.y23e{bottom:307.781850px;}
.ye3{bottom:310.405350px;}
.y12e{bottom:310.408800px;}
.ya9{bottom:310.501500px;}
.y25e{bottom:311.939850px;}
.y27f{bottom:312.286350px;}
.y83{bottom:313.902000px;}
.y1c1{bottom:314.907600px;}
.y3d{bottom:315.417000px;}
.y1e1{bottom:315.792900px;}
.ycf{bottom:315.856350px;}
.y29d{bottom:318.678900px;}
.y5d{bottom:321.130200px;}
.y178{bottom:322.353750px;}
.y19b{bottom:323.220450px;}
.y108{bottom:328.201350px;}
.y23d{bottom:328.713600px;}
.ye2{bottom:330.829350px;}
.y12d{bottom:330.832800px;}
.ya8{bottom:330.894600px;}
.y82{bottom:334.205250px;}
.y1c0{bottom:335.176350px;}
.y3c{bottom:336.306750px;}
.y21d{bottom:336.382350px;}
.y1e0{bottom:336.734400px;}
.yce{bottom:336.815100px;}
.y15{bottom:340.158150px;}
.y27e{bottom:341.045850px;}
.y25d{bottom:341.912100px;}
.y5c{bottom:342.623700px;}
.y19a{bottom:344.472450px;}
.y177{bottom:346.365750px;}
.y107{bottom:348.711600px;}
.y154{bottom:349.102350px;}
.ye1{bottom:351.253350px;}
.y12c{bottom:351.256800px;}
.ya7{bottom:351.318600px;}
.y29c{bottom:351.678900px;}
.y81{bottom:354.508500px;}
.y1bf{bottom:355.445100px;}
.y21c{bottom:356.633850px;}
.y3b{bottom:357.196500px;}
.y1df{bottom:357.675900px;}
.ycd{bottom:357.773850px;}
.y23c{bottom:358.150350px;}
.y27d{bottom:361.300350px;}
.y25c{bottom:363.379350px;}
.y5b{bottom:364.117200px;}
.y199{bottom:365.724450px;}
.y106{bottom:369.221850px;}
.ye0{bottom:371.677350px;}
.y12b{bottom:371.680800px;}
.ya6{bottom:371.742600px;}
.y80{bottom:374.811750px;}
.y1be{bottom:375.713850px;}
.y3a{bottom:378.086250px;}
.y1de{bottom:378.617400px;}
.ycc{bottom:378.732600px;}
.y27c{bottom:381.554850px;}
.y25b{bottom:384.846600px;}
.y5a{bottom:385.610700px;}
.y198{bottom:386.976450px;}
.y23b{bottom:387.587100px;}
.y14{bottom:389.748150px;}
.y105{bottom:389.927850px;}
.ydf{bottom:392.101350px;}
.y12a{bottom:392.104800px;}
.ya5{bottom:392.166600px;}
.y29b{bottom:393.183900px;}
.y7f{bottom:395.115000px;}
.y1bd{bottom:395.982600px;}
.y204{bottom:396.998850px;}
.y39{bottom:398.976000px;}
.y1dd{bottom:399.558900px;}
.ycb{bottom:399.691350px;}
.y59{bottom:407.104200px;}
.y176{bottom:407.275500px;}
.y197{bottom:408.228450px;}
.y23a{bottom:408.518850px;}
.y27b{bottom:410.314350px;}
.y104{bottom:410.438100px;}
.y13{bottom:411.078150px;}
.y153{bottom:411.665850px;}
.yde{bottom:412.525350px;}
.y129{bottom:412.528800px;}
.ya4{bottom:412.590600px;}
.y29a{bottom:412.683900px;}
.y25a{bottom:414.818850px;}
.y7e{bottom:415.418250px;}
.y1bc{bottom:416.251350px;}
.y203{bottom:417.267600px;}
.y21b{bottom:418.285350px;}
.y38{bottom:419.865750px;}
.y1dc{bottom:420.500400px;}
.yca{bottom:420.650100px;}
.y58{bottom:428.597700px;}
.y196{bottom:429.480450px;}
.y27a{bottom:430.568850px;}
.y103{bottom:430.948350px;}
.y175{bottom:431.287500px;}
.y152{bottom:432.124350px;}
.y299{bottom:432.183900px;}
.y12{bottom:432.392700px;}
.ydd{bottom:432.949350px;}
.y128{bottom:432.952800px;}
.ya3{bottom:433.014600px;}
.y7d{bottom:435.721500px;}
.y259{bottom:436.286100px;}
.y1bb{bottom:436.520100px;}
.y202{bottom:437.536350px;}
.y239{bottom:437.955600px;}
.y21a{bottom:439.433850px;}
.y37{bottom:440.755500px;}
.y1db{bottom:441.441900px;}
.yc9{bottom:441.608850px;}
.y57{bottom:450.091200px;}
.y195{bottom:450.732450px;}
.y102{bottom:451.458600px;}
.y298{bottom:451.683900px;}
.y11{bottom:452.222700px;}
.y151{bottom:452.582850px;}
.ydc{bottom:453.373350px;}
.y127{bottom:453.376800px;}
.ya2{bottom:453.438600px;}
.y174{bottom:455.299500px;}
.y7c{bottom:456.024750px;}
.y1ba{bottom:456.788850px;}
.y258{bottom:457.753350px;}
.y201{bottom:457.805100px;}
.y238{bottom:458.887350px;}
.y279{bottom:459.328350px;}
.y219{bottom:460.582350px;}
.y36{bottom:461.645250px;}
.yc8{bottom:462.567600px;}
.y297{bottom:471.183900px;}
.y101{bottom:471.968850px;}
.y194{bottom:471.984450px;}
.y10{bottom:472.052700px;}
.y150{bottom:473.041350px;}
.ydb{bottom:473.797350px;}
.y126{bottom:473.800800px;}
.ya1{bottom:473.862600px;}
.y7b{bottom:476.328000px;}
.y1b9{bottom:477.057600px;}
.y200{bottom:478.073850px;}
.y173{bottom:479.311500px;}
.y278{bottom:479.582850px;}
.y237{bottom:479.819100px;}
.y218{bottom:481.730850px;}
.y35{bottom:482.535000px;}
.yc7{bottom:483.526350px;}
.y1da{bottom:483.648150px;}
.y257{bottom:487.725600px;}
.y296{bottom:490.683900px;}
.yf{bottom:491.882700px;}
.y100{bottom:492.479100px;}
.y56{bottom:492.838050px;}
.y193{bottom:493.236450px;}
.y14f{bottom:493.499850px;}
.yda{bottom:494.221350px;}
.y125{bottom:494.224800px;}
.ya0{bottom:494.286600px;}
.y7a{bottom:496.631250px;}
.y1b8{bottom:497.326350px;}
.y1ff{bottom:498.342600px;}
.y236{bottom:500.750850px;}
.y217{bottom:502.879350px;}
.y34{bottom:503.424750px;}
.yc6{bottom:504.485100px;}
.y277{bottom:508.342350px;}
.y256{bottom:509.192850px;}
.y295{bottom:510.189750px;}
.ye{bottom:511.712700px;}
.yff{bottom:512.989350px;}
.y14e{bottom:513.958350px;}
.y192{bottom:514.488450px;}
.y9f{bottom:514.645350px;}
.y124{bottom:514.648800px;}
.y79{bottom:516.934500px;}
.y1b7{bottom:517.595100px;}
.y1fe{bottom:518.611350px;}
.y216{bottom:524.027850px;}
.y33{bottom:524.314500px;}
.y172{bottom:524.578800px;}
.yc5{bottom:525.443850px;}
.y276{bottom:528.596850px;}
.y294{bottom:529.689750px;}
.y235{bottom:530.187600px;}
.yd{bottom:531.542700px;}
.yfe{bottom:533.499600px;}
.y14d{bottom:534.416850px;}
.y9e{bottom:535.069350px;}
.y123{bottom:535.072800px;}
.y191{bottom:535.740450px;}
.y78{bottom:537.237750px;}
.y1b6{bottom:537.863850px;}
.y1fd{bottom:538.880100px;}
.y255{bottom:539.165100px;}
.y215{bottom:545.176350px;}
.y32{bottom:545.204250px;}
.yc4{bottom:546.402600px;}
.y1d9{bottom:546.695850px;}
.y275{bottom:548.851350px;}
.y293{bottom:549.189750px;}
.y234{bottom:551.119350px;}
.yc{bottom:551.372700px;}
.yfd{bottom:554.009850px;}
.y9d{bottom:555.493350px;}
.y122{bottom:555.496800px;}
.y55{bottom:556.284300px;}
.y190{bottom:556.992450px;}
.y77{bottom:557.541000px;}
.y1b5{bottom:558.132600px;}
.y1fc{bottom:559.148850px;}
.y254{bottom:560.632350px;}
.y31{bottom:566.094000px;}
.y214{bottom:566.324850px;}
.yc3{bottom:567.361350px;}
.y1d8{bottom:567.637350px;}
.y292{bottom:568.689750px;}
.yb{bottom:571.202700px;}
.yfc{bottom:574.520100px;}
.y14c{bottom:575.351100px;}
.y9c{bottom:575.917350px;}
.y121{bottom:575.920800px;}
.y274{bottom:577.610850px;}
.y54{bottom:577.777800px;}
.y76{bottom:577.844250px;}
.y18f{bottom:578.179200px;}
.y1b4{bottom:578.401350px;}
.y1fb{bottom:579.417600px;}
.y233{bottom:580.556100px;}
.y30{bottom:586.983750px;}
.y213{bottom:587.473350px;}
.y291{bottom:588.189750px;}
.yc2{bottom:588.320100px;}
.y1d7{bottom:588.578850px;}
.y171{bottom:590.558850px;}
.y253{bottom:590.604600px;}
.yfb{bottom:595.030350px;}
.y14b{bottom:595.809600px;}
.y9b{bottom:596.341350px;}
.y120{bottom:596.344800px;}
.y273{bottom:597.865350px;}
.y75{bottom:598.147500px;}
.y1b3{bottom:598.670100px;}
.y53{bottom:599.271300px;}
.y18e{bottom:599.431200px;}
.y1fa{bottom:599.686350px;}
.y232{bottom:601.487850px;}
.ya{bottom:603.782700px;}
.y290{bottom:607.689750px;}
.y2f{bottom:607.873500px;}
.y212{bottom:608.621850px;}
.yc1{bottom:609.278850px;}
.y1d6{bottom:609.520350px;}
.y252{bottom:612.071850px;}
.y170{bottom:614.570850px;}
.yfa{bottom:615.540600px;}
.y14a{bottom:616.268100px;}
.y9a{bottom:616.765350px;}
.y11f{bottom:616.768800px;}
.y74{bottom:618.450750px;}
.y1b2{bottom:618.938850px;}
.y1f9{bottom:619.955100px;}
.y18d{bottom:620.683200px;}
.y52{bottom:620.764800px;}
.y272{bottom:626.624850px;}
.y28f{bottom:627.189750px;}
.y2e{bottom:628.763250px;}
.y211{bottom:629.770350px;}
.yc0{bottom:630.237600px;}
.y1d5{bottom:630.461850px;}
.y231{bottom:630.924600px;}
.y251{bottom:633.539100px;}
.yf9{bottom:636.050850px;}
.y149{bottom:636.726600px;}
.y99{bottom:637.189350px;}
.y11e{bottom:637.192800px;}
.y16f{bottom:638.582850px;}
.y73{bottom:638.754000px;}
.y1b1{bottom:639.207600px;}
.y1f8{bottom:640.223850px;}
.y18c{bottom:641.935200px;}
.y51{bottom:642.258300px;}
.y28e{bottom:646.689750px;}
.y271{bottom:646.879350px;}
.y2d{bottom:649.653000px;}
.y210{bottom:650.918850px;}
.ybf{bottom:651.196350px;}
.y1d4{bottom:651.403350px;}
.y230{bottom:651.856350px;}
.y250{bottom:655.006350px;}
.yf8{bottom:656.561100px;}
.y148{bottom:657.185100px;}
.y98{bottom:657.613350px;}
.y11d{bottom:657.616800px;}
.y72{bottom:659.057250px;}
.y1b0{bottom:659.476350px;}
.y1f7{bottom:660.492600px;}
.y9{bottom:661.884600px;}
.y16e{bottom:662.594850px;}
.y18b{bottom:663.187200px;}
.y50{bottom:663.751800px;}
.y28d{bottom:666.189750px;}
.y2c{bottom:670.542750px;}
.y20f{bottom:672.067350px;}
.ybe{bottom:672.155100px;}
.y1d3{bottom:672.344850px;}
.y270{bottom:675.638850px;}
.yf7{bottom:677.071350px;}
.y147{bottom:677.643600px;}
.y97{bottom:678.037350px;}
.y11c{bottom:678.040800px;}
.y71{bottom:679.360500px;}
.y1af{bottom:679.745100px;}
.y1f6{bottom:680.761350px;}
.y22f{bottom:681.293100px;}
.y18a{bottom:684.439200px;}
.y24f{bottom:684.978600px;}
.y4f{bottom:685.245300px;}
.y28c{bottom:685.689750px;}
.y16d{bottom:686.606850px;}
.y8{bottom:689.205600px;}
.y2b{bottom:691.432500px;}
.ybd{bottom:693.113850px;}
.y20e{bottom:693.215850px;}
.y1d2{bottom:693.286350px;}
.y26f{bottom:695.893350px;}
.yf6{bottom:697.581600px;}
.y146{bottom:698.102100px;}
.y96{bottom:698.461350px;}
.y11b{bottom:698.464800px;}
.y70{bottom:699.663750px;}
.y1ae{bottom:700.013850px;}
.y1f5{bottom:701.030100px;}
.y22e{bottom:702.224850px;}
.y28b{bottom:705.189750px;}
.y189{bottom:705.691200px;}
.y24e{bottom:706.445850px;}
.y4e{bottom:706.738800px;}
.y16c{bottom:710.618850px;}
.y2a{bottom:712.322250px;}
.ybc{bottom:714.072600px;}
.y1d1{bottom:714.227850px;}
.y20d{bottom:714.364350px;}
.yf5{bottom:718.091850px;}
.y145{bottom:718.560600px;}
.y95{bottom:718.885350px;}
.y11a{bottom:718.888800px;}
.y6f{bottom:719.967000px;}
.y1ad{bottom:720.282600px;}
.y1f4{bottom:721.298850px;}
.y22d{bottom:723.156600px;}
.y26e{bottom:724.652850px;}
.y28a{bottom:724.689750px;}
.y188{bottom:726.943200px;}
.y24d{bottom:727.913100px;}
.y4d{bottom:728.232300px;}
.y29{bottom:733.212000px;}
.y16b{bottom:734.630850px;}
.ybb{bottom:735.031350px;}
.y1d0{bottom:735.169350px;}
.y20c{bottom:735.512850px;}
.y7{bottom:737.787600px;}
.yf4{bottom:738.602100px;}
.y144{bottom:739.019100px;}
.y94{bottom:739.309350px;}
.y119{bottom:739.312800px;}
.y6e{bottom:740.275350px;}
.y1ac{bottom:740.551350px;}
.y1f3{bottom:741.567600px;}
.y289{bottom:744.189750px;}
.y26d{bottom:744.907350px;}
.y187{bottom:748.195200px;}
.y24c{bottom:749.380350px;}
.y4c{bottom:749.725800px;}
.y22c{bottom:752.593350px;}
.y28{bottom:754.101750px;}
.yba{bottom:755.990100px;}
.y1cf{bottom:756.110850px;}
.y20b{bottom:756.661350px;}
.y16a{bottom:758.642850px;}
.y143{bottom:759.477600px;}
.y93{bottom:759.733350px;}
.y118{bottom:759.736800px;}
.y6d{bottom:760.578600px;}
.y1ab{bottom:760.820100px;}
.y1f2{bottom:761.836350px;}
.y288{bottom:763.689750px;}
.y26c{bottom:765.161850px;}
.y186{bottom:769.447200px;}
.y6{bottom:769.620600px;}
.y24b{bottom:770.847600px;}
.y22b{bottom:773.525100px;}
.y27{bottom:774.991500px;}
.yb9{bottom:776.948850px;}
.y1ce{bottom:777.052350px;}
.y20a{bottom:777.809850px;}
.yf3{bottom:779.639850px;}
.y142{bottom:779.936100px;}
.y92{bottom:780.157350px;}
.y117{bottom:780.160800px;}
.y6c{bottom:780.881850px;}
.y1aa{bottom:781.088850px;}
.y1f1{bottom:782.105100px;}
.y169{bottom:782.654850px;}
.y287{bottom:783.189750px;}
.y185{bottom:790.699200px;}
.y4b{bottom:792.478200px;}
.y26b{bottom:793.921350px;}
.y26{bottom:795.881250px;}
.yb8{bottom:797.907600px;}
.y1cd{bottom:797.993850px;}
.y209{bottom:798.958350px;}
.yf2{bottom:800.150100px;}
.y141{bottom:800.394600px;}
.y91{bottom:800.581350px;}
.y116{bottom:800.584800px;}
.y24a{bottom:800.819850px;}
.y6b{bottom:801.185100px;}
.y1a9{bottom:801.357600px;}
.y1f0{bottom:802.373850px;}
.y22a{bottom:802.961850px;}
.y168{bottom:806.666850px;}
.y184{bottom:811.951200px;}
.y26a{bottom:814.175850px;}
.y286{bottom:815.439750px;}
.y25{bottom:816.771000px;}
.y4a{bottom:817.709700px;}
.yb7{bottom:818.866350px;}
.y1cc{bottom:818.935350px;}
.y208{bottom:820.106850px;}
.yf1{bottom:820.660350px;}
.y140{bottom:820.853100px;}
.y90{bottom:821.005350px;}
.y115{bottom:821.008800px;}
.y6a{bottom:821.488350px;}
.y1a8{bottom:821.626350px;}
.y249{bottom:822.287100px;}
.y1ef{bottom:822.642600px;}
.y229{bottom:823.893600px;}
.y167{bottom:830.665350px;}
.y5{bottom:831.206250px;}
.y183{bottom:833.203200px;}
.y269{bottom:834.430350px;}
.y24{bottom:837.660750px;}
.yb6{bottom:839.825100px;}
.y1cb{bottom:839.876850px;}
.yf0{bottom:841.170600px;}
.y207{bottom:841.255350px;}
.y13f{bottom:841.325850px;}
.y8f{bottom:841.429350px;}
.y114{bottom:841.432800px;}
.y69{bottom:841.791600px;}
.y1a7{bottom:841.895100px;}
.y1ee{bottom:842.911350px;}
.y248{bottom:852.259350px;}
.y4{bottom:852.536250px;}
.y228{bottom:853.330350px;}
.y166{bottom:854.677350px;}
.y268{bottom:854.684850px;}
.y23{bottom:858.550500px;}
.yb5{bottom:860.783850px;}
.y1ca{bottom:860.818350px;}
.yef{bottom:861.680850px;}
.y13e{bottom:861.784350px;}
.y8e{bottom:861.853350px;}
.y113{bottom:861.856800px;}
.y68{bottom:862.094850px;}
.y1a6{bottom:862.163850px;}
.y206{bottom:862.403850px;}
.y1ed{bottom:863.180100px;}
.y285{bottom:873.201450px;}
.y227{bottom:874.262100px;}
.y182{bottom:875.717700px;}
.y165{bottom:878.689350px;}
.y49{bottom:881.207850px;}
.yb4{bottom:881.742600px;}
.y1c9{bottom:881.759850px;}
.yee{bottom:882.191100px;}
.y247{bottom:882.231600px;}
.y13d{bottom:882.242850px;}
.y8d{bottom:882.277350px;}
.y3{bottom:882.371250px;}
.y67{bottom:882.398100px;}
.y1a5{bottom:882.432600px;}
.y267{bottom:883.444350px;}
.y1ec{bottom:883.448850px;}
.y205{bottom:883.552350px;}
.y284{bottom:900.207450px;}
.y22{bottom:900.706200px;}
.y48{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:948.189000px;}
.h14{height:21.720735px;}
.hb{height:40.620539px;}
.h8{height:46.757812px;}
.hc{height:52.602539px;}
.h15{height:55.488281px;}
.h4{height:58.447266px;}
.h7{height:58.493466px;}
.h3{height:61.369629px;}
.h12{height:67.157355px;}
.ha{height:67.214355px;}
.hf{height:67.228155px;}
.h13{height:67.268355px;}
.he{height:67.337955px;}
.hd{height:67.475355px;}
.h10{height:67.598955px;}
.h2{height:73.059082px;}
.h11{height:76.448245px;}
.h9{height:78.903809px;}
.h6{height:81.826172px;}
.h5{height:105.205078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:81.045600px;}
.x5{left:82.214250px;}
.x8{left:83.847150px;}
.x1{left:85.039350px;}
.x7{left:103.730550px;}
.x4{left:105.029250px;}
.x3{left:106.365600px;}
.x6{left:201.489600px;}
.x2{left:233.635500px;}
.xa{left:368.999400px;}
.x9{left:370.189650px;}
@media print{
.v4{vertical-align:-15.090667pt;}
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.467733pt;}
.v2{vertical-align:15.072533pt;}
.ls9f{letter-spacing:-11.224000pt;}
.ls1a{letter-spacing:-6.552000pt;}
.ls6a{letter-spacing:-6.194667pt;}
.ls84{letter-spacing:-5.949333pt;}
.lsa5{letter-spacing:-5.826667pt;}
.ls59{letter-spacing:-5.642667pt;}
.lsbe{letter-spacing:-4.845333pt;}
.lsbd{letter-spacing:-4.600000pt;}
.lsaa{letter-spacing:-4.416000pt;}
.lsb0{letter-spacing:-4.354667pt;}
.ls3e{letter-spacing:-4.232000pt;}
.ls8b{letter-spacing:-4.048000pt;}
.lsb8{letter-spacing:-3.986667pt;}
.ls43{letter-spacing:-3.925333pt;}
.ls97{letter-spacing:-3.864000pt;}
.ls6c{letter-spacing:-3.802667pt;}
.lse6{letter-spacing:-3.752000pt;}
.ls7c{letter-spacing:-3.741333pt;}
.ls95{letter-spacing:-3.733333pt;}
.lsa2{letter-spacing:-3.680000pt;}
.ls8d{letter-spacing:-3.618667pt;}
.ls86{letter-spacing:-3.496000pt;}
.ls6f{letter-spacing:-3.466667pt;}
.lsbb{letter-spacing:-3.434667pt;}
.ls50{letter-spacing:-3.373333pt;}
.ls4f{letter-spacing:-3.250667pt;}
.lsa3{letter-spacing:-3.189333pt;}
.ls61{letter-spacing:-3.128000pt;}
.ls57{letter-spacing:-3.005333pt;}
.lsae{letter-spacing:-2.944000pt;}
.ls4c{letter-spacing:-2.821333pt;}
.ls85{letter-spacing:-2.760000pt;}
.ls2e{letter-spacing:-2.698667pt;}
.ls49{letter-spacing:-2.640000pt;}
.ls83{letter-spacing:-2.637333pt;}
.lsf9{letter-spacing:-2.613333pt;}
.lsaf{letter-spacing:-2.576000pt;}
.lsc6{letter-spacing:-2.520000pt;}
.lsbc{letter-spacing:-2.514667pt;}
.ls2c{letter-spacing:-2.453333pt;}
.ls76{letter-spacing:-2.448000pt;}
.ls78{letter-spacing:-2.392000pt;}
.lsff{letter-spacing:-2.346667pt;}
.ls60{letter-spacing:-2.330667pt;}
.ls4d{letter-spacing:-2.269333pt;}
.ls51{letter-spacing:-2.208000pt;}
.ls18{letter-spacing:-2.200000pt;}
.ls67{letter-spacing:-2.146667pt;}
.lsd9{letter-spacing:-2.128000pt;}
.ls37{letter-spacing:-2.085333pt;}
.ls42{letter-spacing:-2.024000pt;}
.ls30{letter-spacing:-1.962667pt;}
.ls38{letter-spacing:-1.901333pt;}
.ls41{letter-spacing:-1.840000pt;}
.ls75{letter-spacing:-1.824000pt;}
.ls40{letter-spacing:-1.778667pt;}
.ls2b{letter-spacing:-1.717333pt;}
.lsfe{letter-spacing:-1.706667pt;}
.ls31{letter-spacing:-1.656000pt;}
.ls29{letter-spacing:-1.594667pt;}
.lsd2{letter-spacing:-1.568000pt;}
.lsfa{letter-spacing:-1.546667pt;}
.ls4e{letter-spacing:-1.533333pt;}
.ls12{letter-spacing:-1.493333pt;}
.ls3a{letter-spacing:-1.472000pt;}
.lsf6{letter-spacing:-1.440000pt;}
.ls58{letter-spacing:-1.410667pt;}
.lsd7{letter-spacing:-1.400000pt;}
.lsa{letter-spacing:-1.386667pt;}
.ls3d{letter-spacing:-1.349333pt;}
.ls32{letter-spacing:-1.288000pt;}
.lsc5{letter-spacing:-1.232000pt;}
.ls26{letter-spacing:-1.226667pt;}
.lsd6{letter-spacing:-1.176000pt;}
.ls1f{letter-spacing:-1.165333pt;}
.lsce{letter-spacing:-1.120000pt;}
.ls2d{letter-spacing:-1.104000pt;}
.ls10{letter-spacing:-1.066667pt;}
.lsd3{letter-spacing:-1.064000pt;}
.ls2f{letter-spacing:-1.042667pt;}
.lsed{letter-spacing:-1.008000pt;}
.ls1d{letter-spacing:-0.981333pt;}
.lsf7{letter-spacing:-0.960000pt;}
.ls1b{letter-spacing:-0.920000pt;}
.ls100{letter-spacing:-0.906667pt;}
.lscc{letter-spacing:-0.896000pt;}
.ls27{letter-spacing:-0.864000pt;}
.ls3b{letter-spacing:-0.858667pt;}
.lse2{letter-spacing:-0.840000pt;}
.ls96{letter-spacing:-0.832000pt;}
.ls48{letter-spacing:-0.816000pt;}
.ls20{letter-spacing:-0.797333pt;}
.ls73{letter-spacing:-0.768000pt;}
.ls8{letter-spacing:-0.746667pt;}
.ls39{letter-spacing:-0.736000pt;}
.lsb4{letter-spacing:-0.733333pt;}
.lse4{letter-spacing:-0.728000pt;}
.lsf5{letter-spacing:-0.693333pt;}
.ls21{letter-spacing:-0.674667pt;}
.lsd4{letter-spacing:-0.616000pt;}
.ls1c{letter-spacing:-0.613333pt;}
.lsb{letter-spacing:-0.586667pt;}
.ls47{letter-spacing:-0.576000pt;}
.lscb{letter-spacing:-0.560000pt;}
.ls5b{letter-spacing:-0.552000pt;}
.lsb1{letter-spacing:-0.528000pt;}
.lscd{letter-spacing:-0.504000pt;}
.ls5c{letter-spacing:-0.490667pt;}
.ls74{letter-spacing:-0.480000pt;}
.lsc8{letter-spacing:-0.448000pt;}
.ls28{letter-spacing:-0.429333pt;}
.lsc7{letter-spacing:-0.392000pt;}
.ls4{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.373333pt;}
.ls22{letter-spacing:-0.368000pt;}
.lsd1{letter-spacing:-0.336000pt;}
.ls69{letter-spacing:-0.306667pt;}
.ls45{letter-spacing:-0.288000pt;}
.lsda{letter-spacing:-0.280000pt;}
.ls15{letter-spacing:-0.266667pt;}
.ls54{letter-spacing:-0.245333pt;}
.lse7{letter-spacing:-0.224000pt;}
.lsf8{letter-spacing:-0.213333pt;}
.ls44{letter-spacing:-0.192000pt;}
.ls36{letter-spacing:-0.184000pt;}
.lsd5{letter-spacing:-0.168000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls9c{letter-spacing:-0.144000pt;}
.ls4b{letter-spacing:-0.122667pt;}
.lsfc{letter-spacing:-0.106667pt;}
.lsc1{letter-spacing:-0.072000pt;}
.ls66{letter-spacing:-0.061333pt;}
.lsd0{letter-spacing:-0.056000pt;}
.lsfb{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls80{letter-spacing:0.000267pt;}
.lse8{letter-spacing:0.056000pt;}
.ls3c{letter-spacing:0.061333pt;}
.ls11{letter-spacing:0.106667pt;}
.lse0{letter-spacing:0.112000pt;}
.lsc0{letter-spacing:0.122667pt;}
.lsee{letter-spacing:0.168000pt;}
.ls79{letter-spacing:0.184000pt;}
.lsf4{letter-spacing:0.213333pt;}
.ls25{letter-spacing:0.216000pt;}
.ls70{letter-spacing:0.245333pt;}
.lsec{letter-spacing:0.280000pt;}
.ls8a{letter-spacing:0.306667pt;}
.ls46{letter-spacing:0.336000pt;}
.ls52{letter-spacing:0.368000pt;}
.lsfd{letter-spacing:0.373333pt;}
.ls1{letter-spacing:0.426667pt;}
.ls5d{letter-spacing:0.429333pt;}
.ls71{letter-spacing:0.490667pt;}
.ls34{letter-spacing:0.521333pt;}
.ls56{letter-spacing:0.552000pt;}
.lsf1{letter-spacing:0.640000pt;}
.lsa7{letter-spacing:0.674667pt;}
.lsde{letter-spacing:0.728000pt;}
.ls8c{letter-spacing:0.736000pt;}
.lse5{letter-spacing:0.784000pt;}
.ls23{letter-spacing:0.797333pt;}
.lsdd{letter-spacing:0.840000pt;}
.ls7b{letter-spacing:0.858667pt;}
.ls53{letter-spacing:0.920000pt;}
.ls1e{letter-spacing:0.981333pt;}
.ls3f{letter-spacing:1.042667pt;}
.lsc9{letter-spacing:1.064000pt;}
.ls72{letter-spacing:1.104000pt;}
.ls13{letter-spacing:1.119360pt;}
.ls19{letter-spacing:1.120000pt;}
.lsa1{letter-spacing:1.165333pt;}
.ls6e{letter-spacing:1.165600pt;}
.lsdc{letter-spacing:1.232000pt;}
.ls9b{letter-spacing:1.248000pt;}
.lsf2{letter-spacing:1.264000pt;}
.ls6b{letter-spacing:1.410667pt;}
.lsa0{letter-spacing:1.472000pt;}
.ls94{letter-spacing:1.533333pt;}
.ls5{letter-spacing:1.568000pt;}
.ls8f{letter-spacing:1.594667pt;}
.ls89{letter-spacing:1.656000pt;}
.lsad{letter-spacing:1.846133pt;}
.lsb3{letter-spacing:1.852267pt;}
.lsb5{letter-spacing:1.901333pt;}
.lse3{letter-spacing:1.904000pt;}
.ls98{letter-spacing:1.962667pt;}
.ls87{letter-spacing:2.085333pt;}
.ls35{letter-spacing:2.085600pt;}
.ls17{letter-spacing:2.133333pt;}
.ls5a{letter-spacing:2.146667pt;}
.ls64{letter-spacing:2.269333pt;}
.lseb{letter-spacing:2.296000pt;}
.lsef{letter-spacing:2.408000pt;}
.lse1{letter-spacing:2.464000pt;}
.lsa4{letter-spacing:2.514667pt;}
.lsa6{letter-spacing:2.576000pt;}
.ls7a{letter-spacing:2.698667pt;}
.ls2a{letter-spacing:2.944000pt;}
.lsb6{letter-spacing:3.005333pt;}
.ls68{letter-spacing:3.066667pt;}
.ls5f{letter-spacing:3.189333pt;}
.ls14{letter-spacing:3.285333pt;}
.ls9e{letter-spacing:3.434667pt;}
.lsc3{letter-spacing:3.472000pt;}
.ls5e{letter-spacing:3.557333pt;}
.lsb9{letter-spacing:3.618667pt;}
.ls9a{letter-spacing:3.680000pt;}
.lse{letter-spacing:3.733333pt;}
.lsac{letter-spacing:3.986667pt;}
.lsd{letter-spacing:4.000000pt;}
.lsba{letter-spacing:4.293333pt;}
.ls7e{letter-spacing:4.416000pt;}
.lsa9{letter-spacing:4.538667pt;}
.ls88{letter-spacing:4.661333pt;}
.ls101{letter-spacing:4.853333pt;}
.ls99{letter-spacing:4.863733pt;}
.ls65{letter-spacing:5.029333pt;}
.ls6{letter-spacing:5.120000pt;}
.lse9{letter-spacing:5.152000pt;}
.lsca{letter-spacing:5.208000pt;}
.lsb7{letter-spacing:5.213333pt;}
.lsf{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.lsab{letter-spacing:5.397333pt;}
.lscf{letter-spacing:5.432000pt;}
.ls91{letter-spacing:5.470933pt;}
.lsc4{letter-spacing:5.600000pt;}
.lsdf{letter-spacing:5.768000pt;}
.ls82{letter-spacing:5.888000pt;}
.ls92{letter-spacing:5.930933pt;}
.ls9{letter-spacing:5.973333pt;}
.lsea{letter-spacing:5.992000pt;}
.ls81{letter-spacing:6.072000pt;}
.ls90{letter-spacing:6.256000pt;}
.ls93{letter-spacing:6.501333pt;}
.lsd8{letter-spacing:6.664000pt;}
.ls63{letter-spacing:7.360000pt;}
.lsf3{letter-spacing:7.680000pt;}
.ls7d{letter-spacing:11.592000pt;}
.lsb2{letter-spacing:421.348267pt;}
.lsf0{letter-spacing:421.528000pt;}
.ls33{letter-spacing:421.901333pt;}
.lsc2{letter-spacing:421.914667pt;}
.lsdb{letter-spacing:421.941333pt;}
.ls55{letter-spacing:422.068267pt;}
.lsbf{letter-spacing:422.181333pt;}
.ls16{letter-spacing:422.294933pt;}
.ls7f{letter-spacing:425.421333pt;}
.ls6d{letter-spacing:426.868267pt;}
.lsa8{letter-spacing:427.234667pt;}
.ls9d{letter-spacing:427.561600pt;}
.ls8e{letter-spacing:428.414933pt;}
.ls62{letter-spacing:846.686933pt;}
.ls0{letter-spacing:847.126933pt;}
.ls24{letter-spacing:849.460267pt;}
.ls4a{letter-spacing:853.060267pt;}
.ls77{letter-spacing:854.820267pt;}
.wsc2{word-spacing:-60.965333pt;}
.wsd6{word-spacing:-60.842667pt;}
.wsd3{word-spacing:-60.781333pt;}
.ws11d{word-spacing:-53.973333pt;}
.ws122{word-spacing:-53.120000pt;}
.ws11c{word-spacing:-22.666667pt;}
.ws25{word-spacing:-20.232000pt;}
.ws4{word-spacing:-20.213333pt;}
.wse6{word-spacing:-20.160000pt;}
.ws0{word-spacing:-20.106667pt;}
.wse8{word-spacing:-19.208000pt;}
.wsa8{word-spacing:-18.650667pt;}
.wsd1{word-spacing:-18.000000pt;}
.ws36{word-spacing:-17.234667pt;}
.wsde{word-spacing:-17.112000pt;}
.wsae{word-spacing:-17.050667pt;}
.wsc3{word-spacing:-16.989333pt;}
.wsc1{word-spacing:-16.866667pt;}
.wsf2{word-spacing:-16.800000pt;}
.wsc7{word-spacing:-16.621333pt;}
.ws105{word-spacing:-16.576000pt;}
.wse0{word-spacing:-16.560000pt;}
.ws18{word-spacing:-16.533333pt;}
.ws73{word-spacing:-16.498667pt;}
.wse9{word-spacing:-16.437333pt;}
.ws9d{word-spacing:-16.130667pt;}
.wsd4{word-spacing:-16.069333pt;}
.ws111{word-spacing:-16.016000pt;}
.wsa5{word-spacing:-16.008000pt;}
.ws96{word-spacing:-15.946667pt;}
.ws10f{word-spacing:-15.792000pt;}
.wsbd{word-spacing:-15.701333pt;}
.ws69{word-spacing:-15.578667pt;}
.wsb2{word-spacing:-15.456000pt;}
.wsf4{word-spacing:-15.400000pt;}
.wsd2{word-spacing:-15.394667pt;}
.ws121{word-spacing:-15.360000pt;}
.ws104{word-spacing:-15.344000pt;}
.ws75{word-spacing:-15.333333pt;}
.ws81{word-spacing:-15.266667pt;}
.wsa4{word-spacing:-15.210667pt;}
.ws35{word-spacing:-15.149333pt;}
.ws82{word-spacing:-15.026667pt;}
.wsa3{word-spacing:-15.000000pt;}
.ws1{word-spacing:-14.986667pt;}
.ws93{word-spacing:-14.965333pt;}
.wsd5{word-spacing:-14.904000pt;}
.ws8c{word-spacing:-14.842667pt;}
.ws3{word-spacing:-14.826667pt;}
.ws3e{word-spacing:-14.781333pt;}
.ws3d{word-spacing:-14.720000pt;}
.wsf0{word-spacing:-14.672000pt;}
.ws68{word-spacing:-14.658667pt;}
.ws74{word-spacing:-14.597333pt;}
.ws43{word-spacing:-14.536000pt;}
.wsa7{word-spacing:-14.474667pt;}
.ws39{word-spacing:-14.413333pt;}
.ws1d{word-spacing:-14.352000pt;}
.ws3b{word-spacing:-14.290667pt;}
.ws1b{word-spacing:-14.229333pt;}
.ws42{word-spacing:-14.168000pt;}
.ws29{word-spacing:-14.106667pt;}
.ws28{word-spacing:-14.045333pt;}
.ws1c{word-spacing:-13.984000pt;}
.ws37{word-spacing:-13.922667pt;}
.ws3f{word-spacing:-13.861333pt;}
.ws3c{word-spacing:-13.800000pt;}
.ws66{word-spacing:-13.738667pt;}
.ws1a{word-spacing:-13.680000pt;}
.ws3a{word-spacing:-13.677333pt;}
.wsf1{word-spacing:-13.664000pt;}
.ws57{word-spacing:-13.616000pt;}
.ws26{word-spacing:-13.554667pt;}
.wsf3{word-spacing:-13.496000pt;}
.ws2b{word-spacing:-13.493333pt;}
.ws27{word-spacing:-13.432000pt;}
.ws41{word-spacing:-13.370667pt;}
.ws65{word-spacing:-13.309333pt;}
.ws6{word-spacing:-13.280000pt;}
.ws38{word-spacing:-13.248000pt;}
.ws110{word-spacing:-13.216000pt;}
.ws2a{word-spacing:-13.186667pt;}
.wsc4{word-spacing:-13.125333pt;}
.ws40{word-spacing:-13.064000pt;}
.ws123{word-spacing:-13.013333pt;}
.ws95{word-spacing:-13.002667pt;}
.ws59{word-spacing:-12.941333pt;}
.ws47{word-spacing:-12.912000pt;}
.ws112{word-spacing:-12.824000pt;}
.wsc6{word-spacing:-12.818667pt;}
.ws2{word-spacing:-12.800000pt;}
.ws8b{word-spacing:-12.757333pt;}
.ws8{word-spacing:-12.586667pt;}
.wsa6{word-spacing:-12.450667pt;}
.wsef{word-spacing:-12.264000pt;}
.ws11f{word-spacing:-12.213333pt;}
.wsc5{word-spacing:-12.205333pt;}
.ws46{word-spacing:-12.192000pt;}
.ws5{word-spacing:-12.106667pt;}
.ws10e{word-spacing:-11.984000pt;}
.ws11e{word-spacing:-11.733333pt;}
.ws44{word-spacing:-11.664000pt;}
.ws120{word-spacing:-11.626667pt;}
.ws19{word-spacing:-11.610667pt;}
.ws91{word-spacing:-11.592000pt;}
.ws45{word-spacing:-11.568000pt;}
.ws9e{word-spacing:-11.530667pt;}
.ws84{word-spacing:-11.376000pt;}
.wsc8{word-spacing:-11.328000pt;}
.wsb1{word-spacing:-11.224000pt;}
.ws83{word-spacing:-11.088000pt;}
.ws48{word-spacing:-11.040000pt;}
.ws85{word-spacing:-10.752000pt;}
.wsdf{word-spacing:-10.304000pt;}
.ws58{word-spacing:-10.047811pt;}
.ws7{word-spacing:-9.856587pt;}
.ws67{word-spacing:-9.506667pt;}
.wsb7{word-spacing:-9.322667pt;}
.ws94{word-spacing:-9.200000pt;}
.ws76{word-spacing:-8.954667pt;}
.ws101{word-spacing:-6.664000pt;}
.ws118{word-spacing:-5.992000pt;}
.wsf{word-spacing:-5.973333pt;}
.ws97{word-spacing:-5.888000pt;}
.ws109{word-spacing:-5.768000pt;}
.wsea{word-spacing:-5.600000pt;}
.wsfb{word-spacing:-5.432000pt;}
.wsbf{word-spacing:-5.397333pt;}
.wsa{word-spacing:-5.333333pt;}
.wsd9{word-spacing:-5.213333pt;}
.wsf6{word-spacing:-5.208000pt;}
.ws117{word-spacing:-5.152000pt;}
.ws12e{word-spacing:-4.853333pt;}
.ws92{word-spacing:-4.416000pt;}
.wsdd{word-spacing:-4.293333pt;}
.ws12{word-spacing:-4.000000pt;}
.wsc0{word-spacing:-3.986667pt;}
.ws13{word-spacing:-3.733333pt;}
.wse5{word-spacing:-3.680000pt;}
.wsdc{word-spacing:-3.618667pt;}
.ws6e{word-spacing:-3.557333pt;}
.wsb3{word-spacing:-3.434667pt;}
.ws16{word-spacing:-3.285333pt;}
.ws6f{word-spacing:-3.189333pt;}
.ws7b{word-spacing:-3.066667pt;}
.wsd8{word-spacing:-3.005333pt;}
.ws30{word-spacing:-2.944000pt;}
.ws8e{word-spacing:-2.698667pt;}
.wsbb{word-spacing:-2.576000pt;}
.wsba{word-spacing:-2.514667pt;}
.ws10b{word-spacing:-2.464000pt;}
.ws11b{word-spacing:-2.408000pt;}
.ws119{word-spacing:-2.296000pt;}
.ws4b{word-spacing:-2.146667pt;}
.ws1e{word-spacing:-2.133333pt;}
.wsdb{word-spacing:-1.962667pt;}
.ws10d{word-spacing:-1.904000pt;}
.wsd7{word-spacing:-1.901333pt;}
.wsa9{word-spacing:-1.594667pt;}
.wsc{word-spacing:-1.568000pt;}
.wsb6{word-spacing:-1.472000pt;}
.ws7f{word-spacing:-1.410667pt;}
.wsaf{word-spacing:-1.248000pt;}
.ws106{word-spacing:-1.232000pt;}
.ws88{word-spacing:-1.104000pt;}
.wsf5{word-spacing:-1.064000pt;}
.ws51{word-spacing:-1.042667pt;}
.ws21{word-spacing:-0.981333pt;}
.ws62{word-spacing:-0.920000pt;}
.ws8f{word-spacing:-0.858667pt;}
.ws113{word-spacing:-0.840000pt;}
.ws24{word-spacing:-0.797333pt;}
.ws115{word-spacing:-0.784000pt;}
.wsa2{word-spacing:-0.736000pt;}
.ws107{word-spacing:-0.728000pt;}
.wsbc{word-spacing:-0.674667pt;}
.ws72{word-spacing:-0.552000pt;}
.ws87{word-spacing:-0.490667pt;}
.ws61{word-spacing:-0.368000pt;}
.wsa0{word-spacing:-0.306667pt;}
.ws86{word-spacing:-0.245333pt;}
.ws2c{word-spacing:-0.216000pt;}
.ws124{word-spacing:-0.213333pt;}
.ws11a{word-spacing:-0.168000pt;}
.wse7{word-spacing:-0.122667pt;}
.ws10a{word-spacing:-0.112000pt;}
.ws4c{word-spacing:-0.061333pt;}
.ws9{word-spacing:0.000000pt;}
.ws129{word-spacing:0.053333pt;}
.wsfc{word-spacing:0.056000pt;}
.ws7a{word-spacing:0.061333pt;}
.ws12a{word-spacing:0.106667pt;}
.ws5b{word-spacing:0.122667pt;}
.wsb0{word-spacing:0.144000pt;}
.wsd{word-spacing:0.160000pt;}
.ws108{word-spacing:0.168000pt;}
.ws49{word-spacing:0.184000pt;}
.ws127{word-spacing:0.213333pt;}
.ws116{word-spacing:0.224000pt;}
.ws63{word-spacing:0.245333pt;}
.ws17{word-spacing:0.266667pt;}
.ws103{word-spacing:0.280000pt;}
.ws7c{word-spacing:0.306667pt;}
.wsfd{word-spacing:0.336000pt;}
.ws23{word-spacing:0.368000pt;}
.ws14{word-spacing:0.373333pt;}
.wsb{word-spacing:0.384000pt;}
.wsed{word-spacing:0.392000pt;}
.ws2f{word-spacing:0.429333pt;}
.wsee{word-spacing:0.448000pt;}
.ws126{word-spacing:0.480000pt;}
.wsac{word-spacing:0.490667pt;}
.wsf9{word-spacing:0.504000pt;}
.ws6c{word-spacing:0.552000pt;}
.wsf7{word-spacing:0.560000pt;}
.ws11{word-spacing:0.586667pt;}
.ws1f{word-spacing:0.613333pt;}
.wsfe{word-spacing:0.616000pt;}
.ws22{word-spacing:0.674667pt;}
.ws125{word-spacing:0.693333pt;}
.ws114{word-spacing:0.728000pt;}
.ws52{word-spacing:0.736000pt;}
.wse{word-spacing:0.746667pt;}
.ws64{word-spacing:0.797333pt;}
.ws10c{word-spacing:0.840000pt;}
.ws6a{word-spacing:0.858667pt;}
.ws2e{word-spacing:0.864000pt;}
.wsf8{word-spacing:0.896000pt;}
.ws12d{word-spacing:0.906667pt;}
.ws98{word-spacing:0.920000pt;}
.ws20{word-spacing:0.981333pt;}
.ws5a{word-spacing:1.042667pt;}
.ws33{word-spacing:1.104000pt;}
.wsfa{word-spacing:1.120000pt;}
.ws50{word-spacing:1.165333pt;}
.wsff{word-spacing:1.176000pt;}
.ws2d{word-spacing:1.226667pt;}
.wseb{word-spacing:1.232000pt;}
.ws34{word-spacing:1.288000pt;}
.ws4d{word-spacing:1.349333pt;}
.ws10{word-spacing:1.386667pt;}
.ws100{word-spacing:1.400000pt;}
.ws79{word-spacing:1.410667pt;}
.ws5c{word-spacing:1.472000pt;}
.ws15{word-spacing:1.493333pt;}
.ws9f{word-spacing:1.533333pt;}
.ws99{word-spacing:1.594667pt;}
.ws4f{word-spacing:1.656000pt;}
.ws12b{word-spacing:1.706667pt;}
.ws7e{word-spacing:1.717333pt;}
.ws78{word-spacing:1.778667pt;}
.ws89{word-spacing:1.824000pt;}
.ws53{word-spacing:1.840000pt;}
.wsaa{word-spacing:1.901333pt;}
.ws8d{word-spacing:1.962667pt;}
.ws54{word-spacing:2.024000pt;}
.ws4a{word-spacing:2.085333pt;}
.ws102{word-spacing:2.128000pt;}
.ws77{word-spacing:2.146667pt;}
.ws6d{word-spacing:2.208000pt;}
.ws5e{word-spacing:2.269333pt;}
.ws70{word-spacing:2.330667pt;}
.ws12c{word-spacing:2.346667pt;}
.wscc{word-spacing:2.392000pt;}
.ws8a{word-spacing:2.448000pt;}
.ws31{word-spacing:2.453333pt;}
.wse2{word-spacing:2.514667pt;}
.wsec{word-spacing:2.520000pt;}
.wscf{word-spacing:2.576000pt;}
.ws128{word-spacing:2.613333pt;}
.ws9a{word-spacing:2.637333pt;}
.ws56{word-spacing:2.640000pt;}
.ws32{word-spacing:2.698667pt;}
.ws9b{word-spacing:2.760000pt;}
.ws5d{word-spacing:2.821333pt;}
.wsce{word-spacing:2.944000pt;}
.ws6b{word-spacing:3.005333pt;}
.ws71{word-spacing:3.128000pt;}
.wsb9{word-spacing:3.189333pt;}
.ws5f{word-spacing:3.250667pt;}
.ws60{word-spacing:3.373333pt;}
.wse1{word-spacing:3.434667pt;}
.ws9c{word-spacing:3.496000pt;}
.wsb8{word-spacing:3.680000pt;}
.ws90{word-spacing:3.741333pt;}
.ws80{word-spacing:3.802667pt;}
.wsad{word-spacing:3.864000pt;}
.ws55{word-spacing:3.925333pt;}
.wsda{word-spacing:3.986667pt;}
.wsa1{word-spacing:4.048000pt;}
.ws4e{word-spacing:4.232000pt;}
.wsbe{word-spacing:4.416000pt;}
.wscd{word-spacing:4.477333pt;}
.wse3{word-spacing:4.600000pt;}
.ws7d{word-spacing:5.520000pt;}
.wse4{word-spacing:6.010667pt;}
.wsc9{word-spacing:7.053333pt;}
.wsab{word-spacing:7.114667pt;}
.wsb5{word-spacing:8.096000pt;}
.wsca{word-spacing:8.280000pt;}
.wscb{word-spacing:9.016000pt;}
.wsb4{word-spacing:11.224000pt;}
.wsd0{word-spacing:38.617920pt;}
._1e{margin-left:-17.496000pt;}
._3c{margin-left:-15.508533pt;}
._18{margin-left:-13.065600pt;}
._16{margin-left:-12.124000pt;}
._17{margin-left:-10.226133pt;}
._d{margin-left:-8.493600pt;}
._c{margin-left:-6.711733pt;}
._b{margin-left:-5.643733pt;}
._a{margin-left:-4.151200pt;}
._8{margin-left:-2.523467pt;}
._2{margin-left:-1.220533pt;}
._3{width:1.108800pt;}
._1{width:2.133333pt;}
._9{width:3.403733pt;}
._5{width:4.713067pt;}
._4{width:5.718933pt;}
._6{width:6.672000pt;}
._7{width:7.696533pt;}
._10{width:8.994827pt;}
._13{width:10.511467pt;}
._15{width:11.853600pt;}
._19{width:13.030400pt;}
._1c{width:14.594667pt;}
._1b{width:15.866400pt;}
._3f{width:17.459733pt;}
._3d{width:20.737333pt;}
._12{width:24.358400pt;}
._2f{width:26.245867pt;}
._f{width:32.018667pt;}
._14{width:38.617920pt;}
._31{width:41.277333pt;}
._24{width:42.508000pt;}
._1a{width:47.404533pt;}
._3e{width:54.154667pt;}
._2c{width:57.579733pt;}
._37{width:59.633600pt;}
._21{width:61.389867pt;}
._e{width:63.466667pt;}
._23{width:70.475733pt;}
._32{width:72.248800pt;}
._36{width:73.656533pt;}
._22{width:75.821333pt;}
._3b{width:78.256533pt;}
._20{width:80.298667pt;}
._39{width:82.241867pt;}
._33{width:86.838400pt;}
._1f{width:91.141333pt;}
._2e{width:94.931733pt;}
._1d{width:99.176000pt;}
._2b{width:101.931200pt;}
._29{width:104.567200pt;}
._35{width:109.970667pt;}
._30{width:111.819467pt;}
._26{width:114.877333pt;}
._38{width:116.754400pt;}
._25{width:119.348533pt;}
._2d{width:122.047200pt;}
._28{width:127.634667pt;}
._2a{width:136.834667pt;}
._34{width:140.576000pt;}
._3a{width:143.009867pt;}
._27{width:153.333333pt;}
._11{width:224.896000pt;}
._0{width:514.133333pt;}
.fsc{font-size:27.984000pt;}
.fs7{font-size:31.093333pt;}
.fsb{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fse{font-size:69.333333pt;}
.fs9{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.yed{bottom:94.369200pt;}
.y138{bottom:94.372267pt;}
.y266{bottom:94.383867pt;}
.y66{bottom:94.411067pt;}
.y181{bottom:94.440667pt;}
.yb3{bottom:94.454667pt;}
.y164{bottom:94.457733pt;}
.yd9{bottom:94.461200pt;}
.y13c{bottom:94.472933pt;}
.y1c8{bottom:94.473333pt;}
.y112{bottom:94.480267pt;}
.y20{bottom:94.486133pt;}
.y1a4{bottom:94.488267pt;}
.y246{bottom:94.495867pt;}
.y226{bottom:94.520400pt;}
.y1eb{bottom:94.558133pt;}
.y47{bottom:94.684000pt;}
.y8c{bottom:97.150933pt;}
.y111{bottom:109.816267pt;}
.y1c7{bottom:112.490000pt;}
.yec{bottom:112.523867pt;}
.y225{bottom:112.524400pt;}
.y137{bottom:112.526933pt;}
.yb2{bottom:112.609333pt;}
.y163{bottom:112.612400pt;}
.yd8{bottom:113.091200pt;}
.y245{bottom:113.101867pt;}
.y1ea{bottom:113.172800pt;}
.y46{bottom:113.252667pt;}
.y1f{bottom:113.446133pt;}
.y265{bottom:113.465867pt;}
.y65{bottom:113.516400pt;}
.y8b{bottom:113.598400pt;}
.y180{bottom:115.784667pt;}
.y110{bottom:125.152267pt;}
.y1c6{bottom:130.506667pt;}
.y224{bottom:130.528400pt;}
.yeb{bottom:130.678533pt;}
.y136{bottom:130.681600pt;}
.yb1{bottom:130.764000pt;}
.y162{bottom:130.767067pt;}
.y13b{bottom:130.782267pt;}
.y8a{bottom:131.597067pt;}
.yd7{bottom:131.721200pt;}
.y1e9{bottom:131.787467pt;}
.y45{bottom:131.821333pt;}
.y1e{bottom:132.399733pt;}
.y264{bottom:132.547867pt;}
.y64{bottom:132.621733pt;}
.y1a3{bottom:136.181733pt;}
.y17f{bottom:137.128667pt;}
.y244{bottom:139.267867pt;}
.y10f{bottom:143.150933pt;}
.yea{bottom:148.833200pt;}
.y135{bottom:148.836267pt;}
.yb0{bottom:148.918667pt;}
.y161{bottom:148.921733pt;}
.y13a{bottom:148.936933pt;}
.y1d{bottom:150.026400pt;}
.yd6{bottom:150.351200pt;}
.y44{bottom:150.390000pt;}
.y1e8{bottom:150.402133pt;}
.y63{bottom:151.727067pt;}
.y1a2{bottom:155.072400pt;}
.y223{bottom:156.092400pt;}
.y243{bottom:157.873867pt;}
.y17e{bottom:158.472667pt;}
.y263{bottom:159.189867pt;}
.ye9{bottom:166.987867pt;}
.y134{bottom:166.990933pt;}
.yaf{bottom:167.073333pt;}
.y160{bottom:167.076400pt;}
.y139{bottom:167.091600pt;}
.y1c5{bottom:167.408133pt;}
.y1c{bottom:167.642800pt;}
.y43{bottom:168.958667pt;}
.yd5{bottom:168.981200pt;}
.y1e7{bottom:169.016800pt;}
.y89{bottom:170.740000pt;}
.y1a1{bottom:173.963067pt;}
.y222{bottom:174.096400pt;}
.y262{bottom:178.271867pt;}
.y17d{bottom:179.816667pt;}
.y15a{bottom:182.299333pt;}
.y10e{bottom:182.346533pt;}
.y242{bottom:184.039867pt;}
.ye8{bottom:185.142533pt;}
.y133{bottom:185.145600pt;}
.yae{bottom:185.228000pt;}
.y15f{bottom:185.231067pt;}
.y1b{bottom:185.269467pt;}
.y42{bottom:187.527333pt;}
.yd4{bottom:187.611200pt;}
.y1e6{bottom:187.631467pt;}
.y1c4{bottom:188.756133pt;}
.y88{bottom:188.787333pt;}
.y62{bottom:189.922400pt;}
.y221{bottom:192.100400pt;}
.y1a0{bottom:192.853733pt;}
.y283{bottom:198.011867pt;}
.y159{bottom:200.484667pt;}
.y10d{bottom:200.577867pt;}
.y17c{bottom:201.160667pt;}
.y241{bottom:202.645867pt;}
.y1a{bottom:202.896133pt;}
.ye7{bottom:203.297200pt;}
.y132{bottom:203.300267pt;}
.yad{bottom:203.382667pt;}
.y15e{bottom:203.385733pt;}
.y261{bottom:204.913867pt;}
.y41{bottom:206.096000pt;}
.yd3{bottom:206.241200pt;}
.y1e5{bottom:206.246133pt;}
.y87{bottom:206.834667pt;}
.y61{bottom:209.027733pt;}
.y220{bottom:210.104400pt;}
.y19f{bottom:211.744400pt;}
.y282{bottom:216.015867pt;}
.y158{bottom:218.670000pt;}
.y10c{bottom:218.809200pt;}
.y19{bottom:220.522800pt;}
.y240{bottom:221.251867pt;}
.ye6{bottom:221.451867pt;}
.y131{bottom:221.454933pt;}
.yac{bottom:221.537333pt;}
.y15d{bottom:221.540400pt;}
.y17b{bottom:222.504667pt;}
.y40{bottom:224.664667pt;}
.y1e4{bottom:224.860800pt;}
.yd2{bottom:224.871200pt;}
.y86{bottom:224.882000pt;}
.y21f{bottom:228.108400pt;}
.y60{bottom:228.133067pt;}
.y2a0{bottom:229.270133pt;}
.y19e{bottom:230.635067pt;}
.y260{bottom:231.555867pt;}
.y157{bottom:236.855333pt;}
.y10b{bottom:237.040533pt;}
.y18{bottom:238.149467pt;}
.ye5{bottom:239.606533pt;}
.y130{bottom:239.609600pt;}
.yab{bottom:239.692000pt;}
.y15c{bottom:239.695067pt;}
.y281{bottom:241.579867pt;}
.y85{bottom:242.929333pt;}
.y3f{bottom:243.233333pt;}
.y1e3{bottom:243.475467pt;}
.yd1{bottom:243.501200pt;}
.y17a{bottom:243.848667pt;}
.y1c3{bottom:243.884533pt;}
.y5f{bottom:247.238400pt;}
.y29f{bottom:247.270133pt;}
.y23f{bottom:247.417867pt;}
.y19d{bottom:249.525733pt;}
.y21e{bottom:253.672400pt;}
.y156{bottom:255.040667pt;}
.y10a{bottom:255.271867pt;}
.y17{bottom:255.776133pt;}
.ye4{bottom:257.761200pt;}
.y12f{bottom:257.764267pt;}
.yaa{bottom:257.846667pt;}
.y15b{bottom:257.849733pt;}
.y25f{bottom:258.197867pt;}
.y280{bottom:259.583867pt;}
.y84{bottom:260.976667pt;}
.y3e{bottom:261.802000pt;}
.y1c2{bottom:261.901200pt;}
.y1e2{bottom:262.090133pt;}
.yd0{bottom:262.131200pt;}
.y179{bottom:265.192667pt;}
.y29e{bottom:265.270133pt;}
.y5e{bottom:266.343733pt;}
.y19c{bottom:268.416400pt;}
.y155{bottom:273.226000pt;}
.y16{bottom:273.402800pt;}
.y109{bottom:273.503200pt;}
.y23e{bottom:273.583867pt;}
.ye3{bottom:275.915867pt;}
.y12e{bottom:275.918933pt;}
.ya9{bottom:276.001333pt;}
.y25e{bottom:277.279867pt;}
.y27f{bottom:277.587867pt;}
.y83{bottom:279.024000pt;}
.y1c1{bottom:279.917867pt;}
.y3d{bottom:280.370667pt;}
.y1e1{bottom:280.704800pt;}
.ycf{bottom:280.761200pt;}
.y29d{bottom:283.270133pt;}
.y5d{bottom:285.449067pt;}
.y178{bottom:286.536667pt;}
.y19b{bottom:287.307067pt;}
.y108{bottom:291.734533pt;}
.y23d{bottom:292.189867pt;}
.ye2{bottom:294.070533pt;}
.y12d{bottom:294.073600pt;}
.ya8{bottom:294.128533pt;}
.y82{bottom:297.071333pt;}
.y1c0{bottom:297.934533pt;}
.y3c{bottom:298.939333pt;}
.y21d{bottom:299.006533pt;}
.y1e0{bottom:299.319467pt;}
.yce{bottom:299.391200pt;}
.y15{bottom:302.362800pt;}
.y27e{bottom:303.151867pt;}
.y25d{bottom:303.921867pt;}
.y5c{bottom:304.554400pt;}
.y19a{bottom:306.197733pt;}
.y177{bottom:307.880667pt;}
.y107{bottom:309.965867pt;}
.y154{bottom:310.313200pt;}
.ye1{bottom:312.225200pt;}
.y12c{bottom:312.228267pt;}
.ya7{bottom:312.283200pt;}
.y29c{bottom:312.603467pt;}
.y81{bottom:315.118667pt;}
.y1bf{bottom:315.951200pt;}
.y21c{bottom:317.007867pt;}
.y3b{bottom:317.508000pt;}
.y1df{bottom:317.934133pt;}
.ycd{bottom:318.021200pt;}
.y23c{bottom:318.355867pt;}
.y27d{bottom:321.155867pt;}
.y25c{bottom:323.003867pt;}
.y5b{bottom:323.659733pt;}
.y199{bottom:325.088400pt;}
.y106{bottom:328.197200pt;}
.ye0{bottom:330.379867pt;}
.y12b{bottom:330.382933pt;}
.ya6{bottom:330.437867pt;}
.y80{bottom:333.166000pt;}
.y1be{bottom:333.967867pt;}
.y3a{bottom:336.076667pt;}
.y1de{bottom:336.548800pt;}
.ycc{bottom:336.651200pt;}
.y27c{bottom:339.159867pt;}
.y25b{bottom:342.085867pt;}
.y5a{bottom:342.765067pt;}
.y198{bottom:343.979067pt;}
.y23b{bottom:344.521867pt;}
.y14{bottom:346.442800pt;}
.y105{bottom:346.602533pt;}
.ydf{bottom:348.534533pt;}
.y12a{bottom:348.537600pt;}
.ya5{bottom:348.592533pt;}
.y29b{bottom:349.496800pt;}
.y7f{bottom:351.213333pt;}
.y1bd{bottom:351.984533pt;}
.y204{bottom:352.887867pt;}
.y39{bottom:354.645333pt;}
.y1dd{bottom:355.163467pt;}
.ycb{bottom:355.281200pt;}
.y59{bottom:361.870400pt;}
.y176{bottom:362.022667pt;}
.y197{bottom:362.869733pt;}
.y23a{bottom:363.127867pt;}
.y27b{bottom:364.723867pt;}
.y104{bottom:364.833867pt;}
.y13{bottom:365.402800pt;}
.y153{bottom:365.925200pt;}
.yde{bottom:366.689200pt;}
.y129{bottom:366.692267pt;}
.ya4{bottom:366.747200pt;}
.y29a{bottom:366.830133pt;}
.y25a{bottom:368.727867pt;}
.y7e{bottom:369.260667pt;}
.y1bc{bottom:370.001200pt;}
.y203{bottom:370.904533pt;}
.y21b{bottom:371.809200pt;}
.y38{bottom:373.214000pt;}
.y1dc{bottom:373.778133pt;}
.yca{bottom:373.911200pt;}
.y58{bottom:380.975733pt;}
.y196{bottom:381.760400pt;}
.y27a{bottom:382.727867pt;}
.y103{bottom:383.065200pt;}
.y175{bottom:383.366667pt;}
.y152{bottom:384.110533pt;}
.y299{bottom:384.163467pt;}
.y12{bottom:384.349067pt;}
.ydd{bottom:384.843867pt;}
.y128{bottom:384.846933pt;}
.ya3{bottom:384.901867pt;}
.y7d{bottom:387.308000pt;}
.y259{bottom:387.809867pt;}
.y1bb{bottom:388.017867pt;}
.y202{bottom:388.921200pt;}
.y239{bottom:389.293867pt;}
.y21a{bottom:390.607867pt;}
.y37{bottom:391.782667pt;}
.y1db{bottom:392.392800pt;}
.yc9{bottom:392.541200pt;}
.y57{bottom:400.081067pt;}
.y195{bottom:400.651067pt;}
.y102{bottom:401.296533pt;}
.y298{bottom:401.496800pt;}
.y11{bottom:401.975733pt;}
.y151{bottom:402.295867pt;}
.ydc{bottom:402.998533pt;}
.y127{bottom:403.001600pt;}
.ya2{bottom:403.056533pt;}
.y174{bottom:404.710667pt;}
.y7c{bottom:405.355333pt;}
.y1ba{bottom:406.034533pt;}
.y258{bottom:406.891867pt;}
.y201{bottom:406.937867pt;}
.y238{bottom:407.899867pt;}
.y279{bottom:408.291867pt;}
.y219{bottom:409.406533pt;}
.y36{bottom:410.351333pt;}
.yc8{bottom:411.171200pt;}
.y297{bottom:418.830133pt;}
.y101{bottom:419.527867pt;}
.y194{bottom:419.541733pt;}
.y10{bottom:419.602400pt;}
.y150{bottom:420.481200pt;}
.ydb{bottom:421.153200pt;}
.y126{bottom:421.156267pt;}
.ya1{bottom:421.211200pt;}
.y7b{bottom:423.402667pt;}
.y1b9{bottom:424.051200pt;}
.y200{bottom:424.954533pt;}
.y173{bottom:426.054667pt;}
.y278{bottom:426.295867pt;}
.y237{bottom:426.505867pt;}
.y218{bottom:428.205200pt;}
.y35{bottom:428.920000pt;}
.yc7{bottom:429.801200pt;}
.y1da{bottom:429.909467pt;}
.y257{bottom:433.533867pt;}
.y296{bottom:436.163467pt;}
.yf{bottom:437.229067pt;}
.y100{bottom:437.759200pt;}
.y56{bottom:438.078267pt;}
.y193{bottom:438.432400pt;}
.y14f{bottom:438.666533pt;}
.yda{bottom:439.307867pt;}
.y125{bottom:439.310933pt;}
.ya0{bottom:439.365867pt;}
.y7a{bottom:441.450000pt;}
.y1b8{bottom:442.067867pt;}
.y1ff{bottom:442.971200pt;}
.y236{bottom:445.111867pt;}
.y217{bottom:447.003867pt;}
.y34{bottom:447.488667pt;}
.yc6{bottom:448.431200pt;}
.y277{bottom:451.859867pt;}
.y256{bottom:452.615867pt;}
.y295{bottom:453.502000pt;}
.ye{bottom:454.855733pt;}
.yff{bottom:455.990533pt;}
.y14e{bottom:456.851867pt;}
.y192{bottom:457.323067pt;}
.y9f{bottom:457.462533pt;}
.y124{bottom:457.465600pt;}
.y79{bottom:459.497333pt;}
.y1b7{bottom:460.084533pt;}
.y1fe{bottom:460.987867pt;}
.y216{bottom:465.802533pt;}
.y33{bottom:466.057333pt;}
.y172{bottom:466.292267pt;}
.yc5{bottom:467.061200pt;}
.y276{bottom:469.863867pt;}
.y294{bottom:470.835333pt;}
.y235{bottom:471.277867pt;}
.yd{bottom:472.482400pt;}
.yfe{bottom:474.221867pt;}
.y14d{bottom:475.037200pt;}
.y9e{bottom:475.617200pt;}
.y123{bottom:475.620267pt;}
.y191{bottom:476.213733pt;}
.y78{bottom:477.544667pt;}
.y1b6{bottom:478.101200pt;}
.y1fd{bottom:479.004533pt;}
.y255{bottom:479.257867pt;}
.y215{bottom:484.601200pt;}
.y32{bottom:484.626000pt;}
.yc4{bottom:485.691200pt;}
.y1d9{bottom:485.951867pt;}
.y275{bottom:487.867867pt;}
.y293{bottom:488.168667pt;}
.y234{bottom:489.883867pt;}
.yc{bottom:490.109067pt;}
.yfd{bottom:492.453200pt;}
.y9d{bottom:493.771867pt;}
.y122{bottom:493.774933pt;}
.y55{bottom:494.474933pt;}
.y190{bottom:495.104400pt;}
.y77{bottom:495.592000pt;}
.y1b5{bottom:496.117867pt;}
.y1fc{bottom:497.021200pt;}
.y254{bottom:498.339867pt;}
.y31{bottom:503.194667pt;}
.y214{bottom:503.399867pt;}
.yc3{bottom:504.321200pt;}
.y1d8{bottom:504.566533pt;}
.y292{bottom:505.502000pt;}
.yb{bottom:507.735733pt;}
.yfc{bottom:510.684533pt;}
.y14c{bottom:511.423200pt;}
.y9c{bottom:511.926533pt;}
.y121{bottom:511.929600pt;}
.y274{bottom:513.431867pt;}
.y54{bottom:513.580267pt;}
.y76{bottom:513.639333pt;}
.y18f{bottom:513.937067pt;}
.y1b4{bottom:514.134533pt;}
.y1fb{bottom:515.037867pt;}
.y233{bottom:516.049867pt;}
.y30{bottom:521.763333pt;}
.y213{bottom:522.198533pt;}
.y291{bottom:522.835333pt;}
.yc2{bottom:522.951200pt;}
.y1d7{bottom:523.181200pt;}
.y171{bottom:524.941200pt;}
.y253{bottom:524.981867pt;}
.yfb{bottom:528.915867pt;}
.y14b{bottom:529.608533pt;}
.y9b{bottom:530.081200pt;}
.y120{bottom:530.084267pt;}
.y273{bottom:531.435867pt;}
.y75{bottom:531.686667pt;}
.y1b3{bottom:532.151200pt;}
.y53{bottom:532.685600pt;}
.y18e{bottom:532.827733pt;}
.y1fa{bottom:533.054533pt;}
.y232{bottom:534.655867pt;}
.ya{bottom:536.695733pt;}
.y290{bottom:540.168667pt;}
.y2f{bottom:540.332000pt;}
.y212{bottom:540.997200pt;}
.yc1{bottom:541.581200pt;}
.y1d6{bottom:541.795867pt;}
.y252{bottom:544.063867pt;}
.y170{bottom:546.285200pt;}
.yfa{bottom:547.147200pt;}
.y14a{bottom:547.793867pt;}
.y9a{bottom:548.235867pt;}
.y11f{bottom:548.238933pt;}
.y74{bottom:549.734000pt;}
.y1b2{bottom:550.167867pt;}
.y1f9{bottom:551.071200pt;}
.y18d{bottom:551.718400pt;}
.y52{bottom:551.790933pt;}
.y272{bottom:556.999867pt;}
.y28f{bottom:557.502000pt;}
.y2e{bottom:558.900667pt;}
.y211{bottom:559.795867pt;}
.yc0{bottom:560.211200pt;}
.y1d5{bottom:560.410533pt;}
.y231{bottom:560.821867pt;}
.y251{bottom:563.145867pt;}
.yf9{bottom:565.378533pt;}
.y149{bottom:565.979200pt;}
.y99{bottom:566.390533pt;}
.y11e{bottom:566.393600pt;}
.y16f{bottom:567.629200pt;}
.y73{bottom:567.781333pt;}
.y1b1{bottom:568.184533pt;}
.y1f8{bottom:569.087867pt;}
.y18c{bottom:570.609067pt;}
.y51{bottom:570.896267pt;}
.y28e{bottom:574.835333pt;}
.y271{bottom:575.003867pt;}
.y2d{bottom:577.469333pt;}
.y210{bottom:578.594533pt;}
.ybf{bottom:578.841200pt;}
.y1d4{bottom:579.025200pt;}
.y230{bottom:579.427867pt;}
.y250{bottom:582.227867pt;}
.yf8{bottom:583.609867pt;}
.y148{bottom:584.164533pt;}
.y98{bottom:584.545200pt;}
.y11d{bottom:584.548267pt;}
.y72{bottom:585.828667pt;}
.y1b0{bottom:586.201200pt;}
.y1f7{bottom:587.104533pt;}
.y9{bottom:588.341867pt;}
.y16e{bottom:588.973200pt;}
.y18b{bottom:589.499733pt;}
.y50{bottom:590.001600pt;}
.y28d{bottom:592.168667pt;}
.y2c{bottom:596.038000pt;}
.y20f{bottom:597.393200pt;}
.ybe{bottom:597.471200pt;}
.y1d3{bottom:597.639867pt;}
.y270{bottom:600.567867pt;}
.yf7{bottom:601.841200pt;}
.y147{bottom:602.349867pt;}
.y97{bottom:602.699867pt;}
.y11c{bottom:602.702933pt;}
.y71{bottom:603.876000pt;}
.y1af{bottom:604.217867pt;}
.y1f6{bottom:605.121200pt;}
.y22f{bottom:605.593867pt;}
.y18a{bottom:608.390400pt;}
.y24f{bottom:608.869867pt;}
.y4f{bottom:609.106933pt;}
.y28c{bottom:609.502000pt;}
.y16d{bottom:610.317200pt;}
.y8{bottom:612.627200pt;}
.y2b{bottom:614.606667pt;}
.ybd{bottom:616.101200pt;}
.y20e{bottom:616.191867pt;}
.y1d2{bottom:616.254533pt;}
.y26f{bottom:618.571867pt;}
.yf6{bottom:620.072533pt;}
.y146{bottom:620.535200pt;}
.y96{bottom:620.854533pt;}
.y11b{bottom:620.857600pt;}
.y70{bottom:621.923333pt;}
.y1ae{bottom:622.234533pt;}
.y1f5{bottom:623.137867pt;}
.y22e{bottom:624.199867pt;}
.y28b{bottom:626.835333pt;}
.y189{bottom:627.281067pt;}
.y24e{bottom:627.951867pt;}
.y4e{bottom:628.212267pt;}
.y16c{bottom:631.661200pt;}
.y2a{bottom:633.175333pt;}
.ybc{bottom:634.731200pt;}
.y1d1{bottom:634.869200pt;}
.y20d{bottom:634.990533pt;}
.yf5{bottom:638.303867pt;}
.y145{bottom:638.720533pt;}
.y95{bottom:639.009200pt;}
.y11a{bottom:639.012267pt;}
.y6f{bottom:639.970667pt;}
.y1ad{bottom:640.251200pt;}
.y1f4{bottom:641.154533pt;}
.y22d{bottom:642.805867pt;}
.y26e{bottom:644.135867pt;}
.y28a{bottom:644.168667pt;}
.y188{bottom:646.171733pt;}
.y24d{bottom:647.033867pt;}
.y4d{bottom:647.317600pt;}
.y29{bottom:651.744000pt;}
.y16b{bottom:653.005200pt;}
.ybb{bottom:653.361200pt;}
.y1d0{bottom:653.483867pt;}
.y20c{bottom:653.789200pt;}
.y7{bottom:655.811200pt;}
.yf4{bottom:656.535200pt;}
.y144{bottom:656.905867pt;}
.y94{bottom:657.163867pt;}
.y119{bottom:657.166933pt;}
.y6e{bottom:658.022533pt;}
.y1ac{bottom:658.267867pt;}
.y1f3{bottom:659.171200pt;}
.y289{bottom:661.502000pt;}
.y26d{bottom:662.139867pt;}
.y187{bottom:665.062400pt;}
.y24c{bottom:666.115867pt;}
.y4c{bottom:666.422933pt;}
.y22c{bottom:668.971867pt;}
.y28{bottom:670.312667pt;}
.yba{bottom:671.991200pt;}
.y1cf{bottom:672.098533pt;}
.y20b{bottom:672.587867pt;}
.y16a{bottom:674.349200pt;}
.y143{bottom:675.091200pt;}
.y93{bottom:675.318533pt;}
.y118{bottom:675.321600pt;}
.y6d{bottom:676.069867pt;}
.y1ab{bottom:676.284533pt;}
.y1f2{bottom:677.187867pt;}
.y288{bottom:678.835333pt;}
.y26c{bottom:680.143867pt;}
.y186{bottom:683.953067pt;}
.y6{bottom:684.107200pt;}
.y24b{bottom:685.197867pt;}
.y22b{bottom:687.577867pt;}
.y27{bottom:688.881333pt;}
.yb9{bottom:690.621200pt;}
.y1ce{bottom:690.713200pt;}
.y20a{bottom:691.386533pt;}
.yf3{bottom:693.013200pt;}
.y142{bottom:693.276533pt;}
.y92{bottom:693.473200pt;}
.y117{bottom:693.476267pt;}
.y6c{bottom:694.117200pt;}
.y1aa{bottom:694.301200pt;}
.y1f1{bottom:695.204533pt;}
.y169{bottom:695.693200pt;}
.y287{bottom:696.168667pt;}
.y185{bottom:702.843733pt;}
.y4b{bottom:704.425067pt;}
.y26b{bottom:705.707867pt;}
.y26{bottom:707.450000pt;}
.yb8{bottom:709.251200pt;}
.y1cd{bottom:709.327867pt;}
.y209{bottom:710.185200pt;}
.yf2{bottom:711.244533pt;}
.y141{bottom:711.461867pt;}
.y91{bottom:711.627867pt;}
.y116{bottom:711.630933pt;}
.y24a{bottom:711.839867pt;}
.y6b{bottom:712.164533pt;}
.y1a9{bottom:712.317867pt;}
.y1f0{bottom:713.221200pt;}
.y22a{bottom:713.743867pt;}
.y168{bottom:717.037200pt;}
.y184{bottom:721.734400pt;}
.y26a{bottom:723.711867pt;}
.y286{bottom:724.835333pt;}
.y25{bottom:726.018667pt;}
.y4a{bottom:726.853067pt;}
.yb7{bottom:727.881200pt;}
.y1cc{bottom:727.942533pt;}
.y208{bottom:728.983867pt;}
.yf1{bottom:729.475867pt;}
.y140{bottom:729.647200pt;}
.y90{bottom:729.782533pt;}
.y115{bottom:729.785600pt;}
.y6a{bottom:730.211867pt;}
.y1a8{bottom:730.334533pt;}
.y249{bottom:730.921867pt;}
.y1ef{bottom:731.237867pt;}
.y229{bottom:732.349867pt;}
.y167{bottom:738.369200pt;}
.y5{bottom:738.850000pt;}
.y183{bottom:740.625067pt;}
.y269{bottom:741.715867pt;}
.y24{bottom:744.587333pt;}
.yb6{bottom:746.511200pt;}
.y1cb{bottom:746.557200pt;}
.yf0{bottom:747.707200pt;}
.y207{bottom:747.782533pt;}
.y13f{bottom:747.845200pt;}
.y8f{bottom:747.937200pt;}
.y114{bottom:747.940267pt;}
.y69{bottom:748.259200pt;}
.y1a7{bottom:748.351200pt;}
.y1ee{bottom:749.254533pt;}
.y248{bottom:757.563867pt;}
.y4{bottom:757.810000pt;}
.y228{bottom:758.515867pt;}
.y166{bottom:759.713200pt;}
.y268{bottom:759.719867pt;}
.y23{bottom:763.156000pt;}
.yb5{bottom:765.141200pt;}
.y1ca{bottom:765.171867pt;}
.yef{bottom:765.938533pt;}
.y13e{bottom:766.030533pt;}
.y8e{bottom:766.091867pt;}
.y113{bottom:766.094933pt;}
.y68{bottom:766.306533pt;}
.y1a6{bottom:766.367867pt;}
.y206{bottom:766.581200pt;}
.y1ed{bottom:767.271200pt;}
.y285{bottom:776.179067pt;}
.y227{bottom:777.121867pt;}
.y182{bottom:778.415733pt;}
.y165{bottom:781.057200pt;}
.y49{bottom:783.295867pt;}
.yb4{bottom:783.771200pt;}
.y1c9{bottom:783.786533pt;}
.yee{bottom:784.169867pt;}
.y247{bottom:784.205867pt;}
.y13d{bottom:784.215867pt;}
.y8d{bottom:784.246533pt;}
.y3{bottom:784.330000pt;}
.y67{bottom:784.353867pt;}
.y1a5{bottom:784.384533pt;}
.y267{bottom:785.283867pt;}
.y1ec{bottom:785.287867pt;}
.y205{bottom:785.379867pt;}
.y284{bottom:800.184400pt;}
.y22{bottom:800.627733pt;}
.y48{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:842.834667pt;}
.h14{height:19.307320pt;}
.hb{height:36.107146pt;}
.h8{height:41.562500pt;}
.hc{height:46.757812pt;}
.h15{height:49.322917pt;}
.h4{height:51.953125pt;}
.h7{height:51.994192pt;}
.h3{height:54.550781pt;}
.h12{height:59.695427pt;}
.ha{height:59.746094pt;}
.hf{height:59.758360pt;}
.h13{height:59.794094pt;}
.he{height:59.855960pt;}
.hd{height:59.978094pt;}
.h10{height:60.087960pt;}
.h2{height:64.941406pt;}
.h11{height:67.953996pt;}
.h9{height:70.136719pt;}
.h6{height:72.734375pt;}
.h5{height:93.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:72.040533pt;}
.x5{left:73.079333pt;}
.x8{left:74.530800pt;}
.x1{left:75.590533pt;}
.x7{left:92.204933pt;}
.x4{left:93.359333pt;}
.x3{left:94.547200pt;}
.x6{left:179.101867pt;}
.x2{left:207.676000pt;}
.xa{left:327.999467pt;}
.x9{left:329.057467pt;}
}




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