
    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_07160b9c0ffe395d6db51082.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_2441729b1df91f3fd7c6bbca.woff')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_642fd1c25aa49b7aa39e1e2b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.844000;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_c9e3fc665b3dd2359e4e7422.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_e735a59dec4bbbab19a9307e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.885000;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_859aa4dc50f3247a3ae0ab01.woff')format("woff");}.ff6{font-family:ff6;line-height:1.464000;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_cfef5a46a7bf29f37d5bac7d.woff')format("woff");}.ff7{font-family:ff7;line-height:2.424000;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_e2ae11d7cc6055919d12960b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.950000;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_19bdf302f4f0566415e40957.woff')format("woff");}.ff9{font-family:ff9;line-height:0.959000;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_b5ecaf31ffe9ab58afe40e8d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.888000;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_1d083c3f70ed0988e3e306f0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.950000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7014cb7542893f40b29443c1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.950000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b3090197ba5e68f727b25fd3.woff')format("woff");}.ffd{font-family:ffd;line-height:0.950000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1b7c0c1d330f149a3f6aae34.woff')format("woff");}.ffe{font-family:ffe;line-height:0.950000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_cc7baa4786da78489f324526.woff')format("woff");}.fff{font-family:fff;line-height:0.654000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_75c56daf62b078c9e7415196.woff')format("woff");}.ff10{font-family:ff10;line-height:0.950000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.vd{vertical-align:-84.342000px;}
.v12{vertical-align:-21.696000px;}
.v18{vertical-align:-16.374000px;}
.v2{vertical-align:-8.970000px;}
.v6{vertical-align:-6.276000px;}
.v17{vertical-align:-2.088000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:8.970000px;}
.v4{vertical-align:15.426000px;}
.v13{vertical-align:17.274000px;}
.v1{vertical-align:19.530000px;}
.v3{vertical-align:21.702000px;}
.v11{vertical-align:24.414000px;}
.v5{vertical-align:27.588000px;}
.v10{vertical-align:36.900000px;}
.v14{vertical-align:38.364000px;}
.v8{vertical-align:40.470000px;}
.v15{vertical-align:41.994000px;}
.vb{vertical-align:49.968000px;}
.vf{vertical-align:52.512000px;}
.ve{vertical-align:62.166000px;}
.va{vertical-align:81.474000px;}
.v9{vertical-align:84.348000px;}
.v16{vertical-align:125.352000px;}
.vc{vertical-align:134.316000px;}
.ls23{letter-spacing:0.000000px;}
.ls7f{letter-spacing:0.000583px;}
.ls0{letter-spacing:0.000960px;}
.lsba{letter-spacing:0.000976px;}
.lsaf{letter-spacing:0.001037px;}
.ls2{letter-spacing:0.001200px;}
.ls80{letter-spacing:0.001261px;}
.ls66{letter-spacing:0.001753px;}
.ls6a{letter-spacing:0.002100px;}
.ls9d{letter-spacing:0.002346px;}
.ls4{letter-spacing:0.002400px;}
.ls5{letter-spacing:0.002640px;}
.ls6f{letter-spacing:0.002725px;}
.ls19{letter-spacing:0.002852px;}
.ls7d{letter-spacing:0.002960px;}
.ls85{letter-spacing:0.003300px;}
.ls12{letter-spacing:0.003325px;}
.ls1{letter-spacing:0.003888px;}
.ls86{letter-spacing:0.003979px;}
.ls65{letter-spacing:0.004200px;}
.ls7c{letter-spacing:0.004542px;}
.ls64{letter-spacing:0.004969px;}
.lsbc{letter-spacing:0.005740px;}
.ls9c{letter-spacing:0.121224px;}
.ls51{letter-spacing:0.123797px;}
.ls48{letter-spacing:0.177634px;}
.ls4b{letter-spacing:0.183634px;}
.ls17{letter-spacing:1.048200px;}
.ls49{letter-spacing:1.076383px;}
.ls32{letter-spacing:1.494289px;}
.ls2e{letter-spacing:1.996200px;}
.ls8d{letter-spacing:2.388925px;}
.lsac{letter-spacing:2.983702px;}
.ls5f{letter-spacing:2.984725px;}
.ls9b{letter-spacing:2.986200px;}
.ls72{letter-spacing:2.988128px;}
.lsaa{letter-spacing:2.988259px;}
.ls29{letter-spacing:2.988289px;}
.ls1b{letter-spacing:2.988600px;}
.ls11{letter-spacing:2.989192px;}
.lsae{letter-spacing:2.989200px;}
.ls10{letter-spacing:2.989308px;}
.lsa9{letter-spacing:2.989315px;}
.ls7{letter-spacing:2.989702px;}
.ls8c{letter-spacing:2.989753px;}
.ls75{letter-spacing:2.990261px;}
.ls47{letter-spacing:2.990725px;}
.ls13{letter-spacing:2.990837px;}
.ls6{letter-spacing:2.991516px;}
.ls3c{letter-spacing:2.991797px;}
.ls9f{letter-spacing:2.992200px;}
.ls8{letter-spacing:3.587675px;}
.ls2b{letter-spacing:4.084200px;}
.ls93{letter-spacing:4.485586px;}
.ls41{letter-spacing:4.540766px;}
.ls92{letter-spacing:5.974200px;}
.ls87{letter-spacing:5.974718px;}
.ls46{letter-spacing:5.975995px;}
.ls7e{letter-spacing:5.976054px;}
.ls94{letter-spacing:5.979078px;}
.ls53{letter-spacing:5.979325px;}
.lsa6{letter-spacing:5.979797px;}
.ls67{letter-spacing:5.980200px;}
.ls5c{letter-spacing:5.980718px;}
.ls83{letter-spacing:6.154200px;}
.ls4f{letter-spacing:6.975634px;}
.ls54{letter-spacing:7.020600px;}
.lsa5{letter-spacing:7.252766px;}
.ls57{letter-spacing:7.467586px;}
.ls14{letter-spacing:7.923403px;}
.ls50{letter-spacing:8.067979px;}
.ls63{letter-spacing:8.960852px;}
.ls52{letter-spacing:8.966100px;}
.lsa2{letter-spacing:9.346766px;}
.ls7a{letter-spacing:9.958718px;}
.ls4d{letter-spacing:9.959995px;}
.ls38{letter-spacing:9.961721px;}
.ls56{letter-spacing:9.961753px;}
.ls26{letter-spacing:9.962100px;}
.ls79{letter-spacing:9.962346px;}
.ls55{letter-spacing:9.964200px;}
.ls25{letter-spacing:9.964718px;}
.ls37{letter-spacing:10.161797px;}
.ls5d{letter-spacing:10.455634px;}
.lsd{letter-spacing:10.459702px;}
.ls62{letter-spacing:10.461634px;}
.lsbb{letter-spacing:10.644976px;}
.ls60{letter-spacing:11.954725px;}
.ls6c{letter-spacing:12.446218px;}
.ls24{letter-spacing:12.949151px;}
.ls1f{letter-spacing:12.950852px;}
.ls28{letter-spacing:12.951797px;}
.ls27{letter-spacing:12.954128px;}
.ls6e{letter-spacing:13.190218px;}
.ls6d{letter-spacing:13.196218px;}
.lsb3{letter-spacing:13.228718px;}
.ls88{letter-spacing:13.282200px;}
.ls2d{letter-spacing:13.282718px;}
.ls89{letter-spacing:13.288200px;}
.ls77{letter-spacing:13.288718px;}
.ls59{letter-spacing:13.470017px;}
.ls99{letter-spacing:14.568017px;}
.ls7b{letter-spacing:14.914718px;}
.ls8a{letter-spacing:14.942346px;}
.ls84{letter-spacing:14.944718px;}
.lsa1{letter-spacing:15.367721px;}
.lsb5{letter-spacing:15.502718px;}
.ls3{letter-spacing:15.632218px;}
.lsb1{letter-spacing:15.668218px;}
.ls4c{letter-spacing:16.022383px;}
.ls76{letter-spacing:16.266600px;}
.lsa3{letter-spacing:16.272600px;}
.ls2c{letter-spacing:16.273151px;}
.lsb0{letter-spacing:16.435200px;}
.ls43{letter-spacing:16.600718px;}
.ls8b{letter-spacing:16.604346px;}
.ls45{letter-spacing:16.606718px;}
.ls4a{letter-spacing:16.995634px;}
.ls1c{letter-spacing:17.068718px;}
.ls9a{letter-spacing:17.106017px;}
.ls34{letter-spacing:17.269721px;}
.ls22{letter-spacing:17.278729px;}
.ls97{letter-spacing:17.416200px;}
.ls95{letter-spacing:17.722200px;}
.ls96{letter-spacing:17.729108px;}
.lsb7{letter-spacing:17.772600px;}
.lsb9{letter-spacing:17.778128px;}
.lsb2{letter-spacing:18.022718px;}
.ls74{letter-spacing:18.076718px;}
.ls68{letter-spacing:18.298969px;}
.ls69{letter-spacing:18.304718px;}
.ls16{letter-spacing:18.685702px;}
.ls78{letter-spacing:18.726600px;}
.ls8f{letter-spacing:18.996925px;}
.ls73{letter-spacing:19.455292px;}
.ls20{letter-spacing:19.570729px;}
.ls44{letter-spacing:19.590600px;}
.ls81{letter-spacing:19.592852px;}
.ls2f{letter-spacing:19.593797px;}
.ls42{letter-spacing:19.596600px;}
.ls33{letter-spacing:19.980017px;}
.lsb4{letter-spacing:20.224718px;}
.ls31{letter-spacing:20.458200px;}
.ls98{letter-spacing:21.005675px;}
.ls6b{letter-spacing:21.718969px;}
.ls91{letter-spacing:21.754718px;}
.ls90{letter-spacing:21.756017px;}
.ls5e{letter-spacing:22.059516px;}
.ls21{letter-spacing:22.562852px;}
.ls71{letter-spacing:23.020718px;}
.ls15{letter-spacing:23.293702px;}
.ls35{letter-spacing:23.443151px;}
.ls30{letter-spacing:23.776718px;}
.lsab{letter-spacing:24.042600px;}
.ls82{letter-spacing:24.388200px;}
.ls9{letter-spacing:24.511702px;}
.lsb6{letter-spacing:24.822128px;}
.ls3b{letter-spacing:24.910718px;}
.ls5b{letter-spacing:25.048718px;}
.ls1e{letter-spacing:25.174718px;}
.ls40{letter-spacing:25.228718px;}
.ls3e{letter-spacing:25.234718px;}
.lsa4{letter-spacing:25.654718px;}
.ls70{letter-spacing:26.004600px;}
.ls9e{letter-spacing:26.044200px;}
.ls2a{letter-spacing:26.050200px;}
.lsb8{letter-spacing:26.136600px;}
.lsf{letter-spacing:26.530718px;}
.lsad{letter-spacing:26.572200px;}
.ls8e{letter-spacing:27.612925px;}
.ls3a{letter-spacing:27.907151px;}
.ls3d{letter-spacing:28.219151px;}
.ls3f{letter-spacing:28.221797px;}
.ls1a{letter-spacing:28.956600px;}
.lse{letter-spacing:29.521702px;}
.ls36{letter-spacing:30.652718px;}
.ls4e{letter-spacing:31.550725px;}
.ls18{letter-spacing:31.609702px;}
.lsa8{letter-spacing:32.458200px;}
.ls5a{letter-spacing:34.498200px;}
.ls1d{letter-spacing:34.618200px;}
.lsb{letter-spacing:35.005999px;}
.lsa{letter-spacing:36.499702px;}
.lsc{letter-spacing:38.483675px;}
.ls61{letter-spacing:43.018200px;}
.lsa0{letter-spacing:58.834200px;}
.ls39{letter-spacing:208.508100px;}
.lsa7{letter-spacing:367.190100px;}
.ls58{letter-spacing:413.258100px;}
.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;}
}
.wsa2{word-spacing:-57.623678px;}
.ws43{word-spacing:-40.336459px;}
.ws3a{word-spacing:-36.881545px;}
.ws10{word-spacing:-33.193613px;}
.ws4b{word-spacing:-26.958796px;}
.wsc4{word-spacing:-25.817008px;}
.ws95{word-spacing:-22.834279px;}
.wsbc{word-spacing:-21.936217px;}
.ws37{word-spacing:-16.617617px;}
.ws13{word-spacing:-14.955955px;}
.ws3c{word-spacing:-14.943900px;}
.ws12{word-spacing:-13.449600px;}
.ws168{word-spacing:-13.294127px;}
.ws163{word-spacing:-11.955150px;}
.ws90{word-spacing:-11.632298px;}
.ws91{word-spacing:-11.302388px;}
.ws44{word-spacing:-10.460700px;}
.ws92{word-spacing:-4.998677px;}
.wsc3{word-spacing:-4.983300px;}
.wsb0{word-spacing:-4.979400px;}
.ws4a{word-spacing:-4.978450px;}
.ws4d{word-spacing:-4.977317px;}
.wsc1{word-spacing:-4.977300px;}
.ws89{word-spacing:-4.477180px;}
.ws198{word-spacing:-4.016930px;}
.ws185{word-spacing:-3.969110px;}
.ws12c{word-spacing:-3.586536px;}
.ws115{word-spacing:-3.526760px;}
.ws151{word-spacing:-3.407209px;}
.wsda{word-spacing:-3.347434px;}
.ws10e{word-spacing:-3.287658px;}
.ws8{word-spacing:-3.227904px;}
.wsd4{word-spacing:-3.227882px;}
.ws27{word-spacing:-3.108331px;}
.ws62{word-spacing:-3.048556px;}
.ws81{word-spacing:-2.929004px;}
.wsd3{word-spacing:-2.869229px;}
.ws124{word-spacing:-2.809453px;}
.wse9{word-spacing:-2.752754px;}
.wsea{word-spacing:-2.749678px;}
.ws106{word-spacing:-2.630126px;}
.ws15c{word-spacing:-2.570351px;}
.ws16f{word-spacing:-2.534492px;}
.wse0{word-spacing:-2.513690px;}
.wse1{word-spacing:-2.510575px;}
.ws1a6{word-spacing:-2.486671px;}
.ws2{word-spacing:-2.474726px;}
.wse8{word-spacing:-2.450800px;}
.ws173{word-spacing:-2.391030px;}
.ws108{word-spacing:-2.391024px;}
.ws12d{word-spacing:-2.331248px;}
.ws10a{word-spacing:-2.271473px;}
.ws14d{word-spacing:-2.211697px;}
.ws136{word-spacing:-2.151922px;}
.ws150{word-spacing:-2.092146px;}
.ws98{word-spacing:-2.032370px;}
.ws19b{word-spacing:-2.008465px;}
.ws68{word-spacing:-1.972595px;}
.ws16c{word-spacing:-1.912824px;}
.wsf4{word-spacing:-1.912819px;}
.ws125{word-spacing:-1.853044px;}
.ws2f{word-spacing:-1.793268px;}
.ws10b{word-spacing:-1.775347px;}
.ws126{word-spacing:-1.733492px;}
.wsce{word-spacing:-1.657500px;}
.ws24{word-spacing:-1.613941px;}
.wsab{word-spacing:-1.554166px;}
.ws17{word-spacing:-1.506355px;}
.ws8c{word-spacing:-1.494390px;}
.ws194{word-spacing:-1.482439px;}
.ws169{word-spacing:-1.434618px;}
.ws83{word-spacing:-1.434614px;}
.wsd2{word-spacing:-1.374839px;}
.ws1a1{word-spacing:-1.338977px;}
.wsb1{word-spacing:-1.315063px;}
.ws14{word-spacing:-1.291162px;}
.ws6d{word-spacing:-1.255288px;}
.ws195{word-spacing:-1.195515px;}
.ws2c{word-spacing:-1.195512px;}
.ws11b{word-spacing:-1.135736px;}
.wsfe{word-spacing:-1.075961px;}
.ws190{word-spacing:-1.052053px;}
.ws99{word-spacing:-1.022170px;}
.wsa4{word-spacing:-1.016185px;}
.ws17e{word-spacing:-0.956412px;}
.wsfb{word-spacing:-0.956410px;}
.ws170{word-spacing:-0.942491px;}
.ws171{word-spacing:-0.908591px;}
.ws127{word-spacing:-0.896634px;}
.ws19f{word-spacing:-0.860771px;}
.ws82{word-spacing:-0.836858px;}
.wsdf{word-spacing:-0.777083px;}
.ws9{word-spacing:-0.753178px;}
.ws172{word-spacing:-0.717309px;}
.ws119{word-spacing:-0.717307px;}
.ws101{word-spacing:-0.699379px;}
.ws120{word-spacing:-0.657532px;}
.wsf1{word-spacing:-0.597756px;}
.ws147{word-spacing:-0.537980px;}
.ws128{word-spacing:-0.478205px;}
.ws6{word-spacing:-0.430387px;}
.ws2e{word-spacing:-0.418429px;}
.ws104{word-spacing:-0.358654px;}
.ws64{word-spacing:-0.298878px;}
.ws17c{word-spacing:-0.286924px;}
.ws9a{word-spacing:-0.268992px;}
.wsd8{word-spacing:-0.239102px;}
.ws143{word-spacing:-0.179327px;}
.ws13c{word-spacing:-0.161395px;}
.ws141{word-spacing:-0.119551px;}
.ws16e{word-spacing:-0.095641px;}
.ws52{word-spacing:-0.059776px;}
.wsae{word-spacing:-0.031500px;}
.wsc7{word-spacing:-0.002134px;}
.ws1a9{word-spacing:-0.001765px;}
.ws1a2{word-spacing:-0.000446px;}
.wsbe{word-spacing:-0.000034px;}
.ws0{word-spacing:0.000000px;}
.ws78{word-spacing:0.001242px;}
.wsbb{word-spacing:0.002873px;}
.ws8b{word-spacing:0.028309px;}
.wsa9{word-spacing:0.059776px;}
.ws174{word-spacing:0.095641px;}
.ws65{word-spacing:0.119551px;}
.ws57{word-spacing:0.179327px;}
.wsdd{word-spacing:0.209083px;}
.wsf3{word-spacing:0.239102px;}
.ws13e{word-spacing:0.298878px;}
.ws161{word-spacing:0.334744px;}
.ws60{word-spacing:0.358654px;}
.wsf{word-spacing:0.376589px;}
.ws165{word-spacing:0.382565px;}
.wsa6{word-spacing:0.418429px;}
.wsb7{word-spacing:0.478205px;}
.ws193{word-spacing:0.478206px;}
.wsf9{word-spacing:0.537980px;}
.ws138{word-spacing:0.564395px;}
.ws191{word-spacing:0.573847px;}
.ws135{word-spacing:0.597756px;}
.ws54{word-spacing:0.657532px;}
.ws177{word-spacing:0.669488px;}
.ws46{word-spacing:0.717307px;}
.ws45{word-spacing:0.777083px;}
.ws176{word-spacing:0.829013px;}
.ws33{word-spacing:0.836858px;}
.ws9f{word-spacing:0.896634px;}
.ws19d{word-spacing:0.908591px;}
.wsa{word-spacing:0.914573px;}
.ws139{word-spacing:0.956410px;}
.ws16b{word-spacing:0.956412px;}
.ws94{word-spacing:0.992683px;}
.wsb4{word-spacing:1.016185px;}
.ws11e{word-spacing:1.075961px;}
.ws1a3{word-spacing:1.099874px;}
.ws5c{word-spacing:1.135736px;}
.ws182{word-spacing:1.147694px;}
.ws109{word-spacing:1.195512px;}
.ws16{word-spacing:1.237363px;}
.wsd5{word-spacing:1.255288px;}
.ws36{word-spacing:1.315063px;}
.ws199{word-spacing:1.338977px;}
.ws14e{word-spacing:1.374839px;}
.wse{word-spacing:1.398758px;}
.wsdb{word-spacing:1.434614px;}
.ws1a4{word-spacing:1.434618px;}
.ws181{word-spacing:1.435687px;}
.ws4{word-spacing:1.452557px;}
.ws6e{word-spacing:1.494390px;}
.wse2{word-spacing:1.554166px;}
.ws9c{word-spacing:1.613941px;}
.ws7{word-spacing:1.613952px;}
.ws79{word-spacing:1.673717px;}
.ws183{word-spacing:1.721542px;}
.ws105{word-spacing:1.733492px;}
.ws8d{word-spacing:1.793268px;}
.ws88{word-spacing:1.853044px;}
.ws14c{word-spacing:1.912819px;}
.ws196{word-spacing:1.912824px;}
.ws10c{word-spacing:1.936742px;}
.ws192{word-spacing:1.960645px;}
.wsf2{word-spacing:1.972595px;}
.ws5b{word-spacing:2.032370px;}
.ws72{word-spacing:2.092146px;}
.ws49{word-spacing:2.119550px;}
.ws53{word-spacing:2.151922px;}
.ws184{word-spacing:2.151927px;}
.wsc{word-spacing:2.151936px;}
.ws12b{word-spacing:2.156027px;}
.ws11{word-spacing:2.180045px;}
.wsad{word-spacing:2.201560px;}
.ws131{word-spacing:2.205734px;}
.ws23{word-spacing:2.211697px;}
.ws41{word-spacing:2.271473px;}
.ws17d{word-spacing:2.295389px;}
.ws50{word-spacing:2.331248px;}
.ws9d{word-spacing:2.391024px;}
.ws84{word-spacing:2.450800px;}
.ws102{word-spacing:2.474726px;}
.ws187{word-spacing:2.509860px;}
.ws1c{word-spacing:2.510575px;}
.ws188{word-spacing:2.534492px;}
.ws16d{word-spacing:2.556871px;}
.ws152{word-spacing:2.570351px;}
.wsd7{word-spacing:2.630126px;}
.ws18a{word-spacing:2.677954px;}
.ws7a{word-spacing:2.689902px;}
.ws19a{word-spacing:2.725774px;}
.ws61{word-spacing:2.749678px;}
.ws103{word-spacing:2.782309px;}
.wsaa{word-spacing:2.796816px;}
.ws35{word-spacing:2.809453px;}
.ws47{word-spacing:2.869229px;}
.ws1{word-spacing:2.869236px;}
.wsed{word-spacing:2.929004px;}
.ws15{word-spacing:2.958912px;}
.wsf5{word-spacing:2.988780px;}
.ws175{word-spacing:3.012698px;}
.ws121{word-spacing:3.048556px;}
.ws73{word-spacing:3.108331px;}
.ws189{word-spacing:3.156160px;}
.ws2a{word-spacing:3.168107px;}
.ws69{word-spacing:3.227882px;}
.ws3{word-spacing:3.227904px;}
.wsaf{word-spacing:3.287658px;}
.ws29{word-spacing:3.347434px;}
.ws1f{word-spacing:3.407209px;}
.ws5d{word-spacing:3.466985px;}
.ws7d{word-spacing:3.526760px;}
.wsbd{word-spacing:3.586536px;}
.wsd9{word-spacing:3.646312px;}
.ws9b{word-spacing:3.658291px;}
.ws8f{word-spacing:3.706087px;}
.ws17b{word-spacing:3.721918px;}
.ws162{word-spacing:3.730007px;}
.ws132{word-spacing:3.765863px;}
.ws6c{word-spacing:3.825638px;}
.ws1a7{word-spacing:3.825648px;}
.ws1a5{word-spacing:3.873469px;}
.wsb{word-spacing:3.873485px;}
.ws34{word-spacing:3.885414px;}
.ws7c{word-spacing:3.945190px;}
.ws180{word-spacing:3.969110px;}
.ws145{word-spacing:4.004965px;}
.wsfa{word-spacing:4.064741px;}
.ws1aa{word-spacing:4.112572px;}
.ws10d{word-spacing:4.124516px;}
.ws164{word-spacing:4.160392px;}
.ws86{word-spacing:4.184292px;}
.ws51{word-spacing:4.244068px;}
.ws158{word-spacing:4.246064px;}
.ws6b{word-spacing:4.303843px;}
.wsb2{word-spacing:4.363619px;}
.ws1ab{word-spacing:4.399495px;}
.ws107{word-spacing:4.409522px;}
.ws1a{word-spacing:4.423394px;}
.ws74{word-spacing:4.483170px;}
.ws32{word-spacing:4.542946px;}
.ws19e{word-spacing:4.590778px;}
.ws4f{word-spacing:4.602721px;}
.ws4c{word-spacing:4.625564px;}
.ws4e{word-spacing:4.630309px;}
.ws75{word-spacing:4.662497px;}
.ws110{word-spacing:4.722272px;}
.ws1a8{word-spacing:4.734239px;}
.wsf7{word-spacing:4.782048px;}
.ws25{word-spacing:4.841824px;}
.ws18d{word-spacing:4.877701px;}
.ws1e{word-spacing:4.901599px;}
.ws140{word-spacing:4.905608px;}
.ws18c{word-spacing:4.925522px;}
.wsdc{word-spacing:4.961375px;}
.ws134{word-spacing:5.021150px;}
.ws1a0{word-spacing:5.021163px;}
.ws21{word-spacing:5.080926px;}
.ws5a{word-spacing:5.140702px;}
.ws18b{word-spacing:5.164625px;}
.wsd6{word-spacing:5.200477px;}
.ws5{word-spacing:5.218445px;}
.wsb8{word-spacing:5.260253px;}
.wsb3{word-spacing:5.320028px;}
.ws42{word-spacing:5.379804px;}
.ws113{word-spacing:5.439580px;}
.ws178{word-spacing:5.451548px;}
.ws130{word-spacing:5.487437px;}
.ws85{word-spacing:5.499355px;}
.wsa8{word-spacing:5.559131px;}
.ws12f{word-spacing:5.595034px;}
.ws2d{word-spacing:5.618906px;}
.ws28{word-spacing:5.678682px;}
.ws19c{word-spacing:5.690651px;}
.ws30{word-spacing:5.738458px;}
.wsd{word-spacing:5.756429px;}
.ws67{word-spacing:5.798233px;}
.wse3{word-spacing:5.858009px;}
.wscf{word-spacing:5.917784px;}
.wseb{word-spacing:5.977560px;}
.ws146{word-spacing:5.992800px;}
.ws11d{word-spacing:6.037336px;}
.ws133{word-spacing:6.097111px;}
.ws5f{word-spacing:6.156887px;}
.wsde{word-spacing:6.216662px;}
.wsec{word-spacing:6.276438px;}
.ws5e{word-spacing:6.336214px;}
.wsd1{word-spacing:6.395989px;}
.wse7{word-spacing:6.455765px;}
.ws12e{word-spacing:6.455808px;}
.ws55{word-spacing:6.515540px;}
.ws39{word-spacing:6.553410px;}
.ws38{word-spacing:6.575316px;}
.ws20{word-spacing:6.635092px;}
.wsa3{word-spacing:6.694867px;}
.ws16a{word-spacing:6.694884px;}
.wsa1{word-spacing:6.705883px;}
.ws96{word-spacing:6.754643px;}
.ws179{word-spacing:6.790525px;}
.ws2b{word-spacing:6.814418px;}
.ws153{word-spacing:6.874194px;}
.ws76{word-spacing:6.933970px;}
.ws71{word-spacing:6.993745px;}
.ws166{word-spacing:7.029628px;}
.ws11a{word-spacing:7.053521px;}
.ws13a{word-spacing:7.113296px;}
.ws19{word-spacing:7.173072px;}
.ws9e{word-spacing:7.232848px;}
.ws160{word-spacing:7.292623px;}
.ws63{word-spacing:7.352399px;}
.ws58{word-spacing:7.412174px;}
.ws59{word-spacing:7.471950px;}
.ws77{word-spacing:7.477034px;}
.ws17a{word-spacing:7.507834px;}
.wsef{word-spacing:7.531726px;}
.wsf0{word-spacing:7.591501px;}
.wsfd{word-spacing:7.651277px;}
.ws13d{word-spacing:7.711052px;}
.ws31{word-spacing:7.770828px;}
.wsac{word-spacing:7.830604px;}
.wsd0{word-spacing:7.890379px;}
.ws70{word-spacing:7.950155px;}
.ws10f{word-spacing:8.009930px;}
.ws111{word-spacing:8.064917px;}
.ws1d{word-spacing:8.069706px;}
.ws11f{word-spacing:8.129482px;}
.ws56{word-spacing:8.189257px;}
.ws123{word-spacing:8.249033px;}
.ws15e{word-spacing:8.308808px;}
.ws26{word-spacing:8.368584px;}
.ws155{word-spacing:8.428360px;}
.wsa7{word-spacing:8.488135px;}
.wsa5{word-spacing:8.547911px;}
.ws6f{word-spacing:8.607686px;}
.ws18e{word-spacing:8.607708px;}
.ws144{word-spacing:8.667462px;}
.wsfc{word-spacing:8.727238px;}
.ws156{word-spacing:8.787013px;}
.ws167{word-spacing:8.798990px;}
.ws1b{word-spacing:8.846789px;}
.wse5{word-spacing:8.906564px;}
.ws129{word-spacing:9.026116px;}
.ws8e{word-spacing:9.085891px;}
.ws3b{word-spacing:9.145667px;}
.ws93{word-spacing:9.166309px;}
.ws80{word-spacing:9.205442px;}
.ws117{word-spacing:9.265218px;}
.ws137{word-spacing:9.324994px;}
.ws48{word-spacing:9.433669px;}
.ws87{word-spacing:9.444545px;}
.ws15b{word-spacing:9.504320px;}
.ws97{word-spacing:9.623872px;}
.ws118{word-spacing:9.683647px;}
.wse4{word-spacing:9.743423px;}
.ws40{word-spacing:9.862974px;}
.wsff{word-spacing:10.281403px;}
.ws17f{word-spacing:10.377070px;}
.ws13f{word-spacing:10.520506px;}
.ws11c{word-spacing:10.580281px;}
.ws7f{word-spacing:10.640057px;}
.ws148{word-spacing:10.699832px;}
.ws14f{word-spacing:10.759608px;}
.ws18f{word-spacing:10.759635px;}
.ws22{word-spacing:10.819384px;}
.ws12a{word-spacing:10.938935px;}
.ws157{word-spacing:11.058486px;}
.wsb6{word-spacing:11.118262px;}
.ws154{word-spacing:11.237813px;}
.ws7e{word-spacing:11.297588px;}
.ws3e{word-spacing:11.378134px;}
.ws3d{word-spacing:11.417140px;}
.ws7b{word-spacing:11.716018px;}
.ws112{word-spacing:11.775793px;}
.ws8a{word-spacing:11.912940px;}
.wsf8{word-spacing:12.194222px;}
.ws14b{word-spacing:12.253998px;}
.ws149{word-spacing:12.313774px;}
.ws116{word-spacing:12.433325px;}
.ws15f{word-spacing:12.612652px;}
.ws6a{word-spacing:12.732203px;}
.ws100{word-spacing:12.851754px;}
.ws15a{word-spacing:13.031081px;}
.ws197{word-spacing:13.963615px;}
.ws66{word-spacing:14.107042px;}
.ws13b{word-spacing:14.615559px;}
.wsa0{word-spacing:14.824349px;}
.wsee{word-spacing:14.884124px;}
.ws122{word-spacing:14.943900px;}
.ws142{word-spacing:15.123227px;}
.wse6{word-spacing:15.302554px;}
.wsf6{word-spacing:16.258963px;}
.ws159{word-spacing:16.787417px;}
.ws186{word-spacing:17.932725px;}
.ws3f{word-spacing:18.291334px;}
.ws114{word-spacing:18.530436px;}
.ws15d{word-spacing:20.299850px;}
.ws14a{word-spacing:22.356074px;}
.wsb5{word-spacing:27.377058px;}
.ws18{word-spacing:44.831700px;}
.wsb9{word-spacing:56.783560px;}
.wsba{word-spacing:56.784883px;}
.wscc{word-spacing:79.205100px;}
.wsc5{word-spacing:94.151100px;}
.wsc0{word-spacing:165.814800px;}
.wsc2{word-spacing:166.661100px;}
.wsc6{word-spacing:185.425225px;}
.wsc9{word-spacing:198.755100px;}
.wscd{word-spacing:200.365225px;}
.wsca{word-spacing:336.328500px;}
.wsc8{word-spacing:341.202248px;}
.wscb{word-spacing:346.134248px;}
.wsbf{word-spacing:395.148248px;}
._3{margin-left:-7.711052px;}
._32{margin-left:-6.581203px;}
._23{margin-left:-5.188047px;}
._5{margin-left:-4.064757px;}
._1{margin-left:-2.391024px;}
._4{margin-left:-1.310296px;}
._1d{width:1.477963px;}
._1b{width:2.978369px;}
._20{width:4.273082px;}
._a{width:5.962742px;}
._14{width:8.129482px;}
._16{width:9.660724px;}
._17{width:10.819384px;}
._3a{width:11.945146px;}
._c{width:13.277435px;}
._38{width:14.404199px;}
._d{width:15.405476px;}
._6{width:16.435259px;}
._b{width:17.477398px;}
._8{width:18.742070px;}
._11{width:20.084602px;}
._7{width:21.495439px;}
._9{width:23.086590px;}
._e{width:24.328685px;}
._f{width:26.181713px;}
._1a{width:27.901328px;}
._13{width:28.941467px;}
._15{width:30.366005px;}
._18{width:32.159273px;}
._12{width:33.653663px;}
._29{width:35.267604px;}
._22{width:36.762010px;}
._19{width:38.302967px;}
._2a{width:39.750774px;}
._1f{width:41.149383px;}
._10{width:42.799330px;}
._28{width:43.875290px;}
._39{width:45.177923px;}
._26{width:46.923846px;}
._1c{width:48.178808px;}
._25{width:49.793075px;}
._24{width:51.875686px;}
._27{width:52.883604px;}
._37{width:55.232654px;}
._21{width:60.525685px;}
._30{width:66.162210px;}
._2c{width:67.307326px;}
._31{width:173.373814px;}
._34{width:192.618439px;}
._33{width:204.367789px;}
._36{width:212.519407px;}
._35{width:221.122767px;}
._2b{width:312.088834px;}
._2f{width:328.609062px;}
._2e{width:346.832709px;}
._2d{width:364.653232px;}
._1e{width:370.264483px;}
._0{width:701.048237px;}
._2{width:735.180104px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs8{font-size:32.412000px;}
.fs4{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs7{font-size:45.354720px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y15f{bottom:2.972950px;}
.y25a{bottom:4.160105px;}
.yb3{bottom:13.160182px;}
.y15d{bottom:15.127491px;}
.y258{bottom:21.168182px;}
.y156{bottom:23.230491px;}
.yb1{bottom:30.168259px;}
.y251{bottom:32.506862px;}
.ya6{bottom:41.506939px;}
.ybb{bottom:46.184144px;}
.yb4{bottom:47.105412px;}
.y20e{bottom:47.235628px;}
.y1f7{bottom:48.400434px;}
.y223{bottom:52.502578px;}
.y1fe{bottom:56.098284px;}
.y21b{bottom:57.212447px;}
.y157{bottom:57.415022px;}
.y137{bottom:59.326500px;}
.y4c{bottom:59.328000px;}
.y218{bottom:60.960084px;}
.ya7{bottom:69.499305px;}
.y20f{bottom:71.190122px;}
.y1f8{bottom:73.570378px;}
.y224{bottom:81.774666px;}
.y252{bottom:81.830120px;}
.yb7{bottom:88.208127px;}
.y1ff{bottom:88.966078px;}
.y205{bottom:89.659796px;}
.y21c{bottom:91.245047px;}
.y158{bottom:91.548909px;}
.y210{bottom:95.195259px;}
.ya8{bottom:97.562538px;}
.y1f9{bottom:98.740322px;}
.y15e{bottom:100.468489px;}
.y221{bottom:101.382000px;}
.y34{bottom:104.158500px;}
.y80{bottom:104.160000px;}
.y250{bottom:106.834500px;}
.y204{bottom:108.344200px;}
.y225{bottom:111.046551px;}
.y229{bottom:116.447200px;}
.y220{bottom:117.820500px;}
.y357{bottom:118.356000px;}
.y211{bottom:119.149551px;}
.y200{bottom:121.783026px;}
.y1cb{bottom:122.091000px;}
.y33{bottom:122.092500px;}
.y1a8{bottom:122.925000px;}
.y1fa{bottom:123.910063px;}
.y24f{bottom:124.767000px;}
.y21d{bottom:125.226801px;}
.ya9{bottom:125.554904px;}
.y159{bottom:125.733238px;}
.y7f{bottom:128.437500px;}
.y253{bottom:131.153378px;}
.y356{bottom:132.552000px;}
.yb8{bottom:134.909315px;}
.y219{bottom:136.469713px;}
.y390{bottom:136.893000px;}
.y7e{bottom:138.688500px;}
.y2e1{bottom:140.023500px;}
.y32{bottom:140.025000px;}
.y226{bottom:140.369282px;}
.y1a7{bottom:140.857500px;}
.y24e{bottom:142.701000px;}
.y212{bottom:143.154688px;}
.y217{bottom:143.376000px;}
.y154{bottom:146.749500px;}
.y1fb{bottom:149.080007px;}
.y38f{bottom:151.089000px;}
.yaa{bottom:153.546987px;}
.y201{bottom:154.650819px;}
.y31{bottom:157.957500px;}
.y291{bottom:158.137500px;}
.y1a6{bottom:158.790000px;}
.y21e{bottom:159.259401px;}
.y277{bottom:159.534000px;}
.y15a{bottom:159.867126px;}
.y24d{bottom:160.633500px;}
.y355{bottom:160.945500px;}
.y213{bottom:167.109182px;}
.y2e0{bottom:167.224500px;}
.y259{bottom:167.482225px;}
.yb2{bottom:168.616093px;}
.y38e{bottom:169.626000px;}
.y227{bottom:169.641369px;}
.y4b{bottom:170.817000px;}
.y7d{bottom:173.950500px;}
.y1fc{bottom:174.249951px;}
.y30{bottom:175.890000px;}
.y290{bottom:176.070000px;}
.y153{bottom:176.388000px;}
.y1a5{bottom:176.722500px;}
.y1e4{bottom:176.766000px;}
.y276{bottom:177.466500px;}
.y24c{bottom:178.566000px;}
.y354{bottom:179.403000px;}
.y254{bottom:180.476352px;}
.yab{bottom:181.610220px;}
.y38d{bottom:183.822000px;}
.y202{bottom:187.518613px;}
.ya3{bottom:187.719000px;}
.y214{bottom:191.114319px;}
.y4a{bottom:191.140500px;}
.y7c{bottom:191.883000px;}
.y21f{bottom:193.241357px;}
.y353{bottom:193.600500px;}
.y2f{bottom:193.822500px;}
.y28f{bottom:194.002500px;}
.y15b{bottom:194.051657px;}
.y152{bottom:194.320500px;}
.y119{bottom:194.529000px;}
.y1a4{bottom:194.655000px;}
.y1e3{bottom:194.698500px;}
.y275{bottom:195.400500px;}
.y49{bottom:196.051500px;}
.y24b{bottom:196.498500px;}
.y209{bottom:196.634488px;}
.y228{bottom:198.913457px;}
.y1fd{bottom:199.419894px;}
.y1bf{bottom:200.547000px;}
.y38c{bottom:202.359000px;}
.y208{bottom:204.737488px;}
.y352{bottom:207.796500px;}
.y2df{bottom:208.249500px;}
.yac{bottom:209.602586px;}
.y7b{bottom:209.817000px;}
.y136{bottom:211.755000px;}
.y2e{bottom:211.756500px;}
.y28e{bottom:211.935000px;}
.y21a{bottom:211.979544px;}
.y151{bottom:212.253000px;}
.y118{bottom:212.461500px;}
.y1a3{bottom:212.589000px;}
.y1e2{bottom:212.631000px;}
.y162{bottom:212.840488px;}
.y2bc{bottom:213.069000px;}
.y274{bottom:213.333000px;}
.y48{bottom:213.984000px;}
.y24a{bottom:214.431000px;}
.y38b{bottom:216.555000px;}
.y203{bottom:220.082544px;}
.y161{bottom:220.943488px;}
.y351{bottom:221.994000px;}
.y2de{bottom:226.182000px;}
.y7a{bottom:227.749500px;}
.y15c{bottom:228.185544px;}
.yb9{bottom:228.240542px;}
.y314{bottom:229.687500px;}
.y2d{bottom:229.689000px;}
.y255{bottom:229.728743px;}
.y28d{bottom:229.867500px;}
.y150{bottom:230.187000px;}
.y117{bottom:230.394000px;}
.y1e1{bottom:230.563500px;}
.y38a{bottom:230.752500px;}
.y2bb{bottom:231.001500px;}
.y273{bottom:231.265500px;}
.y1a2{bottom:231.354000px;}
.y1be{bottom:231.831000px;}
.y47{bottom:231.916500px;}
.y207{bottom:232.186401px;}
.y249{bottom:232.363500px;}
.y350{bottom:236.190000px;}
.yad{bottom:237.594953px;}
.y160{bottom:240.340044px;}
.y2dd{bottom:244.114500px;}
.y313{bottom:247.620000px;}
.y2c{bottom:247.621500px;}
.y1f5{bottom:247.669500px;}
.y28c{bottom:247.980000px;}
.y14f{bottom:248.119500px;}
.y116{bottom:248.328000px;}
.y206{bottom:248.443044px;}
.y1e0{bottom:248.497500px;}
.y2ba{bottom:248.934000px;}
.yd2{bottom:249.151500px;}
.y272{bottom:249.198000px;}
.y1a1{bottom:249.286500px;}
.y389{bottom:249.288000px;}
.y1bd{bottom:249.763500px;}
.y46{bottom:249.850500px;}
.y248{bottom:250.297500px;}
.y34f{bottom:250.387500px;}
.y79{bottom:252.406500px;}
.y180{bottom:252.915000px;}
.y193{bottom:256.503000px;}
.y2dc{bottom:262.047000px;}
.y388{bottom:263.485500px;}
.y34e{bottom:264.583500px;}
.ya2{bottom:265.554000px;}
.yae{bottom:265.587319px;}
.y1f4{bottom:265.602000px;}
.y28b{bottom:265.914000px;}
.y14e{bottom:266.052000px;}
.y115{bottom:266.260500px;}
.y1df{bottom:266.430000px;}
.y192{bottom:266.755500px;}
.y2b9{bottom:266.866500px;}
.y1a0{bottom:267.219000px;}
.y1bc{bottom:267.697500px;}
.y45{bottom:267.783000px;}
.y2b{bottom:268.176000px;}
.y247{bottom:268.230000px;}
.y271{bottom:268.707000px;}
.ye4{bottom:272.427000px;}
.y135{bottom:274.440000px;}
.yba{bottom:274.941730px;}
.yd1{bottom:275.442000px;}
.y256{bottom:279.052001px;}
.y2db{bottom:279.979500px;}
.y387{bottom:282.021000px;}
.y17f{bottom:283.042500px;}
.y78{bottom:283.486500px;}
.y1f3{bottom:283.534500px;}
.y28a{bottom:283.846500px;}
.y309{bottom:283.873500px;}
.y114{bottom:284.193000px;}
.y1de{bottom:284.362500px;}
.y2b8{bottom:284.799000px;}
.y19f{bottom:285.151500px;}
.y1bb{bottom:285.630000px;}
.y44{bottom:285.715500px;}
.y2a{bottom:286.110000px;}
.y246{bottom:286.162500px;}
.y270{bottom:286.641000px;}
.y14d{bottom:290.709000px;}
.yaf{bottom:293.650552px;}
.y2da{bottom:297.912000px;}
.yb6{bottom:300.170293px;}
.y386{bottom:300.558000px;}
.y17e{bottom:300.975000px;}
.y77{bottom:301.419000px;}
.y1f2{bottom:301.468500px;}
.y34d{bottom:301.500000px;}
.y289{bottom:301.779000px;}
.y308{bottom:301.807500px;}
.y113{bottom:302.125500px;}
.y1dd{bottom:302.295000px;}
.y2b7{bottom:302.733000px;}
.y19e{bottom:303.085500px;}
.y1ba{bottom:303.562500px;}
.y43{bottom:303.648000px;}
.y29{bottom:304.042500px;}
.y245{bottom:304.095000px;}
.ye3{bottom:304.369500px;}
.y26f{bottom:304.573500px;}
.y191{bottom:305.824500px;}
.yb5{bottom:311.508973px;}
.yd0{bottom:313.021500px;}
.y134{bottom:314.019000px;}
.y34c{bottom:315.696000px;}
.y2d9{bottom:315.846000px;}
.y25b{bottom:318.241541px;}
.y17d{bottom:318.909000px;}
.y385{bottom:319.093500px;}
.y76{bottom:319.351500px;}
.y1f1{bottom:319.401000px;}
.y288{bottom:319.711500px;}
.y307{bottom:319.740000px;}
.y112{bottom:320.058000px;}
.y1dc{bottom:320.227500px;}
.y14c{bottom:320.349000px;}
.y1ca{bottom:320.424000px;}
.y2b6{bottom:320.665500px;}
.y19d{bottom:321.018000px;}
.y1b9{bottom:321.495000px;}
.y42{bottom:321.580500px;}
.yb0{bottom:321.642918px;}
.y28{bottom:321.975000px;}
.y244{bottom:322.027500px;}
.ye2{bottom:322.302000px;}
.y26e{bottom:322.506000px;}
.y190{bottom:323.757000px;}
.y338{bottom:327.385500px;}
.y257{bottom:328.375259px;}
.y34b{bottom:329.893500px;}
.ycf{bottom:330.954000px;}
.y133{bottom:331.951500px;}
.ya1{bottom:332.722500px;}
.y384{bottom:333.291000px;}
.y2d8{bottom:333.778500px;}
.y17c{bottom:336.841500px;}
.y312{bottom:337.284000px;}
.y75{bottom:337.285500px;}
.y1f0{bottom:337.333500px;}
.y287{bottom:337.644000px;}
.y306{bottom:337.672500px;}
.y111{bottom:337.990500px;}
.y1db{bottom:338.161500px;}
.y14b{bottom:338.281500px;}
.y1c9{bottom:338.356500px;}
.y2b5{bottom:338.598000px;}
.y19c{bottom:338.950500px;}
.y1b8{bottom:339.427500px;}
.y41{bottom:339.514500px;}
.y27{bottom:339.907500px;}
.y243{bottom:339.961500px;}
.ye1{bottom:340.236000px;}
.y18f{bottom:341.689500px;}
.y26d{bottom:342.015000px;}
.ya5{bottom:342.052542px;}
.y34a{bottom:344.089500px;}
.ya0{bottom:345.850500px;}
.y383{bottom:347.487000px;}
.yce{bottom:348.886500px;}
.y132{bottom:349.884000px;}
.y2d7{bottom:353.464500px;}
.y17b{bottom:354.774000px;}
.y311{bottom:355.216500px;}
.y74{bottom:355.218000px;}
.y1ef{bottom:355.266000px;}
.y286{bottom:355.576500px;}
.y305{bottom:355.605000px;}
.y110{bottom:355.924500px;}
.y14a{bottom:356.214000px;}
.y1c8{bottom:356.289000px;}
.y2b4{bottom:356.530500px;}
.y19b{bottom:356.883000px;}
.y1da{bottom:356.970000px;}
.y1b7{bottom:357.360000px;}
.y40{bottom:357.447000px;}
.y26{bottom:357.840000px;}
.y242{bottom:357.894000px;}
.ye0{bottom:358.168500px;}
.y18e{bottom:359.622000px;}
.y26c{bottom:359.947500px;}
.y349{bottom:362.547000px;}
.y337{bottom:363.732000px;}
.y382{bottom:366.024000px;}
.ycd{bottom:366.820500px;}
.y131{bottom:367.816500px;}
.y2d6{bottom:371.397000px;}
.y17a{bottom:372.706500px;}
.y73{bottom:373.150500px;}
.y1ee{bottom:373.198500px;}
.y285{bottom:373.510500px;}
.y304{bottom:373.537500px;}
.y10f{bottom:373.857000px;}
.y149{bottom:374.146500px;}
.y1c7{bottom:374.221500px;}
.y2b3{bottom:374.463000px;}
.y19a{bottom:374.815500px;}
.y1d9{bottom:374.902500px;}
.y9f{bottom:375.087000px;}
.y1b6{bottom:375.294000px;}
.y3f{bottom:375.379500px;}
.y25{bottom:375.774000px;}
.y241{bottom:375.826500px;}
.ydf{bottom:376.101000px;}
.y348{bottom:376.744500px;}
.y18d{bottom:377.556000px;}
.y26b{bottom:377.881500px;}
.y381{bottom:380.220000px;}
.y336{bottom:381.666000px;}
.ycc{bottom:384.753000px;}
.y130{bottom:387.240000px;}
.y2d5{bottom:389.329500px;}
.y179{bottom:390.639000px;}
.y72{bottom:391.083000px;}
.y1ed{bottom:391.131000px;}
.y284{bottom:391.443000px;}
.y303{bottom:391.471500px;}
.y10e{bottom:391.789500px;}
.y148{bottom:392.079000px;}
.y1c6{bottom:392.154000px;}
.y2b2{bottom:392.395500px;}
.y199{bottom:392.748000px;}
.y1d8{bottom:392.835000px;}
.y9e{bottom:393.019500px;}
.y1b5{bottom:393.226500px;}
.y3e{bottom:393.312000px;}
.y24{bottom:393.706500px;}
.y240{bottom:393.759000px;}
.yde{bottom:394.033500px;}
.y347{bottom:395.202000px;}
.y18c{bottom:395.488500px;}
.y26a{bottom:397.390500px;}
.y380{bottom:398.757000px;}
.y335{bottom:399.598500px;}
.ycb{bottom:402.685500px;}
.y12f{bottom:405.172500px;}
.y2d4{bottom:407.262000px;}
.y178{bottom:408.571500px;}
.y71{bottom:409.015500px;}
.y1ec{bottom:409.065000px;}
.y283{bottom:409.375500px;}
.y346{bottom:409.399500px;}
.y302{bottom:409.404000px;}
.y10d{bottom:409.722000px;}
.y147{bottom:410.011500px;}
.y1c5{bottom:410.088000px;}
.y2b1{bottom:410.329500px;}
.y198{bottom:410.682000px;}
.y1d7{bottom:410.767500px;}
.y9d{bottom:410.952000px;}
.y1b4{bottom:411.159000px;}
.y23{bottom:411.639000px;}
.y23f{bottom:411.691500px;}
.ydd{bottom:412.068000px;}
.y37f{bottom:412.953000px;}
.y18b{bottom:413.421000px;}
.y3d{bottom:413.716500px;}
.y269{bottom:415.323000px;}
.y334{bottom:417.531000px;}
.yca{bottom:420.618000px;}
.y12e{bottom:423.105000px;}
.y2d3{bottom:425.194500px;}
.y177{bottom:426.505500px;}
.y70{bottom:426.948000px;}
.y282{bottom:427.308000px;}
.y301{bottom:427.336500px;}
.y10c{bottom:427.654500px;}
.y345{bottom:427.857000px;}
.y146{bottom:427.945500px;}
.y1c4{bottom:428.020500px;}
.y197{bottom:428.614500px;}
.y1d6{bottom:428.700000px;}
.y9c{bottom:428.884500px;}
.y1b3{bottom:429.091500px;}
.y22{bottom:429.571500px;}
.y23e{bottom:429.624000px;}
.y216{bottom:429.937500px;}
.ydc{bottom:430.000500px;}
.y18a{bottom:431.353500px;}
.y37e{bottom:431.490000px;}
.y3c{bottom:431.649000px;}
.y268{bottom:433.255500px;}
.y1eb{bottom:433.792500px;}
.y333{bottom:435.463500px;}
.y2b0{bottom:436.890000px;}
.yc9{bottom:438.550500px;}
.y12d{bottom:441.039000px;}
.y344{bottom:442.053000px;}
.y2d2{bottom:443.128500px;}
.y176{bottom:444.438000px;}
.y310{bottom:444.880500px;}
.y6f{bottom:444.882000px;}
.y281{bottom:445.240500px;}
.y300{bottom:445.269000px;}
.y37d{bottom:445.686000px;}
.y145{bottom:445.878000px;}
.y1c3{bottom:445.953000px;}
.y10b{bottom:446.293500px;}
.y215{bottom:446.376000px;}
.y1d5{bottom:446.632500px;}
.y9b{bottom:446.818500px;}
.y1b2{bottom:447.024000px;}
.y21{bottom:447.504000px;}
.y23d{bottom:447.558000px;}
.ydb{bottom:447.934500px;}
.y189{bottom:449.286000px;}
.y3b{bottom:449.583000px;}
.y267{bottom:451.189500px;}
.y332{bottom:453.396000px;}
.y196{bottom:454.479000px;}
.yc8{bottom:457.609500px;}
.y12c{bottom:458.971500px;}
.y343{bottom:460.510500px;}
.y175{bottom:462.370500px;}
.y6e{bottom:462.814500px;}
.y280{bottom:463.173000px;}
.y2ff{bottom:463.201500px;}
.y144{bottom:463.810500px;}
.y1c2{bottom:463.885500px;}
.y37c{bottom:464.223000px;}
.y10a{bottom:464.226000px;}
.y1d4{bottom:464.566500px;}
.y9a{bottom:464.751000px;}
.y1b1{bottom:464.956500px;}
.y20{bottom:465.436500px;}
.y1ea{bottom:465.441000px;}
.y23c{bottom:465.490500px;}
.yda{bottom:465.867000px;}
.y3a{bottom:467.515500px;}
.y266{bottom:469.122000px;}
.y331{bottom:471.330000px;}
.y20d{bottom:471.931500px;}
.y342{bottom:474.708000px;}
.y2af{bottom:475.494000px;}
.yc7{bottom:475.543500px;}
.y188{bottom:475.762500px;}
.y12b{bottom:476.904000px;}
.y174{bottom:480.303000px;}
.y6d{bottom:480.747000px;}
.y27f{bottom:481.107000px;}
.y143{bottom:481.743000px;}
.y1c1{bottom:481.818000px;}
.y109{bottom:482.158500px;}
.y1d3{bottom:482.499000px;}
.y99{bottom:482.683500px;}
.y37b{bottom:482.758500px;}
.y1b0{bottom:482.890500px;}
.y1f{bottom:483.370500px;}
.y1e9{bottom:483.373500px;}
.y23b{bottom:483.423000px;}
.yd9{bottom:483.799500px;}
.y39{bottom:485.448000px;}
.y265{bottom:487.054500px;}
.y2fe{bottom:488.421000px;}
.y341{bottom:488.905500px;}
.y330{bottom:489.262500px;}
.y195{bottom:490.440000px;}
.y2ae{bottom:493.428000px;}
.y12a{bottom:494.836500px;}
.y173{bottom:498.235500px;}
.y6c{bottom:498.679500px;}
.yc6{bottom:498.900000px;}
.y27e{bottom:499.039500px;}
.y142{bottom:499.675500px;}
.y1c0{bottom:499.750500px;}
.y108{bottom:500.092500px;}
.y1d2{bottom:500.431500px;}
.y1af{bottom:500.823000px;}
.y37a{bottom:501.295500px;}
.y1e{bottom:501.303000px;}
.y1e8{bottom:501.307500px;}
.y23a{bottom:501.355500px;}
.yd8{bottom:501.732000px;}
.y38{bottom:503.380500px;}
.y264{bottom:506.563500px;}
.y32f{bottom:507.195000px;}
.y340{bottom:507.363000px;}
.y194{bottom:508.372500px;}
.y187{bottom:508.374000px;}
.y98{bottom:510.027000px;}
.y2ad{bottom:511.360500px;}
.yc5{bottom:511.408500px;}
.y129{bottom:512.769000px;}
.y379{bottom:515.491500px;}
.y172{bottom:516.169500px;}
.y6b{bottom:516.612000px;}
.y27d{bottom:517.152000px;}
.y141{bottom:517.608000px;}
.y107{bottom:518.025000px;}
.y1d1{bottom:518.364000px;}
.y1ae{bottom:518.755500px;}
.y1d{bottom:519.235500px;}
.y1e7{bottom:519.240000px;}
.y239{bottom:519.288000px;}
.yd7{bottom:519.664500px;}
.y37{bottom:521.313000px;}
.y33f{bottom:521.559000px;}
.y2fd{bottom:521.935500px;}
.y263{bottom:524.496000px;}
.y32e{bottom:526.030500px;}
.y186{bottom:526.306500px;}
.y2ac{bottom:529.293000px;}
.yc4{bottom:529.341000px;}
.y128{bottom:532.192500px;}
.y378{bottom:534.028500px;}
.y171{bottom:534.102000px;}
.y6a{bottom:534.544500px;}
.y27c{bottom:535.084500px;}
.y140{bottom:535.542000px;}
.y33e{bottom:535.756500px;}
.y106{bottom:535.957500px;}
.y1d0{bottom:536.296500px;}
.y1ad{bottom:536.688000px;}
.y1c{bottom:537.168000px;}
.y1e6{bottom:537.172500px;}
.y238{bottom:537.220500px;}
.yd6{bottom:537.597000px;}
.y2fc{bottom:539.868000px;}
.y36{bottom:541.717500px;}
.y32d{bottom:543.963000px;}
.y262{bottom:544.006500px;}
.y185{bottom:544.239000px;}
.yc3{bottom:547.273500px;}
.y377{bottom:548.224500px;}
.y2ab{bottom:548.538000px;}
.y127{bottom:550.125000px;}
.y97{bottom:551.593500px;}
.y170{bottom:552.034500px;}
.y2d1{bottom:552.477000px;}
.y69{bottom:552.478500px;}
.y27b{bottom:553.017000px;}
.y13f{bottom:553.474500px;}
.y105{bottom:553.890000px;}
.y33d{bottom:554.214000px;}
.y1cf{bottom:554.229000px;}
.y1ac{bottom:554.620500px;}
.y1e5{bottom:555.105000px;}
.y237{bottom:555.154500px;}
.yd5{bottom:555.531000px;}
.y2fb{bottom:557.800500px;}
.y35{bottom:559.651500px;}
.y32c{bottom:561.895500px;}
.y261{bottom:561.939000px;}
.y184{bottom:562.171500px;}
.y376{bottom:562.422000px;}
.yc2{bottom:565.207500px;}
.y2aa{bottom:566.472000px;}
.y126{bottom:568.057500px;}
.y33c{bottom:568.410000px;}
.y96{bottom:569.527500px;}
.y16f{bottom:569.967000px;}
.y68{bottom:570.411000px;}
.y27a{bottom:570.949500px;}
.y13e{bottom:571.407000px;}
.y104{bottom:571.822500px;}
.y1ab{bottom:572.553000px;}
.y1ce{bottom:573.037500px;}
.y236{bottom:573.087000px;}
.yd4{bottom:573.463500px;}
.y2fa{bottom:575.734500px;}
.y1b{bottom:577.584000px;}
.y32b{bottom:579.828000px;}
.y260{bottom:579.871500px;}
.y375{bottom:580.957500px;}
.y33b{bottom:582.607500px;}
.yc1{bottom:583.140000px;}
.y2a9{bottom:584.404500px;}
.y125{bottom:585.991500px;}
.y95{bottom:587.460000px;}
.y16e{bottom:587.943000px;}
.y67{bottom:588.343500px;}
.y279{bottom:588.882000px;}
.y13d{bottom:589.339500px;}
.y103{bottom:589.756500px;}
.y235{bottom:591.019500px;}
.yd3{bottom:591.396000px;}
.y2f9{bottom:593.667000px;}
.y374{bottom:595.155000px;}
.y32a{bottom:597.760500px;}
.y25f{bottom:597.804000px;}
.y2a8{bottom:602.337000px;}
.y33a{bottom:603.529500px;}
.y124{bottom:603.924000px;}
.y94{bottom:605.392500px;}
.y16d{bottom:605.875500px;}
.y66{bottom:606.276000px;}
.y278{bottom:606.816000px;}
.y13c{bottom:607.272000px;}
.y102{bottom:607.689000px;}
.y183{bottom:607.803000px;}
.y2d0{bottom:608.029500px;}
.y234{bottom:608.952000px;}
.y373{bottom:609.351000px;}
.yc0{bottom:609.430500px;}
.y1a{bottom:610.602000px;}
.y2f8{bottom:611.599500px;}
.y1aa{bottom:611.806500px;}
.y329{bottom:615.694500px;}
.y2a7{bottom:620.269500px;}
.y1cd{bottom:620.796000px;}
.y93{bottom:623.325000px;}
.y123{bottom:623.346000px;}
.y16c{bottom:623.809500px;}
.y65{bottom:624.208500px;}
.y182{bottom:624.241500px;}
.y25e{bottom:624.748500px;}
.y13b{bottom:625.206000px;}
.y101{bottom:625.621500px;}
.y2cf{bottom:625.962000px;}
.y233{bottom:626.884500px;}
.y19{bottom:627.040500px;}
.y372{bottom:627.888000px;}
.y1a9{bottom:628.245000px;}
.y2f7{bottom:629.532000px;}
.y328{bottom:633.627000px;}
.y339{bottom:634.810500px;}
.y1cc{bottom:637.233000px;}
.y2a6{bottom:639.516000px;}
.y181{bottom:640.680000px;}
.y92{bottom:641.257500px;}
.y122{bottom:641.280000px;}
.y16b{bottom:641.742000px;}
.y371{bottom:642.084000px;}
.y30f{bottom:642.141000px;}
.y64{bottom:642.142500px;}
.y13a{bottom:643.138500px;}
.y18{bottom:643.479000px;}
.y100{bottom:643.554000px;}
.y2ce{bottom:643.894500px;}
.y232{bottom:644.817000px;}
.y2f6{bottom:647.853000px;}
.ybf{bottom:650.809500px;}
.y327{bottom:651.559500px;}
.y2a5{bottom:657.448500px;}
.y91{bottom:659.191500px;}
.y121{bottom:659.212500px;}
.y16a{bottom:659.674500px;}
.y17{bottom:659.916000px;}
.y30e{bottom:660.073500px;}
.y63{bottom:660.075000px;}
.y370{bottom:660.621000px;}
.yff{bottom:661.486500px;}
.y2cd{bottom:661.827000px;}
.y231{bottom:662.751000px;}
.y2f5{bottom:665.785500px;}
.ybe{bottom:667.248000px;}
.y139{bottom:667.795500px;}
.y25d{bottom:668.253000px;}
.y326{bottom:669.492000px;}
.y36f{bottom:674.817000px;}
.y2a4{bottom:675.381000px;}
.y16{bottom:676.354500px;}
.y120{bottom:677.145000px;}
.y169{bottom:677.607000px;}
.y62{bottom:678.007500px;}
.yfe{bottom:679.419000px;}
.y2cc{bottom:679.759500px;}
.y230{bottom:680.683500px;}
.ybd{bottom:683.686500px;}
.y2f4{bottom:683.718000px;}
.y25c{bottom:684.691500px;}
.y138{bottom:685.728000px;}
.y90{bottom:686.533500px;}
.y325{bottom:687.424500px;}
.y36e{bottom:689.014500px;}
.y15{bottom:692.793000px;}
.y2a3{bottom:693.313500px;}
.y168{bottom:695.539500px;}
.y61{bottom:695.940000px;}
.y11f{bottom:696.568500px;}
.yfd{bottom:697.353000px;}
.y2cb{bottom:697.693500px;}
.y22f{bottom:698.616000px;}
.ybc{bottom:700.125000px;}
.y2f3{bottom:701.650500px;}
.y36d{bottom:703.210500px;}
.y324{bottom:705.358500px;}
.y14{bottom:709.231500px;}
.y2a2{bottom:711.246000px;}
.ya4{bottom:712.374000px;}
.y167{bottom:713.473500px;}
.y60{bottom:713.872500px;}
.y11e{bottom:714.501000px;}
.yfc{bottom:715.285500px;}
.y22e{bottom:716.548500px;}
.y36c{bottom:717.408000px;}
.y2f2{bottom:719.583000px;}
.y323{bottom:723.291000px;}
.y2ca{bottom:724.893000px;}
.y13{bottom:725.670000px;}
.y8f{bottom:728.101500px;}
.y2a1{bottom:729.180000px;}
.y166{bottom:731.406000px;}
.y36b{bottom:731.604000px;}
.y5f{bottom:731.805000px;}
.y11d{bottom:732.433500px;}
.yfb{bottom:733.218000px;}
.y22d{bottom:734.481000px;}
.y2f1{bottom:737.515500px;}
.y322{bottom:741.223500px;}
.y12{bottom:742.108500px;}
.y36a{bottom:745.801500px;}
.y8e{bottom:746.034000px;}
.y2a0{bottom:747.112500px;}
.y30d{bottom:749.737500px;}
.y5e{bottom:749.739000px;}
.y11c{bottom:750.366000px;}
.yfa{bottom:751.150500px;}
.y22c{bottom:752.415000px;}
.y2f0{bottom:755.449500px;}
.y20c{bottom:755.863500px;}
.y11{bottom:758.547000px;}
.y321{bottom:759.156000px;}
.y8d{bottom:763.966500px;}
.y369{bottom:764.337000px;}
.y165{bottom:764.368500px;}
.y29f{bottom:765.045000px;}
.y2c9{bottom:765.918000px;}
.y30c{bottom:767.670000px;}
.y5d{bottom:767.671500px;}
.y11b{bottom:768.298500px;}
.yf9{bottom:769.789500px;}
.y20b{bottom:772.302000px;}
.y2ef{bottom:773.382000px;}
.y10{bottom:774.985500px;}
.y320{bottom:777.088500px;}
.y368{bottom:778.534500px;}
.y164{bottom:780.807000px;}
.y29e{bottom:782.977500px;}
.y8c{bottom:783.751500px;}
.y2c8{bottom:783.850500px;}
.y22b{bottom:785.058000px;}
.y5c{bottom:785.604000px;}
.y11a{bottom:786.232500px;}
.yf8{bottom:787.722000px;}
.y20a{bottom:788.740500px;}
.y2ee{bottom:791.314500px;}
.yf{bottom:791.424000px;}
.y31f{bottom:795.021000px;}
.y367{bottom:797.070000px;}
.y163{bottom:797.245500px;}
.y29d{bottom:800.910000px;}
.y22a{bottom:801.496500px;}
.y8b{bottom:801.684000px;}
.y2c7{bottom:801.783000px;}
.y5b{bottom:803.536500px;}
.yf7{bottom:805.654500px;}
.ye{bottom:807.862500px;}
.y2ed{bottom:809.247000px;}
.y366{bottom:811.267500px;}
.y31e{bottom:812.955000px;}
.y1f6{bottom:814.296000px;}
.y155{bottom:818.548500px;}
.y29c{bottom:818.842500px;}
.y8a{bottom:819.618000px;}
.y2c6{bottom:819.715500px;}
.y5a{bottom:821.469000px;}
.y222{bottom:822.801000px;}
.yd{bottom:824.299500px;}
.y2ec{bottom:827.179500px;}
.y365{bottom:829.803000px;}
.y31d{bottom:830.887500px;}
.y29b{bottom:836.776500px;}
.y89{bottom:837.550500px;}
.y2c5{bottom:837.648000px;}
.y59{bottom:839.401500px;}
.yc{bottom:840.738000px;}
.y364{bottom:844.000500px;}
.y2eb{bottom:845.113500px;}
.y31c{bottom:848.820000px;}
.yf6{bottom:854.454000px;}
.y29a{bottom:854.709000px;}
.y88{bottom:855.483000px;}
.y2c4{bottom:855.582000px;}
.yb{bottom:857.176500px;}
.y30b{bottom:857.334000px;}
.y58{bottom:857.335500px;}
.y363{bottom:862.536000px;}
.y31b{bottom:866.752500px;}
.y2ea{bottom:870.333000px;}
.y299{bottom:872.641500px;}
.y87{bottom:873.415500px;}
.y2c3{bottom:873.514500px;}
.ya{bottom:873.615000px;}
.y57{bottom:875.268000px;}
.yf3{bottom:879.112500px;}
.yf5{bottom:879.886500px;}
.yf4{bottom:880.027500px;}
.y362{bottom:881.073000px;}
.y31a{bottom:884.685000px;}
.y9{bottom:890.053500px;}
.y298{bottom:890.574000px;}
.y86{bottom:891.348000px;}
.y2c2{bottom:891.447000px;}
.y56{bottom:893.200500px;}
.yf2{bottom:895.498500px;}
.y361{bottom:899.608500px;}
.y319{bottom:902.617500px;}
.y2e9{bottom:903.846000px;}
.y8{bottom:906.492000px;}
.y297{bottom:908.506500px;}
.y85{bottom:909.282000px;}
.y2c1{bottom:909.379500px;}
.y55{bottom:911.133000px;}
.y360{bottom:913.806000px;}
.yf1{bottom:919.435500px;}
.yf0{bottom:920.155500px;}
.y318{bottom:920.551500px;}
.y2e8{bottom:921.778500px;}
.y7{bottom:922.930500px;}
.y84{bottom:927.214500px;}
.y2c0{bottom:927.312000px;}
.y397{bottom:927.571500px;}
.y296{bottom:927.753000px;}
.y35f{bottom:928.002000px;}
.y54{bottom:929.065500px;}
.yef{bottom:933.493500px;}
.y317{bottom:938.484000px;}
.y2e7{bottom:939.712500px;}
.y396{bottom:941.767500px;}
.y83{bottom:945.147000px;}
.y6{bottom:945.171000px;}
.y2bf{bottom:945.244500px;}
.y295{bottom:945.685500px;}
.y35e{bottom:946.539000px;}
.y53{bottom:946.998000px;}
.y395{bottom:955.965000px;}
.y316{bottom:956.416500px;}
.yee{bottom:957.430500px;}
.yed{bottom:957.559500px;}
.y2e6{bottom:957.645000px;}
.yec{bottom:958.150500px;}
.y5{bottom:959.367000px;}
.y35d{bottom:960.735000px;}
.y82{bottom:963.079500px;}
.y2be{bottom:963.178500px;}
.y294{bottom:963.618000px;}
.y30a{bottom:964.930500px;}
.y52{bottom:964.932000px;}
.yeb{bottom:974.536500px;}
.y394{bottom:974.644500px;}
.y35c{bottom:974.932500px;}
.y2e5{bottom:975.577500px;}
.y4{bottom:978.951000px;}
.y81{bottom:981.012000px;}
.y293{bottom:981.550500px;}
.y315{bottom:982.383000px;}
.y51{bottom:982.864500px;}
.y393{bottom:993.325500px;}
.y35b{bottom:993.468000px;}
.y2e4{bottom:993.510000px;}
.ye7{bottom:999.193500px;}
.y292{bottom:999.484500px;}
.y50{bottom:1000.797000px;}
.ye6{bottom:1006.666500px;}
.y392{bottom:1007.521500px;}
.y2e3{bottom:1011.442500px;}
.y35a{bottom:1012.005000px;}
.y3{bottom:1014.817500px;}
.yea{bottom:1016.529000px;}
.ye8{bottom:1017.015000px;}
.ye9{bottom:1017.126000px;}
.y4f{bottom:1018.729500px;}
.y391{bottom:1021.719000px;}
.y359{bottom:1026.201000px;}
.y2e2{bottom:1029.375000px;}
.y4e{bottom:1036.662000px;}
.y2{bottom:1039.833000px;}
.y358{bottom:1040.398500px;}
.ye5{bottom:1049.668500px;}
.y2bd{bottom:1054.594500px;}
.y4d{bottom:1054.596000px;}
.y1{bottom:1114.632000px;}
.h1a{height:21.758256px;}
.h2b{height:23.725584px;}
.h28{height:24.017292px;}
.h3{height:32.900573px;}
.h2d{height:33.140573px;}
.h18{height:33.199655px;}
.h4{height:37.013299px;}
.h25{height:41.006062px;}
.h1{height:41.125613px;}
.h6{height:41.364715px;}
.hd{height:41.419613px;}
.he{height:43.454256px;}
.h19{height:43.460256px;}
.h5{height:44.205533px;}
.h2a{height:44.423434px;}
.h7{height:50.406161px;}
.h2c{height:50.483846px;}
.h1d{height:50.489846px;}
.h1b{height:55.523434px;}
.ha{height:56.070161px;}
.h8{height:56.292161px;}
.h2{height:59.565422px;}
.h9{height:60.769613px;}
.hc{height:61.417613px;}
.h20{height:61.939613px;}
.h14{height:65.478632px;}
.h15{height:65.539613px;}
.h21{height:68.417846px;}
.h1e{height:68.729846px;}
.h24{height:70.733846px;}
.h1f{height:70.781846px;}
.h22{height:71.297846px;}
.h23{height:74.393846px;}
.hb{height:76.362161px;}
.h1c{height:79.489613px;}
.h26{height:80.925312px;}
.h16{height:81.009312px;}
.h29{height:81.589613px;}
.hf{height:81.595613px;}
.h13{height:93.637613px;}
.h12{height:97.920806px;}
.h11{height:122.599613px;}
.h10{height:128.699434px;}
.h27{height:255.244500px;}
.h17{height:357.168420px;}
.h0{height:1188.000000px;}
.w2{width:364.635000px;}
.w1{width:510.240600px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x40{left:9.181550px;}
.x54{left:12.847915px;}
.x1d{left:19.651066px;}
.x3d{left:21.596419px;}
.x4b{left:23.580642px;}
.x3f{left:26.546846px;}
.x4a{left:28.085504px;}
.x1b{left:33.496162px;}
.x4c{left:36.275612px;}
.x3e{left:37.809104px;}
.x1a{left:39.800042px;}
.x19{left:46.103782px;}
.x4f{left:47.138291px;}
.x53{left:49.572992px;}
.x1c{left:57.635219px;}
.x1e{left:62.362740px;}
.x55{left:65.051708px;}
.x1f{left:84.606112px;}
.x1{left:86.400000px;}
.x8{left:87.894000px;}
.x63{left:90.136500px;}
.x30{left:100.773000px;}
.x9{left:108.816000px;}
.x62{left:112.552500px;}
.x3c{left:120.024000px;}
.x42{left:123.128124px;}
.x64{left:134.466000px;}
.x4e{left:143.722911px;}
.x31{left:147.997500px;}
.x52{left:152.710760px;}
.x10{left:155.952000px;}
.x41{left:160.289495px;}
.x2{left:164.089500px;}
.x45{left:171.496500px;}
.x18{left:182.659048px;}
.x23{left:189.731550px;}
.x38{left:191.641500px;}
.x46{left:195.622500px;}
.x56{left:196.772870px;}
.x17{left:203.386500px;}
.x3b{left:205.128000px;}
.x57{left:206.128925px;}
.x21{left:209.880384px;}
.x20{left:216.184690px;}
.x50{left:219.117275px;}
.x7{left:224.646000px;}
.x22{left:227.714710px;}
.x25{left:232.442940px;}
.x43{left:237.123153px;}
.x47{left:239.940000px;}
.x3{left:241.408500px;}
.x65{left:243.652500px;}
.x26{left:249.640883px;}
.x24{left:257.885521px;}
.x48{left:270.370500px;}
.x11{left:277.077000px;}
.x27{left:279.891064px;}
.x51{left:283.947352px;}
.x44{left:286.661857px;}
.x49{left:313.614000px;}
.x5{left:321.666000px;}
.x12{left:322.933500px;}
.x4d{left:348.595962px;}
.x5a{left:353.008542px;}
.xf{left:354.403500px;}
.x2b{left:359.811750px;}
.x58{left:366.853070px;}
.x29{left:373.656278px;}
.x6{left:379.386000px;}
.x28{left:386.264890px;}
.x59{left:389.733109px;}
.x2a{left:397.794910px;}
.x2d{left:402.523140px;}
.x32{left:405.922500px;}
.x4{left:419.277000px;}
.x2e{left:422.884575px;}
.x2c{left:427.965721px;}
.x39{left:434.662500px;}
.x2f{left:449.971264px;}
.xa{left:465.976500px;}
.x13{left:467.470500px;}
.x61{left:469.713000px;}
.xc{left:473.448000px;}
.x5c{left:475.690500px;}
.xb{left:488.392500px;}
.x5d{left:492.129000px;}
.x33{left:504.154500px;}
.x34{left:513.813000px;}
.x5f{left:530.946000px;}
.x3a{left:540.016500px;}
.x60{left:545.196000px;}
.x5e{left:547.312500px;}
.xd{left:584.565000px;}
.x14{left:586.716000px;}
.x35{left:601.641000px;}
.x15{left:650.325000px;}
.xe{left:659.557500px;}
.x5b{left:668.581500px;}
.x36{left:686.014500px;}
.x37{left:695.914500px;}
.x16{left:697.150500px;}
@media print{
.vd{vertical-align:-74.970667pt;}
.v12{vertical-align:-19.285333pt;}
.v18{vertical-align:-14.554667pt;}
.v2{vertical-align:-7.973333pt;}
.v6{vertical-align:-5.578667pt;}
.v17{vertical-align:-1.856000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:7.973333pt;}
.v4{vertical-align:13.712000pt;}
.v13{vertical-align:15.354667pt;}
.v1{vertical-align:17.360000pt;}
.v3{vertical-align:19.290667pt;}
.v11{vertical-align:21.701333pt;}
.v5{vertical-align:24.522667pt;}
.v10{vertical-align:32.800000pt;}
.v14{vertical-align:34.101333pt;}
.v8{vertical-align:35.973333pt;}
.v15{vertical-align:37.328000pt;}
.vb{vertical-align:44.416000pt;}
.vf{vertical-align:46.677333pt;}
.ve{vertical-align:55.258667pt;}
.va{vertical-align:72.421333pt;}
.v9{vertical-align:74.976000pt;}
.v16{vertical-align:111.424000pt;}
.vc{vertical-align:119.392000pt;}
.ls23{letter-spacing:0.000000pt;}
.ls7f{letter-spacing:0.000518pt;}
.ls0{letter-spacing:0.000853pt;}
.lsba{letter-spacing:0.000868pt;}
.lsaf{letter-spacing:0.000922pt;}
.ls2{letter-spacing:0.001067pt;}
.ls80{letter-spacing:0.001121pt;}
.ls66{letter-spacing:0.001558pt;}
.ls6a{letter-spacing:0.001867pt;}
.ls9d{letter-spacing:0.002085pt;}
.ls4{letter-spacing:0.002133pt;}
.ls5{letter-spacing:0.002347pt;}
.ls6f{letter-spacing:0.002422pt;}
.ls19{letter-spacing:0.002535pt;}
.ls7d{letter-spacing:0.002631pt;}
.ls85{letter-spacing:0.002933pt;}
.ls12{letter-spacing:0.002956pt;}
.ls1{letter-spacing:0.003456pt;}
.ls86{letter-spacing:0.003537pt;}
.ls65{letter-spacing:0.003733pt;}
.ls7c{letter-spacing:0.004037pt;}
.ls64{letter-spacing:0.004417pt;}
.lsbc{letter-spacing:0.005102pt;}
.ls9c{letter-spacing:0.107755pt;}
.ls51{letter-spacing:0.110042pt;}
.ls48{letter-spacing:0.157897pt;}
.ls4b{letter-spacing:0.163230pt;}
.ls17{letter-spacing:0.931733pt;}
.ls49{letter-spacing:0.956785pt;}
.ls32{letter-spacing:1.328257pt;}
.ls2e{letter-spacing:1.774400pt;}
.ls8d{letter-spacing:2.123489pt;}
.lsac{letter-spacing:2.652179pt;}
.ls5f{letter-spacing:2.653089pt;}
.ls9b{letter-spacing:2.654400pt;}
.ls72{letter-spacing:2.656114pt;}
.lsaa{letter-spacing:2.656230pt;}
.ls29{letter-spacing:2.656257pt;}
.ls1b{letter-spacing:2.656533pt;}
.ls11{letter-spacing:2.657059pt;}
.lsae{letter-spacing:2.657067pt;}
.ls10{letter-spacing:2.657163pt;}
.lsa9{letter-spacing:2.657169pt;}
.ls7{letter-spacing:2.657513pt;}
.ls8c{letter-spacing:2.657558pt;}
.ls75{letter-spacing:2.658010pt;}
.ls47{letter-spacing:2.658422pt;}
.ls13{letter-spacing:2.658522pt;}
.ls6{letter-spacing:2.659125pt;}
.ls3c{letter-spacing:2.659375pt;}
.ls9f{letter-spacing:2.659733pt;}
.ls8{letter-spacing:3.189044pt;}
.ls2b{letter-spacing:3.630400pt;}
.ls93{letter-spacing:3.987187pt;}
.ls41{letter-spacing:4.036237pt;}
.ls92{letter-spacing:5.310400pt;}
.ls87{letter-spacing:5.310861pt;}
.ls46{letter-spacing:5.311996pt;}
.ls7e{letter-spacing:5.312048pt;}
.ls94{letter-spacing:5.314736pt;}
.ls53{letter-spacing:5.314956pt;}
.lsa6{letter-spacing:5.315375pt;}
.ls67{letter-spacing:5.315733pt;}
.ls5c{letter-spacing:5.316194pt;}
.ls83{letter-spacing:5.470400pt;}
.ls4f{letter-spacing:6.200563pt;}
.ls54{letter-spacing:6.240533pt;}
.lsa5{letter-spacing:6.446903pt;}
.ls57{letter-spacing:6.637854pt;}
.ls14{letter-spacing:7.043025pt;}
.ls50{letter-spacing:7.171537pt;}
.ls63{letter-spacing:7.965202pt;}
.ls52{letter-spacing:7.969867pt;}
.lsa2{letter-spacing:8.308237pt;}
.ls7a{letter-spacing:8.852194pt;}
.ls4d{letter-spacing:8.853329pt;}
.ls38{letter-spacing:8.854863pt;}
.ls56{letter-spacing:8.854892pt;}
.ls26{letter-spacing:8.855200pt;}
.ls79{letter-spacing:8.855419pt;}
.ls55{letter-spacing:8.857067pt;}
.ls25{letter-spacing:8.857527pt;}
.ls37{letter-spacing:9.032708pt;}
.ls5d{letter-spacing:9.293897pt;}
.lsd{letter-spacing:9.297513pt;}
.ls62{letter-spacing:9.299230pt;}
.lsbb{letter-spacing:9.462201pt;}
.ls60{letter-spacing:10.626422pt;}
.ls6c{letter-spacing:11.063305pt;}
.ls24{letter-spacing:11.510356pt;}
.ls1f{letter-spacing:11.511869pt;}
.ls28{letter-spacing:11.512708pt;}
.ls27{letter-spacing:11.514781pt;}
.ls6e{letter-spacing:11.724638pt;}
.ls6d{letter-spacing:11.729971pt;}
.lsb3{letter-spacing:11.758861pt;}
.ls88{letter-spacing:11.806400pt;}
.ls2d{letter-spacing:11.806861pt;}
.ls89{letter-spacing:11.811733pt;}
.ls77{letter-spacing:11.812194pt;}
.ls59{letter-spacing:11.973348pt;}
.ls99{letter-spacing:12.949348pt;}
.ls7b{letter-spacing:13.257527pt;}
.ls8a{letter-spacing:13.282085pt;}
.ls84{letter-spacing:13.284194pt;}
.lsa1{letter-spacing:13.660196pt;}
.lsb5{letter-spacing:13.780194pt;}
.ls3{letter-spacing:13.895305pt;}
.lsb1{letter-spacing:13.927305pt;}
.ls4c{letter-spacing:14.242118pt;}
.ls76{letter-spacing:14.459200pt;}
.lsa3{letter-spacing:14.464533pt;}
.ls2c{letter-spacing:14.465023pt;}
.lsb0{letter-spacing:14.609067pt;}
.ls43{letter-spacing:14.756194pt;}
.ls8b{letter-spacing:14.759419pt;}
.ls45{letter-spacing:14.761527pt;}
.ls4a{letter-spacing:15.107230pt;}
.ls1c{letter-spacing:15.172194pt;}
.ls9a{letter-spacing:15.205348pt;}
.ls34{letter-spacing:15.350863pt;}
.ls22{letter-spacing:15.358870pt;}
.ls97{letter-spacing:15.481067pt;}
.ls95{letter-spacing:15.753067pt;}
.ls96{letter-spacing:15.759207pt;}
.lsb7{letter-spacing:15.797867pt;}
.lsb9{letter-spacing:15.802781pt;}
.lsb2{letter-spacing:16.020194pt;}
.ls74{letter-spacing:16.068194pt;}
.ls68{letter-spacing:16.265750pt;}
.ls69{letter-spacing:16.270861pt;}
.ls16{letter-spacing:16.609513pt;}
.ls78{letter-spacing:16.645867pt;}
.ls8f{letter-spacing:16.886156pt;}
.ls73{letter-spacing:17.293593pt;}
.ls20{letter-spacing:17.396204pt;}
.ls44{letter-spacing:17.413867pt;}
.ls81{letter-spacing:17.415869pt;}
.ls2f{letter-spacing:17.416708pt;}
.ls42{letter-spacing:17.419200pt;}
.ls33{letter-spacing:17.760015pt;}
.lsb4{letter-spacing:17.977527pt;}
.ls31{letter-spacing:18.185067pt;}
.ls98{letter-spacing:18.671711pt;}
.ls6b{letter-spacing:19.305750pt;}
.ls91{letter-spacing:19.337527pt;}
.ls90{letter-spacing:19.338682pt;}
.ls5e{letter-spacing:19.608459pt;}
.ls21{letter-spacing:20.055869pt;}
.ls71{letter-spacing:20.462861pt;}
.ls15{letter-spacing:20.705513pt;}
.ls35{letter-spacing:20.838356pt;}
.ls30{letter-spacing:21.134861pt;}
.lsab{letter-spacing:21.371200pt;}
.ls82{letter-spacing:21.678400pt;}
.ls9{letter-spacing:21.788179pt;}
.lsb6{letter-spacing:22.064114pt;}
.ls3b{letter-spacing:22.142861pt;}
.ls5b{letter-spacing:22.265527pt;}
.ls1e{letter-spacing:22.377527pt;}
.ls40{letter-spacing:22.425527pt;}
.ls3e{letter-spacing:22.430861pt;}
.lsa4{letter-spacing:22.804194pt;}
.ls70{letter-spacing:23.115200pt;}
.ls9e{letter-spacing:23.150400pt;}
.ls2a{letter-spacing:23.155733pt;}
.lsb8{letter-spacing:23.232533pt;}
.lsf{letter-spacing:23.582861pt;}
.lsad{letter-spacing:23.619733pt;}
.ls8e{letter-spacing:24.544822pt;}
.ls3a{letter-spacing:24.806356pt;}
.ls3d{letter-spacing:25.083690pt;}
.ls3f{letter-spacing:25.086042pt;}
.ls1a{letter-spacing:25.739200pt;}
.lse{letter-spacing:26.241513pt;}
.ls36{letter-spacing:27.246861pt;}
.ls4e{letter-spacing:28.045089pt;}
.ls18{letter-spacing:28.097513pt;}
.lsa8{letter-spacing:28.851733pt;}
.ls5a{letter-spacing:30.665067pt;}
.ls1d{letter-spacing:30.771733pt;}
.lsb{letter-spacing:31.116444pt;}
.lsa{letter-spacing:32.444179pt;}
.lsc{letter-spacing:34.207711pt;}
.ls61{letter-spacing:38.238400pt;}
.lsa0{letter-spacing:52.297067pt;}
.ls39{letter-spacing:185.340533pt;}
.lsa7{letter-spacing:326.391200pt;}
.ls58{letter-spacing:367.340533pt;}
.wsa2{word-spacing:-51.221047pt;}
.ws43{word-spacing:-35.854630pt;}
.ws3a{word-spacing:-32.783596pt;}
.ws10{word-spacing:-29.505434pt;}
.ws4b{word-spacing:-23.963374pt;}
.wsc4{word-spacing:-22.948451pt;}
.ws95{word-spacing:-20.297137pt;}
.wsbc{word-spacing:-19.498860pt;}
.ws37{word-spacing:-14.771215pt;}
.ws13{word-spacing:-13.294182pt;}
.ws3c{word-spacing:-13.283467pt;}
.ws12{word-spacing:-11.955200pt;}
.ws168{word-spacing:-11.817002pt;}
.ws163{word-spacing:-10.626800pt;}
.ws90{word-spacing:-10.339821pt;}
.ws91{word-spacing:-10.046567pt;}
.ws44{word-spacing:-9.298400pt;}
.ws92{word-spacing:-4.443268pt;}
.wsc3{word-spacing:-4.429600pt;}
.wsb0{word-spacing:-4.426133pt;}
.ws4a{word-spacing:-4.425289pt;}
.ws4d{word-spacing:-4.424282pt;}
.wsc1{word-spacing:-4.424267pt;}
.ws89{word-spacing:-3.979715pt;}
.ws198{word-spacing:-3.570605pt;}
.ws185{word-spacing:-3.528098pt;}
.ws12c{word-spacing:-3.188032pt;}
.ws115{word-spacing:-3.134898pt;}
.ws151{word-spacing:-3.028630pt;}
.wsda{word-spacing:-2.975497pt;}
.ws10e{word-spacing:-2.922363pt;}
.ws8{word-spacing:-2.869248pt;}
.wsd4{word-spacing:-2.869229pt;}
.ws27{word-spacing:-2.762961pt;}
.ws62{word-spacing:-2.709827pt;}
.ws81{word-spacing:-2.603559pt;}
.wsd3{word-spacing:-2.550426pt;}
.ws124{word-spacing:-2.497292pt;}
.wse9{word-spacing:-2.446893pt;}
.wsea{word-spacing:-2.444158pt;}
.ws106{word-spacing:-2.337890pt;}
.ws15c{word-spacing:-2.284756pt;}
.ws16f{word-spacing:-2.252882pt;}
.wse0{word-spacing:-2.234391pt;}
.wse1{word-spacing:-2.231622pt;}
.ws1a6{word-spacing:-2.210374pt;}
.ws2{word-spacing:-2.199757pt;}
.wse8{word-spacing:-2.178489pt;}
.ws173{word-spacing:-2.125360pt;}
.ws108{word-spacing:-2.125355pt;}
.ws12d{word-spacing:-2.072221pt;}
.ws10a{word-spacing:-2.019087pt;}
.ws14d{word-spacing:-1.965953pt;}
.ws136{word-spacing:-1.912819pt;}
.ws150{word-spacing:-1.859685pt;}
.ws98{word-spacing:-1.806551pt;}
.ws19b{word-spacing:-1.785302pt;}
.ws68{word-spacing:-1.753418pt;}
.ws16c{word-spacing:-1.700288pt;}
.wsf4{word-spacing:-1.700284pt;}
.ws125{word-spacing:-1.647150pt;}
.ws2f{word-spacing:-1.594016pt;}
.ws10b{word-spacing:-1.578086pt;}
.ws126{word-spacing:-1.540882pt;}
.wsce{word-spacing:-1.473333pt;}
.ws24{word-spacing:-1.434614pt;}
.wsab{word-spacing:-1.381481pt;}
.ws17{word-spacing:-1.338982pt;}
.ws8c{word-spacing:-1.328347pt;}
.ws194{word-spacing:-1.317723pt;}
.ws169{word-spacing:-1.275216pt;}
.ws83{word-spacing:-1.275213pt;}
.wsd2{word-spacing:-1.222079pt;}
.ws1a1{word-spacing:-1.190202pt;}
.wsb1{word-spacing:-1.168945pt;}
.ws14{word-spacing:-1.147699pt;}
.ws6d{word-spacing:-1.115811pt;}
.ws195{word-spacing:-1.062680pt;}
.ws2c{word-spacing:-1.062677pt;}
.ws11b{word-spacing:-1.009543pt;}
.wsfe{word-spacing:-0.956410pt;}
.ws190{word-spacing:-0.935158pt;}
.ws99{word-spacing:-0.908595pt;}
.wsa4{word-spacing:-0.903276pt;}
.ws17e{word-spacing:-0.850144pt;}
.wsfb{word-spacing:-0.850142pt;}
.ws170{word-spacing:-0.837770pt;}
.ws171{word-spacing:-0.807637pt;}
.ws127{word-spacing:-0.797008pt;}
.ws19f{word-spacing:-0.765130pt;}
.ws82{word-spacing:-0.743874pt;}
.wsdf{word-spacing:-0.690740pt;}
.ws9{word-spacing:-0.669491pt;}
.ws172{word-spacing:-0.637608pt;}
.ws119{word-spacing:-0.637606pt;}
.ws101{word-spacing:-0.621670pt;}
.ws120{word-spacing:-0.584473pt;}
.wsf1{word-spacing:-0.531339pt;}
.ws147{word-spacing:-0.478205pt;}
.ws128{word-spacing:-0.425071pt;}
.ws6{word-spacing:-0.382566pt;}
.ws2e{word-spacing:-0.371937pt;}
.ws104{word-spacing:-0.318803pt;}
.ws64{word-spacing:-0.265669pt;}
.ws17c{word-spacing:-0.255043pt;}
.ws9a{word-spacing:-0.239104pt;}
.wsd8{word-spacing:-0.212535pt;}
.ws143{word-spacing:-0.159402pt;}
.ws13c{word-spacing:-0.143462pt;}
.ws141{word-spacing:-0.106268pt;}
.ws16e{word-spacing:-0.085014pt;}
.ws52{word-spacing:-0.053134pt;}
.wsae{word-spacing:-0.028000pt;}
.wsc7{word-spacing:-0.001897pt;}
.ws1a9{word-spacing:-0.001569pt;}
.ws1a2{word-spacing:-0.000397pt;}
.wsbe{word-spacing:-0.000030pt;}
.ws0{word-spacing:0.000000pt;}
.ws78{word-spacing:0.001104pt;}
.wsbb{word-spacing:0.002554pt;}
.ws8b{word-spacing:0.025164pt;}
.wsa9{word-spacing:0.053134pt;}
.ws174{word-spacing:0.085014pt;}
.ws65{word-spacing:0.106268pt;}
.ws57{word-spacing:0.159402pt;}
.wsdd{word-spacing:0.185852pt;}
.wsf3{word-spacing:0.212535pt;}
.ws13e{word-spacing:0.265669pt;}
.ws161{word-spacing:0.297550pt;}
.ws60{word-spacing:0.318803pt;}
.wsf{word-spacing:0.334746pt;}
.ws165{word-spacing:0.340058pt;}
.wsa6{word-spacing:0.371937pt;}
.wsb7{word-spacing:0.425071pt;}
.ws193{word-spacing:0.425072pt;}
.wsf9{word-spacing:0.478205pt;}
.ws138{word-spacing:0.501684pt;}
.ws191{word-spacing:0.510086pt;}
.ws135{word-spacing:0.531339pt;}
.ws54{word-spacing:0.584473pt;}
.ws177{word-spacing:0.595101pt;}
.ws46{word-spacing:0.637606pt;}
.ws45{word-spacing:0.690740pt;}
.ws176{word-spacing:0.736901pt;}
.ws33{word-spacing:0.743874pt;}
.ws9f{word-spacing:0.797008pt;}
.ws19d{word-spacing:0.807637pt;}
.wsa{word-spacing:0.812954pt;}
.ws139{word-spacing:0.850142pt;}
.ws16b{word-spacing:0.850144pt;}
.ws94{word-spacing:0.882385pt;}
.wsb4{word-spacing:0.903276pt;}
.ws11e{word-spacing:0.956410pt;}
.ws1a3{word-spacing:0.977666pt;}
.ws5c{word-spacing:1.009543pt;}
.ws182{word-spacing:1.020173pt;}
.ws109{word-spacing:1.062677pt;}
.ws16{word-spacing:1.099878pt;}
.wsd5{word-spacing:1.115811pt;}
.ws36{word-spacing:1.168945pt;}
.ws199{word-spacing:1.190202pt;}
.ws14e{word-spacing:1.222079pt;}
.wse{word-spacing:1.243341pt;}
.wsdb{word-spacing:1.275213pt;}
.ws1a4{word-spacing:1.275216pt;}
.ws181{word-spacing:1.276166pt;}
.ws4{word-spacing:1.291162pt;}
.ws6e{word-spacing:1.328347pt;}
.wse2{word-spacing:1.381481pt;}
.ws9c{word-spacing:1.434614pt;}
.ws7{word-spacing:1.434624pt;}
.ws79{word-spacing:1.487748pt;}
.ws183{word-spacing:1.530259pt;}
.ws105{word-spacing:1.540882pt;}
.ws8d{word-spacing:1.594016pt;}
.ws88{word-spacing:1.647150pt;}
.ws14c{word-spacing:1.700284pt;}
.ws196{word-spacing:1.700288pt;}
.ws10c{word-spacing:1.721549pt;}
.ws192{word-spacing:1.742795pt;}
.wsf2{word-spacing:1.753418pt;}
.ws5b{word-spacing:1.806551pt;}
.ws72{word-spacing:1.859685pt;}
.ws49{word-spacing:1.884045pt;}
.ws53{word-spacing:1.912819pt;}
.ws184{word-spacing:1.912824pt;}
.wsc{word-spacing:1.912832pt;}
.ws12b{word-spacing:1.916468pt;}
.ws11{word-spacing:1.937818pt;}
.wsad{word-spacing:1.956942pt;}
.ws131{word-spacing:1.960653pt;}
.ws23{word-spacing:1.965953pt;}
.ws41{word-spacing:2.019087pt;}
.ws17d{word-spacing:2.040346pt;}
.ws50{word-spacing:2.072221pt;}
.ws9d{word-spacing:2.125355pt;}
.ws84{word-spacing:2.178489pt;}
.ws102{word-spacing:2.199757pt;}
.ws187{word-spacing:2.230987pt;}
.ws1c{word-spacing:2.231622pt;}
.ws188{word-spacing:2.252882pt;}
.ws16d{word-spacing:2.272774pt;}
.ws152{word-spacing:2.284756pt;}
.wsd7{word-spacing:2.337890pt;}
.ws18a{word-spacing:2.380403pt;}
.ws7a{word-spacing:2.391024pt;}
.ws19a{word-spacing:2.422910pt;}
.ws61{word-spacing:2.444158pt;}
.ws103{word-spacing:2.473164pt;}
.wsaa{word-spacing:2.486059pt;}
.ws35{word-spacing:2.497292pt;}
.ws47{word-spacing:2.550426pt;}
.ws1{word-spacing:2.550432pt;}
.wsed{word-spacing:2.603559pt;}
.ws15{word-spacing:2.630144pt;}
.wsf5{word-spacing:2.656693pt;}
.ws175{word-spacing:2.677954pt;}
.ws121{word-spacing:2.709827pt;}
.ws73{word-spacing:2.762961pt;}
.ws189{word-spacing:2.805475pt;}
.ws2a{word-spacing:2.816095pt;}
.ws69{word-spacing:2.869229pt;}
.ws3{word-spacing:2.869248pt;}
.wsaf{word-spacing:2.922363pt;}
.ws29{word-spacing:2.975497pt;}
.ws1f{word-spacing:3.028630pt;}
.ws5d{word-spacing:3.081764pt;}
.ws7d{word-spacing:3.134898pt;}
.wsbd{word-spacing:3.188032pt;}
.wsd9{word-spacing:3.241166pt;}
.ws9b{word-spacing:3.251814pt;}
.ws8f{word-spacing:3.294300pt;}
.ws17b{word-spacing:3.308372pt;}
.ws162{word-spacing:3.315562pt;}
.ws132{word-spacing:3.347434pt;}
.ws6c{word-spacing:3.400567pt;}
.ws1a7{word-spacing:3.400576pt;}
.ws1a5{word-spacing:3.443083pt;}
.wsb{word-spacing:3.443098pt;}
.ws34{word-spacing:3.453701pt;}
.ws7c{word-spacing:3.506835pt;}
.ws180{word-spacing:3.528098pt;}
.ws145{word-spacing:3.559969pt;}
.wsfa{word-spacing:3.613103pt;}
.ws1aa{word-spacing:3.655619pt;}
.ws10d{word-spacing:3.666237pt;}
.ws164{word-spacing:3.698126pt;}
.ws86{word-spacing:3.719371pt;}
.ws51{word-spacing:3.772505pt;}
.ws158{word-spacing:3.774279pt;}
.ws6b{word-spacing:3.825638pt;}
.wsb2{word-spacing:3.878772pt;}
.ws1ab{word-spacing:3.910662pt;}
.ws107{word-spacing:3.919575pt;}
.ws1a{word-spacing:3.931906pt;}
.ws74{word-spacing:3.985040pt;}
.ws32{word-spacing:4.038174pt;}
.ws19e{word-spacing:4.080691pt;}
.ws4f{word-spacing:4.091308pt;}
.ws4c{word-spacing:4.111613pt;}
.ws4e{word-spacing:4.115830pt;}
.ws75{word-spacing:4.144442pt;}
.ws110{word-spacing:4.197575pt;}
.ws1a8{word-spacing:4.208213pt;}
.wsf7{word-spacing:4.250709pt;}
.ws25{word-spacing:4.303843pt;}
.ws18d{word-spacing:4.335734pt;}
.ws1e{word-spacing:4.356977pt;}
.ws140{word-spacing:4.360541pt;}
.ws18c{word-spacing:4.378242pt;}
.wsdc{word-spacing:4.410111pt;}
.ws134{word-spacing:4.463245pt;}
.ws1a0{word-spacing:4.463256pt;}
.ws21{word-spacing:4.516379pt;}
.ws5a{word-spacing:4.569513pt;}
.ws18b{word-spacing:4.590778pt;}
.wsd6{word-spacing:4.622646pt;}
.ws5{word-spacing:4.638618pt;}
.wsb8{word-spacing:4.675780pt;}
.wsb3{word-spacing:4.728914pt;}
.ws42{word-spacing:4.782048pt;}
.ws113{word-spacing:4.835182pt;}
.ws178{word-spacing:4.845821pt;}
.ws130{word-spacing:4.877722pt;}
.ws85{word-spacing:4.888316pt;}
.wsa8{word-spacing:4.941450pt;}
.ws12f{word-spacing:4.973363pt;}
.ws2d{word-spacing:4.994583pt;}
.ws28{word-spacing:5.047717pt;}
.ws19c{word-spacing:5.058357pt;}
.ws30{word-spacing:5.100851pt;}
.wsd{word-spacing:5.116826pt;}
.ws67{word-spacing:5.153985pt;}
.wse3{word-spacing:5.207119pt;}
.wscf{word-spacing:5.260253pt;}
.wseb{word-spacing:5.313387pt;}
.ws146{word-spacing:5.326933pt;}
.ws11d{word-spacing:5.366521pt;}
.ws133{word-spacing:5.419654pt;}
.ws5f{word-spacing:5.472788pt;}
.wsde{word-spacing:5.525922pt;}
.wsec{word-spacing:5.579056pt;}
.ws5e{word-spacing:5.632190pt;}
.wsd1{word-spacing:5.685324pt;}
.wse7{word-spacing:5.738458pt;}
.ws12e{word-spacing:5.738496pt;}
.ws55{word-spacing:5.791591pt;}
.ws39{word-spacing:5.825253pt;}
.ws38{word-spacing:5.844725pt;}
.ws20{word-spacing:5.897859pt;}
.wsa3{word-spacing:5.950993pt;}
.ws16a{word-spacing:5.951008pt;}
.wsa1{word-spacing:5.960785pt;}
.ws96{word-spacing:6.004127pt;}
.ws179{word-spacing:6.036022pt;}
.ws2b{word-spacing:6.057261pt;}
.ws153{word-spacing:6.110395pt;}
.ws76{word-spacing:6.163529pt;}
.ws71{word-spacing:6.216662pt;}
.ws166{word-spacing:6.248558pt;}
.ws11a{word-spacing:6.269796pt;}
.ws13a{word-spacing:6.322930pt;}
.ws19{word-spacing:6.376064pt;}
.ws9e{word-spacing:6.429198pt;}
.ws160{word-spacing:6.482332pt;}
.ws63{word-spacing:6.535466pt;}
.ws58{word-spacing:6.588599pt;}
.ws59{word-spacing:6.641733pt;}
.ws77{word-spacing:6.646253pt;}
.ws17a{word-spacing:6.673630pt;}
.wsef{word-spacing:6.694867pt;}
.wsf0{word-spacing:6.748001pt;}
.wsfd{word-spacing:6.801135pt;}
.ws13d{word-spacing:6.854269pt;}
.ws31{word-spacing:6.907403pt;}
.wsac{word-spacing:6.960537pt;}
.wsd0{word-spacing:7.013670pt;}
.ws70{word-spacing:7.066804pt;}
.ws10f{word-spacing:7.119938pt;}
.ws111{word-spacing:7.168815pt;}
.ws1d{word-spacing:7.173072pt;}
.ws11f{word-spacing:7.226206pt;}
.ws56{word-spacing:7.279340pt;}
.ws123{word-spacing:7.332474pt;}
.ws15e{word-spacing:7.385607pt;}
.ws26{word-spacing:7.438741pt;}
.ws155{word-spacing:7.491875pt;}
.wsa7{word-spacing:7.545009pt;}
.wsa5{word-spacing:7.598143pt;}
.ws6f{word-spacing:7.651277pt;}
.ws18e{word-spacing:7.651296pt;}
.ws144{word-spacing:7.704411pt;}
.wsfc{word-spacing:7.757545pt;}
.ws156{word-spacing:7.810678pt;}
.ws167{word-spacing:7.821325pt;}
.ws1b{word-spacing:7.863812pt;}
.wse5{word-spacing:7.916946pt;}
.ws129{word-spacing:8.023214pt;}
.ws8e{word-spacing:8.076348pt;}
.ws3b{word-spacing:8.129482pt;}
.ws93{word-spacing:8.147830pt;}
.ws80{word-spacing:8.182615pt;}
.ws117{word-spacing:8.235749pt;}
.ws137{word-spacing:8.288883pt;}
.ws48{word-spacing:8.385484pt;}
.ws87{word-spacing:8.395151pt;}
.ws15b{word-spacing:8.448285pt;}
.ws97{word-spacing:8.554553pt;}
.ws118{word-spacing:8.607686pt;}
.wse4{word-spacing:8.660820pt;}
.ws40{word-spacing:8.767088pt;}
.wsff{word-spacing:9.139025pt;}
.ws17f{word-spacing:9.224062pt;}
.ws13f{word-spacing:9.351561pt;}
.ws11c{word-spacing:9.404694pt;}
.ws7f{word-spacing:9.457828pt;}
.ws148{word-spacing:9.510962pt;}
.ws14f{word-spacing:9.564096pt;}
.ws18f{word-spacing:9.564120pt;}
.ws22{word-spacing:9.617230pt;}
.ws12a{word-spacing:9.723498pt;}
.ws157{word-spacing:9.829765pt;}
.wsb6{word-spacing:9.882899pt;}
.ws154{word-spacing:9.989167pt;}
.ws7e{word-spacing:10.042301pt;}
.ws3e{word-spacing:10.113897pt;}
.ws3d{word-spacing:10.148569pt;}
.ws7b{word-spacing:10.414238pt;}
.ws112{word-spacing:10.467372pt;}
.ws8a{word-spacing:10.589280pt;}
.wsf8{word-spacing:10.839309pt;}
.ws14b{word-spacing:10.892443pt;}
.ws149{word-spacing:10.945577pt;}
.ws116{word-spacing:11.051844pt;}
.ws15f{word-spacing:11.211246pt;}
.ws6a{word-spacing:11.317514pt;}
.ws100{word-spacing:11.423781pt;}
.ws15a{word-spacing:11.583183pt;}
.ws197{word-spacing:12.412102pt;}
.ws66{word-spacing:12.539593pt;}
.ws13b{word-spacing:12.991608pt;}
.wsa0{word-spacing:13.177199pt;}
.wsee{word-spacing:13.230333pt;}
.ws122{word-spacing:13.283467pt;}
.ws142{word-spacing:13.442868pt;}
.wse6{word-spacing:13.602270pt;}
.wsf6{word-spacing:14.452412pt;}
.ws159{word-spacing:14.922148pt;}
.ws186{word-spacing:15.940200pt;}
.ws3f{word-spacing:16.258963pt;}
.ws114{word-spacing:16.471499pt;}
.ws15d{word-spacing:18.044311pt;}
.ws14a{word-spacing:19.872066pt;}
.wsb5{word-spacing:24.335163pt;}
.ws18{word-spacing:39.850400pt;}
.wsb9{word-spacing:50.474275pt;}
.wsba{word-spacing:50.475452pt;}
.wscc{word-spacing:70.404533pt;}
.wsc5{word-spacing:83.689867pt;}
.wsc0{word-spacing:147.390933pt;}
.wsc2{word-spacing:148.143200pt;}
.wsc6{word-spacing:164.822422pt;}
.wsc9{word-spacing:176.671200pt;}
.wscd{word-spacing:178.102422pt;}
.wsca{word-spacing:298.958667pt;}
.wsc8{word-spacing:303.290887pt;}
.wscb{word-spacing:307.674887pt;}
.wsbf{word-spacing:351.242887pt;}
._3{margin-left:-6.854269pt;}
._32{margin-left:-5.849958pt;}
._23{margin-left:-4.611597pt;}
._5{margin-left:-3.613117pt;}
._1{margin-left:-2.125355pt;}
._4{margin-left:-1.164707pt;}
._1d{width:1.313745pt;}
._1b{width:2.647439pt;}
._20{width:3.798295pt;}
._a{width:5.300215pt;}
._14{width:7.226206pt;}
._16{width:8.587310pt;}
._17{width:9.617230pt;}
._3a{width:10.617908pt;}
._c{width:11.802164pt;}
._38{width:12.803732pt;}
._d{width:13.693757pt;}
._6{width:14.609119pt;}
._b{width:15.535465pt;}
._8{width:16.659618pt;}
._11{width:17.852979pt;}
._7{width:19.107057pt;}
._9{width:20.521413pt;}
._e{width:21.625498pt;}
._f{width:23.272634pt;}
._1a{width:24.801181pt;}
._13{width:25.725748pt;}
._15{width:26.992004pt;}
._18{width:28.586020pt;}
._12{width:29.914367pt;}
._29{width:31.348981pt;}
._22{width:32.677342pt;}
._19{width:34.047082pt;}
._2a{width:35.334021pt;}
._1f{width:36.577229pt;}
._10{width:38.043849pt;}
._28{width:39.000258pt;}
._39{width:40.158154pt;}
._26{width:41.710085pt;}
._1c{width:42.825607pt;}
._25{width:44.260511pt;}
._24{width:46.111721pt;}
._27{width:47.007648pt;}
._37{width:49.095693pt;}
._21{width:53.800609pt;}
._30{width:58.810854pt;}
._2c{width:59.828734pt;}
._31{width:154.110057pt;}
._34{width:171.216390pt;}
._33{width:181.660257pt;}
._36{width:188.906139pt;}
._35{width:196.553571pt;}
._2b{width:277.412297pt;}
._2f{width:292.096944pt;}
._2e{width:308.295741pt;}
._2d{width:324.136206pt;}
._1e{width:329.123985pt;}
._0{width:623.153988pt;}
._2{width:653.493426pt;}
.fs6{font-size:26.566933pt;}
.fs8{font-size:28.810667pt;}
.fs4{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs7{font-size:40.315307pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y15f{bottom:2.642622pt;}
.y25a{bottom:3.697871pt;}
.yb3{bottom:11.697940pt;}
.y15d{bottom:13.446658pt;}
.y258{bottom:18.816162pt;}
.y156{bottom:20.649325pt;}
.yb1{bottom:26.816230pt;}
.y251{bottom:28.894988pt;}
.ya6{bottom:36.895057pt;}
.ybb{bottom:41.052573pt;}
.yb4{bottom:41.871478pt;}
.y20e{bottom:41.987225pt;}
.y1f7{bottom:43.022608pt;}
.y223{bottom:46.668958pt;}
.y1fe{bottom:49.865142pt;}
.y21b{bottom:50.855508pt;}
.y157{bottom:51.035575pt;}
.y137{bottom:52.734667pt;}
.y4c{bottom:52.736000pt;}
.y218{bottom:54.186742pt;}
.ya7{bottom:61.777160pt;}
.y20f{bottom:63.280108pt;}
.y1f8{bottom:65.395892pt;}
.y224{bottom:72.688592pt;}
.y252{bottom:72.737884pt;}
.yb7{bottom:78.407224pt;}
.y1ff{bottom:79.080958pt;}
.y205{bottom:79.697597pt;}
.y21c{bottom:81.106708pt;}
.y158{bottom:81.376808pt;}
.y210{bottom:84.618008pt;}
.ya8{bottom:86.722256pt;}
.y1f9{bottom:87.769175pt;}
.y15e{bottom:89.305324pt;}
.y221{bottom:90.117333pt;}
.y34{bottom:92.585333pt;}
.y80{bottom:92.586667pt;}
.y250{bottom:94.964000pt;}
.y204{bottom:96.305956pt;}
.y225{bottom:98.708045pt;}
.y229{bottom:103.508622pt;}
.y220{bottom:104.729333pt;}
.y357{bottom:105.205333pt;}
.y211{bottom:105.910712pt;}
.y200{bottom:108.251578pt;}
.y1cb{bottom:108.525333pt;}
.y33{bottom:108.526667pt;}
.y1a8{bottom:109.266667pt;}
.y1fa{bottom:110.142278pt;}
.y24f{bottom:110.904000pt;}
.y21d{bottom:111.312712pt;}
.ya9{bottom:111.604360pt;}
.y159{bottom:111.762878pt;}
.y7f{bottom:114.166667pt;}
.y253{bottom:116.580780pt;}
.y356{bottom:117.824000pt;}
.yb8{bottom:119.919392pt;}
.y219{bottom:121.306412pt;}
.y390{bottom:121.682667pt;}
.y7e{bottom:123.278667pt;}
.y2e1{bottom:124.465333pt;}
.y32{bottom:124.466667pt;}
.y226{bottom:124.772695pt;}
.y1a7{bottom:125.206667pt;}
.y24e{bottom:126.845333pt;}
.y212{bottom:127.248612pt;}
.y217{bottom:127.445333pt;}
.y154{bottom:130.444000pt;}
.y1fb{bottom:132.515562pt;}
.y38f{bottom:134.301333pt;}
.yaa{bottom:136.486211pt;}
.y201{bottom:137.467395pt;}
.y31{bottom:140.406667pt;}
.y291{bottom:140.566667pt;}
.y1a6{bottom:141.146667pt;}
.y21e{bottom:141.563912pt;}
.y277{bottom:141.808000pt;}
.y15a{bottom:142.104112pt;}
.y24d{bottom:142.785333pt;}
.y355{bottom:143.062667pt;}
.y213{bottom:148.541495pt;}
.y2e0{bottom:148.644000pt;}
.y259{bottom:148.873089pt;}
.yb2{bottom:149.880972pt;}
.y38e{bottom:150.778667pt;}
.y227{bottom:150.792328pt;}
.y4b{bottom:151.837333pt;}
.y7d{bottom:154.622667pt;}
.y1fc{bottom:154.888845pt;}
.y30{bottom:156.346667pt;}
.y290{bottom:156.506667pt;}
.y153{bottom:156.789333pt;}
.y1a5{bottom:157.086667pt;}
.y1e4{bottom:157.125333pt;}
.y276{bottom:157.748000pt;}
.y24c{bottom:158.725333pt;}
.y354{bottom:159.469333pt;}
.y254{bottom:160.423424pt;}
.yab{bottom:161.431307pt;}
.y38d{bottom:163.397333pt;}
.y202{bottom:166.683212pt;}
.ya3{bottom:166.861333pt;}
.y214{bottom:169.879395pt;}
.y4a{bottom:169.902667pt;}
.y7c{bottom:170.562667pt;}
.y21f{bottom:171.770095pt;}
.y353{bottom:172.089333pt;}
.y2f{bottom:172.286667pt;}
.y28f{bottom:172.446667pt;}
.y15b{bottom:172.490362pt;}
.y152{bottom:172.729333pt;}
.y119{bottom:172.914667pt;}
.y1a4{bottom:173.026667pt;}
.y1e3{bottom:173.065333pt;}
.y275{bottom:173.689333pt;}
.y49{bottom:174.268000pt;}
.y24b{bottom:174.665333pt;}
.y209{bottom:174.786212pt;}
.y228{bottom:176.811962pt;}
.y1fd{bottom:177.262128pt;}
.y1bf{bottom:178.264000pt;}
.y38c{bottom:179.874667pt;}
.y208{bottom:181.988878pt;}
.y352{bottom:184.708000pt;}
.y2df{bottom:185.110667pt;}
.yac{bottom:186.313410pt;}
.y7b{bottom:186.504000pt;}
.y136{bottom:188.226667pt;}
.y2e{bottom:188.228000pt;}
.y28e{bottom:188.386667pt;}
.y21a{bottom:188.426262pt;}
.y151{bottom:188.669333pt;}
.y118{bottom:188.854667pt;}
.y1a3{bottom:188.968000pt;}
.y1e2{bottom:189.005333pt;}
.y162{bottom:189.191545pt;}
.y2bc{bottom:189.394667pt;}
.y274{bottom:189.629333pt;}
.y48{bottom:190.208000pt;}
.y24a{bottom:190.605333pt;}
.y38b{bottom:192.493333pt;}
.y203{bottom:195.628928pt;}
.y161{bottom:196.394212pt;}
.y351{bottom:197.328000pt;}
.y2de{bottom:201.050667pt;}
.y7a{bottom:202.444000pt;}
.y15c{bottom:202.831595pt;}
.yb9{bottom:202.880482pt;}
.y314{bottom:204.166667pt;}
.y2d{bottom:204.168000pt;}
.y255{bottom:204.203328pt;}
.y28d{bottom:204.326667pt;}
.y150{bottom:204.610667pt;}
.y117{bottom:204.794667pt;}
.y1e1{bottom:204.945333pt;}
.y38a{bottom:205.113333pt;}
.y2bb{bottom:205.334667pt;}
.y273{bottom:205.569333pt;}
.y1a2{bottom:205.648000pt;}
.y1be{bottom:206.072000pt;}
.y47{bottom:206.148000pt;}
.y207{bottom:206.387912pt;}
.y249{bottom:206.545333pt;}
.y350{bottom:209.946667pt;}
.yad{bottom:211.195514pt;}
.y160{bottom:213.635595pt;}
.y2dd{bottom:216.990667pt;}
.y313{bottom:220.106667pt;}
.y2c{bottom:220.108000pt;}
.y1f5{bottom:220.150667pt;}
.y28c{bottom:220.426667pt;}
.y14f{bottom:220.550667pt;}
.y116{bottom:220.736000pt;}
.y206{bottom:220.838262pt;}
.y1e0{bottom:220.886667pt;}
.y2ba{bottom:221.274667pt;}
.yd2{bottom:221.468000pt;}
.y272{bottom:221.509333pt;}
.y1a1{bottom:221.588000pt;}
.y389{bottom:221.589333pt;}
.y1bd{bottom:222.012000pt;}
.y46{bottom:222.089333pt;}
.y248{bottom:222.486667pt;}
.y34f{bottom:222.566667pt;}
.y79{bottom:224.361333pt;}
.y180{bottom:224.813333pt;}
.y193{bottom:228.002667pt;}
.y2dc{bottom:232.930667pt;}
.y388{bottom:234.209333pt;}
.y34e{bottom:235.185333pt;}
.ya2{bottom:236.048000pt;}
.yae{bottom:236.077617pt;}
.y1f4{bottom:236.090667pt;}
.y28b{bottom:236.368000pt;}
.y14e{bottom:236.490667pt;}
.y115{bottom:236.676000pt;}
.y1df{bottom:236.826667pt;}
.y192{bottom:237.116000pt;}
.y2b9{bottom:237.214667pt;}
.y1a0{bottom:237.528000pt;}
.y1bc{bottom:237.953333pt;}
.y45{bottom:238.029333pt;}
.y2b{bottom:238.378667pt;}
.y247{bottom:238.426667pt;}
.y271{bottom:238.850667pt;}
.ye4{bottom:242.157333pt;}
.y135{bottom:243.946667pt;}
.yba{bottom:244.392649pt;}
.yd1{bottom:244.837333pt;}
.y256{bottom:248.046224pt;}
.y2db{bottom:248.870667pt;}
.y387{bottom:250.685333pt;}
.y17f{bottom:251.593333pt;}
.y78{bottom:251.988000pt;}
.y1f3{bottom:252.030667pt;}
.y28a{bottom:252.308000pt;}
.y309{bottom:252.332000pt;}
.y114{bottom:252.616000pt;}
.y1de{bottom:252.766667pt;}
.y2b8{bottom:253.154667pt;}
.y19f{bottom:253.468000pt;}
.y1bb{bottom:253.893333pt;}
.y44{bottom:253.969333pt;}
.y2a{bottom:254.320000pt;}
.y246{bottom:254.366667pt;}
.y270{bottom:254.792000pt;}
.y14d{bottom:258.408000pt;}
.yaf{bottom:261.022713pt;}
.y2da{bottom:264.810667pt;}
.yb6{bottom:266.818038pt;}
.y386{bottom:267.162667pt;}
.y17e{bottom:267.533333pt;}
.y77{bottom:267.928000pt;}
.y1f2{bottom:267.972000pt;}
.y34d{bottom:268.000000pt;}
.y289{bottom:268.248000pt;}
.y308{bottom:268.273333pt;}
.y113{bottom:268.556000pt;}
.y1dd{bottom:268.706667pt;}
.y2b7{bottom:269.096000pt;}
.y19e{bottom:269.409333pt;}
.y1ba{bottom:269.833333pt;}
.y43{bottom:269.909333pt;}
.y29{bottom:270.260000pt;}
.y245{bottom:270.306667pt;}
.ye3{bottom:270.550667pt;}
.y26f{bottom:270.732000pt;}
.y191{bottom:271.844000pt;}
.yb5{bottom:276.896865pt;}
.yd0{bottom:278.241333pt;}
.y134{bottom:279.128000pt;}
.y34c{bottom:280.618667pt;}
.y2d9{bottom:280.752000pt;}
.y25b{bottom:282.881370pt;}
.y17d{bottom:283.474667pt;}
.y385{bottom:283.638667pt;}
.y76{bottom:283.868000pt;}
.y1f1{bottom:283.912000pt;}
.y288{bottom:284.188000pt;}
.y307{bottom:284.213333pt;}
.y112{bottom:284.496000pt;}
.y1dc{bottom:284.646667pt;}
.y14c{bottom:284.754667pt;}
.y1ca{bottom:284.821333pt;}
.y2b6{bottom:285.036000pt;}
.y19d{bottom:285.349333pt;}
.y1b9{bottom:285.773333pt;}
.y42{bottom:285.849333pt;}
.yb0{bottom:285.904816pt;}
.y28{bottom:286.200000pt;}
.y244{bottom:286.246667pt;}
.ye2{bottom:286.490667pt;}
.y26e{bottom:286.672000pt;}
.y190{bottom:287.784000pt;}
.y338{bottom:291.009333pt;}
.y257{bottom:291.889120pt;}
.y34b{bottom:293.238667pt;}
.ycf{bottom:294.181333pt;}
.y133{bottom:295.068000pt;}
.ya1{bottom:295.753333pt;}
.y384{bottom:296.258667pt;}
.y2d8{bottom:296.692000pt;}
.y17c{bottom:299.414667pt;}
.y312{bottom:299.808000pt;}
.y75{bottom:299.809333pt;}
.y1f0{bottom:299.852000pt;}
.y287{bottom:300.128000pt;}
.y306{bottom:300.153333pt;}
.y111{bottom:300.436000pt;}
.y1db{bottom:300.588000pt;}
.y14b{bottom:300.694667pt;}
.y1c9{bottom:300.761333pt;}
.y2b5{bottom:300.976000pt;}
.y19c{bottom:301.289333pt;}
.y1b8{bottom:301.713333pt;}
.y41{bottom:301.790667pt;}
.y27{bottom:302.140000pt;}
.y243{bottom:302.188000pt;}
.ye1{bottom:302.432000pt;}
.y18f{bottom:303.724000pt;}
.y26d{bottom:304.013333pt;}
.ya5{bottom:304.046704pt;}
.y34a{bottom:305.857333pt;}
.ya0{bottom:307.422667pt;}
.y383{bottom:308.877333pt;}
.yce{bottom:310.121333pt;}
.y132{bottom:311.008000pt;}
.y2d7{bottom:314.190667pt;}
.y17b{bottom:315.354667pt;}
.y311{bottom:315.748000pt;}
.y74{bottom:315.749333pt;}
.y1ef{bottom:315.792000pt;}
.y286{bottom:316.068000pt;}
.y305{bottom:316.093333pt;}
.y110{bottom:316.377333pt;}
.y14a{bottom:316.634667pt;}
.y1c8{bottom:316.701333pt;}
.y2b4{bottom:316.916000pt;}
.y19b{bottom:317.229333pt;}
.y1da{bottom:317.306667pt;}
.y1b7{bottom:317.653333pt;}
.y40{bottom:317.730667pt;}
.y26{bottom:318.080000pt;}
.y242{bottom:318.128000pt;}
.ye0{bottom:318.372000pt;}
.y18e{bottom:319.664000pt;}
.y26c{bottom:319.953333pt;}
.y349{bottom:322.264000pt;}
.y337{bottom:323.317333pt;}
.y382{bottom:325.354667pt;}
.ycd{bottom:326.062667pt;}
.y131{bottom:326.948000pt;}
.y2d6{bottom:330.130667pt;}
.y17a{bottom:331.294667pt;}
.y73{bottom:331.689333pt;}
.y1ee{bottom:331.732000pt;}
.y285{bottom:332.009333pt;}
.y304{bottom:332.033333pt;}
.y10f{bottom:332.317333pt;}
.y149{bottom:332.574667pt;}
.y1c7{bottom:332.641333pt;}
.y2b3{bottom:332.856000pt;}
.y19a{bottom:333.169333pt;}
.y1d9{bottom:333.246667pt;}
.y9f{bottom:333.410667pt;}
.y1b6{bottom:333.594667pt;}
.y3f{bottom:333.670667pt;}
.y25{bottom:334.021333pt;}
.y241{bottom:334.068000pt;}
.ydf{bottom:334.312000pt;}
.y348{bottom:334.884000pt;}
.y18d{bottom:335.605333pt;}
.y26b{bottom:335.894667pt;}
.y381{bottom:337.973333pt;}
.y336{bottom:339.258667pt;}
.ycc{bottom:342.002667pt;}
.y130{bottom:344.213333pt;}
.y2d5{bottom:346.070667pt;}
.y179{bottom:347.234667pt;}
.y72{bottom:347.629333pt;}
.y1ed{bottom:347.672000pt;}
.y284{bottom:347.949333pt;}
.y303{bottom:347.974667pt;}
.y10e{bottom:348.257333pt;}
.y148{bottom:348.514667pt;}
.y1c6{bottom:348.581333pt;}
.y2b2{bottom:348.796000pt;}
.y199{bottom:349.109333pt;}
.y1d8{bottom:349.186667pt;}
.y9e{bottom:349.350667pt;}
.y1b5{bottom:349.534667pt;}
.y3e{bottom:349.610667pt;}
.y24{bottom:349.961333pt;}
.y240{bottom:350.008000pt;}
.yde{bottom:350.252000pt;}
.y347{bottom:351.290667pt;}
.y18c{bottom:351.545333pt;}
.y26a{bottom:353.236000pt;}
.y380{bottom:354.450667pt;}
.y335{bottom:355.198667pt;}
.ycb{bottom:357.942667pt;}
.y12f{bottom:360.153333pt;}
.y2d4{bottom:362.010667pt;}
.y178{bottom:363.174667pt;}
.y71{bottom:363.569333pt;}
.y1ec{bottom:363.613333pt;}
.y283{bottom:363.889333pt;}
.y346{bottom:363.910667pt;}
.y302{bottom:363.914667pt;}
.y10d{bottom:364.197333pt;}
.y147{bottom:364.454667pt;}
.y1c5{bottom:364.522667pt;}
.y2b1{bottom:364.737333pt;}
.y198{bottom:365.050667pt;}
.y1d7{bottom:365.126667pt;}
.y9d{bottom:365.290667pt;}
.y1b4{bottom:365.474667pt;}
.y23{bottom:365.901333pt;}
.y23f{bottom:365.948000pt;}
.ydd{bottom:366.282667pt;}
.y37f{bottom:367.069333pt;}
.y18b{bottom:367.485333pt;}
.y3d{bottom:367.748000pt;}
.y269{bottom:369.176000pt;}
.y334{bottom:371.138667pt;}
.yca{bottom:373.882667pt;}
.y12e{bottom:376.093333pt;}
.y2d3{bottom:377.950667pt;}
.y177{bottom:379.116000pt;}
.y70{bottom:379.509333pt;}
.y282{bottom:379.829333pt;}
.y301{bottom:379.854667pt;}
.y10c{bottom:380.137333pt;}
.y345{bottom:380.317333pt;}
.y146{bottom:380.396000pt;}
.y1c4{bottom:380.462667pt;}
.y197{bottom:380.990667pt;}
.y1d6{bottom:381.066667pt;}
.y9c{bottom:381.230667pt;}
.y1b3{bottom:381.414667pt;}
.y22{bottom:381.841333pt;}
.y23e{bottom:381.888000pt;}
.y216{bottom:382.166667pt;}
.ydc{bottom:382.222667pt;}
.y18a{bottom:383.425333pt;}
.y37e{bottom:383.546667pt;}
.y3c{bottom:383.688000pt;}
.y268{bottom:385.116000pt;}
.y1eb{bottom:385.593333pt;}
.y333{bottom:387.078667pt;}
.y2b0{bottom:388.346667pt;}
.yc9{bottom:389.822667pt;}
.y12d{bottom:392.034667pt;}
.y344{bottom:392.936000pt;}
.y2d2{bottom:393.892000pt;}
.y176{bottom:395.056000pt;}
.y310{bottom:395.449333pt;}
.y6f{bottom:395.450667pt;}
.y281{bottom:395.769333pt;}
.y300{bottom:395.794667pt;}
.y37d{bottom:396.165333pt;}
.y145{bottom:396.336000pt;}
.y1c3{bottom:396.402667pt;}
.y10b{bottom:396.705333pt;}
.y215{bottom:396.778667pt;}
.y1d5{bottom:397.006667pt;}
.y9b{bottom:397.172000pt;}
.y1b2{bottom:397.354667pt;}
.y21{bottom:397.781333pt;}
.y23d{bottom:397.829333pt;}
.ydb{bottom:398.164000pt;}
.y189{bottom:399.365333pt;}
.y3b{bottom:399.629333pt;}
.y267{bottom:401.057333pt;}
.y332{bottom:403.018667pt;}
.y196{bottom:403.981333pt;}
.yc8{bottom:406.764000pt;}
.y12c{bottom:407.974667pt;}
.y343{bottom:409.342667pt;}
.y175{bottom:410.996000pt;}
.y6e{bottom:411.390667pt;}
.y280{bottom:411.709333pt;}
.y2ff{bottom:411.734667pt;}
.y144{bottom:412.276000pt;}
.y1c2{bottom:412.342667pt;}
.y37c{bottom:412.642667pt;}
.y10a{bottom:412.645333pt;}
.y1d4{bottom:412.948000pt;}
.y9a{bottom:413.112000pt;}
.y1b1{bottom:413.294667pt;}
.y20{bottom:413.721333pt;}
.y1ea{bottom:413.725333pt;}
.y23c{bottom:413.769333pt;}
.yda{bottom:414.104000pt;}
.y3a{bottom:415.569333pt;}
.y266{bottom:416.997333pt;}
.y331{bottom:418.960000pt;}
.y20d{bottom:419.494667pt;}
.y342{bottom:421.962667pt;}
.y2af{bottom:422.661333pt;}
.yc7{bottom:422.705333pt;}
.y188{bottom:422.900000pt;}
.y12b{bottom:423.914667pt;}
.y174{bottom:426.936000pt;}
.y6d{bottom:427.330667pt;}
.y27f{bottom:427.650667pt;}
.y143{bottom:428.216000pt;}
.y1c1{bottom:428.282667pt;}
.y109{bottom:428.585333pt;}
.y1d3{bottom:428.888000pt;}
.y99{bottom:429.052000pt;}
.y37b{bottom:429.118667pt;}
.y1b0{bottom:429.236000pt;}
.y1f{bottom:429.662667pt;}
.y1e9{bottom:429.665333pt;}
.y23b{bottom:429.709333pt;}
.yd9{bottom:430.044000pt;}
.y39{bottom:431.509333pt;}
.y265{bottom:432.937333pt;}
.y2fe{bottom:434.152000pt;}
.y341{bottom:434.582667pt;}
.y330{bottom:434.900000pt;}
.y195{bottom:435.946667pt;}
.y2ae{bottom:438.602667pt;}
.y12a{bottom:439.854667pt;}
.y173{bottom:442.876000pt;}
.y6c{bottom:443.270667pt;}
.yc6{bottom:443.466667pt;}
.y27e{bottom:443.590667pt;}
.y142{bottom:444.156000pt;}
.y1c0{bottom:444.222667pt;}
.y108{bottom:444.526667pt;}
.y1d2{bottom:444.828000pt;}
.y1af{bottom:445.176000pt;}
.y37a{bottom:445.596000pt;}
.y1e{bottom:445.602667pt;}
.y1e8{bottom:445.606667pt;}
.y23a{bottom:445.649333pt;}
.yd8{bottom:445.984000pt;}
.y38{bottom:447.449333pt;}
.y264{bottom:450.278667pt;}
.y32f{bottom:450.840000pt;}
.y340{bottom:450.989333pt;}
.y194{bottom:451.886667pt;}
.y187{bottom:451.888000pt;}
.y98{bottom:453.357333pt;}
.y2ad{bottom:454.542667pt;}
.yc5{bottom:454.585333pt;}
.y129{bottom:455.794667pt;}
.y379{bottom:458.214667pt;}
.y172{bottom:458.817333pt;}
.y6b{bottom:459.210667pt;}
.y27d{bottom:459.690667pt;}
.y141{bottom:460.096000pt;}
.y107{bottom:460.466667pt;}
.y1d1{bottom:460.768000pt;}
.y1ae{bottom:461.116000pt;}
.y1d{bottom:461.542667pt;}
.y1e7{bottom:461.546667pt;}
.y239{bottom:461.589333pt;}
.yd7{bottom:461.924000pt;}
.y37{bottom:463.389333pt;}
.y33f{bottom:463.608000pt;}
.y2fd{bottom:463.942667pt;}
.y263{bottom:466.218667pt;}
.y32e{bottom:467.582667pt;}
.y186{bottom:467.828000pt;}
.y2ac{bottom:470.482667pt;}
.yc4{bottom:470.525333pt;}
.y128{bottom:473.060000pt;}
.y378{bottom:474.692000pt;}
.y171{bottom:474.757333pt;}
.y6a{bottom:475.150667pt;}
.y27c{bottom:475.630667pt;}
.y140{bottom:476.037333pt;}
.y33e{bottom:476.228000pt;}
.y106{bottom:476.406667pt;}
.y1d0{bottom:476.708000pt;}
.y1ad{bottom:477.056000pt;}
.y1c{bottom:477.482667pt;}
.y1e6{bottom:477.486667pt;}
.y238{bottom:477.529333pt;}
.yd6{bottom:477.864000pt;}
.y2fc{bottom:479.882667pt;}
.y36{bottom:481.526667pt;}
.y32d{bottom:483.522667pt;}
.y262{bottom:483.561333pt;}
.y185{bottom:483.768000pt;}
.yc3{bottom:486.465333pt;}
.y377{bottom:487.310667pt;}
.y2ab{bottom:487.589333pt;}
.y127{bottom:489.000000pt;}
.y97{bottom:490.305333pt;}
.y170{bottom:490.697333pt;}
.y2d1{bottom:491.090667pt;}
.y69{bottom:491.092000pt;}
.y27b{bottom:491.570667pt;}
.y13f{bottom:491.977333pt;}
.y105{bottom:492.346667pt;}
.y33d{bottom:492.634667pt;}
.y1cf{bottom:492.648000pt;}
.y1ac{bottom:492.996000pt;}
.y1e5{bottom:493.426667pt;}
.y237{bottom:493.470667pt;}
.yd5{bottom:493.805333pt;}
.y2fb{bottom:495.822667pt;}
.y35{bottom:497.468000pt;}
.y32c{bottom:499.462667pt;}
.y261{bottom:499.501333pt;}
.y184{bottom:499.708000pt;}
.y376{bottom:499.930667pt;}
.yc2{bottom:502.406667pt;}
.y2aa{bottom:503.530667pt;}
.y126{bottom:504.940000pt;}
.y33c{bottom:505.253333pt;}
.y96{bottom:506.246667pt;}
.y16f{bottom:506.637333pt;}
.y68{bottom:507.032000pt;}
.y27a{bottom:507.510667pt;}
.y13e{bottom:507.917333pt;}
.y104{bottom:508.286667pt;}
.y1ab{bottom:508.936000pt;}
.y1ce{bottom:509.366667pt;}
.y236{bottom:509.410667pt;}
.yd4{bottom:509.745333pt;}
.y2fa{bottom:511.764000pt;}
.y1b{bottom:513.408000pt;}
.y32b{bottom:515.402667pt;}
.y260{bottom:515.441333pt;}
.y375{bottom:516.406667pt;}
.y33b{bottom:517.873333pt;}
.yc1{bottom:518.346667pt;}
.y2a9{bottom:519.470667pt;}
.y125{bottom:520.881333pt;}
.y95{bottom:522.186667pt;}
.y16e{bottom:522.616000pt;}
.y67{bottom:522.972000pt;}
.y279{bottom:523.450667pt;}
.y13d{bottom:523.857333pt;}
.y103{bottom:524.228000pt;}
.y235{bottom:525.350667pt;}
.yd3{bottom:525.685333pt;}
.y2f9{bottom:527.704000pt;}
.y374{bottom:529.026667pt;}
.y32a{bottom:531.342667pt;}
.y25f{bottom:531.381333pt;}
.y2a8{bottom:535.410667pt;}
.y33a{bottom:536.470667pt;}
.y124{bottom:536.821333pt;}
.y94{bottom:538.126667pt;}
.y16d{bottom:538.556000pt;}
.y66{bottom:538.912000pt;}
.y278{bottom:539.392000pt;}
.y13c{bottom:539.797333pt;}
.y102{bottom:540.168000pt;}
.y183{bottom:540.269333pt;}
.y2d0{bottom:540.470667pt;}
.y234{bottom:541.290667pt;}
.y373{bottom:541.645333pt;}
.yc0{bottom:541.716000pt;}
.y1a{bottom:542.757333pt;}
.y2f8{bottom:543.644000pt;}
.y1aa{bottom:543.828000pt;}
.y329{bottom:547.284000pt;}
.y2a7{bottom:551.350667pt;}
.y1cd{bottom:551.818667pt;}
.y93{bottom:554.066667pt;}
.y123{bottom:554.085333pt;}
.y16c{bottom:554.497333pt;}
.y65{bottom:554.852000pt;}
.y182{bottom:554.881333pt;}
.y25e{bottom:555.332000pt;}
.y13b{bottom:555.738667pt;}
.y101{bottom:556.108000pt;}
.y2cf{bottom:556.410667pt;}
.y233{bottom:557.230667pt;}
.y19{bottom:557.369333pt;}
.y372{bottom:558.122667pt;}
.y1a9{bottom:558.440000pt;}
.y2f7{bottom:559.584000pt;}
.y328{bottom:563.224000pt;}
.y339{bottom:564.276000pt;}
.y1cc{bottom:566.429333pt;}
.y2a6{bottom:568.458667pt;}
.y181{bottom:569.493333pt;}
.y92{bottom:570.006667pt;}
.y122{bottom:570.026667pt;}
.y16b{bottom:570.437333pt;}
.y371{bottom:570.741333pt;}
.y30f{bottom:570.792000pt;}
.y64{bottom:570.793333pt;}
.y13a{bottom:571.678667pt;}
.y18{bottom:571.981333pt;}
.y100{bottom:572.048000pt;}
.y2ce{bottom:572.350667pt;}
.y232{bottom:573.170667pt;}
.y2f6{bottom:575.869333pt;}
.ybf{bottom:578.497333pt;}
.y327{bottom:579.164000pt;}
.y2a5{bottom:584.398667pt;}
.y91{bottom:585.948000pt;}
.y121{bottom:585.966667pt;}
.y16a{bottom:586.377333pt;}
.y17{bottom:586.592000pt;}
.y30e{bottom:586.732000pt;}
.y63{bottom:586.733333pt;}
.y370{bottom:587.218667pt;}
.yff{bottom:587.988000pt;}
.y2cd{bottom:588.290667pt;}
.y231{bottom:589.112000pt;}
.y2f5{bottom:591.809333pt;}
.ybe{bottom:593.109333pt;}
.y139{bottom:593.596000pt;}
.y25d{bottom:594.002667pt;}
.y326{bottom:595.104000pt;}
.y36f{bottom:599.837333pt;}
.y2a4{bottom:600.338667pt;}
.y16{bottom:601.204000pt;}
.y120{bottom:601.906667pt;}
.y169{bottom:602.317333pt;}
.y62{bottom:602.673333pt;}
.yfe{bottom:603.928000pt;}
.y2cc{bottom:604.230667pt;}
.y230{bottom:605.052000pt;}
.ybd{bottom:607.721333pt;}
.y2f4{bottom:607.749333pt;}
.y25c{bottom:608.614667pt;}
.y138{bottom:609.536000pt;}
.y90{bottom:610.252000pt;}
.y325{bottom:611.044000pt;}
.y36e{bottom:612.457333pt;}
.y15{bottom:615.816000pt;}
.y2a3{bottom:616.278667pt;}
.y168{bottom:618.257333pt;}
.y61{bottom:618.613333pt;}
.y11f{bottom:619.172000pt;}
.yfd{bottom:619.869333pt;}
.y2cb{bottom:620.172000pt;}
.y22f{bottom:620.992000pt;}
.ybc{bottom:622.333333pt;}
.y2f3{bottom:623.689333pt;}
.y36d{bottom:625.076000pt;}
.y324{bottom:626.985333pt;}
.y14{bottom:630.428000pt;}
.y2a2{bottom:632.218667pt;}
.ya4{bottom:633.221333pt;}
.y167{bottom:634.198667pt;}
.y60{bottom:634.553333pt;}
.y11e{bottom:635.112000pt;}
.yfc{bottom:635.809333pt;}
.y22e{bottom:636.932000pt;}
.y36c{bottom:637.696000pt;}
.y2f2{bottom:639.629333pt;}
.y323{bottom:642.925333pt;}
.y2ca{bottom:644.349333pt;}
.y13{bottom:645.040000pt;}
.y8f{bottom:647.201333pt;}
.y2a1{bottom:648.160000pt;}
.y166{bottom:650.138667pt;}
.y36b{bottom:650.314667pt;}
.y5f{bottom:650.493333pt;}
.y11d{bottom:651.052000pt;}
.yfb{bottom:651.749333pt;}
.y22d{bottom:652.872000pt;}
.y2f1{bottom:655.569333pt;}
.y322{bottom:658.865333pt;}
.y12{bottom:659.652000pt;}
.y36a{bottom:662.934667pt;}
.y8e{bottom:663.141333pt;}
.y2a0{bottom:664.100000pt;}
.y30d{bottom:666.433333pt;}
.y5e{bottom:666.434667pt;}
.y11c{bottom:666.992000pt;}
.yfa{bottom:667.689333pt;}
.y22c{bottom:668.813333pt;}
.y2f0{bottom:671.510667pt;}
.y20c{bottom:671.878667pt;}
.y11{bottom:674.264000pt;}
.y321{bottom:674.805333pt;}
.y8d{bottom:679.081333pt;}
.y369{bottom:679.410667pt;}
.y165{bottom:679.438667pt;}
.y29f{bottom:680.040000pt;}
.y2c9{bottom:680.816000pt;}
.y30c{bottom:682.373333pt;}
.y5d{bottom:682.374667pt;}
.y11b{bottom:682.932000pt;}
.yf9{bottom:684.257333pt;}
.y20b{bottom:686.490667pt;}
.y2ef{bottom:687.450667pt;}
.y10{bottom:688.876000pt;}
.y320{bottom:690.745333pt;}
.y368{bottom:692.030667pt;}
.y164{bottom:694.050667pt;}
.y29e{bottom:695.980000pt;}
.y8c{bottom:696.668000pt;}
.y2c8{bottom:696.756000pt;}
.y22b{bottom:697.829333pt;}
.y5c{bottom:698.314667pt;}
.y11a{bottom:698.873333pt;}
.yf8{bottom:700.197333pt;}
.y20a{bottom:701.102667pt;}
.y2ee{bottom:703.390667pt;}
.yf{bottom:703.488000pt;}
.y31f{bottom:706.685333pt;}
.y367{bottom:708.506667pt;}
.y163{bottom:708.662667pt;}
.y29d{bottom:711.920000pt;}
.y22a{bottom:712.441333pt;}
.y8b{bottom:712.608000pt;}
.y2c7{bottom:712.696000pt;}
.y5b{bottom:714.254667pt;}
.yf7{bottom:716.137333pt;}
.ye{bottom:718.100000pt;}
.y2ed{bottom:719.330667pt;}
.y366{bottom:721.126667pt;}
.y31e{bottom:722.626667pt;}
.y1f6{bottom:723.818667pt;}
.y155{bottom:727.598667pt;}
.y29c{bottom:727.860000pt;}
.y8a{bottom:728.549333pt;}
.y2c6{bottom:728.636000pt;}
.y5a{bottom:730.194667pt;}
.y222{bottom:731.378667pt;}
.yd{bottom:732.710667pt;}
.y2ec{bottom:735.270667pt;}
.y365{bottom:737.602667pt;}
.y31d{bottom:738.566667pt;}
.y29b{bottom:743.801333pt;}
.y89{bottom:744.489333pt;}
.y2c5{bottom:744.576000pt;}
.y59{bottom:746.134667pt;}
.yc{bottom:747.322667pt;}
.y364{bottom:750.222667pt;}
.y2eb{bottom:751.212000pt;}
.y31c{bottom:754.506667pt;}
.yf6{bottom:759.514667pt;}
.y29a{bottom:759.741333pt;}
.y88{bottom:760.429333pt;}
.y2c4{bottom:760.517333pt;}
.yb{bottom:761.934667pt;}
.y30b{bottom:762.074667pt;}
.y58{bottom:762.076000pt;}
.y363{bottom:766.698667pt;}
.y31b{bottom:770.446667pt;}
.y2ea{bottom:773.629333pt;}
.y299{bottom:775.681333pt;}
.y87{bottom:776.369333pt;}
.y2c3{bottom:776.457333pt;}
.ya{bottom:776.546667pt;}
.y57{bottom:778.016000pt;}
.yf3{bottom:781.433333pt;}
.yf5{bottom:782.121333pt;}
.yf4{bottom:782.246667pt;}
.y362{bottom:783.176000pt;}
.y31a{bottom:786.386667pt;}
.y9{bottom:791.158667pt;}
.y298{bottom:791.621333pt;}
.y86{bottom:792.309333pt;}
.y2c2{bottom:792.397333pt;}
.y56{bottom:793.956000pt;}
.yf2{bottom:795.998667pt;}
.y361{bottom:799.652000pt;}
.y319{bottom:802.326667pt;}
.y2e9{bottom:803.418667pt;}
.y8{bottom:805.770667pt;}
.y297{bottom:807.561333pt;}
.y85{bottom:808.250667pt;}
.y2c1{bottom:808.337333pt;}
.y55{bottom:809.896000pt;}
.y360{bottom:812.272000pt;}
.yf1{bottom:817.276000pt;}
.yf0{bottom:817.916000pt;}
.y318{bottom:818.268000pt;}
.y2e8{bottom:819.358667pt;}
.y7{bottom:820.382667pt;}
.y84{bottom:824.190667pt;}
.y2c0{bottom:824.277333pt;}
.y397{bottom:824.508000pt;}
.y296{bottom:824.669333pt;}
.y35f{bottom:824.890667pt;}
.y54{bottom:825.836000pt;}
.yef{bottom:829.772000pt;}
.y317{bottom:834.208000pt;}
.y2e7{bottom:835.300000pt;}
.y396{bottom:837.126667pt;}
.y83{bottom:840.130667pt;}
.y6{bottom:840.152000pt;}
.y2bf{bottom:840.217333pt;}
.y295{bottom:840.609333pt;}
.y35e{bottom:841.368000pt;}
.y53{bottom:841.776000pt;}
.y395{bottom:849.746667pt;}
.y316{bottom:850.148000pt;}
.yee{bottom:851.049333pt;}
.yed{bottom:851.164000pt;}
.y2e6{bottom:851.240000pt;}
.yec{bottom:851.689333pt;}
.y5{bottom:852.770667pt;}
.y35d{bottom:853.986667pt;}
.y82{bottom:856.070667pt;}
.y2be{bottom:856.158667pt;}
.y294{bottom:856.549333pt;}
.y30a{bottom:857.716000pt;}
.y52{bottom:857.717333pt;}
.yeb{bottom:866.254667pt;}
.y394{bottom:866.350667pt;}
.y35c{bottom:866.606667pt;}
.y2e5{bottom:867.180000pt;}
.y4{bottom:870.178667pt;}
.y81{bottom:872.010667pt;}
.y293{bottom:872.489333pt;}
.y315{bottom:873.229333pt;}
.y51{bottom:873.657333pt;}
.y393{bottom:882.956000pt;}
.y35b{bottom:883.082667pt;}
.y2e4{bottom:883.120000pt;}
.ye7{bottom:888.172000pt;}
.y292{bottom:888.430667pt;}
.y50{bottom:889.597333pt;}
.ye6{bottom:894.814667pt;}
.y392{bottom:895.574667pt;}
.y2e3{bottom:899.060000pt;}
.y35a{bottom:899.560000pt;}
.y3{bottom:902.060000pt;}
.yea{bottom:903.581333pt;}
.ye8{bottom:904.013333pt;}
.ye9{bottom:904.112000pt;}
.y4f{bottom:905.537333pt;}
.y391{bottom:908.194667pt;}
.y359{bottom:912.178667pt;}
.y2e2{bottom:915.000000pt;}
.y4e{bottom:921.477333pt;}
.y2{bottom:924.296000pt;}
.y358{bottom:924.798667pt;}
.ye5{bottom:933.038667pt;}
.y2bd{bottom:937.417333pt;}
.y4d{bottom:937.418667pt;}
.y1{bottom:990.784000pt;}
.h1a{height:19.340672pt;}
.h2b{height:21.089408pt;}
.h28{height:21.348704pt;}
.h3{height:29.244954pt;}
.h2d{height:29.458287pt;}
.h18{height:29.510804pt;}
.h4{height:32.900710pt;}
.h25{height:36.449833pt;}
.h1{height:36.556100pt;}
.h6{height:36.768636pt;}
.hd{height:36.817434pt;}
.he{height:38.626005pt;}
.h19{height:38.631339pt;}
.h5{height:39.293807pt;}
.h2a{height:39.487497pt;}
.h7{height:44.805476pt;}
.h2c{height:44.874530pt;}
.h1d{height:44.879863pt;}
.h1b{height:49.354163pt;}
.ha{height:49.840143pt;}
.h8{height:50.037476pt;}
.h2{height:52.947042pt;}
.h9{height:54.017434pt;}
.hc{height:54.593434pt;}
.h20{height:55.057434pt;}
.h14{height:58.203229pt;}
.h15{height:58.257434pt;}
.h21{height:60.815863pt;}
.h1e{height:61.093197pt;}
.h24{height:62.874530pt;}
.h1f{height:62.917197pt;}
.h22{height:63.375863pt;}
.h23{height:66.127863pt;}
.hb{height:67.877476pt;}
.h1c{height:70.657434pt;}
.h26{height:71.933611pt;}
.h16{height:72.008277pt;}
.h29{height:72.524100pt;}
.hf{height:72.529434pt;}
.h13{height:83.233434pt;}
.h12{height:87.040717pt;}
.h11{height:108.977434pt;}
.h10{height:114.399497pt;}
.h27{height:226.884000pt;}
.h17{height:317.483040pt;}
.h0{height:1056.000000pt;}
.w2{width:324.120000pt;}
.w1{width:453.547200pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x40{left:8.161378pt;}
.x54{left:11.420369pt;}
.x1d{left:17.467614pt;}
.x3d{left:19.196817pt;}
.x4b{left:20.960570pt;}
.x3f{left:23.597196pt;}
.x4a{left:24.964893pt;}
.x1b{left:29.774366pt;}
.x4c{left:32.244988pt;}
.x3e{left:33.608093pt;}
.x1a{left:35.377815pt;}
.x19{left:40.981139pt;}
.x4f{left:41.900703pt;}
.x53{left:44.064882pt;}
.x1c{left:51.231306pt;}
.x1e{left:55.433547pt;}
.x55{left:57.823740pt;}
.x1f{left:75.205433pt;}
.x1{left:76.800000pt;}
.x8{left:78.128000pt;}
.x63{left:80.121333pt;}
.x30{left:89.576000pt;}
.x9{left:96.725333pt;}
.x62{left:100.046667pt;}
.x3c{left:106.688000pt;}
.x42{left:109.447221pt;}
.x64{left:119.525333pt;}
.x4e{left:127.753699pt;}
.x31{left:131.553333pt;}
.x52{left:135.742897pt;}
.x10{left:138.624000pt;}
.x41{left:142.479551pt;}
.x2{left:145.857333pt;}
.x45{left:152.441333pt;}
.x18{left:162.363598pt;}
.x23{left:168.650266pt;}
.x38{left:170.348000pt;}
.x46{left:173.886667pt;}
.x56{left:174.909218pt;}
.x17{left:180.788000pt;}
.x3b{left:182.336000pt;}
.x57{left:183.225711pt;}
.x21{left:186.560341pt;}
.x20{left:192.164169pt;}
.x50{left:194.770911pt;}
.x7{left:199.685333pt;}
.x22{left:202.413076pt;}
.x25{left:206.615947pt;}
.x43{left:210.776136pt;}
.x47{left:213.280000pt;}
.x3{left:214.585333pt;}
.x65{left:216.580000pt;}
.x26{left:221.903007pt;}
.x24{left:229.231574pt;}
.x48{left:240.329333pt;}
.x11{left:246.290667pt;}
.x27{left:248.792057pt;}
.x51{left:252.397646pt;}
.x44{left:254.810539pt;}
.x49{left:278.768000pt;}
.x5{left:285.925333pt;}
.x12{left:287.052000pt;}
.x4d{left:309.863078pt;}
.x5a{left:313.785370pt;}
.xf{left:315.025333pt;}
.x2b{left:319.832666pt;}
.x58{left:326.091618pt;}
.x29{left:332.138914pt;}
.x6{left:337.232000pt;}
.x28{left:343.346569pt;}
.x59{left:346.429430pt;}
.x2a{left:353.595476pt;}
.x2d{left:357.798347pt;}
.x32{left:360.820000pt;}
.x4{left:372.690667pt;}
.x2e{left:375.897400pt;}
.x2c{left:380.413974pt;}
.x39{left:386.366667pt;}
.x2f{left:399.974457pt;}
.xa{left:414.201333pt;}
.x13{left:415.529333pt;}
.x61{left:417.522667pt;}
.xc{left:420.842667pt;}
.x5c{left:422.836000pt;}
.xb{left:434.126667pt;}
.x5d{left:437.448000pt;}
.x33{left:448.137333pt;}
.x34{left:456.722667pt;}
.x5f{left:471.952000pt;}
.x3a{left:480.014667pt;}
.x60{left:484.618667pt;}
.x5e{left:486.500000pt;}
.xd{left:519.613333pt;}
.x14{left:521.525333pt;}
.x35{left:534.792000pt;}
.x15{left:578.066667pt;}
.xe{left:586.273333pt;}
.x5b{left:594.294667pt;}
.x36{left:609.790667pt;}
.x37{left:618.590667pt;}
.x16{left:619.689333pt;}
}




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