
    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_71fba572748715529d707ee0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_53fd20bc50fc52c891008256.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112000;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_b76d3a563c863eae207f6282.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_2e489383e4bd7e87d6f5fe91.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.902000;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_865c9fb1438b267450c90847.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_49e6734d0de1014e6ea708d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.894000;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_4c14285ac520b6b9f2271789.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.114000;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_62007ec534e4f823cb5f2797.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.705000;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_1b5b33bbb95ded75c83c9f54.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c6c19933bdf9ccbe02ad4e66.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.427000;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_d9c9377f3f848157dc835c6e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.698000;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_5cfa8e2da5629da777a53270.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.727000;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_5a77eadb5d0cef44d32b5462.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2ef5800a3e0d58aef9dc5a52.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a01af6ddba6c32f7d1b145e1.woff2')format("woff");}.fff{font-family:fff;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;}
.m2{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);}
.m8{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);}
.m20{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);}
.m1a{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);}
.me{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);}
.m4{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);}
.m6{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);}
.m1e{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);}
.ma{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);}
.m11{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);}
.md{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);}
.m17{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);}
.m15{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);}
.m23{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);}
.mb{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);}
.m18{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);}
.m14{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);}
.m5{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);}
.mf{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);}
.m1c{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);}
.m10{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);}
.m22{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);}
.m1b{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);}
.m21{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);}
.m1f{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);}
.m12{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);}
.m7{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);}
.m19{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);}
.m16{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);}
.m1d{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);}
.m13{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);}
.mc{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);}
.m1{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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:21.338200px;}
.ls2{letter-spacing:21.730927px;}
.ls3{letter-spacing:22.843655px;}
.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;}
}
.ws35{word-spacing:-54.274954px;}
.ws40{word-spacing:-40.341627px;}
.ws6{word-spacing:-35.112422px;}
.ws4e{word-spacing:-32.544027px;}
.ws85{word-spacing:-19.467848px;}
.ws41{word-spacing:-17.620378px;}
.ws96{word-spacing:-17.489469px;}
.ws6a{word-spacing:-17.424015px;}
.ws71{word-spacing:-17.096742px;}
.ws5e{word-spacing:-16.834923px;}
.ws5d{word-spacing:-16.573105px;}
.ws8b{word-spacing:-16.245832px;}
.ws8a{word-spacing:-16.180377px;}
.ws33{word-spacing:-16.114923px;}
.ws69{word-spacing:-15.918559px;}
.ws13{word-spacing:-15.834556px;}
.ws61{word-spacing:-15.787650px;}
.ws88{word-spacing:-15.329467px;}
.ws67{word-spacing:-15.198558px;}
.ws32{word-spacing:-15.067649px;}
.ws42{word-spacing:-14.936740px;}
.ws8e{word-spacing:-14.805831px;}
.ws66{word-spacing:-14.674921px;}
.ws7d{word-spacing:-14.413103px;}
.ws70{word-spacing:-14.374932px;}
.ws2e{word-spacing:-14.347648px;}
.ws80{word-spacing:-14.282194px;}
.wsa2{word-spacing:-14.151285px;}
.ws86{word-spacing:-13.889466px;}
.ws68{word-spacing:-13.872814px;}
.ws53{word-spacing:-13.693102px;}
.ws5{word-spacing:-13.442427px;}
.ws7b{word-spacing:-13.365829px;}
.wsf{word-spacing:-13.264206px;}
.ws28{word-spacing:-13.227233px;}
.ws14{word-spacing:-13.204430px;}
.ws3a{word-spacing:-13.155502px;}
.ws60{word-spacing:-13.104011px;}
.ws4f{word-spacing:-12.940308px;}
.ws5f{word-spacing:-12.907647px;}
.ws6f{word-spacing:-12.776738px;}
.ws23{word-spacing:-12.711283px;}
.wsc{word-spacing:-12.588826px;}
.ws47{word-spacing:-12.514920px;}
.ws12{word-spacing:-12.487123px;}
.ws65{word-spacing:-12.318556px;}
.ws97{word-spacing:-11.991283px;}
.ws15{word-spacing:-11.769816px;}
.ws1{word-spacing:-11.728051px;}
.ws56{word-spacing:-11.533101px;}
.ws82{word-spacing:-11.467646px;}
.ws25{word-spacing:-11.336737px;}
.ws4a{word-spacing:-11.271282px;}
.ws1f{word-spacing:-11.205828px;}
.ws3e{word-spacing:-11.140373px;}
.ws3d{word-spacing:-11.074918px;}
.ws2f{word-spacing:-11.009464px;}
.ws1e{word-spacing:-10.944009px;}
.wsb{word-spacing:-10.878555px;}
.ws9{word-spacing:-10.813100px;}
.ws29{word-spacing:-10.747645px;}
.ws4c{word-spacing:-10.682191px;}
.ws2b{word-spacing:-10.616736px;}
.ws27{word-spacing:-10.551282px;}
.ws22{word-spacing:-10.485827px;}
.ws55{word-spacing:-10.420372px;}
.ws5c{word-spacing:-10.354918px;}
.ws50{word-spacing:-10.289463px;}
.ws19{word-spacing:-10.275426px;}
.ws84{word-spacing:-10.224009px;}
.ws72{word-spacing:-10.158554px;}
.ws18{word-spacing:-10.036323px;}
.ws10{word-spacing:-9.976548px;}
.ws8d{word-spacing:-9.962190px;}
.ws95{word-spacing:-9.765826px;}
.wse{word-spacing:-9.677670px;}
.ws21{word-spacing:-9.634917px;}
.ws17{word-spacing:-9.617894px;}
.ws75{word-spacing:-9.569463px;}
.ws7{word-spacing:-9.138555px;}
.ws74{word-spacing:-8.980371px;}
.ws39{word-spacing:-8.653098px;}
.ws93{word-spacing:-8.587644px;}
.ws51{word-spacing:-8.456734px;}
.ws54{word-spacing:-8.391280px;}
.ws64{word-spacing:-8.325825px;}
.ws49{word-spacing:-8.260371px;}
.ws46{word-spacing:-8.194916px;}
.ws91{word-spacing:-7.933098px;}
.ws57{word-spacing:-7.867643px;}
.ws92{word-spacing:-7.802188px;}
.ws1b{word-spacing:-7.764850px;}
.ws24{word-spacing:-7.605825px;}
.ws44{word-spacing:-7.540370px;}
.ws52{word-spacing:-7.409461px;}
.ws78{word-spacing:-7.213097px;}
.ws4d{word-spacing:-7.016733px;}
.ws73{word-spacing:-6.951279px;}
.ws30{word-spacing:-6.885824px;}
.ws48{word-spacing:-6.689460px;}
.ws2d{word-spacing:-6.558551px;}
.ws26{word-spacing:-6.427642px;}
.ws77{word-spacing:-5.969460px;}
.ws2c{word-spacing:-5.904005px;}
.ws43{word-spacing:-5.838550px;}
.wsa3{word-spacing:-5.707641px;}
.ws89{word-spacing:-5.511277px;}
.ws90{word-spacing:-5.314914px;}
.ws9c{word-spacing:-5.184004px;}
.ws79{word-spacing:-4.987641px;}
.ws4b{word-spacing:-4.922186px;}
.ws7c{word-spacing:-4.856731px;}
.ws59{word-spacing:-4.660368px;}
.ws6b{word-spacing:-4.529458px;}
.ws7e{word-spacing:-4.464004px;}
.ws16{word-spacing:-4.417417px;}
.ws45{word-spacing:-4.398549px;}
.ws94{word-spacing:-4.333095px;}
.ws1d{word-spacing:-4.136731px;}
.ws98{word-spacing:-4.071276px;}
.ws11{word-spacing:-3.700110px;}
.ws7a{word-spacing:-3.613094px;}
.ws38{word-spacing:-3.547639px;}
.ws99{word-spacing:-3.482185px;}
.ws3b{word-spacing:-3.154912px;}
.ws31{word-spacing:-2.631275px;}
.ws6e{word-spacing:-2.173093px;}
.ws8f{word-spacing:-2.107638px;}
.ws58{word-spacing:-2.037166px;}
.ws2a{word-spacing:-1.649456px;}
.ws1a{word-spacing:-1.548188px;}
.ws5b{word-spacing:-1.453092px;}
.ws37{word-spacing:-1.322183px;}
.ws83{word-spacing:-1.191274px;}
.ws87{word-spacing:-0.929455px;}
.ws63{word-spacing:-0.798546px;}
.ws3f{word-spacing:-0.746004px;}
.ws20{word-spacing:-0.667637px;}
.ws34{word-spacing:-0.065455px;}
.wsd{word-spacing:0.000000px;}
.ws7f{word-spacing:1.819638px;}
.ws5a{word-spacing:2.212365px;}
.ws81{word-spacing:5.279416px;}
.ws3c{word-spacing:5.812368px;}
.wsa{word-spacing:17.856015px;}
.ws8c{word-spacing:18.130924px;}
.wsa1{word-spacing:20.160017px;}
.ws9b{word-spacing:20.290926px;}
.ws6d{word-spacing:20.539653px;}
.ws9a{word-spacing:21.338200px;}
.ws9d{word-spacing:22.909110px;}
.ws36{word-spacing:23.170928px;}
.ws9f{word-spacing:23.301838px;}
.wsa4{word-spacing:23.367292px;}
.wsa0{word-spacing:23.563656px;}
.ws62{word-spacing:26.655314px;}
.ws0{word-spacing:27.200395px;}
.ws4{word-spacing:31.418178px;}
.ws3{word-spacing:31.504255px;}
.ws9e{word-spacing:32.334572px;}
.ws6c{word-spacing:33.774574px;}
.ws1c{word-spacing:42.545490px;}
.ws2{word-spacing:51.755465px;}
.wsa5{word-spacing:60.087323px;}
.ws76{word-spacing:94.598843px;}
.ws8{word-spacing:1504.997618px;}
._1b{margin-left:-21.980195px;}
._3{margin-left:-8.435566px;}
._0{margin-left:-6.800099px;}
._9{margin-left:-5.367277px;}
._5{margin-left:-3.730912px;}
._2{margin-left:-2.238007px;}
._11{margin-left:-1.049651px;}
._12{width:1.169202px;}
._1{width:2.238007px;}
._7{width:3.600003px;}
._28{width:9.110740px;}
._10{width:15.648680px;}
._25{width:18.000015px;}
._26{width:19.047289px;}
._24{width:20.238022px;}
._16{width:22.345120px;}
._f{width:23.970016px;}
._1c{width:25.016208px;}
._e{width:26.719693px;}
._18{width:28.812575px;}
._1e{width:29.987188px;}
._4{width:31.217412px;}
._13{width:32.940647px;}
._17{width:34.045373px;}
._23{width:35.869121px;}
._20{width:37.412229px;}
._1a{width:38.654674px;}
._22{width:39.665488px;}
._1d{width:43.143562px;}
._19{width:44.324122px;}
._27{width:45.556402px;}
._1f{width:47.585494px;}
._8{width:58.201690px;}
._21{width:68.727330px;}
._15{width:80.697600px;}
._14{width:94.684920px;}
._a{width:248.858389px;}
._6{width:737.346069px;}
._c{width:744.558626px;}
._d{width:896.662565px;}
._b{width:1036.433238px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs2{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y24{bottom:63.168000px;}
.y11{bottom:108.000000px;}
.y49{bottom:129.340500px;}
.y48{bottom:150.679500px;}
.y47{bottom:172.020000px;}
.y46{bottom:193.360500px;}
.y45{bottom:214.699500px;}
.ybb{bottom:232.587000px;}
.y44{bottom:236.040000px;}
.yba{bottom:254.554500px;}
.y43{bottom:257.380500px;}
.yfa{bottom:267.484500px;}
.y42{bottom:278.721000px;}
.yf9{bottom:288.823500px;}
.yd9{bottom:297.748500px;}
.yb9{bottom:300.045000px;}
.y41{bottom:300.060000px;}
.yf8{bottom:310.164000px;}
.y11b{bottom:317.485500px;}
.y66{bottom:321.400500px;}
.yf7{bottom:331.504500px;}
.y11a{bottom:338.826000px;}
.y65{bottom:342.741000px;}
.yd8{bottom:344.380500px;}
.y40{bottom:344.955000px;}
.yf6{bottom:352.843500px;}
.yb8{bottom:359.743500px;}
.y119{bottom:360.166500px;}
.y64{bottom:364.080000px;}
.y80{bottom:367.246500px;}
.y9a{bottom:368.493000px;}
.yf5{bottom:374.184000px;}
.yb7{bottom:381.082500px;}
.y118{bottom:381.505500px;}
.y63{bottom:385.420500px;}
.y7f{bottom:389.214000px;}
.y99{bottom:390.460500px;}
.yf4{bottom:395.524500px;}
.yb6{bottom:402.423000px;}
.y117{bottom:410.167500px;}
.yd7{bottom:410.307000px;}
.yf3{bottom:416.863500px;}
.yb5{bottom:423.763500px;}
.y3f{bottom:425.478000px;}
.y62{bottom:428.172000px;}
.y116{bottom:431.508000px;}
.yd6{bottom:431.646000px;}
.yf2{bottom:438.204000px;}
.y7e{bottom:441.321000px;}
.yb4{bottom:445.102500px;}
.y3e{bottom:446.817000px;}
.y115{bottom:452.848500px;}
.yd5{bottom:452.986500px;}
.yf1{bottom:459.544500px;}
.yb3{bottom:466.443000px;}
.y3d{bottom:468.157500px;}
.y10{bottom:472.860000px;}
.yd4{bottom:474.327000px;}
.y61{bottom:477.187500px;}
.yf0{bottom:480.885000px;}
.y114{bottom:481.509000px;}
.y98{bottom:481.968000px;}
.yb2{bottom:487.783500px;}
.y3c{bottom:489.498000px;}
.yd3{bottom:495.666000px;}
.yef{bottom:502.224000px;}
.y113{bottom:502.849500px;}
.y97{bottom:503.308500px;}
.yb1{bottom:509.122500px;}
.y3b{bottom:510.837000px;}
.yd2{bottom:517.006500px;}
.y96{bottom:524.647500px;}
.yb0{bottom:530.463000px;}
.yee{bottom:530.886000px;}
.y112{bottom:531.511500px;}
.y3a{bottom:532.177500px;}
.y7d{bottom:534.631500px;}
.yd1{bottom:538.347000px;}
.y95{bottom:545.988000px;}
.yf{bottom:550.063500px;}
.yaf{bottom:551.803500px;}
.yed{bottom:552.226500px;}
.y111{bottom:552.852000px;}
.y39{bottom:553.518000px;}
.y60{bottom:555.030000px;}
.y7c{bottom:555.972000px;}
.yd0{bottom:559.686000px;}
.y94{bottom:567.328500px;}
.ye{bottom:571.402500px;}
.yec{bottom:573.567000px;}
.y110{bottom:574.191000px;}
.y38{bottom:574.857000px;}
.y5f{bottom:576.370500px;}
.y7b{bottom:577.312500px;}
.ycf{bottom:581.026500px;}
.y93{bottom:588.667500px;}
.yae{bottom:591.030000px;}
.yd{bottom:592.743000px;}
.yeb{bottom:594.906000px;}
.y10f{bottom:595.531500px;}
.y37{bottom:596.197500px;}
.y5e{bottom:597.711000px;}
.y7a{bottom:598.651500px;}
.yce{bottom:602.367000px;}
.y92{bottom:610.008000px;}
.yc{bottom:614.083500px;}
.yea{bottom:616.246500px;}
.y10e{bottom:616.872000px;}
.y36{bottom:617.538000px;}
.y5d{bottom:619.050000px;}
.y79{bottom:619.992000px;}
.ycd{bottom:623.707500px;}
.y91{bottom:631.348500px;}
.yb{bottom:635.422500px;}
.ye9{bottom:637.587000px;}
.y10d{bottom:638.212500px;}
.y35{bottom:638.878500px;}
.y5c{bottom:640.390500px;}
.y78{bottom:641.332500px;}
.yad{bottom:642.690000px;}
.y90{bottom:652.687500px;}
.ya{bottom:656.763000px;}
.ye8{bottom:658.926000px;}
.y10c{bottom:659.551500px;}
.y34{bottom:660.217500px;}
.y5b{bottom:661.731000px;}
.y77{bottom:662.671500px;}
.yac{bottom:664.030500px;}
.ycc{bottom:664.075500px;}
.y8f{bottom:674.028000px;}
.ye7{bottom:680.266500px;}
.y33{bottom:681.558000px;}
.y5a{bottom:683.070000px;}
.y76{bottom:684.012000px;}
.yab{bottom:685.371000px;}
.ycb{bottom:686.043000px;}
.y9{bottom:686.313000px;}
.y10b{bottom:688.213500px;}
.y8e{bottom:695.368500px;}
.ye6{bottom:701.607000px;}
.y59{bottom:704.410500px;}
.y75{bottom:705.352500px;}
.yaa{bottom:706.711500px;}
.y10a{bottom:709.554000px;}
.y8d{bottom:716.709000px;}
.y58{bottom:725.751000px;}
.y32{bottom:726.453000px;}
.y74{bottom:726.691500px;}
.ya9{bottom:728.050500px;}
.y109{bottom:730.894500px;}
.y8{bottom:732.954000px;}
.y8c{bottom:738.048000px;}
.y31{bottom:748.420500px;}
.ye5{bottom:748.710000px;}
.ya8{bottom:749.391000px;}
.y108{bottom:752.233500px;}
.yca{bottom:762.091500px;}
.y57{bottom:768.502500px;}
.ya7{bottom:770.731500px;}
.y73{bottom:772.537500px;}
.y23{bottom:780.322500px;}
.yc9{bottom:783.430500px;}
.y8b{bottom:785.140500px;}
.y56{bottom:790.470000px;}
.ya6{bottom:792.070500px;}
.y107{bottom:797.307000px;}
.y22{bottom:801.663000px;}
.y7{bottom:804.763500px;}
.yc8{bottom:804.771000px;}
.y8a{bottom:807.108000px;}
.ya5{bottom:813.411000px;}
.ye4{bottom:820.137000px;}
.yc7{bottom:826.111500px;}
.y30{bottom:828.942000px;}
.y6{bottom:834.052500px;}
.ya4{bottom:834.751500px;}
.ye3{bottom:841.477500px;}
.y21{bottom:843.774000px;}
.yc6{bottom:847.450500px;}
.y2f{bottom:850.282500px;}
.y72{bottom:857.811000px;}
.y106{bottom:858.582000px;}
.y55{bottom:860.275500px;}
.y20{bottom:862.603500px;}
.ye2{bottom:862.818000px;}
.yc5{bottom:868.791000px;}
.y2e{bottom:871.623000px;}
.ya3{bottom:873.978000px;}
.y71{bottom:879.150000px;}
.y105{bottom:879.922500px;}
.y1f{bottom:881.433000px;}
.y54{bottom:881.616000px;}
.ye1{bottom:884.157000px;}
.yc4{bottom:890.131500px;}
.y2d{bottom:892.963500px;}
.y89{bottom:898.615500px;}
.y1e{bottom:900.262500px;}
.y70{bottom:900.490500px;}
.y104{bottom:901.263000px;}
.y53{bottom:902.956500px;}
.ye0{bottom:905.497500px;}
.yc3{bottom:911.470500px;}
.y2c{bottom:914.302500px;}
.y5{bottom:914.365500px;}
.y1d{bottom:919.092000px;}
.y88{bottom:919.956000px;}
.y6f{bottom:921.831000px;}
.y103{bottom:922.602000px;}
.y52{bottom:924.295500px;}
.ya2{bottom:925.638000px;}
.ydf{bottom:926.838000px;}
.y2b{bottom:935.643000px;}
.y1c{bottom:937.921500px;}
.y87{bottom:941.296500px;}
.y4{bottom:942.610500px;}
.y6e{bottom:943.170000px;}
.y102{bottom:943.942500px;}
.y51{bottom:945.636000px;}
.ya1{bottom:946.978500px;}
.yde{bottom:948.177000px;}
.yc2{bottom:951.840000px;}
.y1b{bottom:956.751000px;}
.y2a{bottom:956.983500px;}
.y86{bottom:962.635500px;}
.y6d{bottom:964.510500px;}
.y101{bottom:965.283000px;}
.y50{bottom:966.976500px;}
.ya0{bottom:968.319000px;}
.ydd{bottom:969.517500px;}
.yc1{bottom:973.807500px;}
.y1a{bottom:975.580500px;}
.y29{bottom:978.322500px;}
.y85{bottom:983.976000px;}
.y6c{bottom:985.851000px;}
.y100{bottom:986.622000px;}
.y4f{bottom:988.317000px;}
.y9f{bottom:989.659500px;}
.ydc{bottom:990.858000px;}
.y3{bottom:990.931500px;}
.y19{bottom:994.410000px;}
.y28{bottom:999.663000px;}
.y84{bottom:1005.316500px;}
.y6b{bottom:1007.190000px;}
.yff{bottom:1007.962500px;}
.y4e{bottom:1009.656000px;}
.y9e{bottom:1010.998500px;}
.ydb{bottom:1012.198500px;}
.y18{bottom:1013.239500px;}
.y27{bottom:1021.003500px;}
.y83{bottom:1026.655500px;}
.y6a{bottom:1028.530500px;}
.yfe{bottom:1029.303000px;}
.y4d{bottom:1030.996500px;}
.yc0{bottom:1031.695500px;}
.y17{bottom:1032.069000px;}
.y9d{bottom:1032.339000px;}
.y26{bottom:1042.342500px;}
.y82{bottom:1047.996000px;}
.y69{bottom:1049.871000px;}
.yfd{bottom:1050.642000px;}
.y16{bottom:1050.898500px;}
.y4c{bottom:1052.337000px;}
.ybf{bottom:1053.036000px;}
.yda{bottom:1053.666000px;}
.y9c{bottom:1053.679500px;}
.y81{bottom:1069.336500px;}
.y15{bottom:1069.728000px;}
.y68{bottom:1071.211500px;}
.yfc{bottom:1071.982500px;}
.y4b{bottom:1073.676000px;}
.ybe{bottom:1074.376500px;}
.y25{bottom:1087.239000px;}
.y14{bottom:1088.556000px;}
.y67{bottom:1092.550500px;}
.y9b{bottom:1092.906000px;}
.yfb{bottom:1093.323000px;}
.ybd{bottom:1095.715500px;}
.y13{bottom:1107.385500px;}
.y2{bottom:1109.107500px;}
.y4a{bottom:1116.429000px;}
.ybc{bottom:1117.056000px;}
.y1{bottom:1138.396500px;}
.y12{bottom:1195.900500px;}
.ha{height:28.871615px;}
.hb{height:40.408306px;}
.h8{height:41.783144px;}
.hc{height:42.141798px;}
.h9{height:44.891476px;}
.h6{height:45.490947px;}
.hd{height:46.145493px;}
.he{height:49.156405px;}
.h5{height:50.283571px;}
.h7{height:56.552774px;}
.h2{height:60.426194px;}
.h3{height:61.832294px;}
.h4{height:103.362207px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:106.096500px;}
.xb{left:108.000000px;}
.x4{left:116.476500px;}
.x9{left:122.722500px;}
.x18{left:124.911000px;}
.xf{left:148.909500px;}
.x14{left:153.942000px;}
.x23{left:162.085500px;}
.xe{left:171.319500px;}
.x1{left:174.807000px;}
.x24{left:211.144500px;}
.x25{left:244.662000px;}
.x7{left:279.133500px;}
.x5{left:280.758000px;}
.xc{left:287.749500px;}
.x3{left:308.164500px;}
.x6{left:332.185500px;}
.x8{left:349.968000px;}
.x2{left:372.859500px;}
.xd{left:413.818500px;}
.x10{left:442.855500px;}
.x28{left:451.372500px;}
.x27{left:452.883000px;}
.x16{left:453.928500px;}
.x11{left:458.629500px;}
.x12{left:466.191000px;}
.x13{left:470.343000px;}
.x17{left:499.870500px;}
.x21{left:526.089000px;}
.xa{left:546.808500px;}
.x22{left:547.851000px;}
.x1b{left:559.608000px;}
.x1d{left:623.385000px;}
.x19{left:630.357000px;}
.x1e{left:665.664000px;}
.x1f{left:676.669500px;}
.x26{left:698.079000px;}
.x20{left:710.493000px;}
.x1c{left:711.814500px;}
.x1a{left:782.562000px;}
@media print{
.v1{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:18.967289pt;}
.ls2{letter-spacing:19.316380pt;}
.ls3{letter-spacing:20.305471pt;}
.ws35{word-spacing:-48.244404pt;}
.ws40{word-spacing:-35.859224pt;}
.ws6{word-spacing:-31.211042pt;}
.ws4e{word-spacing:-28.928024pt;}
.ws85{word-spacing:-17.304753pt;}
.ws41{word-spacing:-15.662559pt;}
.ws96{word-spacing:-15.546195pt;}
.ws6a{word-spacing:-15.488013pt;}
.ws71{word-spacing:-15.197104pt;}
.ws5e{word-spacing:-14.964376pt;}
.ws5d{word-spacing:-14.731649pt;}
.ws8b{word-spacing:-14.440739pt;}
.ws8a{word-spacing:-14.382557pt;}
.ws33{word-spacing:-14.324376pt;}
.ws69{word-spacing:-14.149830pt;}
.ws13{word-spacing:-14.075161pt;}
.ws61{word-spacing:-14.033466pt;}
.ws88{word-spacing:-13.626193pt;}
.ws67{word-spacing:-13.509829pt;}
.ws32{word-spacing:-13.393466pt;}
.ws42{word-spacing:-13.277102pt;}
.ws8e{word-spacing:-13.160738pt;}
.ws66{word-spacing:-13.044375pt;}
.ws7d{word-spacing:-12.811647pt;}
.ws70{word-spacing:-12.777718pt;}
.ws2e{word-spacing:-12.753465pt;}
.ws80{word-spacing:-12.695283pt;}
.wsa2{word-spacing:-12.578920pt;}
.ws86{word-spacing:-12.346192pt;}
.ws68{word-spacing:-12.331390pt;}
.ws53{word-spacing:-12.171647pt;}
.ws5{word-spacing:-11.948824pt;}
.ws7b{word-spacing:-11.880737pt;}
.wsf{word-spacing:-11.790405pt;}
.ws28{word-spacing:-11.757541pt;}
.ws14{word-spacing:-11.737271pt;}
.ws3a{word-spacing:-11.693780pt;}
.ws60{word-spacing:-11.648010pt;}
.ws4f{word-spacing:-11.502496pt;}
.ws5f{word-spacing:-11.473464pt;}
.ws6f{word-spacing:-11.357100pt;}
.ws23{word-spacing:-11.298919pt;}
.wsc{word-spacing:-11.190067pt;}
.ws47{word-spacing:-11.124373pt;}
.ws12{word-spacing:-11.099665pt;}
.ws65{word-spacing:-10.949827pt;}
.ws97{word-spacing:-10.658918pt;}
.ws15{word-spacing:-10.462058pt;}
.ws1{word-spacing:-10.424934pt;}
.ws56{word-spacing:-10.251645pt;}
.ws82{word-spacing:-10.193463pt;}
.ws25{word-spacing:-10.077099pt;}
.ws4a{word-spacing:-10.018917pt;}
.ws1f{word-spacing:-9.960736pt;}
.ws3e{word-spacing:-9.902554pt;}
.ws3d{word-spacing:-9.844372pt;}
.ws2f{word-spacing:-9.786190pt;}
.ws1e{word-spacing:-9.728008pt;}
.wsb{word-spacing:-9.669826pt;}
.ws9{word-spacing:-9.611644pt;}
.ws29{word-spacing:-9.553463pt;}
.ws4c{word-spacing:-9.495281pt;}
.ws2b{word-spacing:-9.437099pt;}
.ws27{word-spacing:-9.378917pt;}
.ws22{word-spacing:-9.320735pt;}
.ws55{word-spacing:-9.262553pt;}
.ws5c{word-spacing:-9.204371pt;}
.ws50{word-spacing:-9.146189pt;}
.ws19{word-spacing:-9.133712pt;}
.ws84{word-spacing:-9.088008pt;}
.ws72{word-spacing:-9.029826pt;}
.ws18{word-spacing:-8.921176pt;}
.ws10{word-spacing:-8.868042pt;}
.ws8d{word-spacing:-8.855280pt;}
.ws95{word-spacing:-8.680735pt;}
.wse{word-spacing:-8.602373pt;}
.ws21{word-spacing:-8.564371pt;}
.ws17{word-spacing:-8.549239pt;}
.ws75{word-spacing:-8.506189pt;}
.ws7{word-spacing:-8.123160pt;}
.ws74{word-spacing:-7.982552pt;}
.ws39{word-spacing:-7.691643pt;}
.ws93{word-spacing:-7.633461pt;}
.ws51{word-spacing:-7.517097pt;}
.ws54{word-spacing:-7.458915pt;}
.ws64{word-spacing:-7.400733pt;}
.ws49{word-spacing:-7.342552pt;}
.ws46{word-spacing:-7.284370pt;}
.ws91{word-spacing:-7.051642pt;}
.ws57{word-spacing:-6.993460pt;}
.ws92{word-spacing:-6.935279pt;}
.ws1b{word-spacing:-6.902089pt;}
.ws24{word-spacing:-6.760733pt;}
.ws44{word-spacing:-6.702551pt;}
.ws52{word-spacing:-6.586187pt;}
.ws78{word-spacing:-6.411642pt;}
.ws4d{word-spacing:-6.237096pt;}
.ws73{word-spacing:-6.178914pt;}
.ws30{word-spacing:-6.120732pt;}
.ws48{word-spacing:-5.946187pt;}
.ws2d{word-spacing:-5.829823pt;}
.ws26{word-spacing:-5.713459pt;}
.ws77{word-spacing:-5.306186pt;}
.ws2c{word-spacing:-5.248004pt;}
.ws43{word-spacing:-5.189823pt;}
.wsa3{word-spacing:-5.073459pt;}
.ws89{word-spacing:-4.898913pt;}
.ws90{word-spacing:-4.724368pt;}
.ws9c{word-spacing:-4.608004pt;}
.ws79{word-spacing:-4.433458pt;}
.ws4b{word-spacing:-4.375276pt;}
.ws7c{word-spacing:-4.317095pt;}
.ws59{word-spacing:-4.142549pt;}
.ws6b{word-spacing:-4.026185pt;}
.ws7e{word-spacing:-3.968003pt;}
.ws16{word-spacing:-3.926593pt;}
.ws45{word-spacing:-3.909821pt;}
.ws94{word-spacing:-3.851640pt;}
.ws1d{word-spacing:-3.677094pt;}
.ws98{word-spacing:-3.618912pt;}
.ws11{word-spacing:-3.288986pt;}
.ws7a{word-spacing:-3.211639pt;}
.ws38{word-spacing:-3.153457pt;}
.ws99{word-spacing:-3.095275pt;}
.ws3b{word-spacing:-2.804366pt;}
.ws31{word-spacing:-2.338911pt;}
.ws6e{word-spacing:-1.931638pt;}
.ws8f{word-spacing:-1.873456pt;}
.ws58{word-spacing:-1.810814pt;}
.ws2a{word-spacing:-1.466183pt;}
.ws1a{word-spacing:-1.376167pt;}
.ws5b{word-spacing:-1.291637pt;}
.ws37{word-spacing:-1.175274pt;}
.ws83{word-spacing:-1.058910pt;}
.ws87{word-spacing:-0.826183pt;}
.ws63{word-spacing:-0.709819pt;}
.ws3f{word-spacing:-0.663115pt;}
.ws20{word-spacing:-0.593455pt;}
.ws34{word-spacing:-0.058182pt;}
.wsd{word-spacing:0.000000pt;}
.ws7f{word-spacing:1.617456pt;}
.ws5a{word-spacing:1.966547pt;}
.ws81{word-spacing:4.692815pt;}
.ws3c{word-spacing:5.166550pt;}
.wsa{word-spacing:15.872013pt;}
.ws8c{word-spacing:16.116377pt;}
.wsa1{word-spacing:17.920015pt;}
.ws9b{word-spacing:18.036379pt;}
.ws6d{word-spacing:18.257470pt;}
.ws9a{word-spacing:18.967289pt;}
.ws9d{word-spacing:20.363653pt;}
.ws36{word-spacing:20.596381pt;}
.ws9f{word-spacing:20.712745pt;}
.wsa4{word-spacing:20.770926pt;}
.wsa0{word-spacing:20.945472pt;}
.ws62{word-spacing:23.693612pt;}
.ws0{word-spacing:24.178129pt;}
.ws4{word-spacing:27.927269pt;}
.ws3{word-spacing:28.003782pt;}
.ws9e{word-spacing:28.741842pt;}
.ws6c{word-spacing:30.021843pt;}
.ws1c{word-spacing:37.818213pt;}
.ws2{word-spacing:46.004858pt;}
.wsa5{word-spacing:53.410954pt;}
.ws76{word-spacing:84.087860pt;}
.ws8{word-spacing:1337.775660pt;}
._1b{margin-left:-19.537951pt;}
._3{margin-left:-7.498281pt;}
._0{margin-left:-6.044532pt;}
._9{margin-left:-4.770913pt;}
._5{margin-left:-3.316366pt;}
._2{margin-left:-1.989340pt;}
._11{margin-left:-0.933023pt;}
._12{width:1.039291pt;}
._1{width:1.989340pt;}
._7{width:3.200003pt;}
._28{width:8.098436pt;}
._10{width:13.909938pt;}
._25{width:16.000013pt;}
._26{width:16.930923pt;}
._24{width:17.989353pt;}
._16{width:19.862329pt;}
._f{width:21.306681pt;}
._1c{width:22.236629pt;}
._e{width:23.750838pt;}
._18{width:25.611178pt;}
._1e{width:26.655278pt;}
._4{width:27.748811pt;}
._13{width:29.280575pt;}
._17{width:30.262554pt;}
._23{width:31.883663pt;}
._20{width:33.255315pt;}
._1a{width:34.359710pt;}
._22{width:35.258211pt;}
._1d{width:38.349833pt;}
._19{width:39.399220pt;}
._27{width:40.494579pt;}
._1f{width:42.298217pt;}
._8{width:51.734836pt;}
._21{width:61.090960pt;}
._15{width:71.731200pt;}
._14{width:84.164373pt;}
._a{width:221.207457pt;}
._6{width:655.418728pt;}
._c{width:661.829890pt;}
._d{width:797.033391pt;}
._b{width:921.273989pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs2{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:56.149333pt;}
.y11{bottom:96.000000pt;}
.y49{bottom:114.969333pt;}
.y48{bottom:133.937333pt;}
.y47{bottom:152.906667pt;}
.y46{bottom:171.876000pt;}
.y45{bottom:190.844000pt;}
.ybb{bottom:206.744000pt;}
.y44{bottom:209.813333pt;}
.yba{bottom:226.270667pt;}
.y43{bottom:228.782667pt;}
.yfa{bottom:237.764000pt;}
.y42{bottom:247.752000pt;}
.yf9{bottom:256.732000pt;}
.yd9{bottom:264.665333pt;}
.yb9{bottom:266.706667pt;}
.y41{bottom:266.720000pt;}
.yf8{bottom:275.701333pt;}
.y11b{bottom:282.209333pt;}
.y66{bottom:285.689333pt;}
.yf7{bottom:294.670667pt;}
.y11a{bottom:301.178667pt;}
.y65{bottom:304.658667pt;}
.yd8{bottom:306.116000pt;}
.y40{bottom:306.626667pt;}
.yf6{bottom:313.638667pt;}
.yb8{bottom:319.772000pt;}
.y119{bottom:320.148000pt;}
.y64{bottom:323.626667pt;}
.y80{bottom:326.441333pt;}
.y9a{bottom:327.549333pt;}
.yf5{bottom:332.608000pt;}
.yb7{bottom:338.740000pt;}
.y118{bottom:339.116000pt;}
.y63{bottom:342.596000pt;}
.y7f{bottom:345.968000pt;}
.y99{bottom:347.076000pt;}
.yf4{bottom:351.577333pt;}
.yb6{bottom:357.709333pt;}
.y117{bottom:364.593333pt;}
.yd7{bottom:364.717333pt;}
.yf3{bottom:370.545333pt;}
.yb5{bottom:376.678667pt;}
.y3f{bottom:378.202667pt;}
.y62{bottom:380.597333pt;}
.y116{bottom:383.562667pt;}
.yd6{bottom:383.685333pt;}
.yf2{bottom:389.514667pt;}
.y7e{bottom:392.285333pt;}
.yb4{bottom:395.646667pt;}
.y3e{bottom:397.170667pt;}
.y115{bottom:402.532000pt;}
.yd5{bottom:402.654667pt;}
.yf1{bottom:408.484000pt;}
.yb3{bottom:414.616000pt;}
.y3d{bottom:416.140000pt;}
.y10{bottom:420.320000pt;}
.yd4{bottom:421.624000pt;}
.y61{bottom:424.166667pt;}
.yf0{bottom:427.453333pt;}
.y114{bottom:428.008000pt;}
.y98{bottom:428.416000pt;}
.yb2{bottom:433.585333pt;}
.y3c{bottom:435.109333pt;}
.yd3{bottom:440.592000pt;}
.yef{bottom:446.421333pt;}
.y113{bottom:446.977333pt;}
.y97{bottom:447.385333pt;}
.yb1{bottom:452.553333pt;}
.y3b{bottom:454.077333pt;}
.yd2{bottom:459.561333pt;}
.y96{bottom:466.353333pt;}
.yb0{bottom:471.522667pt;}
.yee{bottom:471.898667pt;}
.y112{bottom:472.454667pt;}
.y3a{bottom:473.046667pt;}
.y7d{bottom:475.228000pt;}
.yd1{bottom:478.530667pt;}
.y95{bottom:485.322667pt;}
.yf{bottom:488.945333pt;}
.yaf{bottom:490.492000pt;}
.yed{bottom:490.868000pt;}
.y111{bottom:491.424000pt;}
.y39{bottom:492.016000pt;}
.y60{bottom:493.360000pt;}
.y7c{bottom:494.197333pt;}
.yd0{bottom:497.498667pt;}
.y94{bottom:504.292000pt;}
.ye{bottom:507.913333pt;}
.yec{bottom:509.837333pt;}
.y110{bottom:510.392000pt;}
.y38{bottom:510.984000pt;}
.y5f{bottom:512.329333pt;}
.y7b{bottom:513.166667pt;}
.ycf{bottom:516.468000pt;}
.y93{bottom:523.260000pt;}
.yae{bottom:525.360000pt;}
.yd{bottom:526.882667pt;}
.yeb{bottom:528.805333pt;}
.y10f{bottom:529.361333pt;}
.y37{bottom:529.953333pt;}
.y5e{bottom:531.298667pt;}
.y7a{bottom:532.134667pt;}
.yce{bottom:535.437333pt;}
.y92{bottom:542.229333pt;}
.yc{bottom:545.852000pt;}
.yea{bottom:547.774667pt;}
.y10e{bottom:548.330667pt;}
.y36{bottom:548.922667pt;}
.y5d{bottom:550.266667pt;}
.y79{bottom:551.104000pt;}
.ycd{bottom:554.406667pt;}
.y91{bottom:561.198667pt;}
.yb{bottom:564.820000pt;}
.ye9{bottom:566.744000pt;}
.y10d{bottom:567.300000pt;}
.y35{bottom:567.892000pt;}
.y5c{bottom:569.236000pt;}
.y78{bottom:570.073333pt;}
.yad{bottom:571.280000pt;}
.y90{bottom:580.166667pt;}
.ya{bottom:583.789333pt;}
.ye8{bottom:585.712000pt;}
.y10c{bottom:586.268000pt;}
.y34{bottom:586.860000pt;}
.y5b{bottom:588.205333pt;}
.y77{bottom:589.041333pt;}
.yac{bottom:590.249333pt;}
.ycc{bottom:590.289333pt;}
.y8f{bottom:599.136000pt;}
.ye7{bottom:604.681333pt;}
.y33{bottom:605.829333pt;}
.y5a{bottom:607.173333pt;}
.y76{bottom:608.010667pt;}
.yab{bottom:609.218667pt;}
.ycb{bottom:609.816000pt;}
.y9{bottom:610.056000pt;}
.y10b{bottom:611.745333pt;}
.y8e{bottom:618.105333pt;}
.ye6{bottom:623.650667pt;}
.y59{bottom:626.142667pt;}
.y75{bottom:626.980000pt;}
.yaa{bottom:628.188000pt;}
.y10a{bottom:630.714667pt;}
.y8d{bottom:637.074667pt;}
.y58{bottom:645.112000pt;}
.y32{bottom:645.736000pt;}
.y74{bottom:645.948000pt;}
.ya9{bottom:647.156000pt;}
.y109{bottom:649.684000pt;}
.y8{bottom:651.514667pt;}
.y8c{bottom:656.042667pt;}
.y31{bottom:665.262667pt;}
.ye5{bottom:665.520000pt;}
.ya8{bottom:666.125333pt;}
.y108{bottom:668.652000pt;}
.yca{bottom:677.414667pt;}
.y57{bottom:683.113333pt;}
.ya7{bottom:685.094667pt;}
.y73{bottom:686.700000pt;}
.y23{bottom:693.620000pt;}
.yc9{bottom:696.382667pt;}
.y8b{bottom:697.902667pt;}
.y56{bottom:702.640000pt;}
.ya6{bottom:704.062667pt;}
.y107{bottom:708.717333pt;}
.y22{bottom:712.589333pt;}
.y7{bottom:715.345333pt;}
.yc8{bottom:715.352000pt;}
.y8a{bottom:717.429333pt;}
.ya5{bottom:723.032000pt;}
.ye4{bottom:729.010667pt;}
.yc7{bottom:734.321333pt;}
.y30{bottom:736.837333pt;}
.y6{bottom:741.380000pt;}
.ya4{bottom:742.001333pt;}
.ye3{bottom:747.980000pt;}
.y21{bottom:750.021333pt;}
.yc6{bottom:753.289333pt;}
.y2f{bottom:755.806667pt;}
.y72{bottom:762.498667pt;}
.y106{bottom:763.184000pt;}
.y55{bottom:764.689333pt;}
.y20{bottom:766.758667pt;}
.ye2{bottom:766.949333pt;}
.yc5{bottom:772.258667pt;}
.y2e{bottom:774.776000pt;}
.ya3{bottom:776.869333pt;}
.y71{bottom:781.466667pt;}
.y105{bottom:782.153333pt;}
.y1f{bottom:783.496000pt;}
.y54{bottom:783.658667pt;}
.ye1{bottom:785.917333pt;}
.yc4{bottom:791.228000pt;}
.y2d{bottom:793.745333pt;}
.y89{bottom:798.769333pt;}
.y1e{bottom:800.233333pt;}
.y70{bottom:800.436000pt;}
.y104{bottom:801.122667pt;}
.y53{bottom:802.628000pt;}
.ye0{bottom:804.886667pt;}
.yc3{bottom:810.196000pt;}
.y2c{bottom:812.713333pt;}
.y5{bottom:812.769333pt;}
.y1d{bottom:816.970667pt;}
.y88{bottom:817.738667pt;}
.y6f{bottom:819.405333pt;}
.y103{bottom:820.090667pt;}
.y52{bottom:821.596000pt;}
.ya2{bottom:822.789333pt;}
.ydf{bottom:823.856000pt;}
.y2b{bottom:831.682667pt;}
.y1c{bottom:833.708000pt;}
.y87{bottom:836.708000pt;}
.y4{bottom:837.876000pt;}
.y6e{bottom:838.373333pt;}
.y102{bottom:839.060000pt;}
.y51{bottom:840.565333pt;}
.ya1{bottom:841.758667pt;}
.yde{bottom:842.824000pt;}
.yc2{bottom:846.080000pt;}
.y1b{bottom:850.445333pt;}
.y2a{bottom:850.652000pt;}
.y86{bottom:855.676000pt;}
.y6d{bottom:857.342667pt;}
.y101{bottom:858.029333pt;}
.y50{bottom:859.534667pt;}
.ya0{bottom:860.728000pt;}
.ydd{bottom:861.793333pt;}
.yc1{bottom:865.606667pt;}
.y1a{bottom:867.182667pt;}
.y29{bottom:869.620000pt;}
.y85{bottom:874.645333pt;}
.y6c{bottom:876.312000pt;}
.y100{bottom:876.997333pt;}
.y4f{bottom:878.504000pt;}
.y9f{bottom:879.697333pt;}
.ydc{bottom:880.762667pt;}
.y3{bottom:880.828000pt;}
.y19{bottom:883.920000pt;}
.y28{bottom:888.589333pt;}
.y84{bottom:893.614667pt;}
.y6b{bottom:895.280000pt;}
.yff{bottom:895.966667pt;}
.y4e{bottom:897.472000pt;}
.y9e{bottom:898.665333pt;}
.ydb{bottom:899.732000pt;}
.y18{bottom:900.657333pt;}
.y27{bottom:907.558667pt;}
.y83{bottom:912.582667pt;}
.y6a{bottom:914.249333pt;}
.yfe{bottom:914.936000pt;}
.y4d{bottom:916.441333pt;}
.yc0{bottom:917.062667pt;}
.y17{bottom:917.394667pt;}
.y9d{bottom:917.634667pt;}
.y26{bottom:926.526667pt;}
.y82{bottom:931.552000pt;}
.y69{bottom:933.218667pt;}
.yfd{bottom:933.904000pt;}
.y16{bottom:934.132000pt;}
.y4c{bottom:935.410667pt;}
.ybf{bottom:936.032000pt;}
.yda{bottom:936.592000pt;}
.y9c{bottom:936.604000pt;}
.y81{bottom:950.521333pt;}
.y15{bottom:950.869333pt;}
.y68{bottom:952.188000pt;}
.yfc{bottom:952.873333pt;}
.y4b{bottom:954.378667pt;}
.ybe{bottom:955.001333pt;}
.y25{bottom:966.434667pt;}
.y14{bottom:967.605333pt;}
.y67{bottom:971.156000pt;}
.y9b{bottom:971.472000pt;}
.yfb{bottom:971.842667pt;}
.ybd{bottom:973.969333pt;}
.y13{bottom:984.342667pt;}
.y2{bottom:985.873333pt;}
.y4a{bottom:992.381333pt;}
.ybc{bottom:992.938667pt;}
.y1{bottom:1011.908000pt;}
.y12{bottom:1063.022667pt;}
.ha{height:25.663658pt;}
.hb{height:35.918494pt;}
.h8{height:37.140573pt;}
.hc{height:37.459376pt;}
.h9{height:39.903534pt;}
.h6{height:40.436397pt;}
.hd{height:41.018216pt;}
.he{height:43.694582pt;}
.h5{height:44.696508pt;}
.h7{height:50.269133pt;}
.h2{height:53.712173pt;}
.h3{height:54.962039pt;}
.h4{height:91.877517pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:94.308000pt;}
.xb{left:96.000000pt;}
.x4{left:103.534667pt;}
.x9{left:109.086667pt;}
.x18{left:111.032000pt;}
.xf{left:132.364000pt;}
.x14{left:136.837333pt;}
.x23{left:144.076000pt;}
.xe{left:152.284000pt;}
.x1{left:155.384000pt;}
.x24{left:187.684000pt;}
.x25{left:217.477333pt;}
.x7{left:248.118667pt;}
.x5{left:249.562667pt;}
.xc{left:255.777333pt;}
.x3{left:273.924000pt;}
.x6{left:295.276000pt;}
.x8{left:311.082667pt;}
.x2{left:331.430667pt;}
.xd{left:367.838667pt;}
.x10{left:393.649333pt;}
.x28{left:401.220000pt;}
.x27{left:402.562667pt;}
.x16{left:403.492000pt;}
.x11{left:407.670667pt;}
.x12{left:414.392000pt;}
.x13{left:418.082667pt;}
.x17{left:444.329333pt;}
.x21{left:467.634667pt;}
.xa{left:486.052000pt;}
.x22{left:486.978667pt;}
.x1b{left:497.429333pt;}
.x1d{left:554.120000pt;}
.x19{left:560.317333pt;}
.x1e{left:591.701333pt;}
.x1f{left:601.484000pt;}
.x26{left:620.514667pt;}
.x20{left:631.549333pt;}
.x1c{left:632.724000pt;}
.x1a{left:695.610667pt;}
}




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