
    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_006dde1aacc7d8c0e68b9076.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_cc0b6a69487a86889c9df9fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.779000;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_970b7bfbbc15daef5593121c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_ffb564b4d17614adb9dc4a13.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_e76b5537f9ee2444d200f522.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908000;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_1157777fcfae3053b3c0d035.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_a0a798e4438234f770e767e0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.969000;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_cf3a76152216b3f18e677449.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.947000;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_61023fcf449871da9ff42ba9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999000;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_19146f95d394ee08b9fa253d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_57cd7c17d185b28a6d3e6242.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.710000;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_72be90bc8db7e4a90857faad.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.685000;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_38a2902306ded2badf2fe7bc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.514000;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_3b108905fd490feca61a4e16.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.409000;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_256a74bcb03fc70b96b25a66.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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_0a2c534a1835e448e792a4ff.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.868000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_2d1c8df81c60177f8892986d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_cd84011d01782ee1d24c7b80.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.658000;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:ff13;src:url('chunks/assets/font_5565e745a7ee30a5d5a3f13e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.716000;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:ff14;src:url('chunks/assets/font_edfaf7df5b70690e8464baab.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.922000;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:ff15;src:url('chunks/assets/font_a1385302665ef4be5d24bf96.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.656000;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:ff16;src:url('chunks/assets/font_cd3b672f2b960ba610099f61.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.923000;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:ff17;src:url('chunks/assets/font_6b098350af60aae140d38a86.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v10{vertical-align:-62.226000px;}
.vc{vertical-align:-60.324000px;}
.vf{vertical-align:-52.404000px;}
.vb{vertical-align:-50.508000px;}
.v2{vertical-align:-26.028000px;}
.v1e{vertical-align:-23.754000px;}
.v1f{vertical-align:-15.714000px;}
.v7{vertical-align:-11.412000px;}
.v3{vertical-align:-9.816000px;}
.v9{vertical-align:-7.044000px;}
.vd{vertical-align:-1.962000px;}
.v0{vertical-align:0.000000px;}
.v1d{vertical-align:6.360000px;}
.v22{vertical-align:8.514000px;}
.v23{vertical-align:9.816000px;}
.v21{vertical-align:12.270000px;}
.v8{vertical-align:15.048000px;}
.v15{vertical-align:16.728000px;}
.v20{vertical-align:18.912000px;}
.v24{vertical-align:21.696000px;}
.v4{vertical-align:23.748000px;}
.v1{vertical-align:26.028000px;}
.v19{vertical-align:27.030000px;}
.v2a{vertical-align:30.162000px;}
.v17{vertical-align:34.464000px;}
.v6{vertical-align:40.752000px;}
.ve{vertical-align:42.678000px;}
.v16{vertical-align:44.280000px;}
.v29{vertical-align:49.086000px;}
.v1c{vertical-align:53.022000px;}
.v18{vertical-align:61.008000px;}
.v13{vertical-align:68.700000px;}
.v1b{vertical-align:71.922000px;}
.v27{vertical-align:75.042000px;}
.v28{vertical-align:76.776000px;}
.v12{vertical-align:78.522000px;}
.v5{vertical-align:92.292000px;}
.v26{vertical-align:93.972000px;}
.v1a{vertical-align:97.920000px;}
.v14{vertical-align:108.684000px;}
.v11{vertical-align:112.584000px;}
.va{vertical-align:114.546000px;}
.v25{vertical-align:133.284000px;}
.v2b{vertical-align:163.794000px;}
.ls1{letter-spacing:0.000000px;}
.ls5b{letter-spacing:0.001051px;}
.ls87{letter-spacing:0.001053px;}
.ls4c{letter-spacing:0.001056px;}
.ls122{letter-spacing:0.001084px;}
.ls63{letter-spacing:0.001289px;}
.ls50{letter-spacing:0.001588px;}
.lsd6{letter-spacing:0.001593px;}
.ls8{letter-spacing:0.001603px;}
.ls53{letter-spacing:0.001605px;}
.ls3{letter-spacing:0.001607px;}
.ls80{letter-spacing:0.001610px;}
.ls60{letter-spacing:0.002137px;}
.lsa2{letter-spacing:0.002157px;}
.ls5f{letter-spacing:0.002682px;}
.ls15{letter-spacing:0.002688px;}
.ls10b{letter-spacing:0.002696px;}
.lsb6{letter-spacing:0.002700px;}
.ls3c{letter-spacing:0.002706px;}
.lsea{letter-spacing:0.002712px;}
.ls17{letter-spacing:0.003056px;}
.ls5d{letter-spacing:0.003239px;}
.lsa8{letter-spacing:0.003249px;}
.ls5e{letter-spacing:0.003254px;}
.ls7f{letter-spacing:0.003771px;}
.ls40{letter-spacing:0.004338px;}
.ls11b{letter-spacing:0.004344px;}
.lse8{letter-spacing:0.004860px;}
.lse{letter-spacing:0.004890px;}
.ls103{letter-spacing:0.005400px;}
.ls110{letter-spacing:0.005978px;}
.ls7b{letter-spacing:0.007588px;}
.ls4{letter-spacing:0.007603px;}
.lsb{letter-spacing:0.568088px;}
.lsb9{letter-spacing:1.037409px;}
.lsbd{letter-spacing:1.043409px;}
.ls8a{letter-spacing:1.045026px;}
.lsbb{letter-spacing:1.045603px;}
.ls2b{letter-spacing:1.051603px;}
.ls16{letter-spacing:1.406783px;}
.ls8e{letter-spacing:1.881771px;}
.ls70{letter-spacing:1.887771px;}
.lsf1{letter-spacing:2.056335px;}
.lsf3{letter-spacing:2.062335px;}
.lsfe{letter-spacing:2.341610px;}
.ls102{letter-spacing:2.347610px;}
.ls89{letter-spacing:2.348156px;}
.lsd9{letter-spacing:2.349242px;}
.ls5c{letter-spacing:2.353067px;}
.ls5{letter-spacing:2.984915px;}
.lsf5{letter-spacing:2.988532px;}
.lsa7{letter-spacing:2.988960px;}
.ls35{letter-spacing:2.989289px;}
.lsf0{letter-spacing:2.989883px;}
.ls41{letter-spacing:2.990289px;}
.ls11{letter-spacing:2.990915px;}
.lsf8{letter-spacing:2.991340px;}
.ls3f{letter-spacing:2.995289px;}
.lsab{letter-spacing:3.454878px;}
.lscd{letter-spacing:3.460878px;}
.ls56{letter-spacing:3.556088px;}
.ls8f{letter-spacing:3.638154px;}
.ls33{letter-spacing:3.741796px;}
.lsed{letter-spacing:3.747796px;}
.ls42{letter-spacing:5.069159px;}
.ls1e{letter-spacing:5.092888px;}
.ls38{letter-spacing:5.743488px;}
.ls36{letter-spacing:5.749488px;}
.lsd8{letter-spacing:5.982532px;}
.ls1f{letter-spacing:6.367460px;}
.ls100{letter-spacing:7.043428px;}
.ls52{letter-spacing:7.131229px;}
.ls75{letter-spacing:7.137254px;}
.lsd7{letter-spacing:7.173056px;}
.ls12{letter-spacing:8.080888px;}
.ls25{letter-spacing:8.086888px;}
.ls1b{letter-spacing:9.785412px;}
.ls90{letter-spacing:10.042177px;}
.ls8b{letter-spacing:10.048177px;}
.ls4e{letter-spacing:10.593249px;}
.ls4f{letter-spacing:10.595412px;}
.ls6{letter-spacing:10.904712px;}
.lsbf{letter-spacing:10.906886px;}
.lsbc{letter-spacing:10.909604px;}
.ls3e{letter-spacing:10.910712px;}
.ls77{letter-spacing:10.915604px;}
.ls7{letter-spacing:10.930918px;}
.ls1a{letter-spacing:11.068347px;}
.ls5a{letter-spacing:11.921412px;}
.ls115{letter-spacing:12.119412px;}
.ls114{letter-spacing:13.441289px;}
.ls66{letter-spacing:13.898915px;}
.ls112{letter-spacing:14.177412px;}
.ls8c{letter-spacing:14.362878px;}
.lse7{letter-spacing:14.368878px;}
.ls10c{letter-spacing:14.540700px;}
.ls85{letter-spacing:14.541249px;}
.ls65{letter-spacing:14.543412px;}
.ls8d{letter-spacing:14.545051px;}
.lsad{letter-spacing:14.545053px;}
.ls82{letter-spacing:14.545056px;}
.lsa3{letter-spacing:14.545605px;}
.lsde{letter-spacing:14.546154px;}
.lsb5{letter-spacing:14.547249px;}
.lsac{letter-spacing:14.548315px;}
.ls62{letter-spacing:14.549412px;}
.ls117{letter-spacing:15.109289px;}
.lsbe{letter-spacing:15.587409px;}
.ls91{letter-spacing:15.589026px;}
.lsa{letter-spacing:15.832347px;}
.ls6e{letter-spacing:15.981249px;}
.ls20{letter-spacing:17.020890px;}
.ls1d{letter-spacing:17.023051px;}
.ls111{letter-spacing:17.173289px;}
.ls76{letter-spacing:17.528915px;}
.lsae{letter-spacing:17.532960px;}
.ls64{letter-spacing:17.533289px;}
.ls49{letter-spacing:17.533588px;}
.lsdd{letter-spacing:17.534915px;}
.ls4a{letter-spacing:17.537412px;}
.lsff{letter-spacing:17.539289px;}
.lsb1{letter-spacing:17.616960px;}
.lsb2{letter-spacing:17.622960px;}
.lsa1{letter-spacing:18.081242px;}
.ls9{letter-spacing:18.106088px;}
.ls54{letter-spacing:18.175605px;}
.ls58{letter-spacing:18.177242px;}
.lsb0{letter-spacing:18.177771px;}
.ls3a{letter-spacing:18.179412px;}
.ls24{letter-spacing:18.179418px;}
.ls4d{letter-spacing:18.181053px;}
.ls2e{letter-spacing:18.181056px;}
.ls116{letter-spacing:18.182696px;}
.ls19{letter-spacing:18.185412px;}
.ls1c{letter-spacing:18.321771px;}
.lsc1{letter-spacing:18.458915px;}
.ls7a{letter-spacing:18.475056px;}
.ls27{letter-spacing:18.799603px;}
.ls101{letter-spacing:19.031412px;}
.ls26{letter-spacing:19.036347px;}
.lsfd{letter-spacing:19.037412px;}
.ls59{letter-spacing:19.053229px;}
.ls83{letter-spacing:19.091412px;}
.ls23{letter-spacing:19.225603px;}
.ls31{letter-spacing:19.504890px;}
.ls119{letter-spacing:19.622700px;}
.ls51{letter-spacing:19.845249px;}
.ls109{letter-spacing:19.889412px;}
.lseb{letter-spacing:20.027418px;}
.ls14{letter-spacing:20.303418px;}
.ls13{letter-spacing:20.306712px;}
.ls10{letter-spacing:20.307771px;}
.ls11a{letter-spacing:20.384700px;}
.ls10a{letter-spacing:20.527610px;}
.ls44{letter-spacing:20.650344px;}
.ls21{letter-spacing:20.769796px;}
.ls29{letter-spacing:20.799241px;}
.ls86{letter-spacing:20.819412px;}
.ls118{letter-spacing:20.881603px;}
.ls37{letter-spacing:20.959289px;}
.lsb8{letter-spacing:20.959603px;}
.lsc3{letter-spacing:21.115603px;}
.lsb3{letter-spacing:21.168960px;}
.lsc2{letter-spacing:21.248712px;}
.ls30{letter-spacing:21.463056px;}
.lsdc{letter-spacing:21.536915px;}
.ls73{letter-spacing:21.640890px;}
.lsba{letter-spacing:21.675254px;}
.ls78{letter-spacing:21.681254px;}
.ls6d{letter-spacing:21.775051px;}
.ls57{letter-spacing:21.790347px;}
.ls9d{letter-spacing:21.812712px;}
.lsc{letter-spacing:21.813242px;}
.ls88{letter-spacing:21.817051px;}
.ls39{letter-spacing:21.817056px;}
.ls11f{letter-spacing:21.818682px;}
.lse0{letter-spacing:21.818712px;}
.lse1{letter-spacing:21.820886px;}
.ls9e{letter-spacing:21.823051px;}
.ls11e{letter-spacing:21.824682px;}
.ls96{letter-spacing:21.831242px;}
.ls28{letter-spacing:22.084347px;}
.ls6f{letter-spacing:22.253412px;}
.ls108{letter-spacing:22.879289px;}
.ls34{letter-spacing:22.993056px;}
.lsf{letter-spacing:23.091771px;}
.ls9b{letter-spacing:23.197056px;}
.ls32{letter-spacing:23.253796px;}
.lsf6{letter-spacing:23.266059px;}
.ls11c{letter-spacing:23.372915px;}
.ls6c{letter-spacing:23.563603px;}
.ls2{letter-spacing:23.666712px;}
.ls71{letter-spacing:23.979249px;}
.ls121{letter-spacing:24.128700px;}
.ls9c{letter-spacing:24.164156px;}
.ls69{letter-spacing:24.235051px;}
.ls6a{letter-spacing:24.235056px;}
.ls92{letter-spacing:24.586177px;}
.lse4{letter-spacing:24.592177px;}
.ls113{letter-spacing:24.620915px;}
.ls107{letter-spacing:24.736890px;}
.lsc4{letter-spacing:24.746154px;}
.ls106{letter-spacing:24.757610px;}
.lsf7{letter-spacing:24.808059px;}
.lsb4{letter-spacing:24.810960px;}
.lsd{letter-spacing:24.811289px;}
.lsee{letter-spacing:24.814200px;}
.lsc7{letter-spacing:25.215229px;}
.ls2a{letter-spacing:25.305241px;}
.ls18{letter-spacing:25.311229px;}
.ls2c{letter-spacing:25.317254px;}
.ls74{letter-spacing:25.383796px;}
.ls45{letter-spacing:25.609056px;}
.ls48{letter-spacing:25.655412px;}
.ls47{letter-spacing:25.657053px;}
.ls99{letter-spacing:25.695771px;}
.ls120{letter-spacing:25.903597px;}
.lsd5{letter-spacing:26.171418px;}
.lsd3{letter-spacing:26.177412px;}
.lsd4{letter-spacing:26.180706px;}
.ls46{letter-spacing:26.305056px;}
.ls4b{letter-spacing:26.305588px;}
.ls0{letter-spacing:26.397234px;}
.ls22{letter-spacing:26.503597px;}
.lsf4{letter-spacing:26.504915px;}
.lsd0{letter-spacing:26.525951px;}
.lscf{letter-spacing:26.743289px;}
.lsdb{letter-spacing:26.822915px;}
.ls6b{letter-spacing:26.884890px;}
.ls2f{letter-spacing:26.908888px;}
.ls94{letter-spacing:26.950315px;}
.ls98{letter-spacing:26.980347px;}
.lsb7{letter-spacing:27.045254px;}
.ls68{letter-spacing:27.229289px;}
.ls3d{letter-spacing:27.565488px;}
.ls7c{letter-spacing:27.763289px;}
.ls55{letter-spacing:27.928888px;}
.ls95{letter-spacing:28.234347px;}
.lsf9{letter-spacing:28.631412px;}
.ls81{letter-spacing:28.767254px;}
.ls10f{letter-spacing:29.119289px;}
.lsd2{letter-spacing:29.173289px;}
.ls105{letter-spacing:29.453428px;}
.lsd1{letter-spacing:29.821289px;}
.ls3b{letter-spacing:29.887050px;}
.ls2d{letter-spacing:29.896888px;}
.lsf2{letter-spacing:29.932335px;}
.ls97{letter-spacing:30.502347px;}
.ls7d{letter-spacing:30.517488px;}
.ls72{letter-spacing:31.107229px;}
.ls9a{letter-spacing:40.724712px;}
.lsdf{letter-spacing:53.726712px;}
.lsca{letter-spacing:59.771412px;}
.lsaa{letter-spacing:59.773051px;}
.ls9f{letter-spacing:59.773056px;}
.lsc5{letter-spacing:59.776886px;}
.lsa6{letter-spacing:59.777412px;}
.lsc9{letter-spacing:60.815409px;}
.lsa5{letter-spacing:60.817026px;}
.lse3{letter-spacing:60.821409px;}
.lscc{letter-spacing:66.909254px;}
.lse6{letter-spacing:66.915254px;}
.lse9{letter-spacing:69.433289px;}
.lsec{letter-spacing:69.439289px;}
.ls123{letter-spacing:71.726700px;}
.ls11d{letter-spacing:71.732700px;}
.ls7e{letter-spacing:77.849412px;}
.lsc6{letter-spacing:80.447412px;}
.ls124{letter-spacing:81.296700px;}
.ls61{letter-spacing:81.695412px;}
.ls84{letter-spacing:92.444700px;}
.lsc0{letter-spacing:93.044712px;}
.lsda{letter-spacing:93.164915px;}
.ls10d{letter-spacing:105.181289px;}
.lsa0{letter-spacing:119.729412px;}
.ls43{letter-spacing:135.815282px;}
.lsfc{letter-spacing:196.355412px;}
.ls67{letter-spacing:437.090712px;}
.ls93{letter-spacing:523.886712px;}
.lsce{letter-spacing:549.542712px;}
.lsaf{letter-spacing:566.990712px;}
.ls104{letter-spacing:579.854712px;}
.ls10e{letter-spacing:633.176712px;}
.ls79{letter-spacing:653.240712px;}
.lsfb{letter-spacing:751.982712px;}
.lse5{letter-spacing:807.189254px;}
.lsfa{letter-spacing:825.050712px;}
.lscb{letter-spacing:839.463254px;}
.lsa9{letter-spacing:839.659051px;}
.lsef{letter-spacing:872.654712px;}
.lsa4{letter-spacing:926.396157px;}
.lse2{letter-spacing:1026.080157px;}
.lsc8{letter-spacing:1053.812157px;}
.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;}
}
.ws7a{word-spacing:-65.454600px;}
.ws2c{word-spacing:-53.568045px;}
.ws77{word-spacing:-51.820407px;}
.ws54{word-spacing:-43.834936px;}
.ws101{word-spacing:-43.616845px;}
.ws34{word-spacing:-42.637126px;}
.ws5f{word-spacing:-40.782703px;}
.ws94{word-spacing:-31.771663px;}
.ws63{word-spacing:-31.706208px;}
.wsd{word-spacing:-20.906199px;}
.wsf7{word-spacing:-20.676721px;}
.wsf8{word-spacing:-20.652759px;}
.wsfb{word-spacing:-19.781572px;}
.wsf3{word-spacing:-19.092327px;}
.wsc{word-spacing:-18.183288px;}
.ws17c{word-spacing:-16.730196px;}
.ws146{word-spacing:-16.605662px;}
.ws103{word-spacing:-12.593572px;}
.ws102{word-spacing:-12.215572px;}
.wsfe{word-spacing:-9.989572px;}
.ws98{word-spacing:-9.975281px;}
.ws2e{word-spacing:-3.652367px;}
.ws2b{word-spacing:-3.643752px;}
.ws2d{word-spacing:-3.637179px;}
.ws128{word-spacing:-3.383398px;}
.ws126{word-spacing:-3.317954px;}
.wsaa{word-spacing:-3.168003px;}
.wsf0{word-spacing:-3.128730px;}
.wsa0{word-spacing:-3.063275px;}
.ws6e{word-spacing:-2.997821px;}
.ws151{word-spacing:-2.932366px;}
.ws152{word-spacing:-2.866911px;}
.wsab{word-spacing:-2.801457px;}
.wsa7{word-spacing:-2.736002px;}
.ws64{word-spacing:-2.670548px;}
.ws15a{word-spacing:-2.605093px;}
.ws125{word-spacing:-2.539638px;}
.ws17d{word-spacing:-2.408729px;}
.ws10b{word-spacing:-2.343275px;}
.ws154{word-spacing:-2.212365px;}
.ws24{word-spacing:-2.081456px;}
.ws10{word-spacing:-1.950547px;}
.ws10d{word-spacing:-1.885092px;}
.ws35{word-spacing:-1.754183px;}
.ws138{word-spacing:-1.557819px;}
.ws121{word-spacing:-1.492365px;}
.ws23{word-spacing:-1.426910px;}
.ws1d{word-spacing:-1.361456px;}
.ws16f{word-spacing:-1.296001px;}
.wsd5{word-spacing:-1.230546px;}
.ws37{word-spacing:-1.175094px;}
.ws39{word-spacing:-1.165739px;}
.ws36{word-spacing:-1.165092px;}
.ws12{word-spacing:-1.034183px;}
.ws122{word-spacing:-0.968728px;}
.wsb2{word-spacing:-0.772364px;}
.ws129{word-spacing:-0.746182px;}
.wsef{word-spacing:-0.641455px;}
.ws127{word-spacing:-0.632382px;}
.wsa5{word-spacing:-0.576000px;}
.wsb1{word-spacing:-0.510546px;}
.ws3b{word-spacing:-0.455166px;}
.ws3a{word-spacing:-0.445091px;}
.ws1a{word-spacing:-0.361902px;}
.ws18{word-spacing:-0.354289px;}
.ws2a{word-spacing:-0.248727px;}
.ws4b{word-spacing:-0.223739px;}
.ws4a{word-spacing:-0.183273px;}
.ws159{word-spacing:-0.117818px;}
.wsaf{word-spacing:-0.086077px;}
.ws8{word-spacing:-0.071730px;}
.wsbe{word-spacing:-0.065455px;}
.wse4{word-spacing:-0.053798px;}
.wsc2{word-spacing:-0.052364px;}
.ws2f{word-spacing:-0.047821px;}
.ws53{word-spacing:-0.017548px;}
.wsb{word-spacing:0.000000px;}
.ws74{word-spacing:0.013091px;}
.ws16d{word-spacing:0.078546px;}
.wsdd{word-spacing:0.144000px;}
.ws89{word-spacing:0.274909px;}
.ws8a{word-spacing:0.340364px;}
.wsca{word-spacing:0.366546px;}
.wse0{word-spacing:0.405819px;}
.ws12a{word-spacing:0.477404px;}
.wsa4{word-spacing:0.536728px;}
.wsa3{word-spacing:0.562910px;}
.ws20{word-spacing:0.602182px;}
.ws1f{word-spacing:0.667637px;}
.ws105{word-spacing:0.733092px;}
.ws124{word-spacing:0.798546px;}
.ws12d{word-spacing:0.862800px;}
.ws12e{word-spacing:0.864001px;}
.ws117{word-spacing:0.905349px;}
.ws116{word-spacing:0.908527px;}
.ws118{word-spacing:0.909642px;}
.ws11e{word-spacing:0.911349px;}
.ws13c{word-spacing:0.911834px;}
.ws143{word-spacing:0.914527px;}
.ws15b{word-spacing:0.915642px;}
.ws115{word-spacing:0.917834px;}
.ws120{word-spacing:0.929455px;}
.ws56{word-spacing:0.994910px;}
.ws10c{word-spacing:1.060365px;}
.ws49{word-spacing:1.125819px;}
.ws17e{word-spacing:1.138910px;}
.ws112{word-spacing:1.191274px;}
.ws33{word-spacing:1.256728px;}
.ws45{word-spacing:1.318261px;}
.ws46{word-spacing:1.320315px;}
.ws11{word-spacing:1.322183px;}
.wse8{word-spacing:1.387638px;}
.ws110{word-spacing:1.453092px;}
.ws1c{word-spacing:1.518547px;}
.ws13{word-spacing:1.584001px;}
.ws17{word-spacing:1.623620px;}
.ws5c{word-spacing:1.649456px;}
.ws5b{word-spacing:1.669450px;}
.ws70{word-spacing:1.714911px;}
.wsa6{word-spacing:1.720261px;}
.wsf{word-spacing:1.780365px;}
.wse5{word-spacing:1.845820px;}
.wsc8{word-spacing:1.911274px;}
.ws25{word-spacing:1.976729px;}
.ws6c{word-spacing:2.042184px;}
.ws5d{word-spacing:2.044132px;}
.ws171{word-spacing:2.055274px;}
.wsf1{word-spacing:2.064278px;}
.ws32{word-spacing:2.107638px;}
.ws111{word-spacing:2.173093px;}
.ws177{word-spacing:2.251638px;}
.ws61{word-spacing:2.304002px;}
.ws60{word-spacing:2.320261px;}
.ws19{word-spacing:2.369457px;}
.ws175{word-spacing:2.382547px;}
.ws109{word-spacing:2.404716px;}
.ws52{word-spacing:2.434911px;}
.ws55{word-spacing:2.470209px;}
.wsd4{word-spacing:2.500366px;}
.ws13a{word-spacing:2.565820px;}
.ws3c{word-spacing:2.594030px;}
.ws1e{word-spacing:2.631275px;}
.ws15{word-spacing:2.686120px;}
.ws69{word-spacing:2.696730px;}
.ws10e{word-spacing:2.704803px;}
.wse1{word-spacing:2.827639px;}
.wsa8{word-spacing:2.893093px;}
.wsa9{word-spacing:2.920261px;}
.ws176{word-spacing:2.979081px;}
.ws130{word-spacing:3.022261px;}
.ws8b{word-spacing:3.024003px;}
.ws12f{word-spacing:3.144859px;}
.ws131{word-spacing:3.154912px;}
.ws113{word-spacing:3.220366px;}
.ws44{word-spacing:3.276486px;}
.ws42{word-spacing:3.285821px;}
.wsf5{word-spacing:3.299613px;}
.ws134{word-spacing:3.321523px;}
.wsfa{word-spacing:3.351276px;}
.ws95{word-spacing:3.416730px;}
.ws85{word-spacing:3.429120px;}
.ws84{word-spacing:3.482185px;}
.wsac{word-spacing:3.547639px;}
.ws86{word-spacing:3.604200px;}
.ws30{word-spacing:3.610604px;}
.ws21{word-spacing:3.613094px;}
.ws4f{word-spacing:3.628261px;}
.wsa1{word-spacing:3.630486px;}
.ws4c{word-spacing:3.632007px;}
.wsa2{word-spacing:3.640209px;}
.ws4e{word-spacing:3.644555px;}
.ws3f{word-spacing:3.678549px;}
.wsf2{word-spacing:3.861504px;}
.ws14f{word-spacing:3.874912px;}
.ws6f{word-spacing:3.940367px;}
.ws157{word-spacing:4.005822px;}
.ws71{word-spacing:4.071276px;}
.ws41{word-spacing:4.136731px;}
.wsf6{word-spacing:4.162913px;}
.wsc7{word-spacing:4.202185px;}
.ws62{word-spacing:4.267640px;}
.ws16{word-spacing:4.333095px;}
.ws179{word-spacing:4.529458px;}
.ws6d{word-spacing:4.594913px;}
.wsc9{word-spacing:4.660368px;}
.wsbd{word-spacing:4.725822px;}
.ws47{word-spacing:4.791277px;}
.wse{word-spacing:4.856731px;}
.ws31{word-spacing:4.922186px;}
.ws9f{word-spacing:4.987641px;}
.ws9e{word-spacing:5.014261px;}
.ws57{word-spacing:5.053095px;}
.wsbb{word-spacing:5.118550px;}
.wsb4{word-spacing:5.184004px;}
.ws40{word-spacing:5.249459px;}
.wse2{word-spacing:5.314914px;}
.ws14{word-spacing:5.380368px;}
.wse7{word-spacing:5.445823px;}
.ws1b{word-spacing:5.511277px;}
.wsb3{word-spacing:5.576732px;}
.ws6a{word-spacing:5.642187px;}
.wsb6{word-spacing:5.656209px;}
.ws13b{word-spacing:5.688826px;}
.ws65{word-spacing:5.707641px;}
.wsf9{word-spacing:5.733823px;}
.ws82{word-spacing:5.773096px;}
.ws81{word-spacing:5.820901px;}
.ws83{word-spacing:5.838550px;}
.wscb{word-spacing:5.904005px;}
.ws132{word-spacing:5.944261px;}
.ws51{word-spacing:5.969460px;}
.ws7c{word-spacing:6.034914px;}
.ws7d{word-spacing:6.052261px;}
.ws7b{word-spacing:6.058209px;}
.wse6{word-spacing:6.100369px;}
.ws17a{word-spacing:6.174480px;}
.wscd{word-spacing:6.231278px;}
.ws12c{word-spacing:6.296733px;}
.ws22{word-spacing:6.362187px;}
.ws107{word-spacing:6.427642px;}
.ws5e{word-spacing:6.493096px;}
.ws48{word-spacing:6.558551px;}
.ws8c{word-spacing:6.586261px;}
.ws16a{word-spacing:6.624006px;}
.ws17f{word-spacing:6.637096px;}
.ws8d{word-spacing:6.689460px;}
.ws170{word-spacing:6.702551px;}
.wsc4{word-spacing:6.754915px;}
.wsea{word-spacing:6.820369px;}
.wsb8{word-spacing:6.951279px;}
.wsdc{word-spacing:7.016733px;}
.wsdf{word-spacing:7.082188px;}
.ws3d{word-spacing:7.126818px;}
.ws3e{word-spacing:7.147642px;}
.ws123{word-spacing:7.213097px;}
.wsed{word-spacing:7.278552px;}
.wsce{word-spacing:7.344006px;}
.ws58{word-spacing:7.409461px;}
.ws9d{word-spacing:7.474915px;}
.ws9c{word-spacing:7.540370px;}
.ws100{word-spacing:7.582184px;}
.wsdb{word-spacing:7.671279px;}
.wsb7{word-spacing:7.736734px;}
.ws10a{word-spacing:7.802188px;}
.ws180{word-spacing:7.815279px;}
.ws13f{word-spacing:7.867643px;}
.wsba{word-spacing:7.933098px;}
.ws106{word-spacing:7.948209px;}
.wsb0{word-spacing:7.998552px;}
.ws67{word-spacing:8.064007px;}
.ws59{word-spacing:8.119444px;}
.ws27{word-spacing:8.129461px;}
.ws169{word-spacing:8.194916px;}
.wsda{word-spacing:8.260371px;}
.ws66{word-spacing:8.325825px;}
.wsde{word-spacing:8.391280px;}
.ws184{word-spacing:8.404371px;}
.ws28{word-spacing:8.456734px;}
.wseb{word-spacing:8.522189px;}
.ws80{word-spacing:8.587644px;}
.ws8e{word-spacing:8.653098px;}
.ws7f{word-spacing:8.718553px;}
.ws99{word-spacing:8.764209px;}
.ws9a{word-spacing:8.784007px;}
.ws93{word-spacing:8.914917px;}
.ws186{word-spacing:8.928007px;}
.ws26{word-spacing:8.980371px;}
.ws17b{word-spacing:8.993462px;}
.wscc{word-spacing:9.111280px;}
.wsb9{word-spacing:9.137462px;}
.ws68{word-spacing:9.176735px;}
.ws142{word-spacing:9.242190px;}
.ws14a{word-spacing:9.373099px;}
.ws13e{word-spacing:9.438553px;}
.ws87{word-spacing:9.504008px;}
.wsd2{word-spacing:9.634917px;}
.wsd1{word-spacing:9.700372px;}
.wsff{word-spacing:9.765826px;}
.wsfd{word-spacing:9.784800px;}
.wsb5{word-spacing:9.896736px;}
.ws183{word-spacing:9.962190px;}
.ws153{word-spacing:10.027645px;}
.ws172{word-spacing:10.158554px;}
.wsd9{word-spacing:10.224009px;}
.wsc5{word-spacing:10.250190px;}
.wscf{word-spacing:10.354918px;}
.wsd0{word-spacing:10.420372px;}
.ws16b{word-spacing:10.551282px;}
.ws141{word-spacing:10.813100px;}
.ws185{word-spacing:10.828261px;}
.ws173{word-spacing:10.829167px;}
.ws108{word-spacing:10.878555px;}
.wsee{word-spacing:10.944009px;}
.ws9b{word-spacing:11.009464px;}
.wsc1{word-spacing:11.074918px;}
.wsd3{word-spacing:11.140373px;}
.ws16c{word-spacing:11.271282px;}
.ws5a{word-spacing:11.598555px;}
.ws12b{word-spacing:11.664010px;}
.ws150{word-spacing:11.729464px;}
.ws158{word-spacing:11.794919px;}
.ws10f{word-spacing:11.860374px;}
.wse9{word-spacing:11.925828px;}
.ws139{word-spacing:12.056737px;}
.wsec{word-spacing:12.318556px;}
.ws96{word-spacing:12.384010px;}
.wsc6{word-spacing:12.580374px;}
.ws72{word-spacing:12.776738px;}
.wsc0{word-spacing:12.842193px;}
.ws78{word-spacing:12.847561px;}
.ws16e{word-spacing:13.038556px;}
.wsd8{word-spacing:13.169466px;}
.wsc3{word-spacing:13.365829px;}
.ws181{word-spacing:13.431284px;}
.ws140{word-spacing:13.758557px;}
.ws155{word-spacing:13.954921px;}
.ws73{word-spacing:15.067649px;}
.wsd7{word-spacing:15.264013px;}
.ws182{word-spacing:15.735286px;}
.ws174{word-spacing:15.997104px;}
.ws75{word-spacing:16.604957px;}
.ws79{word-spacing:17.022151px;}
.ws178{word-spacing:17.162196px;}
.wsd6{word-spacing:17.581106px;}
.wsfc{word-spacing:18.322209px;}
.wse3{word-spacing:18.399053px;}
.ws156{word-spacing:18.578381px;}
.ws91{word-spacing:20.816757px;}
.wsad{word-spacing:21.124745px;}
.ws114{word-spacing:21.416745px;}
.wsbc{word-spacing:22.972745px;}
.ws2{word-spacing:23.312250px;}
.ws4{word-spacing:23.347758px;}
.ws7{word-spacing:23.383693px;}
.ws3{word-spacing:23.384267px;}
.ws38{word-spacing:23.876957px;}
.ws4d{word-spacing:23.882957px;}
.ws76{word-spacing:24.662757px;}
.ws1{word-spacing:26.811771px;}
.ws6{word-spacing:26.819013px;}
.ws9{word-spacing:26.825682px;}
.wsa{word-spacing:26.827020px;}
.ws29{word-spacing:26.827469px;}
.ws43{word-spacing:27.158957px;}
.ws7e{word-spacing:27.182757px;}
.ws90{word-spacing:27.518757px;}
.ws88{word-spacing:28.485842px;}
.ws5{word-spacing:29.282895px;}
.ws92{word-spacing:32.006957px;}
.ws0{word-spacing:32.192252px;}
.ws6b{word-spacing:32.192873px;}
.ws97{word-spacing:41.576762px;}
.ws104{word-spacing:44.553642px;}
.wsae{word-spacing:47.084228px;}
.ws14b{word-spacing:50.832042px;}
.ws8f{word-spacing:75.814261px;}
.wsbf{word-spacing:80.625869px;}
.ws168{word-spacing:81.330681px;}
.ws135{word-spacing:81.991288px;}
.ws11f{word-spacing:97.572367px;}
.ws162{word-spacing:102.697288px;}
.ws11b{word-spacing:103.268327px;}
.ws145{word-spacing:114.745242px;}
.ws15c{word-spacing:115.147288px;}
.ws11d{word-spacing:122.635621px;}
.ws160{word-spacing:127.184497px;}
.ws15d{word-spacing:129.673677px;}
.ws137{word-spacing:132.917024px;}
.ws148{word-spacing:137.150497px;}
.ws164{word-spacing:137.612797px;}
.ws147{word-spacing:141.133677px;}
.ws119{word-spacing:142.098556px;}
.ws15e{word-spacing:144.314497px;}
.ws167{word-spacing:145.361467px;}
.ws166{word-spacing:145.605000px;}
.ws163{word-spacing:145.605477px;}
.ws161{word-spacing:149.041677px;}
.ws149{word-spacing:149.271628px;}
.ws165{word-spacing:156.815467px;}
.ws11c{word-spacing:157.479561px;}
.ws133{word-spacing:158.058642px;}
.ws11a{word-spacing:168.933561px;}
.ws14e{word-spacing:192.752400px;}
.ws144{word-spacing:202.311261px;}
.ws14c{word-spacing:211.199150px;}
.wsf4{word-spacing:281.436684px;}
.ws136{word-spacing:325.677561px;}
.ws15f{word-spacing:346.383561px;}
.ws13d{word-spacing:370.509261px;}
.ws14d{word-spacing:390.735561px;}
.ws50{word-spacing:391.038871px;}
._3b{margin-left:-36.900011px;}
._6e{margin-left:-32.568929px;}
._30{margin-left:-11.045665px;}
._0{margin-left:-8.090886px;}
._3{margin-left:-6.742692px;}
._c{margin-left:-5.486106px;}
._4{margin-left:-4.431868px;}
._1{margin-left:-2.668786px;}
._5{margin-left:-1.204777px;}
._a{width:1.060921px;}
._2{width:2.669389px;}
._14{width:3.726854px;}
._20{width:5.742016px;}
._39{width:7.134551px;}
._3a{width:9.098189px;}
._3c{width:11.832028px;}
._29{width:14.521545px;}
._1a{width:16.310444px;}
._15{width:17.541230px;}
._7{width:18.901527px;}
._b{width:20.800313px;}
._21{width:22.098170px;}
._e{width:23.548342px;}
._d{width:24.943329px;}
._10{width:25.959146px;}
._9{width:27.228511px;}
._8{width:29.243354px;}
._27{width:30.552446px;}
._1b{width:31.680871px;}
._6{width:32.780674px;}
._1e{width:33.874634px;}
._f{width:35.133854px;}
._1f{width:36.328704px;}
._11{width:38.245782px;}
._16{width:40.306386px;}
._3d{width:41.629126px;}
._12{width:42.676399px;}
._1c{width:43.906389px;}
._2b{width:45.490947px;}
._55{width:46.500565px;}
._28{width:47.781858px;}
._2e{width:49.352768px;}
._24{width:50.661618px;}
._19{width:52.200090px;}
._60{width:53.395401px;}
._2f{width:54.457383px;}
._2d{width:55.976366px;}
._38{width:57.665503px;}
._2c{width:59.291951px;}
._56{width:60.363391px;}
._6d{width:61.931287px;}
._25{width:65.530725px;}
._26{width:72.906786px;}
._4e{width:74.153791px;}
._3e{width:75.272790px;}
._23{width:78.870188px;}
._13{width:80.697600px;}
._22{width:84.678190px;}
._1d{width:96.836850px;}
._6a{width:100.183167px;}
._63{width:107.309791px;}
._17{width:125.215070px;}
._6c{width:130.729925px;}
._68{width:133.837568px;}
._69{width:136.049266px;}
._45{width:140.532436px;}
._6b{width:142.952846px;}
._46{width:145.254708px;}
._5a{width:147.179791px;}
._47{width:152.069126px;}
._51{width:153.779466px;}
._48{width:159.316496px;}
._4a{width:160.363770px;}
._49{width:161.476498px;}
._65{width:163.396078px;}
._44{width:164.681778px;}
._42{width:174.664303px;}
._41{width:175.859815px;}
._31{width:179.051075px;}
._57{width:181.562639px;}
._58{width:186.535222px;}
._53{width:191.879676px;}
._4d{width:216.985428px;}
._5b{width:227.804812px;}
._43{width:231.366922px;}
._67{width:234.669475px;}
._52{width:237.351125px;}
._40{width:238.432398px;}
._37{width:239.947609px;}
._36{width:254.893609px;}
._4b{width:262.437125px;}
._34{width:278.143071px;}
._35{width:308.014200px;}
._61{width:324.608545px;}
._33{width:331.258200px;}
._32{width:341.224200px;}
._54{width:342.283222px;}
._66{width:375.439222px;}
._4c{width:382.141593px;}
._50{width:387.114922px;}
._4f{width:394.180398px;}
._62{width:415.297593px;}
._64{width:420.270922px;}
._5c{width:427.772435px;}
._5d{width:434.185067px;}
._59{width:455.167593px;}
._5f{width:460.140922px;}
._5e{width:467.206398px;}
._2a{width:533.331156px;}
._3f{width:540.433024px;}
._18{width:982.822862px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:35.865600px;}
.fsc{font-size:41.842800px;}
.fs2{font-size:47.820000px;}
.fs7{font-size:47.820600px;}
.fsa{font-size:53.798400px;}
.fsb{font-size:59.775600px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:65.454000px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.730000px;}
.fs6{font-size:71.731200px;}
.fs0{font-size:86.076000px;}
.fs9{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y15{bottom:44.442000px;}
.y45{bottom:44.443500px;}
.y96{bottom:89.274000px;}
.y1ce{bottom:97.785000px;}
.yf3{bottom:98.379000px;}
.y44{bottom:100.282500px;}
.y1a9{bottom:104.827500px;}
.y2b4{bottom:105.888000px;}
.y95{bottom:109.597500px;}
.y1e4{bottom:114.031500px;}
.yb9{bottom:114.081000px;}
.y1cd{bottom:118.108500px;}
.yf2{bottom:118.702500px;}
.y149{bottom:119.272500px;}
.y43{bottom:120.606000px;}
.yd9{bottom:123.240000px;}
.y128{bottom:124.491000px;}
.y273{bottom:124.797000px;}
.y1a8{bottom:125.151000px;}
.y2b3{bottom:126.211500px;}
.yd8{bottom:127.285500px;}
.y94{bottom:129.922500px;}
.y248{bottom:130.362000px;}
.y1e3{bottom:134.355000px;}
.yb8{bottom:134.985000px;}
.y1cc{bottom:138.432000px;}
.yf1{bottom:139.026000px;}
.y148{bottom:139.597500px;}
.y42{bottom:140.929500px;}
.y272{bottom:145.120500px;}
.y1a7{bottom:145.474500px;}
.yb7{bottom:146.209500px;}
.y2b2{bottom:146.535000px;}
.y108{bottom:149.146500px;}
.y127{bottom:149.319000px;}
.y177{bottom:149.790000px;}
.y247{bottom:150.685500px;}
.y1e2{bottom:154.678500px;}
.y1cb{bottom:158.755500px;}
.yf0{bottom:159.351000px;}
.y147{bottom:159.921000px;}
.y41{bottom:161.254500px;}
.y92{bottom:161.271000px;}
.y93{bottom:161.761500px;}
.y208{bottom:163.230000px;}
.yd7{bottom:164.047500px;}
.y1a6{bottom:165.798000px;}
.y271{bottom:166.042500px;}
.y107{bottom:169.470000px;}
.y126{bottom:169.644000px;}
.y176{bottom:170.113500px;}
.y246{bottom:171.009000px;}
.y1e1{bottom:175.002000px;}
.y1ca{bottom:179.079000px;}
.yef{bottom:179.674500px;}
.y146{bottom:180.244500px;}
.y2b1{bottom:180.309000px;}
.y40{bottom:181.578000px;}
.y207{bottom:183.553500px;}
.y1a5{bottom:186.123000px;}
.y62{bottom:186.918000px;}
.yb6{bottom:188.188500px;}
.yd6{bottom:188.854500px;}
.y91{bottom:189.381000px;}
.y106{bottom:189.793500px;}
.y125{bottom:189.967500px;}
.y245{bottom:191.332500px;}
.y1e0{bottom:195.325500px;}
.y1c9{bottom:199.404000px;}
.yee{bottom:199.998000px;}
.y145{bottom:200.568000px;}
.y2b0{bottom:200.632500px;}
.y21f{bottom:201.160500px;}
.y3f{bottom:201.901500px;}
.y206{bottom:203.877000px;}
.y1a4{bottom:206.446500px;}
.y61{bottom:207.241500px;}
.yb5{bottom:208.512000px;}
.yd5{bottom:209.758500px;}
.y105{bottom:210.117000px;}
.y124{bottom:210.291000px;}
.y244{bottom:211.657500px;}
.y175{bottom:213.336000px;}
.y1df{bottom:215.650500px;}
.y1c8{bottom:219.727500px;}
.y292{bottom:219.760500px;}
.y270{bottom:219.840000px;}
.y14{bottom:220.240500px;}
.yed{bottom:220.321500px;}
.y144{bottom:220.891500px;}
.y2af{bottom:220.956000px;}
.yd4{bottom:220.983000px;}
.y21d{bottom:221.484000px;}
.y8f{bottom:221.638500px;}
.y90{bottom:222.130500px;}
.y3e{bottom:222.225000px;}
.y205{bottom:224.202000px;}
.y1a3{bottom:226.770000px;}
.y60{bottom:227.566500px;}
.yb4{bottom:228.837000px;}
.y104{bottom:230.442000px;}
.y123{bottom:230.614500px;}
.y243{bottom:231.981000px;}
.y174{bottom:233.659500px;}
.y1de{bottom:235.974000px;}
.y291{bottom:240.084000px;}
.y26f{bottom:240.163500px;}
.yec{bottom:240.645000px;}
.y143{bottom:241.216500px;}
.y21e{bottom:241.807500px;}
.y3d{bottom:242.548500px;}
.y204{bottom:244.525500px;}
.y1a2{bottom:247.093500px;}
.y13{bottom:247.669500px;}
.y5f{bottom:247.890000px;}
.y8e{bottom:248.839500px;}
.yb3{bottom:249.160500px;}
.y1c7{bottom:250.618500px;}
.y103{bottom:250.765500px;}
.y122{bottom:250.938000px;}
.y242{bottom:252.304500px;}
.y173{bottom:253.983000px;}
.y2ae{bottom:254.730000px;}
.y1dd{bottom:256.297500px;}
.y290{bottom:260.407500px;}
.yeb{bottom:260.970000px;}
.y142{bottom:261.540000px;}
.y21c{bottom:262.729500px;}
.y3c{bottom:262.873500px;}
.y203{bottom:264.849000px;}
.y1a1{bottom:267.417000px;}
.y5e{bottom:268.213500px;}
.y8d{bottom:269.163000px;}
.y12{bottom:270.588000px;}
.y102{bottom:271.089000px;}
.y121{bottom:271.261500px;}
.y241{bottom:272.628000px;}
.y172{bottom:274.306500px;}
.y2ad{bottom:275.053500px;}
.y1dc{bottom:276.621000px;}
.y28f{bottom:280.732500px;}
.yd3{bottom:280.855500px;}
.yea{bottom:281.293500px;}
.y141{bottom:281.863500px;}
.y21b{bottom:283.053000px;}
.y3b{bottom:283.197000px;}
.yb2{bottom:285.171000px;}
.y202{bottom:285.172500px;}
.y1a0{bottom:287.742000px;}
.y5d{bottom:288.537000px;}
.y8c{bottom:289.488000px;}
.y101{bottom:291.412500px;}
.y120{bottom:291.586500px;}
.y240{bottom:292.951500px;}
.y1c6{bottom:293.841000px;}
.y171{bottom:294.630000px;}
.y2ac{bottom:295.377000px;}
.y1db{bottom:296.944500px;}
.y28e{bottom:301.056000px;}
.yd2{bottom:301.179000px;}
.y140{bottom:302.187000px;}
.y218{bottom:303.376500px;}
.y3a{bottom:303.520500px;}
.y201{bottom:305.496000px;}
.y19f{bottom:308.065500px;}
.y5c{bottom:308.860500px;}
.y8b{bottom:309.811500px;}
.y100{bottom:311.736000px;}
.y11f{bottom:311.910000px;}
.y26e{bottom:312.762000px;}
.y23f{bottom:313.276500px;}
.y1c5{bottom:314.164500px;}
.y170{bottom:314.955000px;}
.y11{bottom:317.020500px;}
.y1da{bottom:317.269500px;}
.yb1{bottom:321.183000px;}
.y28d{bottom:321.379500px;}
.yd1{bottom:321.502500px;}
.ye9{bottom:322.465500px;}
.y13f{bottom:322.510500px;}
.y21a{bottom:323.700000px;}
.y39{bottom:323.844000px;}
.y200{bottom:325.821000px;}
.y63{bottom:326.932500px;}
.y19e{bottom:328.389000px;}
.y2ab{bottom:329.151000px;}
.y5b{bottom:329.185500px;}
.y8a{bottom:330.135000px;}
.yff{bottom:332.061000px;}
.y11e{bottom:332.233500px;}
.y26d{bottom:333.085500px;}
.y23e{bottom:333.600000px;}
.y1c4{bottom:334.488000px;}
.y16f{bottom:335.278500px;}
.y1d9{bottom:337.593000px;}
.yb0{bottom:341.506500px;}
.y28c{bottom:341.703000px;}
.y13e{bottom:342.835500px;}
.y219{bottom:344.023500px;}
.y38{bottom:344.167500px;}
.y10{bottom:344.449500px;}
.y1ff{bottom:346.144500px;}
.y19d{bottom:348.712500px;}
.y2aa{bottom:349.474500px;}
.y5a{bottom:349.509000px;}
.y89{bottom:350.458500px;}
.yfe{bottom:352.384500px;}
.y11d{bottom:352.557000px;}
.y26c{bottom:353.410500px;}
.y23d{bottom:353.923500px;}
.y1c3{bottom:354.811500px;}
.y16e{bottom:355.602000px;}
.yd0{bottom:358.264500px;}
.yaf{bottom:361.830000px;}
.y28b{bottom:362.026500px;}
.y13d{bottom:363.159000px;}
.y268{bottom:363.571500px;}
.y37{bottom:364.492500px;}
.y217{bottom:364.945500px;}
.y1fe{bottom:366.468000px;}
.yf{bottom:367.368000px;}
.y1d8{bottom:368.484000px;}
.y19c{bottom:369.036000px;}
.y2a9{bottom:369.798000px;}
.y59{bottom:369.832500px;}
.yfd{bottom:372.708000px;}
.y11c{bottom:372.880500px;}
.y26b{bottom:373.734000px;}
.y23c{bottom:374.247000px;}
.y1c2{bottom:375.135000px;}
.y16d{bottom:375.925500px;}
.yae{bottom:382.153500px;}
.y28a{bottom:382.351500px;}
.y13c{bottom:383.482500px;}
.y87{bottom:384.772500px;}
.y36{bottom:384.816000px;}
.y1fd{bottom:386.791500px;}
.y19b{bottom:389.361000px;}
.y58{bottom:390.156000px;}
.yfc{bottom:393.031500px;}
.y11b{bottom:393.205500px;}
.y26a{bottom:394.057500px;}
.y23b{bottom:394.570500px;}
.y1c1{bottom:395.460000px;}
.y289{bottom:402.675000px;}
.y2a8{bottom:403.570500px;}
.y13b{bottom:403.806000px;}
.y84{bottom:404.404500px;}
.y35{bottom:405.139500px;}
.y16b{bottom:405.510000px;}
.y1fc{bottom:407.115000px;}
.y88{bottom:408.540000px;}
.y19a{bottom:409.684500px;}
.y16c{bottom:410.349000px;}
.yfb{bottom:413.355000px;}
.y11a{bottom:413.529000px;}
.ye{bottom:413.800500px;}
.y269{bottom:414.381000px;}
.y23a{bottom:414.895500px;}
.ycf{bottom:415.350000px;}
.y1c0{bottom:415.783500px;}
.y216{bottom:418.744500px;}
.y2ca{bottom:419.775000px;}
.y86{bottom:419.949000px;}
.y57{bottom:421.048500px;}
.yad{bottom:421.212000px;}
.y288{bottom:422.998500px;}
.y2a7{bottom:423.895500px;}
.y13a{bottom:424.129500px;}
.y16a{bottom:424.173000px;}
.y85{bottom:424.858500px;}
.yac{bottom:425.257500px;}
.y34{bottom:425.463000px;}
.y1fb{bottom:427.440000px;}
.y167{bottom:429.052500px;}
.y199{bottom:430.008000px;}
.yfa{bottom:433.678500px;}
.y119{bottom:433.852500px;}
.y239{bottom:435.219000px;}
.y267{bottom:435.303000px;}
.y168{bottom:435.433500px;}
.yce{bottom:435.675000px;}
.y1bf{bottom:436.107000px;}
.y215{bottom:439.068000px;}
.y2c9{bottom:440.100000px;}
.y169{bottom:440.272500px;}
.yd{bottom:441.231000px;}
.y287{bottom:443.322000px;}
.y2a6{bottom:444.219000px;}
.y139{bottom:444.454500px;}
.y1fa{bottom:447.763500px;}
.y1d7{bottom:450.175500px;}
.y198{bottom:450.331500px;}
.y83{bottom:452.653500px;}
.yf9{bottom:454.003500px;}
.y118{bottom:454.176000px;}
.y238{bottom:455.542500px;}
.y266{bottom:455.626500px;}
.ycd{bottom:455.998500px;}
.y33{bottom:456.355500px;}
.y1be{bottom:456.430500px;}
.yab{bottom:461.268000px;}
.yc{bottom:462.151500px;}
.y286{bottom:463.645500px;}
.y138{bottom:464.778000px;}
.y56{bottom:464.868000px;}
.y1f9{bottom:468.087000px;}
.y1d6{bottom:470.499000px;}
.y82{bottom:472.978500px;}
.y2c8{bottom:473.872500px;}
.yf8{bottom:474.327000px;}
.y117{bottom:474.499500px;}
.y166{bottom:475.699500px;}
.y237{bottom:475.866000px;}
.y265{bottom:475.950000px;}
.ycc{bottom:476.322000px;}
.y1bd{bottom:476.754000px;}
.y2a5{bottom:477.991500px;}
.y197{bottom:481.224000px;}
.y285{bottom:483.970500px;}
.yb{bottom:485.070000px;}
.y137{bottom:485.101500px;}
.y55{bottom:485.191500px;}
.yaa{bottom:486.075000px;}
.y261{bottom:486.112500px;}
.y1f8{bottom:488.410500px;}
.y1d5{bottom:490.822500px;}
.y81{bottom:493.302000px;}
.y2c7{bottom:494.196000px;}
.yf7{bottom:494.650500px;}
.y116{bottom:494.824500px;}
.y165{bottom:496.023000px;}
.y236{bottom:496.189500px;}
.y264{bottom:496.273500px;}
.y1bc{bottom:497.079000px;}
.y2a4{bottom:498.316500px;}
.y32{bottom:500.175000px;}
.y284{bottom:504.294000px;}
.y136{bottom:505.425000px;}
.y54{bottom:505.515000px;}
.ya9{bottom:508.342500px;}
.y1f7{bottom:508.734000px;}
.y53{bottom:509.469000px;}
.y1d4{bottom:511.147500px;}
.y196{bottom:512.115000px;}
.yc9{bottom:513.084000px;}
.y80{bottom:513.625500px;}
.y2c6{bottom:514.521000px;}
.ycb{bottom:514.845000px;}
.y235{bottom:516.514500px;}
.y263{bottom:516.598500px;}
.y1bb{bottom:517.402500px;}
.y2a3{bottom:518.640000px;}
.ya8{bottom:519.567000px;}
.y31{bottom:520.498500px;}
.y283{bottom:524.617500px;}
.y115{bottom:525.715500px;}
.y135{bottom:525.748500px;}
.y52{bottom:525.838500px;}
.yca{bottom:526.069500px;}
.y1f6{bottom:529.059000px;}
.y1d3{bottom:531.471000px;}
.ya{bottom:531.502500px;}
.y7f{bottom:533.949000px;}
.y262{bottom:536.922000px;}
.y1ba{bottom:537.726000px;}
.yf6{bottom:537.871500px;}
.y164{bottom:537.991500px;}
.y30{bottom:540.822000px;}
.y282{bottom:544.941000px;}
.y134{bottom:546.072000px;}
.y51{bottom:546.162000px;}
.y161{bottom:546.397500px;}
.y234{bottom:547.405500px;}
.y2c5{bottom:548.293500px;}
.y195{bottom:549.241500px;}
.y1f5{bottom:549.382500px;}
.y1d2{bottom:551.794500px;}
.y2a2{bottom:552.412500px;}
.y7e{bottom:554.272500px;}
.y15c{bottom:557.622000px;}
.y260{bottom:557.842500px;}
.y1b9{bottom:558.049500px;}
.y9{bottom:558.933000px;}
.y2f{bottom:561.145500px;}
.y15f{bottom:562.143000px;}
.y281{bottom:565.264500px;}
.y133{bottom:566.397000px;}
.y50{bottom:566.487000px;}
.y2c4{bottom:568.617000px;}
.y160{bottom:568.692000px;}
.y114{bottom:569.535000px;}
.y1f4{bottom:569.706000px;}
.y15e{bottom:571.960500px;}
.yc8{bottom:571.989000px;}
.y1d1{bottom:572.716500px;}
.y2a1{bottom:572.737500px;}
.y163{bottom:573.168000px;}
.y7d{bottom:574.597500px;}
.y162{bottom:578.076000px;}
.y25f{bottom:578.167500px;}
.y1b8{bottom:578.373000px;}
.ya7{bottom:578.688000px;}
.y8{bottom:579.853500px;}
.y2e{bottom:581.469000px;}
.y15d{bottom:581.779500px;}
.ye8{bottom:583.836000px;}
.y280{bottom:585.588000px;}
.y132{bottom:586.720500px;}
.y4f{bottom:586.810500px;}
.y113{bottom:589.858500px;}
.y1f3{bottom:590.029500px;}
.yf5{bottom:590.295000px;}
.y233{bottom:591.225000px;}
.yc7{bottom:592.312500px;}
.y7c{bottom:594.921000px;}
.y25e{bottom:598.491000px;}
.ya6{bottom:599.013000px;}
.y194{bottom:600.799500px;}
.y2d{bottom:601.792500px;}
.y2c3{bottom:602.391000px;}
.y7{bottom:602.772000px;}
.ye7{bottom:604.159500px;}
.y27f{bottom:605.913000px;}
.y2a0{bottom:606.510000px;}
.y131{bottom:607.044000px;}
.y4e{bottom:607.134000px;}
.y25a{bottom:608.652000px;}
.y1b7{bottom:609.265500px;}
.y112{bottom:610.182000px;}
.y1f2{bottom:610.353000px;}
.y232{bottom:611.548500px;}
.yc6{bottom:612.636000px;}
.y15b{bottom:614.070000px;}
.y7b{bottom:615.244500px;}
.y25d{bottom:618.814500px;}
.ya5{bottom:619.336500px;}
.y193{bottom:621.123000px;}
.y2c{bottom:622.117500px;}
.y2c2{bottom:622.714500px;}
.ye6{bottom:624.483000px;}
.y27e{bottom:626.236500px;}
.y1d0{bottom:626.514000px;}
.y29f{bottom:626.833500px;}
.y130{bottom:627.367500px;}
.y4d{bottom:627.457500px;}
.y111{bottom:630.507000px;}
.y1f1{bottom:630.678000px;}
.y231{bottom:631.872000px;}
.yc5{bottom:632.959500px;}
.y7a{bottom:635.568000px;}
.y25c{bottom:639.138000px;}
.ya4{bottom:639.660000px;}
.y192{bottom:641.448000px;}
.y2b{bottom:642.441000px;}
.y2c1{bottom:643.038000px;}
.ye5{bottom:644.808000px;}
.y27d{bottom:646.560000px;}
.y1cf{bottom:646.837500px;}
.y29e{bottom:647.158500px;}
.y12f{bottom:647.691000px;}
.y4c{bottom:647.781000px;}
.y6{bottom:649.204500px;}
.y110{bottom:650.830500px;}
.y1f0{bottom:651.001500px;}
.y15a{bottom:651.462000px;}
.y230{bottom:652.197000px;}
.yc4{bottom:653.283000px;}
.y25b{bottom:659.461500px;}
.y157{bottom:659.868000px;}
.ya3{bottom:659.983500px;}
.y191{bottom:661.771500px;}
.y2a{bottom:662.764500px;}
.y214{bottom:664.393500px;}
.ye4{bottom:665.131500px;}
.y72{bottom:665.701500px;}
.y27c{bottom:666.883500px;}
.y12e{bottom:668.016000px;}
.y49{bottom:668.104500px;}
.y4b{bottom:669.867000px;}
.y156{bottom:671.092500px;}
.y10f{bottom:671.154000px;}
.y1ef{bottom:671.325000px;}
.y22f{bottom:672.520500px;}
.yc3{bottom:673.606500px;}
.y76{bottom:674.695500px;}
.y5{bottom:676.633500px;}
.y2c0{bottom:676.812000px;}
.y1b6{bottom:680.220000px;}
.ya2{bottom:680.307000px;}
.y259{bottom:680.383500px;}
.y29d{bottom:680.931000px;}
.y190{bottom:682.095000px;}
.y4a{bottom:682.947000px;}
.y29{bottom:683.088000px;}
.y75{bottom:684.513000px;}
.y212{bottom:684.717000px;}
.y6f{bottom:685.332000px;}
.ye3{bottom:685.455000px;}
.y78{bottom:685.822500px;}
.y159{bottom:686.638500px;}
.y27b{bottom:687.207000px;}
.y12d{bottom:688.339500px;}
.y10e{bottom:691.477500px;}
.y158{bottom:691.548000px;}
.y1ee{bottom:691.648500px;}
.y22e{bottom:692.844000px;}
.yc2{bottom:693.931500px;}
.y74{bottom:694.332000px;}
.y77{bottom:696.402000px;}
.y2bf{bottom:697.135500px;}
.y4{bottom:697.555500px;}
.y48{bottom:698.761500px;}
.ya1{bottom:700.632000px;}
.y258{bottom:700.707000px;}
.y71{bottom:700.876500px;}
.y1b5{bottom:701.140500px;}
.y29c{bottom:701.254500px;}
.y18f{bottom:702.418500px;}
.y28{bottom:703.411500px;}
.y73{bottom:704.149500px;}
.y213{bottom:705.040500px;}
.ye2{bottom:705.778500px;}
.y70{bottom:705.786000px;}
.y27a{bottom:707.532000px;}
.y12c{bottom:708.663000px;}
.y79{bottom:709.236000px;}
.y10d{bottom:711.801000px;}
.y1ed{bottom:711.972000px;}
.y22d{bottom:713.167500px;}
.yc1{bottom:714.255000px;}
.y155{bottom:720.150000px;}
.y3{bottom:720.474000px;}
.ya0{bottom:720.955500px;}
.y257{bottom:721.030500px;}
.y18e{bottom:722.742000px;}
.y27{bottom:723.736500px;}
.y211{bottom:725.962500px;}
.ye1{bottom:726.102000px;}
.y279{bottom:727.855500px;}
.y47{bottom:728.338500px;}
.y12b{bottom:728.986500px;}
.y2be{bottom:730.909500px;}
.y253{bottom:731.193000px;}
.y10c{bottom:732.126000px;}
.y22c{bottom:733.491000px;}
.yc0{bottom:734.578500px;}
.y6e{bottom:734.931000px;}
.y29b{bottom:735.028500px;}
.y46{bottom:738.474000px;}
.y256{bottom:741.355500px;}
.y1ec{bottom:742.864500px;}
.y18d{bottom:743.067000px;}
.y26{bottom:744.060000px;}
.y20f{bottom:746.286000px;}
.ye0{bottom:746.427000px;}
.y278{bottom:748.179000px;}
.y2bd{bottom:751.233000px;}
.y10b{bottom:752.449500px;}
.y22b{bottom:753.816000px;}
.ybf{bottom:754.902000px;}
.y1b4{bottom:754.939500px;}
.y6d{bottom:755.254500px;}
.y29a{bottom:755.352000px;}
.y9f{bottom:756.966000px;}
.y12a{bottom:759.879000px;}
.y255{bottom:761.679000px;}
.y18c{bottom:763.390500px;}
.y25{bottom:764.383500px;}
.y210{bottom:766.609500px;}
.ydf{bottom:766.750500px;}
.y277{bottom:768.502500px;}
.y2bc{bottom:771.556500px;}
.y10a{bottom:772.773000px;}
.y22a{bottom:774.139500px;}
.ybe{bottom:775.225500px;}
.y6c{bottom:775.578000px;}
.y9e{bottom:781.773000px;}
.y254{bottom:782.002500px;}
.y18b{bottom:783.714000px;}
.y24{bottom:784.707000px;}
.y20e{bottom:787.531500px;}
.y276{bottom:788.826000px;}
.y299{bottom:789.126000px;}
.y154{bottom:790.506000px;}
.yf4{bottom:792.505500px;}
.y229{bottom:794.463000px;}
.yde{bottom:797.641500px;}
.y252{bottom:802.924500px;}
.y18a{bottom:804.037500px;}
.y23{bottom:805.030500px;}
.y2bb{bottom:805.330500px;}
.y6b{bottom:806.470500px;}
.y20c{bottom:807.855000px;}
.y275{bottom:809.151000px;}
.y298{bottom:809.449500px;}
.y153{bottom:810.829500px;}
.y1b3{bottom:811.726500px;}
.ybd{bottom:811.755000px;}
.y129{bottom:812.302500px;}
.y1eb{bottom:813.819000px;}
.y228{bottom:814.786500px;}
.y9d{bottom:817.785000px;}
.y189{bottom:819.778500px;}
.y1b0{bottom:821.887500px;}
.y251{bottom:823.248000px;}
.y188{bottom:824.361000px;}
.y109{bottom:825.196500px;}
.y22{bottom:825.355500px;}
.y2ba{bottom:825.654000px;}
.y20d{bottom:828.178500px;}
.y274{bottom:829.474500px;}
.y297{bottom:829.773000px;}
.y152{bottom:831.153000px;}
.y1b2{bottom:832.050000px;}
.y1ea{bottom:834.142500px;}
.ydd{bottom:834.768000px;}
.y227{bottom:835.110000px;}
.y9c{bottom:838.108500px;}
.ybc{bottom:838.653000px;}
.y250{bottom:843.571500px;}
.y187{bottom:844.686000px;}
.y21{bottom:845.679000px;}
.y20b{bottom:849.100500px;}
.y6a{bottom:849.798000px;}
.y1b1{bottom:852.373500px;}
.y24c{bottom:853.732500px;}
.y1e9{bottom:854.466000px;}
.y226{bottom:855.435000px;}
.y2b9{bottom:859.426500px;}
.y296{bottom:863.547000px;}
.y24f{bottom:863.895000px;}
.y186{bottom:865.009500px;}
.y20{bottom:866.002500px;}
.y151{bottom:867.019500px;}
.y9b{bottom:869.001000px;}
.y69{bottom:870.121500px;}
.y1af{bottom:873.295500px;}
.y1e8{bottom:874.789500px;}
.y225{bottom:875.758500px;}
.y2b8{bottom:879.751500px;}
.ydc{bottom:882.280500px;}
.y295{bottom:883.870500px;}
.y24e{bottom:884.218500px;}
.y185{bottom:885.333000px;}
.ybb{bottom:886.167000px;}
.y1f{bottom:886.326000px;}
.y150{bottom:887.343000px;}
.yba{bottom:890.211000px;}
.y68{bottom:890.445000px;}
.y1ad{bottom:893.619000px;}
.y1e7{bottom:895.113000px;}
.y224{bottom:896.082000px;}
.y20a{bottom:902.899500px;}
.y24d{bottom:904.542000px;}
.y2{bottom:904.819500px;}
.y1e{bottom:906.649500px;}
.y14f{bottom:907.666500px;}
.y67{bottom:910.770000px;}
.y9a{bottom:912.702000px;}
.y2b7{bottom:913.524000px;}
.y1ae{bottom:913.942500px;}
.y1e6{bottom:915.436500px;}
.y223{bottom:916.405500px;}
.y294{bottom:917.643000px;}
.ydb{bottom:922.390500px;}
.y209{bottom:923.223000px;}
.y17c{bottom:923.455500px;}
.y1{bottom:925.143000px;}
.y24b{bottom:925.464000px;}
.y1d{bottom:926.974500px;}
.y14e{bottom:927.990000px;}
.y66{bottom:931.093500px;}
.y179{bottom:931.861500px;}
.y2b6{bottom:933.847500px;}
.y1ac{bottom:934.864500px;}
.y1e5{bottom:936.358500px;}
.y180{bottom:936.705000px;}
.y222{bottom:936.729000px;}
.y293{bottom:937.968000px;}
.y178{bottom:943.087500px;}
.y184{bottom:944.848500px;}
.y99{bottom:945.429000px;}
.y17f{bottom:947.178000px;}
.y1c{bottom:947.298000px;}
.y14d{bottom:948.313500px;}
.y183{bottom:949.734000px;}
.y65{bottom:951.417000px;}
.y2b5{bottom:954.172500px;}
.y97{bottom:956.653500px;}
.y17e{bottom:956.995500px;}
.y221{bottom:957.052500px;}
.y17b{bottom:958.632000px;}
.y181{bottom:961.273500px;}
.yda{bottom:963.037500px;}
.y17a{bottom:963.541500px;}
.y1b{bottom:967.621500px;}
.y98{bottom:967.723500px;}
.y14c{bottom:969.235500px;}
.y64{bottom:971.740500px;}
.y182{bottom:972.343500px;}
.y220{bottom:977.377500px;}
.y24a{bottom:979.263000px;}
.y17d{bottom:985.797000px;}
.y1a{bottom:987.945000px;}
.y14b{bottom:989.559000px;}
.y1ab{bottom:990.157500px;}
.y249{bottom:999.586500px;}
.y19{bottom:1008.268500px;}
.y14a{bottom:1009.882500px;}
.y1aa{bottom:1010.481000px;}
.y18{bottom:1084.146000px;}
.y17{bottom:1102.146000px;}
.y16{bottom:1120.146000px;}
.h12{height:3.272730px;}
.h36{height:10.731450px;}
.h2e{height:23.850624px;}
.h3a{height:24.245044px;}
.h3{height:32.278500px;}
.h16{height:32.278905px;}
.h11{height:35.865450px;}
.hf{height:42.046950px;}
.h7{height:42.720000px;}
.h2f{height:44.831700px;}
.h6{height:49.090500px;}
.h8{height:49.090950px;}
.h30{height:49.144877px;}
.he{height:50.045044px;}
.h9{height:50.211840px;}
.h33{height:51.184905px;}
.h4{height:53.797500px;}
.h28{height:54.777450px;}
.h3b{height:54.820905px;}
.h2d{height:55.219955px;}
.h24{height:56.026905px;}
.h19{height:56.032905px;}
.h3e{height:57.493955px;}
.h5{height:58.306500px;}
.h1a{height:59.302905px;}
.h22{height:59.308905px;}
.ha{height:59.613450px;}
.hb{height:59.619450px;}
.h1{height:60.253200px;}
.h10{height:60.254040px;}
.h2{height:61.893000px;}
.h25{height:62.889450px;}
.h20{height:62.895450px;}
.h26{height:65.266950px;}
.h2c{height:65.272950px;}
.h18{height:65.818950px;}
.h39{height:66.364950px;}
.h3d{height:67.420950px;}
.h2a{height:67.426950px;}
.h23{height:75.801450px;}
.h2b{height:77.949450px;}
.h29{height:77.955450px;}
.h38{height:85.714950px;}
.h35{height:85.720950px;}
.hd{height:89.632950px;}
.h14{height:91.768950px;}
.h1d{height:91.774950px;}
.h1b{height:93.370950px;}
.h1c{height:93.736950px;}
.h1f{height:93.988950px;}
.hc{height:95.564730px;}
.h37{height:99.404730px;}
.h27{height:100.678905px;}
.h21{height:107.787450px;}
.h1e{height:110.098950px;}
.h34{height:110.907450px;}
.h15{height:115.856730px;}
.h13{height:117.818730px;}
.h31{height:127.612950px;}
.h32{height:136.556730px;}
.h17{height:140.962905px;}
.h3c{height:167.066730px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:78.546000px;}
.x12{left:129.259500px;}
.x47{left:139.191000px;}
.x49{left:141.180000px;}
.x4a{left:147.915000px;}
.x48{left:150.316500px;}
.x11{left:154.665000px;}
.x71{left:161.346000px;}
.x40{left:165.573000px;}
.x44{left:171.783000px;}
.x3c{left:173.430000px;}
.x61{left:176.725500px;}
.x1{left:180.790500px;}
.x24{left:198.934500px;}
.x73{left:220.741500px;}
.x4c{left:223.612500px;}
.x3a{left:226.759500px;}
.x17{left:229.771500px;}
.x6d{left:232.423500px;}
.x5{left:233.655000px;}
.x4{left:234.702000px;}
.x36{left:242.632500px;}
.x6{left:244.933500px;}
.x70{left:248.686500px;}
.x7{left:251.277000px;}
.x2a{left:255.484500px;}
.x13{left:260.050500px;}
.x46{left:273.787500px;}
.x3b{left:287.113500px;}
.x39{left:291.916500px;}
.x3f{left:295.737000px;}
.x45{left:298.020000px;}
.xe{left:299.299500px;}
.x37{left:301.177500px;}
.x3d{left:302.565000px;}
.x8{left:311.251500px;}
.xc{left:312.412500px;}
.x19{left:313.720500px;}
.x18{left:316.857000px;}
.xa{left:319.374000px;}
.x14{left:322.545000px;}
.x9{left:323.848500px;}
.x4d{left:328.176000px;}
.x6e{left:331.678500px;}
.x51{left:340.851000px;}
.xd{left:346.657500px;}
.x2b{left:349.963500px;}
.x5d{left:352.570500px;}
.x3e{left:353.997000px;}
.x38{left:356.040000px;}
.x27{left:363.450000px;}
.x52{left:364.614000px;}
.x26{left:366.588000px;}
.x6f{left:368.130000px;}
.x1a{left:370.017000px;}
.x25{left:372.727500px;}
.x41{left:373.783500px;}
.x3{left:375.994500px;}
.x72{left:377.091000px;}
.x1c{left:380.901000px;}
.x35{left:385.284000px;}
.x62{left:387.036000px;}
.xb{left:388.215000px;}
.x6c{left:392.515500px;}
.x1b{left:393.780000px;}
.x2{left:394.840500px;}
.x29{left:396.088500px;}
.x28{left:398.850000px;}
.x64{left:401.377500px;}
.x65{left:402.918000px;}
.x63{left:409.342500px;}
.x5b{left:412.593000px;}
.x2c{left:415.533000px;}
.x4e{left:421.725000px;}
.x42{left:426.984000px;}
.x4f{left:430.764000px;}
.x4b{left:439.975500px;}
.x1d{left:441.069000px;}
.x56{left:442.260000px;}
.xf{left:444.066000px;}
.x54{left:445.522500px;}
.x55{left:447.063000px;}
.x15{left:448.366500px;}
.x2d{left:450.403500px;}
.x53{left:453.487500px;}
.x58{left:455.782500px;}
.x59{left:457.323000px;}
.x43{left:458.662500px;}
.x57{left:463.747500px;}
.x16{left:474.618000px;}
.x66{left:477.861000px;}
.x5a{left:479.419500px;}
.x1e{left:485.172000px;}
.x67{left:489.534000px;}
.x1f{left:494.263500px;}
.x2e{left:501.222000px;}
.x5e{left:502.677000px;}
.x20{left:504.997500px;}
.x68{left:509.926500px;}
.x50{left:515.605500px;}
.x5c{left:527.775000px;}
.x22{left:533.949000px;}
.x23{left:535.489500px;}
.x21{left:540.090000px;}
.x69{left:558.078000px;}
.x2f{left:559.239000px;}
.x5f{left:563.427000px;}
.x6a{left:575.124000px;}
.x60{left:588.454500px;}
.x30{left:617.484000px;}
.x31{left:666.562500px;}
.x32{left:684.417000px;}
.x34{left:705.733500px;}
.x33{left:714.871500px;}
.x6b{left:719.385000px;}
@media print{
.v10{vertical-align:-55.312000pt;}
.vc{vertical-align:-53.621333pt;}
.vf{vertical-align:-46.581333pt;}
.vb{vertical-align:-44.896000pt;}
.v2{vertical-align:-23.136000pt;}
.v1e{vertical-align:-21.114667pt;}
.v1f{vertical-align:-13.968000pt;}
.v7{vertical-align:-10.144000pt;}
.v3{vertical-align:-8.725333pt;}
.v9{vertical-align:-6.261333pt;}
.vd{vertical-align:-1.744000pt;}
.v0{vertical-align:0.000000pt;}
.v1d{vertical-align:5.653333pt;}
.v22{vertical-align:7.568000pt;}
.v23{vertical-align:8.725333pt;}
.v21{vertical-align:10.906667pt;}
.v8{vertical-align:13.376000pt;}
.v15{vertical-align:14.869333pt;}
.v20{vertical-align:16.810667pt;}
.v24{vertical-align:19.285333pt;}
.v4{vertical-align:21.109333pt;}
.v1{vertical-align:23.136000pt;}
.v19{vertical-align:24.026667pt;}
.v2a{vertical-align:26.810667pt;}
.v17{vertical-align:30.634667pt;}
.v6{vertical-align:36.224000pt;}
.ve{vertical-align:37.936000pt;}
.v16{vertical-align:39.360000pt;}
.v29{vertical-align:43.632000pt;}
.v1c{vertical-align:47.130667pt;}
.v18{vertical-align:54.229333pt;}
.v13{vertical-align:61.066667pt;}
.v1b{vertical-align:63.930667pt;}
.v27{vertical-align:66.704000pt;}
.v28{vertical-align:68.245333pt;}
.v12{vertical-align:69.797333pt;}
.v5{vertical-align:82.037333pt;}
.v26{vertical-align:83.530667pt;}
.v1a{vertical-align:87.040000pt;}
.v14{vertical-align:96.608000pt;}
.v11{vertical-align:100.074667pt;}
.va{vertical-align:101.818667pt;}
.v25{vertical-align:118.474667pt;}
.v2b{vertical-align:145.594667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5b{letter-spacing:0.000935pt;}
.ls87{letter-spacing:0.000936pt;}
.ls4c{letter-spacing:0.000939pt;}
.ls122{letter-spacing:0.000964pt;}
.ls63{letter-spacing:0.001146pt;}
.ls50{letter-spacing:0.001412pt;}
.lsd6{letter-spacing:0.001416pt;}
.ls8{letter-spacing:0.001425pt;}
.ls53{letter-spacing:0.001427pt;}
.ls3{letter-spacing:0.001428pt;}
.ls80{letter-spacing:0.001431pt;}
.ls60{letter-spacing:0.001899pt;}
.lsa2{letter-spacing:0.001917pt;}
.ls5f{letter-spacing:0.002384pt;}
.ls15{letter-spacing:0.002389pt;}
.ls10b{letter-spacing:0.002397pt;}
.lsb6{letter-spacing:0.002400pt;}
.ls3c{letter-spacing:0.002405pt;}
.lsea{letter-spacing:0.002411pt;}
.ls17{letter-spacing:0.002717pt;}
.ls5d{letter-spacing:0.002879pt;}
.lsa8{letter-spacing:0.002888pt;}
.ls5e{letter-spacing:0.002892pt;}
.ls7f{letter-spacing:0.003352pt;}
.ls40{letter-spacing:0.003856pt;}
.ls11b{letter-spacing:0.003861pt;}
.lse8{letter-spacing:0.004320pt;}
.lse{letter-spacing:0.004347pt;}
.ls103{letter-spacing:0.004800pt;}
.ls110{letter-spacing:0.005314pt;}
.ls7b{letter-spacing:0.006745pt;}
.ls4{letter-spacing:0.006758pt;}
.lsb{letter-spacing:0.504967pt;}
.lsb9{letter-spacing:0.922142pt;}
.lsbd{letter-spacing:0.927475pt;}
.ls8a{letter-spacing:0.928912pt;}
.lsbb{letter-spacing:0.929425pt;}
.ls2b{letter-spacing:0.934758pt;}
.ls16{letter-spacing:1.250474pt;}
.ls8e{letter-spacing:1.672685pt;}
.ls70{letter-spacing:1.678018pt;}
.lsf1{letter-spacing:1.827854pt;}
.lsf3{letter-spacing:1.833187pt;}
.lsfe{letter-spacing:2.081431pt;}
.ls102{letter-spacing:2.086764pt;}
.ls89{letter-spacing:2.087250pt;}
.lsd9{letter-spacing:2.088215pt;}
.ls5c{letter-spacing:2.091615pt;}
.ls5{letter-spacing:2.653258pt;}
.lsf5{letter-spacing:2.656473pt;}
.lsa7{letter-spacing:2.656853pt;}
.ls35{letter-spacing:2.657146pt;}
.lsf0{letter-spacing:2.657673pt;}
.ls41{letter-spacing:2.658034pt;}
.ls11{letter-spacing:2.658591pt;}
.lsf8{letter-spacing:2.658969pt;}
.ls3f{letter-spacing:2.662479pt;}
.lsab{letter-spacing:3.071003pt;}
.lscd{letter-spacing:3.076336pt;}
.ls56{letter-spacing:3.160967pt;}
.ls8f{letter-spacing:3.233914pt;}
.ls33{letter-spacing:3.326041pt;}
.lsed{letter-spacing:3.331374pt;}
.ls42{letter-spacing:4.505919pt;}
.ls1e{letter-spacing:4.527012pt;}
.ls38{letter-spacing:5.105323pt;}
.ls36{letter-spacing:5.110656pt;}
.lsd8{letter-spacing:5.317806pt;}
.ls1f{letter-spacing:5.659964pt;}
.ls100{letter-spacing:6.260825pt;}
.ls52{letter-spacing:6.338870pt;}
.ls75{letter-spacing:6.344225pt;}
.lsd7{letter-spacing:6.376050pt;}
.ls12{letter-spacing:7.183012pt;}
.ls25{letter-spacing:7.188345pt;}
.ls1b{letter-spacing:8.698144pt;}
.ls90{letter-spacing:8.926379pt;}
.ls8b{letter-spacing:8.931713pt;}
.ls4e{letter-spacing:9.416221pt;}
.ls4f{letter-spacing:9.418144pt;}
.ls6{letter-spacing:9.693077pt;}
.lsbf{letter-spacing:9.695009pt;}
.lsbc{letter-spacing:9.697425pt;}
.ls3e{letter-spacing:9.698411pt;}
.ls77{letter-spacing:9.702759pt;}
.ls7{letter-spacing:9.716372pt;}
.ls1a{letter-spacing:9.838531pt;}
.ls5a{letter-spacing:10.596811pt;}
.ls115{letter-spacing:10.772811pt;}
.ls114{letter-spacing:11.947812pt;}
.ls66{letter-spacing:12.354591pt;}
.ls112{letter-spacing:12.602144pt;}
.ls8c{letter-spacing:12.767003pt;}
.lse7{letter-spacing:12.772336pt;}
.ls10c{letter-spacing:12.925067pt;}
.ls85{letter-spacing:12.925555pt;}
.ls65{letter-spacing:12.927477pt;}
.ls8d{letter-spacing:12.928935pt;}
.lsad{letter-spacing:12.928936pt;}
.ls82{letter-spacing:12.928939pt;}
.lsa3{letter-spacing:12.929427pt;}
.lsde{letter-spacing:12.929914pt;}
.lsb5{letter-spacing:12.930888pt;}
.lsac{letter-spacing:12.931836pt;}
.ls62{letter-spacing:12.932811pt;}
.ls117{letter-spacing:13.430479pt;}
.lsbe{letter-spacing:13.855475pt;}
.ls91{letter-spacing:13.856912pt;}
.lsa{letter-spacing:14.073198pt;}
.ls6e{letter-spacing:14.205555pt;}
.ls20{letter-spacing:15.129680pt;}
.ls1d{letter-spacing:15.131601pt;}
.ls111{letter-spacing:15.265146pt;}
.ls76{letter-spacing:15.581258pt;}
.lsae{letter-spacing:15.584853pt;}
.ls64{letter-spacing:15.585146pt;}
.ls49{letter-spacing:15.585412pt;}
.lsdd{letter-spacing:15.586591pt;}
.ls4a{letter-spacing:15.588811pt;}
.lsff{letter-spacing:15.590479pt;}
.lsb1{letter-spacing:15.659520pt;}
.lsb2{letter-spacing:15.664853pt;}
.lsa1{letter-spacing:16.072215pt;}
.ls9{letter-spacing:16.094300pt;}
.ls54{letter-spacing:16.156093pt;}
.ls58{letter-spacing:16.157548pt;}
.lsb0{letter-spacing:16.158019pt;}
.ls3a{letter-spacing:16.159477pt;}
.ls24{letter-spacing:16.159483pt;}
.ls4d{letter-spacing:16.160936pt;}
.ls2e{letter-spacing:16.160939pt;}
.ls116{letter-spacing:16.162397pt;}
.ls19{letter-spacing:16.164811pt;}
.ls1c{letter-spacing:16.286018pt;}
.lsc1{letter-spacing:16.407925pt;}
.ls7a{letter-spacing:16.422272pt;}
.ls27{letter-spacing:16.710758pt;}
.ls101{letter-spacing:16.916811pt;}
.ls26{letter-spacing:16.921198pt;}
.lsfd{letter-spacing:16.922144pt;}
.ls59{letter-spacing:16.936203pt;}
.ls83{letter-spacing:16.970144pt;}
.ls23{letter-spacing:17.089425pt;}
.ls31{letter-spacing:17.337680pt;}
.ls119{letter-spacing:17.442400pt;}
.ls51{letter-spacing:17.640221pt;}
.ls109{letter-spacing:17.679477pt;}
.lseb{letter-spacing:17.802149pt;}
.ls14{letter-spacing:18.047483pt;}
.ls13{letter-spacing:18.050411pt;}
.ls10{letter-spacing:18.051352pt;}
.ls11a{letter-spacing:18.119733pt;}
.ls10a{letter-spacing:18.246764pt;}
.ls44{letter-spacing:18.355861pt;}
.ls21{letter-spacing:18.462041pt;}
.ls29{letter-spacing:18.488215pt;}
.ls86{letter-spacing:18.506144pt;}
.ls118{letter-spacing:18.561425pt;}
.ls37{letter-spacing:18.630479pt;}
.lsb8{letter-spacing:18.630758pt;}
.lsc3{letter-spacing:18.769425pt;}
.lsb3{letter-spacing:18.816853pt;}
.lsc2{letter-spacing:18.887744pt;}
.ls30{letter-spacing:19.078272pt;}
.lsdc{letter-spacing:19.143925pt;}
.ls73{letter-spacing:19.236347pt;}
.lsba{letter-spacing:19.266892pt;}
.ls78{letter-spacing:19.272225pt;}
.ls6d{letter-spacing:19.355601pt;}
.ls57{letter-spacing:19.369198pt;}
.ls9d{letter-spacing:19.389077pt;}
.lsc{letter-spacing:19.389548pt;}
.ls88{letter-spacing:19.392935pt;}
.ls39{letter-spacing:19.392939pt;}
.ls11f{letter-spacing:19.394384pt;}
.lse0{letter-spacing:19.394411pt;}
.lse1{letter-spacing:19.396343pt;}
.ls9e{letter-spacing:19.398268pt;}
.ls11e{letter-spacing:19.399717pt;}
.ls96{letter-spacing:19.405548pt;}
.ls28{letter-spacing:19.630531pt;}
.ls6f{letter-spacing:19.780811pt;}
.ls108{letter-spacing:20.337146pt;}
.ls34{letter-spacing:20.438272pt;}
.lsf{letter-spacing:20.526018pt;}
.ls9b{letter-spacing:20.619605pt;}
.ls32{letter-spacing:20.670041pt;}
.lsf6{letter-spacing:20.680941pt;}
.ls11c{letter-spacing:20.775925pt;}
.ls6c{letter-spacing:20.945425pt;}
.ls2{letter-spacing:21.037077pt;}
.ls71{letter-spacing:21.314888pt;}
.ls121{letter-spacing:21.447733pt;}
.ls9c{letter-spacing:21.479250pt;}
.ls69{letter-spacing:21.542268pt;}
.ls6a{letter-spacing:21.542272pt;}
.ls92{letter-spacing:21.854379pt;}
.lse4{letter-spacing:21.859713pt;}
.ls113{letter-spacing:21.885258pt;}
.ls107{letter-spacing:21.988347pt;}
.lsc4{letter-spacing:21.996581pt;}
.ls106{letter-spacing:22.006764pt;}
.lsf7{letter-spacing:22.051608pt;}
.lsb4{letter-spacing:22.054187pt;}
.lsd{letter-spacing:22.054479pt;}
.lsee{letter-spacing:22.057067pt;}
.lsc7{letter-spacing:22.413537pt;}
.ls2a{letter-spacing:22.493548pt;}
.ls18{letter-spacing:22.498870pt;}
.ls2c{letter-spacing:22.504225pt;}
.ls74{letter-spacing:22.563374pt;}
.ls45{letter-spacing:22.763605pt;}
.ls48{letter-spacing:22.804811pt;}
.ls47{letter-spacing:22.806269pt;}
.ls99{letter-spacing:22.840685pt;}
.ls120{letter-spacing:23.025420pt;}
.lsd5{letter-spacing:23.263483pt;}
.lsd3{letter-spacing:23.268811pt;}
.lsd4{letter-spacing:23.271739pt;}
.ls46{letter-spacing:23.382272pt;}
.ls4b{letter-spacing:23.382745pt;}
.ls0{letter-spacing:23.464208pt;}
.ls22{letter-spacing:23.558753pt;}
.lsf4{letter-spacing:23.559925pt;}
.lsd0{letter-spacing:23.578623pt;}
.lscf{letter-spacing:23.771812pt;}
.lsdb{letter-spacing:23.842591pt;}
.ls6b{letter-spacing:23.897680pt;}
.ls2f{letter-spacing:23.919012pt;}
.ls94{letter-spacing:23.955836pt;}
.ls98{letter-spacing:23.982531pt;}
.lsb7{letter-spacing:24.040225pt;}
.ls68{letter-spacing:24.203812pt;}
.ls3d{letter-spacing:24.502656pt;}
.ls7c{letter-spacing:24.678479pt;}
.ls55{letter-spacing:24.825678pt;}
.ls95{letter-spacing:25.097198pt;}
.lsf9{letter-spacing:25.450144pt;}
.ls81{letter-spacing:25.570892pt;}
.ls10f{letter-spacing:25.883812pt;}
.lsd2{letter-spacing:25.931812pt;}
.ls105{letter-spacing:26.180825pt;}
.lsd1{letter-spacing:26.507812pt;}
.ls3b{letter-spacing:26.566267pt;}
.ls2d{letter-spacing:26.575012pt;}
.lsf2{letter-spacing:26.606520pt;}
.ls97{letter-spacing:27.113198pt;}
.ls7d{letter-spacing:27.126656pt;}
.ls72{letter-spacing:27.650870pt;}
.ls9a{letter-spacing:36.199744pt;}
.lsdf{letter-spacing:47.757077pt;}
.lsca{letter-spacing:53.130144pt;}
.lsaa{letter-spacing:53.131601pt;}
.ls9f{letter-spacing:53.131605pt;}
.lsc5{letter-spacing:53.135009pt;}
.lsa6{letter-spacing:53.135477pt;}
.lsc9{letter-spacing:54.058142pt;}
.lsa5{letter-spacing:54.059579pt;}
.lse3{letter-spacing:54.063475pt;}
.lscc{letter-spacing:59.474892pt;}
.lse6{letter-spacing:59.480225pt;}
.lse9{letter-spacing:61.718479pt;}
.lsec{letter-spacing:61.723812pt;}
.ls123{letter-spacing:63.757067pt;}
.ls11d{letter-spacing:63.762400pt;}
.ls7e{letter-spacing:69.199477pt;}
.lsc6{letter-spacing:71.508811pt;}
.ls124{letter-spacing:72.263733pt;}
.ls61{letter-spacing:72.618144pt;}
.ls84{letter-spacing:82.173067pt;}
.lsc0{letter-spacing:82.706411pt;}
.lsda{letter-spacing:82.813258pt;}
.ls10d{letter-spacing:93.494479pt;}
.lsa0{letter-spacing:106.426144pt;}
.ls43{letter-spacing:120.724695pt;}
.lsfc{letter-spacing:174.538144pt;}
.ls67{letter-spacing:388.525077pt;}
.ls93{letter-spacing:465.677077pt;}
.lsce{letter-spacing:488.482411pt;}
.lsaf{letter-spacing:503.991744pt;}
.ls104{letter-spacing:515.426411pt;}
.ls10e{letter-spacing:562.823744pt;}
.ls79{letter-spacing:580.658411pt;}
.lsfb{letter-spacing:668.429077pt;}
.lse5{letter-spacing:717.501559pt;}
.lsfa{letter-spacing:733.378411pt;}
.lscb{letter-spacing:746.189559pt;}
.lsa9{letter-spacing:746.363601pt;}
.lsef{letter-spacing:775.693077pt;}
.lsa4{letter-spacing:823.463251pt;}
.lse2{letter-spacing:912.071251pt;}
.lsc8{letter-spacing:936.721917pt;}
.ws7a{word-spacing:-58.181867pt;}
.ws2c{word-spacing:-47.616040pt;}
.ws77{word-spacing:-46.062584pt;}
.ws54{word-spacing:-38.964388pt;}
.ws101{word-spacing:-38.770529pt;}
.ws34{word-spacing:-37.899668pt;}
.ws5f{word-spacing:-36.251292pt;}
.ws94{word-spacing:-28.241478pt;}
.ws63{word-spacing:-28.183296pt;}
.wsd{word-spacing:-18.583288pt;}
.wsf7{word-spacing:-18.379308pt;}
.wsf8{word-spacing:-18.358008pt;}
.wsfb{word-spacing:-17.583619pt;}
.wsf3{word-spacing:-16.970957pt;}
.wsc{word-spacing:-16.162923pt;}
.ws17c{word-spacing:-14.871285pt;}
.ws146{word-spacing:-14.760588pt;}
.ws103{word-spacing:-11.194286pt;}
.ws102{word-spacing:-10.858286pt;}
.wsfe{word-spacing:-8.879619pt;}
.ws98{word-spacing:-8.866916pt;}
.ws2e{word-spacing:-3.246548pt;}
.ws2b{word-spacing:-3.238890pt;}
.ws2d{word-spacing:-3.233048pt;}
.ws128{word-spacing:-3.007465pt;}
.ws126{word-spacing:-2.949293pt;}
.wsaa{word-spacing:-2.816002pt;}
.wsf0{word-spacing:-2.781093pt;}
.wsa0{word-spacing:-2.722911pt;}
.ws6e{word-spacing:-2.664729pt;}
.ws151{word-spacing:-2.606548pt;}
.ws152{word-spacing:-2.548366pt;}
.wsab{word-spacing:-2.490184pt;}
.wsa7{word-spacing:-2.432002pt;}
.ws64{word-spacing:-2.373820pt;}
.ws15a{word-spacing:-2.315638pt;}
.ws125{word-spacing:-2.257456pt;}
.ws17d{word-spacing:-2.141093pt;}
.ws10b{word-spacing:-2.082911pt;}
.ws154{word-spacing:-1.966547pt;}
.ws24{word-spacing:-1.850183pt;}
.ws10{word-spacing:-1.733820pt;}
.ws10d{word-spacing:-1.675638pt;}
.ws35{word-spacing:-1.559274pt;}
.ws138{word-spacing:-1.384728pt;}
.ws121{word-spacing:-1.326547pt;}
.ws23{word-spacing:-1.268365pt;}
.ws1d{word-spacing:-1.210183pt;}
.ws16f{word-spacing:-1.152001pt;}
.wsd5{word-spacing:-1.093819pt;}
.ws37{word-spacing:-1.044528pt;}
.ws39{word-spacing:-1.036213pt;}
.ws36{word-spacing:-1.035637pt;}
.ws12{word-spacing:-0.919273pt;}
.ws122{word-spacing:-0.861092pt;}
.wsb2{word-spacing:-0.686546pt;}
.ws129{word-spacing:-0.663273pt;}
.wsef{word-spacing:-0.570182pt;}
.ws127{word-spacing:-0.562117pt;}
.wsa5{word-spacing:-0.512000pt;}
.wsb1{word-spacing:-0.453819pt;}
.ws3b{word-spacing:-0.404592pt;}
.ws3a{word-spacing:-0.395637pt;}
.ws1a{word-spacing:-0.321691pt;}
.ws18{word-spacing:-0.314923pt;}
.ws2a{word-spacing:-0.221091pt;}
.ws4b{word-spacing:-0.198879pt;}
.ws4a{word-spacing:-0.162909pt;}
.ws159{word-spacing:-0.104727pt;}
.wsaf{word-spacing:-0.076513pt;}
.ws8{word-spacing:-0.063760pt;}
.wsbe{word-spacing:-0.058182pt;}
.wse4{word-spacing:-0.047821pt;}
.wsc2{word-spacing:-0.046545pt;}
.ws2f{word-spacing:-0.042507pt;}
.ws53{word-spacing:-0.015599pt;}
.wsb{word-spacing:0.000000pt;}
.ws74{word-spacing:0.011636pt;}
.ws16d{word-spacing:0.069818pt;}
.wsdd{word-spacing:0.128000pt;}
.ws89{word-spacing:0.244364pt;}
.ws8a{word-spacing:0.302546pt;}
.wsca{word-spacing:0.325818pt;}
.wse0{word-spacing:0.360728pt;}
.ws12a{word-spacing:0.424359pt;}
.wsa4{word-spacing:0.477091pt;}
.wsa3{word-spacing:0.500364pt;}
.ws20{word-spacing:0.535273pt;}
.ws1f{word-spacing:0.593455pt;}
.ws105{word-spacing:0.651637pt;}
.ws124{word-spacing:0.709819pt;}
.ws12d{word-spacing:0.766933pt;}
.ws12e{word-spacing:0.768001pt;}
.ws117{word-spacing:0.804755pt;}
.ws116{word-spacing:0.807580pt;}
.ws118{word-spacing:0.808571pt;}
.ws11e{word-spacing:0.810088pt;}
.ws13c{word-spacing:0.810519pt;}
.ws143{word-spacing:0.812913pt;}
.ws15b{word-spacing:0.813904pt;}
.ws115{word-spacing:0.815853pt;}
.ws120{word-spacing:0.826183pt;}
.ws56{word-spacing:0.884364pt;}
.ws10c{word-spacing:0.942546pt;}
.ws49{word-spacing:1.000728pt;}
.ws17e{word-spacing:1.012364pt;}
.ws112{word-spacing:1.058910pt;}
.ws33{word-spacing:1.117092pt;}
.ws45{word-spacing:1.171787pt;}
.ws46{word-spacing:1.173613pt;}
.ws11{word-spacing:1.175274pt;}
.wse8{word-spacing:1.233456pt;}
.ws110{word-spacing:1.291637pt;}
.ws1c{word-spacing:1.349819pt;}
.ws13{word-spacing:1.408001pt;}
.ws17{word-spacing:1.443217pt;}
.ws5c{word-spacing:1.466183pt;}
.ws5b{word-spacing:1.483955pt;}
.ws70{word-spacing:1.524365pt;}
.wsa6{word-spacing:1.529121pt;}
.wsf{word-spacing:1.582547pt;}
.wse5{word-spacing:1.640729pt;}
.wsc8{word-spacing:1.698911pt;}
.ws25{word-spacing:1.757092pt;}
.ws6c{word-spacing:1.815274pt;}
.ws5d{word-spacing:1.817006pt;}
.ws171{word-spacing:1.826911pt;}
.wsf1{word-spacing:1.834914pt;}
.ws32{word-spacing:1.873456pt;}
.ws111{word-spacing:1.931638pt;}
.ws177{word-spacing:2.001456pt;}
.ws61{word-spacing:2.048002pt;}
.ws60{word-spacing:2.062454pt;}
.ws19{word-spacing:2.106184pt;}
.ws175{word-spacing:2.117820pt;}
.ws109{word-spacing:2.137525pt;}
.ws52{word-spacing:2.164365pt;}
.ws55{word-spacing:2.195741pt;}
.wsd4{word-spacing:2.222547pt;}
.ws13a{word-spacing:2.280729pt;}
.ws3c{word-spacing:2.305804pt;}
.ws1e{word-spacing:2.338911pt;}
.ws15{word-spacing:2.387662pt;}
.ws69{word-spacing:2.397093pt;}
.ws10e{word-spacing:2.404269pt;}
.wse1{word-spacing:2.513457pt;}
.wsa8{word-spacing:2.571639pt;}
.wsa9{word-spacing:2.595787pt;}
.ws176{word-spacing:2.648072pt;}
.ws130{word-spacing:2.686454pt;}
.ws8b{word-spacing:2.688002pt;}
.ws12f{word-spacing:2.795430pt;}
.ws131{word-spacing:2.804366pt;}
.ws113{word-spacing:2.862548pt;}
.ws44{word-spacing:2.912432pt;}
.ws42{word-spacing:2.920730pt;}
.wsf5{word-spacing:2.932989pt;}
.ws134{word-spacing:2.952465pt;}
.wsfa{word-spacing:2.978912pt;}
.ws95{word-spacing:3.037093pt;}
.ws85{word-spacing:3.048107pt;}
.ws84{word-spacing:3.095275pt;}
.wsac{word-spacing:3.153457pt;}
.ws86{word-spacing:3.203733pt;}
.ws30{word-spacing:3.209426pt;}
.ws21{word-spacing:3.211639pt;}
.ws4f{word-spacing:3.225121pt;}
.wsa1{word-spacing:3.227099pt;}
.ws4c{word-spacing:3.228451pt;}
.wsa2{word-spacing:3.235741pt;}
.ws4e{word-spacing:3.239604pt;}
.ws3f{word-spacing:3.269821pt;}
.wsf2{word-spacing:3.432448pt;}
.ws14f{word-spacing:3.444367pt;}
.ws6f{word-spacing:3.502548pt;}
.ws157{word-spacing:3.560730pt;}
.ws71{word-spacing:3.618912pt;}
.ws41{word-spacing:3.677094pt;}
.wsf6{word-spacing:3.700367pt;}
.wsc7{word-spacing:3.735276pt;}
.ws62{word-spacing:3.793458pt;}
.ws16{word-spacing:3.851640pt;}
.ws179{word-spacing:4.026185pt;}
.ws6d{word-spacing:4.084367pt;}
.wsc9{word-spacing:4.142549pt;}
.wsbd{word-spacing:4.200731pt;}
.ws47{word-spacing:4.258913pt;}
.wse{word-spacing:4.317095pt;}
.ws31{word-spacing:4.375276pt;}
.ws9f{word-spacing:4.433458pt;}
.ws9e{word-spacing:4.457121pt;}
.ws57{word-spacing:4.491640pt;}
.wsbb{word-spacing:4.549822pt;}
.wsb4{word-spacing:4.608004pt;}
.ws40{word-spacing:4.666186pt;}
.wse2{word-spacing:4.724368pt;}
.ws14{word-spacing:4.782549pt;}
.wse7{word-spacing:4.840731pt;}
.ws1b{word-spacing:4.898913pt;}
.wsb3{word-spacing:4.957095pt;}
.ws6a{word-spacing:5.015277pt;}
.wsb6{word-spacing:5.027741pt;}
.ws13b{word-spacing:5.056735pt;}
.ws65{word-spacing:5.073459pt;}
.wsf9{word-spacing:5.096732pt;}
.ws82{word-spacing:5.131641pt;}
.ws81{word-spacing:5.174134pt;}
.ws83{word-spacing:5.189823pt;}
.wscb{word-spacing:5.248004pt;}
.ws132{word-spacing:5.283787pt;}
.ws51{word-spacing:5.306186pt;}
.ws7c{word-spacing:5.364368pt;}
.ws7d{word-spacing:5.379787pt;}
.ws7b{word-spacing:5.385075pt;}
.wse6{word-spacing:5.422550pt;}
.ws17a{word-spacing:5.488427pt;}
.wscd{word-spacing:5.538914pt;}
.ws12c{word-spacing:5.597096pt;}
.ws22{word-spacing:5.655277pt;}
.ws107{word-spacing:5.713459pt;}
.ws5e{word-spacing:5.771641pt;}
.ws48{word-spacing:5.829823pt;}
.ws8c{word-spacing:5.854454pt;}
.ws16a{word-spacing:5.888005pt;}
.ws17f{word-spacing:5.899641pt;}
.ws8d{word-spacing:5.946187pt;}
.ws170{word-spacing:5.957823pt;}
.wsc4{word-spacing:6.004369pt;}
.wsea{word-spacing:6.062551pt;}
.wsb8{word-spacing:6.178914pt;}
.wsdc{word-spacing:6.237096pt;}
.wsdf{word-spacing:6.295278pt;}
.ws3d{word-spacing:6.334949pt;}
.ws3e{word-spacing:6.353460pt;}
.ws123{word-spacing:6.411642pt;}
.wsed{word-spacing:6.469824pt;}
.wsce{word-spacing:6.528005pt;}
.ws58{word-spacing:6.586187pt;}
.ws9d{word-spacing:6.644369pt;}
.ws9c{word-spacing:6.702551pt;}
.ws100{word-spacing:6.739719pt;}
.wsdb{word-spacing:6.818915pt;}
.wsb7{word-spacing:6.877097pt;}
.ws10a{word-spacing:6.935279pt;}
.ws180{word-spacing:6.946915pt;}
.ws13f{word-spacing:6.993460pt;}
.wsba{word-spacing:7.051642pt;}
.ws106{word-spacing:7.065075pt;}
.wsb0{word-spacing:7.109824pt;}
.ws67{word-spacing:7.168006pt;}
.ws59{word-spacing:7.217283pt;}
.ws27{word-spacing:7.226188pt;}
.ws169{word-spacing:7.284370pt;}
.wsda{word-spacing:7.342552pt;}
.ws66{word-spacing:7.400733pt;}
.wsde{word-spacing:7.458915pt;}
.ws184{word-spacing:7.470552pt;}
.ws28{word-spacing:7.517097pt;}
.wseb{word-spacing:7.575279pt;}
.ws80{word-spacing:7.633461pt;}
.ws8e{word-spacing:7.691643pt;}
.ws7f{word-spacing:7.749825pt;}
.ws99{word-spacing:7.790408pt;}
.ws9a{word-spacing:7.808007pt;}
.ws93{word-spacing:7.924370pt;}
.ws186{word-spacing:7.936007pt;}
.ws26{word-spacing:7.982552pt;}
.ws17b{word-spacing:7.994188pt;}
.wscc{word-spacing:8.098916pt;}
.wsb9{word-spacing:8.122189pt;}
.ws68{word-spacing:8.157098pt;}
.ws142{word-spacing:8.215280pt;}
.ws14a{word-spacing:8.331643pt;}
.ws13e{word-spacing:8.389825pt;}
.ws87{word-spacing:8.448007pt;}
.wsd2{word-spacing:8.564371pt;}
.wsd1{word-spacing:8.622553pt;}
.wsff{word-spacing:8.680735pt;}
.wsfd{word-spacing:8.697600pt;}
.wsb5{word-spacing:8.797098pt;}
.ws183{word-spacing:8.855280pt;}
.ws153{word-spacing:8.913462pt;}
.ws172{word-spacing:9.029826pt;}
.wsd9{word-spacing:9.088008pt;}
.wsc5{word-spacing:9.111280pt;}
.wscf{word-spacing:9.204371pt;}
.wsd0{word-spacing:9.262553pt;}
.ws16b{word-spacing:9.378917pt;}
.ws141{word-spacing:9.611644pt;}
.ws185{word-spacing:9.625121pt;}
.ws173{word-spacing:9.625926pt;}
.ws108{word-spacing:9.669826pt;}
.wsee{word-spacing:9.728008pt;}
.ws9b{word-spacing:9.786190pt;}
.wsc1{word-spacing:9.844372pt;}
.wsd3{word-spacing:9.902554pt;}
.ws16c{word-spacing:10.018917pt;}
.ws5a{word-spacing:10.309827pt;}
.ws12b{word-spacing:10.368009pt;}
.ws150{word-spacing:10.426191pt;}
.ws158{word-spacing:10.484372pt;}
.ws10f{word-spacing:10.542554pt;}
.wse9{word-spacing:10.600736pt;}
.ws139{word-spacing:10.717100pt;}
.wsec{word-spacing:10.949827pt;}
.ws96{word-spacing:11.008009pt;}
.wsc6{word-spacing:11.182555pt;}
.ws72{word-spacing:11.357100pt;}
.wsc0{word-spacing:11.415282pt;}
.ws78{word-spacing:11.420054pt;}
.ws16e{word-spacing:11.589828pt;}
.wsd8{word-spacing:11.706192pt;}
.wsc3{word-spacing:11.880737pt;}
.ws181{word-spacing:11.938919pt;}
.ws140{word-spacing:12.229828pt;}
.ws155{word-spacing:12.404374pt;}
.ws73{word-spacing:13.393466pt;}
.wsd7{word-spacing:13.568011pt;}
.ws182{word-spacing:13.986921pt;}
.ws174{word-spacing:14.219648pt;}
.ws75{word-spacing:14.759961pt;}
.ws79{word-spacing:15.130801pt;}
.ws178{word-spacing:15.255285pt;}
.wsd6{word-spacing:15.627649pt;}
.wsfc{word-spacing:16.286408pt;}
.wse3{word-spacing:16.354714pt;}
.ws156{word-spacing:16.514116pt;}
.ws91{word-spacing:18.503784pt;}
.wsad{word-spacing:18.777551pt;}
.ws114{word-spacing:19.037107pt;}
.wsbc{word-spacing:20.420217pt;}
.ws2{word-spacing:20.722000pt;}
.ws4{word-spacing:20.753563pt;}
.ws7{word-spacing:20.785505pt;}
.ws3{word-spacing:20.786015pt;}
.ws38{word-spacing:21.223961pt;}
.ws4d{word-spacing:21.229295pt;}
.ws76{word-spacing:21.922451pt;}
.ws1{word-spacing:23.832686pt;}
.ws6{word-spacing:23.839123pt;}
.ws9{word-spacing:23.845051pt;}
.wsa{word-spacing:23.846240pt;}
.ws29{word-spacing:23.846639pt;}
.ws43{word-spacing:24.141295pt;}
.ws7e{word-spacing:24.162451pt;}
.ws90{word-spacing:24.461118pt;}
.ws88{word-spacing:25.320748pt;}
.ws5{word-spacing:26.029240pt;}
.ws92{word-spacing:28.450628pt;}
.ws0{word-spacing:28.615335pt;}
.ws6b{word-spacing:28.615887pt;}
.ws97{word-spacing:36.957122pt;}
.ws104{word-spacing:39.603238pt;}
.wsae{word-spacing:41.852647pt;}
.ws14b{word-spacing:45.184038pt;}
.ws8f{word-spacing:67.390454pt;}
.wsbf{word-spacing:71.667439pt;}
.ws168{word-spacing:72.293939pt;}
.ws135{word-spacing:72.881145pt;}
.ws11f{word-spacing:86.730993pt;}
.ws162{word-spacing:91.286479pt;}
.ws11b{word-spacing:91.794068pt;}
.ws145{word-spacing:101.995770pt;}
.ws15c{word-spacing:102.353145pt;}
.ws11d{word-spacing:109.009441pt;}
.ws160{word-spacing:113.052886pt;}
.ws15d{word-spacing:115.265490pt;}
.ws137{word-spacing:118.148466pt;}
.ws148{word-spacing:121.911553pt;}
.ws164{word-spacing:122.322486pt;}
.ws147{word-spacing:125.452157pt;}
.ws119{word-spacing:126.309828pt;}
.ws15e{word-spacing:128.279553pt;}
.ws167{word-spacing:129.210193pt;}
.ws166{word-spacing:129.426666pt;}
.ws163{word-spacing:129.427090pt;}
.ws161{word-spacing:132.481490pt;}
.ws149{word-spacing:132.685892pt;}
.ws165{word-spacing:139.391526pt;}
.ws11c{word-spacing:139.981832pt;}
.ws133{word-spacing:140.496570pt;}
.ws11a{word-spacing:150.163165pt;}
.ws14e{word-spacing:171.335466pt;}
.ws144{word-spacing:179.832232pt;}
.ws14c{word-spacing:187.732578pt;}
.wsf4{word-spacing:250.165941pt;}
.ws136{word-spacing:289.491165pt;}
.ws15f{word-spacing:307.896498pt;}
.ws13d{word-spacing:329.341565pt;}
.ws14d{word-spacing:347.320498pt;}
.ws50{word-spacing:347.590108pt;}
._3b{margin-left:-32.800010pt;}
._6e{margin-left:-28.950159pt;}
._30{margin-left:-9.818369pt;}
._0{margin-left:-7.191898pt;}
._3{margin-left:-5.993504pt;}
._c{margin-left:-4.876539pt;}
._4{margin-left:-3.939438pt;}
._1{margin-left:-2.372255pt;}
._5{margin-left:-1.070913pt;}
._a{width:0.943041pt;}
._2{width:2.372790pt;}
._14{width:3.312759pt;}
._20{width:5.104015pt;}
._39{width:6.341823pt;}
._3a{width:8.087279pt;}
._3c{width:10.517358pt;}
._29{width:12.908040pt;}
._1a{width:14.498172pt;}
._15{width:15.592205pt;}
._7{width:16.801357pt;}
._b{width:18.489167pt;}
._21{width:19.642818pt;}
._e{width:20.931859pt;}
._d{width:22.171848pt;}
._10{width:23.074796pt;}
._9{width:24.203121pt;}
._8{width:25.994092pt;}
._27{width:27.157730pt;}
._1b{width:28.160774pt;}
._6{width:29.138377pt;}
._1e{width:30.110786pt;}
._f{width:31.230093pt;}
._1f{width:32.292181pt;}
._11{width:33.996250pt;}
._16{width:35.827899pt;}
._3d{width:37.003667pt;}
._12{width:37.934577pt;}
._1c{width:39.027902pt;}
._2b{width:40.436397pt;}
._55{width:41.333836pt;}
._28{width:42.472763pt;}
._2e{width:43.869127pt;}
._24{width:45.032550pt;}
._19{width:46.400080pt;}
._60{width:47.462579pt;}
._2f{width:48.406562pt;}
._2d{width:49.756770pt;}
._38{width:51.258225pt;}
._2c{width:52.703957pt;}
._56{width:53.656347pt;}
._6d{width:55.050033pt;}
._25{width:58.249533pt;}
._26{width:64.806032pt;}
._4e{width:65.914481pt;}
._3e{width:66.909147pt;}
._23{width:70.106833pt;}
._13{width:71.731200pt;}
._22{width:75.269502pt;}
._1d{width:86.077200pt;}
._6a{width:89.051704pt;}
._63{width:95.386481pt;}
._17{width:111.302284pt;}
._6c{width:116.204378pt;}
._68{width:118.966727pt;}
._69{width:120.932681pt;}
._45{width:124.917721pt;}
._6b{width:127.069197pt;}
._46{width:129.115296pt;}
._5a{width:130.826481pt;}
._47{width:135.172557pt;}
._51{width:136.692858pt;}
._48{width:141.614663pt;}
._4a{width:142.545573pt;}
._49{width:143.534665pt;}
._65{width:145.240959pt;}
._44{width:146.383803pt;}
._42{width:155.257158pt;}
._41{width:156.319836pt;}
._31{width:159.156511pt;}
._57{width:161.389013pt;}
._58{width:165.809087pt;}
._53{width:170.559712pt;}
._4d{width:192.875936pt;}
._5b{width:202.493166pt;}
._43{width:205.659487pt;}
._67{width:208.595089pt;}
._52{width:210.978777pt;}
._40{width:211.939910pt;}
._37{width:213.286764pt;}
._36{width:226.572097pt;}
._4b{width:233.277444pt;}
._34{width:247.238285pt;}
._35{width:273.790400pt;}
._61{width:288.540929pt;}
._33{width:294.451733pt;}
._32{width:303.310400pt;}
._54{width:304.251753pt;}
._66{width:333.723753pt;}
._4c{width:339.681416pt;}
._50{width:344.102153pt;}
._4f{width:350.382576pt;}
._62{width:369.153416pt;}
._64{width:373.574153pt;}
._5c{width:380.242164pt;}
._5d{width:385.942282pt;}
._59{width:404.593416pt;}
._5f{width:409.014153pt;}
._5e{width:415.294576pt;}
._2a{width:474.072139pt;}
._3f{width:480.384910pt;}
._18{width:873.620321pt;}
.fs8{font-size:31.880533pt;}
.fsc{font-size:37.193600pt;}
.fs2{font-size:42.506667pt;}
.fs7{font-size:42.507200pt;}
.fsa{font-size:47.820800pt;}
.fsb{font-size:53.133867pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:58.181333pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.760000pt;}
.fs6{font-size:63.761067pt;}
.fs0{font-size:76.512000pt;}
.fs9{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:39.504000pt;}
.y45{bottom:39.505333pt;}
.y96{bottom:79.354667pt;}
.y1ce{bottom:86.920000pt;}
.yf3{bottom:87.448000pt;}
.y44{bottom:89.140000pt;}
.y1a9{bottom:93.180000pt;}
.y2b4{bottom:94.122667pt;}
.y95{bottom:97.420000pt;}
.y1e4{bottom:101.361333pt;}
.yb9{bottom:101.405333pt;}
.y1cd{bottom:104.985333pt;}
.yf2{bottom:105.513333pt;}
.y149{bottom:106.020000pt;}
.y43{bottom:107.205333pt;}
.yd9{bottom:109.546667pt;}
.y128{bottom:110.658667pt;}
.y273{bottom:110.930667pt;}
.y1a8{bottom:111.245333pt;}
.y2b3{bottom:112.188000pt;}
.yd8{bottom:113.142667pt;}
.y94{bottom:115.486667pt;}
.y248{bottom:115.877333pt;}
.y1e3{bottom:119.426667pt;}
.yb8{bottom:119.986667pt;}
.y1cc{bottom:123.050667pt;}
.yf1{bottom:123.578667pt;}
.y148{bottom:124.086667pt;}
.y42{bottom:125.270667pt;}
.y272{bottom:128.996000pt;}
.y1a7{bottom:129.310667pt;}
.yb7{bottom:129.964000pt;}
.y2b2{bottom:130.253333pt;}
.y108{bottom:132.574667pt;}
.y127{bottom:132.728000pt;}
.y177{bottom:133.146667pt;}
.y247{bottom:133.942667pt;}
.y1e2{bottom:137.492000pt;}
.y1cb{bottom:141.116000pt;}
.yf0{bottom:141.645333pt;}
.y147{bottom:142.152000pt;}
.y41{bottom:143.337333pt;}
.y92{bottom:143.352000pt;}
.y93{bottom:143.788000pt;}
.y208{bottom:145.093333pt;}
.yd7{bottom:145.820000pt;}
.y1a6{bottom:147.376000pt;}
.y271{bottom:147.593333pt;}
.y107{bottom:150.640000pt;}
.y126{bottom:150.794667pt;}
.y176{bottom:151.212000pt;}
.y246{bottom:152.008000pt;}
.y1e1{bottom:155.557333pt;}
.y1ca{bottom:159.181333pt;}
.yef{bottom:159.710667pt;}
.y146{bottom:160.217333pt;}
.y2b1{bottom:160.274667pt;}
.y40{bottom:161.402667pt;}
.y207{bottom:163.158667pt;}
.y1a5{bottom:165.442667pt;}
.y62{bottom:166.149333pt;}
.yb6{bottom:167.278667pt;}
.yd6{bottom:167.870667pt;}
.y91{bottom:168.338667pt;}
.y106{bottom:168.705333pt;}
.y125{bottom:168.860000pt;}
.y245{bottom:170.073333pt;}
.y1e0{bottom:173.622667pt;}
.y1c9{bottom:177.248000pt;}
.yee{bottom:177.776000pt;}
.y145{bottom:178.282667pt;}
.y2b0{bottom:178.340000pt;}
.y21f{bottom:178.809333pt;}
.y3f{bottom:179.468000pt;}
.y206{bottom:181.224000pt;}
.y1a4{bottom:183.508000pt;}
.y61{bottom:184.214667pt;}
.yb5{bottom:185.344000pt;}
.yd5{bottom:186.452000pt;}
.y105{bottom:186.770667pt;}
.y124{bottom:186.925333pt;}
.y244{bottom:188.140000pt;}
.y175{bottom:189.632000pt;}
.y1df{bottom:191.689333pt;}
.y1c8{bottom:195.313333pt;}
.y292{bottom:195.342667pt;}
.y270{bottom:195.413333pt;}
.y14{bottom:195.769333pt;}
.yed{bottom:195.841333pt;}
.y144{bottom:196.348000pt;}
.y2af{bottom:196.405333pt;}
.yd4{bottom:196.429333pt;}
.y21d{bottom:196.874667pt;}
.y8f{bottom:197.012000pt;}
.y90{bottom:197.449333pt;}
.y3e{bottom:197.533333pt;}
.y205{bottom:199.290667pt;}
.y1a3{bottom:201.573333pt;}
.y60{bottom:202.281333pt;}
.yb4{bottom:203.410667pt;}
.y104{bottom:204.837333pt;}
.y123{bottom:204.990667pt;}
.y243{bottom:206.205333pt;}
.y174{bottom:207.697333pt;}
.y1de{bottom:209.754667pt;}
.y291{bottom:213.408000pt;}
.y26f{bottom:213.478667pt;}
.yec{bottom:213.906667pt;}
.y143{bottom:214.414667pt;}
.y21e{bottom:214.940000pt;}
.y3d{bottom:215.598667pt;}
.y204{bottom:217.356000pt;}
.y1a2{bottom:219.638667pt;}
.y13{bottom:220.150667pt;}
.y5f{bottom:220.346667pt;}
.y8e{bottom:221.190667pt;}
.yb3{bottom:221.476000pt;}
.y1c7{bottom:222.772000pt;}
.y103{bottom:222.902667pt;}
.y122{bottom:223.056000pt;}
.y242{bottom:224.270667pt;}
.y173{bottom:225.762667pt;}
.y2ae{bottom:226.426667pt;}
.y1dd{bottom:227.820000pt;}
.y290{bottom:231.473333pt;}
.yeb{bottom:231.973333pt;}
.y142{bottom:232.480000pt;}
.y21c{bottom:233.537333pt;}
.y3c{bottom:233.665333pt;}
.y203{bottom:235.421333pt;}
.y1a1{bottom:237.704000pt;}
.y5e{bottom:238.412000pt;}
.y8d{bottom:239.256000pt;}
.y12{bottom:240.522667pt;}
.y102{bottom:240.968000pt;}
.y121{bottom:241.121333pt;}
.y241{bottom:242.336000pt;}
.y172{bottom:243.828000pt;}
.y2ad{bottom:244.492000pt;}
.y1dc{bottom:245.885333pt;}
.y28f{bottom:249.540000pt;}
.yd3{bottom:249.649333pt;}
.yea{bottom:250.038667pt;}
.y141{bottom:250.545333pt;}
.y21b{bottom:251.602667pt;}
.y3b{bottom:251.730667pt;}
.yb2{bottom:253.485333pt;}
.y202{bottom:253.486667pt;}
.y1a0{bottom:255.770667pt;}
.y5d{bottom:256.477333pt;}
.y8c{bottom:257.322667pt;}
.y101{bottom:259.033333pt;}
.y120{bottom:259.188000pt;}
.y240{bottom:260.401333pt;}
.y1c6{bottom:261.192000pt;}
.y171{bottom:261.893333pt;}
.y2ac{bottom:262.557333pt;}
.y1db{bottom:263.950667pt;}
.y28e{bottom:267.605333pt;}
.yd2{bottom:267.714667pt;}
.y140{bottom:268.610667pt;}
.y218{bottom:269.668000pt;}
.y3a{bottom:269.796000pt;}
.y201{bottom:271.552000pt;}
.y19f{bottom:273.836000pt;}
.y5c{bottom:274.542667pt;}
.y8b{bottom:275.388000pt;}
.y100{bottom:277.098667pt;}
.y11f{bottom:277.253333pt;}
.y26e{bottom:278.010667pt;}
.y23f{bottom:278.468000pt;}
.y1c5{bottom:279.257333pt;}
.y170{bottom:279.960000pt;}
.y11{bottom:281.796000pt;}
.y1da{bottom:282.017333pt;}
.yb1{bottom:285.496000pt;}
.y28d{bottom:285.670667pt;}
.yd1{bottom:285.780000pt;}
.ye9{bottom:286.636000pt;}
.y13f{bottom:286.676000pt;}
.y21a{bottom:287.733333pt;}
.y39{bottom:287.861333pt;}
.y200{bottom:289.618667pt;}
.y63{bottom:290.606667pt;}
.y19e{bottom:291.901333pt;}
.y2ab{bottom:292.578667pt;}
.y5b{bottom:292.609333pt;}
.y8a{bottom:293.453333pt;}
.yff{bottom:295.165333pt;}
.y11e{bottom:295.318667pt;}
.y26d{bottom:296.076000pt;}
.y23e{bottom:296.533333pt;}
.y1c4{bottom:297.322667pt;}
.y16f{bottom:298.025333pt;}
.y1d9{bottom:300.082667pt;}
.yb0{bottom:303.561333pt;}
.y28c{bottom:303.736000pt;}
.y13e{bottom:304.742667pt;}
.y219{bottom:305.798667pt;}
.y38{bottom:305.926667pt;}
.y10{bottom:306.177333pt;}
.y1ff{bottom:307.684000pt;}
.y19d{bottom:309.966667pt;}
.y2aa{bottom:310.644000pt;}
.y5a{bottom:310.674667pt;}
.y89{bottom:311.518667pt;}
.yfe{bottom:313.230667pt;}
.y11d{bottom:313.384000pt;}
.y26c{bottom:314.142667pt;}
.y23d{bottom:314.598667pt;}
.y1c3{bottom:315.388000pt;}
.y16e{bottom:316.090667pt;}
.yd0{bottom:318.457333pt;}
.yaf{bottom:321.626667pt;}
.y28b{bottom:321.801333pt;}
.y13d{bottom:322.808000pt;}
.y268{bottom:323.174667pt;}
.y37{bottom:323.993333pt;}
.y217{bottom:324.396000pt;}
.y1fe{bottom:325.749333pt;}
.yf{bottom:326.549333pt;}
.y1d8{bottom:327.541333pt;}
.y19c{bottom:328.032000pt;}
.y2a9{bottom:328.709333pt;}
.y59{bottom:328.740000pt;}
.yfd{bottom:331.296000pt;}
.y11c{bottom:331.449333pt;}
.y26b{bottom:332.208000pt;}
.y23c{bottom:332.664000pt;}
.y1c2{bottom:333.453333pt;}
.y16d{bottom:334.156000pt;}
.yae{bottom:339.692000pt;}
.y28a{bottom:339.868000pt;}
.y13c{bottom:340.873333pt;}
.y87{bottom:342.020000pt;}
.y36{bottom:342.058667pt;}
.y1fd{bottom:343.814667pt;}
.y19b{bottom:346.098667pt;}
.y58{bottom:346.805333pt;}
.yfc{bottom:349.361333pt;}
.y11b{bottom:349.516000pt;}
.y26a{bottom:350.273333pt;}
.y23b{bottom:350.729333pt;}
.y1c1{bottom:351.520000pt;}
.y289{bottom:357.933333pt;}
.y2a8{bottom:358.729333pt;}
.y13b{bottom:358.938667pt;}
.y84{bottom:359.470667pt;}
.y35{bottom:360.124000pt;}
.y16b{bottom:360.453333pt;}
.y1fc{bottom:361.880000pt;}
.y88{bottom:363.146667pt;}
.y19a{bottom:364.164000pt;}
.y16c{bottom:364.754667pt;}
.yfb{bottom:367.426667pt;}
.y11a{bottom:367.581333pt;}
.ye{bottom:367.822667pt;}
.y269{bottom:368.338667pt;}
.y23a{bottom:368.796000pt;}
.ycf{bottom:369.200000pt;}
.y1c0{bottom:369.585333pt;}
.y216{bottom:372.217333pt;}
.y2ca{bottom:373.133333pt;}
.y86{bottom:373.288000pt;}
.y57{bottom:374.265333pt;}
.yad{bottom:374.410667pt;}
.y288{bottom:375.998667pt;}
.y2a7{bottom:376.796000pt;}
.y13a{bottom:377.004000pt;}
.y16a{bottom:377.042667pt;}
.y85{bottom:377.652000pt;}
.yac{bottom:378.006667pt;}
.y34{bottom:378.189333pt;}
.y1fb{bottom:379.946667pt;}
.y167{bottom:381.380000pt;}
.y199{bottom:382.229333pt;}
.yfa{bottom:385.492000pt;}
.y119{bottom:385.646667pt;}
.y239{bottom:386.861333pt;}
.y267{bottom:386.936000pt;}
.y168{bottom:387.052000pt;}
.yce{bottom:387.266667pt;}
.y1bf{bottom:387.650667pt;}
.y215{bottom:390.282667pt;}
.y2c9{bottom:391.200000pt;}
.y169{bottom:391.353333pt;}
.yd{bottom:392.205333pt;}
.y287{bottom:394.064000pt;}
.y2a6{bottom:394.861333pt;}
.y139{bottom:395.070667pt;}
.y1fa{bottom:398.012000pt;}
.y1d7{bottom:400.156000pt;}
.y198{bottom:400.294667pt;}
.y83{bottom:402.358667pt;}
.yf9{bottom:403.558667pt;}
.y118{bottom:403.712000pt;}
.y238{bottom:404.926667pt;}
.y266{bottom:405.001333pt;}
.ycd{bottom:405.332000pt;}
.y33{bottom:405.649333pt;}
.y1be{bottom:405.716000pt;}
.yab{bottom:410.016000pt;}
.yc{bottom:410.801333pt;}
.y286{bottom:412.129333pt;}
.y138{bottom:413.136000pt;}
.y56{bottom:413.216000pt;}
.y1f9{bottom:416.077333pt;}
.y1d6{bottom:418.221333pt;}
.y82{bottom:420.425333pt;}
.y2c8{bottom:421.220000pt;}
.yf8{bottom:421.624000pt;}
.y117{bottom:421.777333pt;}
.y166{bottom:422.844000pt;}
.y237{bottom:422.992000pt;}
.y265{bottom:423.066667pt;}
.ycc{bottom:423.397333pt;}
.y1bd{bottom:423.781333pt;}
.y2a5{bottom:424.881333pt;}
.y197{bottom:427.754667pt;}
.y285{bottom:430.196000pt;}
.yb{bottom:431.173333pt;}
.y137{bottom:431.201333pt;}
.y55{bottom:431.281333pt;}
.yaa{bottom:432.066667pt;}
.y261{bottom:432.100000pt;}
.y1f8{bottom:434.142667pt;}
.y1d5{bottom:436.286667pt;}
.y81{bottom:438.490667pt;}
.y2c7{bottom:439.285333pt;}
.yf7{bottom:439.689333pt;}
.y116{bottom:439.844000pt;}
.y165{bottom:440.909333pt;}
.y236{bottom:441.057333pt;}
.y264{bottom:441.132000pt;}
.y1bc{bottom:441.848000pt;}
.y2a4{bottom:442.948000pt;}
.y32{bottom:444.600000pt;}
.y284{bottom:448.261333pt;}
.y136{bottom:449.266667pt;}
.y54{bottom:449.346667pt;}
.ya9{bottom:451.860000pt;}
.y1f7{bottom:452.208000pt;}
.y53{bottom:452.861333pt;}
.y1d4{bottom:454.353333pt;}
.y196{bottom:455.213333pt;}
.yc9{bottom:456.074667pt;}
.y80{bottom:456.556000pt;}
.y2c6{bottom:457.352000pt;}
.ycb{bottom:457.640000pt;}
.y235{bottom:459.124000pt;}
.y263{bottom:459.198667pt;}
.y1bb{bottom:459.913333pt;}
.y2a3{bottom:461.013333pt;}
.ya8{bottom:461.837333pt;}
.y31{bottom:462.665333pt;}
.y283{bottom:466.326667pt;}
.y115{bottom:467.302667pt;}
.y135{bottom:467.332000pt;}
.y52{bottom:467.412000pt;}
.yca{bottom:467.617333pt;}
.y1f6{bottom:470.274667pt;}
.y1d3{bottom:472.418667pt;}
.ya{bottom:472.446667pt;}
.y7f{bottom:474.621333pt;}
.y262{bottom:477.264000pt;}
.y1ba{bottom:477.978667pt;}
.yf6{bottom:478.108000pt;}
.y164{bottom:478.214667pt;}
.y30{bottom:480.730667pt;}
.y282{bottom:484.392000pt;}
.y134{bottom:485.397333pt;}
.y51{bottom:485.477333pt;}
.y161{bottom:485.686667pt;}
.y234{bottom:486.582667pt;}
.y2c5{bottom:487.372000pt;}
.y195{bottom:488.214667pt;}
.y1f5{bottom:488.340000pt;}
.y1d2{bottom:490.484000pt;}
.y2a2{bottom:491.033333pt;}
.y7e{bottom:492.686667pt;}
.y15c{bottom:495.664000pt;}
.y260{bottom:495.860000pt;}
.y1b9{bottom:496.044000pt;}
.y9{bottom:496.829333pt;}
.y2f{bottom:498.796000pt;}
.y15f{bottom:499.682667pt;}
.y281{bottom:502.457333pt;}
.y133{bottom:503.464000pt;}
.y50{bottom:503.544000pt;}
.y2c4{bottom:505.437333pt;}
.y160{bottom:505.504000pt;}
.y114{bottom:506.253333pt;}
.y1f4{bottom:506.405333pt;}
.y15e{bottom:508.409333pt;}
.yc8{bottom:508.434667pt;}
.y1d1{bottom:509.081333pt;}
.y2a1{bottom:509.100000pt;}
.y163{bottom:509.482667pt;}
.y7d{bottom:510.753333pt;}
.y162{bottom:513.845333pt;}
.y25f{bottom:513.926667pt;}
.y1b8{bottom:514.109333pt;}
.ya7{bottom:514.389333pt;}
.y8{bottom:515.425333pt;}
.y2e{bottom:516.861333pt;}
.y15d{bottom:517.137333pt;}
.ye8{bottom:518.965333pt;}
.y280{bottom:520.522667pt;}
.y132{bottom:521.529333pt;}
.y4f{bottom:521.609333pt;}
.y113{bottom:524.318667pt;}
.y1f3{bottom:524.470667pt;}
.yf5{bottom:524.706667pt;}
.y233{bottom:525.533333pt;}
.yc7{bottom:526.500000pt;}
.y7c{bottom:528.818667pt;}
.y25e{bottom:531.992000pt;}
.ya6{bottom:532.456000pt;}
.y194{bottom:534.044000pt;}
.y2d{bottom:534.926667pt;}
.y2c3{bottom:535.458667pt;}
.y7{bottom:535.797333pt;}
.ye7{bottom:537.030667pt;}
.y27f{bottom:538.589333pt;}
.y2a0{bottom:539.120000pt;}
.y131{bottom:539.594667pt;}
.y4e{bottom:539.674667pt;}
.y25a{bottom:541.024000pt;}
.y1b7{bottom:541.569333pt;}
.y112{bottom:542.384000pt;}
.y1f2{bottom:542.536000pt;}
.y232{bottom:543.598667pt;}
.yc6{bottom:544.565333pt;}
.y15b{bottom:545.840000pt;}
.y7b{bottom:546.884000pt;}
.y25d{bottom:550.057333pt;}
.ya5{bottom:550.521333pt;}
.y193{bottom:552.109333pt;}
.y2c{bottom:552.993333pt;}
.y2c2{bottom:553.524000pt;}
.ye6{bottom:555.096000pt;}
.y27e{bottom:556.654667pt;}
.y1d0{bottom:556.901333pt;}
.y29f{bottom:557.185333pt;}
.y130{bottom:557.660000pt;}
.y4d{bottom:557.740000pt;}
.y111{bottom:560.450667pt;}
.y1f1{bottom:560.602667pt;}
.y231{bottom:561.664000pt;}
.yc5{bottom:562.630667pt;}
.y7a{bottom:564.949333pt;}
.y25c{bottom:568.122667pt;}
.ya4{bottom:568.586667pt;}
.y192{bottom:570.176000pt;}
.y2b{bottom:571.058667pt;}
.y2c1{bottom:571.589333pt;}
.ye5{bottom:573.162667pt;}
.y27d{bottom:574.720000pt;}
.y1cf{bottom:574.966667pt;}
.y29e{bottom:575.252000pt;}
.y12f{bottom:575.725333pt;}
.y4c{bottom:575.805333pt;}
.y6{bottom:577.070667pt;}
.y110{bottom:578.516000pt;}
.y1f0{bottom:578.668000pt;}
.y15a{bottom:579.077333pt;}
.y230{bottom:579.730667pt;}
.yc4{bottom:580.696000pt;}
.y25b{bottom:586.188000pt;}
.y157{bottom:586.549333pt;}
.ya3{bottom:586.652000pt;}
.y191{bottom:588.241333pt;}
.y2a{bottom:589.124000pt;}
.y214{bottom:590.572000pt;}
.ye4{bottom:591.228000pt;}
.y72{bottom:591.734667pt;}
.y27c{bottom:592.785333pt;}
.y12e{bottom:593.792000pt;}
.y49{bottom:593.870667pt;}
.y4b{bottom:595.437333pt;}
.y156{bottom:596.526667pt;}
.y10f{bottom:596.581333pt;}
.y1ef{bottom:596.733333pt;}
.y22f{bottom:597.796000pt;}
.yc3{bottom:598.761333pt;}
.y76{bottom:599.729333pt;}
.y5{bottom:601.452000pt;}
.y2c0{bottom:601.610667pt;}
.y1b6{bottom:604.640000pt;}
.ya2{bottom:604.717333pt;}
.y259{bottom:604.785333pt;}
.y29d{bottom:605.272000pt;}
.y190{bottom:606.306667pt;}
.y4a{bottom:607.064000pt;}
.y29{bottom:607.189333pt;}
.y75{bottom:608.456000pt;}
.y212{bottom:608.637333pt;}
.y6f{bottom:609.184000pt;}
.ye3{bottom:609.293333pt;}
.y78{bottom:609.620000pt;}
.y159{bottom:610.345333pt;}
.y27b{bottom:610.850667pt;}
.y12d{bottom:611.857333pt;}
.y10e{bottom:614.646667pt;}
.y158{bottom:614.709333pt;}
.y1ee{bottom:614.798667pt;}
.y22e{bottom:615.861333pt;}
.yc2{bottom:616.828000pt;}
.y74{bottom:617.184000pt;}
.y77{bottom:619.024000pt;}
.y2bf{bottom:619.676000pt;}
.y4{bottom:620.049333pt;}
.y48{bottom:621.121333pt;}
.ya1{bottom:622.784000pt;}
.y258{bottom:622.850667pt;}
.y71{bottom:623.001333pt;}
.y1b5{bottom:623.236000pt;}
.y29c{bottom:623.337333pt;}
.y18f{bottom:624.372000pt;}
.y28{bottom:625.254667pt;}
.y73{bottom:625.910667pt;}
.y213{bottom:626.702667pt;}
.ye2{bottom:627.358667pt;}
.y70{bottom:627.365333pt;}
.y27a{bottom:628.917333pt;}
.y12c{bottom:629.922667pt;}
.y79{bottom:630.432000pt;}
.y10d{bottom:632.712000pt;}
.y1ed{bottom:632.864000pt;}
.y22d{bottom:633.926667pt;}
.yc1{bottom:634.893333pt;}
.y155{bottom:640.133333pt;}
.y3{bottom:640.421333pt;}
.ya0{bottom:640.849333pt;}
.y257{bottom:640.916000pt;}
.y18e{bottom:642.437333pt;}
.y27{bottom:643.321333pt;}
.y211{bottom:645.300000pt;}
.ye1{bottom:645.424000pt;}
.y279{bottom:646.982667pt;}
.y47{bottom:647.412000pt;}
.y12b{bottom:647.988000pt;}
.y2be{bottom:649.697333pt;}
.y253{bottom:649.949333pt;}
.y10c{bottom:650.778667pt;}
.y22c{bottom:651.992000pt;}
.yc0{bottom:652.958667pt;}
.y6e{bottom:653.272000pt;}
.y29b{bottom:653.358667pt;}
.y46{bottom:656.421333pt;}
.y256{bottom:658.982667pt;}
.y1ec{bottom:660.324000pt;}
.y18d{bottom:660.504000pt;}
.y26{bottom:661.386667pt;}
.y20f{bottom:663.365333pt;}
.ye0{bottom:663.490667pt;}
.y278{bottom:665.048000pt;}
.y2bd{bottom:667.762667pt;}
.y10b{bottom:668.844000pt;}
.y22b{bottom:670.058667pt;}
.ybf{bottom:671.024000pt;}
.y1b4{bottom:671.057333pt;}
.y6d{bottom:671.337333pt;}
.y29a{bottom:671.424000pt;}
.y9f{bottom:672.858667pt;}
.y12a{bottom:675.448000pt;}
.y255{bottom:677.048000pt;}
.y18c{bottom:678.569333pt;}
.y25{bottom:679.452000pt;}
.y210{bottom:681.430667pt;}
.ydf{bottom:681.556000pt;}
.y277{bottom:683.113333pt;}
.y2bc{bottom:685.828000pt;}
.y10a{bottom:686.909333pt;}
.y22a{bottom:688.124000pt;}
.ybe{bottom:689.089333pt;}
.y6c{bottom:689.402667pt;}
.y9e{bottom:694.909333pt;}
.y254{bottom:695.113333pt;}
.y18b{bottom:696.634667pt;}
.y24{bottom:697.517333pt;}
.y20e{bottom:700.028000pt;}
.y276{bottom:701.178667pt;}
.y299{bottom:701.445333pt;}
.y154{bottom:702.672000pt;}
.yf4{bottom:704.449333pt;}
.y229{bottom:706.189333pt;}
.yde{bottom:709.014667pt;}
.y252{bottom:713.710667pt;}
.y18a{bottom:714.700000pt;}
.y23{bottom:715.582667pt;}
.y2bb{bottom:715.849333pt;}
.y6b{bottom:716.862667pt;}
.y20c{bottom:718.093333pt;}
.y275{bottom:719.245333pt;}
.y298{bottom:719.510667pt;}
.y153{bottom:720.737333pt;}
.y1b3{bottom:721.534667pt;}
.ybd{bottom:721.560000pt;}
.y129{bottom:722.046667pt;}
.y1eb{bottom:723.394667pt;}
.y228{bottom:724.254667pt;}
.y9d{bottom:726.920000pt;}
.y189{bottom:728.692000pt;}
.y1b0{bottom:730.566667pt;}
.y251{bottom:731.776000pt;}
.y188{bottom:732.765333pt;}
.y109{bottom:733.508000pt;}
.y22{bottom:733.649333pt;}
.y2ba{bottom:733.914667pt;}
.y20d{bottom:736.158667pt;}
.y274{bottom:737.310667pt;}
.y297{bottom:737.576000pt;}
.y152{bottom:738.802667pt;}
.y1b2{bottom:739.600000pt;}
.y1ea{bottom:741.460000pt;}
.ydd{bottom:742.016000pt;}
.y227{bottom:742.320000pt;}
.y9c{bottom:744.985333pt;}
.ybc{bottom:745.469333pt;}
.y250{bottom:749.841333pt;}
.y187{bottom:750.832000pt;}
.y21{bottom:751.714667pt;}
.y20b{bottom:754.756000pt;}
.y6a{bottom:755.376000pt;}
.y1b1{bottom:757.665333pt;}
.y24c{bottom:758.873333pt;}
.y1e9{bottom:759.525333pt;}
.y226{bottom:760.386667pt;}
.y2b9{bottom:763.934667pt;}
.y296{bottom:767.597333pt;}
.y24f{bottom:767.906667pt;}
.y186{bottom:768.897333pt;}
.y20{bottom:769.780000pt;}
.y151{bottom:770.684000pt;}
.y9b{bottom:772.445333pt;}
.y69{bottom:773.441333pt;}
.y1af{bottom:776.262667pt;}
.y1e8{bottom:777.590667pt;}
.y225{bottom:778.452000pt;}
.y2b8{bottom:782.001333pt;}
.ydc{bottom:784.249333pt;}
.y295{bottom:785.662667pt;}
.y24e{bottom:785.972000pt;}
.y185{bottom:786.962667pt;}
.ybb{bottom:787.704000pt;}
.y1f{bottom:787.845333pt;}
.y150{bottom:788.749333pt;}
.yba{bottom:791.298667pt;}
.y68{bottom:791.506667pt;}
.y1ad{bottom:794.328000pt;}
.y1e7{bottom:795.656000pt;}
.y224{bottom:796.517333pt;}
.y20a{bottom:802.577333pt;}
.y24d{bottom:804.037333pt;}
.y2{bottom:804.284000pt;}
.y1e{bottom:805.910667pt;}
.y14f{bottom:806.814667pt;}
.y67{bottom:809.573333pt;}
.y9a{bottom:811.290667pt;}
.y2b7{bottom:812.021333pt;}
.y1ae{bottom:812.393333pt;}
.y1e6{bottom:813.721333pt;}
.y223{bottom:814.582667pt;}
.y294{bottom:815.682667pt;}
.ydb{bottom:819.902667pt;}
.y209{bottom:820.642667pt;}
.y17c{bottom:820.849333pt;}
.y1{bottom:822.349333pt;}
.y24b{bottom:822.634667pt;}
.y1d{bottom:823.977333pt;}
.y14e{bottom:824.880000pt;}
.y66{bottom:827.638667pt;}
.y179{bottom:828.321333pt;}
.y2b6{bottom:830.086667pt;}
.y1ac{bottom:830.990667pt;}
.y1e5{bottom:832.318667pt;}
.y180{bottom:832.626667pt;}
.y222{bottom:832.648000pt;}
.y293{bottom:833.749333pt;}
.y178{bottom:838.300000pt;}
.y184{bottom:839.865333pt;}
.y99{bottom:840.381333pt;}
.y17f{bottom:841.936000pt;}
.y1c{bottom:842.042667pt;}
.y14d{bottom:842.945333pt;}
.y183{bottom:844.208000pt;}
.y65{bottom:845.704000pt;}
.y2b5{bottom:848.153333pt;}
.y97{bottom:850.358667pt;}
.y17e{bottom:850.662667pt;}
.y221{bottom:850.713333pt;}
.y17b{bottom:852.117333pt;}
.y181{bottom:854.465333pt;}
.yda{bottom:856.033333pt;}
.y17a{bottom:856.481333pt;}
.y1b{bottom:860.108000pt;}
.y98{bottom:860.198667pt;}
.y14c{bottom:861.542667pt;}
.y64{bottom:863.769333pt;}
.y182{bottom:864.305333pt;}
.y220{bottom:868.780000pt;}
.y24a{bottom:870.456000pt;}
.y17d{bottom:876.264000pt;}
.y1a{bottom:878.173333pt;}
.y14b{bottom:879.608000pt;}
.y1ab{bottom:880.140000pt;}
.y249{bottom:888.521333pt;}
.y19{bottom:896.238667pt;}
.y14a{bottom:897.673333pt;}
.y1aa{bottom:898.205333pt;}
.y18{bottom:963.685333pt;}
.y17{bottom:979.685333pt;}
.y16{bottom:995.685333pt;}
.h12{height:2.909093pt;}
.h36{height:9.539067pt;}
.h2e{height:21.200555pt;}
.h3a{height:21.551150pt;}
.h3{height:28.692000pt;}
.h16{height:28.692360pt;}
.h11{height:31.880400pt;}
.hf{height:37.375067pt;}
.h7{height:37.973333pt;}
.h2f{height:39.850400pt;}
.h6{height:43.636000pt;}
.h8{height:43.636400pt;}
.h30{height:43.684335pt;}
.he{height:44.484484pt;}
.h9{height:44.632747pt;}
.h33{height:45.497693pt;}
.h4{height:47.820000pt;}
.h28{height:48.691067pt;}
.h3b{height:48.729693pt;}
.h2d{height:49.084404pt;}
.h24{height:49.801693pt;}
.h19{height:49.807027pt;}
.h3e{height:51.105738pt;}
.h5{height:51.828000pt;}
.h1a{height:52.713693pt;}
.h22{height:52.719027pt;}
.ha{height:52.989733pt;}
.hb{height:52.995067pt;}
.h1{height:53.558400pt;}
.h10{height:53.559147pt;}
.h2{height:55.016000pt;}
.h25{height:55.901733pt;}
.h20{height:55.907067pt;}
.h26{height:58.015067pt;}
.h2c{height:58.020400pt;}
.h18{height:58.505733pt;}
.h39{height:58.991067pt;}
.h3d{height:59.929733pt;}
.h2a{height:59.935067pt;}
.h23{height:67.379067pt;}
.h2b{height:69.288400pt;}
.h29{height:69.293733pt;}
.h38{height:76.191067pt;}
.h35{height:76.196400pt;}
.hd{height:79.673733pt;}
.h14{height:81.572400pt;}
.h1d{height:81.577733pt;}
.h1b{height:82.996400pt;}
.h1c{height:83.321733pt;}
.h1f{height:83.545733pt;}
.hc{height:84.946427pt;}
.h37{height:88.359760pt;}
.h27{height:89.492360pt;}
.h21{height:95.811067pt;}
.h1e{height:97.865733pt;}
.h34{height:98.584400pt;}
.h15{height:102.983760pt;}
.h13{height:104.727760pt;}
.h31{height:113.433733pt;}
.h32{height:121.383760pt;}
.h17{height:125.300360pt;}
.h3c{height:148.503760pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:69.818667pt;}
.x12{left:114.897333pt;}
.x47{left:123.725333pt;}
.x49{left:125.493333pt;}
.x4a{left:131.480000pt;}
.x48{left:133.614667pt;}
.x11{left:137.480000pt;}
.x71{left:143.418667pt;}
.x40{left:147.176000pt;}
.x44{left:152.696000pt;}
.x3c{left:154.160000pt;}
.x61{left:157.089333pt;}
.x1{left:160.702667pt;}
.x24{left:176.830667pt;}
.x73{left:196.214667pt;}
.x4c{left:198.766667pt;}
.x3a{left:201.564000pt;}
.x17{left:204.241333pt;}
.x6d{left:206.598667pt;}
.x5{left:207.693333pt;}
.x4{left:208.624000pt;}
.x36{left:215.673333pt;}
.x6{left:217.718667pt;}
.x70{left:221.054667pt;}
.x7{left:223.357333pt;}
.x2a{left:227.097333pt;}
.x13{left:231.156000pt;}
.x46{left:243.366667pt;}
.x3b{left:255.212000pt;}
.x39{left:259.481333pt;}
.x3f{left:262.877333pt;}
.x45{left:264.906667pt;}
.xe{left:266.044000pt;}
.x37{left:267.713333pt;}
.x3d{left:268.946667pt;}
.x8{left:276.668000pt;}
.xc{left:277.700000pt;}
.x19{left:278.862667pt;}
.x18{left:281.650667pt;}
.xa{left:283.888000pt;}
.x14{left:286.706667pt;}
.x9{left:287.865333pt;}
.x4d{left:291.712000pt;}
.x6e{left:294.825333pt;}
.x51{left:302.978667pt;}
.xd{left:308.140000pt;}
.x2b{left:311.078667pt;}
.x5d{left:313.396000pt;}
.x3e{left:314.664000pt;}
.x38{left:316.480000pt;}
.x27{left:323.066667pt;}
.x52{left:324.101333pt;}
.x26{left:325.856000pt;}
.x6f{left:327.226667pt;}
.x1a{left:328.904000pt;}
.x25{left:331.313333pt;}
.x41{left:332.252000pt;}
.x3{left:334.217333pt;}
.x72{left:335.192000pt;}
.x1c{left:338.578667pt;}
.x35{left:342.474667pt;}
.x62{left:344.032000pt;}
.xb{left:345.080000pt;}
.x6c{left:348.902667pt;}
.x1b{left:350.026667pt;}
.x2{left:350.969333pt;}
.x29{left:352.078667pt;}
.x28{left:354.533333pt;}
.x64{left:356.780000pt;}
.x65{left:358.149333pt;}
.x63{left:363.860000pt;}
.x5b{left:366.749333pt;}
.x2c{left:369.362667pt;}
.x4e{left:374.866667pt;}
.x42{left:379.541333pt;}
.x4f{left:382.901333pt;}
.x4b{left:391.089333pt;}
.x1d{left:392.061333pt;}
.x56{left:393.120000pt;}
.xf{left:394.725333pt;}
.x54{left:396.020000pt;}
.x55{left:397.389333pt;}
.x15{left:398.548000pt;}
.x2d{left:400.358667pt;}
.x53{left:403.100000pt;}
.x58{left:405.140000pt;}
.x59{left:406.509333pt;}
.x43{left:407.700000pt;}
.x57{left:412.220000pt;}
.x16{left:421.882667pt;}
.x66{left:424.765333pt;}
.x5a{left:426.150667pt;}
.x1e{left:431.264000pt;}
.x67{left:435.141333pt;}
.x1f{left:439.345333pt;}
.x2e{left:445.530667pt;}
.x5e{left:446.824000pt;}
.x20{left:448.886667pt;}
.x68{left:453.268000pt;}
.x50{left:458.316000pt;}
.x5c{left:469.133333pt;}
.x22{left:474.621333pt;}
.x23{left:475.990667pt;}
.x21{left:480.080000pt;}
.x69{left:496.069333pt;}
.x2f{left:497.101333pt;}
.x5f{left:500.824000pt;}
.x6a{left:511.221333pt;}
.x60{left:523.070667pt;}
.x30{left:548.874667pt;}
.x31{left:592.500000pt;}
.x32{left:608.370667pt;}
.x34{left:627.318667pt;}
.x33{left:635.441333pt;}
.x6b{left:639.453333pt;}
}




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