
    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_3ec20af7a627b6681825144d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_3e2a227711d95168002854fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936000;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_abe484e535bb7a69171c51a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.974000;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_36de77fd108e744ea8a1e122.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_4fd9f7dcd9073e7fdea4d7b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.974000;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_c76d60cbda7fd7d6ae55ba23.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946000;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_d45e1a06df4c95440096e363.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942000;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_a5ebde597bfb5e3487f3482b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.729000;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_15f244b6e7158a7d5125cf42.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.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:ffa;src:url('chunks/assets/font_7f95b85c8c9685e58ecbaae2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.974000;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_277839eb16d1e132c5a37bc5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.882077;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_9bbd5614ba4ac0724f9c1a5d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.259000;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_8425bdbc26a1f77c4f53868f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910562;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_b19ef047cc82d062342e4b40.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.974000;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_4b308be02e517ed514c0c36c.woff2')format("woff");}.fff{font-family:fff;line-height:0.649000;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_c9adadb15258f0c64a181d83.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.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:ff11;src:url('chunks/assets/font_83aa21b7b9c57cf16e5e616a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.882077;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_53bb724887dbadb99b59557f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.729000;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_7b19f0696f883953ca521f18.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_6cedcb57ab30d10773ad9e2b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.752000;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_7b19f0696f883953ca521f18.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_037bea4632c8f4ec5821b86d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.764000;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_8b5a77163cf8479477e2112a.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.010254;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;}
.ff18{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff19;src:url('chunks/assets/font_feb548ddbc3fd884826fbed6.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.010254;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;}
.m28{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2a{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);}
.v2{vertical-align:-14.223268px;}
.v1{vertical-align:-7.853159px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.825138px;}
.v3{vertical-align:28.991647px;}
.ls0{letter-spacing:0.000000px;}
.ls59{letter-spacing:0.000691px;}
.ls35{letter-spacing:0.003643px;}
.ls27{letter-spacing:0.456312px;}
.ls21{letter-spacing:0.462151px;}
.ls9{letter-spacing:1.193475px;}
.ls7{letter-spacing:1.199313px;}
.ls11{letter-spacing:1.328148px;}
.ls10{letter-spacing:1.718769px;}
.ls24{letter-spacing:2.024973px;}
.ls1c{letter-spacing:2.030812px;}
.ls26{letter-spacing:2.149559px;}
.ls28{letter-spacing:2.241008px;}
.lsc{letter-spacing:2.355196px;}
.lsd{letter-spacing:2.383358px;}
.lsf{letter-spacing:2.389197px;}
.ls17{letter-spacing:2.675049px;}
.ls18{letter-spacing:4.034130px;}
.ls20{letter-spacing:4.216735px;}
.ls1f{letter-spacing:4.935440px;}
.ls16{letter-spacing:5.584209px;}
.ls15{letter-spacing:6.018699px;}
.ls23{letter-spacing:6.024537px;}
.ls14{letter-spacing:6.544189px;}
.lse{letter-spacing:7.154841px;}
.ls2b{letter-spacing:8.249729px;}
.ls5{letter-spacing:8.722950px;}
.ls4{letter-spacing:8.727771px;}
.ls6{letter-spacing:10.178214px;}
.ls1{letter-spacing:10.193305px;}
.ls2{letter-spacing:10.194323px;}
.ls40{letter-spacing:10.329413px;}
.ls36{letter-spacing:10.470091px;}
.ls34{letter-spacing:11.633008px;}
.ls3f{letter-spacing:11.724222px;}
.ls32{letter-spacing:12.444598px;}
.ls43{letter-spacing:13.087090px;}
.ls39{letter-spacing:13.088349px;}
.ls33{letter-spacing:13.203845px;}
.ls47{letter-spacing:13.343143px;}
.ls42{letter-spacing:13.437396px;}
.ls1b{letter-spacing:13.452811px;}
.ls1a{letter-spacing:13.458649px;}
.ls12{letter-spacing:14.391481px;}
.ls3d{letter-spacing:14.540720px;}
.ls38{letter-spacing:14.546559px;}
.ls8{letter-spacing:14.657701px;}
.ls2c{letter-spacing:15.661971px;}
.ls3b{letter-spacing:15.690960px;}
.ls13{letter-spacing:15.753916px;}
.ls3{letter-spacing:15.758680px;}
.ls1e{letter-spacing:15.848607px;}
.lsb{letter-spacing:15.854446px;}
.ls19{letter-spacing:15.999393px;}
.ls3e{letter-spacing:16.111558px;}
.ls31{letter-spacing:16.116836px;}
.ls46{letter-spacing:16.123235px;}
.ls37{letter-spacing:17.156849px;}
.ls3c{letter-spacing:17.162687px;}
.ls25{letter-spacing:17.213611px;}
.ls3a{letter-spacing:17.215087px;}
.ls2f{letter-spacing:17.705544px;}
.ls4a{letter-spacing:17.869030px;}
.ls1d{letter-spacing:18.545636px;}
.ls29{letter-spacing:20.032387px;}
.lsa{letter-spacing:21.082751px;}
.ls22{letter-spacing:21.088590px;}
.ls2a{letter-spacing:21.486243px;}
.ls44{letter-spacing:23.013780px;}
.ls2e{letter-spacing:23.695927px;}
.ls45{letter-spacing:26.212647px;}
.ls2d{letter-spacing:27.368165px;}
.ls30{letter-spacing:28.466416px;}
.ls50{letter-spacing:47.558277px;}
.ls55{letter-spacing:47.662982px;}
.ls49{letter-spacing:48.191976px;}
.ls48{letter-spacing:48.231721px;}
.ls4b{letter-spacing:48.841348px;}
.ls52{letter-spacing:48.953662px;}
.ls4e{letter-spacing:54.126846px;}
.ls54{letter-spacing:54.250797px;}
.ls51{letter-spacing:55.458700px;}
.ls57{letter-spacing:55.576015px;}
.ls4d{letter-spacing:56.225573px;}
.ls53{letter-spacing:56.349360px;}
.ls4c{letter-spacing:56.975039px;}
.ls56{letter-spacing:57.100477px;}
.ls4f{letter-spacing:57.552653px;}
.ls58{letter-spacing:57.679362px;}
.ls41{letter-spacing:113.640356px;}
.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;}
}
.ws1{word-spacing:-81.947475px;}
.ws134{word-spacing:-65.992704px;}
.wsd6{word-spacing:-61.230673px;}
.ws138{word-spacing:-60.182477px;}
.ws68{word-spacing:-53.609305px;}
.ws136{word-spacing:-47.414323px;}
.ws2{word-spacing:-40.312934px;}
.ws0{word-spacing:-39.511672px;}
.ws135{word-spacing:-37.359750px;}
.ws137{word-spacing:-35.805584px;}
.ws6{word-spacing:-14.542357px;}
.ws26{word-spacing:-13.088209px;}
.wsd5{word-spacing:-12.998952px;}
.wsac{word-spacing:-11.621545px;}
.ws10a{word-spacing:-10.724217px;}
.wsfa{word-spacing:-10.700658px;}
.ws116{word-spacing:-10.179621px;}
.ws57{word-spacing:-4.135874px;}
.wsdf{word-spacing:-3.821757px;}
.ws2f{word-spacing:-3.769404px;}
.wse1{word-spacing:-3.717279px;}
.ws7a{word-spacing:-3.664699px;}
.ws4b{word-spacing:-3.612346px;}
.ws98{word-spacing:-3.455287px;}
.ws88{word-spacing:-3.350582px;}
.wsc8{word-spacing:-3.298229px;}
.ws96{word-spacing:-3.245876px;}
.wse5{word-spacing:-3.141170px;}
.ws3f{word-spacing:-3.088817px;}
.ws28{word-spacing:-3.071354px;}
.wsbf{word-spacing:-3.036465px;}
.ws34{word-spacing:-2.984112px;}
.ws84{word-spacing:-2.827053px;}
.ws30{word-spacing:-2.669995px;}
.ws56{word-spacing:-2.512936px;}
.ws11f{word-spacing:-2.483828px;}
.wsc1{word-spacing:-2.408231px;}
.ws7b{word-spacing:-2.355878px;}
.ws9e{word-spacing:-2.303525px;}
.ws97{word-spacing:-2.251172px;}
.wse9{word-spacing:-2.158080px;}
.ws39{word-spacing:-2.094113px;}
.ws4e{word-spacing:-1.989408px;}
.ws4f{word-spacing:-1.937055px;}
.ws51{word-spacing:-1.884702px;}
.ws44{word-spacing:-1.727644px;}
.ws90{word-spacing:-1.675291px;}
.ws123{word-spacing:-1.628739px;}
.ws4a{word-spacing:-1.518232px;}
.ws60{word-spacing:-1.465879px;}
.ws4c{word-spacing:-1.413527px;}
.ws46{word-spacing:-1.361174px;}
.ws2a{word-spacing:-1.339643px;}
.ws5e{word-spacing:-1.308821px;}
.ws22{word-spacing:-1.302991px;}
.ws59{word-spacing:-1.256468px;}
.ws92{word-spacing:-1.204115px;}
.ws50{word-spacing:-1.151762px;}
.ws20{word-spacing:-1.058681px;}
.ws9d{word-spacing:-0.994704px;}
.ws48{word-spacing:-0.942351px;}
.ws54{word-spacing:-0.889998px;}
.ws5b{word-spacing:-0.837645px;}
.ws99{word-spacing:-0.785293px;}
.ws45{word-spacing:-0.732940px;}
.wsea{word-spacing:-0.692214px;}
.ws35{word-spacing:-0.680587px;}
.ws12c{word-spacing:-0.651496px;}
.ws9{word-spacing:-0.628234px;}
.ws55{word-spacing:-0.523528px;}
.ws8{word-spacing:-0.471176px;}
.wsf2{word-spacing:-0.447903px;}
.ws38{word-spacing:-0.418823px;}
.ws12e{word-spacing:-0.407185px;}
.ws25{word-spacing:-0.366470px;}
.ws23{word-spacing:-0.366466px;}
.ws5f{word-spacing:-0.314117px;}
.wsb{word-spacing:-0.261764px;}
.ws12b{word-spacing:-0.244311px;}
.ws2d{word-spacing:-0.232678px;}
.ws3c{word-spacing:-0.209411px;}
.ws14{word-spacing:-0.157059px;}
.wse7{word-spacing:-0.122155px;}
.wsd{word-spacing:-0.104706px;}
.ws5{word-spacing:-0.100517px;}
.wse6{word-spacing:-0.081437px;}
.ws7{word-spacing:-0.063696px;}
.ws13{word-spacing:-0.052353px;}
.ws63{word-spacing:-0.042464px;}
.wsee{word-spacing:-0.040718px;}
.ws3{word-spacing:0.000000px;}
.ws119{word-spacing:0.040718px;}
.ws29{word-spacing:0.046536px;}
.wse{word-spacing:0.052353px;}
.ws21{word-spacing:0.081437px;}
.ws47{word-spacing:0.104706px;}
.wsf1{word-spacing:0.122155px;}
.wsa{word-spacing:0.157059px;}
.ws1f{word-spacing:0.162874px;}
.ws117{word-spacing:0.203592px;}
.ws15{word-spacing:0.209411px;}
.ws17{word-spacing:0.261764px;}
.ws18{word-spacing:0.314117px;}
.wsc9{word-spacing:0.366470px;}
.ws3e{word-spacing:0.418823px;}
.wsdd{word-spacing:0.523528px;}
.ws127{word-spacing:0.570059px;}
.ws11{word-spacing:0.575881px;}
.wsd1{word-spacing:0.628234px;}
.ws42{word-spacing:0.680587px;}
.ws65{word-spacing:0.732940px;}
.wsf{word-spacing:0.837645px;}
.ws130{word-spacing:0.855088px;}
.wsc7{word-spacing:0.889998px;}
.wsde{word-spacing:0.994704px;}
.ws87{word-spacing:1.047057px;}
.ws120{word-spacing:1.058681px;}
.ws40{word-spacing:1.099410px;}
.ws83{word-spacing:1.204115px;}
.wsd3{word-spacing:1.256468px;}
.wsc{word-spacing:1.308821px;}
.wsc6{word-spacing:1.413527px;}
.ws3a{word-spacing:1.465879px;}
.wscb{word-spacing:1.518232px;}
.ws31{word-spacing:1.622938px;}
.ws58{word-spacing:1.675291px;}
.ws32{word-spacing:1.727644px;}
.ws52{word-spacing:1.779996px;}
.wse0{word-spacing:1.832349px;}
.ws49{word-spacing:1.884702px;}
.ws7c{word-spacing:1.937055px;}
.ws5c{word-spacing:2.041761px;}
.ws5a{word-spacing:2.146466px;}
.ws11b{word-spacing:2.158080px;}
.ws16{word-spacing:2.198819px;}
.wsd0{word-spacing:2.251172px;}
.ws5d{word-spacing:2.303525px;}
.ws37{word-spacing:2.408231px;}
.ws91{word-spacing:2.460583px;}
.ws95{word-spacing:2.512936px;}
.wsc3{word-spacing:2.565289px;}
.ws94{word-spacing:2.617642px;}
.ws9f{word-spacing:2.669995px;}
.ws85{word-spacing:2.722348px;}
.ws12d{word-spacing:2.728138px;}
.wsbe{word-spacing:2.827053px;}
.ws64{word-spacing:2.879406px;}
.ws43{word-spacing:2.984112px;}
.ws124{word-spacing:3.053886px;}
.wsec{word-spacing:3.094605px;}
.ws3d{word-spacing:3.141170px;}
.ws33{word-spacing:3.245876px;}
.wsce{word-spacing:3.298229px;}
.ws61{word-spacing:3.402934px;}
.wsc5{word-spacing:3.455287px;}
.ws121{word-spacing:3.461071px;}
.wscc{word-spacing:3.559993px;}
.ws53{word-spacing:3.612346px;}
.ws86{word-spacing:3.664699px;}
.ws128{word-spacing:3.746101px;}
.ws36{word-spacing:3.769404px;}
.ws4d{word-spacing:3.874110px;}
.ws11d{word-spacing:3.908974px;}
.ws41{word-spacing:3.926463px;}
.wsc0{word-spacing:3.978816px;}
.wscd{word-spacing:4.031168px;}
.wscf{word-spacing:4.188227px;}
.wsd2{word-spacing:4.292933px;}
.wsef{word-spacing:4.385192px;}
.ws133{word-spacing:4.519752px;}
.wsf8{word-spacing:4.682626px;}
.ws12{word-spacing:4.711755px;}
.wsf4{word-spacing:4.764063px;}
.ws10{word-spacing:4.764108px;}
.wsc2{word-spacing:4.816461px;}
.ws93{word-spacing:4.868814px;}
.wsf5{word-spacing:4.967655px;}
.wsca{word-spacing:4.973520px;}
.wsa0{word-spacing:5.078225px;}
.wsc4{word-spacing:5.130578px;}
.ws8f{word-spacing:5.287637px;}
.ws12f{word-spacing:5.415558px;}
.ws3b{word-spacing:5.601754px;}
.wsd4{word-spacing:5.863518px;}
.ws125{word-spacing:6.514957px;}
.ws74{word-spacing:6.899464px;}
.ws69{word-spacing:7.080310px;}
.ws6b{word-spacing:7.959596px;}
.ws76{word-spacing:8.213190px;}
.ws1e{word-spacing:8.638218px;}
.ws1d{word-spacing:8.660471px;}
.ws82{word-spacing:9.371158px;}
.wseb{word-spacing:9.405970px;}
.wsf3{word-spacing:9.690999px;}
.ws8e{word-spacing:9.789981px;}
.ws12a{word-spacing:9.853873px;}
.wsf0{word-spacing:9.976029px;}
.wse8{word-spacing:10.016747px;}
.wsed{word-spacing:10.098184px;}
.ws1a{word-spacing:10.104098px;}
.ws24{word-spacing:10.138903px;}
.ws1b{word-spacing:10.156450px;}
.ws11a{word-spacing:10.179621px;}
.wsda{word-spacing:10.208803px;}
.ws2b{word-spacing:10.237845px;}
.ws118{word-spacing:10.261058px;}
.wsdc{word-spacing:10.261156px;}
.wsa9{word-spacing:10.419784px;}
.wsa8{word-spacing:10.936418px;}
.wsaa{word-spacing:10.942257px;}
.ws131{word-spacing:10.993991px;}
.ws6a{word-spacing:11.255399px;}
.ws2c{word-spacing:11.354701px;}
.wse4{word-spacing:11.412918px;}
.ws27{word-spacing:11.587379px;}
.ws126{word-spacing:11.650405px;}
.wse2{word-spacing:11.727035px;}
.wsa4{word-spacing:11.968453px;}
.ws11c{word-spacing:12.296982px;}
.ws89{word-spacing:12.983504px;}
.ws6e{word-spacing:13.032792px;}
.ws8a{word-spacing:13.034156px;}
.ws78{word-spacing:13.035856px;}
.ws8b{word-spacing:13.038631px;}
.ws122{word-spacing:13.559255px;}
.ws129{word-spacing:13.925722px;}
.ws7d{word-spacing:13.978207px;}
.wsa5{word-spacing:14.030560px;}
.wsa2{word-spacing:14.082913px;}
.ws7f{word-spacing:14.292324px;}
.ws132{word-spacing:14.658654px;}
.wsa6{word-spacing:14.815928px;}
.wsf7{word-spacing:14.821528px;}
.wsd9{word-spacing:15.025264px;}
.ws62{word-spacing:15.077617px;}
.ws7e{word-spacing:15.496440px;}
.ws11e{word-spacing:15.554461px;}
.ws1c{word-spacing:15.705851px;}
.ws19{word-spacing:15.860263px;}
.ws9c{word-spacing:15.915262px;}
.ws66{word-spacing:15.997768px;}
.ws79{word-spacing:15.998836px;}
.wse3{word-spacing:17.171731px;}
.wsf9{word-spacing:17.381142px;}
.ws80{word-spacing:17.538200px;}
.wsd8{word-spacing:17.904670px;}
.wsa7{word-spacing:18.114082px;}
.wsa3{word-spacing:19.684667px;}
.ws73{word-spacing:19.984170px;}
.ws8c{word-spacing:19.990009px;}
.ws9a{word-spacing:20.417606px;}
.wsa1{word-spacing:20.993488px;}
.ws81{word-spacing:21.202899px;}
.ws71{word-spacing:21.443865px;}
.wsf6{word-spacing:21.997087px;}
.wsdb{word-spacing:22.616426px;}
.ws4{word-spacing:25.028716px;}
.ws9b{word-spacing:32.720523px;}
.wsd7{word-spacing:35.193025px;}
.wsab{word-spacing:40.025968px;}
.wsae{word-spacing:40.027013px;}
.wsad{word-spacing:40.032836px;}
.ws101{word-spacing:43.410790px;}
.wsfc{word-spacing:43.413273px;}
.ws109{word-spacing:43.428671px;}
.ws106{word-spacing:43.433444px;}
.ws114{word-spacing:43.506364px;}
.ws113{word-spacing:43.524284px;}
.ws102{word-spacing:44.737871px;}
.wsfe{word-spacing:45.499198px;}
.wsfb{word-spacing:45.542001px;}
.ws10d{word-spacing:45.599370px;}
.ws10b{word-spacing:45.642267px;}
.ws108{word-spacing:46.269646px;}
.ws115{word-spacing:46.371514px;}
.ws107{word-spacing:47.510922px;}
.wsb7{word-spacing:51.604602px;}
.wsfd{word-spacing:54.102527px;}
.ws10f{word-spacing:54.221641px;}
.ws2e{word-spacing:63.632139px;}
.wsb4{word-spacing:67.832044px;}
.wsb8{word-spacing:74.005008px;}
.wsb2{word-spacing:82.467849px;}
.ws6c{word-spacing:91.388095px;}
.ws67{word-spacing:92.958727px;}
.ws77{word-spacing:94.524589px;}
.ws6d{word-spacing:94.529359px;}
.wsba{word-spacing:95.249192px;}
.wsb6{word-spacing:145.737188px;}
.wsb9{word-spacing:166.981371px;}
.ws72{word-spacing:169.914916px;}
.ws70{word-spacing:171.484479px;}
.ws75{word-spacing:171.485548px;}
.ws6f{word-spacing:173.055111px;}
.ws8d{word-spacing:173.056180px;}
.ws103{word-spacing:212.176819px;}
.ws110{word-spacing:212.639168px;}
.ws105{word-spacing:231.737622px;}
.ws112{word-spacing:232.243036px;}
.wsb3{word-spacing:266.740709px;}
.ws100{word-spacing:277.236821px;}
.ws10e{word-spacing:277.842407px;}
.ws104{word-spacing:296.797624px;}
.ws111{word-spacing:297.446275px;}
.wsff{word-spacing:299.023361px;}
.wsb5{word-spacing:318.364498px;}
.ws10c{word-spacing:389.502953px;}
.wsb1{word-spacing:424.957304px;}
.wsaf{word-spacing:471.443482px;}
.wsb0{word-spacing:588.357589px;}
.wsbb{word-spacing:945.899831px;}
.wsbd{word-spacing:995.554667px;}
.wsbc{word-spacing:1180.053124px;}
._1a{margin-left:-48.269596px;}
._2{margin-left:-4.523262px;}
._b{margin-left:-3.502413px;}
._0{margin-left:-2.479500px;}
._3{margin-left:-1.206203px;}
._5{width:1.337897px;}
._4{width:2.384947px;}
._c{width:3.765310px;}
._6{width:4.911585px;}
._10{width:8.690571px;}
._d{width:10.261847px;}
._7{width:12.250564px;}
._11{width:14.449383px;}
._13{width:15.592149px;}
._31{width:17.067481px;}
._12{width:18.166434px;}
._34{width:19.187968px;}
._1b{width:20.359242px;}
._2e{width:23.734530px;}
._32{width:25.513543px;}
._1{width:27.473050px;}
._2f{width:29.358027px;}
._1c{width:32.578441px;}
._33{width:34.936459px;}
._30{width:38.804715px;}
._e{width:54.290415px;}
._20{width:56.242659px;}
._1e{width:57.483935px;}
._2b{width:58.508146px;}
._9{width:63.695835px;}
._18{width:82.514335px;}
._24{width:85.224212px;}
._28{width:87.756181px;}
._15{width:88.909104px;}
._17{width:198.290700px;}
._16{width:213.324690px;}
._2a{width:225.866439px;}
._19{width:233.932442px;}
._f{width:307.417643px;}
._27{width:309.848256px;}
._29{width:311.817178px;}
._1d{width:340.291713px;}
._14{width:380.814389px;}
._25{width:399.391364px;}
._23{width:401.999271px;}
._22{width:409.963614px;}
._1f{width:452.766246px;}
._21{width:464.536970px;}
._2c{width:465.559704px;}
._26{width:479.432286px;}
._2d{width:480.487814px;}
._a{width:550.090175px;}
._8{width:1722.318321px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc3{color:rgb(50,50,50);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.993595px;}
.fs8{font-size:40.718484px;}
.fsa{font-size:42.463695px;}
.fsf{font-size:42.802632px;}
.fs10{font-size:42.896868px;}
.fsc{font-size:46.486178px;}
.fs9{font-size:46.535660px;}
.fsd{font-size:46.758819px;}
.fs7{font-size:52.352837px;}
.fse{font-size:54.551955px;}
.fs5{font-size:58.169430px;}
.fs0{font-size:59.775600px;}
.fs6{font-size:63.695835px;}
.fs4{font-size:69.803783px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:100.516933px;}
.fs1{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y221{bottom:4.977866px;}
.y1e9{bottom:9.293237px;}
.y1ec{bottom:10.277335px;}
.y1fa{bottom:11.514359px;}
.y1ee{bottom:16.774863px;}
.y1eb{bottom:32.039474px;}
.y1ed{bottom:38.537391px;}
.y1ea{bottom:41.128297px;}
.y1f1{bottom:48.259134px;}
.y1e4{bottom:51.542051px;}
.y8{bottom:53.380500px;}
.y1ef{bottom:63.222053px;}
.y1e8{bottom:66.154201px;}
.y1e7{bottom:70.683962px;}
.y1e5{bottom:82.870265px;}
.y222{bottom:83.415687px;}
.y1e6{bottom:87.419430px;}
.y1f0{bottom:101.876107px;}
.yfc{bottom:123.567561px;}
.y18f{bottom:123.650763px;}
.y1c8{bottom:123.824467px;}
.y122{bottom:124.157278px;}
.y94{bottom:124.221504px;}
.y242{bottom:124.472572px;}
.y146{bottom:124.514903px;}
.yc7{bottom:125.602376px;}
.y218{bottom:125.662223px;}
.y5d{bottom:126.081156px;}
.y39{bottom:128.153923px;}
.y2a2{bottom:130.069042px;}
.y171{bottom:130.959456px;}
.y241{bottom:136.106341px;}
.y219{bottom:137.490410px;}
.yfb{bottom:139.562899px;}
.y18e{bottom:139.647561px;}
.y38{bottom:139.787692px;}
.y1c7{bottom:139.821265px;}
.y121{bottom:140.154075px;}
.y93{bottom:140.218302px;}
.y145{bottom:140.510241px;}
.yc6{bottom:141.599173px;}
.y217{bottom:141.659021px;}
.y2a1{bottom:141.704271px;}
.y5c{bottom:142.077953px;}
.y170{bottom:146.956254px;}
.y240{bottom:147.740110px;}
.y37{bottom:151.422921px;}
.y2a0{bottom:153.338040px;}
.yfa{bottom:155.559696px;}
.y18d{bottom:155.644358px;}
.y1c6{bottom:155.818062px;}
.y120{bottom:156.150873px;}
.y92{bottom:156.215099px;}
.y144{bottom:156.507038px;}
.yc5{bottom:157.595971px;}
.y216{bottom:157.655818px;}
.y5b{bottom:158.074751px;}
.y23f{bottom:159.373879px;}
.y1f2{bottom:162.730430px;}
.y16f{bottom:162.953051px;}
.y1f7{bottom:163.987074px;}
.y36{bottom:164.220067px;}
.y29f{bottom:164.971810px;}
.y23e{bottom:171.007648px;}
.yf9{bottom:171.556494px;}
.y18c{bottom:171.641156px;}
.y1c5{bottom:171.813400px;}
.y11f{bottom:172.147670px;}
.y91{bottom:172.211897px;}
.y143{bottom:172.503836px;}
.yc4{bottom:173.592768px;}
.y215{bottom:173.652616px;}
.y5a{bottom:174.071548px;}
.y29e{bottom:176.605579px;}
.y35{bottom:177.017213px;}
.y16e{bottom:178.949849px;}
.y23d{bottom:182.642877px;}
.yf8{bottom:187.553291px;}
.y18b{bottom:187.637953px;}
.y1c4{bottom:187.810197px;}
.y11e{bottom:188.144468px;}
.y90{bottom:188.207235px;}
.y29d{bottom:188.239348px;}
.y142{bottom:188.500633px;}
.y34{bottom:188.650982px;}
.yc3{bottom:189.589566px;}
.y214{bottom:189.649413px;}
.y59{bottom:190.068346px;}
.y1f3{bottom:190.893072px;}
.y21a{bottom:191.876858px;}
.y23c{bottom:194.276646px;}
.y16d{bottom:194.945187px;}
.y29c{bottom:199.873117px;}
.y33{bottom:200.284751px;}
.yf7{bottom:203.550089px;}
.y18a{bottom:203.634751px;}
.y1c3{bottom:203.806995px;}
.y11d{bottom:204.139805px;}
.y8f{bottom:204.204032px;}
.y141{bottom:204.497431px;}
.yc2{bottom:205.586363px;}
.y213{bottom:205.646211px;}
.y23b{bottom:205.910415px;}
.y58{bottom:206.065143px;}
.y16c{bottom:210.941984px;}
.y29b{bottom:211.506886px;}
.y32{bottom:211.918520px;}
.y23a{bottom:217.544185px;}
.y1f4{bottom:219.045777px;}
.yf6{bottom:219.546886px;}
.y189{bottom:219.631548px;}
.y1c2{bottom:219.803792px;}
.y11c{bottom:220.136603px;}
.y8e{bottom:220.200830px;}
.yc1{bottom:221.583161px;}
.y212{bottom:221.643008px;}
.y57{bottom:222.061941px;}
.y29a{bottom:223.140655px;}
.y31{bottom:223.552289px;}
.y21b{bottom:223.692532px;}
.y16b{bottom:226.938782px;}
.y239{bottom:229.177954px;}
.y299{bottom:234.774424px;}
.y30{bottom:235.186058px;}
.yf5{bottom:235.543684px;}
.y188{bottom:235.628346px;}
.y1c1{bottom:235.800590px;}
.y11b{bottom:236.133400px;}
.y8d{bottom:236.197627px;}
.yc0{bottom:237.579958px;}
.y211{bottom:237.638346px;}
.y56{bottom:238.058738px;}
.y238{bottom:240.811723px;}
.y16a{bottom:242.935579px;}
.y21c{bottom:246.263306px;}
.y298{bottom:246.409653px;}
.y2f{bottom:246.821287px;}
.yf4{bottom:251.540481px;}
.y187{bottom:251.625143px;}
.y1c0{bottom:251.797388px;}
.y11a{bottom:252.130198px;}
.y8c{bottom:252.194425px;}
.y237{bottom:252.445492px;}
.y140{bottom:253.230808px;}
.ybf{bottom:253.576756px;}
.y210{bottom:253.635144px;}
.y55{bottom:254.054076px;}
.y1f5{bottom:256.267550px;}
.y297{bottom:258.043422px;}
.y169{bottom:258.932377px;}
.y21d{bottom:263.778478px;}
.y236{bottom:264.079261px;}
.yf3{bottom:267.537279px;}
.y186{bottom:267.621941px;}
.y1bf{bottom:267.794185px;}
.y119{bottom:268.126995px;}
.y8b{bottom:268.191222px;}
.y13f{bottom:269.227605px;}
.ybe{bottom:269.572094px;}
.y20f{bottom:269.631941px;}
.y296{bottom:269.677192px;}
.y54{bottom:270.050873px;}
.y168{bottom:274.929174px;}
.y235{bottom:275.713030px;}
.y21e{bottom:278.078981px;}
.y295{bottom:281.310961px;}
.yf2{bottom:283.534076px;}
.y185{bottom:283.617279px;}
.y1be{bottom:283.790983px;}
.y118{bottom:284.123793px;}
.y8a{bottom:284.188020px;}
.y1f6{bottom:284.420256px;}
.ybd{bottom:285.568891px;}
.y20e{bottom:285.628739px;}
.y53{bottom:286.047671px;}
.y234{bottom:287.348259px;}
.y21f{bottom:290.177728px;}
.y167{bottom:290.925972px;}
.y294{bottom:292.944730px;}
.y233{bottom:298.982028px;}
.yf1{bottom:299.529414px;}
.y184{bottom:299.614076px;}
.y1bd{bottom:299.787780px;}
.y117{bottom:300.120590px;}
.y89{bottom:300.184817px;}
.y220{bottom:300.649755px;}
.ybc{bottom:301.565689px;}
.y20d{bottom:301.625536px;}
.y52{bottom:302.044468px;}
.y293{bottom:304.578499px;}
.y166{bottom:306.922769px;}
.y232{bottom:310.615798px;}
.yf0{bottom:315.526212px;}
.y183{bottom:315.610874px;}
.y1bc{bottom:315.784578px;}
.y116{bottom:316.117388px;}
.y88{bottom:316.181615px;}
.y292{bottom:316.212268px;}
.ybb{bottom:317.562486px;}
.y2e{bottom:317.985798px;}
.y51{bottom:318.041266px;}
.y20c{bottom:321.621898px;}
.y231{bottom:322.249567px;}
.y165{bottom:322.919567px;}
.y1f8{bottom:324.749737px;}
.y291{bottom:327.846037px;}
.yef{bottom:331.523009px;}
.y182{bottom:331.607671px;}
.y1bb{bottom:331.779915px;}
.y115{bottom:332.114185px;}
.y87{bottom:332.178412px;}
.yba{bottom:333.559284px;}
.y230{bottom:333.883336px;}
.y2d{bottom:333.982595px;}
.y50{bottom:334.038063px;}
.y164{bottom:338.916364px;}
.y290{bottom:339.479806px;}
.yee{bottom:347.519807px;}
.y181{bottom:347.604469px;}
.y1ba{bottom:347.776713px;}
.y114{bottom:348.110983px;}
.y86{bottom:348.175210px;}
.y22f{bottom:349.516669px;}
.yb9{bottom:349.556081px;}
.y2c{bottom:349.979393px;}
.y4f{bottom:350.034861px;}
.y28f{bottom:351.115035px;}
.y1da{bottom:353.555645px;}
.y163{bottom:354.913162px;}
.y20b{bottom:356.714425px;}
.y28e{bottom:362.748804px;}
.y1e2{bottom:363.516604px;}
.y180{bottom:363.601266px;}
.y1b9{bottom:363.773510px;}
.y113{bottom:364.106321px;}
.y85{bottom:364.170547px;}
.yb8{bottom:365.552879px;}
.y2b{bottom:365.976190px;}
.y4e{bottom:366.031659px;}
.y162{bottom:370.908500px;}
.y20a{bottom:372.711223px;}
.y28d{bottom:374.382574px;}
.y1e1{bottom:379.513402px;}
.y17f{bottom:379.598064px;}
.y1b8{bottom:379.770308px;}
.y84{bottom:380.167345px;}
.yb7{bottom:381.549676px;}
.y4d{bottom:382.028456px;}
.y22e{bottom:382.229894px;}
.yed{bottom:382.680940px;}
.y112{bottom:384.102683px;}
.y2a{bottom:385.972552px;}
.y28c{bottom:386.016343px;}
.y161{bottom:386.905297px;}
.y1d9{bottom:388.529938px;}
.y209{bottom:388.708020px;}
.y1e0{bottom:395.510199px;}
.y17e{bottom:395.594861px;}
.y1b7{bottom:395.767105px;}
.y83{bottom:396.164142px;}
.yb6{bottom:397.546474px;}
.y28b{bottom:397.650112px;}
.y4c{bottom:398.025254px;}
.y22d{bottom:398.226691px;}
.yec{bottom:398.677737px;}
.y160{bottom:402.902095px;}
.y1d8{bottom:404.526735px;}
.y208{bottom:404.704818px;}
.y28a{bottom:409.283881px;}
.y1df{bottom:411.506997px;}
.y17d{bottom:411.591659px;}
.y1b6{bottom:411.763903px;}
.yb5{bottom:413.543271px;}
.y4b{bottom:414.020591px;}
.y22c{bottom:414.223489px;}
.yeb{bottom:414.674535px;}
.y82{bottom:416.160504px;}
.y111{bottom:416.185319px;}
.y1d7{bottom:420.523533px;}
.y207{bottom:420.701615px;}
.y289{bottom:420.917650px;}
.y15f{bottom:422.898456px;}
.y29{bottom:426.049938px;}
.y1de{bottom:427.503794px;}
.y17c{bottom:427.588456px;}
.y1b5{bottom:427.760700px;}
.yb4{bottom:429.538609px;}
.y4a{bottom:430.017389px;}
.y22b{bottom:430.220286px;}
.yea{bottom:430.671332px;}
.y110{bottom:432.182117px;}
.y288{bottom:432.551419px;}
.y1d6{bottom:436.520330px;}
.y206{bottom:436.698413px;}
.y28{bottom:442.046735px;}
.y1dd{bottom:443.500592px;}
.y17b{bottom:443.583794px;}
.y1b4{bottom:443.757498px;}
.y287{bottom:444.185188px;}
.yb3{bottom:445.535406px;}
.y15e{bottom:445.802531px;}
.y49{bottom:446.014186px;}
.y22a{bottom:446.217084px;}
.ye9{bottom:446.668130px;}
.y10f{bottom:448.178914px;}
.y81{bottom:448.371594px;}
.y1d5{bottom:452.515668px;}
.y205{bottom:452.695210px;}
.y286{bottom:455.820417px;}
.y27{bottom:458.043533px;}
.y1dc{bottom:459.497389px;}
.y17a{bottom:459.580592px;}
.y1b3{bottom:459.754295px;}
.yb2{bottom:461.532204px;}
.y48{bottom:462.010984px;}
.y229{bottom:462.213881px;}
.ye8{bottom:462.664927px;}
.y10e{bottom:464.175712px;}
.y80{bottom:464.368391px;}
.y285{bottom:467.454186px;}
.y1d4{bottom:468.512465px;}
.y204{bottom:468.692008px;}
.y26{bottom:474.038871px;}
.y1db{bottom:475.492727px;}
.y179{bottom:475.577389px;}
.y1b2{bottom:475.751093px;}
.yb1{bottom:477.529001px;}
.y47{bottom:478.007781px;}
.y228{bottom:478.210679px;}
.ye7{bottom:478.661725px;}
.y284{bottom:479.087956px;}
.y10d{bottom:480.172509px;}
.y7f{bottom:480.365189px;}
.y1d3{bottom:484.509263px;}
.y2be{bottom:484.519500px;}
.y203{bottom:484.688805px;}
.y25{bottom:490.035668px;}
.y283{bottom:490.721725px;}
.y15d{bottom:491.489524px;}
.y178{bottom:491.574187px;}
.y1b1{bottom:491.747890px;}
.yb0{bottom:493.525799px;}
.y46{bottom:494.004579px;}
.y227{bottom:494.207476px;}
.ye6{bottom:494.657063px;}
.y10c{bottom:496.169307px;}
.y7e{bottom:496.361986px;}
.y1d2{bottom:500.506060px;}
.y202{bottom:500.685603px;}
.y282{bottom:502.355494px;}
.y24{bottom:506.032466px;}
.y15c{bottom:507.486322px;}
.y177{bottom:507.570984px;}
.y1b0{bottom:507.743228px;}
.yaf{bottom:509.522596px;}
.y45{bottom:510.001376px;}
.y226{bottom:510.204274px;}
.ye5{bottom:510.653860px;}
.y10b{bottom:512.166104px;}
.y7d{bottom:512.358784px;}
.y281{bottom:513.989263px;}
.y1d1{bottom:516.502858px;}
.y201{bottom:516.682400px;}
.y2bd{bottom:520.384500px;}
.y23{bottom:522.029263px;}
.y15b{bottom:523.483119px;}
.y1af{bottom:523.740026px;}
.yae{bottom:525.519394px;}
.y44{bottom:525.998174px;}
.y225{bottom:526.201071px;}
.ye4{bottom:526.650658px;}
.y176{bottom:527.567346px;}
.y10a{bottom:528.162902px;}
.y7c{bottom:528.355581px;}
.y1d0{bottom:532.499655px;}
.y22{bottom:538.026061px;}
.y2bc{bottom:538.318500px;}
.y15a{bottom:539.479917px;}
.y1ae{bottom:539.736823px;}
.yad{bottom:541.516191px;}
.y43{bottom:541.994971px;}
.y224{bottom:542.196409px;}
.ye3{bottom:542.647455px;}
.y109{bottom:544.159699px;}
.y7b{bottom:544.352379px;}
.y1cf{bottom:548.496453px;}
.y21{bottom:554.022858px;}
.y159{bottom:555.476714px;}
.y1ad{bottom:555.733621px;}
.y2bb{bottom:556.251000px;}
.y280{bottom:557.138294px;}
.yac{bottom:557.512989px;}
.y261{bottom:557.576595px;}
.y42{bottom:557.991769px;}
.y223{bottom:558.193207px;}
.ye2{bottom:558.644253px;}
.y108{bottom:560.156497px;}
.y7a{bottom:560.347717px;}
.y1ce{bottom:564.493250px;}
.y175{bottom:569.397826px;}
.y20{bottom:570.019656px;}
.y27f{bottom:570.245750px;}
.y260{bottom:570.655256px;}
.y158{bottom:571.473512px;}
.y1ac{bottom:571.730418px;}
.yab{bottom:573.509786px;}
.y41{bottom:573.988566px;}
.y2ba{bottom:574.183500px;}
.y200{bottom:574.600179px;}
.ye1{bottom:574.641050px;}
.y107{bottom:576.153294px;}
.y79{bottom:576.344514px;}
.y1cd{bottom:580.490048px;}
.y13e{bottom:583.148152px;}
.y27e{bottom:583.353206px;}
.y25f{bottom:583.733918px;}
.y174{bottom:585.393163px;}
.y1f{bottom:586.016453px;}
.y157{bottom:587.470309px;}
.y1ab{bottom:587.727216px;}
.yaa{bottom:589.506584px;}
.y1ff{bottom:590.596976px;}
.ye0{bottom:590.637848px;}
.y2b9{bottom:592.116000px;}
.y106{bottom:592.148632px;}
.y78{bottom:592.341312px;}
.y40{bottom:593.983468px;}
.y27d{bottom:596.460662px;}
.y1cc{bottom:596.486845px;}
.y25e{bottom:596.812580px;}
.y13d{bottom:599.144950px;}
.y173{bottom:601.389961px;}
.y1e{bottom:602.013251px;}
.y156{bottom:603.467107px;}
.y1aa{bottom:603.724013px;}
.y1fe{bottom:606.593774px;}
.ydf{bottom:606.634645px;}
.y105{bottom:608.145429px;}
.y77{bottom:608.338109px;}
.ya9{bottom:609.501486px;}
.y27c{bottom:609.566922px;}
.y25d{bottom:609.890048px;}
.y2b8{bottom:610.048500px;}
.y1cb{bottom:612.482183px;}
.y13c{bottom:615.141748px;}
.y172{bottom:617.386758px;}
.y1d{bottom:618.010048px;}
.y155{bottom:619.463904px;}
.y1a9{bottom:619.720811px;}
.y1fd{bottom:622.590571px;}
.y27b{bottom:622.674377px;}
.y25c{bottom:622.968710px;}
.y104{bottom:624.142227px;}
.y76{bottom:624.334907px;}
.y2b7{bottom:627.981000px;}
.yde{bottom:628.080484px;}
.y1ca{bottom:628.478981px;}
.y13b{bottom:631.138545px;}
.y1c{bottom:634.005386px;}
.y154{bottom:635.459242px;}
.y1a8{bottom:635.717608px;}
.y27a{bottom:635.781833px;}
.y25b{bottom:636.047372px;}
.y1fc{bottom:638.587369px;}
.y75{bottom:640.331704px;}
.y272{bottom:642.336159px;}
.y253{bottom:642.587299px;}
.y3f{bottom:643.448153px;}
.ydd{bottom:644.077281px;}
.ya8{bottom:644.475778px;}
.y2b6{bottom:645.915000px;}
.y13a{bottom:647.135343px;}
.y279{bottom:648.889289px;}
.y25a{bottom:649.126033px;}
.y1b{bottom:650.002184px;}
.y153{bottom:651.456040px;}
.y1a7{bottom:651.714406px;}
.y1fb{bottom:654.584166px;}
.y74{bottom:656.328502px;}
.y3e{bottom:657.991094px;}
.ydc{bottom:660.074079px;}
.ya7{bottom:660.472576px;}
.y278{bottom:661.996745px;}
.y259{bottom:662.204695px;}
.y139{bottom:663.132140px;}
.y1a{bottom:665.998981px;}
.y152{bottom:667.452837px;}
.y103{bottom:670.020441px;}
.y73{bottom:672.325299px;}
.y3d{bottom:672.532576px;}
.y277{bottom:675.104201px;}
.y258{bottom:675.283357px;}
.ydb{bottom:676.070877px;}
.ya6{bottom:676.469373px;}
.y138{bottom:679.128938px;}
.y2b5{bottom:681.780000px;}
.y19{bottom:681.995779px;}
.y151{bottom:683.449635px;}
.y102{bottom:686.015779px;}
.y3c{bottom:687.075517px;}
.y276{bottom:688.211657px;}
.y72{bottom:688.322097px;}
.y257{bottom:688.362018px;}
.yda{bottom:692.067674px;}
.ya5{bottom:692.466171px;}
.y1a6{bottom:694.388292px;}
.y137{bottom:695.125735px;}
.y18{bottom:697.992576px;}
.y150{bottom:699.446432px;}
.y275{bottom:701.319113px;}
.y256{bottom:701.440680px;}
.y3b{bottom:701.618458px;}
.y101{bottom:702.012576px;}
.y71{bottom:704.318894px;}
.yd9{bottom:708.064472px;}
.ya4{bottom:708.462968px;}
.y1a5{bottom:708.592488px;}
.y136{bottom:711.122533px;}
.y17{bottom:713.989374px;}
.y274{bottom:714.426569px;}
.y255{bottom:714.519342px;}
.y14f{bottom:715.443230px;}
.y3a{bottom:716.159940px;}
.y100{bottom:718.009374px;}
.y70{bottom:720.314232px;}
.y1a4{bottom:722.796685px;}
.yd8{bottom:724.061269px;}
.ya3{bottom:724.459766px;}
.y135{bottom:727.119330px;}
.y273{bottom:727.534025px;}
.y254{bottom:727.598003px;}
.y16{bottom:729.986171px;}
.y14e{bottom:731.440027px;}
.yff{bottom:734.006171px;}
.y2b4{bottom:735.577500px;}
.y6f{bottom:736.311029px;}
.y1e3{bottom:736.612640px;}
.y1a3{bottom:737.000881px;}
.yd7{bottom:740.058067px;}
.ya2{bottom:740.456563px;}
.y134{bottom:743.114668px;}
.y271{bottom:743.500028px;}
.y252{bottom:743.528933px;}
.y1c9{bottom:744.454668px;}
.y15{bottom:745.982969px;}
.y14d{bottom:747.436825px;}
.yfe{bottom:750.002969px;}
.y1a2{bottom:751.205078px;}
.y6e{bottom:752.307827px;}
.y2b3{bottom:753.511500px;}
.ya1{bottom:756.453361px;}
.y270{bottom:756.607484px;}
.y251{bottom:756.607595px;}
.y133{bottom:759.111465px;}
.y14{bottom:761.979766px;}
.y14c{bottom:763.433622px;}
.y1a1{bottom:765.409274px;}
.yfd{bottom:765.999766px;}
.y6d{bottom:768.304624px;}
.y250{bottom:769.686256px;}
.y26f{bottom:769.714940px;}
.y2b2{bottom:771.444000px;}
.ya0{bottom:772.450158px;}
.yd6{bottom:772.521683px;}
.y132{bottom:775.108263px;}
.y14b{bottom:779.430420px;}
.y1a0{bottom:779.613470px;}
.y13{bottom:781.974668px;}
.y24f{bottom:782.764918px;}
.y26e{bottom:782.822396px;}
.y6c{bottom:784.301422px;}
.y9f{bottom:788.445496px;}
.yd5{bottom:788.518481px;}
.y2b1{bottom:789.376500px;}
.y131{bottom:791.105060px;}
.y19f{bottom:793.816371px;}
.y14a{bottom:795.427217px;}
.y24e{bottom:795.843580px;}
.y26d{bottom:795.929852px;}
.y6b{bottom:804.297784px;}
.y9e{bottom:804.442294px;}
.yd4{bottom:804.515278px;}
.y130{bottom:807.101858px;}
.y2b0{bottom:807.309000px;}
.y19e{bottom:808.020567px;}
.y24d{bottom:808.922241px;}
.y26c{bottom:809.037308px;}
.y12{bottom:811.146673px;}
.y149{bottom:811.422555px;}
.y9d{bottom:820.439091px;}
.yd3{bottom:820.512076px;}
.y24c{bottom:822.000903px;}
.y26b{bottom:822.144764px;}
.y19d{bottom:822.224763px;}
.y12f{bottom:823.098655px;}
.y2af{bottom:825.241500px;}
.y6a{bottom:827.201858px;}
.y148{bottom:827.419353px;}
.y244{bottom:828.539637px;}
.y11{bottom:828.598786px;}
.y263{bottom:828.697894px;}
.y24b{bottom:835.079565px;}
.y26a{bottom:835.252220px;}
.y19c{bottom:836.428960px;}
.y9c{bottom:836.435889px;}
.yd2{bottom:836.508873px;}
.y12e{bottom:839.095453px;}
.y7{bottom:839.412000px;}
.y2ae{bottom:843.175500px;}
.y147{bottom:843.416150px;}
.y10{bottom:846.049440px;}
.y24a{bottom:848.158226px;}
.y269{bottom:848.359676px;}
.y19b{bottom:850.633156px;}
.y9b{bottom:852.432686px;}
.yd1{bottom:852.505671px;}
.y12d{bottom:855.092250px;}
.y69{bottom:859.412948px;}
.y6{bottom:860.332500px;}
.y2ad{bottom:861.108000px;}
.y249{bottom:861.236888px;}
.y268{bottom:861.467132px;}
.yf{bottom:863.500094px;}
.y19a{bottom:864.837352px;}
.y9a{bottom:868.429484px;}
.yd0{bottom:868.502468px;}
.y12c{bottom:871.089048px;}
.y248{bottom:874.314356px;}
.y267{bottom:874.573392px;}
.y68{bottom:875.409745px;}
.y1f9{bottom:876.889096px;}
.y2ac{bottom:879.040500px;}
.y199{bottom:879.041549px;}
.y99{bottom:884.426281px;}
.ycf{bottom:884.499266px;}
.y12b{bottom:887.085845px;}
.y247{bottom:887.393018px;}
.y266{bottom:887.680848px;}
.y67{bottom:891.406543px;}
.y197{bottom:896.344772px;}
.ye{bottom:896.370965px;}
.y2ab{bottom:896.973000px;}
.y98{bottom:900.423079px;}
.y246{bottom:900.471680px;}
.yce{bottom:900.496063px;}
.y265{bottom:900.788303px;}
.y196{bottom:903.301056px;}
.y66{bottom:907.403340px;}
.y12a{bottom:908.531684px;}
.y198{bottom:910.548968px;}
.y245{bottom:913.550342px;}
.yd{bottom:913.823079px;}
.y264{bottom:913.895759px;}
.y97{bottom:916.419876px;}
.ycd{bottom:916.491401px;}
.y65{bottom:923.400138px;}
.y129{bottom:924.528482px;}
.y243{bottom:929.482464px;}
.y262{bottom:929.862959px;}
.yc{bottom:931.273732px;}
.y96{bottom:932.416674px;}
.ycc{bottom:932.488199px;}
.y2aa{bottom:932.838000px;}
.y5{bottom:935.967000px;}
.y64{bottom:939.396935px;}
.y128{bottom:940.525279px;}
.y195{bottom:942.741096px;}
.ycb{bottom:948.484996px;}
.yb{bottom:948.724386px;}
.y95{bottom:952.411576px;}
.y63{bottom:955.393733px;}
.y127{bottom:956.522077px;}
.y194{bottom:958.737894px;}
.yca{bottom:964.481794px;}
.y2a9{bottom:968.704500px;}
.y62{bottom:971.389070px;}
.y126{bottom:972.518874px;}
.y4{bottom:973.327500px;}
.y193{bottom:974.734691px;}
.yc9{bottom:980.478591px;}
.y2a8{bottom:986.637000px;}
.y61{bottom:987.385868px;}
.ya{bottom:987.410683px;}
.y125{bottom:988.515672px;}
.y192{bottom:990.731489px;}
.yc8{bottom:1000.474953px;}
.y60{bottom:1003.382665px;}
.y124{bottom:1004.512469px;}
.y191{bottom:1006.728286px;}
.y3{bottom:1010.686500px;}
.y9{bottom:1016.495106px;}
.y5f{bottom:1019.379463px;}
.y123{bottom:1020.509267px;}
.y2a7{bottom:1022.502000px;}
.y190{bottom:1022.725084px;}
.y2a6{bottom:1040.434500px;}
.y2a5{bottom:1058.368500px;}
.y5e{bottom:1059.080248px;}
.y2a4{bottom:1076.301000px;}
.y2{bottom:1098.486000px;}
.y2a3{bottom:1112.166000px;}
.y1{bottom:1116.418500px;}
.h11{height:25.705243px;}
.h16{height:26.595241px;}
.hd{height:28.828687px;}
.hc{height:29.968804px;}
.h1d{height:31.502737px;}
.h1e{height:31.572095px;}
.he{height:33.505676px;}
.h14{height:34.213827px;}
.hf{height:34.250246px;}
.h18{height:34.648285px;}
.h1b{height:34.999889px;}
.h10{height:36.908750px;}
.h12{height:37.304668px;}
.hb{height:37.694043px;}
.ha{height:38.531688px;}
.h19{height:39.768375px;}
.h1c{height:40.422999px;}
.h8{height:42.812700px;}
.h9{height:45.861001px;}
.h2{height:46.028379px;}
.h7{height:51.375584px;}
.h4{height:55.234425px;}
.h1f{height:56.786820px;}
.h15{height:62.038965px;}
.h13{height:63.205475px;}
.h6{height:70.160819px;}
.h3{height:95.463171px;}
.h1a{height:168.331747px;}
.h17{height:350.691140px;}
.h5{height:1156.078440px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:280.552912px;}
.w2{width:350.691140px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x78{left:11.222019px;}
.x7a{left:16.414294px;}
.x77{left:22.580710px;}
.x83{left:25.834150px;}
.x76{left:29.088057px;}
.x75{left:35.585507px;}
.x79{left:63.874397px;}
.xf{left:78.320172px;}
.x69{left:79.977063px;}
.x38{left:82.156250px;}
.x87{left:83.837340px;}
.x34{left:86.890041px;}
.x10{left:92.863113px;}
.x6a{left:98.534469px;}
.x37{left:100.570302px;}
.x31{left:102.429954px;}
.x1{left:115.143000px;}
.x6b{left:117.081939px;}
.x45{left:121.001653px;}
.x41{left:122.519736px;}
.x2{left:125.192438px;}
.x46{left:133.174050px;}
.x15{left:134.258603px;}
.x6c{left:135.639345px;}
.x16{left:139.469715px;}
.x93{left:145.374000px;}
.x3d{left:153.495924px;}
.x32{left:154.545445px;}
.x55{left:156.770020px;}
.x7e{left:161.296534px;}
.x56{left:162.856948px;}
.x42{left:165.055249px;}
.x57{left:170.422547px;}
.x1d{left:172.225270px;}
.x43{left:175.512503px;}
.x5{left:177.992525px;}
.x1e{left:184.397667px;}
.x6d{left:191.302017px;}
.xd{left:194.025815px;}
.x1b{left:196.358408px;}
.x7b{left:197.558277px;}
.x1c{left:202.443876px;}
.x4{left:205.100521px;}
.x5a{left:207.352831px;}
.x6e{left:209.859423px;}
.x7{left:211.788844px;}
.x5b{left:213.439759px;}
.x5c{left:220.987842px;}
.x5d{left:227.073310px;}
.x6f{left:228.416829px;}
.xc{left:230.741524px;}
.x85{left:234.212974px;}
.x6{left:241.636687px;}
.x70{left:246.974235px;}
.x35{left:249.146818px;}
.x3f{left:253.969650px;}
.x7f{left:260.523681px;}
.x71{left:265.521705px;}
.x80{left:267.696622px;}
.x88{left:273.412894px;}
.x36{left:276.697101px;}
.x40{left:281.521393px;}
.x72{left:284.079111px;}
.x89{left:292.445515px;}
.x73{left:302.636517px;}
.x8a{left:311.476943px;}
.x58{left:316.231481px;}
.x74{left:321.193924px;}
.x59{left:322.318409px;}
.x8b{left:330.509564px;}
.x81{left:338.094792px;}
.x82{left:345.267734px;}
.x8c{left:349.542186px;}
.x7c{left:353.084400px;}
.x7d{left:360.255882px;}
.x13{left:367.808344px;}
.x3e{left:369.158562px;}
.x44{left:372.248736px;}
.x14{left:374.901002px;}
.x3{left:378.534183px;}
.x19{left:388.931590px;}
.x11{left:390.909477px;}
.x12{left:396.486971px;}
.x33{left:399.032679px;}
.x1a{left:401.103987px;}
.x8d{left:405.407249px;}
.x54{left:421.834575px;}
.x51{left:462.116318px;}
.x17{left:463.908824px;}
.x1f{left:468.474750px;}
.x4b{left:470.366101px;}
.x18{left:478.451765px;}
.x20{left:480.647146px;}
.x91{left:482.139439px;}
.x23{left:483.819064px;}
.x86{left:486.440676px;}
.x24{left:489.905992px;}
.x92{left:504.029452px;}
.xe{left:516.012637px;}
.x84{left:520.019406px;}
.x9{left:538.953203px;}
.x67{left:546.404946px;}
.x52{left:554.827386px;}
.x27{left:559.641461px;}
.x53{left:560.912855px;}
.x8{left:568.012811px;}
.x68{left:569.735252px;}
.xb{left:571.200785px;}
.x28{left:583.435949px;}
.x47{left:588.152223px;}
.x63{left:593.537038px;}
.x29{left:595.170437px;}
.x5e{left:597.654838px;}
.x48{left:598.898498px;}
.xa{left:601.050088px;}
.x2a{left:607.341374px;}
.x4e{left:610.654881px;}
.x64{left:616.309740px;}
.x4f{left:622.825818px;}
.x21{left:649.758651px;}
.x22{left:655.844119px;}
.x8e{left:657.155491px;}
.x65{left:670.832268px;}
.x39{left:676.819936px;}
.x66{left:680.641418px;}
.x2d{left:685.002987px;}
.x3a{left:688.425971px;}
.x2e{left:691.089915px;}
.x4d{left:695.991571px;}
.x3b{left:713.950198px;}
.x4c{left:719.251255px;}
.x3c{left:725.557693px;}
.x8f{left:733.452391px;}
.x50{left:735.469022px;}
.x2f{left:737.128695px;}
.x49{left:745.281092px;}
.x30{left:749.301092px;}
.x90{left:752.525719px;}
.x4a{left:756.025907px;}
.x2b{left:761.958107px;}
.x5f{left:766.859763px;}
.x25{left:771.662159px;}
.x60{left:772.946691px;}
.x26{left:777.749088px;}
.x61{left:780.570678px;}
.x2c{left:789.013554px;}
.x62{left:808.388086px;}
@media print{
.v2{vertical-align:-12.642905pt;}
.v1{vertical-align:-6.980586pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.733456pt;}
.v3{vertical-align:25.770353pt;}
.ls0{letter-spacing:0.000000pt;}
.ls59{letter-spacing:0.000614pt;}
.ls35{letter-spacing:0.003239pt;}
.ls27{letter-spacing:0.405611pt;}
.ls21{letter-spacing:0.410801pt;}
.ls9{letter-spacing:1.060866pt;}
.ls7{letter-spacing:1.066056pt;}
.ls11{letter-spacing:1.180576pt;}
.ls10{letter-spacing:1.527794pt;}
.ls24{letter-spacing:1.799976pt;}
.ls1c{letter-spacing:1.805166pt;}
.ls26{letter-spacing:1.910719pt;}
.ls28{letter-spacing:1.992007pt;}
.lsc{letter-spacing:2.093507pt;}
.lsd{letter-spacing:2.118540pt;}
.lsf{letter-spacing:2.123730pt;}
.ls17{letter-spacing:2.377821pt;}
.ls18{letter-spacing:3.585893pt;}
.ls20{letter-spacing:3.748209pt;}
.ls1f{letter-spacing:4.387058pt;}
.ls16{letter-spacing:4.963742pt;}
.ls15{letter-spacing:5.349954pt;}
.ls23{letter-spacing:5.355144pt;}
.ls14{letter-spacing:5.817057pt;}
.lse{letter-spacing:6.359859pt;}
.ls2b{letter-spacing:7.333092pt;}
.ls5{letter-spacing:7.753734pt;}
.ls4{letter-spacing:7.758019pt;}
.ls6{letter-spacing:9.047301pt;}
.ls1{letter-spacing:9.060715pt;}
.ls2{letter-spacing:9.061620pt;}
.ls40{letter-spacing:9.181700pt;}
.ls36{letter-spacing:9.306748pt;}
.ls34{letter-spacing:10.340451pt;}
.ls3f{letter-spacing:10.421531pt;}
.ls32{letter-spacing:11.061865pt;}
.ls43{letter-spacing:11.632969pt;}
.ls39{letter-spacing:11.634088pt;}
.ls33{letter-spacing:11.736751pt;}
.ls47{letter-spacing:11.860571pt;}
.ls42{letter-spacing:11.944352pt;}
.ls1b{letter-spacing:11.958054pt;}
.ls1a{letter-spacing:11.963244pt;}
.ls12{letter-spacing:12.792428pt;}
.ls3d{letter-spacing:12.925085pt;}
.ls38{letter-spacing:12.930275pt;}
.ls8{letter-spacing:13.029068pt;}
.ls2c{letter-spacing:13.921752pt;}
.ls3b{letter-spacing:13.947520pt;}
.ls13{letter-spacing:14.003481pt;}
.ls3{letter-spacing:14.007716pt;}
.ls1e{letter-spacing:14.087651pt;}
.lsb{letter-spacing:14.092841pt;}
.ls19{letter-spacing:14.221683pt;}
.ls3e{letter-spacing:14.321384pt;}
.ls31{letter-spacing:14.326076pt;}
.ls46{letter-spacing:14.331765pt;}
.ls37{letter-spacing:15.250532pt;}
.ls3c{letter-spacing:15.255722pt;}
.ls25{letter-spacing:15.300987pt;}
.ls3a{letter-spacing:15.302300pt;}
.ls2f{letter-spacing:15.738262pt;}
.ls4a{letter-spacing:15.883583pt;}
.ls1d{letter-spacing:16.485010pt;}
.ls29{letter-spacing:17.806566pt;}
.lsa{letter-spacing:18.740223pt;}
.ls22{letter-spacing:18.745413pt;}
.ls2a{letter-spacing:19.098883pt;}
.ls44{letter-spacing:20.456694pt;}
.ls2e{letter-spacing:21.063046pt;}
.ls45{letter-spacing:23.300131pt;}
.ls2d{letter-spacing:24.327258pt;}
.ls30{letter-spacing:25.303481pt;}
.ls50{letter-spacing:42.274024pt;}
.ls55{letter-spacing:42.367095pt;}
.ls49{letter-spacing:42.837312pt;}
.ls48{letter-spacing:42.872641pt;}
.ls4b{letter-spacing:43.414531pt;}
.ls52{letter-spacing:43.514366pt;}
.ls4e{letter-spacing:48.112752pt;}
.ls54{letter-spacing:48.222931pt;}
.ls51{letter-spacing:49.296622pt;}
.ls57{letter-spacing:49.400902pt;}
.ls4d{letter-spacing:49.978287pt;}
.ls53{letter-spacing:50.088320pt;}
.ls4c{letter-spacing:50.644479pt;}
.ls56{letter-spacing:50.755979pt;}
.ls4f{letter-spacing:51.157914pt;}
.ls58{letter-spacing:51.270544pt;}
.ls41{letter-spacing:101.013650pt;}
.ws1{word-spacing:-72.842200pt;}
.ws134{word-spacing:-58.660181pt;}
.wsd6{word-spacing:-54.427265pt;}
.ws138{word-spacing:-53.495535pt;}
.ws68{word-spacing:-47.652716pt;}
.ws136{word-spacing:-42.146065pt;}
.ws2{word-spacing:-35.833719pt;}
.ws0{word-spacing:-35.121486pt;}
.ws135{word-spacing:-33.208667pt;}
.ws137{word-spacing:-31.827186pt;}
.ws6{word-spacing:-12.926540pt;}
.ws26{word-spacing:-11.633964pt;}
.wsd5{word-spacing:-11.554624pt;}
.wsac{word-spacing:-10.330262pt;}
.ws10a{word-spacing:-9.532637pt;}
.wsfa{word-spacing:-9.511696pt;}
.ws116{word-spacing:-9.048552pt;}
.ws57{word-spacing:-3.676333pt;}
.wsdf{word-spacing:-3.397117pt;}
.ws2f{word-spacing:-3.350582pt;}
.wse1{word-spacing:-3.304248pt;}
.ws7a{word-spacing:-3.257510pt;}
.ws4b{word-spacing:-3.210974pt;}
.ws98{word-spacing:-3.071366pt;}
.ws88{word-spacing:-2.978295pt;}
.wsc8{word-spacing:-2.931759pt;}
.ws96{word-spacing:-2.885223pt;}
.wse5{word-spacing:-2.792151pt;}
.ws3f{word-spacing:-2.745615pt;}
.ws28{word-spacing:-2.730092pt;}
.wsbf{word-spacing:-2.699080pt;}
.ws34{word-spacing:-2.652544pt;}
.ws84{word-spacing:-2.512936pt;}
.ws30{word-spacing:-2.373329pt;}
.ws56{word-spacing:-2.233721pt;}
.ws11f{word-spacing:-2.207847pt;}
.wsc1{word-spacing:-2.140649pt;}
.ws7b{word-spacing:-2.094113pt;}
.ws9e{word-spacing:-2.047578pt;}
.ws97{word-spacing:-2.001042pt;}
.wse9{word-spacing:-1.918293pt;}
.ws39{word-spacing:-1.861434pt;}
.ws4e{word-spacing:-1.768362pt;}
.ws4f{word-spacing:-1.721827pt;}
.ws51{word-spacing:-1.675291pt;}
.ws44{word-spacing:-1.535683pt;}
.ws90{word-spacing:-1.489147pt;}
.ws123{word-spacing:-1.447768pt;}
.ws4a{word-spacing:-1.349540pt;}
.ws60{word-spacing:-1.303004pt;}
.ws4c{word-spacing:-1.256468pt;}
.ws46{word-spacing:-1.209932pt;}
.ws2a{word-spacing:-1.190794pt;}
.ws5e{word-spacing:-1.163396pt;}
.ws22{word-spacing:-1.158215pt;}
.ws59{word-spacing:-1.116861pt;}
.ws92{word-spacing:-1.070325pt;}
.ws50{word-spacing:-1.023789pt;}
.ws20{word-spacing:-0.941049pt;}
.ws9d{word-spacing:-0.884181pt;}
.ws48{word-spacing:-0.837645pt;}
.ws54{word-spacing:-0.791110pt;}
.ws5b{word-spacing:-0.744574pt;}
.ws99{word-spacing:-0.698038pt;}
.ws45{word-spacing:-0.651502pt;}
.wsea{word-spacing:-0.615302pt;}
.ws35{word-spacing:-0.604966pt;}
.ws12c{word-spacing:-0.579107pt;}
.ws9{word-spacing:-0.558430pt;}
.ws55{word-spacing:-0.465359pt;}
.ws8{word-spacing:-0.418823pt;}
.wsf2{word-spacing:-0.398136pt;}
.ws38{word-spacing:-0.372287pt;}
.ws12e{word-spacing:-0.361942pt;}
.ws25{word-spacing:-0.325751pt;}
.ws23{word-spacing:-0.325748pt;}
.ws5f{word-spacing:-0.279215pt;}
.wsb{word-spacing:-0.232679pt;}
.ws12b{word-spacing:-0.217165pt;}
.ws2d{word-spacing:-0.206825pt;}
.ws3c{word-spacing:-0.186143pt;}
.ws14{word-spacing:-0.139608pt;}
.wse7{word-spacing:-0.108583pt;}
.wsd{word-spacing:-0.093072pt;}
.ws5{word-spacing:-0.089348pt;}
.wse6{word-spacing:-0.072388pt;}
.ws7{word-spacing:-0.056619pt;}
.ws13{word-spacing:-0.046536pt;}
.ws63{word-spacing:-0.037746pt;}
.wsee{word-spacing:-0.036194pt;}
.ws3{word-spacing:0.000000pt;}
.ws119{word-spacing:0.036194pt;}
.ws29{word-spacing:0.041365pt;}
.wse{word-spacing:0.046536pt;}
.ws21{word-spacing:0.072388pt;}
.ws47{word-spacing:0.093072pt;}
.wsf1{word-spacing:0.108583pt;}
.wsa{word-spacing:0.139608pt;}
.ws1f{word-spacing:0.144777pt;}
.ws117{word-spacing:0.180971pt;}
.ws15{word-spacing:0.186143pt;}
.ws17{word-spacing:0.232679pt;}
.ws18{word-spacing:0.279215pt;}
.wsc9{word-spacing:0.325751pt;}
.ws3e{word-spacing:0.372287pt;}
.wsdd{word-spacing:0.465359pt;}
.ws127{word-spacing:0.506719pt;}
.ws11{word-spacing:0.511894pt;}
.wsd1{word-spacing:0.558430pt;}
.ws42{word-spacing:0.604966pt;}
.ws65{word-spacing:0.651502pt;}
.wsf{word-spacing:0.744574pt;}
.ws130{word-spacing:0.760078pt;}
.wsc7{word-spacing:0.791110pt;}
.wsde{word-spacing:0.884181pt;}
.ws87{word-spacing:0.930717pt;}
.ws120{word-spacing:0.941049pt;}
.ws40{word-spacing:0.977253pt;}
.ws83{word-spacing:1.070325pt;}
.wsd3{word-spacing:1.116861pt;}
.wsc{word-spacing:1.163396pt;}
.wsc6{word-spacing:1.256468pt;}
.ws3a{word-spacing:1.303004pt;}
.wscb{word-spacing:1.349540pt;}
.ws31{word-spacing:1.442612pt;}
.ws58{word-spacing:1.489147pt;}
.ws32{word-spacing:1.535683pt;}
.ws52{word-spacing:1.582219pt;}
.wse0{word-spacing:1.628755pt;}
.ws49{word-spacing:1.675291pt;}
.ws7c{word-spacing:1.721827pt;}
.ws5c{word-spacing:1.814898pt;}
.ws5a{word-spacing:1.907970pt;}
.ws11b{word-spacing:1.918293pt;}
.ws16{word-spacing:1.954506pt;}
.wsd0{word-spacing:2.001042pt;}
.ws5d{word-spacing:2.047578pt;}
.ws37{word-spacing:2.140649pt;}
.ws91{word-spacing:2.187185pt;}
.ws95{word-spacing:2.233721pt;}
.wsc3{word-spacing:2.280257pt;}
.ws94{word-spacing:2.326793pt;}
.ws9f{word-spacing:2.373329pt;}
.ws85{word-spacing:2.419864pt;}
.ws12d{word-spacing:2.425012pt;}
.wsbe{word-spacing:2.512936pt;}
.ws64{word-spacing:2.559472pt;}
.ws43{word-spacing:2.652544pt;}
.ws124{word-spacing:2.714566pt;}
.wsec{word-spacing:2.750760pt;}
.ws3d{word-spacing:2.792151pt;}
.ws33{word-spacing:2.885223pt;}
.wsce{word-spacing:2.931759pt;}
.ws61{word-spacing:3.024831pt;}
.wsc5{word-spacing:3.071366pt;}
.ws121{word-spacing:3.076508pt;}
.wscc{word-spacing:3.164438pt;}
.ws53{word-spacing:3.210974pt;}
.ws86{word-spacing:3.257510pt;}
.ws128{word-spacing:3.329867pt;}
.ws36{word-spacing:3.350582pt;}
.ws4d{word-spacing:3.443653pt;}
.ws11d{word-spacing:3.474644pt;}
.ws41{word-spacing:3.490189pt;}
.wsc0{word-spacing:3.536725pt;}
.wscd{word-spacing:3.583261pt;}
.wscf{word-spacing:3.722868pt;}
.wsd2{word-spacing:3.815940pt;}
.wsef{word-spacing:3.897949pt;}
.ws133{word-spacing:4.017557pt;}
.wsf8{word-spacing:4.162334pt;}
.ws12{word-spacing:4.188227pt;}
.wsf4{word-spacing:4.234722pt;}
.ws10{word-spacing:4.234763pt;}
.wsc2{word-spacing:4.281299pt;}
.ws93{word-spacing:4.327835pt;}
.wsf5{word-spacing:4.415693pt;}
.wsca{word-spacing:4.420906pt;}
.wsa0{word-spacing:4.513978pt;}
.wsc4{word-spacing:4.560514pt;}
.ws8f{word-spacing:4.700121pt;}
.ws12f{word-spacing:4.813830pt;}
.ws3b{word-spacing:4.979336pt;}
.wsd4{word-spacing:5.212016pt;}
.ws125{word-spacing:5.791073pt;}
.ws74{word-spacing:6.132857pt;}
.ws69{word-spacing:6.293609pt;}
.ws6b{word-spacing:7.075196pt;}
.ws76{word-spacing:7.300613pt;}
.ws1e{word-spacing:7.678416pt;}
.ws1d{word-spacing:7.698196pt;}
.ws82{word-spacing:8.329918pt;}
.wseb{word-spacing:8.360862pt;}
.wsf3{word-spacing:8.614221pt;}
.ws8e{word-spacing:8.702205pt;}
.ws12a{word-spacing:8.758998pt;}
.wsf0{word-spacing:8.867581pt;}
.wse8{word-spacing:8.903775pt;}
.wsed{word-spacing:8.976164pt;}
.ws1a{word-spacing:8.981420pt;}
.ws24{word-spacing:9.012358pt;}
.ws1b{word-spacing:9.027956pt;}
.ws11a{word-spacing:9.048552pt;}
.wsda{word-spacing:9.074492pt;}
.ws2b{word-spacing:9.100307pt;}
.ws118{word-spacing:9.120940pt;}
.wsdc{word-spacing:9.121028pt;}
.wsa9{word-spacing:9.262030pt;}
.wsa8{word-spacing:9.721260pt;}
.wsaa{word-spacing:9.726450pt;}
.ws131{word-spacing:9.772436pt;}
.ws6a{word-spacing:10.004799pt;}
.ws2c{word-spacing:10.093068pt;}
.wse4{word-spacing:10.144816pt;}
.ws27{word-spacing:10.299893pt;}
.ws126{word-spacing:10.355915pt;}
.wse2{word-spacing:10.424032pt;}
.wsa4{word-spacing:10.638625pt;}
.ws11c{word-spacing:10.930651pt;}
.ws89{word-spacing:11.540892pt;}
.ws6e{word-spacing:11.584704pt;}
.ws8a{word-spacing:11.585917pt;}
.ws78{word-spacing:11.587428pt;}
.ws8b{word-spacing:11.589894pt;}
.ws122{word-spacing:12.052671pt;}
.ws129{word-spacing:12.378419pt;}
.ws7d{word-spacing:12.425073pt;}
.wsa5{word-spacing:12.471609pt;}
.wsa2{word-spacing:12.518145pt;}
.ws7f{word-spacing:12.704288pt;}
.ws132{word-spacing:13.029915pt;}
.wsa6{word-spacing:13.169713pt;}
.wsf7{word-spacing:13.174692pt;}
.wsd9{word-spacing:13.355790pt;}
.ws62{word-spacing:13.402326pt;}
.ws7e{word-spacing:13.774613pt;}
.ws11e{word-spacing:13.826187pt;}
.ws1c{word-spacing:13.960757pt;}
.ws19{word-spacing:14.098011pt;}
.ws9c{word-spacing:14.146900pt;}
.ws66{word-spacing:14.220238pt;}
.ws79{word-spacing:14.221188pt;}
.wse3{word-spacing:15.263760pt;}
.wsf9{word-spacing:15.449904pt;}
.ws80{word-spacing:15.589511pt;}
.wsd8{word-spacing:15.915262pt;}
.wsa7{word-spacing:16.101406pt;}
.wsa3{word-spacing:17.497482pt;}
.ws73{word-spacing:17.763707pt;}
.ws8c{word-spacing:17.768897pt;}
.ws9a{word-spacing:18.148983pt;}
.wsa1{word-spacing:18.660878pt;}
.ws81{word-spacing:18.847021pt;}
.ws71{word-spacing:19.061214pt;}
.wsf6{word-spacing:19.552966pt;}
.wsdb{word-spacing:20.103489pt;}
.ws4{word-spacing:22.247748pt;}
.ws9b{word-spacing:29.084909pt;}
.wsd7{word-spacing:31.282689pt;}
.wsab{word-spacing:35.578638pt;}
.wsae{word-spacing:35.579567pt;}
.wsad{word-spacing:35.584744pt;}
.ws101{word-spacing:38.587369pt;}
.wsfc{word-spacing:38.589576pt;}
.ws109{word-spacing:38.603263pt;}
.ws106{word-spacing:38.607506pt;}
.ws114{word-spacing:38.672324pt;}
.ws113{word-spacing:38.688252pt;}
.ws102{word-spacing:39.766996pt;}
.wsfe{word-spacing:40.443732pt;}
.wsfb{word-spacing:40.481779pt;}
.ws10d{word-spacing:40.532774pt;}
.ws10b{word-spacing:40.570904pt;}
.ws108{word-spacing:41.128574pt;}
.ws115{word-spacing:41.219123pt;}
.ws107{word-spacing:42.231931pt;}
.wsb7{word-spacing:45.870757pt;}
.wsfd{word-spacing:48.091136pt;}
.ws10f{word-spacing:48.197014pt;}
.ws2e{word-spacing:56.561901pt;}
.wsb4{word-spacing:60.295150pt;}
.wsb8{word-spacing:65.782230pt;}
.wsb2{word-spacing:73.304754pt;}
.ws6c{word-spacing:81.233862pt;}
.ws67{word-spacing:82.629980pt;}
.ws77{word-spacing:84.021857pt;}
.ws6d{word-spacing:84.026097pt;}
.wsba{word-spacing:84.665948pt;}
.wsb6{word-spacing:129.544167pt;}
.wsb9{word-spacing:148.427885pt;}
.ws72{word-spacing:151.035481pt;}
.ws70{word-spacing:152.430648pt;}
.ws75{word-spacing:152.431598pt;}
.ws6f{word-spacing:153.826765pt;}
.ws8d{word-spacing:153.827715pt;}
.ws103{word-spacing:188.601617pt;}
.ws110{word-spacing:189.012594pt;}
.ws105{word-spacing:205.988998pt;}
.ws112{word-spacing:206.438255pt;}
.wsb3{word-spacing:237.102853pt;}
.ws100{word-spacing:246.432730pt;}
.ws10e{word-spacing:246.971028pt;}
.ws104{word-spacing:263.820110pt;}
.ws111{word-spacing:264.396689pt;}
.wsff{word-spacing:265.798543pt;}
.wsb5{word-spacing:282.990665pt;}
.ws10c{word-spacing:346.224847pt;}
.wsb1{word-spacing:377.739826pt;}
.wsaf{word-spacing:419.060873pt;}
.wsb0{word-spacing:522.984523pt;}
.wsbb{word-spacing:840.799850pt;}
.wsbd{word-spacing:884.937482pt;}
.wsbc{word-spacing:1048.936110pt;}
._1a{margin-left:-42.906308pt;}
._2{margin-left:-4.020677pt;}
._b{margin-left:-3.113256pt;}
._0{margin-left:-2.204000pt;}
._3{margin-left:-1.072181pt;}
._5{width:1.189242pt;}
._4{width:2.119953pt;}
._c{width:3.346942pt;}
._6{width:4.365854pt;}
._10{width:7.724952pt;}
._d{width:9.121642pt;}
._7{width:10.889390pt;}
._11{width:12.843896pt;}
._13{width:13.859688pt;}
._31{width:15.171095pt;}
._12{width:16.147942pt;}
._34{width:17.055971pt;}
._1b{width:18.097104pt;}
._2e{width:21.097360pt;}
._32{width:22.678705pt;}
._1{width:24.420489pt;}
._2f{width:26.096024pt;}
._1c{width:28.958614pt;}
._33{width:31.054630pt;}
._30{width:34.493080pt;}
._e{width:48.258147pt;}
._20{width:49.993475pt;}
._1e{width:51.096831pt;}
._2b{width:52.007241pt;}
._9{width:56.618520pt;}
._18{width:73.346075pt;}
._24{width:75.754855pt;}
._28{width:78.005494pt;}
._15{width:79.030315pt;}
._17{width:176.258400pt;}
._16{width:189.621946pt;}
._2a{width:200.770168pt;}
._19{width:207.939948pt;}
._f{width:273.260127pt;}
._27{width:275.420672pt;}
._29{width:277.170824pt;}
._1d{width:302.481522pt;}
._14{width:338.501679pt;}
._25{width:355.014545pt;}
._23{width:357.332686pt;}
._22{width:364.412101pt;}
._1f{width:402.458886pt;}
._21{width:412.921751pt;}
._2c{width:413.830848pt;}
._26{width:426.162032pt;}
._2d{width:427.100279pt;}
._a{width:488.969044pt;}
._8{width:1530.949618pt;}
.fsb{font-size:28.438751pt;}
.fs8{font-size:36.194208pt;}
.fsa{font-size:37.745507pt;}
.fsf{font-size:38.046784pt;}
.fs10{font-size:38.130549pt;}
.fsc{font-size:41.321047pt;}
.fs9{font-size:41.365032pt;}
.fsd{font-size:41.563394pt;}
.fs7{font-size:46.535855pt;}
.fse{font-size:48.490627pt;}
.fs5{font-size:51.706160pt;}
.fs0{font-size:53.133867pt;}
.fs6{font-size:56.618520pt;}
.fs4{font-size:62.047807pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:89.348385pt;}
.fs1{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y221{bottom:4.424770pt;}
.y1e9{bottom:8.260655pt;}
.y1ec{bottom:9.135409pt;}
.y1fa{bottom:10.234986pt;}
.y1ee{bottom:14.910989pt;}
.y1eb{bottom:28.479532pt;}
.y1ed{bottom:34.255459pt;}
.y1ea{bottom:36.558486pt;}
.y1f1{bottom:42.897008pt;}
.y1e4{bottom:45.815156pt;}
.y8{bottom:47.449333pt;}
.y1ef{bottom:56.197381pt;}
.y1e8{bottom:58.803734pt;}
.y1e7{bottom:62.830188pt;}
.y1e5{bottom:73.662457pt;}
.y222{bottom:74.147277pt;}
.y1e6{bottom:77.706160pt;}
.y1f0{bottom:90.556540pt;}
.yfc{bottom:109.837832pt;}
.y18f{bottom:109.911790pt;}
.y1c8{bottom:110.066193pt;}
.y122{bottom:110.362025pt;}
.y94{bottom:110.419115pt;}
.y242{bottom:110.642286pt;}
.y146{bottom:110.679914pt;}
.yc7{bottom:111.646556pt;}
.y218{bottom:111.699754pt;}
.y5d{bottom:112.072138pt;}
.y39{bottom:113.914598pt;}
.y2a2{bottom:115.616927pt;}
.y171{bottom:116.408406pt;}
.y241{bottom:120.983414pt;}
.y219{bottom:122.213697pt;}
.yfb{bottom:124.055910pt;}
.y18e{bottom:124.131165pt;}
.y38{bottom:124.255726pt;}
.y1c7{bottom:124.285569pt;}
.y121{bottom:124.581400pt;}
.y93{bottom:124.638490pt;}
.y145{bottom:124.897992pt;}
.yc6{bottom:125.865932pt;}
.y217{bottom:125.919129pt;}
.y2a1{bottom:125.959352pt;}
.y5c{bottom:126.291514pt;}
.y170{bottom:130.627781pt;}
.y240{bottom:131.324542pt;}
.y37{bottom:134.598152pt;}
.y2a0{bottom:136.300480pt;}
.yfa{bottom:138.275285pt;}
.y18d{bottom:138.350541pt;}
.y1c6{bottom:138.504944pt;}
.y120{bottom:138.800776pt;}
.y92{bottom:138.857866pt;}
.y144{bottom:139.117367pt;}
.yc5{bottom:140.085307pt;}
.y216{bottom:140.138505pt;}
.y5b{bottom:140.510889pt;}
.y23f{bottom:141.665670pt;}
.y1f2{bottom:144.649271pt;}
.y16f{bottom:144.847157pt;}
.y1f7{bottom:145.766288pt;}
.y36{bottom:145.973393pt;}
.y29f{bottom:146.641608pt;}
.y23e{bottom:152.006799pt;}
.yf9{bottom:152.494661pt;}
.y18c{bottom:152.569916pt;}
.y1c5{bottom:152.723022pt;}
.y11f{bottom:153.020151pt;}
.y91{bottom:153.077242pt;}
.y143{bottom:153.336743pt;}
.yc4{bottom:154.304683pt;}
.y215{bottom:154.357881pt;}
.y5a{bottom:154.730265pt;}
.y29e{bottom:156.982737pt;}
.y35{bottom:157.348633pt;}
.y16e{bottom:159.066532pt;}
.y23d{bottom:162.349224pt;}
.yf8{bottom:166.714037pt;}
.y18b{bottom:166.789292pt;}
.y1c4{bottom:166.942398pt;}
.y11e{bottom:167.239527pt;}
.y90{bottom:167.295320pt;}
.y29d{bottom:167.323865pt;}
.y142{bottom:167.556118pt;}
.y34{bottom:167.689762pt;}
.yc3{bottom:168.524058pt;}
.y214{bottom:168.577256pt;}
.y59{bottom:168.949641pt;}
.y1f3{bottom:169.682731pt;}
.y21a{bottom:170.557207pt;}
.y23c{bottom:172.690352pt;}
.y16d{bottom:173.284610pt;}
.y29c{bottom:177.664993pt;}
.y33{bottom:178.030890pt;}
.yf7{bottom:180.933412pt;}
.y18a{bottom:181.008668pt;}
.y1c3{bottom:181.161773pt;}
.y11d{bottom:181.457605pt;}
.y8f{bottom:181.514695pt;}
.y141{bottom:181.775494pt;}
.yc2{bottom:182.743434pt;}
.y213{bottom:182.796632pt;}
.y23b{bottom:183.031480pt;}
.y58{bottom:183.169016pt;}
.y16c{bottom:187.503986pt;}
.y29b{bottom:188.006121pt;}
.y32{bottom:188.372018pt;}
.y23a{bottom:193.372609pt;}
.y1f4{bottom:194.707358pt;}
.yf6{bottom:195.152788pt;}
.y189{bottom:195.228043pt;}
.y1c2{bottom:195.381149pt;}
.y11c{bottom:195.676980pt;}
.y8e{bottom:195.734071pt;}
.yc1{bottom:196.962810pt;}
.y212{bottom:197.016007pt;}
.y57{bottom:197.388392pt;}
.y29a{bottom:198.347249pt;}
.y31{bottom:198.713146pt;}
.y21b{bottom:198.837807pt;}
.y16b{bottom:201.723361pt;}
.y239{bottom:203.713737pt;}
.y299{bottom:208.688377pt;}
.y30{bottom:209.054274pt;}
.yf5{bottom:209.372163pt;}
.y188{bottom:209.447419pt;}
.y1c1{bottom:209.600524pt;}
.y11b{bottom:209.896356pt;}
.y8d{bottom:209.953446pt;}
.yc0{bottom:211.182185pt;}
.y211{bottom:211.234085pt;}
.y56{bottom:211.607767pt;}
.y238{bottom:214.054865pt;}
.y16a{bottom:215.942737pt;}
.y21c{bottom:218.900717pt;}
.y298{bottom:219.030803pt;}
.y2f{bottom:219.396700pt;}
.yf4{bottom:223.591539pt;}
.y187{bottom:223.666794pt;}
.y1c0{bottom:223.819900pt;}
.y11a{bottom:224.115732pt;}
.y8c{bottom:224.172822pt;}
.y237{bottom:224.395993pt;}
.y140{bottom:225.094052pt;}
.ybf{bottom:225.401561pt;}
.y210{bottom:225.453461pt;}
.y55{bottom:225.825845pt;}
.y1f5{bottom:227.793378pt;}
.y297{bottom:229.371931pt;}
.y169{bottom:230.162113pt;}
.y21d{bottom:234.469758pt;}
.y236{bottom:234.737121pt;}
.yf3{bottom:237.810914pt;}
.y186{bottom:237.886170pt;}
.y1bf{bottom:238.039276pt;}
.y119{bottom:238.335107pt;}
.y8b{bottom:238.392197pt;}
.y13f{bottom:239.313427pt;}
.ybe{bottom:239.619639pt;}
.y20f{bottom:239.672836pt;}
.y296{bottom:239.713059pt;}
.y54{bottom:240.045221pt;}
.y168{bottom:244.381488pt;}
.y235{bottom:245.078249pt;}
.y21e{bottom:247.181316pt;}
.y295{bottom:250.054187pt;}
.yf2{bottom:252.030290pt;}
.y185{bottom:252.104248pt;}
.y1be{bottom:252.258651pt;}
.y118{bottom:252.554483pt;}
.y8a{bottom:252.611573pt;}
.y1f6{bottom:252.818005pt;}
.ybd{bottom:253.839014pt;}
.y20e{bottom:253.892212pt;}
.y53{bottom:254.264596pt;}
.y234{bottom:255.420675pt;}
.y21f{bottom:257.935758pt;}
.y167{bottom:258.600864pt;}
.y294{bottom:260.395315pt;}
.y233{bottom:265.761803pt;}
.yf1{bottom:266.248368pt;}
.y184{bottom:266.323623pt;}
.y1bd{bottom:266.478027pt;}
.y117{bottom:266.773858pt;}
.y89{bottom:266.830948pt;}
.y220{bottom:267.244226pt;}
.ybc{bottom:268.058390pt;}
.y20d{bottom:268.111588pt;}
.y52{bottom:268.483972pt;}
.y293{bottom:270.736444pt;}
.y166{bottom:272.820239pt;}
.y232{bottom:276.102931pt;}
.yf0{bottom:280.467744pt;}
.y183{bottom:280.542999pt;}
.y1bc{bottom:280.697402pt;}
.y116{bottom:280.993234pt;}
.y88{bottom:281.050324pt;}
.y292{bottom:281.077572pt;}
.ybb{bottom:282.277765pt;}
.y2e{bottom:282.654042pt;}
.y51{bottom:282.703348pt;}
.y20c{bottom:285.886131pt;}
.y231{bottom:286.444059pt;}
.y165{bottom:287.039615pt;}
.y1f8{bottom:288.666433pt;}
.y291{bottom:291.418700pt;}
.yef{bottom:294.687119pt;}
.y182{bottom:294.762375pt;}
.y1bb{bottom:294.915480pt;}
.y115{bottom:295.212609pt;}
.y87{bottom:295.269700pt;}
.yba{bottom:296.497141pt;}
.y230{bottom:296.785187pt;}
.y2d{bottom:296.873418pt;}
.y50{bottom:296.922723pt;}
.y164{bottom:301.258990pt;}
.y290{bottom:301.759828pt;}
.yee{bottom:308.906495pt;}
.y181{bottom:308.981750pt;}
.y1ba{bottom:309.134856pt;}
.y114{bottom:309.431985pt;}
.y86{bottom:309.489075pt;}
.y22f{bottom:310.681484pt;}
.yb9{bottom:310.716516pt;}
.y2c{bottom:311.092793pt;}
.y4f{bottom:311.142099pt;}
.y28f{bottom:312.102254pt;}
.y1da{bottom:314.271685pt;}
.y163{bottom:315.478366pt;}
.y20b{bottom:317.079489pt;}
.y28e{bottom:322.443382pt;}
.y1e2{bottom:323.125870pt;}
.y180{bottom:323.201126pt;}
.y1b9{bottom:323.354231pt;}
.y113{bottom:323.650063pt;}
.y85{bottom:323.707153pt;}
.yb8{bottom:324.935892pt;}
.y2b{bottom:325.312169pt;}
.y4e{bottom:325.361474pt;}
.y162{bottom:329.696444pt;}
.y20a{bottom:331.298865pt;}
.y28d{bottom:332.784510pt;}
.y1e1{bottom:337.345246pt;}
.y17f{bottom:337.420501pt;}
.y1b8{bottom:337.573607pt;}
.y84{bottom:337.926529pt;}
.yb7{bottom:339.155268pt;}
.y4d{bottom:339.580850pt;}
.y22e{bottom:339.759906pt;}
.yed{bottom:340.160835pt;}
.y112{bottom:341.424607pt;}
.y2a{bottom:343.086713pt;}
.y28c{bottom:343.125638pt;}
.y161{bottom:343.915820pt;}
.y1d9{bottom:345.359944pt;}
.y209{bottom:345.518240pt;}
.y1e0{bottom:351.564621pt;}
.y17e{bottom:351.639877pt;}
.y1b7{bottom:351.792983pt;}
.y83{bottom:352.145904pt;}
.yb6{bottom:353.374643pt;}
.y28b{bottom:353.466766pt;}
.y4c{bottom:353.800225pt;}
.y22d{bottom:353.979281pt;}
.yec{bottom:354.380211pt;}
.y160{bottom:358.135195pt;}
.y1d8{bottom:359.579320pt;}
.y208{bottom:359.737616pt;}
.y28a{bottom:363.807894pt;}
.y1df{bottom:365.783997pt;}
.y17d{bottom:365.859252pt;}
.y1b6{bottom:366.012358pt;}
.yb5{bottom:367.594019pt;}
.y4b{bottom:368.018303pt;}
.y22c{bottom:368.198657pt;}
.yeb{bottom:368.599586pt;}
.y82{bottom:369.920448pt;}
.y111{bottom:369.942506pt;}
.y1d7{bottom:373.798696pt;}
.y207{bottom:373.956991pt;}
.y289{bottom:374.149022pt;}
.y15f{bottom:375.909739pt;}
.y29{bottom:378.711056pt;}
.y1de{bottom:380.003372pt;}
.y17c{bottom:380.078628pt;}
.y1b5{bottom:380.231734pt;}
.yb4{bottom:381.812097pt;}
.y4a{bottom:382.237679pt;}
.y22b{bottom:382.418032pt;}
.yea{bottom:382.818962pt;}
.y110{bottom:384.161881pt;}
.y288{bottom:384.490151pt;}
.y1d6{bottom:388.018071pt;}
.y206{bottom:388.176367pt;}
.y28{bottom:392.930431pt;}
.y1dd{bottom:394.222748pt;}
.y17b{bottom:394.296706pt;}
.y1b4{bottom:394.451109pt;}
.y287{bottom:394.831279pt;}
.yb3{bottom:396.031472pt;}
.y15e{bottom:396.268916pt;}
.y49{bottom:396.457055pt;}
.y22a{bottom:396.637408pt;}
.ye9{bottom:397.038338pt;}
.y10f{bottom:398.381257pt;}
.y81{bottom:398.552528pt;}
.y1d5{bottom:402.236149pt;}
.y205{bottom:402.395743pt;}
.y286{bottom:405.173704pt;}
.y27{bottom:407.149807pt;}
.y1dc{bottom:408.442124pt;}
.y17a{bottom:408.516081pt;}
.y1b3{bottom:408.670485pt;}
.yb2{bottom:410.250848pt;}
.y48{bottom:410.676430pt;}
.y229{bottom:410.856784pt;}
.ye8{bottom:411.257713pt;}
.y10e{bottom:412.600632pt;}
.y80{bottom:412.771903pt;}
.y285{bottom:415.514832pt;}
.y1d4{bottom:416.455525pt;}
.y204{bottom:416.615118pt;}
.y26{bottom:421.367885pt;}
.y1db{bottom:422.660202pt;}
.y179{bottom:422.735457pt;}
.y1b2{bottom:422.889860pt;}
.yb1{bottom:424.470223pt;}
.y47{bottom:424.895806pt;}
.y228{bottom:425.076159pt;}
.ye7{bottom:425.477089pt;}
.y284{bottom:425.855961pt;}
.y10d{bottom:426.820008pt;}
.y7f{bottom:426.991279pt;}
.y1d3{bottom:430.674900pt;}
.y2be{bottom:430.684000pt;}
.y203{bottom:430.834494pt;}
.y25{bottom:435.587261pt;}
.y283{bottom:436.197089pt;}
.y15d{bottom:436.879577pt;}
.y178{bottom:436.954833pt;}
.y1b1{bottom:437.109236pt;}
.yb0{bottom:438.689599pt;}
.y46{bottom:439.115181pt;}
.y227{bottom:439.295535pt;}
.ye6{bottom:439.695167pt;}
.y10c{bottom:441.039384pt;}
.y7e{bottom:441.210654pt;}
.y1d2{bottom:444.894276pt;}
.y202{bottom:445.053869pt;}
.y282{bottom:446.538217pt;}
.y24{bottom:449.806636pt;}
.y15c{bottom:451.098953pt;}
.y177{bottom:451.174208pt;}
.y1b0{bottom:451.327314pt;}
.yaf{bottom:452.908975pt;}
.y45{bottom:453.334557pt;}
.y226{bottom:453.514910pt;}
.ye5{bottom:453.914542pt;}
.y10b{bottom:455.258759pt;}
.y7d{bottom:455.430030pt;}
.y281{bottom:456.879345pt;}
.y1d1{bottom:459.113651pt;}
.y201{bottom:459.273245pt;}
.y2bd{bottom:462.564000pt;}
.y23{bottom:464.026012pt;}
.y15b{bottom:465.318328pt;}
.y1af{bottom:465.546690pt;}
.yae{bottom:467.128350pt;}
.y44{bottom:467.553932pt;}
.y225{bottom:467.734286pt;}
.ye4{bottom:468.133918pt;}
.y176{bottom:468.948752pt;}
.y10a{bottom:469.478135pt;}
.y7c{bottom:469.649406pt;}
.y1d0{bottom:473.333027pt;}
.y22{bottom:478.245387pt;}
.y2bc{bottom:478.505333pt;}
.y15a{bottom:479.537704pt;}
.y1ae{bottom:479.766065pt;}
.yad{bottom:481.347726pt;}
.y43{bottom:481.773308pt;}
.y224{bottom:481.952364pt;}
.ye3{bottom:482.353293pt;}
.y109{bottom:483.697510pt;}
.y7b{bottom:483.868781pt;}
.y1cf{bottom:487.552403pt;}
.y21{bottom:492.464763pt;}
.y159{bottom:493.757079pt;}
.y1ad{bottom:493.985441pt;}
.y2bb{bottom:494.445333pt;}
.y280{bottom:495.234039pt;}
.yac{bottom:495.567101pt;}
.y261{bottom:495.623640pt;}
.y42{bottom:495.992683pt;}
.y223{bottom:496.171739pt;}
.ye2{bottom:496.572669pt;}
.y108{bottom:497.916886pt;}
.y7a{bottom:498.086859pt;}
.y1ce{bottom:501.771778pt;}
.y175{bottom:506.131401pt;}
.y20{bottom:506.684138pt;}
.y27f{bottom:506.885111pt;}
.y260{bottom:507.249117pt;}
.y158{bottom:507.976455pt;}
.y1ac{bottom:508.204816pt;}
.yab{bottom:509.786477pt;}
.y41{bottom:510.212059pt;}
.y2ba{bottom:510.385333pt;}
.y200{bottom:510.755714pt;}
.ye1{bottom:510.792044pt;}
.y107{bottom:512.136261pt;}
.y79{bottom:512.306235pt;}
.y1cd{bottom:515.991154pt;}
.y13e{bottom:518.353913pt;}
.y27e{bottom:518.536183pt;}
.y25f{bottom:518.874594pt;}
.y174{bottom:520.349479pt;}
.y1f{bottom:520.903514pt;}
.y157{bottom:522.195831pt;}
.y1ab{bottom:522.424192pt;}
.yaa{bottom:524.005852pt;}
.y1ff{bottom:524.975090pt;}
.ye0{bottom:525.011420pt;}
.y2b9{bottom:526.325333pt;}
.y106{bottom:526.354339pt;}
.y78{bottom:526.525610pt;}
.y40{bottom:527.985305pt;}
.y27d{bottom:530.187255pt;}
.y1cc{bottom:530.210529pt;}
.y25e{bottom:530.500071pt;}
.y13d{bottom:532.573289pt;}
.y173{bottom:534.568854pt;}
.y1e{bottom:535.122889pt;}
.y156{bottom:536.415206pt;}
.y1aa{bottom:536.643567pt;}
.y1fe{bottom:539.194465pt;}
.ydf{bottom:539.230796pt;}
.y105{bottom:540.573715pt;}
.y77{bottom:540.744986pt;}
.ya9{bottom:541.779099pt;}
.y27c{bottom:541.837264pt;}
.y25d{bottom:542.124487pt;}
.y2b8{bottom:542.265333pt;}
.y1cb{bottom:544.428607pt;}
.y13c{bottom:546.792664pt;}
.y172{bottom:548.788230pt;}
.y1d{bottom:549.342265pt;}
.y155{bottom:550.634582pt;}
.y1a9{bottom:550.862943pt;}
.y1fd{bottom:553.413841pt;}
.y27b{bottom:553.488336pt;}
.y25c{bottom:553.749964pt;}
.y104{bottom:554.793091pt;}
.y76{bottom:554.964361pt;}
.y2b7{bottom:558.205333pt;}
.yde{bottom:558.293764pt;}
.y1ca{bottom:558.647983pt;}
.y13b{bottom:561.012040pt;}
.y1c{bottom:563.560343pt;}
.y154{bottom:564.852660pt;}
.y1a8{bottom:565.082318pt;}
.y27a{bottom:565.139408pt;}
.y25b{bottom:565.375441pt;}
.y1fc{bottom:567.633217pt;}
.y75{bottom:569.183737pt;}
.y272{bottom:570.965475pt;}
.y253{bottom:571.188710pt;}
.y3f{bottom:571.953914pt;}
.ydd{bottom:572.513139pt;}
.ya8{bottom:572.867358pt;}
.y2b6{bottom:574.146667pt;}
.y13a{bottom:575.231416pt;}
.y279{bottom:576.790479pt;}
.y25a{bottom:577.000918pt;}
.y1b{bottom:577.779719pt;}
.y153{bottom:579.072035pt;}
.y1a7{bottom:579.301694pt;}
.y1fb{bottom:581.852592pt;}
.y74{bottom:583.403113pt;}
.y3e{bottom:584.880973pt;}
.ydc{bottom:586.732515pt;}
.ya7{bottom:587.086734pt;}
.y278{bottom:588.441551pt;}
.y259{bottom:588.626395pt;}
.y139{bottom:589.450791pt;}
.y1a{bottom:591.999094pt;}
.y152{bottom:593.291411pt;}
.y103{bottom:595.573725pt;}
.y73{bottom:597.622488pt;}
.y3d{bottom:597.806734pt;}
.y277{bottom:600.092623pt;}
.y258{bottom:600.251873pt;}
.ydb{bottom:600.951890pt;}
.ya6{bottom:601.306110pt;}
.y138{bottom:603.670167pt;}
.y2b5{bottom:606.026667pt;}
.y19{bottom:606.218470pt;}
.y151{bottom:607.510786pt;}
.y102{bottom:609.791803pt;}
.y3c{bottom:610.733793pt;}
.y276{bottom:611.743695pt;}
.y72{bottom:611.841864pt;}
.y257{bottom:611.877350pt;}
.yda{bottom:615.171266pt;}
.ya5{bottom:615.525485pt;}
.y1a6{bottom:617.234037pt;}
.y137{bottom:617.889542pt;}
.y18{bottom:620.437845pt;}
.y150{bottom:621.730162pt;}
.y275{bottom:623.394767pt;}
.y256{bottom:623.502827pt;}
.y3b{bottom:623.660852pt;}
.y101{bottom:624.011179pt;}
.y71{bottom:626.061239pt;}
.yd9{bottom:629.390641pt;}
.ya4{bottom:629.744861pt;}
.y1a5{bottom:629.859990pt;}
.y136{bottom:632.108918pt;}
.y17{bottom:634.657221pt;}
.y274{bottom:635.045839pt;}
.y255{bottom:635.128304pt;}
.y14f{bottom:635.949538pt;}
.y3a{bottom:636.586613pt;}
.y100{bottom:638.230554pt;}
.y70{bottom:640.279317pt;}
.y1a4{bottom:642.485942pt;}
.yd8{bottom:643.610017pt;}
.ya3{bottom:643.964236pt;}
.y135{bottom:646.328293pt;}
.y273{bottom:646.696911pt;}
.y254{bottom:646.753781pt;}
.y16{bottom:648.876596pt;}
.y14e{bottom:650.168913pt;}
.yff{bottom:652.449930pt;}
.y2b4{bottom:653.846667pt;}
.y6f{bottom:654.498693pt;}
.y1e3{bottom:654.766791pt;}
.y1a3{bottom:655.111894pt;}
.yd7{bottom:657.829392pt;}
.ya2{bottom:658.183612pt;}
.y134{bottom:660.546371pt;}
.y271{bottom:660.888914pt;}
.y252{bottom:660.914607pt;}
.y1c9{bottom:661.737483pt;}
.y15{bottom:663.095972pt;}
.y14d{bottom:664.388289pt;}
.yfe{bottom:666.669305pt;}
.y1a2{bottom:667.737847pt;}
.y6e{bottom:668.718068pt;}
.y2b3{bottom:669.788000pt;}
.ya1{bottom:672.402987pt;}
.y270{bottom:672.539986pt;}
.y251{bottom:672.540084pt;}
.y133{bottom:674.765747pt;}
.y14{bottom:677.315348pt;}
.y14c{bottom:678.607664pt;}
.y1a1{bottom:680.363799pt;}
.yfd{bottom:680.888681pt;}
.y6d{bottom:682.937444pt;}
.y250{bottom:684.165561pt;}
.y26f{bottom:684.191058pt;}
.y2b2{bottom:685.728000pt;}
.ya0{bottom:686.622363pt;}
.yd6{bottom:686.685941pt;}
.y132{bottom:688.985123pt;}
.y14b{bottom:692.827040pt;}
.y1a0{bottom:692.989751pt;}
.y13{bottom:695.088594pt;}
.y24f{bottom:695.791038pt;}
.y26e{bottom:695.842130pt;}
.y6c{bottom:697.156820pt;}
.y9f{bottom:700.840441pt;}
.yd5{bottom:700.905316pt;}
.y2b1{bottom:701.668000pt;}
.y131{bottom:703.204498pt;}
.y19f{bottom:705.614552pt;}
.y14a{bottom:707.046415pt;}
.y24e{bottom:707.416515pt;}
.y26d{bottom:707.493202pt;}
.y6b{bottom:714.931363pt;}
.y9e{bottom:715.059817pt;}
.yd4{bottom:715.124692pt;}
.y130{bottom:717.423874pt;}
.y2b0{bottom:717.608000pt;}
.y19e{bottom:718.240504pt;}
.y24d{bottom:719.041992pt;}
.y26c{bottom:719.144274pt;}
.y12{bottom:721.019265pt;}
.y149{bottom:721.264493pt;}
.y9d{bottom:729.279192pt;}
.yd3{bottom:729.344067pt;}
.y24c{bottom:730.667469pt;}
.y26b{bottom:730.795346pt;}
.y19d{bottom:730.866456pt;}
.y12f{bottom:731.643249pt;}
.y2af{bottom:733.548000pt;}
.y6a{bottom:735.290540pt;}
.y148{bottom:735.483869pt;}
.y244{bottom:736.479678pt;}
.y11{bottom:736.532254pt;}
.y263{bottom:736.620350pt;}
.y24b{bottom:742.292946pt;}
.y26a{bottom:742.446418pt;}
.y19c{bottom:743.492409pt;}
.y9c{bottom:743.498568pt;}
.yd2{bottom:743.563443pt;}
.y12e{bottom:745.862625pt;}
.y7{bottom:746.144000pt;}
.y2ae{bottom:749.489333pt;}
.y147{bottom:749.703245pt;}
.y10{bottom:752.043947pt;}
.y24a{bottom:753.918424pt;}
.y269{bottom:754.097490pt;}
.y19b{bottom:756.118361pt;}
.y9b{bottom:757.717943pt;}
.yd1{bottom:757.782819pt;}
.y12d{bottom:760.082000pt;}
.y69{bottom:763.922620pt;}
.y6{bottom:764.740000pt;}
.y2ad{bottom:765.429333pt;}
.y249{bottom:765.543901pt;}
.y268{bottom:765.748562pt;}
.yf{bottom:767.555639pt;}
.y19a{bottom:768.744313pt;}
.y9a{bottom:771.937319pt;}
.yd0{bottom:772.002194pt;}
.y12c{bottom:774.301376pt;}
.y248{bottom:777.168317pt;}
.y267{bottom:777.398570pt;}
.y68{bottom:778.141996pt;}
.y1f9{bottom:779.456974pt;}
.y2ac{bottom:781.369333pt;}
.y199{bottom:781.370266pt;}
.y99{bottom:786.156694pt;}
.ycf{bottom:786.221570pt;}
.y12b{bottom:788.520751pt;}
.y247{bottom:788.793794pt;}
.y266{bottom:789.049642pt;}
.y67{bottom:792.361371pt;}
.y197{bottom:796.750908pt;}
.ye{bottom:796.774191pt;}
.y2ab{bottom:797.309333pt;}
.y98{bottom:800.376070pt;}
.y246{bottom:800.419271pt;}
.yce{bottom:800.440945pt;}
.y265{bottom:800.700714pt;}
.y196{bottom:802.934272pt;}
.y66{bottom:806.580747pt;}
.y12a{bottom:807.583719pt;}
.y198{bottom:809.376861pt;}
.y245{bottom:812.044748pt;}
.yd{bottom:812.287181pt;}
.y264{bottom:812.351786pt;}
.y97{bottom:814.595445pt;}
.ycd{bottom:814.659023pt;}
.y65{bottom:820.800122pt;}
.y129{bottom:821.803095pt;}
.y243{bottom:826.206635pt;}
.y262{bottom:826.544852pt;}
.yc{bottom:827.798873pt;}
.y96{bottom:828.814821pt;}
.ycc{bottom:828.878399pt;}
.y2aa{bottom:829.189333pt;}
.y5{bottom:831.970667pt;}
.y64{bottom:835.019498pt;}
.y128{bottom:836.022471pt;}
.y195{bottom:837.992086pt;}
.ycb{bottom:843.097774pt;}
.yb{bottom:843.310565pt;}
.y95{bottom:846.588067pt;}
.y63{bottom:849.238873pt;}
.y127{bottom:850.241846pt;}
.y194{bottom:852.211461pt;}
.yca{bottom:857.317150pt;}
.y2a9{bottom:861.070667pt;}
.y62{bottom:863.456951pt;}
.y126{bottom:864.461222pt;}
.y4{bottom:865.180000pt;}
.y193{bottom:866.430837pt;}
.yc9{bottom:871.536526pt;}
.y2a8{bottom:877.010667pt;}
.y61{bottom:877.676327pt;}
.ya{bottom:877.698385pt;}
.y125{bottom:878.680597pt;}
.y192{bottom:880.650212pt;}
.yc8{bottom:889.311069pt;}
.y60{bottom:891.895703pt;}
.y124{bottom:892.899973pt;}
.y191{bottom:894.869588pt;}
.y3{bottom:898.388000pt;}
.y9{bottom:903.551205pt;}
.y5f{bottom:906.115078pt;}
.y123{bottom:907.119348pt;}
.y2a7{bottom:908.890667pt;}
.y190{bottom:909.088963pt;}
.y2a6{bottom:924.830667pt;}
.y2a5{bottom:940.772000pt;}
.y5e{bottom:941.404664pt;}
.y2a4{bottom:956.712000pt;}
.y2{bottom:976.432000pt;}
.y2a3{bottom:988.592000pt;}
.y1{bottom:992.372000pt;}
.h11{height:22.849105pt;}
.h16{height:23.640214pt;}
.hd{height:25.625499pt;}
.hc{height:26.638937pt;}
.h1d{height:28.002433pt;}
.h1e{height:28.064084pt;}
.he{height:29.782823pt;}
.h14{height:30.412291pt;}
.hf{height:30.444663pt;}
.h18{height:30.798475pt;}
.h1b{height:31.111013pt;}
.h10{height:32.807778pt;}
.h12{height:33.159705pt;}
.hb{height:33.505816pt;}
.ha{height:34.250389pt;}
.h19{height:35.349667pt;}
.h1c{height:35.931554pt;}
.h8{height:38.055734pt;}
.h9{height:40.765334pt;}
.h2{height:40.914115pt;}
.h7{height:45.667186pt;}
.h4{height:49.097267pt;}
.h1f{height:50.477173pt;}
.h15{height:55.145747pt;}
.h13{height:56.182644pt;}
.h6{height:62.365173pt;}
.h3{height:84.856152pt;}
.h1a{height:149.628220pt;}
.h17{height:311.725458pt;}
.h5{height:1027.625280pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:249.380366pt;}
.w2{width:311.725458pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x78{left:9.975128pt;}
.x7a{left:14.590483pt;}
.x77{left:20.071742pt;}
.x83{left:22.963689pt;}
.x76{left:25.856051pt;}
.x75{left:31.631562pt;}
.x79{left:56.777242pt;}
.xf{left:69.617930pt;}
.x69{left:71.090722pt;}
.x38{left:73.027778pt;}
.x87{left:74.522080pt;}
.x34{left:77.235592pt;}
.x10{left:82.544989pt;}
.x6a{left:87.586195pt;}
.x37{left:89.395824pt;}
.x31{left:91.048848pt;}
.x1{left:102.349333pt;}
.x6b{left:104.072834pt;}
.x45{left:107.557025pt;}
.x41{left:108.906432pt;}
.x2{left:111.282167pt;}
.x46{left:118.376933pt;}
.x15{left:119.340981pt;}
.x6c{left:120.568307pt;}
.x16{left:123.973080pt;}
.x93{left:129.221333pt;}
.x3d{left:136.440821pt;}
.x32{left:137.373728pt;}
.x55{left:139.351129pt;}
.x7e{left:143.374697pt;}
.x56{left:144.761731pt;}
.x42{left:146.715776pt;}
.x57{left:151.486708pt;}
.x1d{left:153.089129pt;}
.x43{left:156.011114pt;}
.x5{left:158.215578pt;}
.x1e{left:163.909037pt;}
.x6d{left:170.046237pt;}
.xd{left:172.467391pt;}
.x1b{left:174.540807pt;}
.x7b{left:175.607357pt;}
.x1c{left:179.950112pt;}
.x4{left:182.311574pt;}
.x5a{left:184.313627pt;}
.x6e{left:186.541709pt;}
.x7{left:188.256750pt;}
.x5b{left:189.724230pt;}
.x5c{left:196.433637pt;}
.x5d{left:201.842942pt;}
.x6f{left:203.037181pt;}
.xc{left:205.103576pt;}
.x85{left:208.189311pt;}
.x6{left:214.788166pt;}
.x70{left:219.532654pt;}
.x35{left:221.463838pt;}
.x3f{left:225.750800pt;}
.x7f{left:231.576605pt;}
.x71{left:236.019293pt;}
.x80{left:237.952553pt;}
.x88{left:243.033683pt;}
.x36{left:245.952979pt;}
.x40{left:250.241238pt;}
.x72{left:252.514766pt;}
.x89{left:259.951569pt;}
.x73{left:269.010238pt;}
.x8a{left:276.868394pt;}
.x58{left:281.094649pt;}
.x74{left:285.505710pt;}
.x59{left:286.505252pt;}
.x8b{left:293.786279pt;}
.x81{left:300.528704pt;}
.x82{left:306.904652pt;}
.x8c{left:310.704165pt;}
.x7c{left:313.852800pt;}
.x7d{left:320.227450pt;}
.x13{left:326.940750pt;}
.x3e{left:328.140944pt;}
.x44{left:330.887765pt;}
.x14{left:333.245335pt;}
.x3{left:336.474829pt;}
.x19{left:345.716969pt;}
.x11{left:347.475090pt;}
.x12{left:352.432863pt;}
.x33{left:354.695715pt;}
.x1a{left:356.536877pt;}
.x8d{left:360.361999pt;}
.x54{left:374.964067pt;}
.x51{left:410.770061pt;}
.x17{left:412.363399pt;}
.x1f{left:416.422000pt;}
.x4b{left:418.103201pt;}
.x18{left:425.290458pt;}
.x20{left:427.241908pt;}
.x91{left:428.568390pt;}
.x23{left:430.061390pt;}
.x86{left:432.391712pt;}
.x24{left:435.471993pt;}
.x92{left:448.026180pt;}
.xe{left:458.677899pt;}
.x84{left:462.239472pt;}
.x9{left:479.069514pt;}
.x67{left:485.693286pt;}
.x52{left:493.179899pt;}
.x27{left:497.459076pt;}
.x53{left:498.589204pt;}
.x8{left:504.900277pt;}
.x68{left:506.431335pt;}
.xb{left:507.734031pt;}
.x28{left:518.609732pt;}
.x47{left:522.801976pt;}
.x63{left:527.588478pt;}
.x29{left:529.040388pt;}
.x5e{left:531.248745pt;}
.x48{left:532.354220pt;}
.xa{left:534.266745pt;}
.x2a{left:539.858999pt;}
.x4e{left:542.804339pt;}
.x64{left:547.830880pt;}
.x4f{left:553.622950pt;}
.x21{left:577.563245pt;}
.x22{left:582.972550pt;}
.x8e{left:584.138215pt;}
.x65{left:596.295349pt;}
.x39{left:601.617721pt;}
.x66{left:605.014594pt;}
.x2d{left:608.891544pt;}
.x3a{left:611.934197pt;}
.x2e{left:614.302146pt;}
.x4d{left:618.659174pt;}
.x3b{left:634.622398pt;}
.x4c{left:639.334449pt;}
.x3c{left:644.940171pt;}
.x8f{left:651.957681pt;}
.x50{left:653.750242pt;}
.x2f{left:655.225507pt;}
.x49{left:662.472081pt;}
.x30{left:666.045415pt;}
.x90{left:668.911750pt;}
.x4a{left:672.023028pt;}
.x2b{left:677.296095pt;}
.x5f{left:681.653122pt;}
.x25{left:685.921919pt;}
.x60{left:687.063725pt;}
.x26{left:691.332522pt;}
.x61{left:693.840603pt;}
.x2c{left:701.345381pt;}
.x62{left:718.567187pt;}
}




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