
    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_4955a067315459fcf390305c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.116000;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_f697dd0c7f0cb8bfe463f73c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.265000;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_38ba84cf6b3bc855e784bd6b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.142000;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_56b1bf65c4027f91da1220bc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.099000;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_b8a826c3e818ecae518e41ea.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.882000;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_bbbbbf4272d07f78967ebe9a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.015000;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_827d89661576f36363ef8686.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.265000;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;}
.m6{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);}
.m10{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);}
.m27{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);}
.mb{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);}
.m8{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);}
.ma{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);}
.m16{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);}
.m1b{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);}
.m1{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);}
.m24{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);}
.m18{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);}
.m12{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);}
.m25{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);}
.m22{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);}
.m1e{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);}
.m4{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);}
.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);}
.m5{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.mf{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);}
.m26{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);}
.m1f{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);}
.m7{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);}
.m17{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);}
.m15{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);}
.m11{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);}
.m3{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);}
.m23{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);}
.mc{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m13{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);}
.m21{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m1a{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);}
.md{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);}
.m2{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);}
.me{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:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003149px;}
.ls4{letter-spacing:2.725192px;}
.ls1{letter-spacing:2.989622px;}
.ls8{letter-spacing:3.420985px;}
.lsb{letter-spacing:6.436091px;}
.ls7{letter-spacing:6.841970px;}
.lsa{letter-spacing:7.305833px;}
.ls9{letter-spacing:7.479781px;}
.ls3{letter-spacing:7.537764px;}
.lsc{letter-spacing:7.769695px;}
.ls5{letter-spacing:8.001626px;}
.lsd{letter-spacing:12.002440px;}
.ls6{letter-spacing:29.889968px;}
.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;}
}
.ws7{word-spacing:-15.539390px;}
.ws8e{word-spacing:-12.431448px;}
.ws2e{word-spacing:-4.348710px;}
.ws36{word-spacing:-4.290727px;}
.ws53{word-spacing:-4.174762px;}
.ws29{word-spacing:-4.116779px;}
.ws5f{word-spacing:-4.058796px;}
.ws52{word-spacing:-3.942830px;}
.ws34{word-spacing:-3.826865px;}
.ws26{word-spacing:-3.652916px;}
.ws54{word-spacing:-3.478968px;}
.ws32{word-spacing:-3.420985px;}
.ws3c{word-spacing:-3.363002px;}
.ws63{word-spacing:-2.783174px;}
.wsf{word-spacing:-2.765773px;}
.ws8a{word-spacing:-2.690388px;}
.ws95{word-spacing:-2.644002px;}
.ws65{word-spacing:-2.435278px;}
.ws25{word-spacing:-2.319312px;}
.ws91{word-spacing:-2.272914px;}
.ws59{word-spacing:-2.261329px;}
.ws89{word-spacing:-2.180142px;}
.ws85{word-spacing:-2.133756px;}
.ws7c{word-spacing:-1.948212px;}
.ws4c{word-spacing:-1.739484px;}
.ws8c{word-spacing:-1.669896px;}
.ws7e{word-spacing:-1.437966px;}
.ws2f{word-spacing:-1.275622px;}
.ws66{word-spacing:-1.217639px;}
.ws8f{word-spacing:-1.206036px;}
.ws4e{word-spacing:-1.159656px;}
.ws94{word-spacing:-1.113264px;}
.ws1b{word-spacing:-1.095872px;}
.ws23{word-spacing:-1.043690px;}
.ws28{word-spacing:-0.985708px;}
.ws2b{word-spacing:-0.869742px;}
.ws61{word-spacing:-0.811759px;}
.ws58{word-spacing:-0.753776px;}
.ws69{word-spacing:-0.695794px;}
.ws14{word-spacing:-0.678397px;}
.ws24{word-spacing:-0.637811px;}
.ws3a{word-spacing:-0.463862px;}
.ws46{word-spacing:-0.405880px;}
.ws45{word-spacing:-0.347897px;}
.ws1d{word-spacing:-0.324702px;}
.ws31{word-spacing:-0.289914px;}
.ws79{word-spacing:-0.278316px;}
.ws2c{word-spacing:-0.231931px;}
.ws7d{word-spacing:-0.231930px;}
.wsd{word-spacing:-0.208738px;}
.ws7b{word-spacing:-0.185544px;}
.ws35{word-spacing:-0.173948px;}
.ws8d{word-spacing:-0.139158px;}
.ws20{word-spacing:-0.115966px;}
.ws18{word-spacing:-0.104369px;}
.ws74{word-spacing:-0.092772px;}
.ws21{word-spacing:-0.057983px;}
.wsb{word-spacing:-0.053798px;}
.ws10{word-spacing:-0.052184px;}
.ws71{word-spacing:-0.046386px;}
.ws1{word-spacing:-0.001544px;}
.ws38{word-spacing:-0.001345px;}
.ws9{word-spacing:0.000000px;}
.ws7f{word-spacing:0.046386px;}
.ws2a{word-spacing:0.057983px;}
.ws72{word-spacing:0.092772px;}
.ws37{word-spacing:0.115966px;}
.ws73{word-spacing:0.139158px;}
.wse{word-spacing:0.156553px;}
.ws6{word-spacing:0.173948px;}
.ws75{word-spacing:0.185544px;}
.ws12{word-spacing:0.208738px;}
.ws77{word-spacing:0.231930px;}
.ws5{word-spacing:0.231931px;}
.ws17{word-spacing:0.260922px;}
.ws1f{word-spacing:0.289914px;}
.ws16{word-spacing:0.313106px;}
.ws92{word-spacing:0.324702px;}
.ws4a{word-spacing:0.347897px;}
.ws88{word-spacing:0.417474px;}
.ws81{word-spacing:0.463860px;}
.ws30{word-spacing:0.463862px;}
.ws4f{word-spacing:0.521845px;}
.ws3d{word-spacing:0.637811px;}
.ws2d{word-spacing:0.695794px;}
.ws98{word-spacing:0.742176px;}
.ws48{word-spacing:0.753776px;}
.ws5e{word-spacing:0.811759px;}
.ws39{word-spacing:0.869742px;}
.ws6a{word-spacing:1.159656px;}
.ws90{word-spacing:1.206036px;}
.ws55{word-spacing:1.217639px;}
.ws78{word-spacing:1.437966px;}
.ws8{word-spacing:1.507553px;}
.ws6b{word-spacing:1.565536px;}
.ws6e{word-spacing:1.681501px;}
.ws27{word-spacing:1.797467px;}
.ws84{word-spacing:1.809054px;}
.ws2{word-spacing:1.826442px;}
.ws86{word-spacing:1.901826px;}
.ws22{word-spacing:2.145364px;}
.ws3b{word-spacing:2.319312px;}
.ws5c{word-spacing:2.377295px;}
.ws8b{word-spacing:2.412072px;}
.ws51{word-spacing:2.493260px;}
.ws1a{word-spacing:2.557036px;}
.ws83{word-spacing:2.783160px;}
.ws62{word-spacing:2.841157px;}
.ws76{word-spacing:2.875932px;}
.ws80{word-spacing:2.968704px;}
.ws67{word-spacing:3.073088px;}
.ws4d{word-spacing:3.189054px;}
.ws33{word-spacing:3.363002px;}
.ws41{word-spacing:3.478968px;}
.ws49{word-spacing:3.536951px;}
.ws5a{word-spacing:3.652916px;}
.ws5d{word-spacing:3.710899px;}
.ws64{word-spacing:3.768882px;}
.ws97{word-spacing:3.896424px;}
.ws6c{word-spacing:4.000813px;}
.ws6d{word-spacing:4.058796px;}
.ws7a{word-spacing:4.267512px;}
.ws50{word-spacing:4.348710px;}
.ws11{word-spacing:4.592227px;}
.ws87{word-spacing:4.638600px;}
.ws56{word-spacing:4.928538px;}
.ws60{word-spacing:5.276435px;}
.ws68{word-spacing:5.856263px;}
.ws96{word-spacing:6.030180px;}
.ws93{word-spacing:6.076566px;}
.ws57{word-spacing:6.494074px;}
.ws6f{word-spacing:7.073902px;}
.wsa{word-spacing:8.326717px;}
.ws0{word-spacing:11.323940px;}
.ws3{word-spacing:11.895344px;}
.ws1c{word-spacing:12.060360px;}
.ws82{word-spacing:12.153132px;}
.ws99{word-spacing:14.472432px;}
.ws44{word-spacing:15.133511px;}
.ws47{word-spacing:15.249476px;}
.ws42{word-spacing:15.423425px;}
.ws43{word-spacing:15.473998px;}
.ws3f{word-spacing:15.597373px;}
.ws40{word-spacing:15.713339px;}
.ws4b{word-spacing:15.816692px;}
.wsc{word-spacing:16.107650px;}
.ws15{word-spacing:16.115692px;}
.ws3e{word-spacing:16.293167px;}
.ws13{word-spacing:16.547789px;}
.ws70{word-spacing:17.129363px;}
.ws5b{word-spacing:20.004066px;}
.ws4{word-spacing:20.555188px;}
.ws19{word-spacing:21.624347px;}
.ws1e{word-spacing:85.991123px;}
._12{margin-left:-10.329264px;}
._5{margin-left:-7.566800px;}
._1{margin-left:-5.073450px;}
._9{margin-left:-3.739904px;}
._3{margin-left:-2.689186px;}
._0{margin-left:-1.136453px;}
._6{width:1.136453px;}
._d{width:2.145364px;}
._2{width:10.146946px;}
._19{width:11.340170px;}
._f{width:12.499855px;}
._18{width:14.101309px;}
._8{width:15.322008px;}
._7{width:16.333717px;}
._b{width:18.066204px;}
._c{width:19.075115px;}
._e{width:20.433098px;}
._14{width:21.778330px;}
._4{width:24.174241px;}
._11{width:26.369371px;}
._a{width:27.868087px;}
._15{width:29.362450px;}
._13{width:31.403474px;}
._16{width:35.694202px;}
._17{width:39.416677px;}
._1a{width:42.767884px;}
._10{width:59.775600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:34.789800px;}
.fs0{font-size:40.587600px;}
.fs6{font-size:41.842800px;}
.fs4{font-size:46.386000px;}
.fs8{font-size:52.184400px;}
.fs7{font-size:53.798400px;}
.fs3{font-size:57.982800px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y51{bottom:18.948000px;}
.y26{bottom:63.780000px;}
.y109{bottom:77.976000px;}
.y25{bottom:81.712500px;}
.y108{bottom:92.173500px;}
.y98{bottom:99.645000px;}
.y50{bottom:102.742500px;}
.y24{bottom:106.269000px;}
.y107{bottom:106.369500px;}
.y72{bottom:112.987500px;}
.y136{bottom:113.164500px;}
.ybd{bottom:117.577500px;}
.y97{bottom:119.083500px;}
.y106{bottom:127.317000px;}
.y135{bottom:127.360500px;}
.y4f{bottom:129.072000px;}
.y71{bottom:130.920000px;}
.ybc{bottom:135.510000px;}
.y105{bottom:141.514500px;}
.y134{bottom:148.353000px;}
.y70{bottom:148.852500px;}
.ybb{bottom:153.444000px;}
.y104{bottom:155.712000px;}
.y96{bottom:159.064500px;}
.y133{bottom:162.549000px;}
.y6f{bottom:166.785000px;}
.ydf{bottom:171.376500px;}
.yba{bottom:171.723000px;}
.y103{bottom:176.659500px;}
.y132{bottom:176.746500px;}
.y95{bottom:176.997000px;}
.y4e{bottom:184.263000px;}
.y6e{bottom:184.719000px;}
.y23{bottom:185.608500px;}
.yde{bottom:189.309000px;}
.yb9{bottom:189.655500px;}
.y102{bottom:190.855500px;}
.y94{bottom:194.929500px;}
.y131{bottom:197.737500px;}
.y22{bottom:199.804500px;}
.y4d{bottom:202.195500px;}
.y6d{bottom:202.651500px;}
.y101{bottom:205.053000px;}
.yb8{bottom:207.588000px;}
.ydd{bottom:208.455000px;}
.y130{bottom:211.933500px;}
.y93{bottom:212.862000px;}
.y4c{bottom:220.128000px;}
.y6c{bottom:220.584000px;}
.yb7{bottom:225.520500px;}
.y100{bottom:226.000500px;}
.y12f{bottom:226.131000px;}
.ydc{bottom:226.387500px;}
.y92{bottom:230.796000px;}
.y21{bottom:236.566500px;}
.y4b{bottom:238.060500px;}
.y6b{bottom:238.516500px;}
.yff{bottom:240.198000px;}
.yb6{bottom:243.453000px;}
.ydb{bottom:244.320000px;}
.y12e{bottom:247.122000px;}
.y91{bottom:248.728500px;}
.y20{bottom:253.005000px;}
.y4a{bottom:255.993000px;}
.y6a{bottom:256.449000px;}
.yfe{bottom:261.145500px;}
.y12d{bottom:261.319500px;}
.yb5{bottom:261.385500px;}
.yda{bottom:262.252500px;}
.y90{bottom:266.757000px;}
.y1f{bottom:269.443500px;}
.y49{bottom:273.925500px;}
.y69{bottom:274.381500px;}
.yfd{bottom:275.341500px;}
.yd9{bottom:280.186500px;}
.yb4{bottom:281.296500px;}
.y12c{bottom:282.310500px;}
.y8f{bottom:284.689500px;}
.y1e{bottom:285.882000px;}
.y48{bottom:291.859500px;}
.y68{bottom:292.315500px;}
.yfc{bottom:296.290500px;}
.y12b{bottom:296.508000px;}
.yd8{bottom:298.119000px;}
.y1d{bottom:302.319000px;}
.y8e{bottom:302.622000px;}
.y47{bottom:309.792000px;}
.y67{bottom:310.248000px;}
.yfb{bottom:310.486500px;}
.y12a{bottom:310.704000px;}
.yd7{bottom:316.051500px;}
.y1c{bottom:318.757500px;}
.y8d{bottom:320.554500px;}
.yb3{bottom:322.641000px;}
.y46{bottom:327.724500px;}
.yfa{bottom:331.435500px;}
.y129{bottom:331.695000px;}
.yd6{bottom:333.984000px;}
.y1b{bottom:335.196000px;}
.y8c{bottom:338.487000px;}
.yb2{bottom:340.573500px;}
.y66{bottom:341.523000px;}
.yf9{bottom:345.631500px;}
.y45{bottom:345.657000px;}
.y128{bottom:345.892500px;}
.y1a{bottom:351.634500px;}
.yd5{bottom:351.916500px;}
.y8b{bottom:356.421000px;}
.yb1{bottom:358.506000px;}
.y65{bottom:359.455500px;}
.y44{bottom:364.530000px;}
.yf8{bottom:366.579000px;}
.y127{bottom:366.883500px;}
.y19{bottom:368.073000px;}
.yd4{bottom:369.849000px;}
.y8a{bottom:374.448000px;}
.yb0{bottom:376.440000px;}
.y64{bottom:379.585500px;}
.yf7{bottom:380.776500px;}
.y126{bottom:381.081000px;}
.y43{bottom:382.462500px;}
.y18{bottom:384.511500px;}
.yd3{bottom:388.995000px;}
.y89{bottom:392.382000px;}
.yaf{bottom:394.719000px;}
.y125{bottom:395.277000px;}
.y42{bottom:400.395000px;}
.y17{bottom:400.950000px;}
.yf6{bottom:401.724000px;}
.yd2{bottom:406.929000px;}
.y88{bottom:410.314500px;}
.yae{bottom:412.651500px;}
.yf5{bottom:415.921500px;}
.y124{bottom:416.268000px;}
.y16{bottom:417.388500px;}
.y41{bottom:418.327500px;}
.y63{bottom:421.560000px;}
.yd1{bottom:424.861500px;}
.y150{bottom:426.376500px;}
.y87{bottom:428.247000px;}
.yf4{bottom:430.117500px;}
.y123{bottom:430.465500px;}
.yad{bottom:430.584000px;}
.y15{bottom:433.827000px;}
.y40{bottom:436.260000px;}
.y62{bottom:439.492500px;}
.y14f{bottom:440.574000px;}
.yd0{bottom:442.794000px;}
.y122{bottom:444.661500px;}
.y86{bottom:446.179500px;}
.yac{bottom:448.516500px;}
.y14{bottom:450.265500px;}
.yf3{bottom:451.065000px;}
.y3f{bottom:454.194000px;}
.y61{bottom:457.425000px;}
.y14e{bottom:460.747500px;}
.ycf{bottom:461.940000px;}
.y85{bottom:464.112000px;}
.yf2{bottom:465.262500px;}
.y121{bottom:465.654000px;}
.yab{bottom:466.449000px;}
.y13{bottom:466.704000px;}
.y3e{bottom:472.126500px;}
.y14d{bottom:474.945000px;}
.y60{bottom:475.357500px;}
.yf1{bottom:479.458500px;}
.y120{bottom:479.850000px;}
.yce{bottom:479.872500px;}
.y12{bottom:483.141000px;}
.y84{bottom:483.550500px;}
.yaa{bottom:484.381500px;}
.y14c{bottom:489.141000px;}
.y3d{bottom:490.059000px;}
.yf0{bottom:493.656000px;}
.ycd{bottom:497.805000px;}
.y11{bottom:499.579500px;}
.y11f{bottom:500.841000px;}
.ya9{bottom:502.660500px;}
.y5f{bottom:506.632500px;}
.y3c{bottom:507.991500px;}
.y14b{bottom:509.316000px;}
.yef{bottom:514.603500px;}
.y11e{bottom:515.038500px;}
.ycc{bottom:515.737500px;}
.y10{bottom:518.754000px;}
.ya8{bottom:520.594500px;}
.y14a{bottom:523.513500px;}
.y83{bottom:523.531500px;}
.y5e{bottom:524.565000px;}
.y3b{bottom:525.924000px;}
.yee{bottom:528.801000px;}
.y11d{bottom:529.234500px;}
.ycb{bottom:533.671500px;}
.ya7{bottom:538.527000px;}
.y82{bottom:541.464000px;}
.y5d{bottom:542.497500px;}
.yed{bottom:542.997000px;}
.y149{bottom:543.687000px;}
.y3a{bottom:544.797000px;}
.y11c{bottom:550.227000px;}
.yf{bottom:551.169000px;}
.yca{bottom:551.604000px;}
.ya6{bottom:556.459500px;}
.y148{bottom:557.884500px;}
.y81{bottom:559.398000px;}
.y5c{bottom:560.431500px;}
.y39{bottom:562.729500px;}
.yec{bottom:563.946000px;}
.y11b{bottom:564.423000px;}
.yc9{bottom:569.536500px;}
.ye{bottom:571.941000px;}
.y147{bottom:572.080500px;}
.ya5{bottom:576.370500px;}
.y80{bottom:577.330500px;}
.yeb{bottom:578.142000px;}
.y5b{bottom:578.364000px;}
.y11a{bottom:578.620500px;}
.y38{bottom:580.662000px;}
.yc8{bottom:587.469000px;}
.y146{bottom:592.255500px;}
.yea{bottom:592.339500px;}
.y5a{bottom:596.296500px;}
.yd{bottom:597.454500px;}
.y37{bottom:598.594500px;}
.y119{bottom:601.549500px;}
.y7f{bottom:602.067000px;}
.y145{bottom:606.451500px;}
.yc7{bottom:606.615000px;}
.yc{bottom:611.652000px;}
.ye9{bottom:613.890000px;}
.y118{bottom:615.747000px;}
.y36{bottom:616.527000px;}
.ya4{bottom:617.715000px;}
.y144{bottom:620.649000px;}
.yc6{bottom:624.547500px;}
.y59{bottom:627.571500px;}
.yb{bottom:629.101500px;}
.y117{bottom:629.943000px;}
.y35{bottom:634.461000px;}
.ya3{bottom:635.647500px;}
.y143{bottom:640.822500px;}
.yc5{bottom:642.480000px;}
.y58{bottom:645.504000px;}
.y9{bottom:647.034000px;}
.y116{bottom:650.934000px;}
.ya{bottom:652.456500px;}
.y7e{bottom:652.671000px;}
.y34{bottom:653.332500px;}
.ya2{bottom:653.580000px;}
.y142{bottom:655.020000px;}
.yc4{bottom:660.414000px;}
.y57{bottom:663.900000px;}
.y7{bottom:664.966500px;}
.y115{bottom:665.131500px;}
.ye8{bottom:666.076500px;}
.y8{bottom:670.389000px;}
.y7d{bottom:670.605000px;}
.y33{bottom:671.265000px;}
.ya1{bottom:671.512500px;}
.y141{bottom:675.193500px;}
.yc3{bottom:678.346500px;}
.y56{bottom:681.832500px;}
.y114{bottom:686.122500px;}
.y7c{bottom:688.537500px;}
.y32{bottom:689.199000px;}
.y140{bottom:689.391000px;}
.ya0{bottom:689.445000px;}
.ye7{bottom:691.363500px;}
.yc2{bottom:696.279000px;}
.y55{bottom:699.765000px;}
.y113{bottom:700.320000px;}
.y6{bottom:700.398000px;}
.y13f{bottom:703.587000px;}
.y7b{bottom:706.470000px;}
.y31{bottom:707.131500px;}
.y9f{bottom:707.377500px;}
.yc1{bottom:714.211500px;}
.y112{bottom:714.516000px;}
.y54{bottom:717.697500px;}
.y13e{bottom:723.762000px;}
.y7a{bottom:724.402500px;}
.y30{bottom:725.064000px;}
.y9e{bottom:725.656500px;}
.yc0{bottom:732.144000px;}
.y5{bottom:733.275000px;}
.y111{bottom:735.507000px;}
.y53{bottom:735.630000px;}
.y13d{bottom:737.958000px;}
.y79{bottom:742.335000px;}
.y2f{bottom:742.996500px;}
.ye6{bottom:743.550000px;}
.y9d{bottom:743.590500px;}
.y110{bottom:749.704500px;}
.ybf{bottom:750.078000px;}
.y52{bottom:755.760000px;}
.y13c{bottom:758.133000px;}
.y78{bottom:760.363500px;}
.ye5{bottom:761.482500px;}
.y9c{bottom:761.523000px;}
.y2e{bottom:761.869500px;}
.y10f{bottom:763.900500px;}
.y4{bottom:766.152000px;}
.y13b{bottom:772.329000px;}
.ybe{bottom:776.923500px;}
.y77{bottom:778.296000px;}
.ye4{bottom:779.415000px;}
.y9b{bottom:779.455500px;}
.y2d{bottom:779.802000px;}
.y10e{bottom:784.893000px;}
.y13a{bottom:786.526500px;}
.y76{bottom:796.230000px;}
.ye3{bottom:797.347500px;}
.y9a{bottom:797.388000px;}
.y2c{bottom:797.734500px;}
.y3{bottom:799.029000px;}
.y10d{bottom:799.089000px;}
.y139{bottom:806.701500px;}
.y75{bottom:814.162500px;}
.ye2{bottom:815.280000px;}
.y99{bottom:815.320500px;}
.y2b{bottom:815.667000px;}
.y10c{bottom:820.080000px;}
.y138{bottom:820.897500px;}
.y74{bottom:832.095000px;}
.ye1{bottom:833.212500px;}
.y2a{bottom:833.599500px;}
.y10b{bottom:834.277500px;}
.y137{bottom:835.095000px;}
.y2{bottom:846.849000px;}
.y73{bottom:850.027500px;}
.ye0{bottom:851.146500px;}
.y29{bottom:851.532000px;}
.y10a{bottom:855.268500px;}
.y28{bottom:869.466000px;}
.y1{bottom:882.715500px;}
.y27{bottom:905.670000px;}
.h9{height:29.792074px;}
.hd{height:32.632430px;}
.h8{height:33.154679px;}
.h2{height:38.679983px;}
.h6{height:44.205858px;}
.ha{height:47.450189px;}
.he{height:48.119358px;}
.hb{height:49.731733px;}
.h3{height:52.722079px;}
.h5{height:55.257608px;}
.h7{height:65.895858px;}
.hc{height:75.920090px;}
.h4{height:91.103897px;}
.h0{height:969.448500px;}
.h1{height:969.750000px;}
.w0{width:646.299000px;}
.w1{width:646.500000px;}
.x0{left:0.000000px;}
.x1{left:63.780000px;}
.xf{left:72.283500px;}
.x13{left:73.693500px;}
.xe{left:78.723000px;}
.x15{left:80.122500px;}
.x12{left:86.196000px;}
.x17{left:88.626000px;}
.x10{left:94.699500px;}
.x8{left:139.464000px;}
.x9{left:150.501000px;}
.x2{left:169.452000px;}
.x3{left:180.025500px;}
.x4{left:302.929500px;}
.x5{left:313.503000px;}
.xa{left:329.079000px;}
.xb{left:340.116000px;}
.x6{left:478.108500px;}
.x7{left:488.682000px;}
.xc{left:512.437500px;}
.xd{left:523.473000px;}
.x11{left:531.714000px;}
.x16{left:558.430500px;}
.x14{left:563.625000px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002799pt;}
.ls4{letter-spacing:2.422393pt;}
.ls1{letter-spacing:2.657442pt;}
.ls8{letter-spacing:3.040876pt;}
.lsb{letter-spacing:5.720970pt;}
.ls7{letter-spacing:6.081751pt;}
.lsa{letter-spacing:6.494074pt;}
.ls9{letter-spacing:6.648694pt;}
.ls3{letter-spacing:6.700235pt;}
.lsc{letter-spacing:6.906396pt;}
.ls5{letter-spacing:7.112557pt;}
.lsd{letter-spacing:10.668835pt;}
.ls6{letter-spacing:26.568861pt;}
.ws7{word-spacing:-13.812791pt;}
.ws8e{word-spacing:-11.050176pt;}
.ws2e{word-spacing:-3.865520pt;}
.ws36{word-spacing:-3.813980pt;}
.ws53{word-spacing:-3.710899pt;}
.ws29{word-spacing:-3.659359pt;}
.ws5f{word-spacing:-3.607819pt;}
.ws52{word-spacing:-3.504738pt;}
.ws34{word-spacing:-3.401658pt;}
.ws26{word-spacing:-3.247037pt;}
.ws54{word-spacing:-3.092416pt;}
.ws32{word-spacing:-3.040876pt;}
.ws3c{word-spacing:-2.989335pt;}
.ws63{word-spacing:-2.473933pt;}
.wsf{word-spacing:-2.458465pt;}
.ws8a{word-spacing:-2.391456pt;}
.ws95{word-spacing:-2.350224pt;}
.ws65{word-spacing:-2.164691pt;}
.ws25{word-spacing:-2.061611pt;}
.ws91{word-spacing:-2.020368pt;}
.ws59{word-spacing:-2.010070pt;}
.ws89{word-spacing:-1.937904pt;}
.ws85{word-spacing:-1.896672pt;}
.ws7c{word-spacing:-1.731744pt;}
.ws4c{word-spacing:-1.546208pt;}
.ws8c{word-spacing:-1.484352pt;}
.ws7e{word-spacing:-1.278192pt;}
.ws2f{word-spacing:-1.133886pt;}
.ws66{word-spacing:-1.082346pt;}
.ws8f{word-spacing:-1.072032pt;}
.ws4e{word-spacing:-1.030805pt;}
.ws94{word-spacing:-0.989568pt;}
.ws1b{word-spacing:-0.974109pt;}
.ws23{word-spacing:-0.927725pt;}
.ws28{word-spacing:-0.876185pt;}
.ws2b{word-spacing:-0.773104pt;}
.ws61{word-spacing:-0.721564pt;}
.ws58{word-spacing:-0.670023pt;}
.ws69{word-spacing:-0.618483pt;}
.ws14{word-spacing:-0.603020pt;}
.ws24{word-spacing:-0.566943pt;}
.ws3a{word-spacing:-0.412322pt;}
.ws46{word-spacing:-0.360782pt;}
.ws45{word-spacing:-0.309242pt;}
.ws1d{word-spacing:-0.288624pt;}
.ws31{word-spacing:-0.257701pt;}
.ws79{word-spacing:-0.247392pt;}
.ws2c{word-spacing:-0.206161pt;}
.ws7d{word-spacing:-0.206160pt;}
.wsd{word-spacing:-0.185545pt;}
.ws7b{word-spacing:-0.164928pt;}
.ws35{word-spacing:-0.154621pt;}
.ws8d{word-spacing:-0.123696pt;}
.ws20{word-spacing:-0.103081pt;}
.ws18{word-spacing:-0.092772pt;}
.ws74{word-spacing:-0.082464pt;}
.ws21{word-spacing:-0.051540pt;}
.wsb{word-spacing:-0.047821pt;}
.ws10{word-spacing:-0.046386pt;}
.ws71{word-spacing:-0.041232pt;}
.ws1{word-spacing:-0.001373pt;}
.ws38{word-spacing:-0.001196pt;}
.ws9{word-spacing:0.000000pt;}
.ws7f{word-spacing:0.041232pt;}
.ws2a{word-spacing:0.051540pt;}
.ws72{word-spacing:0.082464pt;}
.ws37{word-spacing:0.103081pt;}
.ws73{word-spacing:0.123696pt;}
.wse{word-spacing:0.139158pt;}
.ws6{word-spacing:0.154621pt;}
.ws75{word-spacing:0.164928pt;}
.ws12{word-spacing:0.185545pt;}
.ws77{word-spacing:0.206160pt;}
.ws5{word-spacing:0.206161pt;}
.ws17{word-spacing:0.231931pt;}
.ws1f{word-spacing:0.257701pt;}
.ws16{word-spacing:0.278317pt;}
.ws92{word-spacing:0.288624pt;}
.ws4a{word-spacing:0.309242pt;}
.ws88{word-spacing:0.371088pt;}
.ws81{word-spacing:0.412320pt;}
.ws30{word-spacing:0.412322pt;}
.ws4f{word-spacing:0.463862pt;}
.ws3d{word-spacing:0.566943pt;}
.ws2d{word-spacing:0.618483pt;}
.ws98{word-spacing:0.659712pt;}
.ws48{word-spacing:0.670023pt;}
.ws5e{word-spacing:0.721564pt;}
.ws39{word-spacing:0.773104pt;}
.ws6a{word-spacing:1.030805pt;}
.ws90{word-spacing:1.072032pt;}
.ws55{word-spacing:1.082346pt;}
.ws78{word-spacing:1.278192pt;}
.ws8{word-spacing:1.340047pt;}
.ws6b{word-spacing:1.391587pt;}
.ws6e{word-spacing:1.494668pt;}
.ws27{word-spacing:1.597748pt;}
.ws84{word-spacing:1.608048pt;}
.ws2{word-spacing:1.623504pt;}
.ws86{word-spacing:1.690512pt;}
.ws22{word-spacing:1.906990pt;}
.ws3b{word-spacing:2.061611pt;}
.ws5c{word-spacing:2.113151pt;}
.ws8b{word-spacing:2.144064pt;}
.ws51{word-spacing:2.216231pt;}
.ws1a{word-spacing:2.272921pt;}
.ws83{word-spacing:2.473920pt;}
.ws62{word-spacing:2.525473pt;}
.ws76{word-spacing:2.556384pt;}
.ws80{word-spacing:2.638848pt;}
.ws67{word-spacing:2.731634pt;}
.ws4d{word-spacing:2.834715pt;}
.ws33{word-spacing:2.989335pt;}
.ws41{word-spacing:3.092416pt;}
.ws49{word-spacing:3.143956pt;}
.ws5a{word-spacing:3.247037pt;}
.ws5d{word-spacing:3.298577pt;}
.ws64{word-spacing:3.350117pt;}
.ws97{word-spacing:3.463488pt;}
.ws6c{word-spacing:3.556278pt;}
.ws6d{word-spacing:3.607819pt;}
.ws7a{word-spacing:3.793344pt;}
.ws50{word-spacing:3.865520pt;}
.ws11{word-spacing:4.081980pt;}
.ws87{word-spacing:4.123200pt;}
.ws56{word-spacing:4.380923pt;}
.ws60{word-spacing:4.690164pt;}
.ws68{word-spacing:5.205567pt;}
.ws96{word-spacing:5.360160pt;}
.ws93{word-spacing:5.401392pt;}
.ws57{word-spacing:5.772510pt;}
.ws6f{word-spacing:6.287913pt;}
.wsa{word-spacing:7.401526pt;}
.ws0{word-spacing:10.065725pt;}
.ws3{word-spacing:10.573639pt;}
.ws1c{word-spacing:10.720320pt;}
.ws82{word-spacing:10.802784pt;}
.ws99{word-spacing:12.864384pt;}
.ws44{word-spacing:13.452010pt;}
.ws47{word-spacing:13.555090pt;}
.ws42{word-spacing:13.709711pt;}
.ws43{word-spacing:13.754665pt;}
.ws3f{word-spacing:13.864332pt;}
.ws40{word-spacing:13.967412pt;}
.ws4b{word-spacing:14.059282pt;}
.wsc{word-spacing:14.317911pt;}
.ws15{word-spacing:14.325060pt;}
.ws3e{word-spacing:14.482815pt;}
.ws13{word-spacing:14.709146pt;}
.ws70{word-spacing:15.226100pt;}
.ws5b{word-spacing:17.781392pt;}
.ws4{word-spacing:18.271278pt;}
.ws19{word-spacing:19.221642pt;}
.ws1e{word-spacing:76.436554pt;}
._12{margin-left:-9.181568pt;}
._5{margin-left:-6.726045pt;}
._1{margin-left:-4.509733pt;}
._9{margin-left:-3.324359pt;}
._3{margin-left:-2.390387pt;}
._0{margin-left:-1.010180pt;}
._6{width:1.010180pt;}
._d{width:1.906990pt;}
._2{width:9.019507pt;}
._19{width:10.080151pt;}
._f{width:11.110982pt;}
._18{width:12.534497pt;}
._8{width:13.619563pt;}
._7{width:14.518860pt;}
._b{width:16.058848pt;}
._c{width:16.955658pt;}
._e{width:18.162754pt;}
._14{width:19.358515pt;}
._4{width:21.488214pt;}
._11{width:23.439441pt;}
._a{width:24.771633pt;}
._15{width:26.099955pt;}
._13{width:27.914199pt;}
._16{width:31.728179pt;}
._17{width:35.037046pt;}
._1a{width:38.015897pt;}
._10{width:53.133867pt;}
.fs5{font-size:30.924267pt;}
.fs0{font-size:36.077867pt;}
.fs6{font-size:37.193600pt;}
.fs4{font-size:41.232000pt;}
.fs8{font-size:46.386133pt;}
.fs7{font-size:47.820800pt;}
.fs3{font-size:51.540267pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:16.842667pt;}
.y26{bottom:56.693333pt;}
.y109{bottom:69.312000pt;}
.y25{bottom:72.633333pt;}
.y108{bottom:81.932000pt;}
.y98{bottom:88.573333pt;}
.y50{bottom:91.326667pt;}
.y24{bottom:94.461333pt;}
.y107{bottom:94.550667pt;}
.y72{bottom:100.433333pt;}
.y136{bottom:100.590667pt;}
.ybd{bottom:104.513333pt;}
.y97{bottom:105.852000pt;}
.y106{bottom:113.170667pt;}
.y135{bottom:113.209333pt;}
.y4f{bottom:114.730667pt;}
.y71{bottom:116.373333pt;}
.ybc{bottom:120.453333pt;}
.y105{bottom:125.790667pt;}
.y134{bottom:131.869333pt;}
.y70{bottom:132.313333pt;}
.ybb{bottom:136.394667pt;}
.y104{bottom:138.410667pt;}
.y96{bottom:141.390667pt;}
.y133{bottom:144.488000pt;}
.y6f{bottom:148.253333pt;}
.ydf{bottom:152.334667pt;}
.yba{bottom:152.642667pt;}
.y103{bottom:157.030667pt;}
.y132{bottom:157.108000pt;}
.y95{bottom:157.330667pt;}
.y4e{bottom:163.789333pt;}
.y6e{bottom:164.194667pt;}
.y23{bottom:164.985333pt;}
.yde{bottom:168.274667pt;}
.yb9{bottom:168.582667pt;}
.y102{bottom:169.649333pt;}
.y94{bottom:173.270667pt;}
.y131{bottom:175.766667pt;}
.y22{bottom:177.604000pt;}
.y4d{bottom:179.729333pt;}
.y6d{bottom:180.134667pt;}
.y101{bottom:182.269333pt;}
.yb8{bottom:184.522667pt;}
.ydd{bottom:185.293333pt;}
.y130{bottom:188.385333pt;}
.y93{bottom:189.210667pt;}
.y4c{bottom:195.669333pt;}
.y6c{bottom:196.074667pt;}
.yb7{bottom:200.462667pt;}
.y100{bottom:200.889333pt;}
.y12f{bottom:201.005333pt;}
.ydc{bottom:201.233333pt;}
.y92{bottom:205.152000pt;}
.y21{bottom:210.281333pt;}
.y4b{bottom:211.609333pt;}
.y6b{bottom:212.014667pt;}
.yff{bottom:213.509333pt;}
.yb6{bottom:216.402667pt;}
.ydb{bottom:217.173333pt;}
.y12e{bottom:219.664000pt;}
.y91{bottom:221.092000pt;}
.y20{bottom:224.893333pt;}
.y4a{bottom:227.549333pt;}
.y6a{bottom:227.954667pt;}
.yfe{bottom:232.129333pt;}
.y12d{bottom:232.284000pt;}
.yb5{bottom:232.342667pt;}
.yda{bottom:233.113333pt;}
.y90{bottom:237.117333pt;}
.y1f{bottom:239.505333pt;}
.y49{bottom:243.489333pt;}
.y69{bottom:243.894667pt;}
.yfd{bottom:244.748000pt;}
.yd9{bottom:249.054667pt;}
.yb4{bottom:250.041333pt;}
.y12c{bottom:250.942667pt;}
.y8f{bottom:253.057333pt;}
.y1e{bottom:254.117333pt;}
.y48{bottom:259.430667pt;}
.y68{bottom:259.836000pt;}
.yfc{bottom:263.369333pt;}
.y12b{bottom:263.562667pt;}
.yd8{bottom:264.994667pt;}
.y1d{bottom:268.728000pt;}
.y8e{bottom:268.997333pt;}
.y47{bottom:275.370667pt;}
.y67{bottom:275.776000pt;}
.yfb{bottom:275.988000pt;}
.y12a{bottom:276.181333pt;}
.yd7{bottom:280.934667pt;}
.y1c{bottom:283.340000pt;}
.y8d{bottom:284.937333pt;}
.yb3{bottom:286.792000pt;}
.y46{bottom:291.310667pt;}
.yfa{bottom:294.609333pt;}
.y129{bottom:294.840000pt;}
.yd6{bottom:296.874667pt;}
.y1b{bottom:297.952000pt;}
.y8c{bottom:300.877333pt;}
.yb2{bottom:302.732000pt;}
.y66{bottom:303.576000pt;}
.yf9{bottom:307.228000pt;}
.y45{bottom:307.250667pt;}
.y128{bottom:307.460000pt;}
.y1a{bottom:312.564000pt;}
.yd5{bottom:312.814667pt;}
.y8b{bottom:316.818667pt;}
.yb1{bottom:318.672000pt;}
.y65{bottom:319.516000pt;}
.y44{bottom:324.026667pt;}
.yf8{bottom:325.848000pt;}
.y127{bottom:326.118667pt;}
.y19{bottom:327.176000pt;}
.yd4{bottom:328.754667pt;}
.y8a{bottom:332.842667pt;}
.yb0{bottom:334.613333pt;}
.y64{bottom:337.409333pt;}
.yf7{bottom:338.468000pt;}
.y126{bottom:338.738667pt;}
.y43{bottom:339.966667pt;}
.y18{bottom:341.788000pt;}
.yd3{bottom:345.773333pt;}
.y89{bottom:348.784000pt;}
.yaf{bottom:350.861333pt;}
.y125{bottom:351.357333pt;}
.y42{bottom:355.906667pt;}
.y17{bottom:356.400000pt;}
.yf6{bottom:357.088000pt;}
.yd2{bottom:361.714667pt;}
.y88{bottom:364.724000pt;}
.yae{bottom:366.801333pt;}
.yf5{bottom:369.708000pt;}
.y124{bottom:370.016000pt;}
.y16{bottom:371.012000pt;}
.y41{bottom:371.846667pt;}
.y63{bottom:374.720000pt;}
.yd1{bottom:377.654667pt;}
.y150{bottom:379.001333pt;}
.y87{bottom:380.664000pt;}
.yf4{bottom:382.326667pt;}
.y123{bottom:382.636000pt;}
.yad{bottom:382.741333pt;}
.y15{bottom:385.624000pt;}
.y40{bottom:387.786667pt;}
.y62{bottom:390.660000pt;}
.y14f{bottom:391.621333pt;}
.yd0{bottom:393.594667pt;}
.y122{bottom:395.254667pt;}
.y86{bottom:396.604000pt;}
.yac{bottom:398.681333pt;}
.y14{bottom:400.236000pt;}
.yf3{bottom:400.946667pt;}
.y3f{bottom:403.728000pt;}
.y61{bottom:406.600000pt;}
.y14e{bottom:409.553333pt;}
.ycf{bottom:410.613333pt;}
.y85{bottom:412.544000pt;}
.yf2{bottom:413.566667pt;}
.y121{bottom:413.914667pt;}
.yab{bottom:414.621333pt;}
.y13{bottom:414.848000pt;}
.y3e{bottom:419.668000pt;}
.y14d{bottom:422.173333pt;}
.y60{bottom:422.540000pt;}
.yf1{bottom:426.185333pt;}
.y120{bottom:426.533333pt;}
.yce{bottom:426.553333pt;}
.y12{bottom:429.458667pt;}
.y84{bottom:429.822667pt;}
.yaa{bottom:430.561333pt;}
.y14c{bottom:434.792000pt;}
.y3d{bottom:435.608000pt;}
.yf0{bottom:438.805333pt;}
.ycd{bottom:442.493333pt;}
.y11{bottom:444.070667pt;}
.y11f{bottom:445.192000pt;}
.ya9{bottom:446.809333pt;}
.y5f{bottom:450.340000pt;}
.y3c{bottom:451.548000pt;}
.y14b{bottom:452.725333pt;}
.yef{bottom:457.425333pt;}
.y11e{bottom:457.812000pt;}
.ycc{bottom:458.433333pt;}
.y10{bottom:461.114667pt;}
.ya8{bottom:462.750667pt;}
.y14a{bottom:465.345333pt;}
.y83{bottom:465.361333pt;}
.y5e{bottom:466.280000pt;}
.y3b{bottom:467.488000pt;}
.yee{bottom:470.045333pt;}
.y11d{bottom:470.430667pt;}
.ycb{bottom:474.374667pt;}
.ya7{bottom:478.690667pt;}
.y82{bottom:481.301333pt;}
.y5d{bottom:482.220000pt;}
.yed{bottom:482.664000pt;}
.y149{bottom:483.277333pt;}
.y3a{bottom:484.264000pt;}
.y11c{bottom:489.090667pt;}
.yf{bottom:489.928000pt;}
.yca{bottom:490.314667pt;}
.ya6{bottom:494.630667pt;}
.y148{bottom:495.897333pt;}
.y81{bottom:497.242667pt;}
.y5c{bottom:498.161333pt;}
.y39{bottom:500.204000pt;}
.yec{bottom:501.285333pt;}
.y11b{bottom:501.709333pt;}
.yc9{bottom:506.254667pt;}
.ye{bottom:508.392000pt;}
.y147{bottom:508.516000pt;}
.ya5{bottom:512.329333pt;}
.y80{bottom:513.182667pt;}
.yeb{bottom:513.904000pt;}
.y5b{bottom:514.101333pt;}
.y11a{bottom:514.329333pt;}
.y38{bottom:516.144000pt;}
.yc8{bottom:522.194667pt;}
.y146{bottom:526.449333pt;}
.yea{bottom:526.524000pt;}
.y5a{bottom:530.041333pt;}
.yd{bottom:531.070667pt;}
.y37{bottom:532.084000pt;}
.y119{bottom:534.710667pt;}
.y7f{bottom:535.170667pt;}
.y145{bottom:539.068000pt;}
.yc7{bottom:539.213333pt;}
.yc{bottom:543.690667pt;}
.ye9{bottom:545.680000pt;}
.y118{bottom:547.330667pt;}
.y36{bottom:548.024000pt;}
.ya4{bottom:549.080000pt;}
.y144{bottom:551.688000pt;}
.yc6{bottom:555.153333pt;}
.y59{bottom:557.841333pt;}
.yb{bottom:559.201333pt;}
.y117{bottom:559.949333pt;}
.y35{bottom:563.965333pt;}
.ya3{bottom:565.020000pt;}
.y143{bottom:569.620000pt;}
.yc5{bottom:571.093333pt;}
.y58{bottom:573.781333pt;}
.y9{bottom:575.141333pt;}
.y116{bottom:578.608000pt;}
.ya{bottom:579.961333pt;}
.y7e{bottom:580.152000pt;}
.y34{bottom:580.740000pt;}
.ya2{bottom:580.960000pt;}
.y142{bottom:582.240000pt;}
.yc4{bottom:587.034667pt;}
.y57{bottom:590.133333pt;}
.y7{bottom:591.081333pt;}
.y115{bottom:591.228000pt;}
.ye8{bottom:592.068000pt;}
.y8{bottom:595.901333pt;}
.y7d{bottom:596.093333pt;}
.y33{bottom:596.680000pt;}
.ya1{bottom:596.900000pt;}
.y141{bottom:600.172000pt;}
.yc3{bottom:602.974667pt;}
.y56{bottom:606.073333pt;}
.y114{bottom:609.886667pt;}
.y7c{bottom:612.033333pt;}
.y32{bottom:612.621333pt;}
.y140{bottom:612.792000pt;}
.ya0{bottom:612.840000pt;}
.ye7{bottom:614.545333pt;}
.yc2{bottom:618.914667pt;}
.y55{bottom:622.013333pt;}
.y113{bottom:622.506667pt;}
.y6{bottom:622.576000pt;}
.y13f{bottom:625.410667pt;}
.y7b{bottom:627.973333pt;}
.y31{bottom:628.561333pt;}
.y9f{bottom:628.780000pt;}
.yc1{bottom:634.854667pt;}
.y112{bottom:635.125333pt;}
.y54{bottom:637.953333pt;}
.y13e{bottom:643.344000pt;}
.y7a{bottom:643.913333pt;}
.y30{bottom:644.501333pt;}
.y9e{bottom:645.028000pt;}
.yc0{bottom:650.794667pt;}
.y5{bottom:651.800000pt;}
.y111{bottom:653.784000pt;}
.y53{bottom:653.893333pt;}
.y13d{bottom:655.962667pt;}
.y79{bottom:659.853333pt;}
.y2f{bottom:660.441333pt;}
.ye6{bottom:660.933333pt;}
.y9d{bottom:660.969333pt;}
.y110{bottom:666.404000pt;}
.ybf{bottom:666.736000pt;}
.y52{bottom:671.786667pt;}
.y13c{bottom:673.896000pt;}
.y78{bottom:675.878667pt;}
.ye5{bottom:676.873333pt;}
.y9c{bottom:676.909333pt;}
.y2e{bottom:677.217333pt;}
.y10f{bottom:679.022667pt;}
.y4{bottom:681.024000pt;}
.y13b{bottom:686.514667pt;}
.ybe{bottom:690.598667pt;}
.y77{bottom:691.818667pt;}
.ye4{bottom:692.813333pt;}
.y9b{bottom:692.849333pt;}
.y2d{bottom:693.157333pt;}
.y10e{bottom:697.682667pt;}
.y13a{bottom:699.134667pt;}
.y76{bottom:707.760000pt;}
.ye3{bottom:708.753333pt;}
.y9a{bottom:708.789333pt;}
.y2c{bottom:709.097333pt;}
.y3{bottom:710.248000pt;}
.y10d{bottom:710.301333pt;}
.y139{bottom:717.068000pt;}
.y75{bottom:723.700000pt;}
.ye2{bottom:724.693333pt;}
.y99{bottom:724.729333pt;}
.y2b{bottom:725.037333pt;}
.y10c{bottom:728.960000pt;}
.y138{bottom:729.686667pt;}
.y74{bottom:739.640000pt;}
.ye1{bottom:740.633333pt;}
.y2a{bottom:740.977333pt;}
.y10b{bottom:741.580000pt;}
.y137{bottom:742.306667pt;}
.y2{bottom:752.754667pt;}
.y73{bottom:755.580000pt;}
.ye0{bottom:756.574667pt;}
.y29{bottom:756.917333pt;}
.y10a{bottom:760.238667pt;}
.y28{bottom:772.858667pt;}
.y1{bottom:784.636000pt;}
.y27{bottom:805.040000pt;}
.h9{height:26.481843pt;}
.hd{height:29.006605pt;}
.h8{height:29.470826pt;}
.h2{height:34.382207pt;}
.h6{height:39.294096pt;}
.ha{height:42.177946pt;}
.he{height:42.772763pt;}
.hb{height:44.205985pt;}
.h3{height:46.864070pt;}
.h5{height:49.117874pt;}
.h7{height:58.574096pt;}
.hc{height:67.484525pt;}
.h4{height:80.981242pt;}
.h0{height:861.732000pt;}
.h1{height:862.000000pt;}
.w0{width:574.488000pt;}
.w1{width:574.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.693333pt;}
.xf{left:64.252000pt;}
.x13{left:65.505333pt;}
.xe{left:69.976000pt;}
.x15{left:71.220000pt;}
.x12{left:76.618667pt;}
.x17{left:78.778667pt;}
.x10{left:84.177333pt;}
.x8{left:123.968000pt;}
.x9{left:133.778667pt;}
.x2{left:150.624000pt;}
.x3{left:160.022667pt;}
.x4{left:269.270667pt;}
.x5{left:278.669333pt;}
.xa{left:292.514667pt;}
.xb{left:302.325333pt;}
.x6{left:424.985333pt;}
.x7{left:434.384000pt;}
.xc{left:455.500000pt;}
.xd{left:465.309333pt;}
.x11{left:472.634667pt;}
.x16{left:496.382667pt;}
.x14{left:501.000000pt;}
}




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