
    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_4a2172c0af34cc1485427214.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.892000;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_3265da8995e1f328ed1f84f7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bfa1f694ef3d2d9d96f804f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_0b30e33c38b4684fe657f294.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ac2196a587bee1936b8a9b02.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.710573;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_c3959dc275a65083fe7e754b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.987000;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_f4a057631ab780a41e003f26.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f64a467a1e4ce2c440d6a970.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_01512794ed5b027b28e61862.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.398000;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_993ea70acbe7a6677bddfdb6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_bcdb7e6c76ce89cd5594dd08.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.699000;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_40ad7eae2a85fb8531695346.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.650000;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_16a9eaca45589b19ab882e59.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.650000;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_908046ea0743de29f1745334.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_19c66859cc15232823e57974.woff2')format("woff");}.fff{font-family:fff;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_43932f61cf131d6d5aaa2140.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.665000;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_f55278c41c3b6af838dba4af.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_fbc9f943789d97b3b6065c8b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_e9304688de14a1b572f7b1c5.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_df63080a496c50d2acf41c52.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.650000;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_07b39e6e70fc0300cd4f5db4.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{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);}
.m1b{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);}
.m24{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);}
.m5{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);}
.m16{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);}
.m6{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);}
.m1e{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);}
.m1{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);}
.m25{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);}
.m29{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);}
.m21{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);}
.m18{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);}
.m26{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);}
.m1d{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);}
.m1a{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);}
.m10{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);}
.m27{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);}
.m19{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);}
.m7{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);}
.ma{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.me{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);}
.m22{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);}
.m13{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);}
.m1f{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);}
.m14{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);}
.m1c{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);}
.m28{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);}
.m12{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);}
.md{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);}
.m11{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);}
.m23{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);}
.mf{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);}
.m20{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);}
.m15{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);}
.m2{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);}
.m17{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);}
.mb{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);}
.m9{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);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.856000px;}
.v3{vertical-align:-12.624000px;}
.v4{vertical-align:-10.578000px;}
.v8{vertical-align:-8.964000px;}
.v9{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:10.578000px;}
.v5{vertical-align:19.188000px;}
.v1{vertical-align:22.860000px;}
.vd{vertical-align:24.408000px;}
.v7{vertical-align:26.202000px;}
.va{vertical-align:28.950000px;}
.vf{vertical-align:38.592000px;}
.vb{vertical-align:43.218000px;}
.ve{vertical-align:47.820000px;}
.v6{vertical-align:50.988000px;}
.ls5{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.000307px;}
.ls7e{letter-spacing:0.002229px;}
.ls5a{letter-spacing:0.002725px;}
.ls8b{letter-spacing:0.390845px;}
.ls70{letter-spacing:0.420583px;}
.ls25{letter-spacing:0.524229px;}
.ls11{letter-spacing:0.538200px;}
.ls2e{letter-spacing:0.595573px;}
.ls2d{letter-spacing:0.602602px;}
.ls50{letter-spacing:0.668523px;}
.ls73{letter-spacing:0.670800px;}
.ls95{letter-spacing:0.671222px;}
.ls5c{letter-spacing:0.671510px;}
.ls94{letter-spacing:0.672159px;}
.ls23{letter-spacing:0.674333px;}
.ls99{letter-spacing:0.674905px;}
.ls69{letter-spacing:0.677510px;}
.ls87{letter-spacing:0.744775px;}
.ls10{letter-spacing:0.747485px;}
.ls4d{letter-spacing:0.747634px;}
.ls86{letter-spacing:0.753701px;}
.ls1f{letter-spacing:0.925555px;}
.ls1c{letter-spacing:0.926467px;}
.ls55{letter-spacing:0.992725px;}
.ls19{letter-spacing:1.013675px;}
.ls33{letter-spacing:1.019675px;}
.ls2b{letter-spacing:1.045573px;}
.ls9a{letter-spacing:1.193933px;}
.ls97{letter-spacing:1.194845px;}
.ls90{letter-spacing:1.206845px;}
.ls8d{letter-spacing:1.212845px;}
.ls2f{letter-spacing:1.317292px;}
.ls68{letter-spacing:1.747133px;}
.lsa{letter-spacing:1.935485px;}
.ls15{letter-spacing:1.941485px;}
.lse{letter-spacing:2.538583px;}
.lsc{letter-spacing:2.692200px;}
.lsd{letter-spacing:2.779200px;}
.ls48{letter-spacing:2.988600px;}
.ls13{letter-spacing:2.989200px;}
.ls8e{letter-spacing:2.990100px;}
.ls17{letter-spacing:3.109171px;}
.ls2c{letter-spacing:3.436282px;}
.ls1d{letter-spacing:3.507980px;}
.ls40{letter-spacing:3.510600px;}
.ls89{letter-spacing:3.513980px;}
.ls8a{letter-spacing:3.560153px;}
.ls9b{letter-spacing:4.188600px;}
.ls12{letter-spacing:4.933200px;}
.lsf{letter-spacing:6.277200px;}
.ls7{letter-spacing:7.222200px;}
.ls27{letter-spacing:8.185250px;}
.ls85{letter-spacing:8.816383px;}
.ls26{letter-spacing:8.955901px;}
.ls21{letter-spacing:9.548527px;}
.ls46{letter-spacing:9.552307px;}
.ls43{letter-spacing:9.558307px;}
.ls9{letter-spacing:9.690571px;}
.ls22{letter-spacing:10.226523px;}
.ls45{letter-spacing:10.230106px;}
.lsa2{letter-spacing:10.740196px;}
.ls4{letter-spacing:11.954850px;}
.lsa0{letter-spacing:11.958563px;}
.lsa4{letter-spacing:12.019788px;}
.ls42{letter-spacing:12.374016px;}
.ls6b{letter-spacing:12.851754px;}
.ls2a{letter-spacing:13.143449px;}
.lsa5{letter-spacing:13.380251px;}
.lsa7{letter-spacing:13.447990px;}
.ls9f{letter-spacing:13.448400px;}
.ls80{letter-spacing:13.448523px;}
.lsa1{letter-spacing:13.454400px;}
.ls9e{letter-spacing:13.456282px;}
.lsa6{letter-spacing:13.493228px;}
.ls5f{letter-spacing:13.645377px;}
.ls9c{letter-spacing:13.645874px;}
.ls60{letter-spacing:13.651377px;}
.ls9d{letter-spacing:13.651874px;}
.ls16{letter-spacing:14.030276px;}
.ls20{letter-spacing:14.121082px;}
.ls3f{letter-spacing:14.125114px;}
.ls79{letter-spacing:14.125133px;}
.ls1b{letter-spacing:14.226593px;}
.ls5e{letter-spacing:14.318333px;}
.ls7f{letter-spacing:14.319533px;}
.ls78{letter-spacing:14.323133px;}
.ls61{letter-spacing:14.324333px;}
.ls29{letter-spacing:14.583467px;}
.ls49{letter-spacing:14.704798px;}
.ls52{letter-spacing:14.750276px;}
.ls3{letter-spacing:14.756276px;}
.ls54{letter-spacing:14.764573px;}
.ls14{letter-spacing:14.780276px;}
.ls4b{letter-spacing:14.804276px;}
.ls6{letter-spacing:14.943900px;}
.ls4c{letter-spacing:15.302554px;}
.ls3e{letter-spacing:15.422105px;}
.ls36{letter-spacing:15.498775px;}
.lsb{letter-spacing:15.500276px;}
.ls64{letter-spacing:15.500725px;}
.ls2{letter-spacing:15.504775px;}
.ls51{letter-spacing:15.506725px;}
.ls3c{letter-spacing:15.534775px;}
.ls82{letter-spacing:15.546775px;}
.ls63{letter-spacing:15.554725px;}
.ls3b{letter-spacing:15.558775px;}
.ls18{letter-spacing:15.560276px;}
.ls38{letter-spacing:15.612775px;}
.ls31{letter-spacing:15.756775px;}
.ls59{letter-spacing:15.758725px;}
.ls8{letter-spacing:15.800276px;}
.ls32{letter-spacing:16.046276px;}
.ls4f{letter-spacing:16.438290px;}
.ls44{letter-spacing:16.440600px;}
.ls5b{letter-spacing:16.632600px;}
.ls5d{letter-spacing:16.638600px;}
.ls57{letter-spacing:16.694276px;}
.ls88{letter-spacing:16.934333px;}
.ls8c{letter-spacing:16.959403px;}
.ls98{letter-spacing:16.962600px;}
.ls62{letter-spacing:17.198725px;}
.ls81{letter-spacing:17.294912px;}
.ls34{letter-spacing:17.300912px;}
.ls6d{letter-spacing:17.676775px;}
.ls58{letter-spacing:17.743200px;}
.ls4a{letter-spacing:17.791200px;}
.ls77{letter-spacing:17.935200px;}
.ls53{letter-spacing:18.163200px;}
.ls65{letter-spacing:18.306600px;}
.ls83{letter-spacing:18.308153px;}
.ls30{letter-spacing:18.309886px;}
.ls35{letter-spacing:18.320153px;}
.ls56{letter-spacing:18.630571px;}
.lsa3{letter-spacing:18.685694px;}
.ls3a{letter-spacing:18.955200px;}
.ls6f{letter-spacing:18.972775px;}
.ls39{letter-spacing:19.068416px;}
.ls7d{letter-spacing:19.107533px;}
.ls7c{letter-spacing:19.111133px;}
.ls7b{letter-spacing:19.112333px;}
.ls6c{letter-spacing:19.470775px;}
.ls6e{letter-spacing:19.608775px;}
.ls3d{letter-spacing:20.028571px;}
.ls75{letter-spacing:20.426333px;}
.ls72{letter-spacing:20.431133px;}
.ls4e{letter-spacing:20.665200px;}
.ls76{letter-spacing:21.259200px;}
.ls37{letter-spacing:21.280114px;}
.ls7a{letter-spacing:21.432600px;}
.ls74{letter-spacing:22.746600px;}
.ls84{letter-spacing:23.270276px;}
.ls6a{letter-spacing:23.395200px;}
.ls71{letter-spacing:24.025142px;}
.ls67{letter-spacing:29.048333px;}
.ls66{letter-spacing:31.362600px;}
.ls24{letter-spacing:47.557250px;}
.ls0{letter-spacing:70.236600px;}
.ls1{letter-spacing:72.353510px;}
.ls41{letter-spacing:72.408159px;}
.ls8f{letter-spacing:84.504600px;}
.ls96{letter-spacing:129.222159px;}
.ls28{letter-spacing:135.588600px;}
.ls91{letter-spacing:136.368600px;}
.ls1e{letter-spacing:217.004880px;}
.ls93{letter-spacing:309.132600px;}
.ls92{letter-spacing:309.138600px;}
.ls1a{letter-spacing:1078.454153px;}
.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;}
}
.ws31{word-spacing:-29.774560px;}
.ws0{word-spacing:-28.532313px;}
.ws3{word-spacing:-14.943900px;}
.ws37{word-spacing:-13.449600px;}
.ws21{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws40{word-spacing:-10.460700px;}
.ws3f{word-spacing:-5.272243px;}
.ws3e{word-spacing:-3.918634px;}
.ws3b{word-spacing:-3.896400px;}
.wsc6{word-spacing:-3.892800px;}
.ws3a{word-spacing:-3.880099px;}
.ws8a{word-spacing:-3.168107px;}
.ws68{word-spacing:-3.108331px;}
.wsb9{word-spacing:-3.048556px;}
.ws14{word-spacing:-2.988780px;}
.wsa4{word-spacing:-2.929004px;}
.wsfd{word-spacing:-2.743718px;}
.wsfa{word-spacing:-2.689920px;}
.wsba{word-spacing:-2.689902px;}
.ws26{word-spacing:-2.450800px;}
.ws79{word-spacing:-2.391024px;}
.ws62{word-spacing:-2.331248px;}
.ws104{word-spacing:-2.205734px;}
.ws44{word-spacing:-2.092146px;}
.wsb0{word-spacing:-1.972595px;}
.ws10d{word-spacing:-1.882944px;}
.ws66{word-spacing:-1.853044px;}
.ws10e{word-spacing:-1.829146px;}
.ws8d{word-spacing:-1.793268px;}
.ws9{word-spacing:-1.733492px;}
.ws96{word-spacing:-1.673717px;}
.ws97{word-spacing:-1.651200px;}
.wsad{word-spacing:-1.613941px;}
.wsf4{word-spacing:-1.506355px;}
.wsd9{word-spacing:-1.494390px;}
.wsd3{word-spacing:-1.434614px;}
.ws15{word-spacing:-1.255288px;}
.ws7d{word-spacing:-1.135736px;}
.ws99{word-spacing:-0.968371px;}
.wsc9{word-spacing:-0.956410px;}
.wsde{word-spacing:-0.896634px;}
.ws52{word-spacing:-0.836858px;}
.ws46{word-spacing:-0.777083px;}
.ws29{word-spacing:-0.717307px;}
.wsa9{word-spacing:-0.657532px;}
.wsaa{word-spacing:-0.597756px;}
.ws2a{word-spacing:-0.537980px;}
.ws4e{word-spacing:-0.418429px;}
.ws45{word-spacing:-0.358654px;}
.ws8{word-spacing:-0.298878px;}
.ws9a{word-spacing:-0.285035px;}
.ws19{word-spacing:-0.239102px;}
.ws91{word-spacing:-0.215194px;}
.ws92{word-spacing:-0.202141px;}
.ws93{word-spacing:-0.199264px;}
.ws9e{word-spacing:-0.188400px;}
.ws1d{word-spacing:-0.179327px;}
.ws94{word-spacing:-0.161395px;}
.ws8c{word-spacing:-0.137147px;}
.ws27{word-spacing:-0.119551px;}
.wse7{word-spacing:-0.107597px;}
.ws22{word-spacing:-0.059776px;}
.wsd7{word-spacing:-0.053798px;}
.ws110{word-spacing:-0.007517px;}
.ws101{word-spacing:-0.004531px;}
.wsf6{word-spacing:-0.004435px;}
.wsc7{word-spacing:-0.003034px;}
.wsfc{word-spacing:-0.001517px;}
.ws1{word-spacing:0.000000px;}
.ws20{word-spacing:0.003599px;}
.wsd4{word-spacing:0.053798px;}
.ws16{word-spacing:0.059776px;}
.ws43{word-spacing:0.095641px;}
.wsa5{word-spacing:0.107597px;}
.ws25{word-spacing:0.119551px;}
.ws6{word-spacing:0.161395px;}
.ws47{word-spacing:0.179327px;}
.wsd5{word-spacing:0.215194px;}
.wsd{word-spacing:0.239102px;}
.wsd6{word-spacing:0.268992px;}
.ws63{word-spacing:0.298878px;}
.wsd0{word-spacing:0.322790px;}
.wsc{word-spacing:0.358654px;}
.ws6c{word-spacing:0.418429px;}
.ws7a{word-spacing:0.478205px;}
.ws90{word-spacing:0.537984px;}
.ws2e{word-spacing:0.556676px;}
.ws2d{word-spacing:0.558670px;}
.ws2f{word-spacing:0.577615px;}
.ws30{word-spacing:0.583476px;}
.wscf{word-spacing:0.591782px;}
.ws58{word-spacing:0.597756px;}
.wse5{word-spacing:0.645581px;}
.wscb{word-spacing:0.657532px;}
.ws33{word-spacing:0.681533px;}
.wsf9{word-spacing:0.699379px;}
.ws95{word-spacing:0.717307px;}
.ws34{word-spacing:0.724666px;}
.wsa7{word-spacing:0.836858px;}
.ws8f{word-spacing:0.860774px;}
.ws2b{word-spacing:0.896634px;}
.wsfb{word-spacing:0.914573px;}
.ws57{word-spacing:0.956410px;}
.ws98{word-spacing:0.968371px;}
.ws1a{word-spacing:1.016185px;}
.ws1b{word-spacing:1.075961px;}
.wsbb{word-spacing:1.135736px;}
.wse2{word-spacing:1.195512px;}
.wsdc{word-spacing:1.237363px;}
.ws12{word-spacing:1.255288px;}
.ws7c{word-spacing:1.315063px;}
.wsd2{word-spacing:1.344960px;}
.wsda{word-spacing:1.374839px;}
.ws83{word-spacing:1.434614px;}
.ws82{word-spacing:1.449235px;}
.ws55{word-spacing:1.494390px;}
.ws18{word-spacing:1.554166px;}
.ws6f{word-spacing:1.613941px;}
.ws61{word-spacing:1.673717px;}
.ws28{word-spacing:1.733492px;}
.wsc8{word-spacing:1.746278px;}
.wsb3{word-spacing:1.793268px;}
.ws76{word-spacing:1.912819px;}
.wsd1{word-spacing:1.990541px;}
.wsa8{word-spacing:2.077776px;}
.ws8b{word-spacing:2.092146px;}
.ws23{word-spacing:2.151922px;}
.wsaf{word-spacing:2.157406px;}
.ws5a{word-spacing:2.211697px;}
.ws5b{word-spacing:2.271473px;}
.ws86{word-spacing:2.331248px;}
.wsa6{word-spacing:2.391024px;}
.wsa1{word-spacing:2.450800px;}
.wsc3{word-spacing:2.474726px;}
.ws4f{word-spacing:2.510575px;}
.wsc2{word-spacing:2.510824px;}
.wsc4{word-spacing:2.514965px;}
.wsc1{word-spacing:2.515906px;}
.wsc5{word-spacing:2.528525px;}
.ws64{word-spacing:2.570351px;}
.wsd8{word-spacing:2.582323px;}
.ws13{word-spacing:2.630126px;}
.wsf7{word-spacing:2.636122px;}
.ws24{word-spacing:2.689902px;}
.ws6e{word-spacing:2.749678px;}
.ws71{word-spacing:2.754670px;}
.ws67{word-spacing:2.869229px;}
.ws72{word-spacing:2.929004px;}
.wsf5{word-spacing:2.958912px;}
.ws5e{word-spacing:2.988780px;}
.ws73{word-spacing:3.048556px;}
.ws107{word-spacing:3.066509px;}
.ws80{word-spacing:3.108331px;}
.ws7b{word-spacing:3.168107px;}
.wse8{word-spacing:3.194822px;}
.wsf0{word-spacing:3.225082px;}
.ws2c{word-spacing:3.227882px;}
.ws7{word-spacing:3.227904px;}
.wsb8{word-spacing:3.272988px;}
.wsb7{word-spacing:3.274588px;}
.wsb6{word-spacing:3.281412px;}
.wsb5{word-spacing:3.281702px;}
.ws48{word-spacing:3.287658px;}
.wse6{word-spacing:3.335501px;}
.ws49{word-spacing:3.347434px;}
.wsff{word-spacing:3.443098px;}
.wsdf{word-spacing:3.466985px;}
.ws6d{word-spacing:3.526760px;}
.ws17{word-spacing:3.586536px;}
.wsb4{word-spacing:3.604493px;}
.ws5c{word-spacing:3.706087px;}
.wsef{word-spacing:3.712090px;}
.ws74{word-spacing:3.765863px;}
.ws103{word-spacing:3.819686px;}
.wsb2{word-spacing:3.825638px;}
.ws102{word-spacing:3.873485px;}
.wsb1{word-spacing:3.885414px;}
.ws77{word-spacing:3.945190px;}
.wsa{word-spacing:4.004965px;}
.ws81{word-spacing:4.064741px;}
.ws51{word-spacing:4.124516px;}
.ws10a{word-spacing:4.142477px;}
.ws50{word-spacing:4.184292px;}
.wsdd{word-spacing:4.303843px;}
.wsfe{word-spacing:4.357670px;}
.wsbc{word-spacing:4.423394px;}
.ws5d{word-spacing:4.542946px;}
.ws5f{word-spacing:4.662497px;}
.wsae{word-spacing:4.662670px;}
.wsbe{word-spacing:4.734259px;}
.ws70{word-spacing:4.782048px;}
.wse1{word-spacing:4.841824px;}
.ws60{word-spacing:5.021150px;}
.wsbd{word-spacing:5.057050px;}
.wse3{word-spacing:5.140702px;}
.ws100{word-spacing:5.164646px;}
.ws75{word-spacing:5.200477px;}
.ws10b{word-spacing:5.272243px;}
.ws59{word-spacing:5.320028px;}
.wsa2{word-spacing:5.439580px;}
.wse{word-spacing:5.499355px;}
.ws88{word-spacing:5.559131px;}
.ws10{word-spacing:5.858009px;}
.wsf1{word-spacing:5.864026px;}
.ws56{word-spacing:5.917784px;}
.ws11{word-spacing:5.977560px;}
.ws89{word-spacing:6.037336px;}
.wsc0{word-spacing:6.079219px;}
.ws4b{word-spacing:6.216662px;}
.ws105{word-spacing:6.240614px;}
.ws4a{word-spacing:6.276438px;}
.ws4d{word-spacing:6.336214px;}
.ws32{word-spacing:6.387600px;}
.ws4c{word-spacing:6.395989px;}
.wsbf{word-spacing:6.455808px;}
.wsb{word-spacing:6.754643px;}
.ws10c{word-spacing:6.886195px;}
.ws78{word-spacing:6.933970px;}
.wse0{word-spacing:7.053521px;}
.wsa3{word-spacing:7.471950px;}
.ws65{word-spacing:7.531726px;}
.wsab{word-spacing:7.770828px;}
.wsca{word-spacing:8.009930px;}
.ws54{word-spacing:8.129482px;}
.wscd{word-spacing:8.189257px;}
.wsce{word-spacing:8.249033px;}
.ws9c{word-spacing:8.273788px;}
.ws9b{word-spacing:8.274729px;}
.ws9d{word-spacing:8.284954px;}
.wsdb{word-spacing:8.308808px;}
.wsf2{word-spacing:8.446349px;}
.ws109{word-spacing:8.607744px;}
.ws1e{word-spacing:9.085891px;}
.wsf{word-spacing:9.145667px;}
.wsf3{word-spacing:9.629914px;}
.wsac{word-spacing:9.683647px;}
.wscc{word-spacing:10.042301px;}
.wse4{word-spacing:10.520506px;}
.ws6b{word-spacing:11.058486px;}
.ws53{word-spacing:11.118262px;}
.ws1c{word-spacing:11.178037px;}
.wsf8{word-spacing:11.566656px;}
.ws6a{word-spacing:12.194222px;}
.ws87{word-spacing:12.433325px;}
.ws108{word-spacing:12.804019px;}
.ws10f{word-spacing:13.395802px;}
.ws35{word-spacing:14.070307px;}
.ws1f{word-spacing:14.346144px;}
.wsa0{word-spacing:18.291456px;}
.ws9f{word-spacing:18.937037px;}
.ws106{word-spacing:22.380134px;}
.ws69{word-spacing:27.197898px;}
.ws4{word-spacing:46.058400px;}
.ws85{word-spacing:58.263667px;}
.ws7f{word-spacing:58.947494px;}
.ws36{word-spacing:58.949443px;}
.wseb{word-spacing:60.027110px;}
.ws5{word-spacing:60.999600px;}
.wse9{word-spacing:90.531110px;}
.ws84{word-spacing:111.846874px;}
.wsea{word-spacing:119.055859px;}
.wsee{word-spacing:119.163456px;}
.ws7e{word-spacing:134.268374px;}
.ws39{word-spacing:178.718285px;}
.ws42{word-spacing:186.841843px;}
.ws3d{word-spacing:209.329574px;}
.wsec{word-spacing:212.180890px;}
.ws3c{word-spacing:219.314400px;}
.ws38{word-spacing:222.025997px;}
.ws41{word-spacing:260.922240px;}
.wsed{word-spacing:665.865110px;}
.ws8e{word-spacing:1031.129100px;}
._32{margin-left:-7.711052px;}
._0{margin-left:-6.635092px;}
._b{margin-left:-5.379804px;}
._2{margin-left:-3.981082px;}
._43{margin-left:-2.958912px;}
._3{margin-left:-1.936742px;}
._c{width:1.581180px;}
._1{width:2.992284px;}
._49{width:4.387700px;}
._1f{width:8.727238px;}
._34{width:12.373632px;}
._12{width:13.557132px;}
._f{width:14.824386px;}
._5{width:16.677504px;}
._13{width:17.836940px;}
._7{width:19.068416px;}
._21{width:20.144377px;}
._23{width:21.220338px;}
._a{width:22.356074px;}
._6{width:24.233041px;}
._d{width:26.038278px;}
._9{width:27.245744px;}
._1e{width:29.050942px;}
._22{width:30.927908px;}
._e{width:33.462407px;}
._20{width:35.805584px;}
._47{width:36.817171px;}
._2d{width:37.981429px;}
._40{width:39.249881px;}
._33{width:40.372453px;}
._2f{width:41.484266px;}
._31{width:42.978656px;}
._44{width:44.284254px;}
._46{width:45.364268px;}
._8{width:47.366198px;}
._30{width:49.051805px;}
._45{width:55.349208px;}
._48{width:58.747817px;}
._42{width:61.868160px;}
._4{width:64.558080px;}
._41{width:67.471352px;}
._39{width:71.713267px;}
._2c{width:118.571674px;}
._35{width:121.799578px;}
._29{width:129.438950px;}
._27{width:134.711194px;}
._3d{width:144.072115px;}
._37{width:149.882342px;}
._2b{width:152.410867px;}
._24{width:158.382221px;}
._2a{width:181.354406px;}
._1a{width:183.129718px;}
._36{width:202.712371px;}
._38{width:227.943821px;}
._1d{width:229.503974px;}
._28{width:235.368000px;}
._17{width:237.748781px;}
._25{width:242.092800px;}
._14{width:245.858688px;}
._26{width:275.071219px;}
._19{width:277.761139px;}
._18{width:279.913075px;}
._3a{width:283.894157px;}
._3e{width:301.647629px;}
._16{width:319.670093px;}
._1c{width:346.569293px;}
._15{width:363.946176px;}
._1b{width:391.706078px;}
._3b{width:396.171418px;}
._3f{width:432.861926px;}
._3c{width:482.625446px;}
._10{width:897.973427px;}
._2e{width:2000.762700px;}
._11{width:2024.672700px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(74,73,130);}
.fs8{font-size:29.887800px;}
.fs7{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:114.129254px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.739201px;}
.y2{bottom:30.271042px;}
.y2f{bottom:63.780000px;}
.y4a{bottom:111.193500px;}
.y7b{bottom:115.570500px;}
.yec{bottom:116.059500px;}
.y1a2{bottom:117.030000px;}
.y2e{bottom:118.776000px;}
.y8f{bottom:119.185500px;}
.y12b{bottom:119.844000px;}
.yc9{bottom:119.863500px;}
.y1ae{bottom:121.035000px;}
.y151{bottom:121.603500px;}
.ybd{bottom:123.121500px;}
.y49{bottom:126.660000px;}
.y48{bottom:131.457000px;}
.y22b{bottom:134.109000px;}
.y1f9{bottom:134.152500px;}
.y7a{bottom:135.834000px;}
.yeb{bottom:136.324500px;}
.y1a1{bottom:137.295000px;}
.y2d{bottom:139.039500px;}
.y12a{bottom:139.077000px;}
.y8e{bottom:139.449000px;}
.yc8{bottom:140.128500px;}
.y1ad{bottom:141.300000px;}
.y1b7{bottom:141.651000px;}
.y150{bottom:141.868500px;}
.ybc{bottom:143.386500px;}
.y12d{bottom:143.761500px;}
.y47{bottom:151.722000px;}
.y22a{bottom:153.477000px;}
.y1f8{bottom:153.520500px;}
.y129{bottom:155.748000px;}
.y79{bottom:156.099000px;}
.yea{bottom:156.588000px;}
.y1a0{bottom:157.558500px;}
.y128{bottom:158.310000px;}
.y2c{bottom:159.304500px;}
.y8d{bottom:159.714000px;}
.yc7{bottom:160.392000px;}
.y1ac{bottom:161.563500px;}
.y1b6{bottom:161.914500px;}
.y14f{bottom:162.132000px;}
.y118{bottom:162.786000px;}
.y12c{bottom:162.994500px;}
.ybb{bottom:163.650000px;}
.y169{bottom:169.510500px;}
.y191{bottom:171.270000px;}
.y46{bottom:171.985500px;}
.y229{bottom:172.843500px;}
.y1f7{bottom:172.888500px;}
.y114{bottom:176.010000px;}
.y78{bottom:176.362500px;}
.ye9{bottom:176.853000px;}
.y19f{bottom:177.822000px;}
.y2b{bottom:179.568000px;}
.y8c{bottom:179.977500px;}
.yc6{bottom:180.657000px;}
.y1ab{bottom:181.828500px;}
.y117{bottom:182.019000px;}
.y1b5{bottom:182.178000px;}
.y14e{bottom:182.395500px;}
.y127{bottom:183.870000px;}
.yba{bottom:183.913500px;}
.y168{bottom:188.743500px;}
.y190{bottom:191.535000px;}
.y45{bottom:192.250500px;}
.y1f6{bottom:192.255000px;}
.y113{bottom:196.275000px;}
.y77{bottom:196.626000px;}
.ye8{bottom:197.116500px;}
.y1cb{bottom:197.317500px;}
.y19e{bottom:198.087000px;}
.y2a{bottom:199.833000px;}
.y8b{bottom:200.241000px;}
.yc5{bottom:200.920500px;}
.y116{bottom:201.252000px;}
.y1aa{bottom:202.092000px;}
.y1b4{bottom:202.443000px;}
.y14d{bottom:202.660500px;}
.yb9{bottom:204.178500px;}
.y228{bottom:205.794000px;}
.y1f5{bottom:211.623000px;}
.y18f{bottom:211.798500px;}
.y44{bottom:212.514000px;}
.y167{bottom:214.303500px;}
.y1ca{bottom:215.893500px;}
.y112{bottom:216.538500px;}
.y76{bottom:216.891000px;}
.ye7{bottom:217.380000px;}
.y19d{bottom:218.350500px;}
.y29{bottom:220.096500px;}
.y8a{bottom:220.506000px;}
.yc4{bottom:221.184000px;}
.y1b3{bottom:222.706500px;}
.y14c{bottom:222.924000px;}
.y126{bottom:224.389500px;}
.yb8{bottom:224.442000px;}
.y227{bottom:225.162000px;}
.y115{bottom:226.812000px;}
.y1f4{bottom:230.989500px;}
.y18e{bottom:232.063500px;}
.y43{bottom:232.777500px;}
.y1c9{bottom:234.468000px;}
.y111{bottom:236.802000px;}
.y1a9{bottom:237.093000px;}
.y75{bottom:237.154500px;}
.ye6{bottom:237.645000px;}
.y19c{bottom:238.615500px;}
.y28{bottom:240.360000px;}
.y89{bottom:240.769500px;}
.yc3{bottom:241.449000px;}
.y14b{bottom:243.189000px;}
.y226{bottom:244.528500px;}
.y125{bottom:244.654500px;}
.yb7{bottom:244.707000px;}
.y1f3{bottom:250.357500px;}
.y1b2{bottom:251.937000px;}
.y18d{bottom:252.327000px;}
.y42{bottom:253.042500px;}
.y1c8{bottom:253.044000px;}
.y1a8{bottom:256.326000px;}
.y110{bottom:257.067000px;}
.y74{bottom:257.419500px;}
.ye5{bottom:257.908500px;}
.y19b{bottom:258.879000px;}
.y27{bottom:260.625000px;}
.y88{bottom:261.034500px;}
.yc2{bottom:261.712500px;}
.y14a{bottom:263.452500px;}
.y225{bottom:263.896500px;}
.y124{bottom:264.918000px;}
.yb6{bottom:264.970500px;}
.y1f2{bottom:269.725500px;}
.y1c7{bottom:271.620000px;}
.y18c{bottom:272.590500px;}
.y41{bottom:273.306000px;}
.y1a7{bottom:275.557500px;}
.y10f{bottom:277.330500px;}
.y73{bottom:277.683000px;}
.ye4{bottom:278.173500px;}
.y19a{bottom:279.142500px;}
.y26{bottom:280.888500px;}
.y149{bottom:281.073000px;}
.y87{bottom:281.298000px;}
.yc1{bottom:281.977500px;}
.y224{bottom:283.264500px;}
.y1b1{bottom:283.560000px;}
.y148{bottom:283.716000px;}
.y123{bottom:285.183000px;}
.yb5{bottom:285.234000px;}
.y1f1{bottom:289.092000px;}
.y1c6{bottom:290.194500px;}
.y18b{bottom:292.855500px;}
.y40{bottom:293.571000px;}
.y1a6{bottom:294.790500px;}
.y10e{bottom:297.595500px;}
.y72{bottom:297.946500px;}
.ye3{bottom:298.437000px;}
.y199{bottom:299.407500px;}
.y25{bottom:301.153500px;}
.y86{bottom:301.561500px;}
.yc0{bottom:302.241000px;}
.y223{bottom:302.631000px;}
.y1b0{bottom:302.793000px;}
.y147{bottom:303.981000px;}
.y122{bottom:305.446500px;}
.yb4{bottom:305.499000px;}
.y1f0{bottom:308.460000px;}
.y18a{bottom:313.119000px;}
.y3f{bottom:313.834500px;}
.y1a5{bottom:314.023500px;}
.y10d{bottom:317.859000px;}
.y71{bottom:318.211500px;}
.ye2{bottom:318.700500px;}
.y198{bottom:319.671000px;}
.y1c5{bottom:319.890000px;}
.y146{bottom:321.600000px;}
.y85{bottom:321.826500px;}
.y222{bottom:321.999000px;}
.y1af{bottom:322.026000px;}
.ybf{bottom:322.504500px;}
.y145{bottom:324.244500px;}
.y121{bottom:325.710000px;}
.yb3{bottom:325.762500px;}
.y1ef{bottom:327.826500px;}
.y24{bottom:330.384000px;}
.y1a4{bottom:333.256500px;}
.y189{bottom:333.384000px;}
.y3e{bottom:334.098000px;}
.y10c{bottom:338.122500px;}
.y70{bottom:338.475000px;}
.ye1{bottom:338.965500px;}
.y197{bottom:339.936000px;}
.y221{bottom:341.367000px;}
.y144{bottom:341.865000px;}
.y84{bottom:342.090000px;}
.y1c4{bottom:344.055000px;}
.y143{bottom:344.509500px;}
.y120{bottom:345.975000px;}
.yb2{bottom:346.027500px;}
.y1ee{bottom:347.194500px;}
.y188{bottom:351.003000px;}
.ybe{bottom:351.735000px;}
.y1a3{bottom:352.489500px;}
.y187{bottom:353.647500px;}
.y10b{bottom:358.387500px;}
.y6f{bottom:358.740000px;}
.ye0{bottom:359.229000px;}
.y220{bottom:360.733500px;}
.y83{bottom:362.355000px;}
.y142{bottom:364.773000px;}
.y11f{bottom:366.238500px;}
.yb1{bottom:366.291000px;}
.y3d{bottom:369.099000px;}
.y186{bottom:373.911000px;}
.y196{bottom:374.935500px;}
.y1ed{bottom:375.528000px;}
.y10a{bottom:378.651000px;}
.y6e{bottom:379.003500px;}
.ydf{bottom:379.494000px;}
.y21f{bottom:380.101500px;}
.y1c3{bottom:382.251000px;}
.y82{bottom:382.618500px;}
.y141{bottom:385.036500px;}
.y11e{bottom:386.503500px;}
.yb0{bottom:386.554500px;}
.y195{bottom:394.168500px;}
.y185{bottom:394.176000px;}
.yde{bottom:397.113000px;}
.y109{bottom:398.916000px;}
.y6d{bottom:399.267000px;}
.y21e{bottom:399.468000px;}
.ydd{bottom:399.757500px;}
.y140{bottom:402.657000px;}
.y81{bottom:402.882000px;}
.y23{bottom:402.898500px;}
.y13f{bottom:405.301500px;}
.y1c2{bottom:406.416000px;}
.y11d{bottom:406.767000px;}
.yaf{bottom:406.819500px;}
.y194{bottom:413.401500px;}
.y184{bottom:414.439500px;}
.y21d{bottom:418.836000px;}
.y108{bottom:419.179500px;}
.y6c{bottom:419.532000px;}
.ydc{bottom:420.021000px;}
.y1c1{bottom:421.614000px;}
.y166{bottom:422.110500px;}
.y80{bottom:423.147000px;}
.y22{bottom:423.163500px;}
.y1ec{bottom:423.681000px;}
.y11c{bottom:427.030500px;}
.yae{bottom:427.083000px;}
.y193{bottom:432.634500px;}
.y183{bottom:434.704500px;}
.y21c{bottom:438.204000px;}
.y107{bottom:439.443000px;}
.y6b{bottom:439.795500px;}
.y1eb{bottom:440.118000px;}
.ydb{bottom:440.286000px;}
.y13e{bottom:440.301000px;}
.y165{bottom:442.374000px;}
.y7f{bottom:443.410500px;}
.y1c0{bottom:445.777500px;}
.y11b{bottom:447.295500px;}
.yad{bottom:447.348000px;}
.y192{bottom:451.867500px;}
.y182{bottom:454.968000px;}
.y1e8{bottom:456.556500px;}
.y21b{bottom:457.570500px;}
.y13d{bottom:459.534000px;}
.y106{bottom:459.708000px;}
.y6a{bottom:460.060500px;}
.yd9{bottom:460.549500px;}
.y1bf{bottom:460.977000px;}
.y21{bottom:461.359500px;}
.y164{bottom:462.639000px;}
.y7e{bottom:463.675500px;}
.yda{bottom:466.264500px;}
.y11a{bottom:467.559000px;}
.yac{bottom:467.611500px;}
.y1ea{bottom:472.995000px;}
.y181{bottom:475.231500px;}
.y1be{bottom:476.175000px;}
.y21a{bottom:476.938500px;}
.y105{bottom:479.971500px;}
.y69{bottom:480.324000px;}
.yd8{bottom:480.814500px;}
.y20{bottom:481.624500px;}
.y163{bottom:482.902500px;}
.yab{bottom:487.875000px;}
.y1e9{bottom:489.433500px;}
.y1bd{bottom:491.373000px;}
.y7d{bottom:492.906000px;}
.y180{bottom:495.496500px;}
.y219{bottom:496.305000px;}
.y104{bottom:500.236500px;}
.y68{bottom:500.587500px;}
.yd7{bottom:501.078000px;}
.y1f{bottom:501.888000px;}
.y119{bottom:502.560000px;}
.y162{bottom:503.167500px;}
.yaa{bottom:508.140000px;}
.y1e7{bottom:513.373500px;}
.y1bc{bottom:515.536500px;}
.y218{bottom:515.673000px;}
.y17f{bottom:515.760000px;}
.y103{bottom:520.500000px;}
.y67{bottom:520.852500px;}
.yd6{bottom:521.341500px;}
.y1e{bottom:522.151500px;}
.y161{bottom:523.431000px;}
.y7c{bottom:524.529000px;}
.ya9{bottom:528.403500px;}
.y1e6{bottom:529.812000px;}
.y1bb{bottom:530.734500px;}
.y217{bottom:535.041000px;}
.y17e{bottom:536.025000px;}
.y102{bottom:540.763500px;}
.y66{bottom:541.116000px;}
.y1d{bottom:542.416500px;}
.y160{bottom:543.694500px;}
.y1ba{bottom:545.932500px;}
.y1e3{bottom:546.250500px;}
.ya8{bottom:548.667000px;}
.y216{bottom:554.407500px;}
.y17d{bottom:556.288500px;}
.y101{bottom:561.028500px;}
.y1b9{bottom:561.130500px;}
.y65{bottom:561.381000px;}
.y1c{bottom:562.680000px;}
.y1e5{bottom:562.689000px;}
.y15f{bottom:563.959500px;}
.yd5{bottom:568.239000px;}
.ya7{bottom:568.932000px;}
.y215{bottom:573.775500px;}
.y1b8{bottom:576.328500px;}
.y17c{bottom:576.552000px;}
.y1e4{bottom:579.127500px;}
.y100{bottom:581.292000px;}
.y64{bottom:581.644500px;}
.y1b{bottom:582.945000px;}
.y15e{bottom:584.223000px;}
.yd4{bottom:584.677500px;}
.ya6{bottom:589.195500px;}
.y214{bottom:593.142000px;}
.y17b{bottom:596.817000px;}
.yd3{bottom:601.116000px;}
.yff{bottom:601.557000px;}
.y15d{bottom:601.843500px;}
.y63{bottom:601.908000px;}
.y1e2{bottom:603.066000px;}
.y1a{bottom:603.208500px;}
.y15c{bottom:604.486500px;}
.ya5{bottom:609.460500px;}
.y213{bottom:612.510000px;}
.y17a{bottom:617.080500px;}
.yd2{bottom:617.554500px;}
.y1e1{bottom:619.504500px;}
.yfe{bottom:621.820500px;}
.y62{bottom:622.173000px;}
.y19{bottom:623.472000px;}
.y15b{bottom:624.751500px;}
.ya4{bottom:629.724000px;}
.y212{bottom:631.878000px;}
.y1de{bottom:635.943000px;}
.y179{bottom:637.345500px;}
.yd1{bottom:641.493000px;}
.yfd{bottom:642.084000px;}
.y61{bottom:642.436500px;}
.y18{bottom:643.737000px;}
.y15a{bottom:645.015000px;}
.ya3{bottom:649.987500px;}
.y211{bottom:651.244500px;}
.y1e0{bottom:652.381500px;}
.y178{bottom:657.609000px;}
.yfc{bottom:662.349000px;}
.y60{bottom:662.701500px;}
.y17{bottom:664.000500px;}
.y159{bottom:665.280000px;}
.y1df{bottom:668.820000px;}
.ya2{bottom:670.252500px;}
.y210{bottom:670.612500px;}
.yd0{bottom:674.458500px;}
.y177{bottom:677.872500px;}
.yfb{bottom:682.612500px;}
.y5f{bottom:682.965000px;}
.y16{bottom:684.265500px;}
.y158{bottom:685.543500px;}
.y20f{bottom:689.979000px;}
.ya1{bottom:690.516000px;}
.y1dd{bottom:692.760000px;}
.y176{bottom:698.137500px;}
.yfa{bottom:702.877500px;}
.y5e{bottom:703.228500px;}
.y1dc{bottom:704.445000px;}
.y15{bottom:704.529000px;}
.y157{bottom:705.807000px;}
.y20e{bottom:709.347000px;}
.ya0{bottom:710.781000px;}
.ycf{bottom:711.562500px;}
.y175{bottom:718.401000px;}
.yf9{bottom:723.141000px;}
.y5d{bottom:723.493500px;}
.y14{bottom:724.792500px;}
.y156{bottom:726.072000px;}
.y20d{bottom:728.715000px;}
.y9f{bottom:731.044500px;}
.yce{bottom:731.827500px;}
.y174{bottom:738.666000px;}
.yf8{bottom:743.404500px;}
.y5c{bottom:743.757000px;}
.y13{bottom:745.057500px;}
.y1db{bottom:748.020000px;}
.y20c{bottom:748.081500px;}
.y9e{bottom:751.308000px;}
.ycd{bottom:752.091000px;}
.y173{bottom:758.929500px;}
.y155{bottom:761.071500px;}
.yf7{bottom:763.669500px;}
.y12{bottom:765.321000px;}
.y20b{bottom:767.449500px;}
.y9d{bottom:771.573000px;}
.ycc{bottom:772.354500px;}
.y154{bottom:777.742500px;}
.y172{bottom:779.193000px;}
.y153{bottom:780.304500px;}
.yf6{bottom:783.933000px;}
.y11{bottom:785.586000px;}
.y20a{bottom:786.816000px;}
.y5b{bottom:786.885000px;}
.y1da{bottom:789.609000px;}
.y9c{bottom:791.836500px;}
.ycb{bottom:792.619500px;}
.y171{bottom:799.458000px;}
.y5a{bottom:801.082500px;}
.y13c{bottom:803.134500px;}
.y152{bottom:805.864500px;}
.y1d9{bottom:806.047500px;}
.y209{bottom:806.184000px;}
.y9b{bottom:812.101500px;}
.yf5{bottom:813.163500px;}
.y59{bottom:815.278500px;}
.y170{bottom:819.721500px;}
.y58{bottom:819.748500px;}
.y10{bottom:821.017500px;}
.y1d8{bottom:822.486000px;}
.y13b{bottom:823.398000px;}
.y208{bottom:825.552000px;}
.yca{bottom:827.619000px;}
.y9a{bottom:832.365000px;}
.y57{bottom:836.980500px;}
.y1d7{bottom:838.924500px;}
.y13a{bottom:843.663000px;}
.y207{bottom:844.918500px;}
.yf4{bottom:847.983000px;}
.yf{bottom:848.140500px;}
.y16f{bottom:848.952000px;}
.y56{bottom:851.379000px;}
.y99{bottom:852.628500px;}
.y1d6{bottom:855.363000px;}
.y55{bottom:856.218000px;}
.y139{bottom:863.926500px;}
.y206{bottom:864.286500px;}
.ye{bottom:866.298000px;}
.yf3{bottom:868.248000px;}
.y3c{bottom:869.635500px;}
.y98{bottom:872.893500px;}
.y1d5{bottom:874.558500px;}
.y54{bottom:875.646000px;}
.y16e{bottom:880.575000px;}
.y1d4{bottom:880.629000px;}
.y205{bottom:883.653000px;}
.y138{bottom:884.191500px;}
.yd{bottom:884.455500px;}
.yf2{bottom:888.511500px;}
.y3b{bottom:889.899000px;}
.y97{bottom:893.157000px;}
.y53{bottom:893.844000px;}
.y16c{bottom:899.808000px;}
.yc{bottom:902.611500px;}
.y204{bottom:903.021000px;}
.y137{bottom:904.455000px;}
.y16d{bottom:905.772000px;}
.yb{bottom:908.575500px;}
.yf1{bottom:908.775000px;}
.y3a{bottom:910.164000px;}
.y96{bottom:913.422000px;}
.y1d3{bottom:915.204000px;}
.y16b{bottom:919.041000px;}
.y52{bottom:919.447500px;}
.ya{bottom:920.769000px;}
.y203{bottom:922.389000px;}
.y136{bottom:924.718500px;}
.y50{bottom:927.667500px;}
.y39{bottom:930.427500px;}
.y95{bottom:933.685500px;}
.y51{bottom:935.886000px;}
.yf0{bottom:938.005500px;}
.y202{bottom:941.755500px;}
.y16a{bottom:944.601000px;}
.y9{bottom:944.890500px;}
.y135{bottom:944.983500px;}
.y38{bottom:950.692500px;}
.y94{bottom:953.949000px;}
.y1d2{bottom:956.794500px;}
.y201{bottom:961.123500px;}
.y134{bottom:965.247000px;}
.y8{bottom:966.049500px;}
.y4f{bottom:967.506000px;}
.y37{bottom:970.956000px;}
.y1d1{bottom:973.231500px;}
.y93{bottom:974.214000px;}
.y200{bottom:980.490000px;}
.yef{bottom:981.525000px;}
.y133{bottom:985.512000px;}
.y1d0{bottom:989.670000px;}
.y36{bottom:991.219500px;}
.y92{bottom:994.477500px;}
.y1ff{bottom:999.858000px;}
.y4e{bottom:1004.610000px;}
.yee{bottom:1005.465000px;}
.y132{bottom:1005.775500px;}
.y1cf{bottom:1006.108500px;}
.y7{bottom:1010.451000px;}
.y35{bottom:1011.484500px;}
.y91{bottom:1014.742500px;}
.y1fe{bottom:1019.226000px;}
.y1ce{bottom:1022.547000px;}
.y4d{bottom:1024.873500px;}
.y131{bottom:1026.039000px;}
.y34{bottom:1031.748000px;}
.y90{bottom:1035.006000px;}
.yed{bottom:1038.430500px;}
.y1fd{bottom:1038.592500px;}
.y6{bottom:1040.848500px;}
.y130{bottom:1046.304000px;}
.y1cd{bottom:1046.487000px;}
.y4c{bottom:1055.269500px;}
.y1fc{bottom:1057.960500px;}
.y33{bottom:1060.978500px;}
.y12f{bottom:1066.567500px;}
.y5{bottom:1071.244500px;}
.y4b{bottom:1075.534500px;}
.y1fb{bottom:1077.327000px;}
.y1cc{bottom:1078.107000px;}
.y12e{bottom:1086.832500px;}
.y32{bottom:1095.798000px;}
.y1fa{bottom:1096.695000px;}
.y4{bottom:1100.145000px;}
.y31{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y30{bottom:1168.366500px;}
.h1f{height:20.579609px;}
.h1a{height:26.110157px;}
.h1d{height:27.855430px;}
.h7{height:30.461558px;}
.h20{height:33.072749px;}
.h1b{height:34.813397px;}
.hd{height:35.052500px;}
.h1c{height:36.008912px;}
.h15{height:38.734848px;}
.h8{height:39.165235px;}
.h14{height:39.434227px;}
.h25{height:40.510195px;}
.hb{height:41.809814px;}
.h12{height:42.500452px;}
.h9{height:43.038432px;}
.ha{height:43.516637px;}
.h4{height:43.815515px;}
.hc{height:45.130578px;}
.h2{height:50.931027px;}
.h1e{height:53.982816px;}
.h16{height:54.317558px;}
.h21{height:54.534816px;}
.h6{height:55.569312px;}
.h11{height:55.932749px;}
.he{height:55.938749px;}
.h17{height:57.994675px;}
.h18{height:58.700231px;}
.h13{height:60.048749px;}
.h23{height:63.016848px;}
.hf{height:64.318578px;}
.h19{height:77.350675px;}
.h3{height:77.379634px;}
.h5{height:77.469696px;}
.h22{height:82.026816px;}
.h10{height:96.118578px;}
.h24{height:105.814675px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:207.609956px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:58.054042px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.x84{left:119.572500px;}
.x6{left:122.110500px;}
.x4{left:123.307500px;}
.x42{left:132.742500px;}
.x5{left:146.170500px;}
.xf5{left:147.712500px;}
.x2b{left:149.953500px;}
.xa8{left:151.167000px;}
.x43{left:156.687000px;}
.x24{left:158.151000px;}
.x1f{left:160.762500px;}
.x2a{left:162.193500px;}
.x2d{left:170.538000px;}
.x20{left:173.380500px;}
.x4d{left:175.720500px;}
.x25{left:177.375000px;}
.xa5{left:180.702000px;}
.x9b{left:183.538500px;}
.xd{left:185.761500px;}
.x7{left:188.350500px;}
.x27{left:190.128000px;}
.xf2{left:193.260000px;}
.x4e{left:196.860000px;}
.x3c{left:200.220000px;}
.xa{left:201.439500px;}
.x93{left:204.759000px;}
.xc3{left:206.622000px;}
.x49{left:208.348500px;}
.x85{left:210.025500px;}
.xd8{left:211.237500px;}
.x44{left:212.526000px;}
.xc2{left:215.722500px;}
.xaa{left:217.096500px;}
.xc0{left:218.766000px;}
.x19{left:220.281000px;}
.xa7{left:222.874500px;}
.xc4{left:229.707000px;}
.xed{left:230.884500px;}
.xb{left:232.240500px;}
.xb1{left:233.569500px;}
.x69{left:238.231500px;}
.x3f{left:240.972000px;}
.xc5{left:244.411500px;}
.xe2{left:246.433500px;}
.x8c{left:249.417000px;}
.xe7{left:250.552500px;}
.x8{left:252.613500px;}
.xfb{left:254.101500px;}
.xee{left:255.949500px;}
.x2e{left:262.086000px;}
.x9{left:263.805000px;}
.xc6{left:265.815000px;}
.x7e{left:268.260000px;}
.x45{left:269.656500px;}
.xd9{left:270.852000px;}
.xb2{left:272.011500px;}
.x89{left:274.480500px;}
.xcf{left:275.902500px;}
.x88{left:277.747500px;}
.x2f{left:279.010500px;}
.x7d{left:281.281500px;}
.xf3{left:284.193000px;}
.xda{left:286.534500px;}
.x7f{left:291.508500px;}
.xd0{left:293.767500px;}
.x5b{left:295.690500px;}
.x92{left:297.943500px;}
.xa0{left:300.277500px;}
.x63{left:303.616500px;}
.x41{left:308.800500px;}
.x1a{left:312.220500px;}
.x5e{left:314.026500px;}
.xc7{left:315.117000px;}
.xd2{left:316.324500px;}
.x94{left:320.088000px;}
.xc8{left:321.841500px;}
.x15{left:325.431000px;}
.x95{left:326.812500px;}
.x86{left:330.463500px;}
.x76{left:333.210000px;}
.x9a{left:337.611000px;}
.xc{left:339.937500px;}
.xf1{left:341.025000px;}
.x5f{left:343.896000px;}
.xe3{left:345.282000px;}
.x26{left:347.082000px;}
.x74{left:348.792000px;}
.xf0{left:351.552000px;}
.x96{left:352.750500px;}
.xb3{left:354.193500px;}
.x77{left:355.761000px;}
.x66{left:356.841000px;}
.xef{left:359.688000px;}
.x87{left:360.691500px;}
.x7b{left:362.596500px;}
.x75{left:363.736500px;}
.x4f{left:365.325000px;}
.xdf{left:369.538500px;}
.x6b{left:370.711500px;}
.x9e{left:372.679500px;}
.x50{left:373.746000px;}
.xdb{left:374.881500px;}
.x67{left:379.410000px;}
.x5c{left:381.048000px;}
.x7c{left:382.653000px;}
.xde{left:383.674500px;}
.x64{left:385.095000px;}
.x3d{left:386.139000px;}
.xa6{left:388.081500px;}
.xdc{left:390.564000px;}
.x9f{left:393.390000px;}
.x6c{left:395.608500px;}
.xe9{left:397.603500px;}
.x16{left:399.553500px;}
.x23{left:401.437500px;}
.x97{left:405.616500px;}
.x40{left:409.191000px;}
.x1b{left:411.042000px;}
.x65{left:414.459000px;}
.xe8{left:415.873500px;}
.xba{left:417.841500px;}
.xad{left:419.676000px;}
.x17{left:421.888500px;}
.x4a{left:424.075500px;}
.xae{left:426.102000px;}
.x51{left:427.141500px;}
.xb4{left:429.192000px;}
.x46{left:437.638500px;}
.xc9{left:447.601500px;}
.x98{left:448.912500px;}
.xb5{left:451.743000px;}
.x82{left:454.629000px;}
.x99{left:457.131000px;}
.x47{left:458.800500px;}
.xca{left:461.319000px;}
.x38{left:463.644000px;}
.xd1{left:465.540000px;}
.x6f{left:468.094500px;}
.x32{left:470.811000px;}
.xbb{left:473.176500px;}
.x1c{left:475.719000px;}
.xcb{left:478.224000px;}
.x8f{left:479.787000px;}
.x39{left:484.815000px;}
.x55{left:486.991500px;}
.x33{left:488.235000px;}
.x8d{left:492.273000px;}
.xd6{left:493.875000px;}
.x5d{left:497.085000px;}
.x78{left:499.135500px;}
.x56{left:501.934500px;}
.x2c{left:504.919500px;}
.xe4{left:507.045000px;}
.xbc{left:512.137500px;}
.xd3{left:517.918500px;}
.xc1{left:519.198000px;}
.x8a{left:526.807500px;}
.xdd{left:528.079500px;}
.x34{left:529.432500px;}
.x6a{left:531.268500px;}
.xe{left:532.879500px;}
.x48{left:534.100500px;}
.x80{left:535.503000px;}
.x8b{left:537.318000px;}
.xd4{left:541.860000px;}
.x3e{left:543.483000px;}
.xa9{left:544.546500px;}
.x8e{left:545.799000px;}
.x3a{left:549.106500px;}
.x4c{left:551.136000px;}
.x6d{left:552.790500px;}
.xf{left:554.038500px;}
.x35{left:556.401000px;}
.xaf{left:561.897000px;}
.x81{left:563.595000px;}
.x28{left:565.872000px;}
.x3b{left:570.000000px;}
.xd7{left:571.053000px;}
.x36{left:574.626000px;}
.xb0{left:576.840000px;}
.x6e{left:581.431500px;}
.xe0{left:582.510000px;}
.x37{left:583.855500px;}
.x61{left:585.013500px;}
.x29{left:588.124500px;}
.xea{left:591.156000px;}
.xab{left:593.629500px;}
.xf9{left:594.663000px;}
.x68{left:596.191500px;}
.x79{left:597.408000px;}
.xe1{left:600.375000px;}
.xec{left:603.892500px;}
.xbd{left:605.575500px;}
.x62{left:607.593000px;}
.x4b{left:608.883000px;}
.xeb{left:610.617000px;}
.x72{left:612.762000px;}
.xcc{left:616.381500px;}
.xb8{left:618.466500px;}
.x7a{left:619.960500px;}
.xfa{left:621.562500px;}
.x18{left:623.340000px;}
.xcd{left:624.598500px;}
.xa1{left:637.356000px;}
.xac{left:638.898000px;}
.xe5{left:641.820000px;}
.xa2{left:643.165500px;}
.x12{left:646.249500px;}
.x59{left:651.360000px;}
.x52{left:654.244500px;}
.xb9{left:655.780500px;}
.x57{left:658.155000px;}
.xbe{left:660.268500px;}
.xa3{left:661.960500px;}
.x5a{left:666.304500px;}
.x10{left:669.916500px;}
.x53{left:672.966000px;}
.xe6{left:674.296500px;}
.xf6{left:679.107000px;}
.x73{left:681.802500px;}
.xbf{left:683.314500px;}
.x58{left:686.772000px;}
.x54{left:687.909000px;}
.x11{left:691.594500px;}
.xa4{left:693.567000px;}
.xf8{left:696.021000px;}
.x30{left:697.657500px;}
.xf7{left:699.192000px;}
.x9c{left:703.477500px;}
.x31{left:705.873000px;}
.x13{left:708.645000px;}
.x90{left:711.340500px;}
.x9d{left:724.161000px;}
.xce{left:725.425500px;}
.xf4{left:728.883000px;}
.x91{left:732.151500px;}
.xb7{left:739.185000px;}
.xb6{left:743.083500px;}
.x21{left:745.681500px;}
.x60{left:753.879000px;}
.x70{left:756.148500px;}
.xd5{left:758.508000px;}
.x14{left:760.095000px;}
.x83{left:764.031000px;}
.x22{left:767.265000px;}
.x1d{left:768.561000px;}
.x71{left:771.091500px;}
.x1e{left:776.220000px;}
@media print{
.v2{vertical-align:-21.205333pt;}
.v3{vertical-align:-11.221333pt;}
.v4{vertical-align:-9.402667pt;}
.v8{vertical-align:-7.968000pt;}
.v9{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:9.402667pt;}
.v5{vertical-align:17.056000pt;}
.v1{vertical-align:20.320000pt;}
.vd{vertical-align:21.696000pt;}
.v7{vertical-align:23.290667pt;}
.va{vertical-align:25.733333pt;}
.vf{vertical-align:34.304000pt;}
.vb{vertical-align:38.416000pt;}
.ve{vertical-align:42.506667pt;}
.v6{vertical-align:45.322667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.000273pt;}
.ls7e{letter-spacing:0.001981pt;}
.ls5a{letter-spacing:0.002422pt;}
.ls8b{letter-spacing:0.347418pt;}
.ls70{letter-spacing:0.373852pt;}
.ls25{letter-spacing:0.465981pt;}
.ls11{letter-spacing:0.478400pt;}
.ls2e{letter-spacing:0.529398pt;}
.ls2d{letter-spacing:0.535647pt;}
.ls50{letter-spacing:0.594243pt;}
.ls73{letter-spacing:0.596267pt;}
.ls95{letter-spacing:0.596642pt;}
.ls5c{letter-spacing:0.596898pt;}
.ls94{letter-spacing:0.597475pt;}
.ls23{letter-spacing:0.599407pt;}
.ls99{letter-spacing:0.599916pt;}
.ls69{letter-spacing:0.602231pt;}
.ls87{letter-spacing:0.662022pt;}
.ls10{letter-spacing:0.664431pt;}
.ls4d{letter-spacing:0.664563pt;}
.ls86{letter-spacing:0.669956pt;}
.ls1f{letter-spacing:0.822716pt;}
.ls1c{letter-spacing:0.823526pt;}
.ls55{letter-spacing:0.882422pt;}
.ls19{letter-spacing:0.901044pt;}
.ls33{letter-spacing:0.906378pt;}
.ls2b{letter-spacing:0.929398pt;}
.ls9a{letter-spacing:1.061274pt;}
.ls97{letter-spacing:1.062084pt;}
.ls90{letter-spacing:1.072751pt;}
.ls8d{letter-spacing:1.078084pt;}
.ls2f{letter-spacing:1.170926pt;}
.ls68{letter-spacing:1.553007pt;}
.lsa{letter-spacing:1.720431pt;}
.ls15{letter-spacing:1.725764pt;}
.lse{letter-spacing:2.256518pt;}
.lsc{letter-spacing:2.393067pt;}
.lsd{letter-spacing:2.470400pt;}
.ls48{letter-spacing:2.656533pt;}
.ls13{letter-spacing:2.657067pt;}
.ls8e{letter-spacing:2.657867pt;}
.ls17{letter-spacing:2.763708pt;}
.ls2c{letter-spacing:3.054473pt;}
.ls1d{letter-spacing:3.118205pt;}
.ls40{letter-spacing:3.120533pt;}
.ls89{letter-spacing:3.123538pt;}
.ls8a{letter-spacing:3.164580pt;}
.ls9b{letter-spacing:3.723200pt;}
.ls12{letter-spacing:4.385067pt;}
.lsf{letter-spacing:5.579733pt;}
.ls7{letter-spacing:6.419733pt;}
.ls27{letter-spacing:7.275778pt;}
.ls85{letter-spacing:7.836785pt;}
.ls26{letter-spacing:7.960801pt;}
.ls21{letter-spacing:8.487579pt;}
.ls46{letter-spacing:8.490940pt;}
.ls43{letter-spacing:8.496273pt;}
.ls9{letter-spacing:8.613841pt;}
.ls22{letter-spacing:9.090243pt;}
.ls45{letter-spacing:9.093427pt;}
.lsa2{letter-spacing:9.546841pt;}
.ls4{letter-spacing:10.626533pt;}
.lsa0{letter-spacing:10.629834pt;}
.lsa4{letter-spacing:10.684256pt;}
.ls42{letter-spacing:10.999125pt;}
.ls6b{letter-spacing:11.423781pt;}
.ls2a{letter-spacing:11.683066pt;}
.lsa5{letter-spacing:11.893556pt;}
.lsa7{letter-spacing:11.953769pt;}
.ls9f{letter-spacing:11.954133pt;}
.ls80{letter-spacing:11.954243pt;}
.lsa1{letter-spacing:11.959467pt;}
.ls9e{letter-spacing:11.961140pt;}
.lsa6{letter-spacing:11.993981pt;}
.ls5f{letter-spacing:12.129224pt;}
.ls9c{letter-spacing:12.129666pt;}
.ls60{letter-spacing:12.134557pt;}
.ls9d{letter-spacing:12.134999pt;}
.ls16{letter-spacing:12.471356pt;}
.ls20{letter-spacing:12.552073pt;}
.ls3f{letter-spacing:12.555657pt;}
.ls79{letter-spacing:12.555674pt;}
.ls1b{letter-spacing:12.645860pt;}
.ls5e{letter-spacing:12.727407pt;}
.ls7f{letter-spacing:12.728474pt;}
.ls78{letter-spacing:12.731674pt;}
.ls61{letter-spacing:12.732740pt;}
.ls29{letter-spacing:12.963082pt;}
.ls49{letter-spacing:13.070931pt;}
.ls52{letter-spacing:13.111356pt;}
.ls3{letter-spacing:13.116689pt;}
.ls54{letter-spacing:13.124065pt;}
.ls14{letter-spacing:13.138023pt;}
.ls4b{letter-spacing:13.159356pt;}
.ls6{letter-spacing:13.283467pt;}
.ls4c{letter-spacing:13.602270pt;}
.ls3e{letter-spacing:13.708538pt;}
.ls36{letter-spacing:13.776689pt;}
.lsb{letter-spacing:13.778023pt;}
.ls64{letter-spacing:13.778422pt;}
.ls2{letter-spacing:13.782022pt;}
.ls51{letter-spacing:13.783756pt;}
.ls3c{letter-spacing:13.808689pt;}
.ls82{letter-spacing:13.819356pt;}
.ls63{letter-spacing:13.826422pt;}
.ls3b{letter-spacing:13.830022pt;}
.ls18{letter-spacing:13.831356pt;}
.ls38{letter-spacing:13.878022pt;}
.ls31{letter-spacing:14.006022pt;}
.ls59{letter-spacing:14.007756pt;}
.ls8{letter-spacing:14.044689pt;}
.ls32{letter-spacing:14.263356pt;}
.ls4f{letter-spacing:14.611813pt;}
.ls44{letter-spacing:14.613867pt;}
.ls5b{letter-spacing:14.784533pt;}
.ls5d{letter-spacing:14.789867pt;}
.ls57{letter-spacing:14.839356pt;}
.ls88{letter-spacing:15.052740pt;}
.ls8c{letter-spacing:15.075025pt;}
.ls98{letter-spacing:15.077867pt;}
.ls62{letter-spacing:15.287756pt;}
.ls81{letter-spacing:15.373255pt;}
.ls34{letter-spacing:15.378589pt;}
.ls6d{letter-spacing:15.712689pt;}
.ls58{letter-spacing:15.771733pt;}
.ls4a{letter-spacing:15.814400pt;}
.ls77{letter-spacing:15.942400pt;}
.ls53{letter-spacing:16.145067pt;}
.ls65{letter-spacing:16.272533pt;}
.ls83{letter-spacing:16.273914pt;}
.ls30{letter-spacing:16.275454pt;}
.ls35{letter-spacing:16.284580pt;}
.ls56{letter-spacing:16.560508pt;}
.lsa3{letter-spacing:16.609506pt;}
.ls3a{letter-spacing:16.849067pt;}
.ls6f{letter-spacing:16.864689pt;}
.ls39{letter-spacing:16.949703pt;}
.ls7d{letter-spacing:16.984474pt;}
.ls7c{letter-spacing:16.987674pt;}
.ls7b{letter-spacing:16.988740pt;}
.ls6c{letter-spacing:17.307356pt;}
.ls6e{letter-spacing:17.430022pt;}
.ls3d{letter-spacing:17.803174pt;}
.ls75{letter-spacing:18.156740pt;}
.ls72{letter-spacing:18.161007pt;}
.ls4e{letter-spacing:18.369067pt;}
.ls76{letter-spacing:18.897067pt;}
.ls37{letter-spacing:18.915657pt;}
.ls7a{letter-spacing:19.051200pt;}
.ls74{letter-spacing:20.219200pt;}
.ls84{letter-spacing:20.684689pt;}
.ls6a{letter-spacing:20.795733pt;}
.ls71{letter-spacing:21.355682pt;}
.ls67{letter-spacing:25.820740pt;}
.ls66{letter-spacing:27.877867pt;}
.ls24{letter-spacing:42.273111pt;}
.ls0{letter-spacing:62.432533pt;}
.ls1{letter-spacing:64.314231pt;}
.ls41{letter-spacing:64.362808pt;}
.ls8f{letter-spacing:75.115200pt;}
.ls96{letter-spacing:114.864142pt;}
.ls28{letter-spacing:120.523200pt;}
.ls91{letter-spacing:121.216533pt;}
.ls1e{letter-spacing:192.893227pt;}
.ls93{letter-spacing:274.784533pt;}
.ls92{letter-spacing:274.789867pt;}
.ls1a{letter-spacing:958.625914pt;}
.ws31{word-spacing:-26.466275pt;}
.ws0{word-spacing:-25.362056pt;}
.ws3{word-spacing:-13.283467pt;}
.ws37{word-spacing:-11.955200pt;}
.ws21{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws40{word-spacing:-9.298400pt;}
.ws3f{word-spacing:-4.686438pt;}
.ws3e{word-spacing:-3.483230pt;}
.ws3b{word-spacing:-3.463467pt;}
.wsc6{word-spacing:-3.460267pt;}
.ws3a{word-spacing:-3.448977pt;}
.ws8a{word-spacing:-2.816095pt;}
.ws68{word-spacing:-2.762961pt;}
.wsb9{word-spacing:-2.709827pt;}
.ws14{word-spacing:-2.656693pt;}
.wsa4{word-spacing:-2.603559pt;}
.wsfd{word-spacing:-2.438861pt;}
.wsfa{word-spacing:-2.391040pt;}
.wsba{word-spacing:-2.391024pt;}
.ws26{word-spacing:-2.178489pt;}
.ws79{word-spacing:-2.125355pt;}
.ws62{word-spacing:-2.072221pt;}
.ws104{word-spacing:-1.960653pt;}
.ws44{word-spacing:-1.859685pt;}
.wsb0{word-spacing:-1.753418pt;}
.ws10d{word-spacing:-1.673728pt;}
.ws66{word-spacing:-1.647150pt;}
.ws10e{word-spacing:-1.625907pt;}
.ws8d{word-spacing:-1.594016pt;}
.ws9{word-spacing:-1.540882pt;}
.ws96{word-spacing:-1.487748pt;}
.ws97{word-spacing:-1.467733pt;}
.wsad{word-spacing:-1.434614pt;}
.wsf4{word-spacing:-1.338982pt;}
.wsd9{word-spacing:-1.328347pt;}
.wsd3{word-spacing:-1.275213pt;}
.ws15{word-spacing:-1.115811pt;}
.ws7d{word-spacing:-1.009543pt;}
.ws99{word-spacing:-0.860774pt;}
.wsc9{word-spacing:-0.850142pt;}
.wsde{word-spacing:-0.797008pt;}
.ws52{word-spacing:-0.743874pt;}
.ws46{word-spacing:-0.690740pt;}
.ws29{word-spacing:-0.637606pt;}
.wsa9{word-spacing:-0.584473pt;}
.wsaa{word-spacing:-0.531339pt;}
.ws2a{word-spacing:-0.478205pt;}
.ws4e{word-spacing:-0.371937pt;}
.ws45{word-spacing:-0.318803pt;}
.ws8{word-spacing:-0.265669pt;}
.ws9a{word-spacing:-0.253365pt;}
.ws19{word-spacing:-0.212535pt;}
.ws91{word-spacing:-0.191283pt;}
.ws92{word-spacing:-0.179681pt;}
.ws93{word-spacing:-0.177124pt;}
.ws9e{word-spacing:-0.167467pt;}
.ws1d{word-spacing:-0.159402pt;}
.ws94{word-spacing:-0.143462pt;}
.ws8c{word-spacing:-0.121908pt;}
.ws27{word-spacing:-0.106268pt;}
.wse7{word-spacing:-0.095642pt;}
.ws22{word-spacing:-0.053134pt;}
.wsd7{word-spacing:-0.047821pt;}
.ws110{word-spacing:-0.006682pt;}
.ws101{word-spacing:-0.004028pt;}
.wsf6{word-spacing:-0.003942pt;}
.wsc7{word-spacing:-0.002697pt;}
.wsfc{word-spacing:-0.001348pt;}
.ws1{word-spacing:0.000000pt;}
.ws20{word-spacing:0.003199pt;}
.wsd4{word-spacing:0.047821pt;}
.ws16{word-spacing:0.053134pt;}
.ws43{word-spacing:0.085014pt;}
.wsa5{word-spacing:0.095642pt;}
.ws25{word-spacing:0.106268pt;}
.ws6{word-spacing:0.143462pt;}
.ws47{word-spacing:0.159402pt;}
.wsd5{word-spacing:0.191283pt;}
.wsd{word-spacing:0.212535pt;}
.wsd6{word-spacing:0.239104pt;}
.ws63{word-spacing:0.265669pt;}
.wsd0{word-spacing:0.286925pt;}
.wsc{word-spacing:0.318803pt;}
.ws6c{word-spacing:0.371937pt;}
.ws7a{word-spacing:0.425071pt;}
.ws90{word-spacing:0.478208pt;}
.ws2e{word-spacing:0.494823pt;}
.ws2d{word-spacing:0.496595pt;}
.ws2f{word-spacing:0.513436pt;}
.ws30{word-spacing:0.518645pt;}
.wscf{word-spacing:0.526029pt;}
.ws58{word-spacing:0.531339pt;}
.wse5{word-spacing:0.573850pt;}
.wscb{word-spacing:0.584473pt;}
.ws33{word-spacing:0.605807pt;}
.wsf9{word-spacing:0.621670pt;}
.ws95{word-spacing:0.637606pt;}
.ws34{word-spacing:0.644147pt;}
.wsa7{word-spacing:0.743874pt;}
.ws8f{word-spacing:0.765133pt;}
.ws2b{word-spacing:0.797008pt;}
.wsfb{word-spacing:0.812954pt;}
.ws57{word-spacing:0.850142pt;}
.ws98{word-spacing:0.860774pt;}
.ws1a{word-spacing:0.903276pt;}
.ws1b{word-spacing:0.956410pt;}
.wsbb{word-spacing:1.009543pt;}
.wse2{word-spacing:1.062677pt;}
.wsdc{word-spacing:1.099878pt;}
.ws12{word-spacing:1.115811pt;}
.ws7c{word-spacing:1.168945pt;}
.wsd2{word-spacing:1.195520pt;}
.wsda{word-spacing:1.222079pt;}
.ws83{word-spacing:1.275213pt;}
.ws82{word-spacing:1.288209pt;}
.ws55{word-spacing:1.328347pt;}
.ws18{word-spacing:1.381481pt;}
.ws6f{word-spacing:1.434614pt;}
.ws61{word-spacing:1.487748pt;}
.ws28{word-spacing:1.540882pt;}
.wsc8{word-spacing:1.552247pt;}
.wsb3{word-spacing:1.594016pt;}
.ws76{word-spacing:1.700284pt;}
.wsd1{word-spacing:1.769370pt;}
.wsa8{word-spacing:1.846912pt;}
.ws8b{word-spacing:1.859685pt;}
.ws23{word-spacing:1.912819pt;}
.wsaf{word-spacing:1.917694pt;}
.ws5a{word-spacing:1.965953pt;}
.ws5b{word-spacing:2.019087pt;}
.ws86{word-spacing:2.072221pt;}
.wsa6{word-spacing:2.125355pt;}
.wsa1{word-spacing:2.178489pt;}
.wsc3{word-spacing:2.199757pt;}
.ws4f{word-spacing:2.231622pt;}
.wsc2{word-spacing:2.231843pt;}
.wsc4{word-spacing:2.235524pt;}
.wsc1{word-spacing:2.236361pt;}
.wsc5{word-spacing:2.247578pt;}
.ws64{word-spacing:2.284756pt;}
.wsd8{word-spacing:2.295398pt;}
.ws13{word-spacing:2.337890pt;}
.wsf7{word-spacing:2.343219pt;}
.ws24{word-spacing:2.391024pt;}
.ws6e{word-spacing:2.444158pt;}
.ws71{word-spacing:2.448595pt;}
.ws67{word-spacing:2.550426pt;}
.ws72{word-spacing:2.603559pt;}
.wsf5{word-spacing:2.630144pt;}
.ws5e{word-spacing:2.656693pt;}
.ws73{word-spacing:2.709827pt;}
.ws107{word-spacing:2.725786pt;}
.ws80{word-spacing:2.762961pt;}
.ws7b{word-spacing:2.816095pt;}
.wse8{word-spacing:2.839842pt;}
.wsf0{word-spacing:2.866739pt;}
.ws2c{word-spacing:2.869229pt;}
.ws7{word-spacing:2.869248pt;}
.wsb8{word-spacing:2.909323pt;}
.wsb7{word-spacing:2.910745pt;}
.wsb6{word-spacing:2.916810pt;}
.wsb5{word-spacing:2.917069pt;}
.ws48{word-spacing:2.922363pt;}
.wse6{word-spacing:2.964890pt;}
.ws49{word-spacing:2.975497pt;}
.wsff{word-spacing:3.060531pt;}
.wsdf{word-spacing:3.081764pt;}
.ws6d{word-spacing:3.134898pt;}
.ws17{word-spacing:3.188032pt;}
.wsb4{word-spacing:3.203994pt;}
.ws5c{word-spacing:3.294300pt;}
.wsef{word-spacing:3.299635pt;}
.ws74{word-spacing:3.347434pt;}
.ws103{word-spacing:3.395277pt;}
.wsb2{word-spacing:3.400567pt;}
.ws102{word-spacing:3.443098pt;}
.wsb1{word-spacing:3.453701pt;}
.ws77{word-spacing:3.506835pt;}
.wsa{word-spacing:3.559969pt;}
.ws81{word-spacing:3.613103pt;}
.ws51{word-spacing:3.666237pt;}
.ws10a{word-spacing:3.682202pt;}
.ws50{word-spacing:3.719371pt;}
.wsdd{word-spacing:3.825638pt;}
.wsfe{word-spacing:3.873485pt;}
.wsbc{word-spacing:3.931906pt;}
.ws5d{word-spacing:4.038174pt;}
.ws5f{word-spacing:4.144442pt;}
.wsae{word-spacing:4.144595pt;}
.wsbe{word-spacing:4.208230pt;}
.ws70{word-spacing:4.250709pt;}
.wse1{word-spacing:4.303843pt;}
.ws60{word-spacing:4.463245pt;}
.wsbd{word-spacing:4.495155pt;}
.wse3{word-spacing:4.569513pt;}
.ws100{word-spacing:4.590797pt;}
.ws75{word-spacing:4.622646pt;}
.ws10b{word-spacing:4.686438pt;}
.ws59{word-spacing:4.728914pt;}
.wsa2{word-spacing:4.835182pt;}
.wse{word-spacing:4.888316pt;}
.ws88{word-spacing:4.941450pt;}
.ws10{word-spacing:5.207119pt;}
.wsf1{word-spacing:5.212467pt;}
.ws56{word-spacing:5.260253pt;}
.ws11{word-spacing:5.313387pt;}
.ws89{word-spacing:5.366521pt;}
.wsc0{word-spacing:5.403750pt;}
.ws4b{word-spacing:5.525922pt;}
.ws105{word-spacing:5.547213pt;}
.ws4a{word-spacing:5.579056pt;}
.ws4d{word-spacing:5.632190pt;}
.ws32{word-spacing:5.677867pt;}
.ws4c{word-spacing:5.685324pt;}
.wsbf{word-spacing:5.738496pt;}
.wsb{word-spacing:6.004127pt;}
.ws10c{word-spacing:6.121062pt;}
.ws78{word-spacing:6.163529pt;}
.wse0{word-spacing:6.269796pt;}
.wsa3{word-spacing:6.641733pt;}
.ws65{word-spacing:6.694867pt;}
.wsab{word-spacing:6.907403pt;}
.wsca{word-spacing:7.119938pt;}
.ws54{word-spacing:7.226206pt;}
.wscd{word-spacing:7.279340pt;}
.wsce{word-spacing:7.332474pt;}
.ws9c{word-spacing:7.354478pt;}
.ws9b{word-spacing:7.355315pt;}
.ws9d{word-spacing:7.364403pt;}
.wsdb{word-spacing:7.385607pt;}
.wsf2{word-spacing:7.507866pt;}
.ws109{word-spacing:7.651328pt;}
.ws1e{word-spacing:8.076348pt;}
.wsf{word-spacing:8.129482pt;}
.wsf3{word-spacing:8.559923pt;}
.wsac{word-spacing:8.607686pt;}
.wscc{word-spacing:8.926490pt;}
.wse4{word-spacing:9.351561pt;}
.ws6b{word-spacing:9.829765pt;}
.ws53{word-spacing:9.882899pt;}
.ws1c{word-spacing:9.936033pt;}
.wsf8{word-spacing:10.281472pt;}
.ws6a{word-spacing:10.839309pt;}
.ws87{word-spacing:11.051844pt;}
.ws108{word-spacing:11.381350pt;}
.ws10f{word-spacing:11.907379pt;}
.ws35{word-spacing:12.506940pt;}
.ws1f{word-spacing:12.752128pt;}
.wsa0{word-spacing:16.259072pt;}
.ws9f{word-spacing:16.832922pt;}
.ws106{word-spacing:19.893453pt;}
.ws69{word-spacing:24.175909pt;}
.ws4{word-spacing:40.940800pt;}
.ws85{word-spacing:51.789926pt;}
.ws7f{word-spacing:52.397773pt;}
.ws36{word-spacing:52.399505pt;}
.wseb{word-spacing:53.357431pt;}
.ws5{word-spacing:54.221867pt;}
.wse9{word-spacing:80.472098pt;}
.ws84{word-spacing:99.419443pt;}
.wsea{word-spacing:105.827430pt;}
.wsee{word-spacing:105.923072pt;}
.ws7e{word-spacing:119.349666pt;}
.ws39{word-spacing:158.860698pt;}
.ws42{word-spacing:166.081638pt;}
.ws3d{word-spacing:186.070733pt;}
.wsec{word-spacing:188.605235pt;}
.ws3c{word-spacing:194.946133pt;}
.ws38{word-spacing:197.356442pt;}
.ws41{word-spacing:231.930880pt;}
.wsed{word-spacing:591.880098pt;}
.ws8e{word-spacing:916.559200pt;}
._32{margin-left:-6.854269pt;}
._0{margin-left:-5.897859pt;}
._b{margin-left:-4.782048pt;}
._2{margin-left:-3.538739pt;}
._43{margin-left:-2.630144pt;}
._3{margin-left:-1.721549pt;}
._c{width:1.405493pt;}
._1{width:2.659808pt;}
._49{width:3.900178pt;}
._1f{width:7.757545pt;}
._34{width:10.998784pt;}
._12{width:12.050784pt;}
._f{width:13.177232pt;}
._5{width:14.824448pt;}
._13{width:15.855058pt;}
._7{width:16.949703pt;}
._21{width:17.906113pt;}
._23{width:18.862523pt;}
._a{width:19.872066pt;}
._6{width:21.540481pt;}
._d{width:23.145136pt;}
._9{width:24.218439pt;}
._1e{width:25.823059pt;}
._22{width:27.491474pt;}
._e{width:29.744362pt;}
._20{width:31.827186pt;}
._47{width:32.726374pt;}
._2d{width:33.761270pt;}
._40{width:34.888783pt;}
._33{width:35.886625pt;}
._2f{width:36.874903pt;}
._31{width:38.203250pt;}
._44{width:39.363781pt;}
._46{width:40.323794pt;}
._8{width:42.103287pt;}
._30{width:43.601604pt;}
._45{width:49.199296pt;}
._48{width:52.220282pt;}
._42{width:54.993920pt;}
._4{width:57.384960pt;}
._41{width:59.974535pt;}
._39{width:63.745126pt;}
._2c{width:105.397043pt;}
._35{width:108.266291pt;}
._29{width:115.056845pt;}
._27{width:119.743283pt;}
._3d{width:128.064102pt;}
._37{width:133.228749pt;}
._2b{width:135.476326pt;}
._24{width:140.784196pt;}
._2a{width:161.203917pt;}
._1a{width:162.781971pt;}
._36{width:180.188774pt;}
._38{width:202.616730pt;}
._1d{width:204.003533pt;}
._28{width:209.216000pt;}
._17{width:211.332250pt;}
._25{width:215.193600pt;}
._14{width:218.541056pt;}
._26{width:244.507750pt;}
._19{width:246.898790pt;}
._18{width:248.811622pt;}
._3a{width:252.350362pt;}
._3e{width:268.131226pt;}
._16{width:284.151194pt;}
._1c{width:308.061594pt;}
._15{width:323.507712pt;}
._1b{width:348.183181pt;}
._3b{width:352.152371pt;}
._3f{width:384.766157pt;}
._3c{width:429.000397pt;}
._10{width:798.198602pt;}
._2e{width:1778.455733pt;}
._11{width:1799.709067pt;}
.fs8{font-size:26.566933pt;}
.fs7{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:101.448225pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.545957pt;}
.y2{bottom:26.907593pt;}
.y2f{bottom:56.693333pt;}
.y4a{bottom:98.838667pt;}
.y7b{bottom:102.729333pt;}
.yec{bottom:103.164000pt;}
.y1a2{bottom:104.026667pt;}
.y2e{bottom:105.578667pt;}
.y8f{bottom:105.942667pt;}
.y12b{bottom:106.528000pt;}
.yc9{bottom:106.545333pt;}
.y1ae{bottom:107.586667pt;}
.y151{bottom:108.092000pt;}
.ybd{bottom:109.441333pt;}
.y49{bottom:112.586667pt;}
.y48{bottom:116.850667pt;}
.y22b{bottom:119.208000pt;}
.y1f9{bottom:119.246667pt;}
.y7a{bottom:120.741333pt;}
.yeb{bottom:121.177333pt;}
.y1a1{bottom:122.040000pt;}
.y2d{bottom:123.590667pt;}
.y12a{bottom:123.624000pt;}
.y8e{bottom:123.954667pt;}
.yc8{bottom:124.558667pt;}
.y1ad{bottom:125.600000pt;}
.y1b7{bottom:125.912000pt;}
.y150{bottom:126.105333pt;}
.ybc{bottom:127.454667pt;}
.y12d{bottom:127.788000pt;}
.y47{bottom:134.864000pt;}
.y22a{bottom:136.424000pt;}
.y1f8{bottom:136.462667pt;}
.y129{bottom:138.442667pt;}
.y79{bottom:138.754667pt;}
.yea{bottom:139.189333pt;}
.y1a0{bottom:140.052000pt;}
.y128{bottom:140.720000pt;}
.y2c{bottom:141.604000pt;}
.y8d{bottom:141.968000pt;}
.yc7{bottom:142.570667pt;}
.y1ac{bottom:143.612000pt;}
.y1b6{bottom:143.924000pt;}
.y14f{bottom:144.117333pt;}
.y118{bottom:144.698667pt;}
.y12c{bottom:144.884000pt;}
.ybb{bottom:145.466667pt;}
.y169{bottom:150.676000pt;}
.y191{bottom:152.240000pt;}
.y46{bottom:152.876000pt;}
.y229{bottom:153.638667pt;}
.y1f7{bottom:153.678667pt;}
.y114{bottom:156.453333pt;}
.y78{bottom:156.766667pt;}
.ye9{bottom:157.202667pt;}
.y19f{bottom:158.064000pt;}
.y2b{bottom:159.616000pt;}
.y8c{bottom:159.980000pt;}
.yc6{bottom:160.584000pt;}
.y1ab{bottom:161.625333pt;}
.y117{bottom:161.794667pt;}
.y1b5{bottom:161.936000pt;}
.y14e{bottom:162.129333pt;}
.y127{bottom:163.440000pt;}
.yba{bottom:163.478667pt;}
.y168{bottom:167.772000pt;}
.y190{bottom:170.253333pt;}
.y45{bottom:170.889333pt;}
.y1f6{bottom:170.893333pt;}
.y113{bottom:174.466667pt;}
.y77{bottom:174.778667pt;}
.ye8{bottom:175.214667pt;}
.y1cb{bottom:175.393333pt;}
.y19e{bottom:176.077333pt;}
.y2a{bottom:177.629333pt;}
.y8b{bottom:177.992000pt;}
.yc5{bottom:178.596000pt;}
.y116{bottom:178.890667pt;}
.y1aa{bottom:179.637333pt;}
.y1b4{bottom:179.949333pt;}
.y14d{bottom:180.142667pt;}
.yb9{bottom:181.492000pt;}
.y228{bottom:182.928000pt;}
.y1f5{bottom:188.109333pt;}
.y18f{bottom:188.265333pt;}
.y44{bottom:188.901333pt;}
.y167{bottom:190.492000pt;}
.y1ca{bottom:191.905333pt;}
.y112{bottom:192.478667pt;}
.y76{bottom:192.792000pt;}
.ye7{bottom:193.226667pt;}
.y19d{bottom:194.089333pt;}
.y29{bottom:195.641333pt;}
.y8a{bottom:196.005333pt;}
.yc4{bottom:196.608000pt;}
.y1b3{bottom:197.961333pt;}
.y14c{bottom:198.154667pt;}
.y126{bottom:199.457333pt;}
.yb8{bottom:199.504000pt;}
.y227{bottom:200.144000pt;}
.y115{bottom:201.610667pt;}
.y1f4{bottom:205.324000pt;}
.y18e{bottom:206.278667pt;}
.y43{bottom:206.913333pt;}
.y1c9{bottom:208.416000pt;}
.y111{bottom:210.490667pt;}
.y1a9{bottom:210.749333pt;}
.y75{bottom:210.804000pt;}
.ye6{bottom:211.240000pt;}
.y19c{bottom:212.102667pt;}
.y28{bottom:213.653333pt;}
.y89{bottom:214.017333pt;}
.yc3{bottom:214.621333pt;}
.y14b{bottom:216.168000pt;}
.y226{bottom:217.358667pt;}
.y125{bottom:217.470667pt;}
.yb7{bottom:217.517333pt;}
.y1f3{bottom:222.540000pt;}
.y1b2{bottom:223.944000pt;}
.y18d{bottom:224.290667pt;}
.y42{bottom:224.926667pt;}
.y1c8{bottom:224.928000pt;}
.y1a8{bottom:227.845333pt;}
.y110{bottom:228.504000pt;}
.y74{bottom:228.817333pt;}
.ye5{bottom:229.252000pt;}
.y19b{bottom:230.114667pt;}
.y27{bottom:231.666667pt;}
.y88{bottom:232.030667pt;}
.yc2{bottom:232.633333pt;}
.y14a{bottom:234.180000pt;}
.y225{bottom:234.574667pt;}
.y124{bottom:235.482667pt;}
.yb6{bottom:235.529333pt;}
.y1f2{bottom:239.756000pt;}
.y1c7{bottom:241.440000pt;}
.y18c{bottom:242.302667pt;}
.y41{bottom:242.938667pt;}
.y1a7{bottom:244.940000pt;}
.y10f{bottom:246.516000pt;}
.y73{bottom:246.829333pt;}
.ye4{bottom:247.265333pt;}
.y19a{bottom:248.126667pt;}
.y26{bottom:249.678667pt;}
.y149{bottom:249.842667pt;}
.y87{bottom:250.042667pt;}
.yc1{bottom:250.646667pt;}
.y224{bottom:251.790667pt;}
.y1b1{bottom:252.053333pt;}
.y148{bottom:252.192000pt;}
.y123{bottom:253.496000pt;}
.yb5{bottom:253.541333pt;}
.y1f1{bottom:256.970667pt;}
.y1c6{bottom:257.950667pt;}
.y18b{bottom:260.316000pt;}
.y40{bottom:260.952000pt;}
.y1a6{bottom:262.036000pt;}
.y10e{bottom:264.529333pt;}
.y72{bottom:264.841333pt;}
.ye3{bottom:265.277333pt;}
.y199{bottom:266.140000pt;}
.y25{bottom:267.692000pt;}
.y86{bottom:268.054667pt;}
.yc0{bottom:268.658667pt;}
.y223{bottom:269.005333pt;}
.y1b0{bottom:269.149333pt;}
.y147{bottom:270.205333pt;}
.y122{bottom:271.508000pt;}
.yb4{bottom:271.554667pt;}
.y1f0{bottom:274.186667pt;}
.y18a{bottom:278.328000pt;}
.y3f{bottom:278.964000pt;}
.y1a5{bottom:279.132000pt;}
.y10d{bottom:282.541333pt;}
.y71{bottom:282.854667pt;}
.ye2{bottom:283.289333pt;}
.y198{bottom:284.152000pt;}
.y1c5{bottom:284.346667pt;}
.y146{bottom:285.866667pt;}
.y85{bottom:286.068000pt;}
.y222{bottom:286.221333pt;}
.y1af{bottom:286.245333pt;}
.ybf{bottom:286.670667pt;}
.y145{bottom:288.217333pt;}
.y121{bottom:289.520000pt;}
.yb3{bottom:289.566667pt;}
.y1ef{bottom:291.401333pt;}
.y24{bottom:293.674667pt;}
.y1a4{bottom:296.228000pt;}
.y189{bottom:296.341333pt;}
.y3e{bottom:296.976000pt;}
.y10c{bottom:300.553333pt;}
.y70{bottom:300.866667pt;}
.ye1{bottom:301.302667pt;}
.y197{bottom:302.165333pt;}
.y221{bottom:303.437333pt;}
.y144{bottom:303.880000pt;}
.y84{bottom:304.080000pt;}
.y1c4{bottom:305.826667pt;}
.y143{bottom:306.230667pt;}
.y120{bottom:307.533333pt;}
.yb2{bottom:307.580000pt;}
.y1ee{bottom:308.617333pt;}
.y188{bottom:312.002667pt;}
.ybe{bottom:312.653333pt;}
.y1a3{bottom:313.324000pt;}
.y187{bottom:314.353333pt;}
.y10b{bottom:318.566667pt;}
.y6f{bottom:318.880000pt;}
.ye0{bottom:319.314667pt;}
.y220{bottom:320.652000pt;}
.y83{bottom:322.093333pt;}
.y142{bottom:324.242667pt;}
.y11f{bottom:325.545333pt;}
.yb1{bottom:325.592000pt;}
.y3d{bottom:328.088000pt;}
.y186{bottom:332.365333pt;}
.y196{bottom:333.276000pt;}
.y1ed{bottom:333.802667pt;}
.y10a{bottom:336.578667pt;}
.y6e{bottom:336.892000pt;}
.ydf{bottom:337.328000pt;}
.y21f{bottom:337.868000pt;}
.y1c3{bottom:339.778667pt;}
.y82{bottom:340.105333pt;}
.y141{bottom:342.254667pt;}
.y11e{bottom:343.558667pt;}
.yb0{bottom:343.604000pt;}
.y195{bottom:350.372000pt;}
.y185{bottom:350.378667pt;}
.yde{bottom:352.989333pt;}
.y109{bottom:354.592000pt;}
.y6d{bottom:354.904000pt;}
.y21e{bottom:355.082667pt;}
.ydd{bottom:355.340000pt;}
.y140{bottom:357.917333pt;}
.y81{bottom:358.117333pt;}
.y23{bottom:358.132000pt;}
.y13f{bottom:360.268000pt;}
.y1c2{bottom:361.258667pt;}
.y11d{bottom:361.570667pt;}
.yaf{bottom:361.617333pt;}
.y194{bottom:367.468000pt;}
.y184{bottom:368.390667pt;}
.y21d{bottom:372.298667pt;}
.y108{bottom:372.604000pt;}
.y6c{bottom:372.917333pt;}
.ydc{bottom:373.352000pt;}
.y1c1{bottom:374.768000pt;}
.y166{bottom:375.209333pt;}
.y80{bottom:376.130667pt;}
.y22{bottom:376.145333pt;}
.y1ec{bottom:376.605333pt;}
.y11c{bottom:379.582667pt;}
.yae{bottom:379.629333pt;}
.y193{bottom:384.564000pt;}
.y183{bottom:386.404000pt;}
.y21c{bottom:389.514667pt;}
.y107{bottom:390.616000pt;}
.y6b{bottom:390.929333pt;}
.y1eb{bottom:391.216000pt;}
.ydb{bottom:391.365333pt;}
.y13e{bottom:391.378667pt;}
.y165{bottom:393.221333pt;}
.y7f{bottom:394.142667pt;}
.y1c0{bottom:396.246667pt;}
.y11b{bottom:397.596000pt;}
.yad{bottom:397.642667pt;}
.y192{bottom:401.660000pt;}
.y182{bottom:404.416000pt;}
.y1e8{bottom:405.828000pt;}
.y21b{bottom:406.729333pt;}
.y13d{bottom:408.474667pt;}
.y106{bottom:408.629333pt;}
.y6a{bottom:408.942667pt;}
.yd9{bottom:409.377333pt;}
.y1bf{bottom:409.757333pt;}
.y21{bottom:410.097333pt;}
.y164{bottom:411.234667pt;}
.y7e{bottom:412.156000pt;}
.yda{bottom:414.457333pt;}
.y11a{bottom:415.608000pt;}
.yac{bottom:415.654667pt;}
.y1ea{bottom:420.440000pt;}
.y181{bottom:422.428000pt;}
.y1be{bottom:423.266667pt;}
.y21a{bottom:423.945333pt;}
.y105{bottom:426.641333pt;}
.y69{bottom:426.954667pt;}
.yd8{bottom:427.390667pt;}
.y20{bottom:428.110667pt;}
.y163{bottom:429.246667pt;}
.yab{bottom:433.666667pt;}
.y1e9{bottom:435.052000pt;}
.y1bd{bottom:436.776000pt;}
.y7d{bottom:438.138667pt;}
.y180{bottom:440.441333pt;}
.y219{bottom:441.160000pt;}
.y104{bottom:444.654667pt;}
.y68{bottom:444.966667pt;}
.yd7{bottom:445.402667pt;}
.y1f{bottom:446.122667pt;}
.y119{bottom:446.720000pt;}
.y162{bottom:447.260000pt;}
.yaa{bottom:451.680000pt;}
.y1e7{bottom:456.332000pt;}
.y1bc{bottom:458.254667pt;}
.y218{bottom:458.376000pt;}
.y17f{bottom:458.453333pt;}
.y103{bottom:462.666667pt;}
.y67{bottom:462.980000pt;}
.yd6{bottom:463.414667pt;}
.y1e{bottom:464.134667pt;}
.y161{bottom:465.272000pt;}
.y7c{bottom:466.248000pt;}
.ya9{bottom:469.692000pt;}
.y1e6{bottom:470.944000pt;}
.y1bb{bottom:471.764000pt;}
.y217{bottom:475.592000pt;}
.y17e{bottom:476.466667pt;}
.y102{bottom:480.678667pt;}
.y66{bottom:480.992000pt;}
.y1d{bottom:482.148000pt;}
.y160{bottom:483.284000pt;}
.y1ba{bottom:485.273333pt;}
.y1e3{bottom:485.556000pt;}
.ya8{bottom:487.704000pt;}
.y216{bottom:492.806667pt;}
.y17d{bottom:494.478667pt;}
.y101{bottom:498.692000pt;}
.y1b9{bottom:498.782667pt;}
.y65{bottom:499.005333pt;}
.y1c{bottom:500.160000pt;}
.y1e5{bottom:500.168000pt;}
.y15f{bottom:501.297333pt;}
.yd5{bottom:505.101333pt;}
.ya7{bottom:505.717333pt;}
.y215{bottom:510.022667pt;}
.y1b8{bottom:512.292000pt;}
.y17c{bottom:512.490667pt;}
.y1e4{bottom:514.780000pt;}
.y100{bottom:516.704000pt;}
.y64{bottom:517.017333pt;}
.y1b{bottom:518.173333pt;}
.y15e{bottom:519.309333pt;}
.yd4{bottom:519.713333pt;}
.ya6{bottom:523.729333pt;}
.y214{bottom:527.237333pt;}
.y17b{bottom:530.504000pt;}
.yd3{bottom:534.325333pt;}
.yff{bottom:534.717333pt;}
.y15d{bottom:534.972000pt;}
.y63{bottom:535.029333pt;}
.y1e2{bottom:536.058667pt;}
.y1a{bottom:536.185333pt;}
.y15c{bottom:537.321333pt;}
.ya5{bottom:541.742667pt;}
.y213{bottom:544.453333pt;}
.y17a{bottom:548.516000pt;}
.yd2{bottom:548.937333pt;}
.y1e1{bottom:550.670667pt;}
.yfe{bottom:552.729333pt;}
.y62{bottom:553.042667pt;}
.y19{bottom:554.197333pt;}
.y15b{bottom:555.334667pt;}
.ya4{bottom:559.754667pt;}
.y212{bottom:561.669333pt;}
.y1de{bottom:565.282667pt;}
.y179{bottom:566.529333pt;}
.yd1{bottom:570.216000pt;}
.yfd{bottom:570.741333pt;}
.y61{bottom:571.054667pt;}
.y18{bottom:572.210667pt;}
.y15a{bottom:573.346667pt;}
.ya3{bottom:577.766667pt;}
.y211{bottom:578.884000pt;}
.y1e0{bottom:579.894667pt;}
.y178{bottom:584.541333pt;}
.yfc{bottom:588.754667pt;}
.y60{bottom:589.068000pt;}
.y17{bottom:590.222667pt;}
.y159{bottom:591.360000pt;}
.y1df{bottom:594.506667pt;}
.ya2{bottom:595.780000pt;}
.y210{bottom:596.100000pt;}
.yd0{bottom:599.518667pt;}
.y177{bottom:602.553333pt;}
.yfb{bottom:606.766667pt;}
.y5f{bottom:607.080000pt;}
.y16{bottom:608.236000pt;}
.y158{bottom:609.372000pt;}
.y20f{bottom:613.314667pt;}
.ya1{bottom:613.792000pt;}
.y1dd{bottom:615.786667pt;}
.y176{bottom:620.566667pt;}
.yfa{bottom:624.780000pt;}
.y5e{bottom:625.092000pt;}
.y1dc{bottom:626.173333pt;}
.y15{bottom:626.248000pt;}
.y157{bottom:627.384000pt;}
.y20e{bottom:630.530667pt;}
.ya0{bottom:631.805333pt;}
.ycf{bottom:632.500000pt;}
.y175{bottom:638.578667pt;}
.yf9{bottom:642.792000pt;}
.y5d{bottom:643.105333pt;}
.y14{bottom:644.260000pt;}
.y156{bottom:645.397333pt;}
.y20d{bottom:647.746667pt;}
.y9f{bottom:649.817333pt;}
.yce{bottom:650.513333pt;}
.y174{bottom:656.592000pt;}
.yf8{bottom:660.804000pt;}
.y5c{bottom:661.117333pt;}
.y13{bottom:662.273333pt;}
.y1db{bottom:664.906667pt;}
.y20c{bottom:664.961333pt;}
.y9e{bottom:667.829333pt;}
.ycd{bottom:668.525333pt;}
.y173{bottom:674.604000pt;}
.y155{bottom:676.508000pt;}
.yf7{bottom:678.817333pt;}
.y12{bottom:680.285333pt;}
.y20b{bottom:682.177333pt;}
.y9d{bottom:685.842667pt;}
.ycc{bottom:686.537333pt;}
.y154{bottom:691.326667pt;}
.y172{bottom:692.616000pt;}
.y153{bottom:693.604000pt;}
.yf6{bottom:696.829333pt;}
.y11{bottom:698.298667pt;}
.y20a{bottom:699.392000pt;}
.y5b{bottom:699.453333pt;}
.y1da{bottom:701.874667pt;}
.y9c{bottom:703.854667pt;}
.ycb{bottom:704.550667pt;}
.y171{bottom:710.629333pt;}
.y5a{bottom:712.073333pt;}
.y13c{bottom:713.897333pt;}
.y152{bottom:716.324000pt;}
.y1d9{bottom:716.486667pt;}
.y209{bottom:716.608000pt;}
.y9b{bottom:721.868000pt;}
.yf5{bottom:722.812000pt;}
.y59{bottom:724.692000pt;}
.y170{bottom:728.641333pt;}
.y58{bottom:728.665333pt;}
.y10{bottom:729.793333pt;}
.y1d8{bottom:731.098667pt;}
.y13b{bottom:731.909333pt;}
.y208{bottom:733.824000pt;}
.yca{bottom:735.661333pt;}
.y9a{bottom:739.880000pt;}
.y57{bottom:743.982667pt;}
.y1d7{bottom:745.710667pt;}
.y13a{bottom:749.922667pt;}
.y207{bottom:751.038667pt;}
.yf4{bottom:753.762667pt;}
.yf{bottom:753.902667pt;}
.y16f{bottom:754.624000pt;}
.y56{bottom:756.781333pt;}
.y99{bottom:757.892000pt;}
.y1d6{bottom:760.322667pt;}
.y55{bottom:761.082667pt;}
.y139{bottom:767.934667pt;}
.y206{bottom:768.254667pt;}
.ye{bottom:770.042667pt;}
.yf3{bottom:771.776000pt;}
.y3c{bottom:773.009333pt;}
.y98{bottom:775.905333pt;}
.y1d5{bottom:777.385333pt;}
.y54{bottom:778.352000pt;}
.y16e{bottom:782.733333pt;}
.y1d4{bottom:782.781333pt;}
.y205{bottom:785.469333pt;}
.y138{bottom:785.948000pt;}
.yd{bottom:786.182667pt;}
.yf2{bottom:789.788000pt;}
.y3b{bottom:791.021333pt;}
.y97{bottom:793.917333pt;}
.y53{bottom:794.528000pt;}
.y16c{bottom:799.829333pt;}
.yc{bottom:802.321333pt;}
.y204{bottom:802.685333pt;}
.y137{bottom:803.960000pt;}
.y16d{bottom:805.130667pt;}
.yb{bottom:807.622667pt;}
.yf1{bottom:807.800000pt;}
.y3a{bottom:809.034667pt;}
.y96{bottom:811.930667pt;}
.y1d3{bottom:813.514667pt;}
.y16b{bottom:816.925333pt;}
.y52{bottom:817.286667pt;}
.ya{bottom:818.461333pt;}
.y203{bottom:819.901333pt;}
.y136{bottom:821.972000pt;}
.y50{bottom:824.593333pt;}
.y39{bottom:827.046667pt;}
.y95{bottom:829.942667pt;}
.y51{bottom:831.898667pt;}
.yf0{bottom:833.782667pt;}
.y202{bottom:837.116000pt;}
.y16a{bottom:839.645333pt;}
.y9{bottom:839.902667pt;}
.y135{bottom:839.985333pt;}
.y38{bottom:845.060000pt;}
.y94{bottom:847.954667pt;}
.y1d2{bottom:850.484000pt;}
.y201{bottom:854.332000pt;}
.y134{bottom:857.997333pt;}
.y8{bottom:858.710667pt;}
.y4f{bottom:860.005333pt;}
.y37{bottom:863.072000pt;}
.y1d1{bottom:865.094667pt;}
.y93{bottom:865.968000pt;}
.y200{bottom:871.546667pt;}
.yef{bottom:872.466667pt;}
.y133{bottom:876.010667pt;}
.y1d0{bottom:879.706667pt;}
.y36{bottom:881.084000pt;}
.y92{bottom:883.980000pt;}
.y1ff{bottom:888.762667pt;}
.y4e{bottom:892.986667pt;}
.yee{bottom:893.746667pt;}
.y132{bottom:894.022667pt;}
.y1cf{bottom:894.318667pt;}
.y7{bottom:898.178667pt;}
.y35{bottom:899.097333pt;}
.y91{bottom:901.993333pt;}
.y1fe{bottom:905.978667pt;}
.y1ce{bottom:908.930667pt;}
.y4d{bottom:910.998667pt;}
.y131{bottom:912.034667pt;}
.y34{bottom:917.109333pt;}
.y90{bottom:920.005333pt;}
.yed{bottom:923.049333pt;}
.y1fd{bottom:923.193333pt;}
.y6{bottom:925.198667pt;}
.y130{bottom:930.048000pt;}
.y1cd{bottom:930.210667pt;}
.y4c{bottom:938.017333pt;}
.y1fc{bottom:940.409333pt;}
.y33{bottom:943.092000pt;}
.y12f{bottom:948.060000pt;}
.y5{bottom:952.217333pt;}
.y4b{bottom:956.030667pt;}
.y1fb{bottom:957.624000pt;}
.y1cc{bottom:958.317333pt;}
.y12e{bottom:966.073333pt;}
.y32{bottom:974.042667pt;}
.y1fa{bottom:974.840000pt;}
.y4{bottom:977.906667pt;}
.y31{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y30{bottom:1038.548000pt;}
.h1f{height:18.292986pt;}
.h1a{height:23.209028pt;}
.h1d{height:24.760382pt;}
.h7{height:27.076941pt;}
.h20{height:29.397999pt;}
.h1b{height:30.945242pt;}
.hd{height:31.157778pt;}
.h1c{height:32.007922pt;}
.h15{height:34.430976pt;}
.h8{height:34.813542pt;}
.h14{height:35.052646pt;}
.h25{height:36.009062pt;}
.hb{height:37.164279pt;}
.h12{height:37.778179pt;}
.h9{height:38.256384pt;}
.ha{height:38.681455pt;}
.h4{height:38.947124pt;}
.hc{height:40.116069pt;}
.h2{height:45.272024pt;}
.h1e{height:47.984725pt;}
.h16{height:48.282274pt;}
.h21{height:48.475392pt;}
.h6{height:49.394944pt;}
.h11{height:49.717999pt;}
.he{height:49.723332pt;}
.h17{height:51.550822pt;}
.h18{height:52.177983pt;}
.h13{height:53.376666pt;}
.h23{height:56.014976pt;}
.hf{height:57.172069pt;}
.h19{height:68.756156pt;}
.h3{height:68.781897pt;}
.h5{height:68.861952pt;}
.h22{height:72.912725pt;}
.h10{height:85.438736pt;}
.h24{height:94.057489pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:184.542183pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:51.603593pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.x84{left:106.286667pt;}
.x6{left:108.542667pt;}
.x4{left:109.606667pt;}
.x42{left:117.993333pt;}
.x5{left:129.929333pt;}
.xf5{left:131.300000pt;}
.x2b{left:133.292000pt;}
.xa8{left:134.370667pt;}
.x43{left:139.277333pt;}
.x24{left:140.578667pt;}
.x1f{left:142.900000pt;}
.x2a{left:144.172000pt;}
.x2d{left:151.589333pt;}
.x20{left:154.116000pt;}
.x4d{left:156.196000pt;}
.x25{left:157.666667pt;}
.xa5{left:160.624000pt;}
.x9b{left:163.145333pt;}
.xd{left:165.121333pt;}
.x7{left:167.422667pt;}
.x27{left:169.002667pt;}
.xf2{left:171.786667pt;}
.x4e{left:174.986667pt;}
.x3c{left:177.973333pt;}
.xa{left:179.057333pt;}
.x93{left:182.008000pt;}
.xc3{left:183.664000pt;}
.x49{left:185.198667pt;}
.x85{left:186.689333pt;}
.xd8{left:187.766667pt;}
.x44{left:188.912000pt;}
.xc2{left:191.753333pt;}
.xaa{left:192.974667pt;}
.xc0{left:194.458667pt;}
.x19{left:195.805333pt;}
.xa7{left:198.110667pt;}
.xc4{left:204.184000pt;}
.xed{left:205.230667pt;}
.xb{left:206.436000pt;}
.xb1{left:207.617333pt;}
.x69{left:211.761333pt;}
.x3f{left:214.197333pt;}
.xc5{left:217.254667pt;}
.xe2{left:219.052000pt;}
.x8c{left:221.704000pt;}
.xe7{left:222.713333pt;}
.x8{left:224.545333pt;}
.xfb{left:225.868000pt;}
.xee{left:227.510667pt;}
.x2e{left:232.965333pt;}
.x9{left:234.493333pt;}
.xc6{left:236.280000pt;}
.x7e{left:238.453333pt;}
.x45{left:239.694667pt;}
.xd9{left:240.757333pt;}
.xb2{left:241.788000pt;}
.x89{left:243.982667pt;}
.xcf{left:245.246667pt;}
.x88{left:246.886667pt;}
.x2f{left:248.009333pt;}
.x7d{left:250.028000pt;}
.xf3{left:252.616000pt;}
.xda{left:254.697333pt;}
.x7f{left:259.118667pt;}
.xd0{left:261.126667pt;}
.x5b{left:262.836000pt;}
.x92{left:264.838667pt;}
.xa0{left:266.913333pt;}
.x63{left:269.881333pt;}
.x41{left:274.489333pt;}
.x1a{left:277.529333pt;}
.x5e{left:279.134667pt;}
.xc7{left:280.104000pt;}
.xd2{left:281.177333pt;}
.x94{left:284.522667pt;}
.xc8{left:286.081333pt;}
.x15{left:289.272000pt;}
.x95{left:290.500000pt;}
.x86{left:293.745333pt;}
.x76{left:296.186667pt;}
.x9a{left:300.098667pt;}
.xc{left:302.166667pt;}
.xf1{left:303.133333pt;}
.x5f{left:305.685333pt;}
.xe3{left:306.917333pt;}
.x26{left:308.517333pt;}
.x74{left:310.037333pt;}
.xf0{left:312.490667pt;}
.x96{left:313.556000pt;}
.xb3{left:314.838667pt;}
.x77{left:316.232000pt;}
.x66{left:317.192000pt;}
.xef{left:319.722667pt;}
.x87{left:320.614667pt;}
.x7b{left:322.308000pt;}
.x75{left:323.321333pt;}
.x4f{left:324.733333pt;}
.xdf{left:328.478667pt;}
.x6b{left:329.521333pt;}
.x9e{left:331.270667pt;}
.x50{left:332.218667pt;}
.xdb{left:333.228000pt;}
.x67{left:337.253333pt;}
.x5c{left:338.709333pt;}
.x7c{left:340.136000pt;}
.xde{left:341.044000pt;}
.x64{left:342.306667pt;}
.x3d{left:343.234667pt;}
.xa6{left:344.961333pt;}
.xdc{left:347.168000pt;}
.x9f{left:349.680000pt;}
.x6c{left:351.652000pt;}
.xe9{left:353.425333pt;}
.x16{left:355.158667pt;}
.x23{left:356.833333pt;}
.x97{left:360.548000pt;}
.x40{left:363.725333pt;}
.x1b{left:365.370667pt;}
.x65{left:368.408000pt;}
.xe8{left:369.665333pt;}
.xba{left:371.414667pt;}
.xad{left:373.045333pt;}
.x17{left:375.012000pt;}
.x4a{left:376.956000pt;}
.xae{left:378.757333pt;}
.x51{left:379.681333pt;}
.xb4{left:381.504000pt;}
.x46{left:389.012000pt;}
.xc9{left:397.868000pt;}
.x98{left:399.033333pt;}
.xb5{left:401.549333pt;}
.x82{left:404.114667pt;}
.x99{left:406.338667pt;}
.x47{left:407.822667pt;}
.xca{left:410.061333pt;}
.x38{left:412.128000pt;}
.xd1{left:413.813333pt;}
.x6f{left:416.084000pt;}
.x32{left:418.498667pt;}
.xbb{left:420.601333pt;}
.x1c{left:422.861333pt;}
.xcb{left:425.088000pt;}
.x8f{left:426.477333pt;}
.x39{left:430.946667pt;}
.x55{left:432.881333pt;}
.x33{left:433.986667pt;}
.x8d{left:437.576000pt;}
.xd6{left:439.000000pt;}
.x5d{left:441.853333pt;}
.x78{left:443.676000pt;}
.x56{left:446.164000pt;}
.x2c{left:448.817333pt;}
.xe4{left:450.706667pt;}
.xbc{left:455.233333pt;}
.xd3{left:460.372000pt;}
.xc1{left:461.509333pt;}
.x8a{left:468.273333pt;}
.xdd{left:469.404000pt;}
.x34{left:470.606667pt;}
.x6a{left:472.238667pt;}
.xe{left:473.670667pt;}
.x48{left:474.756000pt;}
.x80{left:476.002667pt;}
.x8b{left:477.616000pt;}
.xd4{left:481.653333pt;}
.x3e{left:483.096000pt;}
.xa9{left:484.041333pt;}
.x8e{left:485.154667pt;}
.x3a{left:488.094667pt;}
.x4c{left:489.898667pt;}
.x6d{left:491.369333pt;}
.xf{left:492.478667pt;}
.x35{left:494.578667pt;}
.xaf{left:499.464000pt;}
.x81{left:500.973333pt;}
.x28{left:502.997333pt;}
.x3b{left:506.666667pt;}
.xd7{left:507.602667pt;}
.x36{left:510.778667pt;}
.xb0{left:512.746667pt;}
.x6e{left:516.828000pt;}
.xe0{left:517.786667pt;}
.x37{left:518.982667pt;}
.x61{left:520.012000pt;}
.x29{left:522.777333pt;}
.xea{left:525.472000pt;}
.xab{left:527.670667pt;}
.xf9{left:528.589333pt;}
.x68{left:529.948000pt;}
.x79{left:531.029333pt;}
.xe1{left:533.666667pt;}
.xec{left:536.793333pt;}
.xbd{left:538.289333pt;}
.x62{left:540.082667pt;}
.x4b{left:541.229333pt;}
.xeb{left:542.770667pt;}
.x72{left:544.677333pt;}
.xcc{left:547.894667pt;}
.xb8{left:549.748000pt;}
.x7a{left:551.076000pt;}
.xfa{left:552.500000pt;}
.x18{left:554.080000pt;}
.xcd{left:555.198667pt;}
.xa1{left:566.538667pt;}
.xac{left:567.909333pt;}
.xe5{left:570.506667pt;}
.xa2{left:571.702667pt;}
.x12{left:574.444000pt;}
.x59{left:578.986667pt;}
.x52{left:581.550667pt;}
.xb9{left:582.916000pt;}
.x57{left:585.026667pt;}
.xbe{left:586.905333pt;}
.xa3{left:588.409333pt;}
.x5a{left:592.270667pt;}
.x10{left:595.481333pt;}
.x53{left:598.192000pt;}
.xe6{left:599.374667pt;}
.xf6{left:603.650667pt;}
.x73{left:606.046667pt;}
.xbf{left:607.390667pt;}
.x58{left:610.464000pt;}
.x54{left:611.474667pt;}
.x11{left:614.750667pt;}
.xa4{left:616.504000pt;}
.xf8{left:618.685333pt;}
.x30{left:620.140000pt;}
.xf7{left:621.504000pt;}
.x9c{left:625.313333pt;}
.x31{left:627.442667pt;}
.x13{left:629.906667pt;}
.x90{left:632.302667pt;}
.x9d{left:643.698667pt;}
.xce{left:644.822667pt;}
.xf4{left:647.896000pt;}
.x91{left:650.801333pt;}
.xb7{left:657.053333pt;}
.xb6{left:660.518667pt;}
.x21{left:662.828000pt;}
.x60{left:670.114667pt;}
.x70{left:672.132000pt;}
.xd5{left:674.229333pt;}
.x14{left:675.640000pt;}
.x83{left:679.138667pt;}
.x22{left:682.013333pt;}
.x1d{left:683.165333pt;}
.x71{left:685.414667pt;}
.x1e{left:689.973333pt;}
}




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