
    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_7b5fd01106c69c57b72ab5da.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.985000;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_bf6e52992cb07bf5dbf1d96f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.985000;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_0c781456867e1ff5ce7b06ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.985000;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_3396c9a593249eeb0856f04e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.013000;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_cadf80667860fc604b871261.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_c1a5a971b5e14bf7266ff68b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_337d8b47789eee313caa5ae3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.724000;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_c746eca7ca853d31591069ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.032715;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_bf6e52992cb07bf5dbf1d96f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.985000;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_bf6e52992cb07bf5dbf1d96f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.985000;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_f78b5cfb24ad17d8fc9cdad1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-20.979000px;}
.v3{vertical-align:-18.981000px;}
.v2{vertical-align:-16.983000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.979000px;}
.ls125{letter-spacing:-6.048000px;}
.ls1b{letter-spacing:-4.692000px;}
.ls124{letter-spacing:-4.095000px;}
.ls8{letter-spacing:-4.032000px;}
.ls115{letter-spacing:-2.397000px;}
.ls5a{letter-spacing:-1.887000px;}
.lsed{letter-spacing:-1.428000px;}
.ls2b{letter-spacing:-1.358973px;}
.ls2c{letter-spacing:-1.275000px;}
.ls2d{letter-spacing:-1.100121px;}
.ls5b{letter-spacing:-0.918000px;}
.lscc{letter-spacing:-0.714000px;}
.lsde{letter-spacing:-0.630000px;}
.ls42{letter-spacing:-0.510000px;}
.lsdf{letter-spacing:-0.367290px;}
.lsf8{letter-spacing:-0.315000px;}
.ls41{letter-spacing:-0.297330px;}
.lse1{letter-spacing:-0.255000px;}
.ls9{letter-spacing:-0.240000px;}
.lsf9{letter-spacing:-0.183645px;}
.ls118{letter-spacing:-0.148665px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000300px;}
.lsa{letter-spacing:0.000600px;}
.lsd{letter-spacing:0.008400px;}
.lsb{letter-spacing:0.009000px;}
.lsf{letter-spacing:0.009600px;}
.ls9a{letter-spacing:0.010200px;}
.ls72{letter-spacing:0.010800px;}
.ls0{letter-spacing:0.096000px;}
.ls19{letter-spacing:0.100200px;}
.lsca{letter-spacing:0.127800px;}
.lsbe{letter-spacing:0.168600px;}
.lsc0{letter-spacing:0.228600px;}
.lsbf{letter-spacing:0.229200px;}
.lscb{letter-spacing:0.255000px;}
.ls8b{letter-spacing:0.269400px;}
.ls10a{letter-spacing:0.271800px;}
.lse7{letter-spacing:0.287400px;}
.ls4d{letter-spacing:0.293400px;}
.ls4c{letter-spacing:0.294000px;}
.lseb{letter-spacing:0.490800px;}
.ls82{letter-spacing:0.513600px;}
.ls39{letter-spacing:0.521400px;}
.lse5{letter-spacing:0.571800px;}
.ls15{letter-spacing:0.598200px;}
.lsb6{letter-spacing:0.607200px;}
.ls4b{letter-spacing:0.652800px;}
.ls3b{letter-spacing:0.675000px;}
.ls47{letter-spacing:0.686400px;}
.ls2{letter-spacing:0.719400px;}
.ls3{letter-spacing:0.720720px;}
.ls107{letter-spacing:0.738000px;}
.ls104{letter-spacing:0.754800px;}
.lsae{letter-spacing:0.787800px;}
.lsdb{letter-spacing:0.825000px;}
.lsb3{letter-spacing:0.829800px;}
.lsd8{letter-spacing:1.001400px;}
.lsd7{letter-spacing:1.002000px;}
.lsa9{letter-spacing:1.061400px;}
.lsa8{letter-spacing:1.069800px;}
.lsa7{letter-spacing:1.070400px;}
.ls10b{letter-spacing:1.082400px;}
.ls10c{letter-spacing:1.083000px;}
.lsdc{letter-spacing:1.213800px;}
.ls4e{letter-spacing:1.273800px;}
.ls52{letter-spacing:1.327200px;}
.ls35{letter-spacing:1.357800px;}
.ls53{letter-spacing:1.444200px;}
.ls61{letter-spacing:1.483200px;}
.ls62{letter-spacing:1.483800px;}
.ls119{letter-spacing:1.545600px;}
.ls111{letter-spacing:1.584600px;}
.ls110{letter-spacing:1.585200px;}
.ls11d{letter-spacing:1.636200px;}
.ls11c{letter-spacing:1.636800px;}
.ls3e{letter-spacing:1.664400px;}
.lsb7{letter-spacing:1.665000px;}
.ls96{letter-spacing:1.702800px;}
.lsfc{letter-spacing:1.710600px;}
.lsfd{letter-spacing:1.711200px;}
.ls26{letter-spacing:1.781400px;}
.ls4f{letter-spacing:1.782000px;}
.ls27{letter-spacing:1.783200px;}
.ls103{letter-spacing:1.806000px;}
.lsc7{letter-spacing:1.852800px;}
.lse8{letter-spacing:1.869600px;}
.ls18{letter-spacing:1.888800px;}
.ls8c{letter-spacing:1.930800px;}
.ls76{letter-spacing:1.944000px;}
.ls1e{letter-spacing:1.992600px;}
.ls11e{letter-spacing:2.009400px;}
.ls10d{letter-spacing:2.046000px;}
.ls10e{letter-spacing:2.094600px;}
.ls9b{letter-spacing:2.146800px;}
.ls4a{letter-spacing:2.205000px;}
.lsff{letter-spacing:2.218800px;}
.ls5d{letter-spacing:2.233800px;}
.lse9{letter-spacing:2.248200px;}
.ls7d{letter-spacing:2.271000px;}
.ls56{letter-spacing:2.281200px;}
.lsd3{letter-spacing:2.327400px;}
.lsd2{letter-spacing:2.328000px;}
.lse0{letter-spacing:2.346000px;}
.ls75{letter-spacing:2.351400px;}
.lsa0{letter-spacing:2.420400px;}
.ls54{letter-spacing:2.435400px;}
.lsb8{letter-spacing:2.517000px;}
.ls8e{letter-spacing:2.531400px;}
.ls7c{letter-spacing:2.567400px;}
.ls66{letter-spacing:2.746200px;}
.ls65{letter-spacing:2.746800px;}
.ls7b{letter-spacing:2.823000px;}
.ls10f{letter-spacing:2.887800px;}
.lsb5{letter-spacing:2.932800px;}
.ls8a{letter-spacing:2.949600px;}
.lsf5{letter-spacing:3.065400px;}
.ls59{letter-spacing:3.087000px;}
.ls58{letter-spacing:3.087600px;}
.ls25{letter-spacing:3.098400px;}
.ls24{letter-spacing:3.099000px;}
.ls77{letter-spacing:3.366600px;}
.ls91{letter-spacing:3.369000px;}
.ls92{letter-spacing:3.369600px;}
.ls93{letter-spacing:3.370200px;}
.ls81{letter-spacing:3.407400px;}
.ls5c{letter-spacing:3.419400px;}
.lsc3{letter-spacing:3.526800px;}
.lsc2{letter-spacing:3.527400px;}
.ls37{letter-spacing:3.801000px;}
.lsc{letter-spacing:3.837600px;}
.lsd1{letter-spacing:3.880200px;}
.ls21{letter-spacing:3.957600px;}
.ls95{letter-spacing:3.985200px;}
.ls94{letter-spacing:3.985800px;}
.ls121{letter-spacing:4.020000px;}
.ls70{letter-spacing:4.179000px;}
.ls50{letter-spacing:4.191000px;}
.ls102{letter-spacing:4.233600px;}
.ls101{letter-spacing:4.234200px;}
.lsbd{letter-spacing:4.261800px;}
.lsb0{letter-spacing:4.270800px;}
.lsb2{letter-spacing:4.336200px;}
.ls120{letter-spacing:4.350000px;}
.ls67{letter-spacing:4.357200px;}
.ls68{letter-spacing:4.357800px;}
.ls84{letter-spacing:4.373400px;}
.ls85{letter-spacing:4.374000px;}
.lsbc{letter-spacing:4.595400px;}
.ls6d{letter-spacing:4.609800px;}
.ls36{letter-spacing:4.617600px;}
.ls1f{letter-spacing:4.673400px;}
.lsce{letter-spacing:4.712400px;}
.ls43{letter-spacing:4.818600px;}
.ls5{letter-spacing:4.878600px;}
.ls12{letter-spacing:4.880400px;}
.ls2f{letter-spacing:4.883400px;}
.ls28{letter-spacing:4.895400px;}
.ls29{letter-spacing:4.896000px;}
.lsf0{letter-spacing:4.899600px;}
.ls11f{letter-spacing:4.920600px;}
.ls87{letter-spacing:4.963800px;}
.lsa5{letter-spacing:5.013600px;}
.ls9c{letter-spacing:5.257200px;}
.ls30{letter-spacing:5.261400px;}
.ls80{letter-spacing:5.286000px;}
.lsfe{letter-spacing:5.403600px;}
.ls23{letter-spacing:5.416800px;}
.lscf{letter-spacing:5.562600px;}
.ls17{letter-spacing:5.608200px;}
.ls2a{letter-spacing:5.652600px;}
.ls11{letter-spacing:5.671800px;}
.lse3{letter-spacing:5.698800px;}
.lse2{letter-spacing:5.699400px;}
.lsec{letter-spacing:5.712000px;}
.ls44{letter-spacing:5.727000px;}
.lsaf{letter-spacing:5.765400px;}
.ls9e{letter-spacing:5.784000px;}
.ls9f{letter-spacing:5.784600px;}
.ls3f{letter-spacing:5.819400px;}
.lsd5{letter-spacing:5.868000px;}
.lsd4{letter-spacing:5.868600px;}
.ls5f{letter-spacing:5.893800px;}
.ls5e{letter-spacing:5.894400px;}
.ls71{letter-spacing:5.916000px;}
.lsef{letter-spacing:5.963400px;}
.ls114{letter-spacing:6.007200px;}
.ls79{letter-spacing:6.089400px;}
.ls9d{letter-spacing:6.211200px;}
.ls6e{letter-spacing:6.266400px;}
.lsda{letter-spacing:6.282000px;}
.ls11b{letter-spacing:6.317400px;}
.ls20{letter-spacing:6.344400px;}
.ls108{letter-spacing:6.384600px;}
.ls109{letter-spacing:6.385200px;}
.lse6{letter-spacing:6.399000px;}
.ls89{letter-spacing:6.400200px;}
.ls86{letter-spacing:6.471600px;}
.ls8d{letter-spacing:6.477000px;}
.ls88{letter-spacing:6.637200px;}
.lsdd{letter-spacing:6.667800px;}
.lsa1{letter-spacing:6.676200px;}
.lsd6{letter-spacing:6.749400px;}
.lsba{letter-spacing:6.874800px;}
.lsb9{letter-spacing:6.875400px;}
.ls55{letter-spacing:6.899400px;}
.ls3a{letter-spacing:6.940800px;}
.lsc9{letter-spacing:7.018200px;}
.lsc8{letter-spacing:7.018800px;}
.lscd{letter-spacing:7.038000px;}
.ls74{letter-spacing:7.048800px;}
.lsa6{letter-spacing:7.138800px;}
.ls7{letter-spacing:7.245000px;}
.ls122{letter-spacing:7.317000px;}
.ls1d{letter-spacing:7.319400px;}
.ls105{letter-spacing:7.416000px;}
.ls106{letter-spacing:7.416600px;}
.ls49{letter-spacing:7.459200px;}
.ls6f{letter-spacing:7.558800px;}
.ls63{letter-spacing:7.749600px;}
.ls64{letter-spacing:7.750800px;}
.ls99{letter-spacing:7.852800px;}
.ls14{letter-spacing:7.945200px;}
.lsaa{letter-spacing:8.098800px;}
.lsb4{letter-spacing:8.104800px;}
.lsc5{letter-spacing:8.105400px;}
.lsc4{letter-spacing:8.106000px;}
.lsc1{letter-spacing:8.145600px;}
.ls3c{letter-spacing:8.158200px;}
.ls3d{letter-spacing:8.158800px;}
.ls73{letter-spacing:8.162400px;}
.lsea{letter-spacing:8.409000px;}
.ls7a{letter-spacing:8.958600px;}
.ls38{letter-spacing:9.016200px;}
.lse{letter-spacing:9.471600px;}
.ls112{letter-spacing:9.721200px;}
.ls113{letter-spacing:9.721800px;}
.ls83{letter-spacing:9.906600px;}
.lsd9{letter-spacing:9.980400px;}
.lsf3{letter-spacing:10.059600px;}
.lsf2{letter-spacing:10.060200px;}
.lsee{letter-spacing:10.092000px;}
.ls16{letter-spacing:10.227600px;}
.lsf1{letter-spacing:10.385400px;}
.ls7f{letter-spacing:10.560000px;}
.ls6c{letter-spacing:10.616400px;}
.ls6b{letter-spacing:10.617000px;}
.lsd0{letter-spacing:11.021400px;}
.lsf4{letter-spacing:11.191200px;}
.lsa3{letter-spacing:11.448600px;}
.lsa2{letter-spacing:11.449200px;}
.ls100{letter-spacing:11.647800px;}
.ls31{letter-spacing:11.772000px;}
.ls7e{letter-spacing:11.909400px;}
.ls60{letter-spacing:11.944200px;}
.ls69{letter-spacing:12.129000px;}
.ls6a{letter-spacing:12.129600px;}
.ls11a{letter-spacing:12.407400px;}
.lsb1{letter-spacing:12.460800px;}
.ls13{letter-spacing:12.876000px;}
.ls57{letter-spacing:13.237800px;}
.ls32{letter-spacing:13.416600px;}
.lsc6{letter-spacing:13.570800px;}
.ls78{letter-spacing:13.758000px;}
.lsab{letter-spacing:14.079000px;}
.lsf7{letter-spacing:14.274000px;}
.lsf6{letter-spacing:14.274600px;}
.lsfa{letter-spacing:14.280000px;}
.lsfb{letter-spacing:14.732400px;}
.ls48{letter-spacing:14.948400px;}
.lse4{letter-spacing:15.562200px;}
.ls1a{letter-spacing:15.750000px;}
.ls51{letter-spacing:15.828600px;}
.ls45{letter-spacing:15.879600px;}
.ls46{letter-spacing:15.880200px;}
.ls10{letter-spacing:16.884000px;}
.ls34{letter-spacing:18.816000px;}
.ls33{letter-spacing:18.816600px;}
.lsbb{letter-spacing:18.994800px;}
.ls117{letter-spacing:20.193600px;}
.ls123{letter-spacing:23.436000px;}
.lsad{letter-spacing:25.031400px;}
.lsac{letter-spacing:25.032000px;}
.lsa4{letter-spacing:33.006150px;}
.ls90{letter-spacing:33.006750px;}
.ls116{letter-spacing:33.452550px;}
.ls97{letter-spacing:34.110150px;}
.ls98{letter-spacing:35.213550px;}
.ls8f{letter-spacing:38.368200px;}
.ls1c{letter-spacing:47.872950px;}
.ls40{letter-spacing:47.873550px;}
.ls2e{letter-spacing:48.467550px;}
.ls22{letter-spacing:48.976350px;}
.ls4{letter-spacing:76.732050px;}
.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;}
}
.ws47{word-spacing:-19.803000px;}
.wsd5{word-spacing:-18.081000px;}
.ws25{word-spacing:-15.750000px;}
.wsdf{word-spacing:-15.435000px;}
.ws1{word-spacing:-15.185520px;}
.ws2{word-spacing:-14.464800px;}
.wsf0{word-spacing:-14.280000px;}
.ws3{word-spacing:-14.250000px;}
.ws10c{word-spacing:-13.986000px;}
.ws26{word-spacing:-12.750000px;}
.wsc0{word-spacing:-12.495000px;}
.wsf2{word-spacing:-12.240000px;}
.ws58{word-spacing:-11.832000px;}
.ws72{word-spacing:-11.025000px;}
.ws57{word-spacing:-10.863000px;}
.wsf3{word-spacing:-10.353000px;}
.ws4{word-spacing:-9.975000px;}
.ws0{word-spacing:-9.182250px;}
.wse0{word-spacing:-8.998605px;}
.wsbf{word-spacing:-8.814960px;}
.ws36{word-spacing:-7.823277px;}
.ws35{word-spacing:-7.433250px;}
.wsfe{word-spacing:-7.284585px;}
.ws48{word-spacing:-7.135920px;}
.wsbd{word-spacing:-7.038000px;}
.ws99{word-spacing:-6.477000px;}
.ws37{word-spacing:-6.333129px;}
.ws67{word-spacing:-5.916000px;}
.wsce{word-spacing:-5.712000px;}
.ws31{word-spacing:-3.024000px;}
.ws3c{word-spacing:-2.898000px;}
.ws8a{word-spacing:-2.835000px;}
.ws83{word-spacing:-2.772000px;}
.wsee{word-spacing:-2.709000px;}
.ws5e{word-spacing:-2.520000px;}
.wsc{word-spacing:-2.496000px;}
.wsd6{word-spacing:-2.457000px;}
.wsb8{word-spacing:-2.394000px;}
.wsc7{word-spacing:-2.346000px;}
.ws96{word-spacing:-2.295000px;}
.ws6b{word-spacing:-2.193000px;}
.ws61{word-spacing:-2.142000px;}
.ws2f{word-spacing:-2.088000px;}
.ws101{word-spacing:-2.016000px;}
.ws2a{word-spacing:-2.001000px;}
.wsd4{word-spacing:-1.938000px;}
.ws2e{word-spacing:-1.890000px;}
.ws2b{word-spacing:-1.827000px;}
.wsf1{word-spacing:-1.785000px;}
.wsb3{word-spacing:-1.740000px;}
.wsb4{word-spacing:-1.680000px;}
.ws50{word-spacing:-1.632000px;}
.ws18{word-spacing:-1.575000px;}
.ws51{word-spacing:-1.386000px;}
.wse{word-spacing:-1.344000px;}
.ws5d{word-spacing:-1.326000px;}
.ws54{word-spacing:-1.323000px;}
.ws19{word-spacing:-1.275000px;}
.ws68{word-spacing:-1.224000px;}
.wsf8{word-spacing:-1.197000px;}
.ws5a{word-spacing:-1.071000px;}
.wsd{word-spacing:-1.008000px;}
.ws109{word-spacing:-0.882000px;}
.ws6a{word-spacing:-0.867000px;}
.ws5c{word-spacing:-0.765000px;}
.ws8{word-spacing:-0.720000px;}
.ws41{word-spacing:-0.693000px;}
.wsae{word-spacing:-0.663000px;}
.ws17{word-spacing:-0.630000px;}
.wsb{word-spacing:-0.528000px;}
.ws55{word-spacing:-0.459000px;}
.ws84{word-spacing:-0.441000px;}
.ws7{word-spacing:-0.432000px;}
.ws7f{word-spacing:-0.357000px;}
.wsc4{word-spacing:-0.315000px;}
.wsbe{word-spacing:-0.306000px;}
.wsb7{word-spacing:-0.255000px;}
.wse2{word-spacing:-0.252000px;}
.ws3d{word-spacing:-0.126000px;}
.ws5{word-spacing:0.000000px;}
.ws76{word-spacing:0.126000px;}
.ws15{word-spacing:0.252000px;}
.wsc8{word-spacing:0.255000px;}
.wsec{word-spacing:0.315000px;}
.ws1b{word-spacing:0.357000px;}
.ws4c{word-spacing:0.510000px;}
.wsa5{word-spacing:0.612000px;}
.wsc6{word-spacing:0.630000px;}
.ws8e{word-spacing:0.663000px;}
.wsbb{word-spacing:0.714000px;}
.ws3b{word-spacing:0.756000px;}
.ws9e{word-spacing:0.765000px;}
.wsa9{word-spacing:0.819000px;}
.wsd9{word-spacing:0.882000px;}
.ws1a{word-spacing:0.918000px;}
.ws39{word-spacing:0.945000px;}
.ws63{word-spacing:0.969000px;}
.wsa4{word-spacing:1.071000px;}
.ws52{word-spacing:1.134000px;}
.ws108{word-spacing:1.197000px;}
.ws29{word-spacing:1.260000px;}
.ws45{word-spacing:1.275000px;}
.ws82{word-spacing:1.323000px;}
.ws92{word-spacing:1.377000px;}
.ws64{word-spacing:1.428000px;}
.ws1f{word-spacing:1.488000px;}
.ws56{word-spacing:1.683000px;}
.wsd7{word-spacing:1.701000px;}
.ws24{word-spacing:1.824000px;}
.ws95{word-spacing:1.827000px;}
.ws9f{word-spacing:1.938000px;}
.ws86{word-spacing:1.953000px;}
.ws33{word-spacing:2.040000px;}
.ws11{word-spacing:2.079000px;}
.ws60{word-spacing:2.193000px;}
.ws7e{word-spacing:2.205000px;}
.ws20{word-spacing:2.208000px;}
.wsd3{word-spacing:2.244000px;}
.ws7b{word-spacing:2.268000px;}
.ws89{word-spacing:2.295000px;}
.wsb9{word-spacing:2.331000px;}
.wsfa{word-spacing:2.397000px;}
.wsba{word-spacing:2.520000px;}
.ws1d{word-spacing:2.544000px;}
.wsfb{word-spacing:2.550000px;}
.ws7c{word-spacing:2.583000px;}
.ws93{word-spacing:2.601000px;}
.ws70{word-spacing:2.754000px;}
.ws59{word-spacing:2.772000px;}
.ws9{word-spacing:2.784000px;}
.ws22{word-spacing:2.880000px;}
.wsd8{word-spacing:2.898000px;}
.ws4f{word-spacing:2.907000px;}
.wsad{word-spacing:2.958000px;}
.ws106{word-spacing:2.961000px;}
.wsf9{word-spacing:3.024000px;}
.ws16{word-spacing:3.276000px;}
.wse9{word-spacing:3.339000px;}
.ws8c{word-spacing:3.465000px;}
.ws62{word-spacing:3.519000px;}
.wsa{word-spacing:3.552000px;}
.wsb2{word-spacing:3.591000px;}
.ws103{word-spacing:3.717000px;}
.wsa6{word-spacing:3.723000px;}
.ws13{word-spacing:3.780000px;}
.ws4e{word-spacing:3.825000px;}
.ws94{word-spacing:3.843000px;}
.ws105{word-spacing:3.969000px;}
.ws9d{word-spacing:3.978000px;}
.wsf{word-spacing:4.032000px;}
.ws6{word-spacing:4.176000px;}
.wsa1{word-spacing:4.221000px;}
.ws23{word-spacing:4.560000px;}
.wse1{word-spacing:4.662000px;}
.ws43{word-spacing:4.692000px;}
.ws91{word-spacing:4.851000px;}
.wsdd{word-spacing:4.896000px;}
.ws30{word-spacing:4.914000px;}
.ws69{word-spacing:5.100000px;}
.ws14{word-spacing:5.103000px;}
.wsa2{word-spacing:5.166000px;}
.ws12{word-spacing:5.229000px;}
.ws4d{word-spacing:5.253000px;}
.ws90{word-spacing:5.304000px;}
.ws80{word-spacing:5.355000px;}
.ws46{word-spacing:5.406000px;}
.ws38{word-spacing:5.418000px;}
.ws98{word-spacing:5.457000px;}
.ws53{word-spacing:5.544000px;}
.wsc5{word-spacing:5.559000px;}
.ws42{word-spacing:5.607000px;}
.ws1c{word-spacing:5.610000px;}
.ws1e{word-spacing:5.664000px;}
.wse7{word-spacing:5.796000px;}
.ws88{word-spacing:5.814000px;}
.ws10{word-spacing:5.859000px;}
.ws4b{word-spacing:5.922000px;}
.wsff{word-spacing:6.048000px;}
.ws6c{word-spacing:6.171000px;}
.wsed{word-spacing:6.174000px;}
.ws10b{word-spacing:6.237000px;}
.ws44{word-spacing:6.324000px;}
.wscf{word-spacing:6.426000px;}
.wsb1{word-spacing:6.552000px;}
.ws10a{word-spacing:6.615000px;}
.ws102{word-spacing:6.741000px;}
.ws8b{word-spacing:6.804000px;}
.wsc3{word-spacing:6.867000px;}
.ws65{word-spacing:6.885000px;}
.ws79{word-spacing:7.056000px;}
.ws6f{word-spacing:7.119000px;}
.ws21{word-spacing:7.152000px;}
.ws66{word-spacing:7.308000px;}
.ws111{word-spacing:7.344000px;}
.ws9c{word-spacing:7.371000px;}
.wsf6{word-spacing:7.434000px;}
.wsf7{word-spacing:7.497000px;}
.ws107{word-spacing:7.560000px;}
.wsea{word-spacing:7.623000px;}
.ws2d{word-spacing:7.686000px;}
.ws6e{word-spacing:7.749000px;}
.ws10e{word-spacing:7.938000px;}
.wsb6{word-spacing:8.064000px;}
.wsac{word-spacing:8.109000px;}
.wscc{word-spacing:8.127000px;}
.wsaf{word-spacing:8.190000px;}
.ws9b{word-spacing:8.253000px;}
.ws49{word-spacing:8.379000px;}
.ws77{word-spacing:8.568000px;}
.ws75{word-spacing:8.631000px;}
.wse8{word-spacing:8.820000px;}
.wsa0{word-spacing:8.823000px;}
.ws6d{word-spacing:8.883000px;}
.ws5b{word-spacing:9.135000px;}
.wsb5{word-spacing:9.639000px;}
.ws7a{word-spacing:9.702000px;}
.ws5f{word-spacing:9.828000px;}
.wsc2{word-spacing:9.891000px;}
.ws97{word-spacing:9.894000px;}
.wsfc{word-spacing:10.080000px;}
.wscd{word-spacing:10.143000px;}
.ws3f{word-spacing:10.332000px;}
.wsde{word-spacing:10.404000px;}
.wse5{word-spacing:10.458000px;}
.ws8f{word-spacing:10.557000px;}
.ws10f{word-spacing:10.584000px;}
.wsf5{word-spacing:10.647000px;}
.ws113{word-spacing:10.773000px;}
.wsf4{word-spacing:10.962000px;}
.wsa7{word-spacing:11.088000px;}
.ws10d{word-spacing:11.214000px;}
.wsab{word-spacing:11.526000px;}
.wsfd{word-spacing:11.628000px;}
.wsa8{word-spacing:11.655000px;}
.wsdc{word-spacing:11.781000px;}
.ws3e{word-spacing:12.033000px;}
.wsc1{word-spacing:12.096000px;}
.ws71{word-spacing:12.138000px;}
.wsd1{word-spacing:12.222000px;}
.ws40{word-spacing:12.411000px;}
.ws100{word-spacing:12.537000px;}
.wsa3{word-spacing:12.726000px;}
.ws73{word-spacing:12.852000px;}
.ws32{word-spacing:12.903000px;}
.wsd0{word-spacing:12.915000px;}
.ws7d{word-spacing:12.978000px;}
.ws2c{word-spacing:13.482000px;}
.wsbc{word-spacing:13.566000px;}
.ws3a{word-spacing:13.797000px;}
.ws34{word-spacing:14.025000px;}
.ws87{word-spacing:14.112000px;}
.wsca{word-spacing:14.490000px;}
.ws27{word-spacing:14.994000px;}
.ws104{word-spacing:15.183000px;}
.wse4{word-spacing:15.246000px;}
.wsd2{word-spacing:15.309000px;}
.ws78{word-spacing:16.002000px;}
.ws8d{word-spacing:16.065000px;}
.ws28{word-spacing:16.128000px;}
.wse3{word-spacing:16.569000px;}
.wsda{word-spacing:17.010000px;}
.ws110{word-spacing:17.262000px;}
.wsef{word-spacing:17.514000px;}
.ws85{word-spacing:17.577000px;}
.ws81{word-spacing:17.829000px;}
.ws112{word-spacing:18.081000px;}
.wsc9{word-spacing:18.648000px;}
.wse6{word-spacing:18.711000px;}
.wsb0{word-spacing:18.774000px;}
.wscb{word-spacing:19.215000px;}
.ws4a{word-spacing:19.404000px;}
.ws9a{word-spacing:22.869000px;}
.wsaa{word-spacing:22.995000px;}
.ws74{word-spacing:24.129000px;}
.wseb{word-spacing:25.326000px;}
.wsdb{word-spacing:41.832000px;}
._2a{margin-left:-13.492800px;}
._1f{margin-left:-12.376500px;}
._11{margin-left:-7.906500px;}
._b{margin-left:-6.197100px;}
._0{margin-left:-4.297800px;}
._10{margin-left:-3.262200px;}
._1{margin-left:-2.049600px;}
._14{margin-left:-1.017600px;}
._f{width:1.295400px;}
._5{width:2.319600px;}
._7{width:3.593400px;}
._8{width:5.151600px;}
._d{width:6.583500px;}
._6{width:7.647600px;}
._c{width:9.355500px;}
._4{width:11.103600px;}
._15{width:12.153300px;}
._12{width:13.500900px;}
._3{width:15.039600px;}
._9{width:16.486200px;}
._17{width:17.663700px;}
._1c{width:19.366200px;}
._1e{width:21.111300px;}
._1d{width:23.052000px;}
._20{width:24.244200px;}
._19{width:25.847100px;}
._2{width:27.759600px;}
._29{width:28.863000px;}
._26{width:29.977650px;}
._25{width:33.007050px;}
._21{width:37.230600px;}
._22{width:41.246100px;}
._28{width:42.323400px;}
._1b{width:45.430800px;}
._1a{width:47.872950px;}
._2b{width:61.507800px;}
._e{width:62.740050px;}
._18{width:67.534800px;}
._13{width:70.270800px;}
._2d{width:71.383200px;}
._16{width:80.746800px;}
._2c{width:82.006800px;}
._27{width:86.350800px;}
._a{width:89.638800px;}
._24{width:92.710800px;}
._23{width:106.210800px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:29.733000px;}
.fsa{font-size:33.231000px;}
.fs7{font-size:36.729000px;}
.fsc{font-size:39.900000px;}
.fse{font-size:44.100000px;}
.fs4{font-size:48.000000px;}
.fs9{font-size:50.400000px;}
.fs5{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fsf{font-size:60.000000px;}
.fs0{font-size:63.000000px;}
.fsd{font-size:69.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:63.779400px;}
.y52{bottom:63.779550px;}
.yf8{bottom:68.025150px;}
.y14f{bottom:68.025300px;}
.y8a{bottom:78.779400px;}
.y51{bottom:78.779550px;}
.y126{bottom:83.025150px;}
.y10d{bottom:83.025300px;}
.y56{bottom:83.524800px;}
.y89{bottom:93.779400px;}
.y50{bottom:93.779550px;}
.yf7{bottom:98.025150px;}
.y14e{bottom:98.025300px;}
.ya3{bottom:108.779400px;}
.y4f{bottom:108.779550px;}
.y88{bottom:113.025150px;}
.y151{bottom:113.025300px;}
.y87{bottom:123.779400px;}
.y4e{bottom:123.779550px;}
.yf6{bottom:128.025150px;}
.y1cc{bottom:128.025300px;}
.y86{bottom:138.779400px;}
.y4d{bottom:138.779550px;}
.yf5{bottom:143.025150px;}
.yd1{bottom:143.025300px;}
.ya2{bottom:153.779400px;}
.y4c{bottom:153.779550px;}
.y85{bottom:158.025150px;}
.y132{bottom:158.025300px;}
.y32{bottom:165.293250px;}
.y84{bottom:168.779400px;}
.y4b{bottom:168.779550px;}
.y168{bottom:173.025150px;}
.y14d{bottom:173.025300px;}
.y31{bottom:180.293250px;}
.y292{bottom:183.629550px;}
.yb8{bottom:183.779400px;}
.y4a{bottom:183.779550px;}
.y83{bottom:188.025150px;}
.y100{bottom:188.025300px;}
.y30{bottom:195.293250px;}
.y291{bottom:198.479550px;}
.y82{bottom:198.779400px;}
.y49{bottom:198.779550px;}
.y125{bottom:203.025150px;}
.yd0{bottom:203.025300px;}
.y2f{bottom:210.293250px;}
.y290{bottom:213.329550px;}
.y81{bottom:213.779400px;}
.y48{bottom:213.779550px;}
.y124{bottom:218.025150px;}
.y183{bottom:218.025300px;}
.y2e{bottom:225.293250px;}
.y28f{bottom:228.179550px;}
.y80{bottom:228.779400px;}
.ycf{bottom:228.779550px;}
.y167{bottom:233.025150px;}
.y47{bottom:233.025300px;}
.y2d{bottom:240.293250px;}
.y28e{bottom:243.029550px;}
.y7f{bottom:243.779400px;}
.y46{bottom:243.779550px;}
.y1cb{bottom:244.107900px;}
.y14c{bottom:247.159800px;}
.yb7{bottom:248.025150px;}
.y182{bottom:248.025300px;}
.y2c{bottom:255.293250px;}
.y7e{bottom:258.779400px;}
.y45{bottom:258.779550px;}
.y28d{bottom:262.125300px;}
.y1ca{bottom:262.707900px;}
.y11b{bottom:263.025150px;}
.ye1{bottom:263.025300px;}
.y14b{bottom:265.759800px;}
.y2b{bottom:270.293250px;}
.ya1{bottom:273.779400px;}
.ye0{bottom:273.779550px;}
.y28c{bottom:277.125300px;}
.y7d{bottom:278.025150px;}
.y44{bottom:278.025300px;}
.y1c9{bottom:281.307900px;}
.y14a{bottom:284.359800px;}
.y2a{bottom:285.293250px;}
.y28b{bottom:287.879550px;}
.y7c{bottom:288.779400px;}
.yce{bottom:288.779550px;}
.yf4{bottom:293.025150px;}
.yff{bottom:293.025300px;}
.y1c8{bottom:299.907900px;}
.y29{bottom:300.293250px;}
.y28a{bottom:302.879550px;}
.y149{bottom:302.959800px;}
.y7b{bottom:303.779400px;}
.ycd{bottom:303.779550px;}
.y22a{bottom:306.634350px;}
.yb6{bottom:308.025150px;}
.y10c{bottom:308.025300px;}
.y28{bottom:315.293250px;}
.y195{bottom:317.565300px;}
.y289{bottom:317.879550px;}
.y1c7{bottom:318.507900px;}
.y7a{bottom:318.779400px;}
.ycc{bottom:318.779550px;}
.ya0{bottom:323.025150px;}
.y185{bottom:323.025300px;}
.y229{bottom:325.234350px;}
.y27{bottom:330.293250px;}
.y1f0{bottom:330.663750px;}
.y43{bottom:332.354250px;}
.y148{bottom:333.040200px;}
.y79{bottom:333.779400px;}
.ycb{bottom:333.779550px;}
.y194{bottom:336.165300px;}
.y1e8{bottom:336.323700px;}
.y1c6{bottom:337.107900px;}
.yb5{bottom:338.025150px;}
.yfe{bottom:338.025300px;}
.y228{bottom:343.834350px;}
.y26{bottom:345.293250px;}
.y78{bottom:348.779400px;}
.yca{bottom:348.779550px;}
.y1ef{bottom:349.263750px;}
.y42{bottom:350.954250px;}
.y1ac{bottom:353.025150px;}
.y1e7{bottom:354.923700px;}
.y1c5{bottom:355.707900px;}
.y25{bottom:360.293250px;}
.y227{bottom:362.434350px;}
.y288{bottom:363.469950px;}
.yf3{bottom:363.779400px;}
.yc9{bottom:363.779550px;}
.y193{bottom:366.245700px;}
.y9f{bottom:366.355500px;}
.y1ee{bottom:367.863750px;}
.y77{bottom:368.025150px;}
.y184{bottom:368.025300px;}
.y1d4{bottom:368.463750px;}
.y41{bottom:369.554250px;}
.y147{bottom:373.050000px;}
.y1e6{bottom:373.523550px;}
.y1c4{bottom:374.307900px;}
.y24{bottom:375.293250px;}
.y24d{bottom:377.775600px;}
.y76{bottom:378.779400px;}
.yc8{bottom:378.779550px;}
.y226{bottom:381.034350px;}
.y287{bottom:382.069950px;}
.y24e{bottom:383.025150px;}
.y10b{bottom:383.025300px;}
.y192{bottom:384.245700px;}
.y9e{bottom:384.955500px;}
.y1ed{bottom:386.463750px;}
.y1d3{bottom:387.063750px;}
.y40{bottom:388.154250px;}
.y23{bottom:390.293250px;}
.y146{bottom:391.650000px;}
.y1e5{bottom:392.123550px;}
.y1c3{bottom:392.907900px;}
.y75{bottom:393.779400px;}
.yc7{bottom:393.779550px;}
.y24c{bottom:396.375600px;}
.yb4{bottom:398.025150px;}
.y131{bottom:398.025300px;}
.y286{bottom:400.369950px;}
.y9d{bottom:403.555500px;}
.y225{bottom:403.886250px;}
.y1ec{bottom:405.063750px;}
.y22{bottom:405.293250px;}
.y1d2{bottom:405.663750px;}
.y3f{bottom:406.754250px;}
.y20b{bottom:408.698100px;}
.y74{bottom:408.779400px;}
.yc6{bottom:408.779550px;}
.y145{bottom:410.250000px;}
.y1e4{bottom:410.723700px;}
.y1c2{bottom:411.507900px;}
.y11a{bottom:413.025150px;}
.y107{bottom:413.025300px;}
.y24b{bottom:414.975600px;}
.y285{bottom:418.669950px;}
.y21{bottom:420.293250px;}
.y9c{bottom:422.155500px;}
.y191{bottom:423.505500px;}
.y1eb{bottom:423.663750px;}
.y73{bottom:423.779400px;}
.yc5{bottom:423.779550px;}
.y1d1{bottom:424.263750px;}
.y3e{bottom:425.354250px;}
.y20a{bottom:427.298100px;}
.yf2{bottom:428.025150px;}
.yfd{bottom:428.025300px;}
.y144{bottom:428.850000px;}
.y224{bottom:432.516150px;}
.y24a{bottom:433.575600px;}
.y20{bottom:435.293250px;}
.y284{bottom:436.969950px;}
.y72{bottom:438.779400px;}
.yc4{bottom:438.779550px;}
.y9b{bottom:440.755500px;}
.y1e3{bottom:440.803950px;}
.y1c1{bottom:441.588150px;}
.y190{bottom:442.105500px;}
.y1ea{bottom:442.263750px;}
.y1d0{bottom:442.863750px;}
.yb3{bottom:443.025150px;}
.y181{bottom:443.025300px;}
.y123{bottom:443.048100px;}
.y3d{bottom:443.954250px;}
.y209{bottom:445.898100px;}
.y143{bottom:447.450000px;}
.y1f{bottom:450.293250px;}
.y223{bottom:451.116300px;}
.y249{bottom:452.175600px;}
.y71{bottom:453.779400px;}
.yc3{bottom:453.779550px;}
.y283{bottom:455.269950px;}
.y166{bottom:458.025150px;}
.ydf{bottom:458.025300px;}
.y1e2{bottom:458.803950px;}
.y9a{bottom:459.355500px;}
.y1c0{bottom:459.588150px;}
.y18f{bottom:460.705500px;}
.y122{bottom:461.648100px;}
.y3c{bottom:462.554250px;}
.y208{bottom:464.497950px;}
.y1e{bottom:465.293250px;}
.y142{bottom:466.050000px;}
.y1e9{bottom:468.092100px;}
.y1cf{bottom:468.692100px;}
.yb2{bottom:468.779400px;}
.yde{bottom:468.779550px;}
.y222{bottom:469.566300px;}
.y248{bottom:470.775600px;}
.y130{bottom:473.025150px;}
.yc2{bottom:473.025300px;}
.y282{bottom:473.569950px;}
.y1ab{bottom:475.751550px;}
.y99{bottom:477.955500px;}
.y18e{bottom:479.305500px;}
.y121{bottom:480.247950px;}
.y1d{bottom:480.293250px;}
.y3b{bottom:481.154250px;}
.yf1{bottom:483.779400px;}
.yc1{bottom:483.779550px;}
.y141{bottom:484.650000px;}
.y1ce{bottom:486.692100px;}
.y221{bottom:488.016150px;}
.yb1{bottom:488.025150px;}
.y10a{bottom:488.025300px;}
.y247{bottom:489.375600px;}
.y207{bottom:489.475950px;}
.y281{bottom:491.869950px;}
.y1aa{bottom:494.351550px;}
.y1c{bottom:495.293250px;}
.y98{bottom:496.555500px;}
.y18d{bottom:497.905500px;}
.y1e1{bottom:498.063750px;}
.yf0{bottom:498.779400px;}
.yc0{bottom:498.779550px;}
.y120{bottom:498.848100px;}
.y268{bottom:499.023450px;}
.y3a{bottom:499.754250px;}
.y70{bottom:502.965300px;}
.y119{bottom:503.025150px;}
.y140{bottom:503.250000px;}
.y220{bottom:506.466300px;}
.y206{bottom:507.475950px;}
.y246{bottom:507.975600px;}
.y280{bottom:510.169950px;}
.y1b{bottom:510.293250px;}
.y12f{bottom:513.779400px;}
.ybf{bottom:513.779550px;}
.y18c{bottom:516.505500px;}
.y1e0{bottom:516.663750px;}
.y11f{bottom:517.448100px;}
.y267{bottom:517.623450px;}
.yef{bottom:518.025150px;}
.y106{bottom:518.025300px;}
.y39{bottom:518.354250px;}
.y1a9{bottom:520.179900px;}
.y6f{bottom:521.565300px;}
.y13f{bottom:521.850000px;}
.y21f{bottom:524.916300px;}
.y1a{bottom:525.293250px;}
.y245{bottom:526.575600px;}
.y97{bottom:527.486250px;}
.y27f{bottom:528.469950px;}
.yee{bottom:528.779400px;}
.ybe{bottom:528.779550px;}
.y165{bottom:533.025150px;}
.y180{bottom:533.025300px;}
.y18b{bottom:535.105500px;}
.y1df{bottom:535.263750px;}
.y1bf{bottom:535.863750px;}
.y11e{bottom:536.048100px;}
.y266{bottom:536.223450px;}
.y38{bottom:536.954250px;}
.y1a8{bottom:537.429900px;}
.y6e{bottom:540.165300px;}
.y19{bottom:540.293250px;}
.y13e{bottom:540.450000px;}
.yb0{bottom:541.107900px;}
.y205{bottom:542.483850px;}
.y21e{bottom:543.366300px;}
.y12e{bottom:543.779400px;}
.ybd{bottom:543.779550px;}
.y244{bottom:545.175600px;}
.y27e{bottom:546.769950px;}
.yed{bottom:548.025150px;}
.ydd{bottom:548.025300px;}
.y18a{bottom:553.705500px;}
.y118{bottom:553.855500px;}
.y1de{bottom:553.863750px;}
.y1be{bottom:554.463750px;}
.y11d{bottom:554.648100px;}
.y265{bottom:554.823450px;}
.y18{bottom:555.293250px;}
.y37{bottom:555.554250px;}
.y12d{bottom:558.779400px;}
.ybc{bottom:558.779550px;}
.y13d{bottom:559.050000px;}
.yaf{bottom:559.707900px;}
.y204{bottom:561.083850px;}
.y21d{bottom:561.816300px;}
.ydc{bottom:563.025300px;}
.y27d{bottom:565.069950px;}
.y1a7{bottom:565.309800px;}
.y6d{bottom:570.245700px;}
.y17{bottom:570.293250px;}
.y243{bottom:571.003950px;}
.y96{bottom:571.747950px;}
.y189{bottom:572.305500px;}
.y117{bottom:572.455500px;}
.y1dd{bottom:572.463750px;}
.y1bd{bottom:573.063750px;}
.y11c{bottom:573.247950px;}
.y264{bottom:573.423450px;}
.y12c{bottom:573.779400px;}
.ybb{bottom:573.779550px;}
.y36{bottom:574.154250px;}
.y13c{bottom:577.650000px;}
.y153{bottom:578.025300px;}
.yae{bottom:578.307900px;}
.y293{bottom:578.907900px;}
.y203{bottom:579.683850px;}
.y21c{bottom:580.266150px;}
.y17f{bottom:580.312200px;}
.y27c{bottom:583.369950px;}
.y1a6{bottom:583.909800px;}
.y16{bottom:585.293250px;}
.yfc{bottom:588.779550px;}
.y95{bottom:590.348100px;}
.y188{bottom:590.905500px;}
.y116{bottom:591.055500px;}
.y1dc{bottom:591.063750px;}
.y1bc{bottom:591.663750px;}
.yec{bottom:591.848100px;}
.y263{bottom:592.023450px;}
.y35{bottom:592.754250px;}
.yba{bottom:593.025300px;}
.y13b{bottom:596.250000px;}
.yad{bottom:596.907900px;}
.y164{bottom:597.507900px;}
.y202{bottom:598.283850px;}
.y21b{bottom:598.716300px;}
.y17e{bottom:598.912200px;}
.y15{bottom:600.293250px;}
.y27b{bottom:601.669950px;}
.y1a5{bottom:602.509800px;}
.yfb{bottom:603.779550px;}
.y242{bottom:606.011850px;}
.ydb{bottom:608.025300px;}
.y94{bottom:608.948100px;}
.y6c{bottom:609.505500px;}
.y115{bottom:609.655500px;}
.y1db{bottom:609.663750px;}
.y1bb{bottom:610.263750px;}
.yeb{bottom:610.448100px;}
.y262{bottom:610.623450px;}
.y34{bottom:611.354250px;}
.y13a{bottom:614.850000px;}
.y14{bottom:615.293250px;}
.yac{bottom:615.507900px;}
.y163{bottom:616.107900px;}
.y201{bottom:616.883850px;}
.y21a{bottom:617.166300px;}
.y17d{bottom:617.512200px;}
.yfa{bottom:618.779550px;}
.y1a4{bottom:621.109800px;}
.y109{bottom:623.025300px;}
.y241{bottom:624.611850px;}
.y93{bottom:627.548100px;}
.y6b{bottom:628.105500px;}
.y114{bottom:628.255500px;}
.y1da{bottom:628.263750px;}
.y1ba{bottom:628.863750px;}
.yea{bottom:629.048100px;}
.y261{bottom:629.223450px;}
.y13{bottom:630.293250px;}
.y139{bottom:633.450000px;}
.y105{bottom:633.779550px;}
.y27a{bottom:633.876300px;}
.yab{bottom:634.107900px;}
.y162{bottom:634.707900px;}
.y200{bottom:635.483850px;}
.y219{bottom:635.616150px;}
.y17c{bottom:636.112200px;}
.yf9{bottom:638.025300px;}
.y1a3{bottom:639.709800px;}
.y240{bottom:643.211850px;}
.y33{bottom:645.686550px;}
.y92{bottom:646.148100px;}
.y6a{bottom:646.705500px;}
.y113{bottom:646.855500px;}
.y1d9{bottom:646.863750px;}
.y1b9{bottom:647.463750px;}
.ye9{bottom:647.648100px;}
.y260{bottom:647.823450px;}
.y104{bottom:648.779550px;}
.yda{bottom:649.090200px;}
.y12{bottom:649.545150px;}
.y138{bottom:652.050000px;}
.yaa{bottom:652.707900px;}
.y152{bottom:653.025300px;}
.y161{bottom:653.307900px;}
.y218{bottom:654.066300px;}
.y1ff{bottom:654.083850px;}
.y17b{bottom:654.712200px;}
.y1a2{bottom:658.309800px;}
.y23f{bottom:661.811850px;}
.y103{bottom:663.779550px;}
.y91{bottom:664.747950px;}
.y69{bottom:665.305500px;}
.y112{bottom:665.455500px;}
.y1d8{bottom:665.463750px;}
.y1b8{bottom:666.063750px;}
.ye8{bottom:666.247950px;}
.y25f{bottom:666.423450px;}
.yd9{bottom:667.690200px;}
.y137{bottom:670.650000px;}
.ya9{bottom:671.307900px;}
.y160{bottom:671.907900px;}
.y217{bottom:672.516300px;}
.y1fe{bottom:672.683850px;}
.y17a{bottom:673.312200px;}
.y1a1{bottom:676.909800px;}
.y102{bottom:678.779550px;}
.y23e{bottom:680.411850px;}
.y279{bottom:681.764100px;}
.y1cd{bottom:683.025300px;}
.y90{bottom:683.348100px;}
.y68{bottom:683.905500px;}
.y111{bottom:684.055500px;}
.y1d7{bottom:684.063750px;}
.y1b7{bottom:684.663750px;}
.ye7{bottom:684.848100px;}
.yd8{bottom:686.290200px;}
.y136{bottom:689.250000px;}
.ya8{bottom:689.907900px;}
.y15f{bottom:690.507900px;}
.y216{bottom:690.966300px;}
.y1fd{bottom:691.283850px;}
.y179{bottom:691.912200px;}
.y108{bottom:693.779550px;}
.y25e{bottom:694.377750px;}
.y1a0{bottom:695.509800px;}
.y101{bottom:698.025300px;}
.y23d{bottom:699.011850px;}
.y278{bottom:700.364100px;}
.y67{bottom:702.505500px;}
.y110{bottom:702.655500px;}
.y1d6{bottom:702.663750px;}
.y1b6{bottom:703.263750px;}
.ye6{bottom:703.448100px;}
.yd7{bottom:704.890200px;}
.y135{bottom:707.850000px;}
.ya7{bottom:708.507900px;}
.y22f{bottom:708.779550px;}
.y15e{bottom:709.107900px;}
.y215{bottom:709.416300px;}
.y1fc{bottom:709.883850px;}
.y178{bottom:710.512200px;}
.y150{bottom:713.025300px;}
.y19f{bottom:714.109800px;}
.y23c{bottom:717.611850px;}
.y8f{bottom:717.680400px;}
.y277{bottom:718.664100px;}
.y66{bottom:721.105500px;}
.y10f{bottom:721.255500px;}
.y1b5{bottom:721.863750px;}
.ye5{bottom:722.048100px;}
.yd6{bottom:723.490200px;}
.y22e{bottom:723.779550px;}
.y134{bottom:726.450000px;}
.ya6{bottom:727.107900px;}
.y15d{bottom:727.707900px;}
.y214{bottom:727.866150px;}
.y1fb{bottom:728.483850px;}
.y1d5{bottom:728.492100px;}
.y177{bottom:729.112200px;}
.y25d{bottom:729.385650px;}
.y54{bottom:729.616650px;}
.y19e{bottom:732.709800px;}
.y23b{bottom:736.211850px;}
.y276{bottom:736.964100px;}
.y8e{bottom:737.930400px;}
.y65{bottom:739.705500px;}
.y1b4{bottom:740.463750px;}
.ye4{bottom:740.648100px;}
.yd5{bottom:742.090200px;}
.y22d{bottom:743.025300px;}
.y53{bottom:744.616650px;}
.ya5{bottom:745.707900px;}
.y15c{bottom:746.307900px;}
.y213{bottom:746.316300px;}
.y1fa{bottom:747.083850px;}
.y176{bottom:747.712200px;}
.y25c{bottom:747.985650px;}
.y19d{bottom:751.309800px;}
.y10e{bottom:752.186250px;}
.y22c{bottom:753.779550px;}
.y23a{bottom:754.811850px;}
.y275{bottom:755.264100px;}
.yb9{bottom:757.188150px;}
.y12b{bottom:758.305500px;}
.y1b3{bottom:759.063750px;}
.ye3{bottom:759.247950px;}
.y11{bottom:759.616650px;}
.y133{bottom:760.782300px;}
.y212{bottom:764.766150px;}
.y15b{bottom:764.907900px;}
.y1f9{bottom:765.683850px;}
.y175{bottom:766.312200px;}
.y25b{bottom:766.585650px;}
.y19c{bottom:769.909800px;}
.y64{bottom:770.636100px;}
.yd4{bottom:772.170450px;}
.y22b{bottom:773.025300px;}
.y239{bottom:773.411850px;}
.y274{bottom:773.564100px;}
.y10{bottom:774.616650px;}
.ya4{bottom:775.788150px;}
.y12a{bottom:776.905500px;}
.y1b2{bottom:777.663750px;}
.ye2{bottom:777.848100px;}
.y211{bottom:783.216150px;}
.y15a{bottom:783.507900px;}
.y1f8{bottom:784.283850px;}
.y174{bottom:784.912050px;}
.y25a{bottom:785.185650px;}
.y19b{bottom:788.509800px;}
.y187{bottom:789.236250px;}
.y63{bottom:789.386100px;}
.yf{bottom:789.616650px;}
.yd3{bottom:790.920450px;}
.y273{bottom:791.864100px;}
.y238{bottom:792.011850px;}
.y129{bottom:795.505500px;}
.y1b1{bottom:796.263750px;}
.y8d{bottom:796.447950px;}
.y210{bottom:801.666150px;}
.y159{bottom:802.107900px;}
.y1f7{bottom:802.883850px;}
.y173{bottom:803.512050px;}
.y259{bottom:803.785650px;}
.ye{bottom:804.616650px;}
.y19a{bottom:807.109800px;}
.y186{bottom:807.986250px;}
.y272{bottom:810.164100px;}
.y237{bottom:810.611850px;}
.y1b0{bottom:814.863900px;}
.y8c{bottom:815.048100px;}
.yd{bottom:819.616650px;}
.y20f{bottom:820.116150px;}
.y158{bottom:820.707900px;}
.y1f6{bottom:821.483850px;}
.y172{bottom:822.112050px;}
.y258{bottom:822.385650px;}
.y199{bottom:825.709800px;}
.y128{bottom:826.436250px;}
.yd2{bottom:826.678350px;}
.y271{bottom:828.464100px;}
.y236{bottom:829.211850px;}
.y1af{bottom:833.463750px;}
.y62{bottom:833.648100px;}
.yc{bottom:834.616650px;}
.y20e{bottom:838.566150px;}
.y157{bottom:839.307900px;}
.y1f5{bottom:840.083850px;}
.y171{bottom:840.712050px;}
.y257{bottom:840.985650px;}
.y198{bottom:844.309800px;}
.y127{bottom:845.186250px;}
.y270{bottom:846.764100px;}
.y235{bottom:847.811850px;}
.yb{bottom:849.616650px;}
.y61{bottom:852.247950px;}
.y156{bottom:857.907900px;}
.y1f4{bottom:858.683850px;}
.y1ae{bottom:859.292250px;}
.y170{bottom:859.312200px;}
.y256{bottom:859.585650px;}
.y20d{bottom:861.418050px;}
.ya{bottom:864.616650px;}
.y26f{bottom:865.064100px;}
.y234{bottom:866.411850px;}
.y197{bottom:870.138150px;}
.y60{bottom:870.848100px;}
.y1f3{bottom:877.283850px;}
.y1ad{bottom:877.292250px;}
.y16f{bottom:877.912050px;}
.y255{bottom:878.185650px;}
.y20c{bottom:879.418050px;}
.y9{bottom:879.616650px;}
.y26e{bottom:883.364100px;}
.y233{bottom:885.011850px;}
.y155{bottom:887.988150px;}
.y5f{bottom:889.447950px;}
.y1f2{bottom:895.883850px;}
.y196{bottom:895.892100px;}
.y16e{bottom:896.512050px;}
.y254{bottom:896.785650px;}
.y26d{bottom:901.664100px;}
.y232{bottom:903.611850px;}
.y154{bottom:905.988150px;}
.y5e{bottom:908.048100px;}
.y16d{bottom:915.112050px;}
.y253{bottom:915.385650px;}
.y26c{bottom:919.964100px;}
.y1f1{bottom:923.838300px;}
.y5d{bottom:926.648100px;}
.y231{bottom:929.440200px;}
.y16c{bottom:933.712050px;}
.y252{bottom:933.985650px;}
.y26b{bottom:938.264100px;}
.y5c{bottom:945.247950px;}
.y230{bottom:947.440200px;}
.y16b{bottom:952.312200px;}
.y251{bottom:952.585650px;}
.y55{bottom:956.467950px;}
.y26a{bottom:956.564100px;}
.y5b{bottom:963.848100px;}
.y269{bottom:974.864100px;}
.y250{bottom:980.539950px;}
.y16a{bottom:982.392450px;}
.y5a{bottom:982.447950px;}
.y24f{bottom:999.289950px;}
.y169{bottom:1000.392450px;}
.y59{bottom:1001.048100px;}
.y8{bottom:1012.029450px;}
.y7{bottom:1034.529450px;}
.y6{bottom:1057.029450px;}
.y1{bottom:1072.250850px;}
.y5{bottom:1088.033400px;}
.y4{bottom:1116.533400px;}
.y58{bottom:1171.350000px;}
.y3{bottom:1171.351350px;}
.y57{bottom:1195.628700px;}
.y2{bottom:1195.630050px;}
.hb{height:25.550203px;}
.he{height:28.556109px;}
.h11{height:30.554109px;}
.h8{height:35.280000px;}
.h6{height:36.624000px;}
.h7{height:37.485000px;}
.h3{height:39.690000px;}
.hc{height:42.533203px;}
.h12{height:44.100000px;}
.h13{height:45.780000px;}
.h2{height:46.305000px;}
.h10{height:47.537109px;}
.hf{height:50.715000px;}
.hd{height:51.264000px;}
.ha{height:52.541016px;}
.h9{height:52.920000px;}
.h5{height:57.330000px;}
.h4{height:74.970000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:19.650750px;}
.x6{left:64.004850px;}
.x5{left:68.256900px;}
.x7{left:81.012750px;}
.xe{left:85.264800px;}
.x8{left:98.020650px;}
.x12{left:102.047250px;}
.x9{left:115.028550px;}
.x4{left:234.308550px;}
.xd{left:236.151600px;}
.x2{left:253.506750px;}
.x10{left:362.738550px;}
.x3{left:400.712850px;}
.xa{left:467.941950px;}
.xc{left:472.193850px;}
.xb{left:489.201750px;}
.x11{left:505.984200px;}
.x1{left:846.141750px;}
@media print{
.v4{vertical-align:-18.648000pt;}
.v3{vertical-align:-16.872000pt;}
.v2{vertical-align:-15.096000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.648000pt;}
.ls125{letter-spacing:-5.376000pt;}
.ls1b{letter-spacing:-4.170667pt;}
.ls124{letter-spacing:-3.640000pt;}
.ls8{letter-spacing:-3.584000pt;}
.ls115{letter-spacing:-2.130667pt;}
.ls5a{letter-spacing:-1.677333pt;}
.lsed{letter-spacing:-1.269333pt;}
.ls2b{letter-spacing:-1.207976pt;}
.ls2c{letter-spacing:-1.133333pt;}
.ls2d{letter-spacing:-0.977885pt;}
.ls5b{letter-spacing:-0.816000pt;}
.lscc{letter-spacing:-0.634667pt;}
.lsde{letter-spacing:-0.560000pt;}
.ls42{letter-spacing:-0.453333pt;}
.lsdf{letter-spacing:-0.326480pt;}
.lsf8{letter-spacing:-0.280000pt;}
.ls41{letter-spacing:-0.264293pt;}
.lse1{letter-spacing:-0.226667pt;}
.ls9{letter-spacing:-0.213333pt;}
.lsf9{letter-spacing:-0.163240pt;}
.ls118{letter-spacing:-0.132147pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000267pt;}
.lsa{letter-spacing:0.000533pt;}
.lsd{letter-spacing:0.007467pt;}
.lsb{letter-spacing:0.008000pt;}
.lsf{letter-spacing:0.008533pt;}
.ls9a{letter-spacing:0.009067pt;}
.ls72{letter-spacing:0.009600pt;}
.ls0{letter-spacing:0.085333pt;}
.ls19{letter-spacing:0.089067pt;}
.lsca{letter-spacing:0.113600pt;}
.lsbe{letter-spacing:0.149867pt;}
.lsc0{letter-spacing:0.203200pt;}
.lsbf{letter-spacing:0.203733pt;}
.lscb{letter-spacing:0.226667pt;}
.ls8b{letter-spacing:0.239467pt;}
.ls10a{letter-spacing:0.241600pt;}
.lse7{letter-spacing:0.255467pt;}
.ls4d{letter-spacing:0.260800pt;}
.ls4c{letter-spacing:0.261333pt;}
.lseb{letter-spacing:0.436267pt;}
.ls82{letter-spacing:0.456533pt;}
.ls39{letter-spacing:0.463467pt;}
.lse5{letter-spacing:0.508267pt;}
.ls15{letter-spacing:0.531733pt;}
.lsb6{letter-spacing:0.539733pt;}
.ls4b{letter-spacing:0.580267pt;}
.ls3b{letter-spacing:0.600000pt;}
.ls47{letter-spacing:0.610133pt;}
.ls2{letter-spacing:0.639467pt;}
.ls3{letter-spacing:0.640640pt;}
.ls107{letter-spacing:0.656000pt;}
.ls104{letter-spacing:0.670933pt;}
.lsae{letter-spacing:0.700267pt;}
.lsdb{letter-spacing:0.733333pt;}
.lsb3{letter-spacing:0.737600pt;}
.lsd8{letter-spacing:0.890133pt;}
.lsd7{letter-spacing:0.890667pt;}
.lsa9{letter-spacing:0.943467pt;}
.lsa8{letter-spacing:0.950933pt;}
.lsa7{letter-spacing:0.951467pt;}
.ls10b{letter-spacing:0.962133pt;}
.ls10c{letter-spacing:0.962667pt;}
.lsdc{letter-spacing:1.078933pt;}
.ls4e{letter-spacing:1.132267pt;}
.ls52{letter-spacing:1.179733pt;}
.ls35{letter-spacing:1.206933pt;}
.ls53{letter-spacing:1.283733pt;}
.ls61{letter-spacing:1.318400pt;}
.ls62{letter-spacing:1.318933pt;}
.ls119{letter-spacing:1.373867pt;}
.ls111{letter-spacing:1.408533pt;}
.ls110{letter-spacing:1.409067pt;}
.ls11d{letter-spacing:1.454400pt;}
.ls11c{letter-spacing:1.454933pt;}
.ls3e{letter-spacing:1.479467pt;}
.lsb7{letter-spacing:1.480000pt;}
.ls96{letter-spacing:1.513600pt;}
.lsfc{letter-spacing:1.520533pt;}
.lsfd{letter-spacing:1.521067pt;}
.ls26{letter-spacing:1.583467pt;}
.ls4f{letter-spacing:1.584000pt;}
.ls27{letter-spacing:1.585067pt;}
.ls103{letter-spacing:1.605333pt;}
.lsc7{letter-spacing:1.646933pt;}
.lse8{letter-spacing:1.661867pt;}
.ls18{letter-spacing:1.678933pt;}
.ls8c{letter-spacing:1.716267pt;}
.ls76{letter-spacing:1.728000pt;}
.ls1e{letter-spacing:1.771200pt;}
.ls11e{letter-spacing:1.786133pt;}
.ls10d{letter-spacing:1.818667pt;}
.ls10e{letter-spacing:1.861867pt;}
.ls9b{letter-spacing:1.908267pt;}
.ls4a{letter-spacing:1.960000pt;}
.lsff{letter-spacing:1.972267pt;}
.ls5d{letter-spacing:1.985600pt;}
.lse9{letter-spacing:1.998400pt;}
.ls7d{letter-spacing:2.018667pt;}
.ls56{letter-spacing:2.027733pt;}
.lsd3{letter-spacing:2.068800pt;}
.lsd2{letter-spacing:2.069333pt;}
.lse0{letter-spacing:2.085333pt;}
.ls75{letter-spacing:2.090133pt;}
.lsa0{letter-spacing:2.151467pt;}
.ls54{letter-spacing:2.164800pt;}
.lsb8{letter-spacing:2.237333pt;}
.ls8e{letter-spacing:2.250133pt;}
.ls7c{letter-spacing:2.282133pt;}
.ls66{letter-spacing:2.441067pt;}
.ls65{letter-spacing:2.441600pt;}
.ls7b{letter-spacing:2.509333pt;}
.ls10f{letter-spacing:2.566933pt;}
.lsb5{letter-spacing:2.606933pt;}
.ls8a{letter-spacing:2.621867pt;}
.lsf5{letter-spacing:2.724800pt;}
.ls59{letter-spacing:2.744000pt;}
.ls58{letter-spacing:2.744533pt;}
.ls25{letter-spacing:2.754133pt;}
.ls24{letter-spacing:2.754667pt;}
.ls77{letter-spacing:2.992533pt;}
.ls91{letter-spacing:2.994667pt;}
.ls92{letter-spacing:2.995200pt;}
.ls93{letter-spacing:2.995733pt;}
.ls81{letter-spacing:3.028800pt;}
.ls5c{letter-spacing:3.039467pt;}
.lsc3{letter-spacing:3.134933pt;}
.lsc2{letter-spacing:3.135467pt;}
.ls37{letter-spacing:3.378667pt;}
.lsc{letter-spacing:3.411200pt;}
.lsd1{letter-spacing:3.449067pt;}
.ls21{letter-spacing:3.517867pt;}
.ls95{letter-spacing:3.542400pt;}
.ls94{letter-spacing:3.542933pt;}
.ls121{letter-spacing:3.573333pt;}
.ls70{letter-spacing:3.714667pt;}
.ls50{letter-spacing:3.725333pt;}
.ls102{letter-spacing:3.763200pt;}
.ls101{letter-spacing:3.763733pt;}
.lsbd{letter-spacing:3.788267pt;}
.lsb0{letter-spacing:3.796267pt;}
.lsb2{letter-spacing:3.854400pt;}
.ls120{letter-spacing:3.866667pt;}
.ls67{letter-spacing:3.873067pt;}
.ls68{letter-spacing:3.873600pt;}
.ls84{letter-spacing:3.887467pt;}
.ls85{letter-spacing:3.888000pt;}
.lsbc{letter-spacing:4.084800pt;}
.ls6d{letter-spacing:4.097600pt;}
.ls36{letter-spacing:4.104533pt;}
.ls1f{letter-spacing:4.154133pt;}
.lsce{letter-spacing:4.188800pt;}
.ls43{letter-spacing:4.283200pt;}
.ls5{letter-spacing:4.336533pt;}
.ls12{letter-spacing:4.338133pt;}
.ls2f{letter-spacing:4.340800pt;}
.ls28{letter-spacing:4.351467pt;}
.ls29{letter-spacing:4.352000pt;}
.lsf0{letter-spacing:4.355200pt;}
.ls11f{letter-spacing:4.373867pt;}
.ls87{letter-spacing:4.412267pt;}
.lsa5{letter-spacing:4.456533pt;}
.ls9c{letter-spacing:4.673067pt;}
.ls30{letter-spacing:4.676800pt;}
.ls80{letter-spacing:4.698667pt;}
.lsfe{letter-spacing:4.803200pt;}
.ls23{letter-spacing:4.814933pt;}
.lscf{letter-spacing:4.944533pt;}
.ls17{letter-spacing:4.985067pt;}
.ls2a{letter-spacing:5.024533pt;}
.ls11{letter-spacing:5.041600pt;}
.lse3{letter-spacing:5.065600pt;}
.lse2{letter-spacing:5.066133pt;}
.lsec{letter-spacing:5.077333pt;}
.ls44{letter-spacing:5.090667pt;}
.lsaf{letter-spacing:5.124800pt;}
.ls9e{letter-spacing:5.141333pt;}
.ls9f{letter-spacing:5.141867pt;}
.ls3f{letter-spacing:5.172800pt;}
.lsd5{letter-spacing:5.216000pt;}
.lsd4{letter-spacing:5.216533pt;}
.ls5f{letter-spacing:5.238933pt;}
.ls5e{letter-spacing:5.239467pt;}
.ls71{letter-spacing:5.258667pt;}
.lsef{letter-spacing:5.300800pt;}
.ls114{letter-spacing:5.339733pt;}
.ls79{letter-spacing:5.412800pt;}
.ls9d{letter-spacing:5.521067pt;}
.ls6e{letter-spacing:5.570133pt;}
.lsda{letter-spacing:5.584000pt;}
.ls11b{letter-spacing:5.615467pt;}
.ls20{letter-spacing:5.639467pt;}
.ls108{letter-spacing:5.675200pt;}
.ls109{letter-spacing:5.675733pt;}
.lse6{letter-spacing:5.688000pt;}
.ls89{letter-spacing:5.689067pt;}
.ls86{letter-spacing:5.752533pt;}
.ls8d{letter-spacing:5.757333pt;}
.ls88{letter-spacing:5.899733pt;}
.lsdd{letter-spacing:5.926933pt;}
.lsa1{letter-spacing:5.934400pt;}
.lsd6{letter-spacing:5.999467pt;}
.lsba{letter-spacing:6.110933pt;}
.lsb9{letter-spacing:6.111467pt;}
.ls55{letter-spacing:6.132800pt;}
.ls3a{letter-spacing:6.169600pt;}
.lsc9{letter-spacing:6.238400pt;}
.lsc8{letter-spacing:6.238933pt;}
.lscd{letter-spacing:6.256000pt;}
.ls74{letter-spacing:6.265600pt;}
.lsa6{letter-spacing:6.345600pt;}
.ls7{letter-spacing:6.440000pt;}
.ls122{letter-spacing:6.504000pt;}
.ls1d{letter-spacing:6.506133pt;}
.ls105{letter-spacing:6.592000pt;}
.ls106{letter-spacing:6.592533pt;}
.ls49{letter-spacing:6.630400pt;}
.ls6f{letter-spacing:6.718933pt;}
.ls63{letter-spacing:6.888533pt;}
.ls64{letter-spacing:6.889600pt;}
.ls99{letter-spacing:6.980267pt;}
.ls14{letter-spacing:7.062400pt;}
.lsaa{letter-spacing:7.198933pt;}
.lsb4{letter-spacing:7.204267pt;}
.lsc5{letter-spacing:7.204800pt;}
.lsc4{letter-spacing:7.205333pt;}
.lsc1{letter-spacing:7.240533pt;}
.ls3c{letter-spacing:7.251733pt;}
.ls3d{letter-spacing:7.252267pt;}
.ls73{letter-spacing:7.255467pt;}
.lsea{letter-spacing:7.474667pt;}
.ls7a{letter-spacing:7.963200pt;}
.ls38{letter-spacing:8.014400pt;}
.lse{letter-spacing:8.419200pt;}
.ls112{letter-spacing:8.641067pt;}
.ls113{letter-spacing:8.641600pt;}
.ls83{letter-spacing:8.805867pt;}
.lsd9{letter-spacing:8.871467pt;}
.lsf3{letter-spacing:8.941867pt;}
.lsf2{letter-spacing:8.942400pt;}
.lsee{letter-spacing:8.970667pt;}
.ls16{letter-spacing:9.091200pt;}
.lsf1{letter-spacing:9.231467pt;}
.ls7f{letter-spacing:9.386667pt;}
.ls6c{letter-spacing:9.436800pt;}
.ls6b{letter-spacing:9.437333pt;}
.lsd0{letter-spacing:9.796800pt;}
.lsf4{letter-spacing:9.947733pt;}
.lsa3{letter-spacing:10.176533pt;}
.lsa2{letter-spacing:10.177067pt;}
.ls100{letter-spacing:10.353600pt;}
.ls31{letter-spacing:10.464000pt;}
.ls7e{letter-spacing:10.586133pt;}
.ls60{letter-spacing:10.617067pt;}
.ls69{letter-spacing:10.781333pt;}
.ls6a{letter-spacing:10.781867pt;}
.ls11a{letter-spacing:11.028800pt;}
.lsb1{letter-spacing:11.076267pt;}
.ls13{letter-spacing:11.445333pt;}
.ls57{letter-spacing:11.766933pt;}
.ls32{letter-spacing:11.925867pt;}
.lsc6{letter-spacing:12.062933pt;}
.ls78{letter-spacing:12.229333pt;}
.lsab{letter-spacing:12.514667pt;}
.lsf7{letter-spacing:12.688000pt;}
.lsf6{letter-spacing:12.688533pt;}
.lsfa{letter-spacing:12.693333pt;}
.lsfb{letter-spacing:13.095467pt;}
.ls48{letter-spacing:13.287467pt;}
.lse4{letter-spacing:13.833067pt;}
.ls1a{letter-spacing:14.000000pt;}
.ls51{letter-spacing:14.069867pt;}
.ls45{letter-spacing:14.115200pt;}
.ls46{letter-spacing:14.115733pt;}
.ls10{letter-spacing:15.008000pt;}
.ls34{letter-spacing:16.725333pt;}
.ls33{letter-spacing:16.725867pt;}
.lsbb{letter-spacing:16.884267pt;}
.ls117{letter-spacing:17.949867pt;}
.ls123{letter-spacing:20.832000pt;}
.lsad{letter-spacing:22.250133pt;}
.lsac{letter-spacing:22.250667pt;}
.lsa4{letter-spacing:29.338800pt;}
.ls90{letter-spacing:29.339333pt;}
.ls116{letter-spacing:29.735600pt;}
.ls97{letter-spacing:30.320133pt;}
.ls98{letter-spacing:31.300933pt;}
.ls8f{letter-spacing:34.105067pt;}
.ls1c{letter-spacing:42.553733pt;}
.ls40{letter-spacing:42.554267pt;}
.ls2e{letter-spacing:43.082267pt;}
.ls22{letter-spacing:43.534533pt;}
.ls4{letter-spacing:68.206267pt;}
.ws47{word-spacing:-17.602667pt;}
.wsd5{word-spacing:-16.072000pt;}
.ws25{word-spacing:-14.000000pt;}
.wsdf{word-spacing:-13.720000pt;}
.ws1{word-spacing:-13.498240pt;}
.ws2{word-spacing:-12.857600pt;}
.wsf0{word-spacing:-12.693333pt;}
.ws3{word-spacing:-12.666667pt;}
.ws10c{word-spacing:-12.432000pt;}
.ws26{word-spacing:-11.333333pt;}
.wsc0{word-spacing:-11.106667pt;}
.wsf2{word-spacing:-10.880000pt;}
.ws58{word-spacing:-10.517333pt;}
.ws72{word-spacing:-9.800000pt;}
.ws57{word-spacing:-9.656000pt;}
.wsf3{word-spacing:-9.202667pt;}
.ws4{word-spacing:-8.866667pt;}
.ws0{word-spacing:-8.162000pt;}
.wse0{word-spacing:-7.998760pt;}
.wsbf{word-spacing:-7.835520pt;}
.ws36{word-spacing:-6.954024pt;}
.ws35{word-spacing:-6.607333pt;}
.wsfe{word-spacing:-6.475187pt;}
.ws48{word-spacing:-6.343040pt;}
.wsbd{word-spacing:-6.256000pt;}
.ws99{word-spacing:-5.757333pt;}
.ws37{word-spacing:-5.629448pt;}
.ws67{word-spacing:-5.258667pt;}
.wsce{word-spacing:-5.077333pt;}
.ws31{word-spacing:-2.688000pt;}
.ws3c{word-spacing:-2.576000pt;}
.ws8a{word-spacing:-2.520000pt;}
.ws83{word-spacing:-2.464000pt;}
.wsee{word-spacing:-2.408000pt;}
.ws5e{word-spacing:-2.240000pt;}
.wsc{word-spacing:-2.218667pt;}
.wsd6{word-spacing:-2.184000pt;}
.wsb8{word-spacing:-2.128000pt;}
.wsc7{word-spacing:-2.085333pt;}
.ws96{word-spacing:-2.040000pt;}
.ws6b{word-spacing:-1.949333pt;}
.ws61{word-spacing:-1.904000pt;}
.ws2f{word-spacing:-1.856000pt;}
.ws101{word-spacing:-1.792000pt;}
.ws2a{word-spacing:-1.778667pt;}
.wsd4{word-spacing:-1.722667pt;}
.ws2e{word-spacing:-1.680000pt;}
.ws2b{word-spacing:-1.624000pt;}
.wsf1{word-spacing:-1.586667pt;}
.wsb3{word-spacing:-1.546667pt;}
.wsb4{word-spacing:-1.493333pt;}
.ws50{word-spacing:-1.450667pt;}
.ws18{word-spacing:-1.400000pt;}
.ws51{word-spacing:-1.232000pt;}
.wse{word-spacing:-1.194667pt;}
.ws5d{word-spacing:-1.178667pt;}
.ws54{word-spacing:-1.176000pt;}
.ws19{word-spacing:-1.133333pt;}
.ws68{word-spacing:-1.088000pt;}
.wsf8{word-spacing:-1.064000pt;}
.ws5a{word-spacing:-0.952000pt;}
.wsd{word-spacing:-0.896000pt;}
.ws109{word-spacing:-0.784000pt;}
.ws6a{word-spacing:-0.770667pt;}
.ws5c{word-spacing:-0.680000pt;}
.ws8{word-spacing:-0.640000pt;}
.ws41{word-spacing:-0.616000pt;}
.wsae{word-spacing:-0.589333pt;}
.ws17{word-spacing:-0.560000pt;}
.wsb{word-spacing:-0.469333pt;}
.ws55{word-spacing:-0.408000pt;}
.ws84{word-spacing:-0.392000pt;}
.ws7{word-spacing:-0.384000pt;}
.ws7f{word-spacing:-0.317333pt;}
.wsc4{word-spacing:-0.280000pt;}
.wsbe{word-spacing:-0.272000pt;}
.wsb7{word-spacing:-0.226667pt;}
.wse2{word-spacing:-0.224000pt;}
.ws3d{word-spacing:-0.112000pt;}
.ws5{word-spacing:0.000000pt;}
.ws76{word-spacing:0.112000pt;}
.ws15{word-spacing:0.224000pt;}
.wsc8{word-spacing:0.226667pt;}
.wsec{word-spacing:0.280000pt;}
.ws1b{word-spacing:0.317333pt;}
.ws4c{word-spacing:0.453333pt;}
.wsa5{word-spacing:0.544000pt;}
.wsc6{word-spacing:0.560000pt;}
.ws8e{word-spacing:0.589333pt;}
.wsbb{word-spacing:0.634667pt;}
.ws3b{word-spacing:0.672000pt;}
.ws9e{word-spacing:0.680000pt;}
.wsa9{word-spacing:0.728000pt;}
.wsd9{word-spacing:0.784000pt;}
.ws1a{word-spacing:0.816000pt;}
.ws39{word-spacing:0.840000pt;}
.ws63{word-spacing:0.861333pt;}
.wsa4{word-spacing:0.952000pt;}
.ws52{word-spacing:1.008000pt;}
.ws108{word-spacing:1.064000pt;}
.ws29{word-spacing:1.120000pt;}
.ws45{word-spacing:1.133333pt;}
.ws82{word-spacing:1.176000pt;}
.ws92{word-spacing:1.224000pt;}
.ws64{word-spacing:1.269333pt;}
.ws1f{word-spacing:1.322667pt;}
.ws56{word-spacing:1.496000pt;}
.wsd7{word-spacing:1.512000pt;}
.ws24{word-spacing:1.621333pt;}
.ws95{word-spacing:1.624000pt;}
.ws9f{word-spacing:1.722667pt;}
.ws86{word-spacing:1.736000pt;}
.ws33{word-spacing:1.813333pt;}
.ws11{word-spacing:1.848000pt;}
.ws60{word-spacing:1.949333pt;}
.ws7e{word-spacing:1.960000pt;}
.ws20{word-spacing:1.962667pt;}
.wsd3{word-spacing:1.994667pt;}
.ws7b{word-spacing:2.016000pt;}
.ws89{word-spacing:2.040000pt;}
.wsb9{word-spacing:2.072000pt;}
.wsfa{word-spacing:2.130667pt;}
.wsba{word-spacing:2.240000pt;}
.ws1d{word-spacing:2.261333pt;}
.wsfb{word-spacing:2.266667pt;}
.ws7c{word-spacing:2.296000pt;}
.ws93{word-spacing:2.312000pt;}
.ws70{word-spacing:2.448000pt;}
.ws59{word-spacing:2.464000pt;}
.ws9{word-spacing:2.474667pt;}
.ws22{word-spacing:2.560000pt;}
.wsd8{word-spacing:2.576000pt;}
.ws4f{word-spacing:2.584000pt;}
.wsad{word-spacing:2.629333pt;}
.ws106{word-spacing:2.632000pt;}
.wsf9{word-spacing:2.688000pt;}
.ws16{word-spacing:2.912000pt;}
.wse9{word-spacing:2.968000pt;}
.ws8c{word-spacing:3.080000pt;}
.ws62{word-spacing:3.128000pt;}
.wsa{word-spacing:3.157333pt;}
.wsb2{word-spacing:3.192000pt;}
.ws103{word-spacing:3.304000pt;}
.wsa6{word-spacing:3.309333pt;}
.ws13{word-spacing:3.360000pt;}
.ws4e{word-spacing:3.400000pt;}
.ws94{word-spacing:3.416000pt;}
.ws105{word-spacing:3.528000pt;}
.ws9d{word-spacing:3.536000pt;}
.wsf{word-spacing:3.584000pt;}
.ws6{word-spacing:3.712000pt;}
.wsa1{word-spacing:3.752000pt;}
.ws23{word-spacing:4.053333pt;}
.wse1{word-spacing:4.144000pt;}
.ws43{word-spacing:4.170667pt;}
.ws91{word-spacing:4.312000pt;}
.wsdd{word-spacing:4.352000pt;}
.ws30{word-spacing:4.368000pt;}
.ws69{word-spacing:4.533333pt;}
.ws14{word-spacing:4.536000pt;}
.wsa2{word-spacing:4.592000pt;}
.ws12{word-spacing:4.648000pt;}
.ws4d{word-spacing:4.669333pt;}
.ws90{word-spacing:4.714667pt;}
.ws80{word-spacing:4.760000pt;}
.ws46{word-spacing:4.805333pt;}
.ws38{word-spacing:4.816000pt;}
.ws98{word-spacing:4.850667pt;}
.ws53{word-spacing:4.928000pt;}
.wsc5{word-spacing:4.941333pt;}
.ws42{word-spacing:4.984000pt;}
.ws1c{word-spacing:4.986667pt;}
.ws1e{word-spacing:5.034667pt;}
.wse7{word-spacing:5.152000pt;}
.ws88{word-spacing:5.168000pt;}
.ws10{word-spacing:5.208000pt;}
.ws4b{word-spacing:5.264000pt;}
.wsff{word-spacing:5.376000pt;}
.ws6c{word-spacing:5.485333pt;}
.wsed{word-spacing:5.488000pt;}
.ws10b{word-spacing:5.544000pt;}
.ws44{word-spacing:5.621333pt;}
.wscf{word-spacing:5.712000pt;}
.wsb1{word-spacing:5.824000pt;}
.ws10a{word-spacing:5.880000pt;}
.ws102{word-spacing:5.992000pt;}
.ws8b{word-spacing:6.048000pt;}
.wsc3{word-spacing:6.104000pt;}
.ws65{word-spacing:6.120000pt;}
.ws79{word-spacing:6.272000pt;}
.ws6f{word-spacing:6.328000pt;}
.ws21{word-spacing:6.357333pt;}
.ws66{word-spacing:6.496000pt;}
.ws111{word-spacing:6.528000pt;}
.ws9c{word-spacing:6.552000pt;}
.wsf6{word-spacing:6.608000pt;}
.wsf7{word-spacing:6.664000pt;}
.ws107{word-spacing:6.720000pt;}
.wsea{word-spacing:6.776000pt;}
.ws2d{word-spacing:6.832000pt;}
.ws6e{word-spacing:6.888000pt;}
.ws10e{word-spacing:7.056000pt;}
.wsb6{word-spacing:7.168000pt;}
.wsac{word-spacing:7.208000pt;}
.wscc{word-spacing:7.224000pt;}
.wsaf{word-spacing:7.280000pt;}
.ws9b{word-spacing:7.336000pt;}
.ws49{word-spacing:7.448000pt;}
.ws77{word-spacing:7.616000pt;}
.ws75{word-spacing:7.672000pt;}
.wse8{word-spacing:7.840000pt;}
.wsa0{word-spacing:7.842667pt;}
.ws6d{word-spacing:7.896000pt;}
.ws5b{word-spacing:8.120000pt;}
.wsb5{word-spacing:8.568000pt;}
.ws7a{word-spacing:8.624000pt;}
.ws5f{word-spacing:8.736000pt;}
.wsc2{word-spacing:8.792000pt;}
.ws97{word-spacing:8.794667pt;}
.wsfc{word-spacing:8.960000pt;}
.wscd{word-spacing:9.016000pt;}
.ws3f{word-spacing:9.184000pt;}
.wsde{word-spacing:9.248000pt;}
.wse5{word-spacing:9.296000pt;}
.ws8f{word-spacing:9.384000pt;}
.ws10f{word-spacing:9.408000pt;}
.wsf5{word-spacing:9.464000pt;}
.ws113{word-spacing:9.576000pt;}
.wsf4{word-spacing:9.744000pt;}
.wsa7{word-spacing:9.856000pt;}
.ws10d{word-spacing:9.968000pt;}
.wsab{word-spacing:10.245333pt;}
.wsfd{word-spacing:10.336000pt;}
.wsa8{word-spacing:10.360000pt;}
.wsdc{word-spacing:10.472000pt;}
.ws3e{word-spacing:10.696000pt;}
.wsc1{word-spacing:10.752000pt;}
.ws71{word-spacing:10.789333pt;}
.wsd1{word-spacing:10.864000pt;}
.ws40{word-spacing:11.032000pt;}
.ws100{word-spacing:11.144000pt;}
.wsa3{word-spacing:11.312000pt;}
.ws73{word-spacing:11.424000pt;}
.ws32{word-spacing:11.469333pt;}
.wsd0{word-spacing:11.480000pt;}
.ws7d{word-spacing:11.536000pt;}
.ws2c{word-spacing:11.984000pt;}
.wsbc{word-spacing:12.058667pt;}
.ws3a{word-spacing:12.264000pt;}
.ws34{word-spacing:12.466667pt;}
.ws87{word-spacing:12.544000pt;}
.wsca{word-spacing:12.880000pt;}
.ws27{word-spacing:13.328000pt;}
.ws104{word-spacing:13.496000pt;}
.wse4{word-spacing:13.552000pt;}
.wsd2{word-spacing:13.608000pt;}
.ws78{word-spacing:14.224000pt;}
.ws8d{word-spacing:14.280000pt;}
.ws28{word-spacing:14.336000pt;}
.wse3{word-spacing:14.728000pt;}
.wsda{word-spacing:15.120000pt;}
.ws110{word-spacing:15.344000pt;}
.wsef{word-spacing:15.568000pt;}
.ws85{word-spacing:15.624000pt;}
.ws81{word-spacing:15.848000pt;}
.ws112{word-spacing:16.072000pt;}
.wsc9{word-spacing:16.576000pt;}
.wse6{word-spacing:16.632000pt;}
.wsb0{word-spacing:16.688000pt;}
.wscb{word-spacing:17.080000pt;}
.ws4a{word-spacing:17.248000pt;}
.ws9a{word-spacing:20.328000pt;}
.wsaa{word-spacing:20.440000pt;}
.ws74{word-spacing:21.448000pt;}
.wseb{word-spacing:22.512000pt;}
.wsdb{word-spacing:37.184000pt;}
._2a{margin-left:-11.993600pt;}
._1f{margin-left:-11.001333pt;}
._11{margin-left:-7.028000pt;}
._b{margin-left:-5.508533pt;}
._0{margin-left:-3.820267pt;}
._10{margin-left:-2.899733pt;}
._1{margin-left:-1.821867pt;}
._14{margin-left:-0.904533pt;}
._f{width:1.151467pt;}
._5{width:2.061867pt;}
._7{width:3.194133pt;}
._8{width:4.579200pt;}
._d{width:5.852000pt;}
._6{width:6.797867pt;}
._c{width:8.316000pt;}
._4{width:9.869867pt;}
._15{width:10.802933pt;}
._12{width:12.000800pt;}
._3{width:13.368533pt;}
._9{width:14.654400pt;}
._17{width:15.701067pt;}
._1c{width:17.214400pt;}
._1e{width:18.765600pt;}
._1d{width:20.490667pt;}
._20{width:21.550400pt;}
._19{width:22.975200pt;}
._2{width:24.675200pt;}
._29{width:25.656000pt;}
._26{width:26.646800pt;}
._25{width:29.339600pt;}
._21{width:33.093867pt;}
._22{width:36.663200pt;}
._28{width:37.620800pt;}
._1b{width:40.382933pt;}
._1a{width:42.553733pt;}
._2b{width:54.673600pt;}
._e{width:55.768933pt;}
._18{width:60.030933pt;}
._13{width:62.462933pt;}
._2d{width:63.451733pt;}
._16{width:71.774933pt;}
._2c{width:72.894933pt;}
._27{width:76.756267pt;}
._a{width:79.678933pt;}
._24{width:82.409600pt;}
._23{width:94.409600pt;}
.fs8{font-size:26.429333pt;}
.fsa{font-size:29.538667pt;}
.fs7{font-size:32.648000pt;}
.fsc{font-size:35.466667pt;}
.fse{font-size:39.200000pt;}
.fs4{font-size:42.666667pt;}
.fs9{font-size:44.800000pt;}
.fs5{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fsf{font-size:53.333333pt;}
.fs0{font-size:56.000000pt;}
.fsd{font-size:61.333333pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:56.692800pt;}
.y52{bottom:56.692933pt;}
.yf8{bottom:60.466800pt;}
.y14f{bottom:60.466933pt;}
.y8a{bottom:70.026133pt;}
.y51{bottom:70.026267pt;}
.y126{bottom:73.800133pt;}
.y10d{bottom:73.800267pt;}
.y56{bottom:74.244267pt;}
.y89{bottom:83.359467pt;}
.y50{bottom:83.359600pt;}
.yf7{bottom:87.133467pt;}
.y14e{bottom:87.133600pt;}
.ya3{bottom:96.692800pt;}
.y4f{bottom:96.692933pt;}
.y88{bottom:100.466800pt;}
.y151{bottom:100.466933pt;}
.y87{bottom:110.026133pt;}
.y4e{bottom:110.026267pt;}
.yf6{bottom:113.800133pt;}
.y1cc{bottom:113.800267pt;}
.y86{bottom:123.359467pt;}
.y4d{bottom:123.359600pt;}
.yf5{bottom:127.133467pt;}
.yd1{bottom:127.133600pt;}
.ya2{bottom:136.692800pt;}
.y4c{bottom:136.692933pt;}
.y85{bottom:140.466800pt;}
.y132{bottom:140.466933pt;}
.y32{bottom:146.927333pt;}
.y84{bottom:150.026133pt;}
.y4b{bottom:150.026267pt;}
.y168{bottom:153.800133pt;}
.y14d{bottom:153.800267pt;}
.y31{bottom:160.260667pt;}
.y292{bottom:163.226267pt;}
.yb8{bottom:163.359467pt;}
.y4a{bottom:163.359600pt;}
.y83{bottom:167.133467pt;}
.y100{bottom:167.133600pt;}
.y30{bottom:173.594000pt;}
.y291{bottom:176.426267pt;}
.y82{bottom:176.692800pt;}
.y49{bottom:176.692933pt;}
.y125{bottom:180.466800pt;}
.yd0{bottom:180.466933pt;}
.y2f{bottom:186.927333pt;}
.y290{bottom:189.626267pt;}
.y81{bottom:190.026133pt;}
.y48{bottom:190.026267pt;}
.y124{bottom:193.800133pt;}
.y183{bottom:193.800267pt;}
.y2e{bottom:200.260667pt;}
.y28f{bottom:202.826267pt;}
.y80{bottom:203.359467pt;}
.ycf{bottom:203.359600pt;}
.y167{bottom:207.133467pt;}
.y47{bottom:207.133600pt;}
.y2d{bottom:213.594000pt;}
.y28e{bottom:216.026267pt;}
.y7f{bottom:216.692800pt;}
.y46{bottom:216.692933pt;}
.y1cb{bottom:216.984800pt;}
.y14c{bottom:219.697600pt;}
.yb7{bottom:220.466800pt;}
.y182{bottom:220.466933pt;}
.y2c{bottom:226.927333pt;}
.y7e{bottom:230.026133pt;}
.y45{bottom:230.026267pt;}
.y28d{bottom:233.000267pt;}
.y1ca{bottom:233.518133pt;}
.y11b{bottom:233.800133pt;}
.ye1{bottom:233.800267pt;}
.y14b{bottom:236.230933pt;}
.y2b{bottom:240.260667pt;}
.ya1{bottom:243.359467pt;}
.ye0{bottom:243.359600pt;}
.y28c{bottom:246.333600pt;}
.y7d{bottom:247.133467pt;}
.y44{bottom:247.133600pt;}
.y1c9{bottom:250.051467pt;}
.y14a{bottom:252.764267pt;}
.y2a{bottom:253.594000pt;}
.y28b{bottom:255.892933pt;}
.y7c{bottom:256.692800pt;}
.yce{bottom:256.692933pt;}
.yf4{bottom:260.466800pt;}
.yff{bottom:260.466933pt;}
.y1c8{bottom:266.584800pt;}
.y29{bottom:266.927333pt;}
.y28a{bottom:269.226267pt;}
.y149{bottom:269.297600pt;}
.y7b{bottom:270.026133pt;}
.ycd{bottom:270.026267pt;}
.y22a{bottom:272.563867pt;}
.yb6{bottom:273.800133pt;}
.y10c{bottom:273.800267pt;}
.y28{bottom:280.260667pt;}
.y195{bottom:282.280267pt;}
.y289{bottom:282.559600pt;}
.y1c7{bottom:283.118133pt;}
.y7a{bottom:283.359467pt;}
.ycc{bottom:283.359600pt;}
.ya0{bottom:287.133467pt;}
.y185{bottom:287.133600pt;}
.y229{bottom:289.097200pt;}
.y27{bottom:293.594000pt;}
.y1f0{bottom:293.923333pt;}
.y43{bottom:295.426000pt;}
.y148{bottom:296.035733pt;}
.y79{bottom:296.692800pt;}
.ycb{bottom:296.692933pt;}
.y194{bottom:298.813600pt;}
.y1e8{bottom:298.954400pt;}
.y1c6{bottom:299.651467pt;}
.yb5{bottom:300.466800pt;}
.yfe{bottom:300.466933pt;}
.y228{bottom:305.630533pt;}
.y26{bottom:306.927333pt;}
.y78{bottom:310.026133pt;}
.yca{bottom:310.026267pt;}
.y1ef{bottom:310.456667pt;}
.y42{bottom:311.959333pt;}
.y1ac{bottom:313.800133pt;}
.y1e7{bottom:315.487733pt;}
.y1c5{bottom:316.184800pt;}
.y25{bottom:320.260667pt;}
.y227{bottom:322.163867pt;}
.y288{bottom:323.084400pt;}
.yf3{bottom:323.359467pt;}
.yc9{bottom:323.359600pt;}
.y193{bottom:325.551733pt;}
.y9f{bottom:325.649333pt;}
.y1ee{bottom:326.990000pt;}
.y77{bottom:327.133467pt;}
.y184{bottom:327.133600pt;}
.y1d4{bottom:327.523333pt;}
.y41{bottom:328.492667pt;}
.y147{bottom:331.600000pt;}
.y1e6{bottom:332.020933pt;}
.y1c4{bottom:332.718133pt;}
.y24{bottom:333.594000pt;}
.y24d{bottom:335.800533pt;}
.y76{bottom:336.692800pt;}
.yc8{bottom:336.692933pt;}
.y226{bottom:338.697200pt;}
.y287{bottom:339.617733pt;}
.y24e{bottom:340.466800pt;}
.y10b{bottom:340.466933pt;}
.y192{bottom:341.551733pt;}
.y9e{bottom:342.182667pt;}
.y1ed{bottom:343.523333pt;}
.y1d3{bottom:344.056667pt;}
.y40{bottom:345.026000pt;}
.y23{bottom:346.927333pt;}
.y146{bottom:348.133333pt;}
.y1e5{bottom:348.554267pt;}
.y1c3{bottom:349.251467pt;}
.y75{bottom:350.026133pt;}
.yc7{bottom:350.026267pt;}
.y24c{bottom:352.333867pt;}
.yb4{bottom:353.800133pt;}
.y131{bottom:353.800267pt;}
.y286{bottom:355.884400pt;}
.y9d{bottom:358.716000pt;}
.y225{bottom:359.010000pt;}
.y1ec{bottom:360.056667pt;}
.y22{bottom:360.260667pt;}
.y1d2{bottom:360.590000pt;}
.y3f{bottom:361.559333pt;}
.y20b{bottom:363.287200pt;}
.y74{bottom:363.359467pt;}
.yc6{bottom:363.359600pt;}
.y145{bottom:364.666667pt;}
.y1e4{bottom:365.087733pt;}
.y1c2{bottom:365.784800pt;}
.y11a{bottom:367.133467pt;}
.y107{bottom:367.133600pt;}
.y24b{bottom:368.867200pt;}
.y285{bottom:372.151067pt;}
.y21{bottom:373.594000pt;}
.y9c{bottom:375.249333pt;}
.y191{bottom:376.449333pt;}
.y1eb{bottom:376.590000pt;}
.y73{bottom:376.692800pt;}
.yc5{bottom:376.692933pt;}
.y1d1{bottom:377.123333pt;}
.y3e{bottom:378.092667pt;}
.y20a{bottom:379.820533pt;}
.yf2{bottom:380.466800pt;}
.yfd{bottom:380.466933pt;}
.y144{bottom:381.200000pt;}
.y224{bottom:384.458800pt;}
.y24a{bottom:385.400533pt;}
.y20{bottom:386.927333pt;}
.y284{bottom:388.417733pt;}
.y72{bottom:390.026133pt;}
.yc4{bottom:390.026267pt;}
.y9b{bottom:391.782667pt;}
.y1e3{bottom:391.825733pt;}
.y1c1{bottom:392.522800pt;}
.y190{bottom:392.982667pt;}
.y1ea{bottom:393.123333pt;}
.y1d0{bottom:393.656667pt;}
.yb3{bottom:393.800133pt;}
.y181{bottom:393.800267pt;}
.y123{bottom:393.820533pt;}
.y3d{bottom:394.626000pt;}
.y209{bottom:396.353867pt;}
.y143{bottom:397.733333pt;}
.y1f{bottom:400.260667pt;}
.y223{bottom:400.992267pt;}
.y249{bottom:401.933867pt;}
.y71{bottom:403.359467pt;}
.yc3{bottom:403.359600pt;}
.y283{bottom:404.684400pt;}
.y166{bottom:407.133467pt;}
.ydf{bottom:407.133600pt;}
.y1e2{bottom:407.825733pt;}
.y9a{bottom:408.316000pt;}
.y1c0{bottom:408.522800pt;}
.y18f{bottom:409.516000pt;}
.y122{bottom:410.353867pt;}
.y3c{bottom:411.159333pt;}
.y208{bottom:412.887067pt;}
.y1e{bottom:413.594000pt;}
.y142{bottom:414.266667pt;}
.y1e9{bottom:416.081867pt;}
.y1cf{bottom:416.615200pt;}
.yb2{bottom:416.692800pt;}
.yde{bottom:416.692933pt;}
.y222{bottom:417.392267pt;}
.y248{bottom:418.467200pt;}
.y130{bottom:420.466800pt;}
.yc2{bottom:420.466933pt;}
.y282{bottom:420.951067pt;}
.y1ab{bottom:422.890267pt;}
.y99{bottom:424.849333pt;}
.y18e{bottom:426.049333pt;}
.y121{bottom:426.887067pt;}
.y1d{bottom:426.927333pt;}
.y3b{bottom:427.692667pt;}
.yf1{bottom:430.026133pt;}
.yc1{bottom:430.026267pt;}
.y141{bottom:430.800000pt;}
.y1ce{bottom:432.615200pt;}
.y221{bottom:433.792133pt;}
.yb1{bottom:433.800133pt;}
.y10a{bottom:433.800267pt;}
.y247{bottom:435.000533pt;}
.y207{bottom:435.089733pt;}
.y281{bottom:437.217733pt;}
.y1aa{bottom:439.423600pt;}
.y1c{bottom:440.260667pt;}
.y98{bottom:441.382667pt;}
.y18d{bottom:442.582667pt;}
.y1e1{bottom:442.723333pt;}
.yf0{bottom:443.359467pt;}
.yc0{bottom:443.359600pt;}
.y120{bottom:443.420533pt;}
.y268{bottom:443.576400pt;}
.y3a{bottom:444.226000pt;}
.y70{bottom:447.080267pt;}
.y119{bottom:447.133467pt;}
.y140{bottom:447.333333pt;}
.y220{bottom:450.192267pt;}
.y206{bottom:451.089733pt;}
.y246{bottom:451.533867pt;}
.y280{bottom:453.484400pt;}
.y1b{bottom:453.594000pt;}
.y12f{bottom:456.692800pt;}
.ybf{bottom:456.692933pt;}
.y18c{bottom:459.116000pt;}
.y1e0{bottom:459.256667pt;}
.y11f{bottom:459.953867pt;}
.y267{bottom:460.109733pt;}
.yef{bottom:460.466800pt;}
.y106{bottom:460.466933pt;}
.y39{bottom:460.759333pt;}
.y1a9{bottom:462.382133pt;}
.y6f{bottom:463.613600pt;}
.y13f{bottom:463.866667pt;}
.y21f{bottom:466.592267pt;}
.y1a{bottom:466.927333pt;}
.y245{bottom:468.067200pt;}
.y97{bottom:468.876667pt;}
.y27f{bottom:469.751067pt;}
.yee{bottom:470.026133pt;}
.ybe{bottom:470.026267pt;}
.y165{bottom:473.800133pt;}
.y180{bottom:473.800267pt;}
.y18b{bottom:475.649333pt;}
.y1df{bottom:475.790000pt;}
.y1bf{bottom:476.323333pt;}
.y11e{bottom:476.487200pt;}
.y266{bottom:476.643067pt;}
.y38{bottom:477.292667pt;}
.y1a8{bottom:477.715467pt;}
.y6e{bottom:480.146933pt;}
.y19{bottom:480.260667pt;}
.y13e{bottom:480.400000pt;}
.yb0{bottom:480.984800pt;}
.y205{bottom:482.207867pt;}
.y21e{bottom:482.992267pt;}
.y12e{bottom:483.359467pt;}
.ybd{bottom:483.359600pt;}
.y244{bottom:484.600533pt;}
.y27e{bottom:486.017733pt;}
.yed{bottom:487.133467pt;}
.ydd{bottom:487.133600pt;}
.y18a{bottom:492.182667pt;}
.y118{bottom:492.316000pt;}
.y1de{bottom:492.323333pt;}
.y1be{bottom:492.856667pt;}
.y11d{bottom:493.020533pt;}
.y265{bottom:493.176400pt;}
.y18{bottom:493.594000pt;}
.y37{bottom:493.826000pt;}
.y12d{bottom:496.692800pt;}
.ybc{bottom:496.692933pt;}
.y13d{bottom:496.933333pt;}
.yaf{bottom:497.518133pt;}
.y204{bottom:498.741200pt;}
.y21d{bottom:499.392267pt;}
.ydc{bottom:500.466933pt;}
.y27d{bottom:502.284400pt;}
.y1a7{bottom:502.497600pt;}
.y6d{bottom:506.885067pt;}
.y17{bottom:506.927333pt;}
.y243{bottom:507.559067pt;}
.y96{bottom:508.220400pt;}
.y189{bottom:508.716000pt;}
.y117{bottom:508.849333pt;}
.y1dd{bottom:508.856667pt;}
.y1bd{bottom:509.390000pt;}
.y11c{bottom:509.553733pt;}
.y264{bottom:509.709733pt;}
.y12c{bottom:510.026133pt;}
.ybb{bottom:510.026267pt;}
.y36{bottom:510.359333pt;}
.y13c{bottom:513.466667pt;}
.y153{bottom:513.800267pt;}
.yae{bottom:514.051467pt;}
.y293{bottom:514.584800pt;}
.y203{bottom:515.274533pt;}
.y21c{bottom:515.792133pt;}
.y17f{bottom:515.833067pt;}
.y27c{bottom:518.551067pt;}
.y1a6{bottom:519.030933pt;}
.y16{bottom:520.260667pt;}
.yfc{bottom:523.359600pt;}
.y95{bottom:524.753867pt;}
.y188{bottom:525.249333pt;}
.y116{bottom:525.382667pt;}
.y1dc{bottom:525.390000pt;}
.y1bc{bottom:525.923333pt;}
.yec{bottom:526.087200pt;}
.y263{bottom:526.243067pt;}
.y35{bottom:526.892667pt;}
.yba{bottom:527.133600pt;}
.y13b{bottom:530.000000pt;}
.yad{bottom:530.584800pt;}
.y164{bottom:531.118133pt;}
.y202{bottom:531.807867pt;}
.y21b{bottom:532.192267pt;}
.y17e{bottom:532.366400pt;}
.y15{bottom:533.594000pt;}
.y27b{bottom:534.817733pt;}
.y1a5{bottom:535.564267pt;}
.yfb{bottom:536.692933pt;}
.y242{bottom:538.677200pt;}
.ydb{bottom:540.466933pt;}
.y94{bottom:541.287200pt;}
.y6c{bottom:541.782667pt;}
.y115{bottom:541.916000pt;}
.y1db{bottom:541.923333pt;}
.y1bb{bottom:542.456667pt;}
.yeb{bottom:542.620533pt;}
.y262{bottom:542.776400pt;}
.y34{bottom:543.426000pt;}
.y13a{bottom:546.533333pt;}
.y14{bottom:546.927333pt;}
.yac{bottom:547.118133pt;}
.y163{bottom:547.651467pt;}
.y201{bottom:548.341200pt;}
.y21a{bottom:548.592267pt;}
.y17d{bottom:548.899733pt;}
.yfa{bottom:550.026267pt;}
.y1a4{bottom:552.097600pt;}
.y109{bottom:553.800267pt;}
.y241{bottom:555.210533pt;}
.y93{bottom:557.820533pt;}
.y6b{bottom:558.316000pt;}
.y114{bottom:558.449333pt;}
.y1da{bottom:558.456667pt;}
.y1ba{bottom:558.990000pt;}
.yea{bottom:559.153867pt;}
.y261{bottom:559.309733pt;}
.y13{bottom:560.260667pt;}
.y139{bottom:563.066667pt;}
.y105{bottom:563.359600pt;}
.y27a{bottom:563.445600pt;}
.yab{bottom:563.651467pt;}
.y162{bottom:564.184800pt;}
.y200{bottom:564.874533pt;}
.y219{bottom:564.992133pt;}
.y17c{bottom:565.433067pt;}
.yf9{bottom:567.133600pt;}
.y1a3{bottom:568.630933pt;}
.y240{bottom:571.743867pt;}
.y33{bottom:573.943600pt;}
.y92{bottom:574.353867pt;}
.y6a{bottom:574.849333pt;}
.y113{bottom:574.982667pt;}
.y1d9{bottom:574.990000pt;}
.y1b9{bottom:575.523333pt;}
.ye9{bottom:575.687200pt;}
.y260{bottom:575.843067pt;}
.y104{bottom:576.692933pt;}
.yda{bottom:576.969067pt;}
.y12{bottom:577.373467pt;}
.y138{bottom:579.600000pt;}
.yaa{bottom:580.184800pt;}
.y152{bottom:580.466933pt;}
.y161{bottom:580.718133pt;}
.y218{bottom:581.392267pt;}
.y1ff{bottom:581.407867pt;}
.y17b{bottom:581.966400pt;}
.y1a2{bottom:585.164267pt;}
.y23f{bottom:588.277200pt;}
.y103{bottom:590.026267pt;}
.y91{bottom:590.887067pt;}
.y69{bottom:591.382667pt;}
.y112{bottom:591.516000pt;}
.y1d8{bottom:591.523333pt;}
.y1b8{bottom:592.056667pt;}
.ye8{bottom:592.220400pt;}
.y25f{bottom:592.376400pt;}
.yd9{bottom:593.502400pt;}
.y137{bottom:596.133333pt;}
.ya9{bottom:596.718133pt;}
.y160{bottom:597.251467pt;}
.y217{bottom:597.792267pt;}
.y1fe{bottom:597.941200pt;}
.y17a{bottom:598.499733pt;}
.y1a1{bottom:601.697600pt;}
.y102{bottom:603.359600pt;}
.y23e{bottom:604.810533pt;}
.y279{bottom:606.012533pt;}
.y1cd{bottom:607.133600pt;}
.y90{bottom:607.420533pt;}
.y68{bottom:607.916000pt;}
.y111{bottom:608.049333pt;}
.y1d7{bottom:608.056667pt;}
.y1b7{bottom:608.590000pt;}
.ye7{bottom:608.753867pt;}
.yd8{bottom:610.035733pt;}
.y136{bottom:612.666667pt;}
.ya8{bottom:613.251467pt;}
.y15f{bottom:613.784800pt;}
.y216{bottom:614.192267pt;}
.y1fd{bottom:614.474533pt;}
.y179{bottom:615.033067pt;}
.y108{bottom:616.692933pt;}
.y25e{bottom:617.224667pt;}
.y1a0{bottom:618.230933pt;}
.y101{bottom:620.466933pt;}
.y23d{bottom:621.343867pt;}
.y278{bottom:622.545867pt;}
.y67{bottom:624.449333pt;}
.y110{bottom:624.582667pt;}
.y1d6{bottom:624.590000pt;}
.y1b6{bottom:625.123333pt;}
.ye6{bottom:625.287200pt;}
.yd7{bottom:626.569067pt;}
.y135{bottom:629.200000pt;}
.ya7{bottom:629.784800pt;}
.y22f{bottom:630.026267pt;}
.y15e{bottom:630.318133pt;}
.y215{bottom:630.592267pt;}
.y1fc{bottom:631.007867pt;}
.y178{bottom:631.566400pt;}
.y150{bottom:633.800267pt;}
.y19f{bottom:634.764267pt;}
.y23c{bottom:637.877200pt;}
.y8f{bottom:637.938133pt;}
.y277{bottom:638.812533pt;}
.y66{bottom:640.982667pt;}
.y10f{bottom:641.116000pt;}
.y1b5{bottom:641.656667pt;}
.ye5{bottom:641.820533pt;}
.yd6{bottom:643.102400pt;}
.y22e{bottom:643.359600pt;}
.y134{bottom:645.733333pt;}
.ya6{bottom:646.318133pt;}
.y15d{bottom:646.851467pt;}
.y214{bottom:646.992133pt;}
.y1fb{bottom:647.541200pt;}
.y1d5{bottom:647.548533pt;}
.y177{bottom:648.099733pt;}
.y25d{bottom:648.342800pt;}
.y54{bottom:648.548133pt;}
.y19e{bottom:651.297600pt;}
.y23b{bottom:654.410533pt;}
.y276{bottom:655.079200pt;}
.y8e{bottom:655.938133pt;}
.y65{bottom:657.516000pt;}
.y1b4{bottom:658.190000pt;}
.ye4{bottom:658.353867pt;}
.yd5{bottom:659.635733pt;}
.y22d{bottom:660.466933pt;}
.y53{bottom:661.881467pt;}
.ya5{bottom:662.851467pt;}
.y15c{bottom:663.384800pt;}
.y213{bottom:663.392267pt;}
.y1fa{bottom:664.074533pt;}
.y176{bottom:664.633067pt;}
.y25c{bottom:664.876133pt;}
.y19d{bottom:667.830933pt;}
.y10e{bottom:668.610000pt;}
.y22c{bottom:670.026267pt;}
.y23a{bottom:670.943867pt;}
.y275{bottom:671.345867pt;}
.yb9{bottom:673.056133pt;}
.y12b{bottom:674.049333pt;}
.y1b3{bottom:674.723333pt;}
.ye3{bottom:674.887067pt;}
.y11{bottom:675.214800pt;}
.y133{bottom:676.250933pt;}
.y212{bottom:679.792133pt;}
.y15b{bottom:679.918133pt;}
.y1f9{bottom:680.607867pt;}
.y175{bottom:681.166400pt;}
.y25b{bottom:681.409467pt;}
.y19c{bottom:684.364267pt;}
.y64{bottom:685.009867pt;}
.yd4{bottom:686.373733pt;}
.y22b{bottom:687.133600pt;}
.y239{bottom:687.477200pt;}
.y274{bottom:687.612533pt;}
.y10{bottom:688.548133pt;}
.ya4{bottom:689.589467pt;}
.y12a{bottom:690.582667pt;}
.y1b2{bottom:691.256667pt;}
.ye2{bottom:691.420533pt;}
.y211{bottom:696.192133pt;}
.y15a{bottom:696.451467pt;}
.y1f8{bottom:697.141200pt;}
.y174{bottom:697.699600pt;}
.y25a{bottom:697.942800pt;}
.y19b{bottom:700.897600pt;}
.y187{bottom:701.543333pt;}
.y63{bottom:701.676533pt;}
.yf{bottom:701.881467pt;}
.yd3{bottom:703.040400pt;}
.y273{bottom:703.879200pt;}
.y238{bottom:704.010533pt;}
.y129{bottom:707.116000pt;}
.y1b1{bottom:707.790000pt;}
.y8d{bottom:707.953733pt;}
.y210{bottom:712.592133pt;}
.y159{bottom:712.984800pt;}
.y1f7{bottom:713.674533pt;}
.y173{bottom:714.232933pt;}
.y259{bottom:714.476133pt;}
.ye{bottom:715.214800pt;}
.y19a{bottom:717.430933pt;}
.y186{bottom:718.210000pt;}
.y272{bottom:720.145867pt;}
.y237{bottom:720.543867pt;}
.y1b0{bottom:724.323467pt;}
.y8c{bottom:724.487200pt;}
.yd{bottom:728.548133pt;}
.y20f{bottom:728.992133pt;}
.y158{bottom:729.518133pt;}
.y1f6{bottom:730.207867pt;}
.y172{bottom:730.766267pt;}
.y258{bottom:731.009467pt;}
.y199{bottom:733.964267pt;}
.y128{bottom:734.610000pt;}
.yd2{bottom:734.825200pt;}
.y271{bottom:736.412533pt;}
.y236{bottom:737.077200pt;}
.y1af{bottom:740.856667pt;}
.y62{bottom:741.020533pt;}
.yc{bottom:741.881467pt;}
.y20e{bottom:745.392133pt;}
.y157{bottom:746.051467pt;}
.y1f5{bottom:746.741200pt;}
.y171{bottom:747.299600pt;}
.y257{bottom:747.542800pt;}
.y198{bottom:750.497600pt;}
.y127{bottom:751.276667pt;}
.y270{bottom:752.679200pt;}
.y235{bottom:753.610533pt;}
.yb{bottom:755.214800pt;}
.y61{bottom:757.553733pt;}
.y156{bottom:762.584800pt;}
.y1f4{bottom:763.274533pt;}
.y1ae{bottom:763.815333pt;}
.y170{bottom:763.833067pt;}
.y256{bottom:764.076133pt;}
.y20d{bottom:765.704933pt;}
.ya{bottom:768.548133pt;}
.y26f{bottom:768.945867pt;}
.y234{bottom:770.143867pt;}
.y197{bottom:773.456133pt;}
.y60{bottom:774.087200pt;}
.y1f3{bottom:779.807867pt;}
.y1ad{bottom:779.815333pt;}
.y16f{bottom:780.366267pt;}
.y255{bottom:780.609467pt;}
.y20c{bottom:781.704933pt;}
.y9{bottom:781.881467pt;}
.y26e{bottom:785.212533pt;}
.y233{bottom:786.677200pt;}
.y155{bottom:789.322800pt;}
.y5f{bottom:790.620400pt;}
.y1f2{bottom:796.341200pt;}
.y196{bottom:796.348533pt;}
.y16e{bottom:796.899600pt;}
.y254{bottom:797.142800pt;}
.y26d{bottom:801.479200pt;}
.y232{bottom:803.210533pt;}
.y154{bottom:805.322800pt;}
.y5e{bottom:807.153867pt;}
.y16d{bottom:813.432933pt;}
.y253{bottom:813.676133pt;}
.y26c{bottom:817.745867pt;}
.y1f1{bottom:821.189600pt;}
.y5d{bottom:823.687200pt;}
.y231{bottom:826.169067pt;}
.y16c{bottom:829.966267pt;}
.y252{bottom:830.209467pt;}
.y26b{bottom:834.012533pt;}
.y5c{bottom:840.220400pt;}
.y230{bottom:842.169067pt;}
.y16b{bottom:846.499733pt;}
.y251{bottom:846.742800pt;}
.y55{bottom:850.193733pt;}
.y26a{bottom:850.279200pt;}
.y5b{bottom:856.753867pt;}
.y269{bottom:866.545867pt;}
.y250{bottom:871.591067pt;}
.y16a{bottom:873.237733pt;}
.y5a{bottom:873.287067pt;}
.y24f{bottom:888.257733pt;}
.y169{bottom:889.237733pt;}
.y59{bottom:889.820533pt;}
.y8{bottom:899.581733pt;}
.y7{bottom:919.581733pt;}
.y6{bottom:939.581733pt;}
.y1{bottom:953.111867pt;}
.y5{bottom:967.140800pt;}
.y4{bottom:992.474133pt;}
.y58{bottom:1041.200000pt;}
.y3{bottom:1041.201200pt;}
.y57{bottom:1062.781067pt;}
.y2{bottom:1062.782267pt;}
.hb{height:22.711292pt;}
.he{height:25.383208pt;}
.h11{height:27.159208pt;}
.h8{height:31.360000pt;}
.h6{height:32.554667pt;}
.h7{height:33.320000pt;}
.h3{height:35.280000pt;}
.hc{height:37.807292pt;}
.h12{height:39.200000pt;}
.h13{height:40.693333pt;}
.h2{height:41.160000pt;}
.h10{height:42.255208pt;}
.hf{height:45.080000pt;}
.hd{height:45.568000pt;}
.ha{height:46.703125pt;}
.h9{height:47.040000pt;}
.h5{height:50.960000pt;}
.h4{height:66.640000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:17.467333pt;}
.x6{left:56.893200pt;}
.x5{left:60.672800pt;}
.x7{left:72.011333pt;}
.xe{left:75.790933pt;}
.x8{left:87.129467pt;}
.x12{left:90.708667pt;}
.x9{left:102.247600pt;}
.x4{left:208.274267pt;}
.xd{left:209.912533pt;}
.x2{left:225.339333pt;}
.x10{left:322.434267pt;}
.x3{left:356.189200pt;}
.xa{left:415.948400pt;}
.xc{left:419.727867pt;}
.xb{left:434.846000pt;}
.x11{left:449.763733pt;}
.x1{left:752.126000pt;}
}




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