
    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_a4e18dd4c154b5d238392a9d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_edd7a2cf91367f4b841e5a3f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_53cbbf67d1bb8d942a6999b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_5eda9a3392a6e66d3290521d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_1ebda8ae2fd1225a7157067a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;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_0efefbe74d1979bdcfeaa0da.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_7e2cb5a83f24c0d8c1c5b08c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000488;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_d9116db1e05a1e02c3e14161.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_7c03313e57bc2ec253cae182.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.206055;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_185ab0dc20b68f04f7eb1099.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.221680;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_18ce5dd61b705d1d508c0727.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727539;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_178c47e496645cc81957160f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.388000;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_557f2b11cc46c2aa4dcc0dfb.woff2')format("woff");}.fff{font-family:fff;line-height:1.000488;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_878e0a00ffa5475088fb98b7.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;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_3ac4c255d095e454017fd3c7.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.206055;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_3a5efab5664aaa57d34edd09.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.968262;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_18ce5dd61b705d1d508c0727.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.727539;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_17039f459adb8fb0bc9e0a69.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.221680;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_9350ed6752a34aeac4f3afbb.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.900000;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_6926d5bd9825c9cc404ce746.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.717000;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;}
.m8{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);}
.m13{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);}
.m26{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);}
.m27{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);}
.m6{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);}
.m1c{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);}
.m1b{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);}
.me{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);}
.m19{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);}
.m18{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);}
.m3{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);}
.m1d{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);}
.ma{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);}
.m1a{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);}
.m16{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);}
.m24{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);}
.m15{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);}
.m2{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);}
.m5{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);}
.m1f{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);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m23{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);}
.m28{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);}
.m9{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);}
.mb{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);}
.mf{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);}
.m1e{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);}
.m21{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);}
.m12{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);}
.md{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);}
.m17{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);}
.m25{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);}
.m20{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);}
.m11{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);}
.m2c{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);}
.m7{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);}
.m14{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);}
.mc{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);}
.m22{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);}
.m10{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);}
.m4{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:8.694000px;}
.v4{vertical-align:12.906000px;}
.v3{vertical-align:32.874000px;}
.ls4a{letter-spacing:-3.865716px;}
.ls48{letter-spacing:-0.192384px;}
.ls4b{letter-spacing:-0.186372px;}
.ls2b{letter-spacing:-0.132264px;}
.ls45{letter-spacing:-0.126252px;}
.ls46{letter-spacing:-0.108216px;}
.ls2a{letter-spacing:-0.102204px;}
.ls34{letter-spacing:-0.090180px;}
.ls44{letter-spacing:-0.078156px;}
.ls2d{letter-spacing:-0.072144px;}
.ls2c{letter-spacing:-0.066132px;}
.ls35{letter-spacing:-0.060120px;}
.ls2f{letter-spacing:-0.054108px;}
.ls31{letter-spacing:-0.048096px;}
.ls36{letter-spacing:-0.042084px;}
.ls49{letter-spacing:-0.030060px;}
.ls28{letter-spacing:-0.028728px;}
.ls47{letter-spacing:-0.024048px;}
.ls2e{letter-spacing:-0.018036px;}
.ls30{letter-spacing:-0.012024px;}
.ls32{letter-spacing:-0.006012px;}
.ls29{letter-spacing:-0.004788px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000002px;}
.ls4e{letter-spacing:0.000009px;}
.ls9{letter-spacing:0.000326px;}
.ls4f{letter-spacing:0.000496px;}
.ls4c{letter-spacing:0.000800px;}
.ls4d{letter-spacing:0.001036px;}
.ls50{letter-spacing:0.001416px;}
.ls12{letter-spacing:0.002782px;}
.lsf{letter-spacing:0.002999px;}
.lsb{letter-spacing:0.003219px;}
.ls17{letter-spacing:0.006012px;}
.ls41{letter-spacing:0.008182px;}
.ls20{letter-spacing:0.012024px;}
.ls1c{letter-spacing:0.018036px;}
.ls19{letter-spacing:0.024048px;}
.ls1d{letter-spacing:0.030060px;}
.ls26{letter-spacing:0.032400px;}
.ls22{letter-spacing:0.036072px;}
.ls21{letter-spacing:0.042084px;}
.ls3f{letter-spacing:0.048096px;}
.ls25{letter-spacing:0.054108px;}
.ls18{letter-spacing:0.060120px;}
.ls40{letter-spacing:0.066132px;}
.ls3d{letter-spacing:0.070200px;}
.ls1e{letter-spacing:0.072144px;}
.ls27{letter-spacing:0.075600px;}
.ls23{letter-spacing:0.078156px;}
.ls1a{letter-spacing:0.090180px;}
.ls3e{letter-spacing:0.096192px;}
.ls1b{letter-spacing:0.120240px;}
.ls16{letter-spacing:0.177156px;}
.ls24{letter-spacing:0.180360px;}
.ls3c{letter-spacing:0.181944px;}
.ls15{letter-spacing:0.191520px;}
.ls1f{letter-spacing:0.192384px;}
.ls33{letter-spacing:0.817632px;}
.lsc{letter-spacing:5.259600px;}
.ls3{letter-spacing:11.954850px;}
.lsa{letter-spacing:14.644094px;}
.ls6{letter-spacing:14.704798px;}
.ls7{letter-spacing:14.764573px;}
.ls13{letter-spacing:14.776888px;}
.ls10{letter-spacing:14.824349px;}
.ls2{letter-spacing:14.884124px;}
.ls42{letter-spacing:14.934667px;}
.lsd{letter-spacing:14.943900px;}
.ls4{letter-spacing:15.063451px;}
.ls3a{letter-spacing:15.123227px;}
.ls14{letter-spacing:15.362329px;}
.ls43{letter-spacing:16.000435px;}
.lse{letter-spacing:18.709763px;}
.ls39{letter-spacing:19.008641px;}
.ls11{letter-spacing:19.427070px;}
.ls37{letter-spacing:19.606397px;}
.ls3b{letter-spacing:21.758318px;}
.ls5{letter-spacing:25.643732px;}
.ls1{letter-spacing:28.453654px;}
.ls38{letter-spacing:94.292700px;}
.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;}
}
.ws90{word-spacing:-60.120000px;}
.wsd{word-spacing:-22.718660px;}
.wsd4{word-spacing:-15.126192px;}
.wsd6{word-spacing:-15.120180px;}
.wsd5{word-spacing:-15.030000px;}
.ws2a{word-spacing:-14.943900px;}
.ws12b{word-spacing:-13.449600px;}
.ws8d{word-spacing:-12.161520px;}
.ws8e{word-spacing:-11.970000px;}
.ws2f{word-spacing:-11.955150px;}
.ws6{word-spacing:-10.460700px;}
.ws100{word-spacing:-3.535056px;}
.wsff{word-spacing:-3.486960px;}
.wsd1{word-spacing:-2.988780px;}
.ws110{word-spacing:-2.819628px;}
.ws10f{word-spacing:-2.783556px;}
.wscd{word-spacing:-2.749678px;}
.ws66{word-spacing:-2.689902px;}
.wsf5{word-spacing:-2.446884px;}
.wsf4{word-spacing:-2.398788px;}
.ws107{word-spacing:-2.356704px;}
.ws40{word-spacing:-2.271473px;}
.ws2d{word-spacing:-2.211697px;}
.ws124{word-spacing:-2.151922px;}
.ws24{word-spacing:-2.092146px;}
.ws5e{word-spacing:-2.032370px;}
.ws108{word-spacing:-1.989972px;}
.ws2c{word-spacing:-1.912819px;}
.ws2b{word-spacing:-1.853044px;}
.ws63{word-spacing:-1.733492px;}
.wscf{word-spacing:-1.673717px;}
.ws6b{word-spacing:-1.613941px;}
.wsc7{word-spacing:-1.554166px;}
.ws25{word-spacing:-1.494390px;}
.ws1a{word-spacing:-1.452557px;}
.ws49{word-spacing:-1.434614px;}
.ws65{word-spacing:-1.315063px;}
.ws28{word-spacing:-1.255288px;}
.wsdf{word-spacing:-1.244484px;}
.ws121{word-spacing:-1.195512px;}
.ws16{word-spacing:-1.183565px;}
.wse6{word-spacing:-1.178352px;}
.ws17{word-spacing:-1.129766px;}
.ws68{word-spacing:-1.075961px;}
.wscc{word-spacing:-1.016185px;}
.wse5{word-spacing:-1.004004px;}
.wsde{word-spacing:-0.985968px;}
.ws83{word-spacing:-0.956410px;}
.wse0{word-spacing:-0.931860px;}
.wse7{word-spacing:-0.907812px;}
.ws6d{word-spacing:-0.896634px;}
.ws7f{word-spacing:-0.836858px;}
.ws7e{word-spacing:-0.717307px;}
.wse4{word-spacing:-0.685368px;}
.ws128{word-spacing:-0.645581px;}
.ws10b{word-spacing:-0.619236px;}
.ws10a{word-spacing:-0.595188px;}
.ws3d{word-spacing:-0.537980px;}
.ws51{word-spacing:-0.478205px;}
.ws5d{word-spacing:-0.418429px;}
.ws13d{word-spacing:-0.376589px;}
.wsc6{word-spacing:-0.358654px;}
.ws99{word-spacing:-0.354708px;}
.wsbc{word-spacing:-0.324648px;}
.ws12d{word-spacing:-0.322790px;}
.ws29{word-spacing:-0.298878px;}
.wse3{word-spacing:-0.288576px;}
.wsc2{word-spacing:-0.282564px;}
.ws93{word-spacing:-0.277704px;}
.wsbb{word-spacing:-0.276552px;}
.ws1b{word-spacing:-0.268992px;}
.ws109{word-spacing:-0.246492px;}
.ws3c{word-spacing:-0.239102px;}
.ws105{word-spacing:-0.234468px;}
.ws11{word-spacing:-0.215194px;}
.wsc4{word-spacing:-0.191282px;}
.ws34{word-spacing:-0.179327px;}
.ws1d{word-spacing:-0.161395px;}
.ws21{word-spacing:-0.119551px;}
.ws18{word-spacing:-0.107597px;}
.ws94{word-spacing:-0.081396px;}
.ws8f{word-spacing:-0.060120px;}
.ws22{word-spacing:-0.059776px;}
.ws92{word-spacing:-0.057456px;}
.ws19{word-spacing:-0.053798px;}
.ws30{word-spacing:-0.047821px;}
.ws2{word-spacing:-0.041843px;}
.ws158{word-spacing:-0.007555px;}
.wsd7{word-spacing:-0.002168px;}
.ws0{word-spacing:0.000000px;}
.wsf3{word-spacing:0.030060px;}
.wsd0{word-spacing:0.053798px;}
.ws103{word-spacing:0.054108px;}
.ws32{word-spacing:0.059776px;}
.ws106{word-spacing:0.060120px;}
.wsa4{word-spacing:0.066132px;}
.wsb3{word-spacing:0.078156px;}
.ws3{word-spacing:0.083686px;}
.wsc3{word-spacing:0.084168px;}
.wsb9{word-spacing:0.090180px;}
.wsb2{word-spacing:0.096192px;}
.ws125{word-spacing:0.107597px;}
.wsbf{word-spacing:0.108000px;}
.wsdd{word-spacing:0.113400px;}
.wsa3{word-spacing:0.114228px;}
.ws48{word-spacing:0.119551px;}
.wsf6{word-spacing:0.120240px;}
.wsbe{word-spacing:0.151200px;}
.wsbd{word-spacing:0.156312px;}
.ws134{word-spacing:0.161395px;}
.ws27{word-spacing:0.179327px;}
.ws1c{word-spacing:0.215194px;}
.ws53{word-spacing:0.239102px;}
.ws126{word-spacing:0.268992px;}
.ws36{word-spacing:0.298878px;}
.ws154{word-spacing:0.322790px;}
.ws33{word-spacing:0.358654px;}
.ws14a{word-spacing:0.376589px;}
.ws35{word-spacing:0.418429px;}
.wsb4{word-spacing:0.420840px;}
.wse{word-spacing:0.430387px;}
.ws98{word-spacing:0.432864px;}
.ws97{word-spacing:0.450900px;}
.ws23{word-spacing:0.478205px;}
.ws118{word-spacing:0.537980px;}
.wsba{word-spacing:0.547092px;}
.ws96{word-spacing:0.559116px;}
.ws6a{word-spacing:0.597756px;}
.ws147{word-spacing:0.645581px;}
.ws3e{word-spacing:0.657532px;}
.wsdb{word-spacing:0.717307px;}
.ws131{word-spacing:0.753178px;}
.wscb{word-spacing:0.777083px;}
.ws104{word-spacing:0.811620px;}
.wsb5{word-spacing:0.835668px;}
.ws47{word-spacing:0.836858px;}
.ws13a{word-spacing:0.860774px;}
.ws11e{word-spacing:0.896634px;}
.wsca{word-spacing:0.956410px;}
.ws14c{word-spacing:1.022170px;}
.wsd8{word-spacing:1.075961px;}
.ws12{word-spacing:1.129766px;}
.ws67{word-spacing:1.135736px;}
.wsb1{word-spacing:1.142280px;}
.ws139{word-spacing:1.160068px;}
.wsf0{word-spacing:1.166328px;}
.wsc1{word-spacing:1.178352px;}
.wsf1{word-spacing:1.184364px;}
.ws11c{word-spacing:1.195512px;}
.wsc0{word-spacing:1.220436px;}
.wsb0{word-spacing:1.226448px;}
.wsa2{word-spacing:1.250496px;}
.ws26{word-spacing:1.255288px;}
.ws60{word-spacing:1.315063px;}
.ws15{word-spacing:1.344960px;}
.ws5f{word-spacing:1.374839px;}
.wsc{word-spacing:1.380812px;}
.ws15c{word-spacing:1.398758px;}
.wsa1{word-spacing:1.448892px;}
.ws152{word-spacing:1.452557px;}
.wsa0{word-spacing:1.466928px;}
.wsf2{word-spacing:1.490976px;}
.ws62{word-spacing:1.494390px;}
.wsae{word-spacing:1.503000px;}
.ws9f{word-spacing:1.509012px;}
.wsac{word-spacing:1.521036px;}
.wsad{word-spacing:1.545084px;}
.ws69{word-spacing:1.554166px;}
.ws117{word-spacing:1.613941px;}
.ws8a{word-spacing:1.673717px;}
.ws61{word-spacing:1.733492px;}
.ws84{word-spacing:1.793268px;}
.ws43{word-spacing:1.853044px;}
.ws112{word-spacing:1.905804px;}
.wsc9{word-spacing:1.912819px;}
.ws14{word-spacing:1.936742px;}
.ws54{word-spacing:1.972595px;}
.ws162{word-spacing:1.990541px;}
.ws7b{word-spacing:2.032370px;}
.ws138{word-spacing:2.044339px;}
.ws4a{word-spacing:2.092146px;}
.ws13{word-spacing:2.098138px;}
.wsc5{word-spacing:2.151922px;}
.ws3a{word-spacing:2.271473px;}
.wsa5{word-spacing:2.308608px;}
.ws80{word-spacing:2.331248px;}
.ws4e{word-spacing:2.391024px;}
.ws150{word-spacing:2.420928px;}
.ws113{word-spacing:2.440872px;}
.ws64{word-spacing:2.450800px;}
.ws1{word-spacing:2.508923px;}
.ws115{word-spacing:2.510575px;}
.wsaf{word-spacing:2.537064px;}
.wsa6{word-spacing:2.627244px;}
.ws116{word-spacing:2.630126px;}
.ws11d{word-spacing:2.689902px;}
.ws14f{word-spacing:2.689920px;}
.wsd9{word-spacing:2.749678px;}
.ws5c{word-spacing:2.809453px;}
.ws145{word-spacing:2.851315px;}
.ws41{word-spacing:2.869229px;}
.wsf{word-spacing:2.869236px;}
.ws15b{word-spacing:2.905114px;}
.ws6c{word-spacing:2.929004px;}
.ws9e{word-spacing:2.957904px;}
.ws10{word-spacing:2.978829px;}
.ws9d{word-spacing:3.042072px;}
.ws9c{word-spacing:3.108204px;}
.ws57{word-spacing:3.108331px;}
.ws11b{word-spacing:3.168107px;}
.ws155{word-spacing:3.218429px;}
.ws13e{word-spacing:3.220291px;}
.ws14d{word-spacing:3.221059px;}
.ws157{word-spacing:3.221578px;}
.ws127{word-spacing:3.224822px;}
.ws12a{word-spacing:3.227904px;}
.ws59{word-spacing:3.287658px;}
.wsa8{word-spacing:3.324636px;}
.ws12f{word-spacing:3.335501px;}
.wsa9{word-spacing:3.384756px;}
.ws45{word-spacing:3.407209px;}
.ws42{word-spacing:3.466985px;}
.ws165{word-spacing:3.496896px;}
.ws4f{word-spacing:3.526760px;}
.ws20{word-spacing:3.586536px;}
.ws13c{word-spacing:3.604493px;}
.ws79{word-spacing:3.646312px;}
.ws114{word-spacing:3.649284px;}
.ws130{word-spacing:3.658291px;}
.wsb7{word-spacing:3.691368px;}
.ws4d{word-spacing:3.706087px;}
.wsb6{word-spacing:3.715416px;}
.ws15f{word-spacing:3.765888px;}
.wsda{word-spacing:3.885414px;}
.ws38{word-spacing:4.004965px;}
.ws44{word-spacing:4.124516px;}
.ws5b{word-spacing:4.184292px;}
.ws12c{word-spacing:4.196275px;}
.ws11f{word-spacing:4.244068px;}
.ws56{word-spacing:4.423394px;}
.ws55{word-spacing:4.483170px;}
.ws156{word-spacing:4.519066px;}
.ws52{word-spacing:4.542946px;}
.ws13b{word-spacing:4.572864px;}
.ws82{word-spacing:4.602721px;}
.ws31{word-spacing:4.662497px;}
.ws10e{word-spacing:4.689360px;}
.ws10d{word-spacing:4.827636px;}
.ws50{word-spacing:4.841824px;}
.ws10c{word-spacing:4.857696px;}
.ws133{word-spacing:4.895654px;}
.ws3b{word-spacing:5.021150px;}
.ws81{word-spacing:5.080926px;}
.ws4b{word-spacing:5.200477px;}
.ws7d{word-spacing:5.260253px;}
.wsa{word-spacing:5.481407px;}
.ws46{word-spacing:5.559131px;}
.ws13f{word-spacing:5.648832px;}
.ws7c{word-spacing:5.678682px;}
.wsee{word-spacing:5.807592px;}
.wsed{word-spacing:5.843664px;}
.wsef{word-spacing:5.849676px;}
.ws3f{word-spacing:5.917784px;}
.ws102{word-spacing:5.981940px;}
.ws119{word-spacing:6.037336px;}
.wse8{word-spacing:6.210396px;}
.ws101{word-spacing:6.222420px;}
.wse9{word-spacing:6.234444px;}
.ws120{word-spacing:6.276438px;}
.wsa7{word-spacing:6.547068px;}
.ws9a{word-spacing:6.571116px;}
.ws58{word-spacing:6.575316px;}
.ws9b{word-spacing:6.577128px;}
.ws37{word-spacing:6.754643px;}
.wsd3{word-spacing:6.814418px;}
.wse1{word-spacing:6.907788px;}
.wsd2{word-spacing:6.933970px;}
.wsf7{word-spacing:6.943860px;}
.wsf8{word-spacing:6.949872px;}
.wse2{word-spacing:6.997968px;}
.ws39{word-spacing:7.053521px;}
.ws123{word-spacing:7.173072px;}
.ws136{word-spacing:7.262784px;}
.ws111{word-spacing:7.274520px;}
.wsc8{word-spacing:7.292623px;}
.wsce{word-spacing:7.352399px;}
.ws8b{word-spacing:7.471950px;}
.ws7a{word-spacing:7.651277px;}
.wseb{word-spacing:7.653276px;}
.ws122{word-spacing:7.770828px;}
.ws4c{word-spacing:7.950155px;}
.ws11a{word-spacing:8.009930px;}
.wsec{word-spacing:8.128224px;}
.wsea{word-spacing:8.146260px;}
.ws8c{word-spacing:8.189257px;}
.ws5a{word-spacing:8.368584px;}
.wsab{word-spacing:9.414792px;}
.wsaa{word-spacing:9.504972px;}
.wsfc{word-spacing:9.625212px;}
.wsfa{word-spacing:9.787536px;}
.ws8{word-spacing:9.833058px;}
.wsf9{word-spacing:9.919800px;}
.wsfb{word-spacing:10.009980px;}
.wsfd{word-spacing:10.082124px;}
.wsfe{word-spacing:10.106172px;}
.ws4{word-spacing:10.418831px;}
.wsb8{word-spacing:11.206368px;}
.wsdc{word-spacing:11.615688px;}
.ws95{word-spacing:11.620476px;}
.ws9{word-spacing:11.841512px;}
.ws2e{word-spacing:11.910929px;}
.ws1f{word-spacing:12.050842px;}
.ws143{word-spacing:12.965414px;}
.ws159{word-spacing:13.073011px;}
.ws15a{word-spacing:13.126810px;}
.ws161{word-spacing:13.180608px;}
.ws142{word-spacing:13.288205px;}
.ws15e{word-spacing:13.384301px;}
.ws135{word-spacing:13.386499px;}
.ws164{word-spacing:13.388448px;}
.ws14e{word-spacing:13.388602px;}
.ws149{word-spacing:13.389254px;}
.ws146{word-spacing:13.391818px;}
.ws163{word-spacing:13.393795px;}
.ws141{word-spacing:13.395581px;}
.ws129{word-spacing:13.395802px;}
.ws160{word-spacing:13.395936px;}
.ws12e{word-spacing:13.449600px;}
.ws137{word-spacing:13.557197px;}
.ws14b{word-spacing:13.772390px;}
.ws148{word-spacing:14.041382px;}
.ws132{word-spacing:14.148979px;}
.ws140{word-spacing:14.525568px;}
.ws76{word-spacing:14.645022px;}
.ws15d{word-spacing:14.794560px;}
.ws153{word-spacing:14.848358px;}
.ws6e{word-spacing:14.884124px;}
.ws70{word-spacing:15.183002px;}
.ws72{word-spacing:15.242778px;}
.ws5{word-spacing:15.481836px;}
.ws151{word-spacing:15.816730px;}
.wsb{word-spacing:16.067635px;}
.ws144{word-spacing:16.247117px;}
.ws74{word-spacing:17.215373px;}
.ws78{word-spacing:18.470660px;}
.ws75{word-spacing:18.512958px;}
.ws6f{word-spacing:19.288178px;}
.ws71{word-spacing:19.458848px;}
.ws7{word-spacing:22.339429px;}
.ws85{word-spacing:22.619144px;}
.ws1e{word-spacing:27.494255px;}
.ws73{word-spacing:28.290149px;}
.ws77{word-spacing:33.454855px;}
.ws86{word-spacing:88.659392px;}
.ws88{word-spacing:128.446132px;}
.ws87{word-spacing:140.401282px;}
.ws89{word-spacing:176.266732px;}
.ws91{word-spacing:211.320115px;}
._1b{margin-left:-23.252708px;}
._45{margin-left:-20.216338px;}
._8{margin-left:-13.879987px;}
._5{margin-left:-12.158438px;}
._14{margin-left:-7.567600px;}
._7{margin-left:-6.025421px;}
._e{margin-left:-5.003251px;}
._0{margin-left:-3.891380px;}
._15{margin-left:-2.821404px;}
._2{margin-left:-1.506341px;}
._35{width:1.254456px;}
._44{width:2.301470px;}
._1a{width:3.837589px;}
._1{width:13.096796px;}
._12{width:14.358001px;}
._c{width:15.816715px;}
._d{width:16.946482px;}
._f{width:18.004406px;}
._13{width:19.116220px;}
._b{width:21.088930px;}
._a{width:22.918118px;}
._3d{width:24.149342px;}
._3{width:25.314894px;}
._34{width:26.540366px;}
._19{width:27.640272px;}
._18{width:29.553048px;}
._4{width:31.256572px;}
._1d{width:32.876580px;}
._6{width:33.892992px;}
._16{width:35.865360px;}
._1c{width:39.045418px;}
._1e{width:64.970309px;}
._9{width:69.374010px;}
._37{width:107.596800px;}
._22{width:173.971343px;}
._28{width:176.266732px;}
._1f{width:178.753403px;}
._21{width:184.730978px;}
._27{width:197.929463px;}
._2f{width:200.177032px;}
._25{width:204.050500px;}
._2a{width:206.011145px;}
._39{width:210.489354px;}
._20{width:217.201165px;}
._32{width:218.492321px;}
._2b{width:220.500787px;}
._2e{width:221.791943px;}
._2d{width:232.599398px;}
._3c{width:233.954074px;}
._26{width:241.063645px;}
._3a{width:246.342874px;}
._33{width:253.544821px;}
._3e{width:259.792474px;}
._2c{width:264.973945px;}
._3b{width:268.023629px;}
._29{width:280.802563px;}
._24{width:292.805534px;}
._23{width:314.372624px;}
._31{width:328.623163px;}
._3f{width:337.477363px;}
._38{width:355.697046px;}
._30{width:362.193224px;}
._40{width:546.537946px;}
._41{width:603.133862px;}
._10{width:882.019298px;}
._43{width:2081.717064px;}
._36{width:2105.489484px;}
._42{width:2514.463385px;}
._11{width:2536.914671px;}
._17{width:2538.373385px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:29.887800px;}
.fsb{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fsa{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:60.120000px;}
.fsf{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs6{font-size:90.874640px;}
.fs8{font-size:107.596800px;}
.y1b5{bottom:-792.680550px;}
.y1d5{bottom:-725.719992px;}
.y1d4{bottom:-706.450029px;}
.y1d3{bottom:-687.280767px;}
.y1d2{bottom:-668.021325px;}
.y1d1{bottom:-648.761883px;}
.y1d0{bottom:-629.592621px;}
.y1cf{bottom:-592.421928px;}
.y1ce{bottom:-573.162486px;}
.y1cd{bottom:-535.903116px;}
.y1cc{bottom:-516.643674px;}
.y1cb{bottom:-497.474412px;}
.y1ca{bottom:-478.214970px;}
.y1c9{bottom:-458.955528px;}
.y1c8{bottom:-439.786266px;}
.y1c7{bottom:-420.526824px;}
.y1c6{bottom:-401.356059px;}
.y1c5{bottom:-364.096689px;}
.y1c4{bottom:-344.837247px;}
.y1c3{bottom:-307.666554px;}
.y109{bottom:-304.783050px;}
.y1c2{bottom:-288.407112px;}
.y1c1{bottom:-269.236347px;}
.y1c0{bottom:-249.976905px;}
.y1bf{bottom:-230.717463px;}
.y1be{bottom:-211.548201px;}
.y1bd{bottom:-192.288759px;}
.y1bc{bottom:-173.119497px;}
.y1bb{bottom:-153.860055px;}
.y1ba{bottom:-116.689362px;}
.y125{bottom:-104.803050px;}
.y124{bottom:-104.801745px;}
.y1b9{bottom:-97.429920px;}
.y123{bottom:-83.292312px;}
.y122{bottom:-64.123050px;}
.y1b8{bottom:-60.170550px;}
.y121{bottom:-27.313050px;}
.y1b7{bottom:-23.360550px;}
.y120{bottom:-4.803852px;}
.y1b6{bottom:-0.860400px;}
.y0{bottom:0.000000px;}
.y3c{bottom:9.233944px;}
.y3b{bottom:26.903761px;}
.y69{bottom:31.890000px;}
.y6{bottom:50.595005px;}
.y5{bottom:75.795004px;}
.y4{bottom:100.995005px;}
.y68{bottom:103.621500px;}
.y223{bottom:104.353500px;}
.y24a{bottom:104.533500px;}
.y39{bottom:104.646000px;}
.y105{bottom:112.027500px;}
.y1f4{bottom:115.969500px;}
.y164{bottom:118.056000px;}
.y9f{bottom:119.148000px;}
.ya8{bottom:119.596500px;}
.y67{bottom:122.449500px;}
.y38{bottom:122.535000px;}
.yb2{bottom:122.734500px;}
.y222{bottom:123.183000px;}
.y104{bottom:130.857000px;}
.y249{bottom:131.073000px;}
.y1f3{bottom:134.799000px;}
.ye1{bottom:136.632000px;}
.y163{bottom:136.885500px;}
.y9e{bottom:137.977500px;}
.ya7{bottom:138.426000px;}
.y23{bottom:139.264499px;}
.y37{bottom:140.422500px;}
.y66{bottom:141.279000px;}
.yb1{bottom:141.564000px;}
.y221{bottom:142.012500px;}
.y191{bottom:149.119500px;}
.y103{bottom:149.686500px;}
.y1f2{bottom:153.628500px;}
.ye0{bottom:155.461500px;}
.y162{bottom:155.715000px;}
.y9d{bottom:156.807000px;}
.ya6{bottom:157.255500px;}
.y248{bottom:157.614000px;}
.y36{bottom:158.310000px;}
.y65{bottom:160.108500px;}
.y220{bottom:160.842000px;}
.y281{bottom:163.756500px;}
.y102{bottom:168.516000px;}
.y1f1{bottom:172.458000px;}
.y190{bottom:172.761000px;}
.ydf{bottom:174.291000px;}
.y161{bottom:174.544500px;}
.y9c{bottom:175.636500px;}
.y131{bottom:175.690500px;}
.ya5{bottom:176.085000px;}
.y35{bottom:176.199000px;}
.yb0{bottom:178.326000px;}
.y64{bottom:178.938000px;}
.y21f{bottom:179.671500px;}
.y280{bottom:181.015500px;}
.y130{bottom:183.909000px;}
.y247{bottom:184.155000px;}
.y2b5{bottom:185.499000px;}
.y1b1{bottom:185.947500px;}
.y101{bottom:187.345500px;}
.y1f0{bottom:191.287500px;}
.yde{bottom:193.120500px;}
.y160{bottom:193.374000px;}
.y34{bottom:194.086500px;}
.y9b{bottom:194.466000px;}
.ya4{bottom:194.914500px;}
.y18f{bottom:196.401000px;}
.y1a{bottom:196.933500px;}
.yaf{bottom:197.155500px;}
.y63{bottom:197.767500px;}
.y27f{bottom:198.276000px;}
.y21e{bottom:198.501000px;}
.y2b4{bottom:202.759500px;}
.y1b0{bottom:204.777000px;}
.y100{bottom:206.173500px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y1ef{bottom:210.117000px;}
.y246{bottom:210.694500px;}
.ydd{bottom:211.950000px;}
.y33{bottom:211.974000px;}
.y15f{bottom:212.203500px;}
.y9a{bottom:213.295500px;}
.ya3{bottom:213.744000px;}
.y27e{bottom:215.536500px;}
.y12f{bottom:215.769000px;}
.y62{bottom:216.597000px;}
.y21d{bottom:217.330500px;}
.y2b3{bottom:220.020000px;}
.y18e{bottom:220.042500px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y1af{bottom:223.606500px;}
.y12d{bottom:223.989000px;}
.yff{bottom:225.003000px;}
.y245{bottom:228.268500px;}
.y32{bottom:229.863000px;}
.y15e{bottom:231.033000px;}
.y234{bottom:232.125000px;}
.y12e{bottom:232.207500px;}
.ya2{bottom:232.573500px;}
.y27d{bottom:232.797000px;}
.yae{bottom:233.917500px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.ydc{bottom:235.263000px;}
.y61{bottom:235.426500px;}
.y21c{bottom:236.160000px;}
.y99{bottom:236.608500px;}
.y2b2{bottom:237.280500px;}
.y1ae{bottom:242.436000px;}
.y18d{bottom:243.682500px;}
.yfe{bottom:243.832500px;}
.y244{bottom:245.844000px;}
.y1ee{bottom:246.879000px;}
.ya1{bottom:249.229500px;}
.y15d{bottom:249.862500px;}
.y27c{bottom:250.057500px;}
.y233{bottom:250.954500px;}
.ya0{bottom:251.403000px;}
.yad{bottom:252.747000px;}
.y60{bottom:254.256000px;}
.y2b1{bottom:254.541000px;}
.y21b{bottom:254.989500px;}
.y12c{bottom:255.849000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y1ad{bottom:261.265500px;}
.yfd{bottom:262.662000px;}
.y243{bottom:263.418000px;}
.y12b{bottom:264.067500px;}
.y1ed{bottom:265.708500px;}
.y27b{bottom:267.318000px;}
.y18c{bottom:267.324000px;}
.y15c{bottom:268.692000px;}
.ydb{bottom:268.887000px;}
.y232{bottom:269.784000px;}
.y98{bottom:270.232500px;}
.y2b0{bottom:271.801500px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y5f{bottom:273.085500px;}
.y21a{bottom:273.819000px;}
.y1ac{bottom:280.095000px;}
.yfc{bottom:281.491500px;}
.y27a{bottom:284.578500px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y15b{bottom:287.521500px;}
.yda{bottom:287.716500px;}
.y231{bottom:288.613500px;}
.y97{bottom:289.062000px;}
.yac{bottom:289.509000px;}
.y18b{bottom:290.964000px;}
.y5e{bottom:291.915000px;}
.y219{bottom:292.648500px;}
.y12a{bottom:295.927500px;}
.y1ab{bottom:298.924500px;}
.y31{bottom:299.892000px;}
.yfb{bottom:300.321000px;}
.y279{bottom:301.839000px;}
.y1ec{bottom:302.472000px;}
.y2af{bottom:306.321000px;}
.y15a{bottom:306.351000px;}
.yd9{bottom:306.546000px;}
.y230{bottom:307.443000px;}
.y96{bottom:307.891500px;}
.yab{bottom:308.338500px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y5d{bottom:310.744500px;}
.y218{bottom:311.478000px;}
.y18a{bottom:314.605500px;}
.y1aa{bottom:317.754000px;}
.y30{bottom:317.779500px;}
.y278{bottom:319.099500px;}
.y1eb{bottom:321.300000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y2ae{bottom:323.581500px;}
.y159{bottom:325.180500px;}
.yd8{bottom:325.375500px;}
.y22f{bottom:326.272500px;}
.y95{bottom:326.719500px;}
.y5c{bottom:329.574000px;}
.y217{bottom:330.307500px;}
.y129{bottom:330.535500px;}
.y2f{bottom:335.667000px;}
.y277{bottom:336.358500px;}
.y1a9{bottom:336.583500px;}
.y189{bottom:338.245500px;}
.y1ea{bottom:340.129500px;}
.y2ad{bottom:340.842000px;}
.y1b4{bottom:343.479585px;}
.y158{bottom:344.010000px;}
.yd7{bottom:344.205000px;}
.yaa{bottom:345.102000px;}
.y94{bottom:345.549000px;}
.yfa{bottom:348.100500px;}
.y11{bottom:348.133500px;}
.y216{bottom:349.137000px;}
.y5b{bottom:352.887000px;}
.y1b3{bottom:353.109450px;}
.y2e{bottom:353.554500px;}
.y276{bottom:353.619000px;}
.y1a8{bottom:355.413000px;}
.y2ac{bottom:358.102500px;}
.y1e9{bottom:358.959000px;}
.y157{bottom:362.839500px;}
.y22e{bottom:363.931500px;}
.y93{bottom:364.378500px;}
.yd6{bottom:367.518000px;}
.y128{bottom:367.639500px;}
.y215{bottom:367.966500px;}
.ya9{bottom:368.413500px;}
.yf9{bottom:369.499500px;}
.y188{bottom:369.865500px;}
.y275{bottom:370.879500px;}
.y11f{bottom:372.925599px;}
.y1a7{bottom:374.242500px;}
.y2ab{bottom:375.363000px;}
.y1e8{bottom:377.788500px;}
.y2d{bottom:380.409000px;}
.y156{bottom:381.669000px;}
.y22d{bottom:382.761000px;}
.y92{bottom:383.208000px;}
.y127{bottom:386.469000px;}
.y10{bottom:386.785499px;}
.y214{bottom:386.796000px;}
.yd5{bottom:387.691500px;}
.y274{bottom:388.140000px;}
.yf8{bottom:390.898500px;}
.y11e{bottom:392.185041px;}
.y2aa{bottom:392.623500px;}
.y1a6{bottom:393.072000px;}
.y1e7{bottom:396.618000px;}
.y2c{bottom:398.298000px;}
.y155{bottom:400.498500px;}
.y22c{bottom:401.589000px;}
.y91{bottom:402.037500px;}
.y273{bottom:405.400500px;}
.y213{bottom:405.624000px;}
.y187{bottom:406.969500px;}
.yf{bottom:408.044999px;}
.y2a9{bottom:409.884000px;}
.y11d{bottom:411.444483px;}
.y1a5{bottom:411.901500px;}
.yf7{bottom:412.297500px;}
.y1e6{bottom:415.447500px;}
.y2b{bottom:416.185500px;}
.y126{bottom:420.034500px;}
.y22b{bottom:420.418500px;}
.y90{bottom:420.867000px;}
.yd4{bottom:421.315500px;}
.y272{bottom:422.661000px;}
.y154{bottom:423.810000px;}
.y212{bottom:424.453500px;}
.y186{bottom:425.799000px;}
.y2a8{bottom:427.144500px;}
.y5a{bottom:428.037000px;}
.y11c{bottom:430.615248px;}
.y1a4{bottom:430.731000px;}
.yf6{bottom:433.696500px;}
.y2a{bottom:434.073000px;}
.y1e5{bottom:434.277000px;}
.y22a{bottom:439.248000px;}
.y8f{bottom:439.696500px;}
.y271{bottom:439.921500px;}
.yd3{bottom:440.145000px;}
.y106{bottom:442.464000px;}
.y153{bottom:442.639500px;}
.y211{bottom:443.283000px;}
.y2a7{bottom:444.403500px;}
.y59{bottom:447.493500px;}
.y185{bottom:449.112000px;}
.y1a3{bottom:449.560500px;}
.y11b{bottom:449.874690px;}
.y29{bottom:451.962000px;}
.y242{bottom:454.042500px;}
.yf5{bottom:455.095500px;}
.y270{bottom:457.182000px;}
.y229{bottom:458.077500px;}
.y8e{bottom:458.526000px;}
.yd2{bottom:458.974500px;}
.y152{bottom:461.469000px;}
.y2a6{bottom:461.664000px;}
.y210{bottom:462.112500px;}
.y1a2{bottom:468.390000px;}
.y11a{bottom:469.043952px;}
.y28{bottom:469.849500px;}
.y1e4{bottom:471.039000px;}
.y241{bottom:472.872000px;}
.y26f{bottom:474.441000px;}
.yf4{bottom:476.494500px;}
.y228{bottom:476.907000px;}
.y8d{bottom:477.355500px;}
.yd1{bottom:477.804000px;}
.y2a5{bottom:478.924500px;}
.y20f{bottom:480.942000px;}
.y184{bottom:482.736000px;}
.ye{bottom:484.864502px;}
.y58{bottom:484.884000px;}
.y1a1{bottom:487.219500px;}
.y27{bottom:487.737000px;}
.y151{bottom:487.771500px;}
.y119{bottom:488.303394px;}
.y1e3{bottom:489.868500px;}
.y240{bottom:491.701500px;}
.y227{bottom:495.736500px;}
.y8c{bottom:496.185000px;}
.yd0{bottom:496.633500px;}
.yf3{bottom:497.893500px;}
.y20e{bottom:499.771500px;}
.y183{bottom:501.565500px;}
.yd{bottom:502.864502px;}
.y57{bottom:504.340500px;}
.y26{bottom:505.626000px;}
.y1a0{bottom:506.049000px;}
.y150{bottom:506.601000px;}
.y118{bottom:507.562836px;}
.y26e{bottom:508.962000px;}
.y23f{bottom:510.531000px;}
.y2a4{bottom:513.445500px;}
.y226{bottom:514.566000px;}
.y8b{bottom:515.014500px;}
.ycf{bottom:515.463000px;}
.y20d{bottom:518.601000px;}
.yf2{bottom:519.292500px;}
.y182{bottom:520.395000px;}
.yc{bottom:520.864502px;}
.y25{bottom:523.513500px;}
.y56{bottom:523.798500px;}
.y26d{bottom:524.268000px;}
.y19f{bottom:524.877000px;}
.y14f{bottom:525.430500px;}
.y26c{bottom:526.222500px;}
.y1e2{bottom:526.630500px;}
.y117{bottom:526.733601px;}
.y2a3{bottom:528.750000px;}
.y23e{bottom:529.360500px;}
.y2a2{bottom:530.706000px;}
.y225{bottom:533.395500px;}
.y8a{bottom:533.844000px;}
.yce{bottom:534.292500px;}
.y20c{bottom:537.430500px;}
.yb{bottom:538.864499px;}
.y181{bottom:539.224500px;}
.y24{bottom:541.401000px;}
.y55{bottom:543.255000px;}
.y26b{bottom:543.483000px;}
.y19e{bottom:543.706500px;}
.y14e{bottom:544.260000px;}
.y1e1{bottom:545.460000px;}
.y2a1{bottom:545.956500px;}
.y116{bottom:545.993043px;}
.y2a0{bottom:547.966500px;}
.y23d{bottom:548.190000px;}
.yf1{bottom:552.331500px;}
.y89{bottom:552.673500px;}
.ycd{bottom:553.122000px;}
.y20b{bottom:556.260000px;}
.y224{bottom:556.708500px;}
.ya{bottom:556.864499px;}
.y180{bottom:558.054000px;}
.y26a{bottom:558.787500px;}
.y269{bottom:560.743500px;}
.y19d{bottom:562.536000px;}
.y54{bottom:562.711500px;}
.y14d{bottom:563.089500px;}
.y1e0{bottom:564.289500px;}
.y115{bottom:565.162305px;}
.y29f{bottom:565.227000px;}
.y23c{bottom:567.019500px;}
.y88{bottom:571.503000px;}
.ycc{bottom:571.951500px;}
.y20a{bottom:575.089500px;}
.y17f{bottom:576.883500px;}
.y268{bottom:578.004000px;}
.y14c{bottom:581.917500px;}
.y53{bottom:582.169500px;}
.y29e{bottom:582.487500px;}
.y1df{bottom:583.119000px;}
.y114{bottom:584.421747px;}
.y19c{bottom:585.849000px;}
.yf0{bottom:589.435500px;}
.y87{bottom:590.332500px;}
.ycb{bottom:590.781000px;}
.y209{bottom:593.919000px;}
.y267{bottom:595.264500px;}
.y17e{bottom:595.713000px;}
.y29d{bottom:599.746500px;}
.y14b{bottom:600.747000px;}
.y52{bottom:601.626000px;}
.y1de{bottom:601.948500px;}
.y113{bottom:603.681189px;}
.y19b{bottom:604.678500px;}
.yef{bottom:608.265000px;}
.y86{bottom:609.162000px;}
.yca{bottom:609.610500px;}
.y266{bottom:612.525000px;}
.y208{bottom:612.748500px;}
.y17d{bottom:614.541000px;}
.y29c{bottom:617.007000px;}
.y14a{bottom:619.576500px;}
.y1dd{bottom:620.778000px;}
.y51{bottom:621.082500px;}
.y112{bottom:622.850451px;}
.y19a{bottom:623.508000px;}
.yee{bottom:627.094500px;}
.y85{bottom:627.991500px;}
.yc9{bottom:628.440000px;}
.y265{bottom:629.784000px;}
.y207{bottom:631.578000px;}
.y29b{bottom:634.267500px;}
.y17c{bottom:637.854000px;}
.y149{bottom:638.406000px;}
.y1dc{bottom:639.607500px;}
.y50{bottom:640.540500px;}
.y111{bottom:642.109893px;}
.y199{bottom:642.337500px;}
.y9{bottom:645.510000px;}
.yed{bottom:645.924000px;}
.y84{bottom:646.821000px;}
.y264{bottom:647.044500px;}
.yc8{bottom:647.269500px;}
.y206{bottom:650.407500px;}
.y29a{bottom:651.528000px;}
.y17b{bottom:656.683500px;}
.y148{bottom:657.235500px;}
.y1db{bottom:658.437000px;}
.y4f{bottom:659.997000px;}
.y198{bottom:661.167000px;}
.y110{bottom:661.369335px;}
.y263{bottom:664.305000px;}
.yec{bottom:664.753500px;}
.y83{bottom:665.650500px;}
.yc7{bottom:666.099000px;}
.y8{bottom:666.771000px;}
.y299{bottom:668.788500px;}
.y205{bottom:669.237000px;}
.y17a{bottom:675.513000px;}
.y147{bottom:676.065000px;}
.y1da{bottom:677.266500px;}
.y4e{bottom:679.455000px;}
.y197{bottom:679.996500px;}
.y10f{bottom:680.538597px;}
.y262{bottom:681.565500px;}
.yeb{bottom:683.583000px;}
.y82{bottom:684.480000px;}
.yc6{bottom:684.928500px;}
.y298{bottom:686.049000px;}
.y204{bottom:688.066500px;}
.y179{bottom:694.342500px;}
.y146{bottom:694.894500px;}
.y196{bottom:698.826000px;}
.y4d{bottom:698.911500px;}
.y10e{bottom:699.798039px;}
.yea{bottom:702.412500px;}
.y81{bottom:703.309500px;}
.yc5{bottom:703.758000px;}
.y203{bottom:706.896000px;}
.y178{bottom:713.172000px;}
.y145{bottom:713.724000px;}
.y1d9{bottom:714.028500px;}
.y261{bottom:716.086500px;}
.y195{bottom:717.655500px;}
.y4c{bottom:718.368000px;}
.y10d{bottom:718.967301px;}
.y297{bottom:720.570000px;}
.ye9{bottom:721.242000px;}
.y80{bottom:722.139000px;}
.yc4{bottom:722.587500px;}
.y202{bottom:725.725500px;}
.y7{bottom:726.298500px;}
.y177{bottom:732.001500px;}
.y144{bottom:732.553500px;}
.y1d8{bottom:732.858000px;}
.y260{bottom:733.347000px;}
.y194{bottom:736.485000px;}
.y4b{bottom:737.826000px;}
.y296{bottom:737.829000px;}
.y10c{bottom:738.226743px;}
.y7f{bottom:740.968500px;}
.yc3{bottom:741.417000px;}
.ye8{bottom:744.555000px;}
.y25f{bottom:748.651500px;}
.y25e{bottom:750.607500px;}
.y176{bottom:750.831000px;}
.y143{bottom:751.383000px;}
.y3{bottom:752.599495px;}
.y295{bottom:755.089500px;}
.y193{bottom:755.314500px;}
.y4a{bottom:757.282500px;}
.y10b{bottom:757.486185px;}
.y7e{bottom:759.798000px;}
.yc2{bottom:760.246500px;}
.y201{bottom:763.384500px;}
.y25d{bottom:767.866500px;}
.y175{bottom:769.660500px;}
.y142{bottom:770.212500px;}
.y294{bottom:772.350000px;}
.y1d7{bottom:774.103500px;}
.y192{bottom:774.144000px;}
.y10a{bottom:776.656950px;}
.y49{bottom:776.739000px;}
.ye7{bottom:778.179000px;}
.y7d{bottom:778.627500px;}
.yc1{bottom:779.076000px;}
.y200{bottom:782.214000px;}
.y25c{bottom:785.127000px;}
.y174{bottom:788.490000px;}
.y141{bottom:789.042000px;}
.y293{bottom:789.610500px;}
.y23b{bottom:792.973500px;}
.y48{bottom:796.197000px;}
.ye6{bottom:797.008500px;}
.y7c{bottom:797.457000px;}
.yc0{bottom:797.904000px;}
.y25b{bottom:802.387500px;}
.y1d6{bottom:804.531000px;}
.y292{bottom:806.871000px;}
.y173{bottom:807.319500px;}
.y140{bottom:807.871500px;}
.y23a{bottom:811.803000px;}
.y47{bottom:815.653500px;}
.ye5{bottom:815.838000px;}
.y7b{bottom:816.286500px;}
.ybf{bottom:816.733500px;}
.y1ff{bottom:818.976000px;}
.y25a{bottom:819.648000px;}
.y291{bottom:824.131500px;}
.y172{bottom:826.149000px;}
.y1b2{bottom:826.960500px;}
.y239{bottom:830.632500px;}
.y108{bottom:831.377085px;}
.ye4{bottom:834.667500px;}
.y46{bottom:835.111500px;}
.y7a{bottom:835.114500px;}
.ybe{bottom:835.563000px;}
.y259{bottom:836.908500px;}
.y1fe{bottom:837.805500px;}
.y107{bottom:841.006950px;}
.y290{bottom:841.392000px;}
.y171{bottom:844.978500px;}
.y13f{bottom:848.005500px;}
.y238{bottom:849.462000px;}
.ye3{bottom:853.497000px;}
.y79{bottom:853.944000px;}
.y258{bottom:854.169000px;}
.ybd{bottom:854.392500px;}
.y45{bottom:854.568000px;}
.y28f{bottom:858.652500px;}
.y13e{bottom:862.201500px;}
.y170{bottom:863.808000px;}
.y237{bottom:868.291500px;}
.y257{bottom:871.429500px;}
.y78{bottom:872.773500px;}
.ybc{bottom:873.222000px;}
.y44{bottom:874.024500px;}
.y1fd{bottom:874.567500px;}
.y28e{bottom:875.913000px;}
.ye2{bottom:876.808500px;}
.y2{bottom:879.369000px;}
.y16f{bottom:882.637500px;}
.y13d{bottom:884.034000px;}
.y236{bottom:887.121000px;}
.y256{bottom:888.690000px;}
.y77{bottom:891.603000px;}
.ybb{bottom:892.051500px;}
.y13c{bottom:892.254000px;}
.y28d{bottom:893.172000px;}
.y1fc{bottom:893.397000px;}
.y16e{bottom:901.467000px;}
.y235{bottom:905.950500px;}
.y43{bottom:908.317500px;}
.y76{bottom:910.432500px;}
.yba{bottom:910.881000px;}
.y1fb{bottom:912.226500px;}
.y16d{bottom:920.296500px;}
.y255{bottom:923.209500px;}
.y13b{bottom:924.114000px;}
.y42{bottom:924.456000px;}
.y28c{bottom:927.693000px;}
.y75{bottom:929.262000px;}
.yb9{bottom:929.710500px;}
.y1fa{bottom:931.056000px;}
.y13a{bottom:932.332500px;}
.y16c{bottom:939.126000px;}
.y254{bottom:940.470000px;}
.y28b{bottom:944.953500px;}
.y74{bottom:948.091500px;}
.yb8{bottom:948.540000px;}
.y1f9{bottom:949.885500px;}
.y253{bottom:957.730500px;}
.y28a{bottom:962.214000px;}
.y16b{bottom:962.437500px;}
.y139{bottom:964.192500px;}
.y1{bottom:966.726000px;}
.y73{bottom:966.921000px;}
.yb7{bottom:967.369500px;}
.y1f8{bottom:968.715000px;}
.y41{bottom:969.180000px;}
.y138{bottom:972.411000px;}
.y252{bottom:974.991000px;}
.y289{bottom:979.474500px;}
.y16a{bottom:981.267000px;}
.y72{bottom:985.750500px;}
.yb6{bottom:986.199000px;}
.y1f7{bottom:987.544500px;}
.y2b8{bottom:992.176500px;}
.y251{bottom:992.251500px;}
.y288{bottom:996.735000px;}
.y169{bottom:1000.096500px;}
.y137{bottom:1004.271000px;}
.y71{bottom:1004.580000px;}
.yb5{bottom:1005.028500px;}
.y40{bottom:1009.099500px;}
.y2b7{bottom:1009.437000px;}
.y250{bottom:1009.512000px;}
.y136{bottom:1012.491000px;}
.y287{bottom:1013.995500px;}
.y168{bottom:1018.926000px;}
.y70{bottom:1023.409500px;}
.yb4{bottom:1023.858000px;}
.y1f6{bottom:1024.306500px;}
.y2b6{bottom:1026.697500px;}
.y24f{bottom:1026.772500px;}
.y286{bottom:1031.254500px;}
.y3f{bottom:1037.343000px;}
.y167{bottom:1037.755500px;}
.y6f{bottom:1042.239000px;}
.y1f5{bottom:1043.136000px;}
.y24e{bottom:1044.033000px;}
.y135{bottom:1044.351000px;}
.yb3{bottom:1047.171000px;}
.y285{bottom:1048.515000px;}
.y134{bottom:1052.569500px;}
.y166{bottom:1056.585000px;}
.y6e{bottom:1061.068500px;}
.y24d{bottom:1061.292000px;}
.y3e{bottom:1065.586500px;}
.y284{bottom:1065.775500px;}
.y165{bottom:1075.414500px;}
.y24c{bottom:1078.552500px;}
.y6d{bottom:1079.898000px;}
.y283{bottom:1083.036000px;}
.y133{bottom:1084.429500px;}
.y3d{bottom:1093.831500px;}
.y24b{bottom:1095.813000px;}
.y6c{bottom:1098.727500px;}
.y282{bottom:1100.296500px;}
.y6b{bottom:1117.557000px;}
.y132{bottom:1119.037500px;}
.y3a{bottom:1137.318000px;}
.y6a{bottom:1177.662000px;}
.h26{height:21.758318px;}
.h29{height:21.907757px;}
.h22{height:27.655250px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h7{height:32.130000px;}
.h16{height:34.574294px;}
.h10{height:34.813397px;}
.h13{height:35.052500px;}
.h1e{height:38.896243px;}
.h11{height:39.165235px;}
.h21{height:39.434227px;}
.h1d{height:39.761719px;}
.h25{height:41.723369px;}
.hf{height:43.217759px;}
.h24{height:43.269961px;}
.h12{height:43.516637px;}
.hd{height:43.815515px;}
.h1c{height:44.268047px;}
.h18{height:44.279648px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h28{height:49.117939px;}
.h1b{height:49.939453px;}
.hb{height:50.930649px;}
.h27{height:52.071235px;}
.h15{height:52.210637px;}
.h14{height:54.575123px;}
.h2{height:55.080000px;}
.h1a{height:55.599258px;}
.h19{height:55.922168px;}
.hc{height:61.613006px;}
.h5{height:64.260000px;}
.h1f{height:72.039235px;}
.h20{height:72.045235px;}
.he{height:77.792486px;}
.h4{height:119.055004px;}
.h23{height:305.541000px;}
.h17{height:350.181000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w6{width:476.769000px;}
.w5{width:544.581000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x12{left:-194.727000px;}
.x29{left:-192.631500px;}
.x0{left:0.000000px;}
.x2b{left:2.938500px;}
.x15{left:21.273000px;}
.x13{left:32.703000px;}
.x2c{left:34.798394px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.xf{left:67.071000px;}
.x11{left:71.524500px;}
.x10{left:73.885500px;}
.x1b{left:78.006000px;}
.x16{left:82.411500px;}
.x32{left:84.220500px;}
.x31{left:85.848000px;}
.x33{left:97.665000px;}
.x34{left:98.922000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xb{left:119.433000px;}
.x17{left:153.072000px;}
.x4{left:203.484001px;}
.xc{left:208.956000px;}
.x38{left:221.424000px;}
.x39{left:223.341000px;}
.x40{left:225.514500px;}
.x3a{left:227.125500px;}
.x41{left:229.300500px;}
.x18{left:233.070000px;}
.x8{left:248.526000px;}
.x7{left:249.591000px;}
.x49{left:258.115500px;}
.x4a{left:260.032500px;}
.x4b{left:263.818500px;}
.x30{left:280.387500px;}
.x9{left:281.479500px;}
.x35{left:282.985500px;}
.x24{left:284.184000px;}
.x28{left:286.222500px;}
.x36{left:288.687000px;}
.x25{left:290.626500px;}
.x19{left:312.532500px;}
.x1a{left:397.795500px;}
.x37{left:402.148500px;}
.x3b{left:436.344000px;}
.x3c{left:438.261000px;}
.x3d{left:442.047000px;}
.x3{left:454.959000px;}
.x3e{left:456.915000px;}
.x3f{left:460.699500px;}
.x2a{left:473.188500px;}
.x26{left:499.230000px;}
.x14{left:543.810466px;}
.x2d{left:571.155000px;}
.x1d{left:573.324000px;}
.x1e{left:585.037500px;}
.x21{left:613.047000px;}
.x22{left:619.663500px;}
.x23{left:620.928000px;}
.x42{left:623.344500px;}
.x1f{left:624.741000px;}
.x43{left:627.823500px;}
.xd{left:637.077000px;}
.x20{left:651.430500px;}
.x1c{left:672.754500px;}
.xa{left:684.888000px;}
.x44{left:694.174500px;}
.x45{left:695.857500px;}
.x46{left:699.406500px;}
.x2e{left:703.755000px;}
.x27{left:715.753500px;}
.x2f{left:717.736500px;}
.x47{left:759.592500px;}
.x48{left:760.897500px;}
.xe{left:763.563000px;}
@media print{
.v1{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:7.728000pt;}
.v4{vertical-align:11.472000pt;}
.v3{vertical-align:29.221333pt;}
.ls4a{letter-spacing:-3.436192pt;}
.ls48{letter-spacing:-0.171008pt;}
.ls4b{letter-spacing:-0.165664pt;}
.ls2b{letter-spacing:-0.117568pt;}
.ls45{letter-spacing:-0.112224pt;}
.ls46{letter-spacing:-0.096192pt;}
.ls2a{letter-spacing:-0.090848pt;}
.ls34{letter-spacing:-0.080160pt;}
.ls44{letter-spacing:-0.069472pt;}
.ls2d{letter-spacing:-0.064128pt;}
.ls2c{letter-spacing:-0.058784pt;}
.ls35{letter-spacing:-0.053440pt;}
.ls2f{letter-spacing:-0.048096pt;}
.ls31{letter-spacing:-0.042752pt;}
.ls36{letter-spacing:-0.037408pt;}
.ls49{letter-spacing:-0.026720pt;}
.ls28{letter-spacing:-0.025536pt;}
.ls47{letter-spacing:-0.021376pt;}
.ls2e{letter-spacing:-0.016032pt;}
.ls30{letter-spacing:-0.010688pt;}
.ls32{letter-spacing:-0.005344pt;}
.ls29{letter-spacing:-0.004256pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000002pt;}
.ls4e{letter-spacing:0.000008pt;}
.ls9{letter-spacing:0.000289pt;}
.ls4f{letter-spacing:0.000441pt;}
.ls4c{letter-spacing:0.000711pt;}
.ls4d{letter-spacing:0.000921pt;}
.ls50{letter-spacing:0.001259pt;}
.ls12{letter-spacing:0.002473pt;}
.lsf{letter-spacing:0.002666pt;}
.lsb{letter-spacing:0.002861pt;}
.ls17{letter-spacing:0.005344pt;}
.ls41{letter-spacing:0.007273pt;}
.ls20{letter-spacing:0.010688pt;}
.ls1c{letter-spacing:0.016032pt;}
.ls19{letter-spacing:0.021376pt;}
.ls1d{letter-spacing:0.026720pt;}
.ls26{letter-spacing:0.028800pt;}
.ls22{letter-spacing:0.032064pt;}
.ls21{letter-spacing:0.037408pt;}
.ls3f{letter-spacing:0.042752pt;}
.ls25{letter-spacing:0.048096pt;}
.ls18{letter-spacing:0.053440pt;}
.ls40{letter-spacing:0.058784pt;}
.ls3d{letter-spacing:0.062400pt;}
.ls1e{letter-spacing:0.064128pt;}
.ls27{letter-spacing:0.067200pt;}
.ls23{letter-spacing:0.069472pt;}
.ls1a{letter-spacing:0.080160pt;}
.ls3e{letter-spacing:0.085504pt;}
.ls1b{letter-spacing:0.106880pt;}
.ls16{letter-spacing:0.157472pt;}
.ls24{letter-spacing:0.160320pt;}
.ls3c{letter-spacing:0.161728pt;}
.ls15{letter-spacing:0.170240pt;}
.ls1f{letter-spacing:0.171008pt;}
.ls33{letter-spacing:0.726784pt;}
.lsc{letter-spacing:4.675200pt;}
.ls3{letter-spacing:10.626533pt;}
.lsa{letter-spacing:13.016972pt;}
.ls6{letter-spacing:13.070931pt;}
.ls7{letter-spacing:13.124065pt;}
.ls13{letter-spacing:13.135012pt;}
.ls10{letter-spacing:13.177199pt;}
.ls2{letter-spacing:13.230333pt;}
.ls42{letter-spacing:13.275260pt;}
.lsd{letter-spacing:13.283467pt;}
.ls4{letter-spacing:13.389734pt;}
.ls3a{letter-spacing:13.442868pt;}
.ls14{letter-spacing:13.655404pt;}
.ls43{letter-spacing:14.222609pt;}
.lse{letter-spacing:16.630900pt;}
.ls39{letter-spacing:16.896570pt;}
.ls11{letter-spacing:17.268507pt;}
.ls37{letter-spacing:17.427908pt;}
.ls3b{letter-spacing:19.340727pt;}
.ls5{letter-spacing:22.794429pt;}
.ls1{letter-spacing:25.292137pt;}
.ls38{letter-spacing:83.815733pt;}
.ws90{word-spacing:-53.440000pt;}
.wsd{word-spacing:-20.194365pt;}
.wsd4{word-spacing:-13.445504pt;}
.wsd6{word-spacing:-13.440160pt;}
.wsd5{word-spacing:-13.360000pt;}
.ws2a{word-spacing:-13.283467pt;}
.ws12b{word-spacing:-11.955200pt;}
.ws8d{word-spacing:-10.810240pt;}
.ws8e{word-spacing:-10.640000pt;}
.ws2f{word-spacing:-10.626800pt;}
.ws6{word-spacing:-9.298400pt;}
.ws100{word-spacing:-3.142272pt;}
.wsff{word-spacing:-3.099520pt;}
.wsd1{word-spacing:-2.656693pt;}
.ws110{word-spacing:-2.506336pt;}
.ws10f{word-spacing:-2.474272pt;}
.wscd{word-spacing:-2.444158pt;}
.ws66{word-spacing:-2.391024pt;}
.wsf5{word-spacing:-2.175008pt;}
.wsf4{word-spacing:-2.132256pt;}
.ws107{word-spacing:-2.094848pt;}
.ws40{word-spacing:-2.019087pt;}
.ws2d{word-spacing:-1.965953pt;}
.ws124{word-spacing:-1.912819pt;}
.ws24{word-spacing:-1.859685pt;}
.ws5e{word-spacing:-1.806551pt;}
.ws108{word-spacing:-1.768864pt;}
.ws2c{word-spacing:-1.700284pt;}
.ws2b{word-spacing:-1.647150pt;}
.ws63{word-spacing:-1.540882pt;}
.wscf{word-spacing:-1.487748pt;}
.ws6b{word-spacing:-1.434614pt;}
.wsc7{word-spacing:-1.381481pt;}
.ws25{word-spacing:-1.328347pt;}
.ws1a{word-spacing:-1.291162pt;}
.ws49{word-spacing:-1.275213pt;}
.ws65{word-spacing:-1.168945pt;}
.ws28{word-spacing:-1.115811pt;}
.wsdf{word-spacing:-1.106208pt;}
.ws121{word-spacing:-1.062677pt;}
.ws16{word-spacing:-1.052058pt;}
.wse6{word-spacing:-1.047424pt;}
.ws17{word-spacing:-1.004237pt;}
.ws68{word-spacing:-0.956410pt;}
.wscc{word-spacing:-0.903276pt;}
.wse5{word-spacing:-0.892448pt;}
.wsde{word-spacing:-0.876416pt;}
.ws83{word-spacing:-0.850142pt;}
.wse0{word-spacing:-0.828320pt;}
.wse7{word-spacing:-0.806944pt;}
.ws6d{word-spacing:-0.797008pt;}
.ws7f{word-spacing:-0.743874pt;}
.ws7e{word-spacing:-0.637606pt;}
.wse4{word-spacing:-0.609216pt;}
.ws128{word-spacing:-0.573850pt;}
.ws10b{word-spacing:-0.550432pt;}
.ws10a{word-spacing:-0.529056pt;}
.ws3d{word-spacing:-0.478205pt;}
.ws51{word-spacing:-0.425071pt;}
.ws5d{word-spacing:-0.371937pt;}
.ws13d{word-spacing:-0.334746pt;}
.wsc6{word-spacing:-0.318803pt;}
.ws99{word-spacing:-0.315296pt;}
.wsbc{word-spacing:-0.288576pt;}
.ws12d{word-spacing:-0.286925pt;}
.ws29{word-spacing:-0.265669pt;}
.wse3{word-spacing:-0.256512pt;}
.wsc2{word-spacing:-0.251168pt;}
.ws93{word-spacing:-0.246848pt;}
.wsbb{word-spacing:-0.245824pt;}
.ws1b{word-spacing:-0.239104pt;}
.ws109{word-spacing:-0.219104pt;}
.ws3c{word-spacing:-0.212535pt;}
.ws105{word-spacing:-0.208416pt;}
.ws11{word-spacing:-0.191283pt;}
.wsc4{word-spacing:-0.170029pt;}
.ws34{word-spacing:-0.159402pt;}
.ws1d{word-spacing:-0.143462pt;}
.ws21{word-spacing:-0.106268pt;}
.ws18{word-spacing:-0.095642pt;}
.ws94{word-spacing:-0.072352pt;}
.ws8f{word-spacing:-0.053440pt;}
.ws22{word-spacing:-0.053134pt;}
.ws92{word-spacing:-0.051072pt;}
.ws19{word-spacing:-0.047821pt;}
.ws30{word-spacing:-0.042507pt;}
.ws2{word-spacing:-0.037194pt;}
.ws158{word-spacing:-0.006716pt;}
.wsd7{word-spacing:-0.001927pt;}
.ws0{word-spacing:0.000000pt;}
.wsf3{word-spacing:0.026720pt;}
.wsd0{word-spacing:0.047821pt;}
.ws103{word-spacing:0.048096pt;}
.ws32{word-spacing:0.053134pt;}
.ws106{word-spacing:0.053440pt;}
.wsa4{word-spacing:0.058784pt;}
.wsb3{word-spacing:0.069472pt;}
.ws3{word-spacing:0.074387pt;}
.wsc3{word-spacing:0.074816pt;}
.wsb9{word-spacing:0.080160pt;}
.wsb2{word-spacing:0.085504pt;}
.ws125{word-spacing:0.095642pt;}
.wsbf{word-spacing:0.096000pt;}
.wsdd{word-spacing:0.100800pt;}
.wsa3{word-spacing:0.101536pt;}
.ws48{word-spacing:0.106268pt;}
.wsf6{word-spacing:0.106880pt;}
.wsbe{word-spacing:0.134400pt;}
.wsbd{word-spacing:0.138944pt;}
.ws134{word-spacing:0.143462pt;}
.ws27{word-spacing:0.159402pt;}
.ws1c{word-spacing:0.191283pt;}
.ws53{word-spacing:0.212535pt;}
.ws126{word-spacing:0.239104pt;}
.ws36{word-spacing:0.265669pt;}
.ws154{word-spacing:0.286925pt;}
.ws33{word-spacing:0.318803pt;}
.ws14a{word-spacing:0.334746pt;}
.ws35{word-spacing:0.371937pt;}
.wsb4{word-spacing:0.374080pt;}
.wse{word-spacing:0.382566pt;}
.ws98{word-spacing:0.384768pt;}
.ws97{word-spacing:0.400800pt;}
.ws23{word-spacing:0.425071pt;}
.ws118{word-spacing:0.478205pt;}
.wsba{word-spacing:0.486304pt;}
.ws96{word-spacing:0.496992pt;}
.ws6a{word-spacing:0.531339pt;}
.ws147{word-spacing:0.573850pt;}
.ws3e{word-spacing:0.584473pt;}
.wsdb{word-spacing:0.637606pt;}
.ws131{word-spacing:0.669491pt;}
.wscb{word-spacing:0.690740pt;}
.ws104{word-spacing:0.721440pt;}
.wsb5{word-spacing:0.742816pt;}
.ws47{word-spacing:0.743874pt;}
.ws13a{word-spacing:0.765133pt;}
.ws11e{word-spacing:0.797008pt;}
.wsca{word-spacing:0.850142pt;}
.ws14c{word-spacing:0.908595pt;}
.wsd8{word-spacing:0.956410pt;}
.ws12{word-spacing:1.004237pt;}
.ws67{word-spacing:1.009543pt;}
.wsb1{word-spacing:1.015360pt;}
.ws139{word-spacing:1.031172pt;}
.wsf0{word-spacing:1.036736pt;}
.wsc1{word-spacing:1.047424pt;}
.wsf1{word-spacing:1.052768pt;}
.ws11c{word-spacing:1.062677pt;}
.wsc0{word-spacing:1.084832pt;}
.wsb0{word-spacing:1.090176pt;}
.wsa2{word-spacing:1.111552pt;}
.ws26{word-spacing:1.115811pt;}
.ws60{word-spacing:1.168945pt;}
.ws15{word-spacing:1.195520pt;}
.ws5f{word-spacing:1.222079pt;}
.wsc{word-spacing:1.227389pt;}
.ws15c{word-spacing:1.243341pt;}
.wsa1{word-spacing:1.287904pt;}
.ws152{word-spacing:1.291162pt;}
.wsa0{word-spacing:1.303936pt;}
.wsf2{word-spacing:1.325312pt;}
.ws62{word-spacing:1.328347pt;}
.wsae{word-spacing:1.336000pt;}
.ws9f{word-spacing:1.341344pt;}
.wsac{word-spacing:1.352032pt;}
.wsad{word-spacing:1.373408pt;}
.ws69{word-spacing:1.381481pt;}
.ws117{word-spacing:1.434614pt;}
.ws8a{word-spacing:1.487748pt;}
.ws61{word-spacing:1.540882pt;}
.ws84{word-spacing:1.594016pt;}
.ws43{word-spacing:1.647150pt;}
.ws112{word-spacing:1.694048pt;}
.wsc9{word-spacing:1.700284pt;}
.ws14{word-spacing:1.721549pt;}
.ws54{word-spacing:1.753418pt;}
.ws162{word-spacing:1.769370pt;}
.ws7b{word-spacing:1.806551pt;}
.ws138{word-spacing:1.817190pt;}
.ws4a{word-spacing:1.859685pt;}
.ws13{word-spacing:1.865011pt;}
.wsc5{word-spacing:1.912819pt;}
.ws3a{word-spacing:2.019087pt;}
.wsa5{word-spacing:2.052096pt;}
.ws80{word-spacing:2.072221pt;}
.ws4e{word-spacing:2.125355pt;}
.ws150{word-spacing:2.151936pt;}
.ws113{word-spacing:2.169664pt;}
.ws64{word-spacing:2.178489pt;}
.ws1{word-spacing:2.230154pt;}
.ws115{word-spacing:2.231622pt;}
.wsaf{word-spacing:2.255168pt;}
.wsa6{word-spacing:2.335328pt;}
.ws116{word-spacing:2.337890pt;}
.ws11d{word-spacing:2.391024pt;}
.ws14f{word-spacing:2.391040pt;}
.wsd9{word-spacing:2.444158pt;}
.ws5c{word-spacing:2.497292pt;}
.ws145{word-spacing:2.534502pt;}
.ws41{word-spacing:2.550426pt;}
.wsf{word-spacing:2.550432pt;}
.ws15b{word-spacing:2.582323pt;}
.ws6c{word-spacing:2.603559pt;}
.ws9e{word-spacing:2.629248pt;}
.ws10{word-spacing:2.647848pt;}
.ws9d{word-spacing:2.704064pt;}
.ws9c{word-spacing:2.762848pt;}
.ws57{word-spacing:2.762961pt;}
.ws11b{word-spacing:2.816095pt;}
.ws155{word-spacing:2.860826pt;}
.ws13e{word-spacing:2.862481pt;}
.ws14d{word-spacing:2.863164pt;}
.ws157{word-spacing:2.863625pt;}
.ws127{word-spacing:2.866509pt;}
.ws12a{word-spacing:2.869248pt;}
.ws59{word-spacing:2.922363pt;}
.wsa8{word-spacing:2.955232pt;}
.ws12f{word-spacing:2.964890pt;}
.wsa9{word-spacing:3.008672pt;}
.ws45{word-spacing:3.028630pt;}
.ws42{word-spacing:3.081764pt;}
.ws165{word-spacing:3.108352pt;}
.ws4f{word-spacing:3.134898pt;}
.ws20{word-spacing:3.188032pt;}
.ws13c{word-spacing:3.203994pt;}
.ws79{word-spacing:3.241166pt;}
.ws114{word-spacing:3.243808pt;}
.ws130{word-spacing:3.251814pt;}
.wsb7{word-spacing:3.281216pt;}
.ws4d{word-spacing:3.294300pt;}
.wsb6{word-spacing:3.302592pt;}
.ws15f{word-spacing:3.347456pt;}
.wsda{word-spacing:3.453701pt;}
.ws38{word-spacing:3.559969pt;}
.ws44{word-spacing:3.666237pt;}
.ws5b{word-spacing:3.719371pt;}
.ws12c{word-spacing:3.730022pt;}
.ws11f{word-spacing:3.772505pt;}
.ws56{word-spacing:3.931906pt;}
.ws55{word-spacing:3.985040pt;}
.ws156{word-spacing:4.016947pt;}
.ws52{word-spacing:4.038174pt;}
.ws13b{word-spacing:4.064768pt;}
.ws82{word-spacing:4.091308pt;}
.ws31{word-spacing:4.144442pt;}
.ws10e{word-spacing:4.168320pt;}
.ws10d{word-spacing:4.291232pt;}
.ws50{word-spacing:4.303843pt;}
.ws10c{word-spacing:4.317952pt;}
.ws133{word-spacing:4.351693pt;}
.ws3b{word-spacing:4.463245pt;}
.ws81{word-spacing:4.516379pt;}
.ws4b{word-spacing:4.622646pt;}
.ws7d{word-spacing:4.675780pt;}
.wsa{word-spacing:4.872362pt;}
.ws46{word-spacing:4.941450pt;}
.ws13f{word-spacing:5.021184pt;}
.ws7c{word-spacing:5.047717pt;}
.wsee{word-spacing:5.162304pt;}
.wsed{word-spacing:5.194368pt;}
.wsef{word-spacing:5.199712pt;}
.ws3f{word-spacing:5.260253pt;}
.ws102{word-spacing:5.317280pt;}
.ws119{word-spacing:5.366521pt;}
.wse8{word-spacing:5.520352pt;}
.ws101{word-spacing:5.531040pt;}
.wse9{word-spacing:5.541728pt;}
.ws120{word-spacing:5.579056pt;}
.wsa7{word-spacing:5.819616pt;}
.ws9a{word-spacing:5.840992pt;}
.ws58{word-spacing:5.844725pt;}
.ws9b{word-spacing:5.846336pt;}
.ws37{word-spacing:6.004127pt;}
.wsd3{word-spacing:6.057261pt;}
.wse1{word-spacing:6.140256pt;}
.wsd2{word-spacing:6.163529pt;}
.wsf7{word-spacing:6.172320pt;}
.wsf8{word-spacing:6.177664pt;}
.wse2{word-spacing:6.220416pt;}
.ws39{word-spacing:6.269796pt;}
.ws123{word-spacing:6.376064pt;}
.ws136{word-spacing:6.455808pt;}
.ws111{word-spacing:6.466240pt;}
.wsc8{word-spacing:6.482332pt;}
.wsce{word-spacing:6.535466pt;}
.ws8b{word-spacing:6.641733pt;}
.ws7a{word-spacing:6.801135pt;}
.wseb{word-spacing:6.802912pt;}
.ws122{word-spacing:6.907403pt;}
.ws4c{word-spacing:7.066804pt;}
.ws11a{word-spacing:7.119938pt;}
.wsec{word-spacing:7.225088pt;}
.wsea{word-spacing:7.241120pt;}
.ws8c{word-spacing:7.279340pt;}
.ws5a{word-spacing:7.438741pt;}
.wsab{word-spacing:8.368704pt;}
.wsaa{word-spacing:8.448864pt;}
.wsfc{word-spacing:8.555744pt;}
.wsfa{word-spacing:8.700032pt;}
.ws8{word-spacing:8.740496pt;}
.wsf9{word-spacing:8.817600pt;}
.wsfb{word-spacing:8.897760pt;}
.wsfd{word-spacing:8.961888pt;}
.wsfe{word-spacing:8.983264pt;}
.ws4{word-spacing:9.261183pt;}
.wsb8{word-spacing:9.961216pt;}
.wsdc{word-spacing:10.325056pt;}
.ws95{word-spacing:10.329312pt;}
.ws9{word-spacing:10.525789pt;}
.ws2e{word-spacing:10.587492pt;}
.ws1f{word-spacing:10.711859pt;}
.ws143{word-spacing:11.524813pt;}
.ws159{word-spacing:11.620454pt;}
.ws15a{word-spacing:11.668275pt;}
.ws161{word-spacing:11.716096pt;}
.ws142{word-spacing:11.811738pt;}
.ws15e{word-spacing:11.897156pt;}
.ws135{word-spacing:11.899110pt;}
.ws164{word-spacing:11.900843pt;}
.ws14e{word-spacing:11.900979pt;}
.ws149{word-spacing:11.901559pt;}
.ws146{word-spacing:11.903838pt;}
.ws163{word-spacing:11.905596pt;}
.ws141{word-spacing:11.907183pt;}
.ws129{word-spacing:11.907379pt;}
.ws160{word-spacing:11.907499pt;}
.ws12e{word-spacing:11.955200pt;}
.ws137{word-spacing:12.050842pt;}
.ws14b{word-spacing:12.242125pt;}
.ws148{word-spacing:12.481229pt;}
.ws132{word-spacing:12.576870pt;}
.ws140{word-spacing:12.911616pt;}
.ws76{word-spacing:13.017797pt;}
.ws15d{word-spacing:13.150720pt;}
.ws153{word-spacing:13.198541pt;}
.ws6e{word-spacing:13.230333pt;}
.ws70{word-spacing:13.496002pt;}
.ws72{word-spacing:13.549136pt;}
.ws5{word-spacing:13.761632pt;}
.ws151{word-spacing:14.059315pt;}
.wsb{word-spacing:14.282342pt;}
.ws144{word-spacing:14.441882pt;}
.ws74{word-spacing:15.302554pt;}
.ws78{word-spacing:16.418365pt;}
.ws75{word-spacing:16.455963pt;}
.ws6f{word-spacing:17.145047pt;}
.ws71{word-spacing:17.296754pt;}
.ws7{word-spacing:19.857270pt;}
.ws85{word-spacing:20.105906pt;}
.ws1e{word-spacing:24.439338pt;}
.ws73{word-spacing:25.146799pt;}
.ws77{word-spacing:29.737649pt;}
.ws86{word-spacing:78.808349pt;}
.ws88{word-spacing:114.174339pt;}
.ws87{word-spacing:124.801139pt;}
.ws89{word-spacing:156.681539pt;}
.ws91{word-spacing:187.840102pt;}
._1b{margin-left:-20.669074pt;}
._45{margin-left:-17.970078pt;}
._8{margin-left:-12.337766pt;}
._5{margin-left:-10.807501pt;}
._14{margin-left:-6.726755pt;}
._7{margin-left:-5.355930pt;}
._e{margin-left:-4.447334pt;}
._0{margin-left:-3.459005pt;}
._15{margin-left:-2.507915pt;}
._2{margin-left:-1.338970pt;}
._35{width:1.115072pt;}
._44{width:2.045751pt;}
._1a{width:3.411190pt;}
._1{width:11.641597pt;}
._12{width:12.762668pt;}
._c{width:14.059302pt;}
._d{width:15.063539pt;}
._f{width:16.003917pt;}
._13{width:16.992195pt;}
._b{width:18.745715pt;}
._a{width:20.371661pt;}
._3d{width:21.466082pt;}
._3{width:22.502128pt;}
._34{width:23.591437pt;}
._19{width:24.569131pt;}
._18{width:26.269376pt;}
._4{width:27.783619pt;}
._1d{width:29.223627pt;}
._6{width:30.127104pt;}
._16{width:31.880320pt;}
._1c{width:34.707038pt;}
._1e{width:57.751386pt;}
._9{width:61.665787pt;}
._37{width:95.641600pt;}
._22{width:154.641194pt;}
._28{width:156.681539pt;}
._1f{width:158.891914pt;}
._21{width:164.205314pt;}
._27{width:175.937301pt;}
._2f{width:177.935139pt;}
._25{width:181.378222pt;}
._2a{width:183.121018pt;}
._39{width:187.101648pt;}
._20{width:193.067702pt;}
._32{width:194.215397pt;}
._2b{width:196.000699pt;}
._2e{width:197.148394pt;}
._2d{width:206.755021pt;}
._3c{width:207.959177pt;}
._26{width:214.278795pt;}
._3a{width:218.971443pt;}
._33{width:225.373174pt;}
._3e{width:230.926643pt;}
._2c{width:235.532395pt;}
._3b{width:238.243226pt;}
._29{width:249.602278pt;}
._24{width:260.271586pt;}
._23{width:279.442333pt;}
._31{width:292.109478pt;}
._3f{width:299.979878pt;}
._38{width:316.175152pt;}
._30{width:321.949533pt;}
._40{width:485.811507pt;}
._41{width:536.118989pt;}
._10{width:784.017154pt;}
._43{width:1850.415168pt;}
._36{width:1871.546208pt;}
._42{width:2235.078564pt;}
._11{width:2255.035263pt;}
._17{width:2256.331898pt;}
.fs10{font-size:26.566933pt;}
.fsb{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fsa{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:53.440000pt;}
.fsf{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs6{font-size:80.777458pt;}
.fs8{font-size:95.641600pt;}
.y1b5{bottom:-704.604933pt;}
.y1d5{bottom:-645.084437pt;}
.y1d4{bottom:-627.955581pt;}
.y1d3{bottom:-610.916237pt;}
.y1d2{bottom:-593.796733pt;}
.y1d1{bottom:-576.677229pt;}
.y1d0{bottom:-559.637885pt;}
.y1cf{bottom:-526.597269pt;}
.y1ce{bottom:-509.477765pt;}
.y1cd{bottom:-476.358325pt;}
.y1cc{bottom:-459.238821pt;}
.y1cb{bottom:-442.199477pt;}
.y1ca{bottom:-425.079973pt;}
.y1c9{bottom:-407.960469pt;}
.y1c8{bottom:-390.921125pt;}
.y1c7{bottom:-373.801621pt;}
.y1c6{bottom:-356.760941pt;}
.y1c5{bottom:-323.641501pt;}
.y1c4{bottom:-306.521997pt;}
.y1c3{bottom:-273.481381pt;}
.y109{bottom:-270.918267pt;}
.y1c2{bottom:-256.361877pt;}
.y1c1{bottom:-239.321197pt;}
.y1c0{bottom:-222.201693pt;}
.y1bf{bottom:-205.082189pt;}
.y1be{bottom:-188.042845pt;}
.y1bd{bottom:-170.923341pt;}
.y1bc{bottom:-153.883997pt;}
.y1bb{bottom:-136.764493pt;}
.y1ba{bottom:-103.723877pt;}
.y125{bottom:-93.158267pt;}
.y124{bottom:-93.157107pt;}
.y1b9{bottom:-86.604373pt;}
.y123{bottom:-74.037611pt;}
.y122{bottom:-56.998267pt;}
.y1b8{bottom:-53.484933pt;}
.y121{bottom:-24.278267pt;}
.y1b7{bottom:-20.764933pt;}
.y120{bottom:-4.270091pt;}
.y1b6{bottom:-0.764800pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:8.207950pt;}
.y3b{bottom:23.914454pt;}
.y69{bottom:28.346667pt;}
.y6{bottom:44.973338pt;}
.y5{bottom:67.373337pt;}
.y4{bottom:89.773337pt;}
.y68{bottom:92.108000pt;}
.y223{bottom:92.758667pt;}
.y24a{bottom:92.918667pt;}
.y39{bottom:93.018667pt;}
.y105{bottom:99.580000pt;}
.y1f4{bottom:103.084000pt;}
.y164{bottom:104.938667pt;}
.y9f{bottom:105.909333pt;}
.ya8{bottom:106.308000pt;}
.y67{bottom:108.844000pt;}
.y38{bottom:108.920000pt;}
.yb2{bottom:109.097333pt;}
.y222{bottom:109.496000pt;}
.y104{bottom:116.317333pt;}
.y249{bottom:116.509333pt;}
.y1f3{bottom:119.821333pt;}
.ye1{bottom:121.450667pt;}
.y163{bottom:121.676000pt;}
.y9e{bottom:122.646667pt;}
.ya7{bottom:123.045333pt;}
.y23{bottom:123.790666pt;}
.y37{bottom:124.820000pt;}
.y66{bottom:125.581333pt;}
.yb1{bottom:125.834667pt;}
.y221{bottom:126.233333pt;}
.y191{bottom:132.550667pt;}
.y103{bottom:133.054667pt;}
.y1f2{bottom:136.558667pt;}
.ye0{bottom:138.188000pt;}
.y162{bottom:138.413333pt;}
.y9d{bottom:139.384000pt;}
.ya6{bottom:139.782667pt;}
.y248{bottom:140.101333pt;}
.y36{bottom:140.720000pt;}
.y65{bottom:142.318667pt;}
.y220{bottom:142.970667pt;}
.y281{bottom:145.561333pt;}
.y102{bottom:149.792000pt;}
.y1f1{bottom:153.296000pt;}
.y190{bottom:153.565333pt;}
.ydf{bottom:154.925333pt;}
.y161{bottom:155.150667pt;}
.y9c{bottom:156.121333pt;}
.y131{bottom:156.169333pt;}
.ya5{bottom:156.520000pt;}
.y35{bottom:156.621333pt;}
.yb0{bottom:158.512000pt;}
.y64{bottom:159.056000pt;}
.y21f{bottom:159.708000pt;}
.y280{bottom:160.902667pt;}
.y130{bottom:163.474667pt;}
.y247{bottom:163.693333pt;}
.y2b5{bottom:164.888000pt;}
.y1b1{bottom:165.286667pt;}
.y101{bottom:166.529333pt;}
.y1f0{bottom:170.033333pt;}
.yde{bottom:171.662667pt;}
.y160{bottom:171.888000pt;}
.y34{bottom:172.521333pt;}
.y9b{bottom:172.858667pt;}
.ya4{bottom:173.257333pt;}
.y18f{bottom:174.578667pt;}
.y1a{bottom:175.052000pt;}
.yaf{bottom:175.249333pt;}
.y63{bottom:175.793333pt;}
.y27f{bottom:176.245333pt;}
.y21e{bottom:176.445333pt;}
.y2b4{bottom:180.230667pt;}
.y1b0{bottom:182.024000pt;}
.y100{bottom:183.265333pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y1ef{bottom:186.770667pt;}
.y246{bottom:187.284000pt;}
.ydd{bottom:188.400000pt;}
.y33{bottom:188.421333pt;}
.y15f{bottom:188.625333pt;}
.y9a{bottom:189.596000pt;}
.ya3{bottom:189.994667pt;}
.y27e{bottom:191.588000pt;}
.y12f{bottom:191.794667pt;}
.y62{bottom:192.530667pt;}
.y21d{bottom:193.182667pt;}
.y2b3{bottom:195.573333pt;}
.y18e{bottom:195.593333pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y1af{bottom:198.761333pt;}
.y12d{bottom:199.101333pt;}
.yff{bottom:200.002667pt;}
.y245{bottom:202.905333pt;}
.y32{bottom:204.322667pt;}
.y15e{bottom:205.362667pt;}
.y234{bottom:206.333333pt;}
.y12e{bottom:206.406667pt;}
.ya2{bottom:206.732000pt;}
.y27d{bottom:206.930667pt;}
.yae{bottom:207.926667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.ydc{bottom:209.122667pt;}
.y61{bottom:209.268000pt;}
.y21c{bottom:209.920000pt;}
.y99{bottom:210.318667pt;}
.y2b2{bottom:210.916000pt;}
.y1ae{bottom:215.498667pt;}
.y18d{bottom:216.606667pt;}
.yfe{bottom:216.740000pt;}
.y244{bottom:218.528000pt;}
.y1ee{bottom:219.448000pt;}
.ya1{bottom:221.537333pt;}
.y15d{bottom:222.100000pt;}
.y27c{bottom:222.273333pt;}
.y233{bottom:223.070667pt;}
.ya0{bottom:223.469333pt;}
.yad{bottom:224.664000pt;}
.y60{bottom:226.005333pt;}
.y2b1{bottom:226.258667pt;}
.y21b{bottom:226.657333pt;}
.y12c{bottom:227.421333pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y1ad{bottom:232.236000pt;}
.yfd{bottom:233.477333pt;}
.y243{bottom:234.149333pt;}
.y12b{bottom:234.726667pt;}
.y1ed{bottom:236.185333pt;}
.y27b{bottom:237.616000pt;}
.y18c{bottom:237.621333pt;}
.y15c{bottom:238.837333pt;}
.ydb{bottom:239.010667pt;}
.y232{bottom:239.808000pt;}
.y98{bottom:240.206667pt;}
.y2b0{bottom:241.601333pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y5f{bottom:242.742667pt;}
.y21a{bottom:243.394667pt;}
.y1ac{bottom:248.973333pt;}
.yfc{bottom:250.214667pt;}
.y27a{bottom:252.958667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y15b{bottom:255.574667pt;}
.yda{bottom:255.748000pt;}
.y231{bottom:256.545333pt;}
.y97{bottom:256.944000pt;}
.yac{bottom:257.341333pt;}
.y18b{bottom:258.634667pt;}
.y5e{bottom:259.480000pt;}
.y219{bottom:260.132000pt;}
.y12a{bottom:263.046667pt;}
.y1ab{bottom:265.710667pt;}
.y31{bottom:266.570667pt;}
.yfb{bottom:266.952000pt;}
.y279{bottom:268.301333pt;}
.y1ec{bottom:268.864000pt;}
.y2af{bottom:272.285333pt;}
.y15a{bottom:272.312000pt;}
.yd9{bottom:272.485333pt;}
.y230{bottom:273.282667pt;}
.y96{bottom:273.681333pt;}
.yab{bottom:274.078667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y5d{bottom:276.217333pt;}
.y218{bottom:276.869333pt;}
.y18a{bottom:279.649333pt;}
.y1aa{bottom:282.448000pt;}
.y30{bottom:282.470667pt;}
.y278{bottom:283.644000pt;}
.y1eb{bottom:285.600000pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y2ae{bottom:287.628000pt;}
.y159{bottom:289.049333pt;}
.yd8{bottom:289.222667pt;}
.y22f{bottom:290.020000pt;}
.y95{bottom:290.417333pt;}
.y5c{bottom:292.954667pt;}
.y217{bottom:293.606667pt;}
.y129{bottom:293.809333pt;}
.y2f{bottom:298.370667pt;}
.y277{bottom:298.985333pt;}
.y1a9{bottom:299.185333pt;}
.y189{bottom:300.662667pt;}
.y1ea{bottom:302.337333pt;}
.y2ad{bottom:302.970667pt;}
.y1b4{bottom:305.315187pt;}
.y158{bottom:305.786667pt;}
.yd7{bottom:305.960000pt;}
.yaa{bottom:306.757333pt;}
.y94{bottom:307.154667pt;}
.yfa{bottom:309.422667pt;}
.y11{bottom:309.452000pt;}
.y216{bottom:310.344000pt;}
.y5b{bottom:313.677333pt;}
.y1b3{bottom:313.875067pt;}
.y2e{bottom:314.270667pt;}
.y276{bottom:314.328000pt;}
.y1a8{bottom:315.922667pt;}
.y2ac{bottom:318.313333pt;}
.y1e9{bottom:319.074667pt;}
.y157{bottom:322.524000pt;}
.y22e{bottom:323.494667pt;}
.y93{bottom:323.892000pt;}
.yd6{bottom:326.682667pt;}
.y128{bottom:326.790667pt;}
.y215{bottom:327.081333pt;}
.ya9{bottom:327.478667pt;}
.yf9{bottom:328.444000pt;}
.y188{bottom:328.769333pt;}
.y275{bottom:329.670667pt;}
.y11f{bottom:331.489421pt;}
.y1a7{bottom:332.660000pt;}
.y2ab{bottom:333.656000pt;}
.y1e8{bottom:335.812000pt;}
.y2d{bottom:338.141333pt;}
.y156{bottom:339.261333pt;}
.y22d{bottom:340.232000pt;}
.y92{bottom:340.629333pt;}
.y127{bottom:343.528000pt;}
.y10{bottom:343.809333pt;}
.y214{bottom:343.818667pt;}
.yd5{bottom:344.614667pt;}
.y274{bottom:345.013333pt;}
.yf8{bottom:347.465333pt;}
.y11e{bottom:348.608925pt;}
.y2aa{bottom:348.998667pt;}
.y1a6{bottom:349.397333pt;}
.y1e7{bottom:352.549333pt;}
.y2c{bottom:354.042667pt;}
.y155{bottom:355.998667pt;}
.y22c{bottom:356.968000pt;}
.y91{bottom:357.366667pt;}
.y273{bottom:360.356000pt;}
.y213{bottom:360.554667pt;}
.y187{bottom:361.750667pt;}
.yf{bottom:362.706666pt;}
.y2a9{bottom:364.341333pt;}
.y11d{bottom:365.728429pt;}
.y1a5{bottom:366.134667pt;}
.yf7{bottom:366.486667pt;}
.y1e6{bottom:369.286667pt;}
.y2b{bottom:369.942667pt;}
.y126{bottom:373.364000pt;}
.y22b{bottom:373.705333pt;}
.y90{bottom:374.104000pt;}
.yd4{bottom:374.502667pt;}
.y272{bottom:375.698667pt;}
.y154{bottom:376.720000pt;}
.y212{bottom:377.292000pt;}
.y186{bottom:378.488000pt;}
.y2a8{bottom:379.684000pt;}
.y5a{bottom:380.477333pt;}
.y11c{bottom:382.769109pt;}
.y1a4{bottom:382.872000pt;}
.yf6{bottom:385.508000pt;}
.y2a{bottom:385.842667pt;}
.y1e5{bottom:386.024000pt;}
.y22a{bottom:390.442667pt;}
.y8f{bottom:390.841333pt;}
.y271{bottom:391.041333pt;}
.yd3{bottom:391.240000pt;}
.y106{bottom:393.301333pt;}
.y153{bottom:393.457333pt;}
.y211{bottom:394.029333pt;}
.y2a7{bottom:395.025333pt;}
.y59{bottom:397.772000pt;}
.y185{bottom:399.210667pt;}
.y1a3{bottom:399.609333pt;}
.y11b{bottom:399.888613pt;}
.y29{bottom:401.744000pt;}
.y242{bottom:403.593333pt;}
.yf5{bottom:404.529333pt;}
.y270{bottom:406.384000pt;}
.y229{bottom:407.180000pt;}
.y8e{bottom:407.578667pt;}
.yd2{bottom:407.977333pt;}
.y152{bottom:410.194667pt;}
.y2a6{bottom:410.368000pt;}
.y210{bottom:410.766667pt;}
.y1a2{bottom:416.346667pt;}
.y11a{bottom:416.927957pt;}
.y28{bottom:417.644000pt;}
.y1e4{bottom:418.701333pt;}
.y241{bottom:420.330667pt;}
.y26f{bottom:421.725333pt;}
.yf4{bottom:423.550667pt;}
.y228{bottom:423.917333pt;}
.y8d{bottom:424.316000pt;}
.yd1{bottom:424.714667pt;}
.y2a5{bottom:425.710667pt;}
.y20f{bottom:427.504000pt;}
.y184{bottom:429.098667pt;}
.ye{bottom:430.990669pt;}
.y58{bottom:431.008000pt;}
.y1a1{bottom:433.084000pt;}
.y27{bottom:433.544000pt;}
.y151{bottom:433.574667pt;}
.y119{bottom:434.047461pt;}
.y1e3{bottom:435.438667pt;}
.y240{bottom:437.068000pt;}
.y227{bottom:440.654667pt;}
.y8c{bottom:441.053333pt;}
.yd0{bottom:441.452000pt;}
.yf3{bottom:442.572000pt;}
.y20e{bottom:444.241333pt;}
.y183{bottom:445.836000pt;}
.yd{bottom:446.990669pt;}
.y57{bottom:448.302667pt;}
.y26{bottom:449.445333pt;}
.y1a0{bottom:449.821333pt;}
.y150{bottom:450.312000pt;}
.y118{bottom:451.166965pt;}
.y26e{bottom:452.410667pt;}
.y23f{bottom:453.805333pt;}
.y2a4{bottom:456.396000pt;}
.y226{bottom:457.392000pt;}
.y8b{bottom:457.790667pt;}
.ycf{bottom:458.189333pt;}
.y20d{bottom:460.978667pt;}
.yf2{bottom:461.593333pt;}
.y182{bottom:462.573333pt;}
.yc{bottom:462.990669pt;}
.y25{bottom:465.345333pt;}
.y56{bottom:465.598667pt;}
.y26d{bottom:466.016000pt;}
.y19f{bottom:466.557333pt;}
.y14f{bottom:467.049333pt;}
.y26c{bottom:467.753333pt;}
.y1e2{bottom:468.116000pt;}
.y117{bottom:468.207645pt;}
.y2a3{bottom:470.000000pt;}
.y23e{bottom:470.542667pt;}
.y2a2{bottom:471.738667pt;}
.y225{bottom:474.129333pt;}
.y8a{bottom:474.528000pt;}
.yce{bottom:474.926667pt;}
.y20c{bottom:477.716000pt;}
.yb{bottom:478.990666pt;}
.y181{bottom:479.310667pt;}
.y24{bottom:481.245333pt;}
.y55{bottom:482.893333pt;}
.y26b{bottom:483.096000pt;}
.y19e{bottom:483.294667pt;}
.y14e{bottom:483.786667pt;}
.y1e1{bottom:484.853333pt;}
.y2a1{bottom:485.294667pt;}
.y116{bottom:485.327149pt;}
.y2a0{bottom:487.081333pt;}
.y23d{bottom:487.280000pt;}
.yf1{bottom:490.961333pt;}
.y89{bottom:491.265333pt;}
.ycd{bottom:491.664000pt;}
.y20b{bottom:494.453333pt;}
.y224{bottom:494.852000pt;}
.ya{bottom:494.990666pt;}
.y180{bottom:496.048000pt;}
.y26a{bottom:496.700000pt;}
.y269{bottom:498.438667pt;}
.y19d{bottom:500.032000pt;}
.y54{bottom:500.188000pt;}
.y14d{bottom:500.524000pt;}
.y1e0{bottom:501.590667pt;}
.y115{bottom:502.366493pt;}
.y29f{bottom:502.424000pt;}
.y23c{bottom:504.017333pt;}
.y88{bottom:508.002667pt;}
.ycc{bottom:508.401333pt;}
.y20a{bottom:511.190667pt;}
.y17f{bottom:512.785333pt;}
.y268{bottom:513.781333pt;}
.y14c{bottom:517.260000pt;}
.y53{bottom:517.484000pt;}
.y29e{bottom:517.766667pt;}
.y1df{bottom:518.328000pt;}
.y114{bottom:519.485997pt;}
.y19c{bottom:520.754667pt;}
.yf0{bottom:523.942667pt;}
.y87{bottom:524.740000pt;}
.ycb{bottom:525.138667pt;}
.y209{bottom:527.928000pt;}
.y267{bottom:529.124000pt;}
.y17e{bottom:529.522667pt;}
.y29d{bottom:533.108000pt;}
.y14b{bottom:533.997333pt;}
.y52{bottom:534.778667pt;}
.y1de{bottom:535.065333pt;}
.y113{bottom:536.605501pt;}
.y19b{bottom:537.492000pt;}
.yef{bottom:540.680000pt;}
.y86{bottom:541.477333pt;}
.yca{bottom:541.876000pt;}
.y266{bottom:544.466667pt;}
.y208{bottom:544.665333pt;}
.y17d{bottom:546.258667pt;}
.y29c{bottom:548.450667pt;}
.y14a{bottom:550.734667pt;}
.y1dd{bottom:551.802667pt;}
.y51{bottom:552.073333pt;}
.y112{bottom:553.644845pt;}
.y19a{bottom:554.229333pt;}
.yee{bottom:557.417333pt;}
.y85{bottom:558.214667pt;}
.yc9{bottom:558.613333pt;}
.y265{bottom:559.808000pt;}
.y207{bottom:561.402667pt;}
.y29b{bottom:563.793333pt;}
.y17c{bottom:566.981333pt;}
.y149{bottom:567.472000pt;}
.y1dc{bottom:568.540000pt;}
.y50{bottom:569.369333pt;}
.y111{bottom:570.764349pt;}
.y199{bottom:570.966667pt;}
.y9{bottom:573.786667pt;}
.yed{bottom:574.154667pt;}
.y84{bottom:574.952000pt;}
.y264{bottom:575.150667pt;}
.yc8{bottom:575.350667pt;}
.y206{bottom:578.140000pt;}
.y29a{bottom:579.136000pt;}
.y17b{bottom:583.718667pt;}
.y148{bottom:584.209333pt;}
.y1db{bottom:585.277333pt;}
.y4f{bottom:586.664000pt;}
.y198{bottom:587.704000pt;}
.y110{bottom:587.883853pt;}
.y263{bottom:590.493333pt;}
.yec{bottom:590.892000pt;}
.y83{bottom:591.689333pt;}
.yc7{bottom:592.088000pt;}
.y8{bottom:592.685334pt;}
.y299{bottom:594.478667pt;}
.y205{bottom:594.877333pt;}
.y17a{bottom:600.456000pt;}
.y147{bottom:600.946667pt;}
.y1da{bottom:602.014667pt;}
.y4e{bottom:603.960000pt;}
.y197{bottom:604.441333pt;}
.y10f{bottom:604.923197pt;}
.y262{bottom:605.836000pt;}
.yeb{bottom:607.629333pt;}
.y82{bottom:608.426667pt;}
.yc6{bottom:608.825333pt;}
.y298{bottom:609.821333pt;}
.y204{bottom:611.614667pt;}
.y179{bottom:617.193333pt;}
.y146{bottom:617.684000pt;}
.y196{bottom:621.178667pt;}
.y4d{bottom:621.254667pt;}
.y10e{bottom:622.042701pt;}
.yea{bottom:624.366667pt;}
.y81{bottom:625.164000pt;}
.yc5{bottom:625.562667pt;}
.y203{bottom:628.352000pt;}
.y178{bottom:633.930667pt;}
.y145{bottom:634.421333pt;}
.y1d9{bottom:634.692000pt;}
.y261{bottom:636.521333pt;}
.y195{bottom:637.916000pt;}
.y4c{bottom:638.549333pt;}
.y10d{bottom:639.082045pt;}
.y297{bottom:640.506667pt;}
.ye9{bottom:641.104000pt;}
.y80{bottom:641.901333pt;}
.yc4{bottom:642.300000pt;}
.y202{bottom:645.089333pt;}
.y7{bottom:645.598667pt;}
.y177{bottom:650.668000pt;}
.y144{bottom:651.158667pt;}
.y1d8{bottom:651.429333pt;}
.y260{bottom:651.864000pt;}
.y194{bottom:654.653333pt;}
.y4b{bottom:655.845333pt;}
.y296{bottom:655.848000pt;}
.y10c{bottom:656.201549pt;}
.y7f{bottom:658.638667pt;}
.yc3{bottom:659.037333pt;}
.ye8{bottom:661.826667pt;}
.y25f{bottom:665.468000pt;}
.y25e{bottom:667.206667pt;}
.y176{bottom:667.405333pt;}
.y143{bottom:667.896000pt;}
.y3{bottom:668.977329pt;}
.y295{bottom:671.190667pt;}
.y193{bottom:671.390667pt;}
.y4a{bottom:673.140000pt;}
.y10b{bottom:673.321053pt;}
.y7e{bottom:675.376000pt;}
.yc2{bottom:675.774667pt;}
.y201{bottom:678.564000pt;}
.y25d{bottom:682.548000pt;}
.y175{bottom:684.142667pt;}
.y142{bottom:684.633333pt;}
.y294{bottom:686.533333pt;}
.y1d7{bottom:688.092000pt;}
.y192{bottom:688.128000pt;}
.y10a{bottom:690.361733pt;}
.y49{bottom:690.434667pt;}
.ye7{bottom:691.714667pt;}
.y7d{bottom:692.113333pt;}
.yc1{bottom:692.512000pt;}
.y200{bottom:695.301333pt;}
.y25c{bottom:697.890667pt;}
.y174{bottom:700.880000pt;}
.y141{bottom:701.370667pt;}
.y293{bottom:701.876000pt;}
.y23b{bottom:704.865333pt;}
.y48{bottom:707.730667pt;}
.ye6{bottom:708.452000pt;}
.y7c{bottom:708.850667pt;}
.yc0{bottom:709.248000pt;}
.y25b{bottom:713.233333pt;}
.y1d6{bottom:715.138667pt;}
.y292{bottom:717.218667pt;}
.y173{bottom:717.617333pt;}
.y140{bottom:718.108000pt;}
.y23a{bottom:721.602667pt;}
.y47{bottom:725.025333pt;}
.ye5{bottom:725.189333pt;}
.y7b{bottom:725.588000pt;}
.ybf{bottom:725.985333pt;}
.y1ff{bottom:727.978667pt;}
.y25a{bottom:728.576000pt;}
.y291{bottom:732.561333pt;}
.y172{bottom:734.354667pt;}
.y1b2{bottom:735.076000pt;}
.y239{bottom:738.340000pt;}
.y108{bottom:739.001853pt;}
.ye4{bottom:741.926667pt;}
.y46{bottom:742.321333pt;}
.y7a{bottom:742.324000pt;}
.ybe{bottom:742.722667pt;}
.y259{bottom:743.918667pt;}
.y1fe{bottom:744.716000pt;}
.y107{bottom:747.561733pt;}
.y290{bottom:747.904000pt;}
.y171{bottom:751.092000pt;}
.y13f{bottom:753.782667pt;}
.y238{bottom:755.077333pt;}
.ye3{bottom:758.664000pt;}
.y79{bottom:759.061333pt;}
.y258{bottom:759.261333pt;}
.ybd{bottom:759.460000pt;}
.y45{bottom:759.616000pt;}
.y28f{bottom:763.246667pt;}
.y13e{bottom:766.401333pt;}
.y170{bottom:767.829333pt;}
.y237{bottom:771.814667pt;}
.y257{bottom:774.604000pt;}
.y78{bottom:775.798667pt;}
.ybc{bottom:776.197333pt;}
.y44{bottom:776.910667pt;}
.y1fd{bottom:777.393333pt;}
.y28e{bottom:778.589333pt;}
.ye2{bottom:779.385333pt;}
.y2{bottom:781.661334pt;}
.y16f{bottom:784.566667pt;}
.y13d{bottom:785.808000pt;}
.y236{bottom:788.552000pt;}
.y256{bottom:789.946667pt;}
.y77{bottom:792.536000pt;}
.ybb{bottom:792.934667pt;}
.y13c{bottom:793.114667pt;}
.y28d{bottom:793.930667pt;}
.y1fc{bottom:794.130667pt;}
.y16e{bottom:801.304000pt;}
.y235{bottom:805.289333pt;}
.y43{bottom:807.393333pt;}
.y76{bottom:809.273333pt;}
.yba{bottom:809.672000pt;}
.y1fb{bottom:810.868000pt;}
.y16d{bottom:818.041333pt;}
.y255{bottom:820.630667pt;}
.y13b{bottom:821.434667pt;}
.y42{bottom:821.738667pt;}
.y28c{bottom:824.616000pt;}
.y75{bottom:826.010667pt;}
.yb9{bottom:826.409333pt;}
.y1fa{bottom:827.605333pt;}
.y13a{bottom:828.740000pt;}
.y16c{bottom:834.778667pt;}
.y254{bottom:835.973333pt;}
.y28b{bottom:839.958667pt;}
.y74{bottom:842.748000pt;}
.yb8{bottom:843.146667pt;}
.y1f9{bottom:844.342667pt;}
.y253{bottom:851.316000pt;}
.y28a{bottom:855.301333pt;}
.y16b{bottom:855.500000pt;}
.y139{bottom:857.060000pt;}
.y1{bottom:859.312000pt;}
.y73{bottom:859.485333pt;}
.yb7{bottom:859.884000pt;}
.y1f8{bottom:861.080000pt;}
.y41{bottom:861.493333pt;}
.y138{bottom:864.365333pt;}
.y252{bottom:866.658667pt;}
.y289{bottom:870.644000pt;}
.y16a{bottom:872.237333pt;}
.y72{bottom:876.222667pt;}
.yb6{bottom:876.621333pt;}
.y1f7{bottom:877.817333pt;}
.y2b8{bottom:881.934667pt;}
.y251{bottom:882.001333pt;}
.y288{bottom:885.986667pt;}
.y169{bottom:888.974667pt;}
.y137{bottom:892.685333pt;}
.y71{bottom:892.960000pt;}
.yb5{bottom:893.358667pt;}
.y40{bottom:896.977333pt;}
.y2b7{bottom:897.277333pt;}
.y250{bottom:897.344000pt;}
.y136{bottom:899.992000pt;}
.y287{bottom:901.329333pt;}
.y168{bottom:905.712000pt;}
.y70{bottom:909.697333pt;}
.yb4{bottom:910.096000pt;}
.y1f6{bottom:910.494667pt;}
.y2b6{bottom:912.620000pt;}
.y24f{bottom:912.686667pt;}
.y286{bottom:916.670667pt;}
.y3f{bottom:922.082667pt;}
.y167{bottom:922.449333pt;}
.y6f{bottom:926.434667pt;}
.y1f5{bottom:927.232000pt;}
.y24e{bottom:928.029333pt;}
.y135{bottom:928.312000pt;}
.yb3{bottom:930.818667pt;}
.y285{bottom:932.013333pt;}
.y134{bottom:935.617333pt;}
.y166{bottom:939.186667pt;}
.y6e{bottom:943.172000pt;}
.y24d{bottom:943.370667pt;}
.y3e{bottom:947.188000pt;}
.y284{bottom:947.356000pt;}
.y165{bottom:955.924000pt;}
.y24c{bottom:958.713333pt;}
.y6d{bottom:959.909333pt;}
.y283{bottom:962.698667pt;}
.y133{bottom:963.937333pt;}
.y3d{bottom:972.294667pt;}
.y24b{bottom:974.056000pt;}
.y6c{bottom:976.646667pt;}
.y282{bottom:978.041333pt;}
.y6b{bottom:993.384000pt;}
.y132{bottom:994.700000pt;}
.y3a{bottom:1010.949333pt;}
.y6a{bottom:1046.810667pt;}
.h26{height:19.340727pt;}
.h29{height:19.473562pt;}
.h22{height:24.582445pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h7{height:28.560000pt;}
.h16{height:30.732706pt;}
.h10{height:30.945242pt;}
.h13{height:31.157778pt;}
.h1e{height:34.574438pt;}
.h11{height:34.813542pt;}
.h21{height:35.052646pt;}
.h1d{height:35.343750pt;}
.h25{height:37.087439pt;}
.hf{height:38.415786pt;}
.h24{height:38.462187pt;}
.h12{height:38.681455pt;}
.hd{height:38.947124pt;}
.h1c{height:39.349375pt;}
.h18{height:39.359687pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h28{height:43.660390pt;}
.h1b{height:44.390625pt;}
.hb{height:45.271688pt;}
.h27{height:46.285542pt;}
.h15{height:46.409455pt;}
.h14{height:48.511220pt;}
.h2{height:48.960000pt;}
.h1a{height:49.421563pt;}
.h19{height:49.708594pt;}
.hc{height:54.767117pt;}
.h5{height:57.120000pt;}
.h1f{height:64.034876pt;}
.h20{height:64.040209pt;}
.he{height:69.148877pt;}
.h4{height:105.826671pt;}
.h23{height:271.592000pt;}
.h17{height:311.272000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w6{width:423.794667pt;}
.w5{width:484.072000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x12{left:-173.090667pt;}
.x29{left:-171.228000pt;}
.x0{left:0.000000pt;}
.x2b{left:2.612000pt;}
.x15{left:18.909333pt;}
.x13{left:29.069333pt;}
.x2c{left:30.931906pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.xf{left:59.618667pt;}
.x11{left:63.577333pt;}
.x10{left:65.676000pt;}
.x1b{left:69.338667pt;}
.x16{left:73.254667pt;}
.x32{left:74.862667pt;}
.x31{left:76.309333pt;}
.x33{left:86.813333pt;}
.x34{left:87.930667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xb{left:106.162667pt;}
.x17{left:136.064000pt;}
.x4{left:180.874667pt;}
.xc{left:185.738667pt;}
.x38{left:196.821333pt;}
.x39{left:198.525333pt;}
.x40{left:200.457333pt;}
.x3a{left:201.889333pt;}
.x41{left:203.822667pt;}
.x18{left:207.173333pt;}
.x8{left:220.912000pt;}
.x7{left:221.858667pt;}
.x49{left:229.436000pt;}
.x4a{left:231.140000pt;}
.x4b{left:234.505333pt;}
.x30{left:249.233333pt;}
.x9{left:250.204000pt;}
.x35{left:251.542667pt;}
.x24{left:252.608000pt;}
.x28{left:254.420000pt;}
.x36{left:256.610667pt;}
.x25{left:258.334667pt;}
.x19{left:277.806667pt;}
.x1a{left:353.596000pt;}
.x37{left:357.465333pt;}
.x3b{left:387.861333pt;}
.x3c{left:389.565333pt;}
.x3d{left:392.930667pt;}
.x3{left:404.408000pt;}
.x3e{left:406.146667pt;}
.x3f{left:409.510667pt;}
.x2a{left:420.612000pt;}
.x26{left:443.760000pt;}
.x14{left:483.387081pt;}
.x2d{left:507.693333pt;}
.x1d{left:509.621333pt;}
.x1e{left:520.033333pt;}
.x21{left:544.930667pt;}
.x22{left:550.812000pt;}
.x23{left:551.936000pt;}
.x42{left:554.084000pt;}
.x1f{left:555.325333pt;}
.x43{left:558.065333pt;}
.xd{left:566.290667pt;}
.x20{left:579.049333pt;}
.x1c{left:598.004000pt;}
.xa{left:608.789333pt;}
.x44{left:617.044000pt;}
.x45{left:618.540000pt;}
.x46{left:621.694667pt;}
.x2e{left:625.560000pt;}
.x27{left:636.225333pt;}
.x2f{left:637.988000pt;}
.x47{left:675.193333pt;}
.x48{left:676.353333pt;}
.xe{left:678.722667pt;}
}




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