
    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_d49cb9079ab82e831cdb8a16.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e43909cc3da13b6450b610f6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d3ead36fd565d26c74008776.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9ffeb84a9594207880b81d48.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5879ca5bff3bf1e95bae049b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.934000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_dff4f528f657cb915dcee879.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.023000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5e34d244629023b4c7187e92.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.143000;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f643014a79a5ce21eba18edb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.862305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9f8c3fb4e29b9236c7a993ab.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_66387e8dc56adbe11fb1b8f2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8f5371c87addbba655df86f0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_beb702ff637d9573e7f4830c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b6e14608c5f973a7172eba4a.woff2')format("woff");}.fff{font-family:fff;line-height:0.715820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-6.024000px;}
.v3{vertical-align:-4.818000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:41.976000px;}
.v1{vertical-align:43.200000px;}
.ls91{letter-spacing:-4.824000px;}
.lsa4{letter-spacing:-4.458000px;}
.ls2b{letter-spacing:-3.600000px;}
.ls3f{letter-spacing:-2.448000px;}
.ls43{letter-spacing:-1.800000px;}
.lsc7{letter-spacing:-1.398000px;}
.ls64{letter-spacing:-1.386000px;}
.ls53{letter-spacing:-1.320000px;}
.lsdb{letter-spacing:-1.296000px;}
.ls5a{letter-spacing:-1.224000px;}
.ls4b{letter-spacing:-1.188000px;}
.ls61{letter-spacing:-1.122000px;}
.lsc6{letter-spacing:-0.906000px;}
.ls14{letter-spacing:-0.864000px;}
.ls41{letter-spacing:-0.858000px;}
.ls52{letter-spacing:-0.792000px;}
.lse9{letter-spacing:-0.660000px;}
.lsa1{letter-spacing:-0.606000px;}
.ls31{letter-spacing:-0.594000px;}
.lsd1{letter-spacing:-0.582000px;}
.ls1d{letter-spacing:-0.576000px;}
.lsc3{letter-spacing:-0.552000px;}
.ls9d{letter-spacing:-0.546000px;}
.ls2a{letter-spacing:-0.540000px;}
.ls2f{letter-spacing:-0.528000px;}
.ls49{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.480000px;}
.ls9c{letter-spacing:-0.474000px;}
.ls3a{letter-spacing:-0.462000px;}
.ls13{letter-spacing:-0.432000px;}
.ls18{letter-spacing:-0.420000px;}
.ls98{letter-spacing:-0.408000px;}
.ls99{letter-spacing:-0.402000px;}
.ls1c{letter-spacing:-0.360000px;}
.ls90{letter-spacing:-0.336000px;}
.ls2c{letter-spacing:-0.330000px;}
.lsc4{letter-spacing:-0.318000px;}
.lsc2{letter-spacing:-0.312000px;}
.lsa3{letter-spacing:-0.306000px;}
.ls1b{letter-spacing:-0.300000px;}
.lsc9{letter-spacing:-0.294000px;}
.ls16{letter-spacing:-0.288000px;}
.ls30{letter-spacing:-0.264000px;}
.lsc5{letter-spacing:-0.258000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls34{letter-spacing:-0.198000px;}
.ls9e{letter-spacing:-0.192000px;}
.lsc8{letter-spacing:-0.186000px;}
.ls10{letter-spacing:-0.180000px;}
.lsd8{letter-spacing:-0.174000px;}
.ls97{letter-spacing:-0.162000px;}
.ls38{letter-spacing:-0.144000px;}
.ls3b{letter-spacing:-0.132000px;}
.lse4{letter-spacing:-0.120000px;}
.lsd6{letter-spacing:-0.114000px;}
.ls96{letter-spacing:-0.102000px;}
.ls9f{letter-spacing:-0.096000px;}
.ls93{letter-spacing:-0.090000px;}
.ls12{letter-spacing:-0.084000px;}
.ls17{letter-spacing:-0.072000px;}
.ls40{letter-spacing:-0.066000px;}
.ls44{letter-spacing:-0.060000px;}
.lsd7{letter-spacing:-0.054000px;}
.lsc1{letter-spacing:-0.048000px;}
.lsd5{letter-spacing:-0.042000px;}
.lse{letter-spacing:0.000000px;}
.ls62{letter-spacing:0.018000px;}
.ls4d{letter-spacing:0.033000px;}
.lse1{letter-spacing:0.060000px;}
.ls2e{letter-spacing:0.066000px;}
.ls65{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.084000px;}
.lsca{letter-spacing:0.096000px;}
.ls95{letter-spacing:0.102000px;}
.lsd{letter-spacing:0.120000px;}
.lsc0{letter-spacing:0.162000px;}
.lse8{letter-spacing:0.180000px;}
.ls39{letter-spacing:0.198000px;}
.ls15{letter-spacing:0.216000px;}
.lsbd{letter-spacing:0.221376px;}
.ls4f{letter-spacing:0.224400px;}
.ls51{letter-spacing:0.231000px;}
.ls19{letter-spacing:0.240000px;}
.ls4e{letter-spacing:0.257400px;}
.ls35{letter-spacing:0.264000px;}
.ls8d{letter-spacing:0.281976px;}
.ls6a{letter-spacing:0.282000px;}
.ls8e{letter-spacing:0.287952px;}
.ls1f{letter-spacing:0.288000px;}
.ls6c{letter-spacing:0.294000px;}
.ls2d{letter-spacing:0.330000px;}
.ls92{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.360000px;}
.lsbc{letter-spacing:0.384000px;}
.lsbb{letter-spacing:0.390000px;}
.ls33{letter-spacing:0.396000px;}
.ls5{letter-spacing:0.403200px;}
.ls60{letter-spacing:0.426000px;}
.ls3e{letter-spacing:0.432000px;}
.ls63{letter-spacing:0.456000px;}
.ls8{letter-spacing:0.460800px;}
.ls32{letter-spacing:0.462000px;}
.ls8f{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.482400px;}
.ls7{letter-spacing:0.504000px;}
.lsde{letter-spacing:0.511200px;}
.ls4c{letter-spacing:0.528000px;}
.ls1a{letter-spacing:0.540000px;}
.lsbf{letter-spacing:0.546000px;}
.lsb2{letter-spacing:0.552000px;}
.lscf{letter-spacing:0.558000px;}
.ls20{letter-spacing:0.576000px;}
.lsa0{letter-spacing:0.624000px;}
.lsa5{letter-spacing:0.648000px;}
.ls6b{letter-spacing:0.720000px;}
.lsea{letter-spacing:0.780000px;}
.lsa2{letter-spacing:0.792000px;}
.ls9b{letter-spacing:0.864000px;}
.lsd3{letter-spacing:0.888000px;}
.lsd2{letter-spacing:0.894000px;}
.lsce{letter-spacing:0.918000px;}
.ls47{letter-spacing:1.008000px;}
.lsd0{letter-spacing:1.038000px;}
.ls9a{letter-spacing:1.104000px;}
.lscd{letter-spacing:1.134000px;}
.ls4a{letter-spacing:1.152000px;}
.lse6{letter-spacing:1.194000px;}
.lse2{letter-spacing:1.200000px;}
.ls94{letter-spacing:1.494000px;}
.lscb{letter-spacing:1.542000px;}
.ls42{letter-spacing:2.376000px;}
.lse5{letter-spacing:3.180000px;}
.ls7d{letter-spacing:3.222000px;}
.ls7c{letter-spacing:3.228000px;}
.ls7e{letter-spacing:3.234000px;}
.ls54{letter-spacing:3.348000px;}
.ls45{letter-spacing:3.384000px;}
.ls7b{letter-spacing:3.455976px;}
.lsda{letter-spacing:3.600000px;}
.ls6d{letter-spacing:4.332000px;}
.ls6e{letter-spacing:4.338000px;}
.lsd4{letter-spacing:4.356000px;}
.ls82{letter-spacing:4.374000px;}
.ls83{letter-spacing:4.380000px;}
.ls69{letter-spacing:4.410000px;}
.ls55{letter-spacing:4.752000px;}
.ls6f{letter-spacing:5.430000px;}
.ls84{letter-spacing:5.472000px;}
.ls68{letter-spacing:5.496000px;}
.ls67{letter-spacing:5.502000px;}
.ls66{letter-spacing:5.658000px;}
.lsa{letter-spacing:5.976000px;}
.lsbe{letter-spacing:6.534000px;}
.ls75{letter-spacing:6.570000px;}
.ls72{letter-spacing:6.594000px;}
.ls70{letter-spacing:6.600000px;}
.ls71{letter-spacing:6.606000px;}
.ls9{letter-spacing:7.200000px;}
.lsb3{letter-spacing:7.626000px;}
.lsb4{letter-spacing:7.632000px;}
.ls81{letter-spacing:7.638000px;}
.ls80{letter-spacing:7.644000px;}
.ls7f{letter-spacing:7.674000px;}
.ls74{letter-spacing:7.680000px;}
.ls73{letter-spacing:7.710000px;}
.lse7{letter-spacing:7.980000px;}
.lsa6{letter-spacing:8.352000px;}
.lsd9{letter-spacing:8.366400px;}
.lsad{letter-spacing:8.772000px;}
.lsae{letter-spacing:8.778000px;}
.lse3{letter-spacing:9.168000px;}
.lsdc{letter-spacing:9.576000px;}
.ls5b{letter-spacing:10.800000px;}
.lscc{letter-spacing:10.920000px;}
.lsb7{letter-spacing:10.950000px;}
.lsb5{letter-spacing:10.974000px;}
.lsba{letter-spacing:11.004000px;}
.lsa7{letter-spacing:11.786400px;}
.ls56{letter-spacing:11.952000px;}
.ls89{letter-spacing:12.072000px;}
.ls88{letter-spacing:12.078000px;}
.ls8a{letter-spacing:13.164000px;}
.ls8b{letter-spacing:13.170000px;}
.ls57{letter-spacing:13.176000px;}
.lsa8{letter-spacing:14.400000px;}
.ls85{letter-spacing:15.402000px;}
.ls86{letter-spacing:15.408000px;}
.lsdd{letter-spacing:15.552000px;}
.lseb{letter-spacing:16.380000px;}
.ls87{letter-spacing:16.500000px;}
.lsab{letter-spacing:17.574000px;}
.lsac{letter-spacing:17.580000px;}
.lsaa{letter-spacing:17.604000px;}
.lsa9{letter-spacing:17.610000px;}
.lsec{letter-spacing:18.000000px;}
.ls59{letter-spacing:18.021600px;}
.ls7a{letter-spacing:18.624000px;}
.ls79{letter-spacing:18.630000px;}
.lsb1{letter-spacing:18.666000px;}
.lsaf{letter-spacing:18.672000px;}
.lsc{letter-spacing:19.008000px;}
.lsb0{letter-spacing:19.764000px;}
.lsb{letter-spacing:20.376000px;}
.ls77{letter-spacing:21.924000px;}
.ls76{letter-spacing:21.930000px;}
.ls46{letter-spacing:22.608000px;}
.lse0{letter-spacing:22.920000px;}
.ls78{letter-spacing:23.022000px;}
.ls5c{letter-spacing:25.200000px;}
.lsb8{letter-spacing:33.606000px;}
.lsb6{letter-spacing:33.612000px;}
.lsb9{letter-spacing:33.618000px;}
.ls8c{letter-spacing:35.172000px;}
.lsdf{letter-spacing:38.412000px;}
.ls5f{letter-spacing:96.096000px;}
.ls48{letter-spacing:111.672000px;}
.ls3d{letter-spacing:126.390000px;}
.ls37{letter-spacing:126.402000px;}
.ls50{letter-spacing:154.902000px;}
.ls5d{letter-spacing:205.213800px;}
.ls36{letter-spacing:226.380000px;}
.ls5e{letter-spacing:240.108000px;}
.ls23{letter-spacing:242.748000px;}
.ls26{letter-spacing:383.196000px;}
.ls28{letter-spacing:411.972000px;}
.ls25{letter-spacing:416.790000px;}
.ls24{letter-spacing:419.166000px;}
.ls22{letter-spacing:420.354000px;}
.ls29{letter-spacing:492.360000px;}
.ls21{letter-spacing:696.366000px;}
.ls27{letter-spacing:709.566000px;}
.ls3{letter-spacing:796.380000px;}
.ls1{letter-spacing:846.780000px;}
.ls3c{letter-spacing:1039.566000px;}
.ls2{letter-spacing:1059.180000px;}
.ls0{letter-spacing:1335.180000px;}
.ls58{letter-spacing:1590.780000px;}
.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;}
}
.ws77{word-spacing:-66.000000px;}
.wsd1{word-spacing:-21.600000px;}
.wsd7{word-spacing:-19.800000px;}
.ws113{word-spacing:-19.728000px;}
.ws2{word-spacing:-19.584000px;}
.wsd2{word-spacing:-19.512000px;}
.ws4{word-spacing:-19.224000px;}
.wsa{word-spacing:-19.152000px;}
.ws11e{word-spacing:-19.134000px;}
.ws11c{word-spacing:-19.128000px;}
.wsd6{word-spacing:-19.122000px;}
.ws122{word-spacing:-19.110000px;}
.ws11f{word-spacing:-19.062000px;}
.ws121{word-spacing:-19.032000px;}
.wsd4{word-spacing:-18.960000px;}
.ws4b{word-spacing:-18.936000px;}
.ws120{word-spacing:-18.918000px;}
.ws119{word-spacing:-18.912000px;}
.ws11d{word-spacing:-18.906000px;}
.wsd3{word-spacing:-18.888000px;}
.ws11a{word-spacing:-18.822000px;}
.ws11b{word-spacing:-18.816000px;}
.ws5b{word-spacing:-18.792000px;}
.wsd5{word-spacing:-18.744000px;}
.ws139{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.648000px;}
.ws89{word-spacing:-18.504000px;}
.ws3{word-spacing:-18.360000px;}
.ws30{word-spacing:-18.216000px;}
.ws78{word-spacing:-18.150000px;}
.ws50{word-spacing:-18.084000px;}
.wsd8{word-spacing:-18.072000px;}
.ws4f{word-spacing:-18.018000px;}
.ws7e{word-spacing:-18.000000px;}
.ws33{word-spacing:-17.952000px;}
.ws9{word-spacing:-17.928000px;}
.ws61{word-spacing:-17.886000px;}
.ws7{word-spacing:-17.856000px;}
.ws34{word-spacing:-17.688000px;}
.ws76{word-spacing:-17.655000px;}
.ws31{word-spacing:-17.640000px;}
.ws39{word-spacing:-17.622000px;}
.ws75{word-spacing:-17.556000px;}
.ws7a{word-spacing:-17.490000px;}
.ws91{word-spacing:-17.424000px;}
.ws36{word-spacing:-17.358000px;}
.ws37{word-spacing:-17.292000px;}
.ws5c{word-spacing:-17.160000px;}
.ws35{word-spacing:-17.094000px;}
.ws38{word-spacing:-17.028000px;}
.ws4c{word-spacing:-16.962000px;}
.ws4e{word-spacing:-16.896000px;}
.ws79{word-spacing:-16.830000px;}
.ws5d{word-spacing:-16.764000px;}
.ws5{word-spacing:-16.560000px;}
.ws6c{word-spacing:-16.500000px;}
.ws153{word-spacing:-16.380000px;}
.ws32{word-spacing:-16.368000px;}
.ws13d{word-spacing:-16.260000px;}
.ws4a{word-spacing:-16.140000px;}
.ws4d{word-spacing:-16.104000px;}
.ws152{word-spacing:-16.080000px;}
.ws2f{word-spacing:-16.020000px;}
.ws151{word-spacing:-15.900000px;}
.ws1{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.720000px;}
.ws13e{word-spacing:-15.600000px;}
.ws13a{word-spacing:-15.552000px;}
.ws0{word-spacing:-15.540000px;}
.ws13c{word-spacing:-14.700000px;}
.ws118{word-spacing:-14.400000px;}
.ws83{word-spacing:-13.176000px;}
.ws81{word-spacing:-11.952000px;}
.ws90{word-spacing:-10.800000px;}
.ws138{word-spacing:-9.576000px;}
.ws13f{word-spacing:-8.352000px;}
.ws3c{word-spacing:-5.976000px;}
.ws80{word-spacing:-4.752000px;}
.ws17d{word-spacing:-4.260000px;}
.ws19{word-spacing:-4.248000px;}
.ws17f{word-spacing:-3.720000px;}
.ws136{word-spacing:-3.600000px;}
.ws17e{word-spacing:-3.540000px;}
.ws3e{word-spacing:-3.528000px;}
.ws1e{word-spacing:-3.384000px;}
.wse6{word-spacing:-3.282000px;}
.ws14e{word-spacing:-3.060000px;}
.ws1f{word-spacing:-3.024000px;}
.wse3{word-spacing:-2.982000px;}
.wsdf{word-spacing:-2.976000px;}
.wsda{word-spacing:-2.958000px;}
.wsdb{word-spacing:-2.952000px;}
.ws16d{word-spacing:-2.880000px;}
.ws116{word-spacing:-2.808000px;}
.wse0{word-spacing:-2.784000px;}
.wsdc{word-spacing:-2.712000px;}
.wsde{word-spacing:-2.688000px;}
.wsdd{word-spacing:-2.448000px;}
.ws16e{word-spacing:-2.400000px;}
.ws63{word-spacing:-2.376000px;}
.ws159{word-spacing:-2.340000px;}
.ws15a{word-spacing:-2.280000px;}
.wsd9{word-spacing:-2.160000px;}
.wse4{word-spacing:-2.088000px;}
.wse5{word-spacing:-2.016000px;}
.ws88{word-spacing:-1.872000px;}
.ws14d{word-spacing:-1.860000px;}
.wse2{word-spacing:-1.800000px;}
.ws15e{word-spacing:-1.740000px;}
.wsb5{word-spacing:-1.656000px;}
.ws17b{word-spacing:-1.440000px;}
.ws15f{word-spacing:-1.320000px;}
.ws134{word-spacing:-1.296000px;}
.wse1{word-spacing:-1.272000px;}
.ws59{word-spacing:-1.254000px;}
.ws110{word-spacing:-1.194000px;}
.ws5a{word-spacing:-1.188000px;}
.ws62{word-spacing:-1.152000px;}
.ws17a{word-spacing:-1.140000px;}
.ws73{word-spacing:-1.122000px;}
.ws188{word-spacing:-1.080000px;}
.ws9f{word-spacing:-1.056000px;}
.ws157{word-spacing:-0.960000px;}
.ws154{word-spacing:-0.900000px;}
.ws49{word-spacing:-0.858000px;}
.ws7b{word-spacing:-0.792000px;}
.ws131{word-spacing:-0.786000px;}
.ws130{word-spacing:-0.750000px;}
.ws16{word-spacing:-0.660000px;}
.ws67{word-spacing:-0.648000px;}
.ws2e{word-spacing:-0.576000px;}
.wsb{word-spacing:-0.540000px;}
.wsa7{word-spacing:-0.528000px;}
.ws8e{word-spacing:-0.504000px;}
.ws12a{word-spacing:-0.492000px;}
.ws146{word-spacing:-0.480000px;}
.ws55{word-spacing:-0.462000px;}
.wse7{word-spacing:-0.456000px;}
.ws5e{word-spacing:-0.432000px;}
.wsd{word-spacing:-0.420000px;}
.ws46{word-spacing:-0.396000px;}
.wsed{word-spacing:-0.366000px;}
.ws13{word-spacing:-0.360000px;}
.ws44{word-spacing:-0.330000px;}
.ws10f{word-spacing:-0.318000px;}
.ws27{word-spacing:-0.288000px;}
.ws7c{word-spacing:-0.264000px;}
.ws111{word-spacing:-0.258000px;}
.wse{word-spacing:-0.240000px;}
.wsf{word-spacing:-0.216000px;}
.ws112{word-spacing:-0.168000px;}
.ws74{word-spacing:-0.132000px;}
.ws148{word-spacing:-0.120000px;}
.ws42{word-spacing:-0.066000px;}
.ws175{word-spacing:-0.060000px;}
.wsc{word-spacing:0.000000px;}
.ws133{word-spacing:0.006000px;}
.ws17{word-spacing:0.060000px;}
.ws41{word-spacing:0.066000px;}
.ws15{word-spacing:0.072000px;}
.ws8b{word-spacing:0.084000px;}
.ws3a{word-spacing:0.120000px;}
.ws48{word-spacing:0.132000px;}
.ws52{word-spacing:0.144000px;}
.ws167{word-spacing:0.180000px;}
.ws47{word-spacing:0.198000px;}
.ws6f{word-spacing:0.216000px;}
.ws10{word-spacing:0.252000px;}
.ws71{word-spacing:0.264000px;}
.ws14{word-spacing:0.288000px;}
.ws18{word-spacing:0.300000px;}
.ws43{word-spacing:0.330000px;}
.wse8{word-spacing:0.336000px;}
.wsf7{word-spacing:0.348000px;}
.ws51{word-spacing:0.360000px;}
.wsec{word-spacing:0.372000px;}
.ws57{word-spacing:0.396000px;}
.wsf9{word-spacing:0.402000px;}
.ws12b{word-spacing:0.408000px;}
.ws132{word-spacing:0.414000px;}
.ws11{word-spacing:0.420000px;}
.ws12{word-spacing:0.432000px;}
.wsee{word-spacing:0.444000px;}
.ws40{word-spacing:0.462000px;}
.wseb{word-spacing:0.474000px;}
.ws147{word-spacing:0.480000px;}
.ws6d{word-spacing:0.504000px;}
.ws58{word-spacing:0.528000px;}
.ws145{word-spacing:0.540000px;}
.wsef{word-spacing:0.546000px;}
.ws109{word-spacing:0.552000px;}
.ws12f{word-spacing:0.564000px;}
.wsf0{word-spacing:0.570000px;}
.ws28{word-spacing:0.576000px;}
.ws56{word-spacing:0.594000px;}
.wsf3{word-spacing:0.606000px;}
.ws10c{word-spacing:0.648000px;}
.ws177{word-spacing:0.660000px;}
.wsf1{word-spacing:0.666000px;}
.wsf2{word-spacing:0.702000px;}
.ws10e{word-spacing:0.720000px;}
.ws45{word-spacing:0.726000px;}
.wsf8{word-spacing:0.732000px;}
.ws128{word-spacing:0.744000px;}
.ws12d{word-spacing:0.750000px;}
.wsc5{word-spacing:0.792000px;}
.ws125{word-spacing:0.804000px;}
.ws60{word-spacing:0.858000px;}
.ws65{word-spacing:0.864000px;}
.ws12e{word-spacing:0.918000px;}
.ws6b{word-spacing:0.990000px;}
.ws129{word-spacing:1.002000px;}
.ws10a{word-spacing:1.032000px;}
.ws108{word-spacing:1.038000px;}
.ws163{word-spacing:1.080000px;}
.wsfc{word-spacing:1.104000px;}
.wsad{word-spacing:1.122000px;}
.ws72{word-spacing:1.188000px;}
.wsfd{word-spacing:1.206000px;}
.ws8f{word-spacing:1.224000px;}
.ws12c{word-spacing:1.230000px;}
.wsa9{word-spacing:1.254000px;}
.ws16b{word-spacing:1.260000px;}
.ws8a{word-spacing:1.296000px;}
.wsfa{word-spacing:1.374000px;}
.wse9{word-spacing:1.422000px;}
.wsfb{word-spacing:1.476000px;}
.ws155{word-spacing:1.500000px;}
.ws123{word-spacing:1.572000px;}
.ws124{word-spacing:1.602000px;}
.ws126{word-spacing:1.704000px;}
.ws7d{word-spacing:1.716000px;}
.ws114{word-spacing:1.728000px;}
.ws150{word-spacing:1.740000px;}
.wsf6{word-spacing:1.746000px;}
.ws10d{word-spacing:1.752000px;}
.ws64{word-spacing:1.800000px;}
.ws127{word-spacing:1.806000px;}
.ws18f{word-spacing:1.920000px;}
.wsf4{word-spacing:2.046000px;}
.wsf5{word-spacing:2.148000px;}
.ws143{word-spacing:2.160000px;}
.ws87{word-spacing:2.304000px;}
.ws14b{word-spacing:2.400000px;}
.ws5f{word-spacing:2.448000px;}
.ws14a{word-spacing:2.460000px;}
.ws10b{word-spacing:2.616000px;}
.ws162{word-spacing:2.940000px;}
.ws85{word-spacing:2.952000px;}
.ws173{word-spacing:3.000000px;}
.ws18a{word-spacing:3.120000px;}
.wsff{word-spacing:3.204000px;}
.ws6e{word-spacing:3.240000px;}
.ws174{word-spacing:3.480000px;}
.ws194{word-spacing:3.564000px;}
.ws3f{word-spacing:3.600000px;}
.ws164{word-spacing:3.660000px;}
.ws17c{word-spacing:3.720000px;}
.ws180{word-spacing:3.840000px;}
.ws193{word-spacing:3.960000px;}
.ws82{word-spacing:4.032000px;}
.ws14f{word-spacing:4.140000px;}
.ws86{word-spacing:4.176000px;}
.ws185{word-spacing:4.260000px;}
.wsa2{word-spacing:4.290000px;}
.ws168{word-spacing:4.440000px;}
.ws186{word-spacing:4.680000px;}
.ws169{word-spacing:4.800000px;}
.wsb2{word-spacing:4.818000px;}
.ws115{word-spacing:4.824000px;}
.ws158{word-spacing:4.860000px;}
.wsb8{word-spacing:4.884000px;}
.ws142{word-spacing:4.968000px;}
.ws135{word-spacing:5.064000px;}
.ws66{word-spacing:5.184000px;}
.ws21{word-spacing:5.328000px;}
.ws16f{word-spacing:5.340000px;}
.ws182{word-spacing:5.520000px;}
.ws2a{word-spacing:5.688000px;}
.ws16a{word-spacing:5.880000px;}
.ws1d{word-spacing:6.048000px;}
.ws170{word-spacing:6.060000px;}
.ws3d{word-spacing:6.408000px;}
.ws156{word-spacing:6.540000px;}
.wsea{word-spacing:6.552000px;}
.ws18d{word-spacing:6.720000px;}
.ws26{word-spacing:6.912000px;}
.ws18b{word-spacing:7.080000px;}
.ws18c{word-spacing:7.200000px;}
.ws22{word-spacing:7.272000px;}
.ws172{word-spacing:7.740000px;}
.ws137{word-spacing:7.776000px;}
.ws14c{word-spacing:8.280000px;}
.ws176{word-spacing:8.460000px;}
.ws183{word-spacing:8.520000px;}
.ws23{word-spacing:8.928000px;}
.ws15b{word-spacing:8.940000px;}
.ws184{word-spacing:9.240000px;}
.ws13b{word-spacing:9.288000px;}
.ws166{word-spacing:9.480000px;}
.wsbd{word-spacing:9.636000px;}
.ws165{word-spacing:9.660000px;}
.ws69{word-spacing:10.008000px;}
.ws149{word-spacing:10.140000px;}
.ws6a{word-spacing:10.152000px;}
.wsbc{word-spacing:10.824000px;}
.ws187{word-spacing:10.860000px;}
.wsc9{word-spacing:10.890000px;}
.wsc8{word-spacing:11.088000px;}
.ws171{word-spacing:11.340000px;}
.ws117{word-spacing:11.664000px;}
.ws18e{word-spacing:12.060000px;}
.ws84{word-spacing:12.384000px;}
.ws15c{word-spacing:12.540000px;}
.ws1b{word-spacing:13.248000px;}
.ws15d{word-spacing:13.260000px;}
.wsfe{word-spacing:13.608000px;}
.ws181{word-spacing:13.740000px;}
.ws1a{word-spacing:13.752000px;}
.wsd0{word-spacing:14.112000px;}
.ws192{word-spacing:14.322000px;}
.ws16c{word-spacing:14.460000px;}
.ws24{word-spacing:14.472000px;}
.ws191{word-spacing:14.850000px;}
.ws25{word-spacing:15.768000px;}
.ws190{word-spacing:15.840000px;}
.ws189{word-spacing:16.140000px;}
.ws141{word-spacing:16.848000px;}
.ws161{word-spacing:17.340000px;}
.ws8c{word-spacing:18.432000px;}
.ws103{word-spacing:18.552000px;}
.ws20{word-spacing:18.576000px;}
.ws106{word-spacing:18.648000px;}
.ws104{word-spacing:18.720000px;}
.ws107{word-spacing:19.032000px;}
.ws1c{word-spacing:19.224000px;}
.wsc1{word-spacing:19.272000px;}
.ws100{word-spacing:19.344000px;}
.ws101{word-spacing:19.410000px;}
.ws2b{word-spacing:19.584000px;}
.ws105{word-spacing:19.704000px;}
.ws70{word-spacing:19.728000px;}
.ws179{word-spacing:20.040000px;}
.ws2d{word-spacing:20.088000px;}
.ws178{word-spacing:20.460000px;}
.ws2c{word-spacing:20.664000px;}
.ws102{word-spacing:20.694000px;}
.ws7f{word-spacing:20.808000px;}
.ws29{word-spacing:20.952000px;}
.ws9d{word-spacing:23.100000px;}
.ws9e{word-spacing:24.024000px;}
.ws92{word-spacing:25.632000px;}
.ws8d{word-spacing:25.776000px;}
.wsbe{word-spacing:25.806000px;}
.wsa8{word-spacing:26.730000px;}
.ws68{word-spacing:31.752000px;}
.ws98{word-spacing:32.538000px;}
.ws3b{word-spacing:33.264000px;}
.ws140{word-spacing:34.920000px;}
.wsc0{word-spacing:35.640000px;}
.wsa5{word-spacing:36.300000px;}
.ws144{word-spacing:38.952000px;}
.ws54{word-spacing:39.312000px;}
.ws53{word-spacing:40.176000px;}
.wsb7{word-spacing:42.702000px;}
.wsab{word-spacing:45.936000px;}
.wsc3{word-spacing:46.860000px;}
.wsa0{word-spacing:51.678000px;}
.wsc4{word-spacing:51.942000px;}
.wsb4{word-spacing:56.430000px;}
.ws99{word-spacing:56.694000px;}
.wscc{word-spacing:57.618000px;}
.wsaf{word-spacing:60.126000px;}
.wsca{word-spacing:68.442000px;}
.wsb6{word-spacing:70.884000px;}
.wsa4{word-spacing:71.544000px;}
.ws95{word-spacing:72.732000px;}
.wsb9{word-spacing:73.260000px;}
.wsa6{word-spacing:74.844000px;}
.ws93{word-spacing:80.454000px;}
.wsb3{word-spacing:97.284000px;}
.ws160{word-spacing:103.080000px;}
.ws96{word-spacing:107.976000px;}
.ws9a{word-spacing:108.042000px;}
.ws9b{word-spacing:111.144000px;}
.wsb1{word-spacing:113.784000px;}
.wsbb{word-spacing:120.054000px;}
.wscd{word-spacing:121.506000px;}
.wsa3{word-spacing:122.166000px;}
.ws97{word-spacing:138.006000px;}
.wsc6{word-spacing:148.764000px;}
.wsba{word-spacing:158.928000px;}
.wscf{word-spacing:162.690000px;}
.wsae{word-spacing:168.960000px;}
.wsaa{word-spacing:171.930000px;}
.wsbf{word-spacing:172.128000px;}
.wsac{word-spacing:179.322000px;}
.wsc7{word-spacing:182.292000px;}
.ws9c{word-spacing:183.876000px;}
.ws94{word-spacing:189.684000px;}
.wscb{word-spacing:218.460000px;}
.wsa1{word-spacing:238.590000px;}
.wsc2{word-spacing:239.382000px;}
.wsb0{word-spacing:254.364000px;}
.wsce{word-spacing:267.696000px;}
._4d{margin-left:-20.760000px;}
._4c{margin-left:-19.344000px;}
._4e{margin-left:-17.928000px;}
._51{margin-left:-16.653600px;}
._50{margin-left:-15.544800px;}
._30{margin-left:-14.359200px;}
._2f{margin-left:-13.082400px;}
._2d{margin-left:-12.024000px;}
._2e{margin-left:-10.824000px;}
._31{margin-left:-9.792000px;}
._32{margin-left:-8.260800px;}
._19{margin-left:-6.451200px;}
._2b{margin-left:-5.395200px;}
._7{margin-left:-4.392000px;}
._5{margin-left:-2.764800px;}
._0{margin-left:-1.020000px;}
._1{width:1.260000px;}
._6{width:2.892000px;}
._18{width:4.012800px;}
._d{width:5.736000px;}
._a{width:6.984000px;}
._9{width:8.280000px;}
._13{width:9.324000px;}
._14{width:10.900800px;}
._15{width:12.710400px;}
._25{width:13.898400px;}
._2a{width:14.908800px;}
._1a{width:16.156800px;}
._1b{width:17.352000px;}
._8{width:20.844000px;}
._e{width:22.010400px;}
._1c{width:23.011200px;}
._28{width:24.014400px;}
._24{width:25.056000px;}
._10{width:26.280000px;}
._f{width:27.936000px;}
._b{width:29.284800px;}
._c{width:30.957600px;}
._33{width:32.418600px;}
._16{width:33.816000px;}
._17{width:35.625600px;}
._4f{width:37.620000px;}
._2c{width:39.628800px;}
._3f{width:40.788600px;}
._27{width:42.148800px;}
._21{width:44.784000px;}
._22{width:45.928800px;}
._23{width:47.109600px;}
._3b{width:49.989600px;}
._4a{width:53.284200px;}
._3c{width:59.700600px;}
._44{width:68.430000px;}
._47{width:70.956600px;}
._45{width:72.628200px;}
._34{width:75.405000px;}
._43{width:77.062200px;}
._48{width:90.756600px;}
._3d{width:93.001200px;}
._38{width:97.338000px;}
._39{width:105.640800px;}
._1e{width:108.594000px;}
._3a{width:121.368000px;}
._41{width:124.259400px;}
._49{width:131.739600px;}
._1d{width:133.860000px;}
._26{width:144.564000px;}
._1f{width:146.418000px;}
._42{width:149.712000px;}
._46{width:152.574600px;}
._37{width:154.054800px;}
._35{width:171.858600px;}
._20{width:180.468000px;}
._3e{width:201.736200px;}
._40{width:228.169800px;}
._4b{width:255.737400px;}
._36{width:322.992000px;}
._29{width:576.378000px;}
._11{width:624.780000px;}
._3{width:765.900000px;}
._12{width:809.460000px;}
._4{width:821.580000px;}
._2{width:1005.420000px;}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(192,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:24.000000px;}
.fs1{font-size:36.000000px;}
.fs8{font-size:39.600000px;}
.fs7{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.300000px;}
.y5c{bottom:4.500000px;}
.y7f{bottom:4.800000px;}
.y7{bottom:5.100000px;}
.yb8{bottom:5.400000px;}
.ya{bottom:6.000000px;}
.y19d{bottom:6.300000px;}
.y55{bottom:10.800000px;}
.y67{bottom:10.801500px;}
.y5b{bottom:25.800000px;}
.y60{bottom:26.100000px;}
.y1c0{bottom:36.600000px;}
.y166{bottom:47.100000px;}
.yee{bottom:47.400000px;}
.y21e{bottom:57.900000px;}
.y4{bottom:67.800000px;}
.y1fc{bottom:68.400000px;}
.yae{bottom:68.700000px;}
.y19f{bottom:75.000000px;}
.y1e1{bottom:79.200000px;}
.y1dc{bottom:79.500000px;}
.y168{bottom:87.600000px;}
.y1f0{bottom:89.700000px;}
.y8e{bottom:90.000000px;}
.y16f{bottom:96.300000px;}
.ye9{bottom:98.106000px;}
.y202{bottom:99.000000px;}
.y1e9{bottom:100.500000px;}
.y1be{bottom:100.800000px;}
.y208{bottom:103.497000px;}
.y204{bottom:103.500000px;}
.y270{bottom:105.096000px;}
.y128{bottom:105.600000px;}
.y2cc{bottom:106.800000px;}
.y2fb{bottom:108.000000px;}
.yc4{bottom:111.300000px;}
.y37{bottom:111.306000px;}
.y53{bottom:117.924000px;}
.y1b4{bottom:119.142000px;}
.ye8{bottom:121.506000px;}
.y176{bottom:122.092500px;}
.y70{bottom:122.418000px;}
.y207{bottom:124.798500px;}
.y203{bottom:124.800000px;}
.y2cb{bottom:126.000000px;}
.y2fa{bottom:127.200000px;}
.y18f{bottom:128.190000px;}
.y127{bottom:131.394000px;}
.y26f{bottom:131.400000px;}
.y120{bottom:131.406000px;}
.y12a{bottom:132.600000px;}
.y231{bottom:132.900000px;}
.y2b2{bottom:132.978000px;}
.y28d{bottom:133.504500px;}
.y36{bottom:134.400000px;}
.y256{bottom:138.936000px;}
.ya1{bottom:139.800000px;}
.yab{bottom:140.712000px;}
.y52{bottom:141.018000px;}
.y1b3{bottom:142.236000px;}
.y179{bottom:143.097000px;}
.y175{bottom:143.394000px;}
.y1bc{bottom:143.400000px;}
.ye7{bottom:144.600000px;}
.y2ca{bottom:145.500000px;}
.y206{bottom:146.397000px;}
.y200{bottom:146.398500px;}
.y2f9{bottom:146.700000px;}
.y18e{bottom:151.590000px;}
.y126{bottom:152.695500px;}
.y11f{bottom:152.707500px;}
.y1d5{bottom:154.200000px;}
.y35{bottom:154.500000px;}
.y2b1{bottom:156.378000px;}
.y28c{bottom:156.751500px;}
.y255{bottom:162.030000px;}
.yaa{bottom:164.112000px;}
.y178{bottom:164.398500px;}
.y51{bottom:164.418000px;}
.y174{bottom:164.695500px;}
.y216{bottom:164.700000px;}
.y2c9{bottom:165.000000px;}
.ya4{bottom:165.600000px;}
.y34{bottom:165.624000px;}
.y1b2{bottom:165.636000px;}
.y2f8{bottom:166.200000px;}
.y205{bottom:167.698500px;}
.y1ff{bottom:167.700000px;}
.ye6{bottom:168.000000px;}
.y125{bottom:174.294000px;}
.y11a{bottom:174.306000px;}
.y18d{bottom:174.990000px;}
.y1fb{bottom:175.200000px;}
.y1d4{bottom:175.500000px;}
.y2b0{bottom:179.472000px;}
.y28b{bottom:179.998500px;}
.y2c8{bottom:184.200000px;}
.y119{bottom:184.800000px;}
.y254{bottom:185.430000px;}
.y177{bottom:185.700000px;}
.y173{bottom:186.294000px;}
.y16b{bottom:186.306000px;}
.ya0{bottom:186.900000px;}
.ya3{bottom:186.901500px;}
.ya9{bottom:187.206000px;}
.y50{bottom:187.818000px;}
.y33{bottom:188.718000px;}
.y201{bottom:189.000000px;}
.y1b1{bottom:189.036000px;}
.ye5{bottom:189.300000px;}
.y124{bottom:195.595500px;}
.y11e{bottom:195.607500px;}
.y170{bottom:196.500000px;}
.y16a{bottom:196.800000px;}
.y18c{bottom:198.084000px;}
.y2af{bottom:202.872000px;}
.y28a{bottom:203.245500px;}
.y2c7{bottom:203.700000px;}
.y2f7{bottom:204.900000px;}
.ye4{bottom:205.800000px;}
.y172{bottom:207.595500px;}
.ya2{bottom:208.500000px;}
.y253{bottom:208.830000px;}
.ya8{bottom:210.606000px;}
.y4f{bottom:210.912000px;}
.y32{bottom:212.118000px;}
.y1b0{bottom:212.130000px;}
.y123{bottom:216.897000px;}
.y11d{bottom:216.909000px;}
.y13e{bottom:218.100000px;}
.y18b{bottom:221.484000px;}
.y105{bottom:221.700000px;}
.y2c6{bottom:223.200000px;}
.y2f6{bottom:224.400000px;}
.y2ae{bottom:226.272000px;}
.y289{bottom:226.492500px;}
.y106{bottom:226.500000px;}
.y1ef{bottom:228.000000px;}
.y171{bottom:228.897000px;}
.y252{bottom:231.924000px;}
.ya7{bottom:234.006000px;}
.y4e{bottom:234.312000px;}
.y31{bottom:235.518000px;}
.y1af{bottom:235.530000px;}
.y122{bottom:238.198500px;}
.y11c{bottom:238.210500px;}
.y2c5{bottom:242.700000px;}
.y1fa{bottom:242.998500px;}
.y2f5{bottom:243.900000px;}
.y18a{bottom:244.884000px;}
.y16c{bottom:245.700000px;}
.y9e{bottom:247.200000px;}
.y2ad{bottom:249.366000px;}
.y288{bottom:249.739500px;}
.y16e{bottom:250.198500px;}
.y9f{bottom:251.700000px;}
.y1f3{bottom:253.797000px;}
.y1fe{bottom:253.798500px;}
.y251{bottom:255.324000px;}
.ya6{bottom:257.100000px;}
.y4d{bottom:257.712000px;}
.y30{bottom:258.612000px;}
.y1ae{bottom:258.930000px;}
.y121{bottom:259.500000px;}
.y11b{bottom:259.512000px;}
.y2c4{bottom:261.900000px;}
.y9d{bottom:262.500000px;}
.y2f4{bottom:263.100000px;}
.y1f9{bottom:264.597000px;}
.y101{bottom:265.200000px;}
.y189{bottom:267.978000px;}
.y104{bottom:269.700000px;}
.y16d{bottom:271.500000px;}
.y2ac{bottom:272.766000px;}
.y287{bottom:272.986500px;}
.y1f2{bottom:275.098500px;}
.y1fd{bottom:275.100000px;}
.y118{bottom:277.200000px;}
.y250{bottom:278.418000px;}
.ya5{bottom:279.900000px;}
.y4c{bottom:280.806000px;}
.y2c3{bottom:281.400000px;}
.y2f{bottom:282.012000px;}
.y1ad{bottom:282.024000px;}
.y2f3{bottom:282.600000px;}
.y1f8{bottom:285.898500px;}
.y103{bottom:291.298500px;}
.y188{bottom:291.378000px;}
.yd5{bottom:292.800000px;}
.y9c{bottom:295.192500px;}
.y2ab{bottom:296.166000px;}
.y1f1{bottom:296.400000px;}
.y2c2{bottom:300.900000px;}
.y100{bottom:301.800000px;}
.y24f{bottom:301.818000px;}
.y2f2{bottom:302.100000px;}
.y4b{bottom:304.206000px;}
.y2e{bottom:305.412000px;}
.y1ac{bottom:305.424000px;}
.y9b{bottom:306.000000px;}
.y1f7{bottom:307.200000px;}
.y163{bottom:310.500000px;}
.y286{bottom:312.402000px;}
.y102{bottom:312.600000px;}
.y187{bottom:314.778000px;}
.y98{bottom:317.083500px;}
.y1eb{bottom:317.700000px;}
.yd9{bottom:318.895500px;}
.y2aa{bottom:319.260000px;}
.y2c1{bottom:320.100000px;}
.y2f1{bottom:321.300000px;}
.y24e{bottom:325.218000px;}
.y117{bottom:327.300000px;}
.y4a{bottom:327.606000px;}
.y2d{bottom:328.506000px;}
.y1ab{bottom:328.824000px;}
.y285{bottom:333.664500px;}
.y162{bottom:336.288000px;}
.y186{bottom:337.872000px;}
.y97{bottom:338.385000px;}
.y9a{bottom:338.692500px;}
.y1ee{bottom:339.297000px;}
.y2c0{bottom:339.600000px;}
.yd8{bottom:340.197000px;}
.ydb{bottom:340.198500px;}
.y2f0{bottom:340.800000px;}
.y2a9{bottom:342.660000px;}
.y24d{bottom:348.312000px;}
.y99{bottom:349.500000px;}
.y1f6{bottom:349.800000px;}
.y49{bottom:350.700000px;}
.yfd{bottom:351.300000px;}
.y2c{bottom:351.906000px;}
.y1aa{bottom:351.918000px;}
.y116{bottom:352.500000px;}
.y284{bottom:354.927000px;}
.y161{bottom:357.589500px;}
.y2bf{bottom:359.100000px;}
.y2ef{bottom:360.300000px;}
.y1ed{bottom:360.598500px;}
.y185{bottom:361.272000px;}
.yd7{bottom:361.498500px;}
.yda{bottom:361.500000px;}
.y2a8{bottom:365.754000px;}
.yff{bottom:366.598500px;}
.y1f5{bottom:371.101500px;}
.y24c{bottom:371.712000px;}
.y48{bottom:374.100000px;}
.y2b{bottom:375.306000px;}
.y1a9{bottom:375.318000px;}
.y283{bottom:376.594500px;}
.y169{bottom:376.800000px;}
.yfc{bottom:377.398500px;}
.yfa{bottom:377.400000px;}
.y115{bottom:377.700000px;}
.y2be{bottom:378.300000px;}
.y160{bottom:379.188000px;}
.y2ee{bottom:379.800000px;}
.y1ec{bottom:381.900000px;}
.y96{bottom:382.192500px;}
.yd6{bottom:382.800000px;}
.y184{bottom:384.366000px;}
.yfe{bottom:387.900000px;}
.y2a7{bottom:389.154000px;}
.y1f4{bottom:392.700000px;}
.y95{bottom:393.000000px;}
.y24b{bottom:395.112000px;}
.y47{bottom:396.600000px;}
.y2bd{bottom:397.800000px;}
.y2a{bottom:398.400000px;}
.y1a8{bottom:398.412000px;}
.yfb{bottom:398.700000px;}
.y2ed{bottom:399.000000px;}
.y114{bottom:399.300000px;}
.y15f{bottom:400.489500px;}
.y183{bottom:407.766000px;}
.y66{bottom:409.798500px;}
.y2a6{bottom:412.554000px;}
.y113{bottom:413.718000px;}
.y167{bottom:415.800000px;}
.yf8{bottom:416.100000px;}
.y2bc{bottom:417.300000px;}
.y24a{bottom:418.206000px;}
.y2ec{bottom:418.500000px;}
.y1e0{bottom:420.900000px;}
.y8d{bottom:421.200000px;}
.y15e{bottom:421.791000px;}
.y153{bottom:421.795500px;}
.y29{bottom:421.800000px;}
.y1a7{bottom:421.812000px;}
.y92{bottom:425.695500px;}
.yd3{bottom:428.392500px;}
.y182{bottom:431.166000px;}
.yf9{bottom:431.398500px;}
.y2a5{bottom:435.648000px;}
.y2bb{bottom:436.800000px;}
.y112{bottom:436.812000px;}
.y65{bottom:437.400000px;}
.y2eb{bottom:438.000000px;}
.yd2{bottom:439.200000px;}
.y28{bottom:441.600000px;}
.y249{bottom:441.606000px;}
.yf7{bottom:442.198500px;}
.yf5{bottom:442.200000px;}
.y15d{bottom:443.092500px;}
.y152{bottom:443.097000px;}
.y1a6{bottom:445.212000px;}
.y1e8{bottom:446.700000px;}
.y91{bottom:446.997000px;}
.yd4{bottom:449.694000px;}
.y27{bottom:452.700000px;}
.y181{bottom:454.260000px;}
.y2ba{bottom:456.000000px;}
.y2ea{bottom:457.200000px;}
.y1ea{bottom:457.497000px;}
.y94{bottom:457.798500px;}
.y2a4{bottom:459.048000px;}
.y111{bottom:460.212000px;}
.y64{bottom:463.200000px;}
.yf6{bottom:463.500000px;}
.y15c{bottom:464.394000px;}
.y151{bottom:464.398500px;}
.y248{bottom:465.006000px;}
.y1e5{bottom:467.997000px;}
.y90{bottom:468.298500px;}
.y1a5{bottom:468.306000px;}
.ycf{bottom:469.500000px;}
.y2b9{bottom:474.600000px;}
.y26{bottom:476.100000px;}
.y2e9{bottom:476.700000px;}
.y180{bottom:477.660000px;}
.y1df{bottom:478.798500px;}
.y1e2{bottom:478.800000px;}
.y93{bottom:479.100000px;}
.y63{bottom:480.000000px;}
.y165{bottom:480.600000px;}
.yf1{bottom:480.900000px;}
.y2a3{bottom:482.448000px;}
.y110{bottom:483.612000px;}
.y15b{bottom:485.695500px;}
.yf2{bottom:485.698500px;}
.y150{bottom:485.700000px;}
.y247{bottom:488.100000px;}
.y1e4{bottom:489.298500px;}
.y8f{bottom:489.600000px;}
.y1a4{bottom:491.706000px;}
.y2b8{bottom:492.000000px;}
.yd1{bottom:495.301500px;}
.yf4{bottom:496.198500px;}
.y25{bottom:496.200000px;}
.y1de{bottom:500.100000px;}
.y17f{bottom:501.060000px;}
.y2a2{bottom:505.542000px;}
.yce{bottom:506.100000px;}
.y164{bottom:506.400000px;}
.y10f{bottom:506.706000px;}
.yf0{bottom:507.000000px;}
.y15a{bottom:507.294000px;}
.y24{bottom:507.324000px;}
.y62{bottom:507.600000px;}
.y1e3{bottom:510.600000px;}
.y246{bottom:511.500000px;}
.y2b7{bottom:513.300000px;}
.y1a3{bottom:515.106000px;}
.y2e8{bottom:515.400000px;}
.yd0{bottom:516.900000px;}
.yf3{bottom:517.500000px;}
.y17e{bottom:524.154000px;}
.y88{bottom:527.695500px;}
.y159{bottom:528.595500px;}
.y8c{bottom:528.600000px;}
.y2a1{bottom:528.942000px;}
.y10e{bottom:530.106000px;}
.y23{bottom:530.418000px;}
.y2b6{bottom:530.706000px;}
.y1e7{bottom:532.198500px;}
.y2e7{bottom:534.900000px;}
.y1a2{bottom:538.200000px;}
.y157{bottom:545.400000px;}
.yed{bottom:545.700000px;}
.y61{bottom:546.000000px;}
.y23b{bottom:547.200000px;}
.y17d{bottom:547.554000px;}
.y87{bottom:548.997000px;}
.y158{bottom:549.897000px;}
.yef{bottom:550.498500px;}
.y245{bottom:551.697000px;}
.y2a0{bottom:552.342000px;}
.y1e6{bottom:553.500000px;}
.y10d{bottom:553.506000px;}
.y22{bottom:553.818000px;}
.y2b5{bottom:554.106000px;}
.y89{bottom:554.400000px;}
.y8b{bottom:554.401500px;}
.yca{bottom:555.600000px;}
.y243{bottom:562.500000px;}
.y5f{bottom:562.800000px;}
.y1cc{bottom:570.900000px;}
.y17c{bottom:570.954000px;}
.y156{bottom:571.198500px;}
.y154{bottom:571.203000px;}
.yec{bottom:571.800000px;}
.y23d{bottom:572.998500px;}
.y23f{bottom:573.000000px;}
.y19e{bottom:573.300000px;}
.y2e6{bottom:573.900000px;}
.y29f{bottom:575.436000px;}
.y8a{bottom:576.000000px;}
.y10c{bottom:576.600000px;}
.y21{bottom:576.912000px;}
.y2b4{bottom:577.200000px;}
.ycd{bottom:581.697000px;}
.y155{bottom:592.500000px;}
.y2e5{bottom:593.100000px;}
.y17b{bottom:594.048000px;}
.y23c{bottom:594.300000px;}
.y239{bottom:594.301500px;}
.y1db{bottom:596.992500px;}
.y29e{bottom:598.836000px;}
.y20{bottom:600.312000px;}
.y2b3{bottom:600.600000px;}
.y1a1{bottom:601.500000px;}
.y10b{bottom:601.800000px;}
.ycc{bottom:602.998500px;}
.yc9{bottom:603.000000px;}
.y86{bottom:603.298500px;}
.y242{bottom:605.097000px;}
.y1d1{bottom:607.497000px;}
.y13d{bottom:610.200000px;}
.yea{bottom:610.500000px;}
.y2e4{bottom:612.600000px;}
.y147{bottom:614.689500px;}
.yeb{bottom:615.300000px;}
.y23e{bottom:615.898500px;}
.y238{bottom:615.900000px;}
.y5e{bottom:616.500000px;}
.y17a{bottom:617.448000px;}
.y1da{bottom:618.294000px;}
.y26e{bottom:618.946500px;}
.y29d{bottom:622.236000px;}
.y10a{bottom:623.400000px;}
.y1f{bottom:623.712000px;}
.ycb{bottom:624.300000px;}
.y84{bottom:624.600000px;}
.y1a0{bottom:624.900000px;}
.y241{bottom:626.398500px;}
.y1d0{bottom:628.798500px;}
.y1dd{bottom:628.800000px;}
.y1d3{bottom:628.801500px;}
.y2e3{bottom:632.100000px;}
.y5d{bottom:633.300000px;}
.y14f{bottom:635.397000px;}
.y146{bottom:635.991000px;}
.y23a{bottom:637.200000px;}
.y1d9{bottom:639.595500px;}
.y109{bottom:640.848000px;}
.y26d{bottom:642.346500px;}
.y29c{bottom:645.330000px;}
.y85{bottom:645.901500px;}
.y1e{bottom:646.806000px;}
.y240{bottom:647.700000px;}
.y1cf{bottom:650.397000px;}
.y1cb{bottom:650.398500px;}
.y1d2{bottom:650.400000px;}
.y2e2{bottom:651.300000px;}
.y14e{bottom:656.698500px;}
.y14c{bottom:656.700000px;}
.y145{bottom:657.292500px;}
.y244{bottom:658.500000px;}
.y1d8{bottom:660.897000px;}
.y5a{bottom:660.900000px;}
.ye3{bottom:662.142000px;}
.yc3{bottom:663.300000px;}
.y108{bottom:663.942000px;}
.y26c{bottom:665.644500px;}
.y19c{bottom:666.300000px;}
.y29b{bottom:668.730000px;}
.y1d{bottom:670.206000px;}
.y2e1{bottom:670.800000px;}
.y1ce{bottom:671.698500px;}
.y1ca{bottom:671.700000px;}
.y83{bottom:673.198500px;}
.y230{bottom:675.900000px;}
.y14d{bottom:678.000000px;}
.y144{bottom:678.594000px;}
.y237{bottom:680.692500px;}
.y1d7{bottom:682.198500px;}
.ye2{bottom:685.542000px;}
.y107{bottom:687.342000px;}
.y26b{bottom:688.942500px;}
.yc8{bottom:689.095500px;}
.y2e0{bottom:690.300000px;}
.y29a{bottom:691.824000px;}
.y1cd{bottom:693.000000px;}
.y1c{bottom:693.606000px;}
.y82{bottom:694.500000px;}
.y143{bottom:700.192500px;}
.y236{bottom:701.994000px;}
.y22f{bottom:701.997000px;}
.yc1{bottom:702.294000px;}
.y1d6{bottom:703.500000px;}
.y2df{bottom:709.500000px;}
.yc7{bottom:710.397000px;}
.ye1{bottom:710.436000px;}
.y59{bottom:710.700000px;}
.y26a{bottom:712.240500px;}
.y299{bottom:715.224000px;}
.y14b{bottom:716.100000px;}
.y1b{bottom:716.700000px;}
.y81{bottom:718.800000px;}
.yc2{bottom:721.200000px;}
.y142{bottom:721.494000px;}
.y13b{bottom:721.500000px;}
.y235{bottom:723.295500px;}
.y22e{bottom:723.298500px;}
.y58{bottom:727.500000px;}
.y2de{bottom:729.000000px;}
.y80{bottom:729.600000px;}
.yc6{bottom:731.698500px;}
.ye0{bottom:733.836000px;}
.y269{bottom:735.538500px;}
.y282{bottom:735.540000px;}
.y7e{bottom:738.600000px;}
.y298{bottom:738.624000px;}
.y1a{bottom:740.100000px;}
.y148{bottom:741.900000px;}
.y14a{bottom:741.901500px;}
.y141{bottom:742.795500px;}
.y234{bottom:744.597000px;}
.y22b{bottom:744.600000px;}
.y2dd{bottom:748.500000px;}
.yc5{bottom:753.000000px;}
.y57{bottom:755.100000px;}
.ydf{bottom:757.236000px;}
.y268{bottom:758.836500px;}
.y281{bottom:758.838000px;}
.y19{bottom:760.200000px;}
.y297{bottom:761.718000px;}
.y149{bottom:763.500000px;}
.y1bb{bottom:763.800000px;}
.y140{bottom:764.097000px;}
.y7d{bottom:764.698500px;}
.y7b{bottom:764.700000px;}
.y233{bottom:765.898500px;}
.y22d{bottom:765.901500px;}
.y2dc{bottom:768.000000px;}
.y18{bottom:770.100000px;}
.y1c1{bottom:779.100000px;}
.yde{bottom:780.330000px;}
.y13c{bottom:780.900000px;}
.y267{bottom:782.134500px;}
.y280{bottom:782.136000px;}
.y296{bottom:785.118000px;}
.y13f{bottom:785.398500px;}
.y7c{bottom:786.000000px;}
.y232{bottom:787.200000px;}
.y22c{bottom:787.203000px;}
.y19b{bottom:788.118000px;}
.y17{bottom:789.600000px;}
.y1c6{bottom:789.898500px;}
.y56{bottom:793.500000px;}
.yc0{bottom:798.901500px;}
.ydd{bottom:803.730000px;}
.y266{bottom:805.432500px;}
.y27f{bottom:805.434000px;}
.y16{bottom:806.700000px;}
.y79{bottom:808.206000px;}
.y295{bottom:808.518000px;}
.y54{bottom:810.900000px;}
.y1c5{bottom:811.200000px;}
.y19a{bottom:811.518000px;}
.y78{bottom:818.700000px;}
.y15{bottom:819.900000px;}
.ybe{bottom:820.500000px;}
.y1bf{bottom:821.701500px;}
.y222{bottom:826.200000px;}
.ydc{bottom:827.130000px;}
.y265{bottom:828.730500px;}
.y27e{bottom:828.813000px;}
.y7a{bottom:829.507500px;}
.y22a{bottom:830.695500px;}
.y294{bottom:831.612000px;}
.y1ba{bottom:832.492500px;}
.y199{bottom:834.918000px;}
.y14{bottom:839.100000px;}
.ybf{bottom:841.801500px;}
.y1b9{bottom:843.300000px;}
.y2db{bottom:845.400000px;}
.y130{bottom:845.700000px;}
.y76{bottom:846.900000px;}
.y136{bottom:850.195500px;}
.y46{bottom:850.224000px;}
.y229{bottom:851.997000px;}
.y223{bottom:852.000000px;}
.y264{bottom:852.028500px;}
.y27d{bottom:852.090000px;}
.y1c4{bottom:853.800000px;}
.y293{bottom:855.012000px;}
.y198{bottom:858.012000px;}
.y13{bottom:859.512000px;}
.ybd{bottom:861.900000px;}
.y75{bottom:862.200000px;}
.y224{bottom:862.800000px;}
.y2da{bottom:864.900000px;}
.y135{bottom:871.497000px;}
.y77{bottom:873.000000px;}
.y228{bottom:873.595500px;}
.y45{bottom:873.624000px;}
.y1c9{bottom:875.100000px;}
.y1c3{bottom:875.101500px;}
.y263{bottom:875.326500px;}
.y27c{bottom:875.367000px;}
.yba{bottom:876.892500px;}
.y292{bottom:878.412000px;}
.y197{bottom:881.412000px;}
.y13a{bottom:882.298500px;}
.y12{bottom:882.606000px;}
.y220{bottom:884.100000px;}
.y2d9{bottom:884.400000px;}
.y1bd{bottom:885.900000px;}
.ybc{bottom:887.698500px;}
.yb9{bottom:887.700000px;}
.y305{bottom:889.500000px;}
.y74{bottom:890.400000px;}
.y134{bottom:893.095500px;}
.y227{bottom:894.897000px;}
.y1c8{bottom:896.698500px;}
.y1c2{bottom:896.700000px;}
.y44{bottom:897.024000px;}
.y27b{bottom:898.644000px;}
.y262{bottom:898.692000px;}
.y291{bottom:901.506000px;}
.y139{bottom:903.600000px;}
.y196{bottom:904.506000px;}
.y73{bottom:905.700000px;}
.y11{bottom:906.006000px;}
.ybb{bottom:909.000000px;}
.y304{bottom:911.100000px;}
.y133{bottom:914.397000px;}
.y226{bottom:916.198500px;}
.y221{bottom:916.200000px;}
.y1c7{bottom:918.000000px;}
.y43{bottom:920.118000px;}
.y27a{bottom:921.921000px;}
.y261{bottom:921.955500px;}
.y2d8{bottom:923.100000px;}
.y138{bottom:924.901500px;}
.y290{bottom:924.906000px;}
.yb7{bottom:926.700000px;}
.y195{bottom:927.906000px;}
.y10{bottom:929.406000px;}
.y303{bottom:931.200000px;}
.y71{bottom:933.900000px;}
.y1b8{bottom:935.400000px;}
.y132{bottom:935.698500px;}
.y225{bottom:937.500000px;}
.y2d7{bottom:942.600000px;}
.y42{bottom:943.518000px;}
.y279{bottom:945.198000px;}
.y260{bottom:945.219000px;}
.y137{bottom:946.500000px;}
.y302{bottom:947.700000px;}
.y28f{bottom:948.000000px;}
.y72{bottom:949.200000px;}
.y1b7{bottom:950.700000px;}
.y194{bottom:951.306000px;}
.yf{bottom:952.500000px;}
.y20d{bottom:955.200000px;}
.yb6{bottom:956.092500px;}
.y131{bottom:957.000000px;}
.y215{bottom:959.700000px;}
.y2d6{bottom:962.100000px;}
.y41{bottom:966.612000px;}
.yb5{bottom:966.900000px;}
.y278{bottom:968.475000px;}
.y25f{bottom:968.482500px;}
.y301{bottom:969.298500px;}
.y21d{bottom:970.201500px;}
.y28e{bottom:973.200000px;}
.y193{bottom:974.400000px;}
.ye{bottom:976.494000px;}
.y2d5{bottom:981.300000px;}
.y1b6{bottom:984.006000px;}
.y6f{bottom:986.418000px;}
.y40{bottom:990.012000px;}
.y300{bottom:990.600000px;}
.y25e{bottom:991.746000px;}
.y277{bottom:991.752000px;}
.y21c{bottom:991.792500px;}
.y21f{bottom:991.800000px;}
.y129{bottom:996.000000px;}
.yb4{bottom:996.300000px;}
.y192{bottom:997.800000px;}
.y2d4{bottom:1000.800000px;}
.y20f{bottom:1002.298500px;}
.yd{bottom:1003.794000px;}
.y1b5{bottom:1008.900000px;}
.y6e{bottom:1011.312000px;}
.y21b{bottom:1013.094000px;}
.y3f{bottom:1013.412000px;}
.y25d{bottom:1015.009500px;}
.y276{bottom:1015.029000px;}
.y2ff{bottom:1016.400000px;}
.y2d3{bottom:1020.300000px;}
.y12f{bottom:1021.797000px;}
.yb3{bottom:1022.398500px;}
.yb1{bottom:1022.400000px;}
.y214{bottom:1023.597000px;}
.y20e{bottom:1023.600000px;}
.yc{bottom:1030.800000px;}
.y21a{bottom:1034.395500px;}
.y20a{bottom:1034.398500px;}
.y6d{bottom:1034.712000px;}
.y191{bottom:1036.500000px;}
.y3e{bottom:1036.506000px;}
.y25c{bottom:1038.273000px;}
.y275{bottom:1038.306000px;}
.y2d2{bottom:1039.500000px;}
.y12e{bottom:1043.098500px;}
.yb2{bottom:1043.700000px;}
.y213{bottom:1044.898500px;}
.y219{bottom:1055.697000px;}
.y209{bottom:1055.700000px;}
.yb{bottom:1058.100000px;}
.y6c{bottom:1058.112000px;}
.y2d1{bottom:1059.000000px;}
.y2fe{bottom:1059.298500px;}
.y190{bottom:1059.900000px;}
.y3d{bottom:1059.906000px;}
.yad{bottom:1061.100000px;}
.y25b{bottom:1061.536500px;}
.y274{bottom:1061.583000px;}
.y12b{bottom:1064.400000px;}
.y212{bottom:1066.497000px;}
.y20c{bottom:1066.498500px;}
.y218{bottom:1076.998500px;}
.y2d0{bottom:1078.500000px;}
.y8{bottom:1079.400000px;}
.y2fd{bottom:1080.600000px;}
.y6b{bottom:1081.512000px;}
.y3c{bottom:1083.306000px;}
.y25a{bottom:1084.800000px;}
.y273{bottom:1085.004000px;}
.y12d{bottom:1085.998500px;}
.yb0{bottom:1087.198500px;}
.y211{bottom:1087.798500px;}
.y20b{bottom:1087.800000px;}
.yac{bottom:1097.700000px;}
.y217{bottom:1098.300000px;}
.y2fc{bottom:1100.700000px;}
.y6{bottom:1103.400000px;}
.y6a{bottom:1104.606000px;}
.y3b{bottom:1106.400000px;}
.y12c{bottom:1107.300000px;}
.y259{bottom:1108.063500px;}
.y272{bottom:1108.302000px;}
.yaf{bottom:1108.500000px;}
.y210{bottom:1109.100000px;}
.y2cf{bottom:1117.200000px;}
.y69{bottom:1128.006000px;}
.y5{bottom:1129.200000px;}
.y3a{bottom:1129.800000px;}
.y258{bottom:1131.600000px;}
.y2ce{bottom:1136.700000px;}
.y3{bottom:1144.800000px;}
.y68{bottom:1152.900000px;}
.y39{bottom:1153.200000px;}
.y271{bottom:1154.898000px;}
.y257{bottom:1155.000000px;}
.y2cd{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y38{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.hd{height:20.880000px;}
.h22{height:22.800000px;}
.h2e{height:23.100000px;}
.h5{height:23.401500px;}
.h8{height:23.998500px;}
.h12{height:27.600000px;}
.h16{height:27.601500px;}
.h4{height:31.320000px;}
.h11{height:41.760000px;}
.h19{height:42.598500px;}
.h15{height:42.600000px;}
.h17{height:42.900000px;}
.h3{height:43.920000px;}
.hf{height:46.680000px;}
.h7{height:47.400000px;}
.h36{height:48.312000px;}
.h2{height:48.420000px;}
.hc{height:52.200000px;}
.he{height:52.704000px;}
.h13{height:53.262000px;}
.h14{height:57.420000px;}
.h33{height:57.450000px;}
.h6{height:58.104000px;}
.h35{height:62.578125px;}
.hb{height:62.640000px;}
.h2a{height:63.900000px;}
.h23{height:63.901500px;}
.h1d{height:64.198500px;}
.h1c{height:64.200000px;}
.ha{height:67.788000px;}
.h18{height:70.664062px;}
.h9{height:73.080000px;}
.h10{height:75.093750px;}
.h21{height:85.500000px;}
.h25{height:85.501500px;}
.h2f{height:93.000000px;}
.h1f{height:99.396000px;}
.h1a{height:100.620000px;}
.h1b{height:100.650000px;}
.h2c{height:104.400000px;}
.h1e{height:106.800000px;}
.h20{height:106.801500px;}
.h24{height:128.100000px;}
.h27{height:149.398500px;}
.h28{height:149.400000px;}
.h34{height:149.700000px;}
.h26{height:170.701500px;}
.h30{height:170.998500px;}
.h32{height:192.000000px;}
.h31{height:192.300000px;}
.h2d{height:213.300000px;}
.h29{height:234.900000px;}
.h2b{height:298.800000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.wd{width:116.998500px;}
.w4{width:127.500000px;}
.w6{width:127.501500px;}
.w3{width:127.800000px;}
.w16{width:132.900000px;}
.w12{width:138.300000px;}
.w18{width:146.101500px;}
.w17{width:146.400000px;}
.w8{width:148.800000px;}
.wf{width:148.801500px;}
.wc{width:159.000000px;}
.we{width:159.300000px;}
.w13{width:177.300000px;}
.w14{width:177.301500px;}
.wa{width:180.900000px;}
.w5{width:254.698500px;}
.w7{width:268.500000px;}
.w10{width:297.898500px;}
.w11{width:308.400000px;}
.wb{width:372.000000px;}
.w9{width:425.100000px;}
.w2{width:478.200000px;}
.w15{width:709.200000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x74{left:15.000000px;}
.x48{left:16.200000px;}
.x26{left:19.200000px;}
.x64{left:21.300000px;}
.x2a{left:23.400000px;}
.x22{left:24.600000px;}
.x1b{left:25.800000px;}
.x5b{left:28.200000px;}
.x32{left:32.400000px;}
.x27{left:37.500000px;}
.x46{left:40.200000px;}
.x4b{left:41.400000px;}
.x23{left:43.800000px;}
.x49{left:52.500000px;}
.x62{left:65.700000px;}
.x1d{left:71.100000px;}
.x3{left:79.800000px;}
.x67{left:82.200000px;}
.x1{left:91.500000px;}
.x19{left:93.000000px;}
.x20{left:95.700000px;}
.x42{left:99.600000px;}
.x79{left:101.400000px;}
.x3a{left:104.100000px;}
.x7a{left:105.640500px;}
.x44{left:108.000000px;}
.x28{left:110.400000px;}
.x4d{left:111.600000px;}
.x75{left:113.700000px;}
.x2d{left:114.900000px;}
.x33{left:117.300000px;}
.x2b{left:119.400000px;}
.x18{left:121.200000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x3d{left:127.800000px;}
.x1e{left:129.300000px;}
.x6a{left:131.100000px;}
.x2f{left:132.900000px;}
.x60{left:139.798500px;}
.x76{left:141.600000px;}
.x15{left:144.600000px;}
.x9{left:147.297000px;}
.xa{left:155.403000px;}
.xf{left:172.500000px;}
.x13{left:179.394000px;}
.x78{left:183.357000px;}
.x17{left:191.994000px;}
.x14{left:197.682000px;}
.x47{left:208.500000px;}
.x73{left:212.400000px;}
.x6d{left:220.506000px;}
.x54{left:222.298500px;}
.x56{left:224.691000px;}
.x53{left:227.100000px;}
.xc{left:228.306000px;}
.x55{left:236.092500px;}
.x29{left:240.300000px;}
.xd{left:245.712000px;}
.x10{left:248.700000px;}
.xe{left:258.330000px;}
.x63{left:260.991000px;}
.xb{left:264.000000px;}
.x4e{left:267.904500px;}
.x5d{left:269.400000px;}
.x3f{left:272.400000px;}
.x61{left:279.000000px;}
.x43{left:280.200000px;}
.x69{left:282.900000px;}
.x50{left:288.300000px;}
.x77{left:300.000000px;}
.x45{left:345.906000px;}
.x6e{left:358.500000px;}
.x6f{left:366.600000px;}
.x4a{left:367.800000px;}
.x3e{left:369.582000px;}
.x11{left:374.100000px;}
.x1a{left:375.900000px;}
.x57{left:378.300000px;}
.x58{left:382.507500px;}
.x1f{left:384.000000px;}
.x59{left:389.107500px;}
.x5f{left:394.498500px;}
.x5e{left:396.000000px;}
.x66{left:399.904500px;}
.x65{left:405.300000px;}
.x5a{left:408.907500px;}
.x5c{left:418.500000px;}
.x24{left:426.600000px;}
.x2{left:446.400000px;}
.x12{left:449.400000px;}
.x38{left:473.100000px;}
.x1c{left:503.400000px;}
.x6b{left:504.900000px;}
.x51{left:506.100000px;}
.x70{left:513.000000px;}
.x52{left:514.200000px;}
.x4c{left:516.600000px;}
.x4f{left:524.700000px;}
.x5{left:558.000000px;}
.x68{left:623.400000px;}
.x72{left:637.800000px;}
.x40{left:644.400000px;}
.x71{left:645.900000px;}
.x37{left:647.700000px;}
.x6c{left:651.000000px;}
.x41{left:652.500000px;}
.x25{left:665.400000px;}
.x36{left:677.400000px;}
.x34{left:683.415000px;}
.x7{left:685.800000px;}
.x31{left:687.012000px;}
.x2e{left:688.803000px;}
.x35{left:693.018000px;}
.x3b{left:695.400000px;}
.x39{left:697.200000px;}
.x3c{left:699.904500px;}
.x30{left:706.218000px;}
.x2c{left:708.900000px;}
.x21{left:732.642000px;}
.x16{left:746.700000px;}
@media print{
.v4{vertical-align:-5.354667pt;}
.v3{vertical-align:-4.282667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:37.312000pt;}
.v1{vertical-align:38.400000pt;}
.ls91{letter-spacing:-4.288000pt;}
.lsa4{letter-spacing:-3.962667pt;}
.ls2b{letter-spacing:-3.200000pt;}
.ls3f{letter-spacing:-2.176000pt;}
.ls43{letter-spacing:-1.600000pt;}
.lsc7{letter-spacing:-1.242667pt;}
.ls64{letter-spacing:-1.232000pt;}
.ls53{letter-spacing:-1.173333pt;}
.lsdb{letter-spacing:-1.152000pt;}
.ls5a{letter-spacing:-1.088000pt;}
.ls4b{letter-spacing:-1.056000pt;}
.ls61{letter-spacing:-0.997333pt;}
.lsc6{letter-spacing:-0.805333pt;}
.ls14{letter-spacing:-0.768000pt;}
.ls41{letter-spacing:-0.762667pt;}
.ls52{letter-spacing:-0.704000pt;}
.lse9{letter-spacing:-0.586667pt;}
.lsa1{letter-spacing:-0.538667pt;}
.ls31{letter-spacing:-0.528000pt;}
.lsd1{letter-spacing:-0.517333pt;}
.ls1d{letter-spacing:-0.512000pt;}
.lsc3{letter-spacing:-0.490667pt;}
.ls9d{letter-spacing:-0.485333pt;}
.ls2a{letter-spacing:-0.480000pt;}
.ls2f{letter-spacing:-0.469333pt;}
.ls49{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.426667pt;}
.ls9c{letter-spacing:-0.421333pt;}
.ls3a{letter-spacing:-0.410667pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls18{letter-spacing:-0.373333pt;}
.ls98{letter-spacing:-0.362667pt;}
.ls99{letter-spacing:-0.357333pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls90{letter-spacing:-0.298667pt;}
.ls2c{letter-spacing:-0.293333pt;}
.lsc4{letter-spacing:-0.282667pt;}
.lsc2{letter-spacing:-0.277333pt;}
.lsa3{letter-spacing:-0.272000pt;}
.ls1b{letter-spacing:-0.266667pt;}
.lsc9{letter-spacing:-0.261333pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls30{letter-spacing:-0.234667pt;}
.lsc5{letter-spacing:-0.229333pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls34{letter-spacing:-0.176000pt;}
.ls9e{letter-spacing:-0.170667pt;}
.lsc8{letter-spacing:-0.165333pt;}
.ls10{letter-spacing:-0.160000pt;}
.lsd8{letter-spacing:-0.154667pt;}
.ls97{letter-spacing:-0.144000pt;}
.ls38{letter-spacing:-0.128000pt;}
.ls3b{letter-spacing:-0.117333pt;}
.lse4{letter-spacing:-0.106667pt;}
.lsd6{letter-spacing:-0.101333pt;}
.ls96{letter-spacing:-0.090667pt;}
.ls9f{letter-spacing:-0.085333pt;}
.ls93{letter-spacing:-0.080000pt;}
.ls12{letter-spacing:-0.074667pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls40{letter-spacing:-0.058667pt;}
.ls44{letter-spacing:-0.053333pt;}
.lsd7{letter-spacing:-0.048000pt;}
.lsc1{letter-spacing:-0.042667pt;}
.lsd5{letter-spacing:-0.037333pt;}
.lse{letter-spacing:0.000000pt;}
.ls62{letter-spacing:0.016000pt;}
.ls4d{letter-spacing:0.029333pt;}
.lse1{letter-spacing:0.053333pt;}
.ls2e{letter-spacing:0.058667pt;}
.ls65{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.074667pt;}
.lsca{letter-spacing:0.085333pt;}
.ls95{letter-spacing:0.090667pt;}
.lsd{letter-spacing:0.106667pt;}
.lsc0{letter-spacing:0.144000pt;}
.lse8{letter-spacing:0.160000pt;}
.ls39{letter-spacing:0.176000pt;}
.ls15{letter-spacing:0.192000pt;}
.lsbd{letter-spacing:0.196779pt;}
.ls4f{letter-spacing:0.199467pt;}
.ls51{letter-spacing:0.205333pt;}
.ls19{letter-spacing:0.213333pt;}
.ls4e{letter-spacing:0.228800pt;}
.ls35{letter-spacing:0.234667pt;}
.ls8d{letter-spacing:0.250645pt;}
.ls6a{letter-spacing:0.250667pt;}
.ls8e{letter-spacing:0.255957pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls6c{letter-spacing:0.261333pt;}
.ls2d{letter-spacing:0.293333pt;}
.ls92{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.320000pt;}
.lsbc{letter-spacing:0.341333pt;}
.lsbb{letter-spacing:0.346667pt;}
.ls33{letter-spacing:0.352000pt;}
.ls5{letter-spacing:0.358400pt;}
.ls60{letter-spacing:0.378667pt;}
.ls3e{letter-spacing:0.384000pt;}
.ls63{letter-spacing:0.405333pt;}
.ls8{letter-spacing:0.409600pt;}
.ls32{letter-spacing:0.410667pt;}
.ls8f{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.428800pt;}
.ls7{letter-spacing:0.448000pt;}
.lsde{letter-spacing:0.454400pt;}
.ls4c{letter-spacing:0.469333pt;}
.ls1a{letter-spacing:0.480000pt;}
.lsbf{letter-spacing:0.485333pt;}
.lsb2{letter-spacing:0.490667pt;}
.lscf{letter-spacing:0.496000pt;}
.ls20{letter-spacing:0.512000pt;}
.lsa0{letter-spacing:0.554667pt;}
.lsa5{letter-spacing:0.576000pt;}
.ls6b{letter-spacing:0.640000pt;}
.lsea{letter-spacing:0.693333pt;}
.lsa2{letter-spacing:0.704000pt;}
.ls9b{letter-spacing:0.768000pt;}
.lsd3{letter-spacing:0.789333pt;}
.lsd2{letter-spacing:0.794667pt;}
.lsce{letter-spacing:0.816000pt;}
.ls47{letter-spacing:0.896000pt;}
.lsd0{letter-spacing:0.922667pt;}
.ls9a{letter-spacing:0.981333pt;}
.lscd{letter-spacing:1.008000pt;}
.ls4a{letter-spacing:1.024000pt;}
.lse6{letter-spacing:1.061333pt;}
.lse2{letter-spacing:1.066667pt;}
.ls94{letter-spacing:1.328000pt;}
.lscb{letter-spacing:1.370667pt;}
.ls42{letter-spacing:2.112000pt;}
.lse5{letter-spacing:2.826667pt;}
.ls7d{letter-spacing:2.864000pt;}
.ls7c{letter-spacing:2.869333pt;}
.ls7e{letter-spacing:2.874667pt;}
.ls54{letter-spacing:2.976000pt;}
.ls45{letter-spacing:3.008000pt;}
.ls7b{letter-spacing:3.071979pt;}
.lsda{letter-spacing:3.200000pt;}
.ls6d{letter-spacing:3.850667pt;}
.ls6e{letter-spacing:3.856000pt;}
.lsd4{letter-spacing:3.872000pt;}
.ls82{letter-spacing:3.888000pt;}
.ls83{letter-spacing:3.893333pt;}
.ls69{letter-spacing:3.920000pt;}
.ls55{letter-spacing:4.224000pt;}
.ls6f{letter-spacing:4.826667pt;}
.ls84{letter-spacing:4.864000pt;}
.ls68{letter-spacing:4.885333pt;}
.ls67{letter-spacing:4.890667pt;}
.ls66{letter-spacing:5.029333pt;}
.lsa{letter-spacing:5.312000pt;}
.lsbe{letter-spacing:5.808000pt;}
.ls75{letter-spacing:5.840000pt;}
.ls72{letter-spacing:5.861333pt;}
.ls70{letter-spacing:5.866667pt;}
.ls71{letter-spacing:5.872000pt;}
.ls9{letter-spacing:6.400000pt;}
.lsb3{letter-spacing:6.778667pt;}
.lsb4{letter-spacing:6.784000pt;}
.ls81{letter-spacing:6.789333pt;}
.ls80{letter-spacing:6.794667pt;}
.ls7f{letter-spacing:6.821333pt;}
.ls74{letter-spacing:6.826667pt;}
.ls73{letter-spacing:6.853333pt;}
.lse7{letter-spacing:7.093333pt;}
.lsa6{letter-spacing:7.424000pt;}
.lsd9{letter-spacing:7.436800pt;}
.lsad{letter-spacing:7.797333pt;}
.lsae{letter-spacing:7.802667pt;}
.lse3{letter-spacing:8.149333pt;}
.lsdc{letter-spacing:8.512000pt;}
.ls5b{letter-spacing:9.600000pt;}
.lscc{letter-spacing:9.706667pt;}
.lsb7{letter-spacing:9.733333pt;}
.lsb5{letter-spacing:9.754667pt;}
.lsba{letter-spacing:9.781333pt;}
.lsa7{letter-spacing:10.476800pt;}
.ls56{letter-spacing:10.624000pt;}
.ls89{letter-spacing:10.730667pt;}
.ls88{letter-spacing:10.736000pt;}
.ls8a{letter-spacing:11.701333pt;}
.ls8b{letter-spacing:11.706667pt;}
.ls57{letter-spacing:11.712000pt;}
.lsa8{letter-spacing:12.800000pt;}
.ls85{letter-spacing:13.690667pt;}
.ls86{letter-spacing:13.696000pt;}
.lsdd{letter-spacing:13.824000pt;}
.lseb{letter-spacing:14.560000pt;}
.ls87{letter-spacing:14.666667pt;}
.lsab{letter-spacing:15.621333pt;}
.lsac{letter-spacing:15.626667pt;}
.lsaa{letter-spacing:15.648000pt;}
.lsa9{letter-spacing:15.653333pt;}
.lsec{letter-spacing:16.000000pt;}
.ls59{letter-spacing:16.019200pt;}
.ls7a{letter-spacing:16.554667pt;}
.ls79{letter-spacing:16.560000pt;}
.lsb1{letter-spacing:16.592000pt;}
.lsaf{letter-spacing:16.597333pt;}
.lsc{letter-spacing:16.896000pt;}
.lsb0{letter-spacing:17.568000pt;}
.lsb{letter-spacing:18.112000pt;}
.ls77{letter-spacing:19.488000pt;}
.ls76{letter-spacing:19.493333pt;}
.ls46{letter-spacing:20.096000pt;}
.lse0{letter-spacing:20.373333pt;}
.ls78{letter-spacing:20.464000pt;}
.ls5c{letter-spacing:22.400000pt;}
.lsb8{letter-spacing:29.872000pt;}
.lsb6{letter-spacing:29.877333pt;}
.lsb9{letter-spacing:29.882667pt;}
.ls8c{letter-spacing:31.264000pt;}
.lsdf{letter-spacing:34.144000pt;}
.ls5f{letter-spacing:85.418667pt;}
.ls48{letter-spacing:99.264000pt;}
.ls3d{letter-spacing:112.346667pt;}
.ls37{letter-spacing:112.357333pt;}
.ls50{letter-spacing:137.690667pt;}
.ls5d{letter-spacing:182.412267pt;}
.ls36{letter-spacing:201.226667pt;}
.ls5e{letter-spacing:213.429333pt;}
.ls23{letter-spacing:215.776000pt;}
.ls26{letter-spacing:340.618667pt;}
.ls28{letter-spacing:366.197333pt;}
.ls25{letter-spacing:370.480000pt;}
.ls24{letter-spacing:372.592000pt;}
.ls22{letter-spacing:373.648000pt;}
.ls29{letter-spacing:437.653333pt;}
.ls21{letter-spacing:618.992000pt;}
.ls27{letter-spacing:630.725333pt;}
.ls3{letter-spacing:707.893333pt;}
.ls1{letter-spacing:752.693333pt;}
.ls3c{letter-spacing:924.058667pt;}
.ls2{letter-spacing:941.493333pt;}
.ls0{letter-spacing:1186.826667pt;}
.ls58{letter-spacing:1414.026667pt;}
.ws77{word-spacing:-58.666667pt;}
.wsd1{word-spacing:-19.200000pt;}
.wsd7{word-spacing:-17.600000pt;}
.ws113{word-spacing:-17.536000pt;}
.ws2{word-spacing:-17.408000pt;}
.wsd2{word-spacing:-17.344000pt;}
.ws4{word-spacing:-17.088000pt;}
.wsa{word-spacing:-17.024000pt;}
.ws11e{word-spacing:-17.008000pt;}
.ws11c{word-spacing:-17.002667pt;}
.wsd6{word-spacing:-16.997333pt;}
.ws122{word-spacing:-16.986667pt;}
.ws11f{word-spacing:-16.944000pt;}
.ws121{word-spacing:-16.917333pt;}
.wsd4{word-spacing:-16.853333pt;}
.ws4b{word-spacing:-16.832000pt;}
.ws120{word-spacing:-16.816000pt;}
.ws119{word-spacing:-16.810667pt;}
.ws11d{word-spacing:-16.805333pt;}
.wsd3{word-spacing:-16.789333pt;}
.ws11a{word-spacing:-16.730667pt;}
.ws11b{word-spacing:-16.725333pt;}
.ws5b{word-spacing:-16.704000pt;}
.wsd5{word-spacing:-16.661333pt;}
.ws139{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.576000pt;}
.ws89{word-spacing:-16.448000pt;}
.ws3{word-spacing:-16.320000pt;}
.ws30{word-spacing:-16.192000pt;}
.ws78{word-spacing:-16.133333pt;}
.ws50{word-spacing:-16.074667pt;}
.wsd8{word-spacing:-16.064000pt;}
.ws4f{word-spacing:-16.016000pt;}
.ws7e{word-spacing:-16.000000pt;}
.ws33{word-spacing:-15.957333pt;}
.ws9{word-spacing:-15.936000pt;}
.ws61{word-spacing:-15.898667pt;}
.ws7{word-spacing:-15.872000pt;}
.ws34{word-spacing:-15.722667pt;}
.ws76{word-spacing:-15.693333pt;}
.ws31{word-spacing:-15.680000pt;}
.ws39{word-spacing:-15.664000pt;}
.ws75{word-spacing:-15.605333pt;}
.ws7a{word-spacing:-15.546667pt;}
.ws91{word-spacing:-15.488000pt;}
.ws36{word-spacing:-15.429333pt;}
.ws37{word-spacing:-15.370667pt;}
.ws5c{word-spacing:-15.253333pt;}
.ws35{word-spacing:-15.194667pt;}
.ws38{word-spacing:-15.136000pt;}
.ws4c{word-spacing:-15.077333pt;}
.ws4e{word-spacing:-15.018667pt;}
.ws79{word-spacing:-14.960000pt;}
.ws5d{word-spacing:-14.901333pt;}
.ws5{word-spacing:-14.720000pt;}
.ws6c{word-spacing:-14.666667pt;}
.ws153{word-spacing:-14.560000pt;}
.ws32{word-spacing:-14.549333pt;}
.ws13d{word-spacing:-14.453333pt;}
.ws4a{word-spacing:-14.346667pt;}
.ws4d{word-spacing:-14.314667pt;}
.ws152{word-spacing:-14.293333pt;}
.ws2f{word-spacing:-14.240000pt;}
.ws151{word-spacing:-14.133333pt;}
.ws1{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.973333pt;}
.ws13e{word-spacing:-13.866667pt;}
.ws13a{word-spacing:-13.824000pt;}
.ws0{word-spacing:-13.813333pt;}
.ws13c{word-spacing:-13.066667pt;}
.ws118{word-spacing:-12.800000pt;}
.ws83{word-spacing:-11.712000pt;}
.ws81{word-spacing:-10.624000pt;}
.ws90{word-spacing:-9.600000pt;}
.ws138{word-spacing:-8.512000pt;}
.ws13f{word-spacing:-7.424000pt;}
.ws3c{word-spacing:-5.312000pt;}
.ws80{word-spacing:-4.224000pt;}
.ws17d{word-spacing:-3.786667pt;}
.ws19{word-spacing:-3.776000pt;}
.ws17f{word-spacing:-3.306667pt;}
.ws136{word-spacing:-3.200000pt;}
.ws17e{word-spacing:-3.146667pt;}
.ws3e{word-spacing:-3.136000pt;}
.ws1e{word-spacing:-3.008000pt;}
.wse6{word-spacing:-2.917333pt;}
.ws14e{word-spacing:-2.720000pt;}
.ws1f{word-spacing:-2.688000pt;}
.wse3{word-spacing:-2.650667pt;}
.wsdf{word-spacing:-2.645333pt;}
.wsda{word-spacing:-2.629333pt;}
.wsdb{word-spacing:-2.624000pt;}
.ws16d{word-spacing:-2.560000pt;}
.ws116{word-spacing:-2.496000pt;}
.wse0{word-spacing:-2.474667pt;}
.wsdc{word-spacing:-2.410667pt;}
.wsde{word-spacing:-2.389333pt;}
.wsdd{word-spacing:-2.176000pt;}
.ws16e{word-spacing:-2.133333pt;}
.ws63{word-spacing:-2.112000pt;}
.ws159{word-spacing:-2.080000pt;}
.ws15a{word-spacing:-2.026667pt;}
.wsd9{word-spacing:-1.920000pt;}
.wse4{word-spacing:-1.856000pt;}
.wse5{word-spacing:-1.792000pt;}
.ws88{word-spacing:-1.664000pt;}
.ws14d{word-spacing:-1.653333pt;}
.wse2{word-spacing:-1.600000pt;}
.ws15e{word-spacing:-1.546667pt;}
.wsb5{word-spacing:-1.472000pt;}
.ws17b{word-spacing:-1.280000pt;}
.ws15f{word-spacing:-1.173333pt;}
.ws134{word-spacing:-1.152000pt;}
.wse1{word-spacing:-1.130667pt;}
.ws59{word-spacing:-1.114667pt;}
.ws110{word-spacing:-1.061333pt;}
.ws5a{word-spacing:-1.056000pt;}
.ws62{word-spacing:-1.024000pt;}
.ws17a{word-spacing:-1.013333pt;}
.ws73{word-spacing:-0.997333pt;}
.ws188{word-spacing:-0.960000pt;}
.ws9f{word-spacing:-0.938667pt;}
.ws157{word-spacing:-0.853333pt;}
.ws154{word-spacing:-0.800000pt;}
.ws49{word-spacing:-0.762667pt;}
.ws7b{word-spacing:-0.704000pt;}
.ws131{word-spacing:-0.698667pt;}
.ws130{word-spacing:-0.666667pt;}
.ws16{word-spacing:-0.586667pt;}
.ws67{word-spacing:-0.576000pt;}
.ws2e{word-spacing:-0.512000pt;}
.wsb{word-spacing:-0.480000pt;}
.wsa7{word-spacing:-0.469333pt;}
.ws8e{word-spacing:-0.448000pt;}
.ws12a{word-spacing:-0.437333pt;}
.ws146{word-spacing:-0.426667pt;}
.ws55{word-spacing:-0.410667pt;}
.wse7{word-spacing:-0.405333pt;}
.ws5e{word-spacing:-0.384000pt;}
.wsd{word-spacing:-0.373333pt;}
.ws46{word-spacing:-0.352000pt;}
.wsed{word-spacing:-0.325333pt;}
.ws13{word-spacing:-0.320000pt;}
.ws44{word-spacing:-0.293333pt;}
.ws10f{word-spacing:-0.282667pt;}
.ws27{word-spacing:-0.256000pt;}
.ws7c{word-spacing:-0.234667pt;}
.ws111{word-spacing:-0.229333pt;}
.wse{word-spacing:-0.213333pt;}
.wsf{word-spacing:-0.192000pt;}
.ws112{word-spacing:-0.149333pt;}
.ws74{word-spacing:-0.117333pt;}
.ws148{word-spacing:-0.106667pt;}
.ws42{word-spacing:-0.058667pt;}
.ws175{word-spacing:-0.053333pt;}
.wsc{word-spacing:0.000000pt;}
.ws133{word-spacing:0.005333pt;}
.ws17{word-spacing:0.053333pt;}
.ws41{word-spacing:0.058667pt;}
.ws15{word-spacing:0.064000pt;}
.ws8b{word-spacing:0.074667pt;}
.ws3a{word-spacing:0.106667pt;}
.ws48{word-spacing:0.117333pt;}
.ws52{word-spacing:0.128000pt;}
.ws167{word-spacing:0.160000pt;}
.ws47{word-spacing:0.176000pt;}
.ws6f{word-spacing:0.192000pt;}
.ws10{word-spacing:0.224000pt;}
.ws71{word-spacing:0.234667pt;}
.ws14{word-spacing:0.256000pt;}
.ws18{word-spacing:0.266667pt;}
.ws43{word-spacing:0.293333pt;}
.wse8{word-spacing:0.298667pt;}
.wsf7{word-spacing:0.309333pt;}
.ws51{word-spacing:0.320000pt;}
.wsec{word-spacing:0.330667pt;}
.ws57{word-spacing:0.352000pt;}
.wsf9{word-spacing:0.357333pt;}
.ws12b{word-spacing:0.362667pt;}
.ws132{word-spacing:0.368000pt;}
.ws11{word-spacing:0.373333pt;}
.ws12{word-spacing:0.384000pt;}
.wsee{word-spacing:0.394667pt;}
.ws40{word-spacing:0.410667pt;}
.wseb{word-spacing:0.421333pt;}
.ws147{word-spacing:0.426667pt;}
.ws6d{word-spacing:0.448000pt;}
.ws58{word-spacing:0.469333pt;}
.ws145{word-spacing:0.480000pt;}
.wsef{word-spacing:0.485333pt;}
.ws109{word-spacing:0.490667pt;}
.ws12f{word-spacing:0.501333pt;}
.wsf0{word-spacing:0.506667pt;}
.ws28{word-spacing:0.512000pt;}
.ws56{word-spacing:0.528000pt;}
.wsf3{word-spacing:0.538667pt;}
.ws10c{word-spacing:0.576000pt;}
.ws177{word-spacing:0.586667pt;}
.wsf1{word-spacing:0.592000pt;}
.wsf2{word-spacing:0.624000pt;}
.ws10e{word-spacing:0.640000pt;}
.ws45{word-spacing:0.645333pt;}
.wsf8{word-spacing:0.650667pt;}
.ws128{word-spacing:0.661333pt;}
.ws12d{word-spacing:0.666667pt;}
.wsc5{word-spacing:0.704000pt;}
.ws125{word-spacing:0.714667pt;}
.ws60{word-spacing:0.762667pt;}
.ws65{word-spacing:0.768000pt;}
.ws12e{word-spacing:0.816000pt;}
.ws6b{word-spacing:0.880000pt;}
.ws129{word-spacing:0.890667pt;}
.ws10a{word-spacing:0.917333pt;}
.ws108{word-spacing:0.922667pt;}
.ws163{word-spacing:0.960000pt;}
.wsfc{word-spacing:0.981333pt;}
.wsad{word-spacing:0.997333pt;}
.ws72{word-spacing:1.056000pt;}
.wsfd{word-spacing:1.072000pt;}
.ws8f{word-spacing:1.088000pt;}
.ws12c{word-spacing:1.093333pt;}
.wsa9{word-spacing:1.114667pt;}
.ws16b{word-spacing:1.120000pt;}
.ws8a{word-spacing:1.152000pt;}
.wsfa{word-spacing:1.221333pt;}
.wse9{word-spacing:1.264000pt;}
.wsfb{word-spacing:1.312000pt;}
.ws155{word-spacing:1.333333pt;}
.ws123{word-spacing:1.397333pt;}
.ws124{word-spacing:1.424000pt;}
.ws126{word-spacing:1.514667pt;}
.ws7d{word-spacing:1.525333pt;}
.ws114{word-spacing:1.536000pt;}
.ws150{word-spacing:1.546667pt;}
.wsf6{word-spacing:1.552000pt;}
.ws10d{word-spacing:1.557333pt;}
.ws64{word-spacing:1.600000pt;}
.ws127{word-spacing:1.605333pt;}
.ws18f{word-spacing:1.706667pt;}
.wsf4{word-spacing:1.818667pt;}
.wsf5{word-spacing:1.909333pt;}
.ws143{word-spacing:1.920000pt;}
.ws87{word-spacing:2.048000pt;}
.ws14b{word-spacing:2.133333pt;}
.ws5f{word-spacing:2.176000pt;}
.ws14a{word-spacing:2.186667pt;}
.ws10b{word-spacing:2.325333pt;}
.ws162{word-spacing:2.613333pt;}
.ws85{word-spacing:2.624000pt;}
.ws173{word-spacing:2.666667pt;}
.ws18a{word-spacing:2.773333pt;}
.wsff{word-spacing:2.848000pt;}
.ws6e{word-spacing:2.880000pt;}
.ws174{word-spacing:3.093333pt;}
.ws194{word-spacing:3.168000pt;}
.ws3f{word-spacing:3.200000pt;}
.ws164{word-spacing:3.253333pt;}
.ws17c{word-spacing:3.306667pt;}
.ws180{word-spacing:3.413333pt;}
.ws193{word-spacing:3.520000pt;}
.ws82{word-spacing:3.584000pt;}
.ws14f{word-spacing:3.680000pt;}
.ws86{word-spacing:3.712000pt;}
.ws185{word-spacing:3.786667pt;}
.wsa2{word-spacing:3.813333pt;}
.ws168{word-spacing:3.946667pt;}
.ws186{word-spacing:4.160000pt;}
.ws169{word-spacing:4.266667pt;}
.wsb2{word-spacing:4.282667pt;}
.ws115{word-spacing:4.288000pt;}
.ws158{word-spacing:4.320000pt;}
.wsb8{word-spacing:4.341333pt;}
.ws142{word-spacing:4.416000pt;}
.ws135{word-spacing:4.501333pt;}
.ws66{word-spacing:4.608000pt;}
.ws21{word-spacing:4.736000pt;}
.ws16f{word-spacing:4.746667pt;}
.ws182{word-spacing:4.906667pt;}
.ws2a{word-spacing:5.056000pt;}
.ws16a{word-spacing:5.226667pt;}
.ws1d{word-spacing:5.376000pt;}
.ws170{word-spacing:5.386667pt;}
.ws3d{word-spacing:5.696000pt;}
.ws156{word-spacing:5.813333pt;}
.wsea{word-spacing:5.824000pt;}
.ws18d{word-spacing:5.973333pt;}
.ws26{word-spacing:6.144000pt;}
.ws18b{word-spacing:6.293333pt;}
.ws18c{word-spacing:6.400000pt;}
.ws22{word-spacing:6.464000pt;}
.ws172{word-spacing:6.880000pt;}
.ws137{word-spacing:6.912000pt;}
.ws14c{word-spacing:7.360000pt;}
.ws176{word-spacing:7.520000pt;}
.ws183{word-spacing:7.573333pt;}
.ws23{word-spacing:7.936000pt;}
.ws15b{word-spacing:7.946667pt;}
.ws184{word-spacing:8.213333pt;}
.ws13b{word-spacing:8.256000pt;}
.ws166{word-spacing:8.426667pt;}
.wsbd{word-spacing:8.565333pt;}
.ws165{word-spacing:8.586667pt;}
.ws69{word-spacing:8.896000pt;}
.ws149{word-spacing:9.013333pt;}
.ws6a{word-spacing:9.024000pt;}
.wsbc{word-spacing:9.621333pt;}
.ws187{word-spacing:9.653333pt;}
.wsc9{word-spacing:9.680000pt;}
.wsc8{word-spacing:9.856000pt;}
.ws171{word-spacing:10.080000pt;}
.ws117{word-spacing:10.368000pt;}
.ws18e{word-spacing:10.720000pt;}
.ws84{word-spacing:11.008000pt;}
.ws15c{word-spacing:11.146667pt;}
.ws1b{word-spacing:11.776000pt;}
.ws15d{word-spacing:11.786667pt;}
.wsfe{word-spacing:12.096000pt;}
.ws181{word-spacing:12.213333pt;}
.ws1a{word-spacing:12.224000pt;}
.wsd0{word-spacing:12.544000pt;}
.ws192{word-spacing:12.730667pt;}
.ws16c{word-spacing:12.853333pt;}
.ws24{word-spacing:12.864000pt;}
.ws191{word-spacing:13.200000pt;}
.ws25{word-spacing:14.016000pt;}
.ws190{word-spacing:14.080000pt;}
.ws189{word-spacing:14.346667pt;}
.ws141{word-spacing:14.976000pt;}
.ws161{word-spacing:15.413333pt;}
.ws8c{word-spacing:16.384000pt;}
.ws103{word-spacing:16.490667pt;}
.ws20{word-spacing:16.512000pt;}
.ws106{word-spacing:16.576000pt;}
.ws104{word-spacing:16.640000pt;}
.ws107{word-spacing:16.917333pt;}
.ws1c{word-spacing:17.088000pt;}
.wsc1{word-spacing:17.130667pt;}
.ws100{word-spacing:17.194667pt;}
.ws101{word-spacing:17.253333pt;}
.ws2b{word-spacing:17.408000pt;}
.ws105{word-spacing:17.514667pt;}
.ws70{word-spacing:17.536000pt;}
.ws179{word-spacing:17.813333pt;}
.ws2d{word-spacing:17.856000pt;}
.ws178{word-spacing:18.186667pt;}
.ws2c{word-spacing:18.368000pt;}
.ws102{word-spacing:18.394667pt;}
.ws7f{word-spacing:18.496000pt;}
.ws29{word-spacing:18.624000pt;}
.ws9d{word-spacing:20.533333pt;}
.ws9e{word-spacing:21.354667pt;}
.ws92{word-spacing:22.784000pt;}
.ws8d{word-spacing:22.912000pt;}
.wsbe{word-spacing:22.938667pt;}
.wsa8{word-spacing:23.760000pt;}
.ws68{word-spacing:28.224000pt;}
.ws98{word-spacing:28.922667pt;}
.ws3b{word-spacing:29.568000pt;}
.ws140{word-spacing:31.040000pt;}
.wsc0{word-spacing:31.680000pt;}
.wsa5{word-spacing:32.266667pt;}
.ws144{word-spacing:34.624000pt;}
.ws54{word-spacing:34.944000pt;}
.ws53{word-spacing:35.712000pt;}
.wsb7{word-spacing:37.957333pt;}
.wsab{word-spacing:40.832000pt;}
.wsc3{word-spacing:41.653333pt;}
.wsa0{word-spacing:45.936000pt;}
.wsc4{word-spacing:46.170667pt;}
.wsb4{word-spacing:50.160000pt;}
.ws99{word-spacing:50.394667pt;}
.wscc{word-spacing:51.216000pt;}
.wsaf{word-spacing:53.445333pt;}
.wsca{word-spacing:60.837333pt;}
.wsb6{word-spacing:63.008000pt;}
.wsa4{word-spacing:63.594667pt;}
.ws95{word-spacing:64.650667pt;}
.wsb9{word-spacing:65.120000pt;}
.wsa6{word-spacing:66.528000pt;}
.ws93{word-spacing:71.514667pt;}
.wsb3{word-spacing:86.474667pt;}
.ws160{word-spacing:91.626667pt;}
.ws96{word-spacing:95.978667pt;}
.ws9a{word-spacing:96.037333pt;}
.ws9b{word-spacing:98.794667pt;}
.wsb1{word-spacing:101.141333pt;}
.wsbb{word-spacing:106.714667pt;}
.wscd{word-spacing:108.005333pt;}
.wsa3{word-spacing:108.592000pt;}
.ws97{word-spacing:122.672000pt;}
.wsc6{word-spacing:132.234667pt;}
.wsba{word-spacing:141.269333pt;}
.wscf{word-spacing:144.613333pt;}
.wsae{word-spacing:150.186667pt;}
.wsaa{word-spacing:152.826667pt;}
.wsbf{word-spacing:153.002667pt;}
.wsac{word-spacing:159.397333pt;}
.wsc7{word-spacing:162.037333pt;}
.ws9c{word-spacing:163.445333pt;}
.ws94{word-spacing:168.608000pt;}
.wscb{word-spacing:194.186667pt;}
.wsa1{word-spacing:212.080000pt;}
.wsc2{word-spacing:212.784000pt;}
.wsb0{word-spacing:226.101333pt;}
.wsce{word-spacing:237.952000pt;}
._4d{margin-left:-18.453333pt;}
._4c{margin-left:-17.194667pt;}
._4e{margin-left:-15.936000pt;}
._51{margin-left:-14.803200pt;}
._50{margin-left:-13.817600pt;}
._30{margin-left:-12.763733pt;}
._2f{margin-left:-11.628800pt;}
._2d{margin-left:-10.688000pt;}
._2e{margin-left:-9.621333pt;}
._31{margin-left:-8.704000pt;}
._32{margin-left:-7.342933pt;}
._19{margin-left:-5.734400pt;}
._2b{margin-left:-4.795733pt;}
._7{margin-left:-3.904000pt;}
._5{margin-left:-2.457600pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.120000pt;}
._6{width:2.570667pt;}
._18{width:3.566933pt;}
._d{width:5.098667pt;}
._a{width:6.208000pt;}
._9{width:7.360000pt;}
._13{width:8.288000pt;}
._14{width:9.689600pt;}
._15{width:11.298133pt;}
._25{width:12.354133pt;}
._2a{width:13.252267pt;}
._1a{width:14.361600pt;}
._1b{width:15.424000pt;}
._8{width:18.528000pt;}
._e{width:19.564800pt;}
._1c{width:20.454400pt;}
._28{width:21.346133pt;}
._24{width:22.272000pt;}
._10{width:23.360000pt;}
._f{width:24.832000pt;}
._b{width:26.030933pt;}
._c{width:27.517867pt;}
._33{width:28.816533pt;}
._16{width:30.058667pt;}
._17{width:31.667200pt;}
._4f{width:33.440000pt;}
._2c{width:35.225600pt;}
._3f{width:36.256533pt;}
._27{width:37.465600pt;}
._21{width:39.808000pt;}
._22{width:40.825600pt;}
._23{width:41.875200pt;}
._3b{width:44.435200pt;}
._4a{width:47.363733pt;}
._3c{width:53.067200pt;}
._44{width:60.826667pt;}
._47{width:63.072533pt;}
._45{width:64.558400pt;}
._34{width:67.026667pt;}
._43{width:68.499733pt;}
._48{width:80.672533pt;}
._3d{width:82.667733pt;}
._38{width:86.522667pt;}
._39{width:93.902933pt;}
._1e{width:96.528000pt;}
._3a{width:107.882667pt;}
._41{width:110.452800pt;}
._49{width:117.101867pt;}
._1d{width:118.986667pt;}
._26{width:128.501333pt;}
._1f{width:130.149333pt;}
._42{width:133.077333pt;}
._46{width:135.621867pt;}
._37{width:136.937600pt;}
._35{width:152.763200pt;}
._20{width:160.416000pt;}
._3e{width:179.321067pt;}
._40{width:202.817600pt;}
._4b{width:227.322133pt;}
._36{width:287.104000pt;}
._29{width:512.336000pt;}
._11{width:555.360000pt;}
._3{width:680.800000pt;}
._12{width:719.520000pt;}
._4{width:730.293333pt;}
._2{width:893.706667pt;}
.fs4{font-size:21.333333pt;}
.fs1{font-size:32.000000pt;}
.fs8{font-size:35.200000pt;}
.fs7{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.933333pt;}
.y5c{bottom:4.000000pt;}
.y7f{bottom:4.266667pt;}
.y7{bottom:4.533333pt;}
.yb8{bottom:4.800000pt;}
.ya{bottom:5.333333pt;}
.y19d{bottom:5.600000pt;}
.y55{bottom:9.600000pt;}
.y67{bottom:9.601333pt;}
.y5b{bottom:22.933333pt;}
.y60{bottom:23.200000pt;}
.y1c0{bottom:32.533333pt;}
.y166{bottom:41.866667pt;}
.yee{bottom:42.133333pt;}
.y21e{bottom:51.466667pt;}
.y4{bottom:60.266667pt;}
.y1fc{bottom:60.800000pt;}
.yae{bottom:61.066667pt;}
.y19f{bottom:66.666667pt;}
.y1e1{bottom:70.400000pt;}
.y1dc{bottom:70.666667pt;}
.y168{bottom:77.866667pt;}
.y1f0{bottom:79.733333pt;}
.y8e{bottom:80.000000pt;}
.y16f{bottom:85.600000pt;}
.ye9{bottom:87.205333pt;}
.y202{bottom:88.000000pt;}
.y1e9{bottom:89.333333pt;}
.y1be{bottom:89.600000pt;}
.y208{bottom:91.997333pt;}
.y204{bottom:92.000000pt;}
.y270{bottom:93.418667pt;}
.y128{bottom:93.866667pt;}
.y2cc{bottom:94.933333pt;}
.y2fb{bottom:96.000000pt;}
.yc4{bottom:98.933333pt;}
.y37{bottom:98.938667pt;}
.y53{bottom:104.821333pt;}
.y1b4{bottom:105.904000pt;}
.ye8{bottom:108.005333pt;}
.y176{bottom:108.526667pt;}
.y70{bottom:108.816000pt;}
.y207{bottom:110.932000pt;}
.y203{bottom:110.933333pt;}
.y2cb{bottom:112.000000pt;}
.y2fa{bottom:113.066667pt;}
.y18f{bottom:113.946667pt;}
.y127{bottom:116.794667pt;}
.y26f{bottom:116.800000pt;}
.y120{bottom:116.805333pt;}
.y12a{bottom:117.866667pt;}
.y231{bottom:118.133333pt;}
.y2b2{bottom:118.202667pt;}
.y28d{bottom:118.670667pt;}
.y36{bottom:119.466667pt;}
.y256{bottom:123.498667pt;}
.ya1{bottom:124.266667pt;}
.yab{bottom:125.077333pt;}
.y52{bottom:125.349333pt;}
.y1b3{bottom:126.432000pt;}
.y179{bottom:127.197333pt;}
.y175{bottom:127.461333pt;}
.y1bc{bottom:127.466667pt;}
.ye7{bottom:128.533333pt;}
.y2ca{bottom:129.333333pt;}
.y206{bottom:130.130667pt;}
.y200{bottom:130.132000pt;}
.y2f9{bottom:130.400000pt;}
.y18e{bottom:134.746667pt;}
.y126{bottom:135.729333pt;}
.y11f{bottom:135.740000pt;}
.y1d5{bottom:137.066667pt;}
.y35{bottom:137.333333pt;}
.y2b1{bottom:139.002667pt;}
.y28c{bottom:139.334667pt;}
.y255{bottom:144.026667pt;}
.yaa{bottom:145.877333pt;}
.y178{bottom:146.132000pt;}
.y51{bottom:146.149333pt;}
.y174{bottom:146.396000pt;}
.y216{bottom:146.400000pt;}
.y2c9{bottom:146.666667pt;}
.ya4{bottom:147.200000pt;}
.y34{bottom:147.221333pt;}
.y1b2{bottom:147.232000pt;}
.y2f8{bottom:147.733333pt;}
.y205{bottom:149.065333pt;}
.y1ff{bottom:149.066667pt;}
.ye6{bottom:149.333333pt;}
.y125{bottom:154.928000pt;}
.y11a{bottom:154.938667pt;}
.y18d{bottom:155.546667pt;}
.y1fb{bottom:155.733333pt;}
.y1d4{bottom:156.000000pt;}
.y2b0{bottom:159.530667pt;}
.y28b{bottom:159.998667pt;}
.y2c8{bottom:163.733333pt;}
.y119{bottom:164.266667pt;}
.y254{bottom:164.826667pt;}
.y177{bottom:165.066667pt;}
.y173{bottom:165.594667pt;}
.y16b{bottom:165.605333pt;}
.ya0{bottom:166.133333pt;}
.ya3{bottom:166.134667pt;}
.ya9{bottom:166.405333pt;}
.y50{bottom:166.949333pt;}
.y33{bottom:167.749333pt;}
.y201{bottom:168.000000pt;}
.y1b1{bottom:168.032000pt;}
.ye5{bottom:168.266667pt;}
.y124{bottom:173.862667pt;}
.y11e{bottom:173.873333pt;}
.y170{bottom:174.666667pt;}
.y16a{bottom:174.933333pt;}
.y18c{bottom:176.074667pt;}
.y2af{bottom:180.330667pt;}
.y28a{bottom:180.662667pt;}
.y2c7{bottom:181.066667pt;}
.y2f7{bottom:182.133333pt;}
.ye4{bottom:182.933333pt;}
.y172{bottom:184.529333pt;}
.ya2{bottom:185.333333pt;}
.y253{bottom:185.626667pt;}
.ya8{bottom:187.205333pt;}
.y4f{bottom:187.477333pt;}
.y32{bottom:188.549333pt;}
.y1b0{bottom:188.560000pt;}
.y123{bottom:192.797333pt;}
.y11d{bottom:192.808000pt;}
.y13e{bottom:193.866667pt;}
.y18b{bottom:196.874667pt;}
.y105{bottom:197.066667pt;}
.y2c6{bottom:198.400000pt;}
.y2f6{bottom:199.466667pt;}
.y2ae{bottom:201.130667pt;}
.y289{bottom:201.326667pt;}
.y106{bottom:201.333333pt;}
.y1ef{bottom:202.666667pt;}
.y171{bottom:203.464000pt;}
.y252{bottom:206.154667pt;}
.ya7{bottom:208.005333pt;}
.y4e{bottom:208.277333pt;}
.y31{bottom:209.349333pt;}
.y1af{bottom:209.360000pt;}
.y122{bottom:211.732000pt;}
.y11c{bottom:211.742667pt;}
.y2c5{bottom:215.733333pt;}
.y1fa{bottom:215.998667pt;}
.y2f5{bottom:216.800000pt;}
.y18a{bottom:217.674667pt;}
.y16c{bottom:218.400000pt;}
.y9e{bottom:219.733333pt;}
.y2ad{bottom:221.658667pt;}
.y288{bottom:221.990667pt;}
.y16e{bottom:222.398667pt;}
.y9f{bottom:223.733333pt;}
.y1f3{bottom:225.597333pt;}
.y1fe{bottom:225.598667pt;}
.y251{bottom:226.954667pt;}
.ya6{bottom:228.533333pt;}
.y4d{bottom:229.077333pt;}
.y30{bottom:229.877333pt;}
.y1ae{bottom:230.160000pt;}
.y121{bottom:230.666667pt;}
.y11b{bottom:230.677333pt;}
.y2c4{bottom:232.800000pt;}
.y9d{bottom:233.333333pt;}
.y2f4{bottom:233.866667pt;}
.y1f9{bottom:235.197333pt;}
.y101{bottom:235.733333pt;}
.y189{bottom:238.202667pt;}
.y104{bottom:239.733333pt;}
.y16d{bottom:241.333333pt;}
.y2ac{bottom:242.458667pt;}
.y287{bottom:242.654667pt;}
.y1f2{bottom:244.532000pt;}
.y1fd{bottom:244.533333pt;}
.y118{bottom:246.400000pt;}
.y250{bottom:247.482667pt;}
.ya5{bottom:248.800000pt;}
.y4c{bottom:249.605333pt;}
.y2c3{bottom:250.133333pt;}
.y2f{bottom:250.677333pt;}
.y1ad{bottom:250.688000pt;}
.y2f3{bottom:251.200000pt;}
.y1f8{bottom:254.132000pt;}
.y103{bottom:258.932000pt;}
.y188{bottom:259.002667pt;}
.yd5{bottom:260.266667pt;}
.y9c{bottom:262.393333pt;}
.y2ab{bottom:263.258667pt;}
.y1f1{bottom:263.466667pt;}
.y2c2{bottom:267.466667pt;}
.y100{bottom:268.266667pt;}
.y24f{bottom:268.282667pt;}
.y2f2{bottom:268.533333pt;}
.y4b{bottom:270.405333pt;}
.y2e{bottom:271.477333pt;}
.y1ac{bottom:271.488000pt;}
.y9b{bottom:272.000000pt;}
.y1f7{bottom:273.066667pt;}
.y163{bottom:276.000000pt;}
.y286{bottom:277.690667pt;}
.y102{bottom:277.866667pt;}
.y187{bottom:279.802667pt;}
.y98{bottom:281.852000pt;}
.y1eb{bottom:282.400000pt;}
.yd9{bottom:283.462667pt;}
.y2aa{bottom:283.786667pt;}
.y2c1{bottom:284.533333pt;}
.y2f1{bottom:285.600000pt;}
.y24e{bottom:289.082667pt;}
.y117{bottom:290.933333pt;}
.y4a{bottom:291.205333pt;}
.y2d{bottom:292.005333pt;}
.y1ab{bottom:292.288000pt;}
.y285{bottom:296.590667pt;}
.y162{bottom:298.922667pt;}
.y186{bottom:300.330667pt;}
.y97{bottom:300.786667pt;}
.y9a{bottom:301.060000pt;}
.y1ee{bottom:301.597333pt;}
.y2c0{bottom:301.866667pt;}
.yd8{bottom:302.397333pt;}
.ydb{bottom:302.398667pt;}
.y2f0{bottom:302.933333pt;}
.y2a9{bottom:304.586667pt;}
.y24d{bottom:309.610667pt;}
.y99{bottom:310.666667pt;}
.y1f6{bottom:310.933333pt;}
.y49{bottom:311.733333pt;}
.yfd{bottom:312.266667pt;}
.y2c{bottom:312.805333pt;}
.y1aa{bottom:312.816000pt;}
.y116{bottom:313.333333pt;}
.y284{bottom:315.490667pt;}
.y161{bottom:317.857333pt;}
.y2bf{bottom:319.200000pt;}
.y2ef{bottom:320.266667pt;}
.y1ed{bottom:320.532000pt;}
.y185{bottom:321.130667pt;}
.yd7{bottom:321.332000pt;}
.yda{bottom:321.333333pt;}
.y2a8{bottom:325.114667pt;}
.yff{bottom:325.865333pt;}
.y1f5{bottom:329.868000pt;}
.y24c{bottom:330.410667pt;}
.y48{bottom:332.533333pt;}
.y2b{bottom:333.605333pt;}
.y1a9{bottom:333.616000pt;}
.y283{bottom:334.750667pt;}
.y169{bottom:334.933333pt;}
.yfc{bottom:335.465333pt;}
.yfa{bottom:335.466667pt;}
.y115{bottom:335.733333pt;}
.y2be{bottom:336.266667pt;}
.y160{bottom:337.056000pt;}
.y2ee{bottom:337.600000pt;}
.y1ec{bottom:339.466667pt;}
.y96{bottom:339.726667pt;}
.yd6{bottom:340.266667pt;}
.y184{bottom:341.658667pt;}
.yfe{bottom:344.800000pt;}
.y2a7{bottom:345.914667pt;}
.y1f4{bottom:349.066667pt;}
.y95{bottom:349.333333pt;}
.y24b{bottom:351.210667pt;}
.y47{bottom:352.533333pt;}
.y2bd{bottom:353.600000pt;}
.y2a{bottom:354.133333pt;}
.y1a8{bottom:354.144000pt;}
.yfb{bottom:354.400000pt;}
.y2ed{bottom:354.666667pt;}
.y114{bottom:354.933333pt;}
.y15f{bottom:355.990667pt;}
.y183{bottom:362.458667pt;}
.y66{bottom:364.265333pt;}
.y2a6{bottom:366.714667pt;}
.y113{bottom:367.749333pt;}
.y167{bottom:369.600000pt;}
.yf8{bottom:369.866667pt;}
.y2bc{bottom:370.933333pt;}
.y24a{bottom:371.738667pt;}
.y2ec{bottom:372.000000pt;}
.y1e0{bottom:374.133333pt;}
.y8d{bottom:374.400000pt;}
.y15e{bottom:374.925333pt;}
.y153{bottom:374.929333pt;}
.y29{bottom:374.933333pt;}
.y1a7{bottom:374.944000pt;}
.y92{bottom:378.396000pt;}
.yd3{bottom:380.793333pt;}
.y182{bottom:383.258667pt;}
.yf9{bottom:383.465333pt;}
.y2a5{bottom:387.242667pt;}
.y2bb{bottom:388.266667pt;}
.y112{bottom:388.277333pt;}
.y65{bottom:388.800000pt;}
.y2eb{bottom:389.333333pt;}
.yd2{bottom:390.400000pt;}
.y28{bottom:392.533333pt;}
.y249{bottom:392.538667pt;}
.yf7{bottom:393.065333pt;}
.yf5{bottom:393.066667pt;}
.y15d{bottom:393.860000pt;}
.y152{bottom:393.864000pt;}
.y1a6{bottom:395.744000pt;}
.y1e8{bottom:397.066667pt;}
.y91{bottom:397.330667pt;}
.yd4{bottom:399.728000pt;}
.y27{bottom:402.400000pt;}
.y181{bottom:403.786667pt;}
.y2ba{bottom:405.333333pt;}
.y2ea{bottom:406.400000pt;}
.y1ea{bottom:406.664000pt;}
.y94{bottom:406.932000pt;}
.y2a4{bottom:408.042667pt;}
.y111{bottom:409.077333pt;}
.y64{bottom:411.733333pt;}
.yf6{bottom:412.000000pt;}
.y15c{bottom:412.794667pt;}
.y151{bottom:412.798667pt;}
.y248{bottom:413.338667pt;}
.y1e5{bottom:415.997333pt;}
.y90{bottom:416.265333pt;}
.y1a5{bottom:416.272000pt;}
.ycf{bottom:417.333333pt;}
.y2b9{bottom:421.866667pt;}
.y26{bottom:423.200000pt;}
.y2e9{bottom:423.733333pt;}
.y180{bottom:424.586667pt;}
.y1df{bottom:425.598667pt;}
.y1e2{bottom:425.600000pt;}
.y93{bottom:425.866667pt;}
.y63{bottom:426.666667pt;}
.y165{bottom:427.200000pt;}
.yf1{bottom:427.466667pt;}
.y2a3{bottom:428.842667pt;}
.y110{bottom:429.877333pt;}
.y15b{bottom:431.729333pt;}
.yf2{bottom:431.732000pt;}
.y150{bottom:431.733333pt;}
.y247{bottom:433.866667pt;}
.y1e4{bottom:434.932000pt;}
.y8f{bottom:435.200000pt;}
.y1a4{bottom:437.072000pt;}
.y2b8{bottom:437.333333pt;}
.yd1{bottom:440.268000pt;}
.yf4{bottom:441.065333pt;}
.y25{bottom:441.066667pt;}
.y1de{bottom:444.533333pt;}
.y17f{bottom:445.386667pt;}
.y2a2{bottom:449.370667pt;}
.yce{bottom:449.866667pt;}
.y164{bottom:450.133333pt;}
.y10f{bottom:450.405333pt;}
.yf0{bottom:450.666667pt;}
.y15a{bottom:450.928000pt;}
.y24{bottom:450.954667pt;}
.y62{bottom:451.200000pt;}
.y1e3{bottom:453.866667pt;}
.y246{bottom:454.666667pt;}
.y2b7{bottom:456.266667pt;}
.y1a3{bottom:457.872000pt;}
.y2e8{bottom:458.133333pt;}
.yd0{bottom:459.466667pt;}
.yf3{bottom:460.000000pt;}
.y17e{bottom:465.914667pt;}
.y88{bottom:469.062667pt;}
.y159{bottom:469.862667pt;}
.y8c{bottom:469.866667pt;}
.y2a1{bottom:470.170667pt;}
.y10e{bottom:471.205333pt;}
.y23{bottom:471.482667pt;}
.y2b6{bottom:471.738667pt;}
.y1e7{bottom:473.065333pt;}
.y2e7{bottom:475.466667pt;}
.y1a2{bottom:478.400000pt;}
.y157{bottom:484.800000pt;}
.yed{bottom:485.066667pt;}
.y61{bottom:485.333333pt;}
.y23b{bottom:486.400000pt;}
.y17d{bottom:486.714667pt;}
.y87{bottom:487.997333pt;}
.y158{bottom:488.797333pt;}
.yef{bottom:489.332000pt;}
.y245{bottom:490.397333pt;}
.y2a0{bottom:490.970667pt;}
.y1e6{bottom:492.000000pt;}
.y10d{bottom:492.005333pt;}
.y22{bottom:492.282667pt;}
.y2b5{bottom:492.538667pt;}
.y89{bottom:492.800000pt;}
.y8b{bottom:492.801333pt;}
.yca{bottom:493.866667pt;}
.y243{bottom:500.000000pt;}
.y5f{bottom:500.266667pt;}
.y1cc{bottom:507.466667pt;}
.y17c{bottom:507.514667pt;}
.y156{bottom:507.732000pt;}
.y154{bottom:507.736000pt;}
.yec{bottom:508.266667pt;}
.y23d{bottom:509.332000pt;}
.y23f{bottom:509.333333pt;}
.y19e{bottom:509.600000pt;}
.y2e6{bottom:510.133333pt;}
.y29f{bottom:511.498667pt;}
.y8a{bottom:512.000000pt;}
.y10c{bottom:512.533333pt;}
.y21{bottom:512.810667pt;}
.y2b4{bottom:513.066667pt;}
.ycd{bottom:517.064000pt;}
.y155{bottom:526.666667pt;}
.y2e5{bottom:527.200000pt;}
.y17b{bottom:528.042667pt;}
.y23c{bottom:528.266667pt;}
.y239{bottom:528.268000pt;}
.y1db{bottom:530.660000pt;}
.y29e{bottom:532.298667pt;}
.y20{bottom:533.610667pt;}
.y2b3{bottom:533.866667pt;}
.y1a1{bottom:534.666667pt;}
.y10b{bottom:534.933333pt;}
.ycc{bottom:535.998667pt;}
.yc9{bottom:536.000000pt;}
.y86{bottom:536.265333pt;}
.y242{bottom:537.864000pt;}
.y1d1{bottom:539.997333pt;}
.y13d{bottom:542.400000pt;}
.yea{bottom:542.666667pt;}
.y2e4{bottom:544.533333pt;}
.y147{bottom:546.390667pt;}
.yeb{bottom:546.933333pt;}
.y23e{bottom:547.465333pt;}
.y238{bottom:547.466667pt;}
.y5e{bottom:548.000000pt;}
.y17a{bottom:548.842667pt;}
.y1da{bottom:549.594667pt;}
.y26e{bottom:550.174667pt;}
.y29d{bottom:553.098667pt;}
.y10a{bottom:554.133333pt;}
.y1f{bottom:554.410667pt;}
.ycb{bottom:554.933333pt;}
.y84{bottom:555.200000pt;}
.y1a0{bottom:555.466667pt;}
.y241{bottom:556.798667pt;}
.y1d0{bottom:558.932000pt;}
.y1dd{bottom:558.933333pt;}
.y1d3{bottom:558.934667pt;}
.y2e3{bottom:561.866667pt;}
.y5d{bottom:562.933333pt;}
.y14f{bottom:564.797333pt;}
.y146{bottom:565.325333pt;}
.y23a{bottom:566.400000pt;}
.y1d9{bottom:568.529333pt;}
.y109{bottom:569.642667pt;}
.y26d{bottom:570.974667pt;}
.y29c{bottom:573.626667pt;}
.y85{bottom:574.134667pt;}
.y1e{bottom:574.938667pt;}
.y240{bottom:575.733333pt;}
.y1cf{bottom:578.130667pt;}
.y1cb{bottom:578.132000pt;}
.y1d2{bottom:578.133333pt;}
.y2e2{bottom:578.933333pt;}
.y14e{bottom:583.732000pt;}
.y14c{bottom:583.733333pt;}
.y145{bottom:584.260000pt;}
.y244{bottom:585.333333pt;}
.y1d8{bottom:587.464000pt;}
.y5a{bottom:587.466667pt;}
.ye3{bottom:588.570667pt;}
.yc3{bottom:589.600000pt;}
.y108{bottom:590.170667pt;}
.y26c{bottom:591.684000pt;}
.y19c{bottom:592.266667pt;}
.y29b{bottom:594.426667pt;}
.y1d{bottom:595.738667pt;}
.y2e1{bottom:596.266667pt;}
.y1ce{bottom:597.065333pt;}
.y1ca{bottom:597.066667pt;}
.y83{bottom:598.398667pt;}
.y230{bottom:600.800000pt;}
.y14d{bottom:602.666667pt;}
.y144{bottom:603.194667pt;}
.y237{bottom:605.060000pt;}
.y1d7{bottom:606.398667pt;}
.ye2{bottom:609.370667pt;}
.y107{bottom:610.970667pt;}
.y26b{bottom:612.393333pt;}
.yc8{bottom:612.529333pt;}
.y2e0{bottom:613.600000pt;}
.y29a{bottom:614.954667pt;}
.y1cd{bottom:616.000000pt;}
.y1c{bottom:616.538667pt;}
.y82{bottom:617.333333pt;}
.y143{bottom:622.393333pt;}
.y236{bottom:623.994667pt;}
.y22f{bottom:623.997333pt;}
.yc1{bottom:624.261333pt;}
.y1d6{bottom:625.333333pt;}
.y2df{bottom:630.666667pt;}
.yc7{bottom:631.464000pt;}
.ye1{bottom:631.498667pt;}
.y59{bottom:631.733333pt;}
.y26a{bottom:633.102667pt;}
.y299{bottom:635.754667pt;}
.y14b{bottom:636.533333pt;}
.y1b{bottom:637.066667pt;}
.y81{bottom:638.933333pt;}
.yc2{bottom:641.066667pt;}
.y142{bottom:641.328000pt;}
.y13b{bottom:641.333333pt;}
.y235{bottom:642.929333pt;}
.y22e{bottom:642.932000pt;}
.y58{bottom:646.666667pt;}
.y2de{bottom:648.000000pt;}
.y80{bottom:648.533333pt;}
.yc6{bottom:650.398667pt;}
.ye0{bottom:652.298667pt;}
.y269{bottom:653.812000pt;}
.y282{bottom:653.813333pt;}
.y7e{bottom:656.533333pt;}
.y298{bottom:656.554667pt;}
.y1a{bottom:657.866667pt;}
.y148{bottom:659.466667pt;}
.y14a{bottom:659.468000pt;}
.y141{bottom:660.262667pt;}
.y234{bottom:661.864000pt;}
.y22b{bottom:661.866667pt;}
.y2dd{bottom:665.333333pt;}
.yc5{bottom:669.333333pt;}
.y57{bottom:671.200000pt;}
.ydf{bottom:673.098667pt;}
.y268{bottom:674.521333pt;}
.y281{bottom:674.522667pt;}
.y19{bottom:675.733333pt;}
.y297{bottom:677.082667pt;}
.y149{bottom:678.666667pt;}
.y1bb{bottom:678.933333pt;}
.y140{bottom:679.197333pt;}
.y7d{bottom:679.732000pt;}
.y7b{bottom:679.733333pt;}
.y233{bottom:680.798667pt;}
.y22d{bottom:680.801333pt;}
.y2dc{bottom:682.666667pt;}
.y18{bottom:684.533333pt;}
.y1c1{bottom:692.533333pt;}
.yde{bottom:693.626667pt;}
.y13c{bottom:694.133333pt;}
.y267{bottom:695.230667pt;}
.y280{bottom:695.232000pt;}
.y296{bottom:697.882667pt;}
.y13f{bottom:698.132000pt;}
.y7c{bottom:698.666667pt;}
.y232{bottom:699.733333pt;}
.y22c{bottom:699.736000pt;}
.y19b{bottom:700.549333pt;}
.y17{bottom:701.866667pt;}
.y1c6{bottom:702.132000pt;}
.y56{bottom:705.333333pt;}
.yc0{bottom:710.134667pt;}
.ydd{bottom:714.426667pt;}
.y266{bottom:715.940000pt;}
.y27f{bottom:715.941333pt;}
.y16{bottom:717.066667pt;}
.y79{bottom:718.405333pt;}
.y295{bottom:718.682667pt;}
.y54{bottom:720.800000pt;}
.y1c5{bottom:721.066667pt;}
.y19a{bottom:721.349333pt;}
.y78{bottom:727.733333pt;}
.y15{bottom:728.800000pt;}
.ybe{bottom:729.333333pt;}
.y1bf{bottom:730.401333pt;}
.y222{bottom:734.400000pt;}
.ydc{bottom:735.226667pt;}
.y265{bottom:736.649333pt;}
.y27e{bottom:736.722667pt;}
.y7a{bottom:737.340000pt;}
.y22a{bottom:738.396000pt;}
.y294{bottom:739.210667pt;}
.y1ba{bottom:739.993333pt;}
.y199{bottom:742.149333pt;}
.y14{bottom:745.866667pt;}
.ybf{bottom:748.268000pt;}
.y1b9{bottom:749.600000pt;}
.y2db{bottom:751.466667pt;}
.y130{bottom:751.733333pt;}
.y76{bottom:752.800000pt;}
.y136{bottom:755.729333pt;}
.y46{bottom:755.754667pt;}
.y229{bottom:757.330667pt;}
.y223{bottom:757.333333pt;}
.y264{bottom:757.358667pt;}
.y27d{bottom:757.413333pt;}
.y1c4{bottom:758.933333pt;}
.y293{bottom:760.010667pt;}
.y198{bottom:762.677333pt;}
.y13{bottom:764.010667pt;}
.ybd{bottom:766.133333pt;}
.y75{bottom:766.400000pt;}
.y224{bottom:766.933333pt;}
.y2da{bottom:768.800000pt;}
.y135{bottom:774.664000pt;}
.y77{bottom:776.000000pt;}
.y228{bottom:776.529333pt;}
.y45{bottom:776.554667pt;}
.y1c9{bottom:777.866667pt;}
.y1c3{bottom:777.868000pt;}
.y263{bottom:778.068000pt;}
.y27c{bottom:778.104000pt;}
.yba{bottom:779.460000pt;}
.y292{bottom:780.810667pt;}
.y197{bottom:783.477333pt;}
.y13a{bottom:784.265333pt;}
.y12{bottom:784.538667pt;}
.y220{bottom:785.866667pt;}
.y2d9{bottom:786.133333pt;}
.y1bd{bottom:787.466667pt;}
.ybc{bottom:789.065333pt;}
.yb9{bottom:789.066667pt;}
.y305{bottom:790.666667pt;}
.y74{bottom:791.466667pt;}
.y134{bottom:793.862667pt;}
.y227{bottom:795.464000pt;}
.y1c8{bottom:797.065333pt;}
.y1c2{bottom:797.066667pt;}
.y44{bottom:797.354667pt;}
.y27b{bottom:798.794667pt;}
.y262{bottom:798.837333pt;}
.y291{bottom:801.338667pt;}
.y139{bottom:803.200000pt;}
.y196{bottom:804.005333pt;}
.y73{bottom:805.066667pt;}
.y11{bottom:805.338667pt;}
.ybb{bottom:808.000000pt;}
.y304{bottom:809.866667pt;}
.y133{bottom:812.797333pt;}
.y226{bottom:814.398667pt;}
.y221{bottom:814.400000pt;}
.y1c7{bottom:816.000000pt;}
.y43{bottom:817.882667pt;}
.y27a{bottom:819.485333pt;}
.y261{bottom:819.516000pt;}
.y2d8{bottom:820.533333pt;}
.y138{bottom:822.134667pt;}
.y290{bottom:822.138667pt;}
.yb7{bottom:823.733333pt;}
.y195{bottom:824.805333pt;}
.y10{bottom:826.138667pt;}
.y303{bottom:827.733333pt;}
.y71{bottom:830.133333pt;}
.y1b8{bottom:831.466667pt;}
.y132{bottom:831.732000pt;}
.y225{bottom:833.333333pt;}
.y2d7{bottom:837.866667pt;}
.y42{bottom:838.682667pt;}
.y279{bottom:840.176000pt;}
.y260{bottom:840.194667pt;}
.y137{bottom:841.333333pt;}
.y302{bottom:842.400000pt;}
.y28f{bottom:842.666667pt;}
.y72{bottom:843.733333pt;}
.y1b7{bottom:845.066667pt;}
.y194{bottom:845.605333pt;}
.yf{bottom:846.666667pt;}
.y20d{bottom:849.066667pt;}
.yb6{bottom:849.860000pt;}
.y131{bottom:850.666667pt;}
.y215{bottom:853.066667pt;}
.y2d6{bottom:855.200000pt;}
.y41{bottom:859.210667pt;}
.yb5{bottom:859.466667pt;}
.y278{bottom:860.866667pt;}
.y25f{bottom:860.873333pt;}
.y301{bottom:861.598667pt;}
.y21d{bottom:862.401333pt;}
.y28e{bottom:865.066667pt;}
.y193{bottom:866.133333pt;}
.ye{bottom:867.994667pt;}
.y2d5{bottom:872.266667pt;}
.y1b6{bottom:874.672000pt;}
.y6f{bottom:876.816000pt;}
.y40{bottom:880.010667pt;}
.y300{bottom:880.533333pt;}
.y25e{bottom:881.552000pt;}
.y277{bottom:881.557333pt;}
.y21c{bottom:881.593333pt;}
.y21f{bottom:881.600000pt;}
.y129{bottom:885.333333pt;}
.yb4{bottom:885.600000pt;}
.y192{bottom:886.933333pt;}
.y2d4{bottom:889.600000pt;}
.y20f{bottom:890.932000pt;}
.yd{bottom:892.261333pt;}
.y1b5{bottom:896.800000pt;}
.y6e{bottom:898.944000pt;}
.y21b{bottom:900.528000pt;}
.y3f{bottom:900.810667pt;}
.y25d{bottom:902.230667pt;}
.y276{bottom:902.248000pt;}
.y2ff{bottom:903.466667pt;}
.y2d3{bottom:906.933333pt;}
.y12f{bottom:908.264000pt;}
.yb3{bottom:908.798667pt;}
.yb1{bottom:908.800000pt;}
.y214{bottom:909.864000pt;}
.y20e{bottom:909.866667pt;}
.yc{bottom:916.266667pt;}
.y21a{bottom:919.462667pt;}
.y20a{bottom:919.465333pt;}
.y6d{bottom:919.744000pt;}
.y191{bottom:921.333333pt;}
.y3e{bottom:921.338667pt;}
.y25c{bottom:922.909333pt;}
.y275{bottom:922.938667pt;}
.y2d2{bottom:924.000000pt;}
.y12e{bottom:927.198667pt;}
.yb2{bottom:927.733333pt;}
.y213{bottom:928.798667pt;}
.y219{bottom:938.397333pt;}
.y209{bottom:938.400000pt;}
.yb{bottom:940.533333pt;}
.y6c{bottom:940.544000pt;}
.y2d1{bottom:941.333333pt;}
.y2fe{bottom:941.598667pt;}
.y190{bottom:942.133333pt;}
.y3d{bottom:942.138667pt;}
.yad{bottom:943.200000pt;}
.y25b{bottom:943.588000pt;}
.y274{bottom:943.629333pt;}
.y12b{bottom:946.133333pt;}
.y212{bottom:947.997333pt;}
.y20c{bottom:947.998667pt;}
.y218{bottom:957.332000pt;}
.y2d0{bottom:958.666667pt;}
.y8{bottom:959.466667pt;}
.y2fd{bottom:960.533333pt;}
.y6b{bottom:961.344000pt;}
.y3c{bottom:962.938667pt;}
.y25a{bottom:964.266667pt;}
.y273{bottom:964.448000pt;}
.y12d{bottom:965.332000pt;}
.yb0{bottom:966.398667pt;}
.y211{bottom:966.932000pt;}
.y20b{bottom:966.933333pt;}
.yac{bottom:975.733333pt;}
.y217{bottom:976.266667pt;}
.y2fc{bottom:978.400000pt;}
.y6{bottom:980.800000pt;}
.y6a{bottom:981.872000pt;}
.y3b{bottom:983.466667pt;}
.y12c{bottom:984.266667pt;}
.y259{bottom:984.945333pt;}
.y272{bottom:985.157333pt;}
.yaf{bottom:985.333333pt;}
.y210{bottom:985.866667pt;}
.y2cf{bottom:993.066667pt;}
.y69{bottom:1002.672000pt;}
.y5{bottom:1003.733333pt;}
.y3a{bottom:1004.266667pt;}
.y258{bottom:1005.866667pt;}
.y2ce{bottom:1010.400000pt;}
.y3{bottom:1017.600000pt;}
.y68{bottom:1024.800000pt;}
.y39{bottom:1025.066667pt;}
.y271{bottom:1026.576000pt;}
.y257{bottom:1026.666667pt;}
.y2cd{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y38{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.hd{height:18.560000pt;}
.h22{height:20.266667pt;}
.h2e{height:20.533333pt;}
.h5{height:20.801333pt;}
.h8{height:21.332000pt;}
.h12{height:24.533333pt;}
.h16{height:24.534667pt;}
.h4{height:27.840000pt;}
.h11{height:37.120000pt;}
.h19{height:37.865333pt;}
.h15{height:37.866667pt;}
.h17{height:38.133333pt;}
.h3{height:39.040000pt;}
.hf{height:41.493333pt;}
.h7{height:42.133333pt;}
.h36{height:42.944000pt;}
.h2{height:43.040000pt;}
.hc{height:46.400000pt;}
.he{height:46.848000pt;}
.h13{height:47.344000pt;}
.h14{height:51.040000pt;}
.h33{height:51.066667pt;}
.h6{height:51.648000pt;}
.h35{height:55.625000pt;}
.hb{height:55.680000pt;}
.h2a{height:56.800000pt;}
.h23{height:56.801333pt;}
.h1d{height:57.065333pt;}
.h1c{height:57.066667pt;}
.ha{height:60.256000pt;}
.h18{height:62.812500pt;}
.h9{height:64.960000pt;}
.h10{height:66.750000pt;}
.h21{height:76.000000pt;}
.h25{height:76.001333pt;}
.h2f{height:82.666667pt;}
.h1f{height:88.352000pt;}
.h1a{height:89.440000pt;}
.h1b{height:89.466667pt;}
.h2c{height:92.800000pt;}
.h1e{height:94.933333pt;}
.h20{height:94.934667pt;}
.h24{height:113.866667pt;}
.h27{height:132.798667pt;}
.h28{height:132.800000pt;}
.h34{height:133.066667pt;}
.h26{height:151.734667pt;}
.h30{height:151.998667pt;}
.h32{height:170.666667pt;}
.h31{height:170.933333pt;}
.h2d{height:189.600000pt;}
.h29{height:208.800000pt;}
.h2b{height:265.600000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.wd{width:103.998667pt;}
.w4{width:113.333333pt;}
.w6{width:113.334667pt;}
.w3{width:113.600000pt;}
.w16{width:118.133333pt;}
.w12{width:122.933333pt;}
.w18{width:129.868000pt;}
.w17{width:130.133333pt;}
.w8{width:132.266667pt;}
.wf{width:132.268000pt;}
.wc{width:141.333333pt;}
.we{width:141.600000pt;}
.w13{width:157.600000pt;}
.w14{width:157.601333pt;}
.wa{width:160.800000pt;}
.w5{width:226.398667pt;}
.w7{width:238.666667pt;}
.w10{width:264.798667pt;}
.w11{width:274.133333pt;}
.wb{width:330.666667pt;}
.w9{width:377.866667pt;}
.w2{width:425.066667pt;}
.w15{width:630.400000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x74{left:13.333333pt;}
.x48{left:14.400000pt;}
.x26{left:17.066667pt;}
.x64{left:18.933333pt;}
.x2a{left:20.800000pt;}
.x22{left:21.866667pt;}
.x1b{left:22.933333pt;}
.x5b{left:25.066667pt;}
.x32{left:28.800000pt;}
.x27{left:33.333333pt;}
.x46{left:35.733333pt;}
.x4b{left:36.800000pt;}
.x23{left:38.933333pt;}
.x49{left:46.666667pt;}
.x62{left:58.400000pt;}
.x1d{left:63.200000pt;}
.x3{left:70.933333pt;}
.x67{left:73.066667pt;}
.x1{left:81.333333pt;}
.x19{left:82.666667pt;}
.x20{left:85.066667pt;}
.x42{left:88.533333pt;}
.x79{left:90.133333pt;}
.x3a{left:92.533333pt;}
.x7a{left:93.902667pt;}
.x44{left:96.000000pt;}
.x28{left:98.133333pt;}
.x4d{left:99.200000pt;}
.x75{left:101.066667pt;}
.x2d{left:102.133333pt;}
.x33{left:104.266667pt;}
.x2b{left:106.133333pt;}
.x18{left:107.733333pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x3d{left:113.600000pt;}
.x1e{left:114.933333pt;}
.x6a{left:116.533333pt;}
.x2f{left:118.133333pt;}
.x60{left:124.265333pt;}
.x76{left:125.866667pt;}
.x15{left:128.533333pt;}
.x9{left:130.930667pt;}
.xa{left:138.136000pt;}
.xf{left:153.333333pt;}
.x13{left:159.461333pt;}
.x78{left:162.984000pt;}
.x17{left:170.661333pt;}
.x14{left:175.717333pt;}
.x47{left:185.333333pt;}
.x73{left:188.800000pt;}
.x6d{left:196.005333pt;}
.x54{left:197.598667pt;}
.x56{left:199.725333pt;}
.x53{left:201.866667pt;}
.xc{left:202.938667pt;}
.x55{left:209.860000pt;}
.x29{left:213.600000pt;}
.xd{left:218.410667pt;}
.x10{left:221.066667pt;}
.xe{left:229.626667pt;}
.x63{left:231.992000pt;}
.xb{left:234.666667pt;}
.x4e{left:238.137333pt;}
.x5d{left:239.466667pt;}
.x3f{left:242.133333pt;}
.x61{left:248.000000pt;}
.x43{left:249.066667pt;}
.x69{left:251.466667pt;}
.x50{left:256.266667pt;}
.x77{left:266.666667pt;}
.x45{left:307.472000pt;}
.x6e{left:318.666667pt;}
.x6f{left:325.866667pt;}
.x4a{left:326.933333pt;}
.x3e{left:328.517333pt;}
.x11{left:332.533333pt;}
.x1a{left:334.133333pt;}
.x57{left:336.266667pt;}
.x58{left:340.006667pt;}
.x1f{left:341.333333pt;}
.x59{left:345.873333pt;}
.x5f{left:350.665333pt;}
.x5e{left:352.000000pt;}
.x66{left:355.470667pt;}
.x65{left:360.266667pt;}
.x5a{left:363.473333pt;}
.x5c{left:372.000000pt;}
.x24{left:379.200000pt;}
.x2{left:396.800000pt;}
.x12{left:399.466667pt;}
.x38{left:420.533333pt;}
.x1c{left:447.466667pt;}
.x6b{left:448.800000pt;}
.x51{left:449.866667pt;}
.x70{left:456.000000pt;}
.x52{left:457.066667pt;}
.x4c{left:459.200000pt;}
.x4f{left:466.400000pt;}
.x5{left:496.000000pt;}
.x68{left:554.133333pt;}
.x72{left:566.933333pt;}
.x40{left:572.800000pt;}
.x71{left:574.133333pt;}
.x37{left:575.733333pt;}
.x6c{left:578.666667pt;}
.x41{left:580.000000pt;}
.x25{left:591.466667pt;}
.x36{left:602.133333pt;}
.x34{left:607.480000pt;}
.x7{left:609.600000pt;}
.x31{left:610.677333pt;}
.x2e{left:612.269333pt;}
.x35{left:616.016000pt;}
.x3b{left:618.133333pt;}
.x39{left:619.733333pt;}
.x3c{left:622.137333pt;}
.x30{left:627.749333pt;}
.x2c{left:630.133333pt;}
.x21{left:651.237333pt;}
.x16{left:663.733333pt;}
}




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