
    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_adf8045668e15faa8ecd02b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.189000;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_d30380c42242e296b0d94f33.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.956636;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_65ab5a4e034c3ec2e5814ede.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.038000;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_cf77ced5f24d90c908362efc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964000;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_c66e317563069c8c7bf39463.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938000;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_d73206899f186f3b36303270.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964000;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_9bd147c783b685589d326430.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_8ceae952fddd107d58953885.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.925000;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_89f4f59b854a488c67fe9f5e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.038000;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_b576b03e0f6f7acb76f63406.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.964000;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;}
.m2b{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2e{transform:matrix(0.231293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231293,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.231745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231745,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.232155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232155,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.232552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232552,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.233120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233120,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.233143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233143,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.233827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233827,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.235009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235009,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.235032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235032,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.235277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235277,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.235293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235293,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.235641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235641,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.235809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235809,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.235875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235875,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.236084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236084,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.236086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236086,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.236209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236209,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.236257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236257,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.236448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236448,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.236527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236527,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.236545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236545,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.236943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236943,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.237143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237143,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.237280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237280,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.237439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237439,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237698,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.238193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238193,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.238602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238602,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.238634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238634,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238718,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.238784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238784,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.239089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239089,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.239398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239398,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.239789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239789,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.240366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240366,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.240564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240564,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.240657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240657,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.240902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240902,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.241402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241402,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.241695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241695,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.241859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241859,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.241882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241882,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.241895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241895,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.242111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242111,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.243082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243082,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.244020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244020,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249511,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);}
.m14{transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252994,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:173.400000px;}
.ls13{letter-spacing:-1.944000px;}
.ls11{letter-spacing:-1.296000px;}
.ls12{letter-spacing:-1.134000px;}
.ls16{letter-spacing:-0.924000px;}
.ls14{letter-spacing:-0.858000px;}
.ls15{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.726000px;}
.ls7{letter-spacing:-0.660000px;}
.lsf{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.594000px;}
.lsa{letter-spacing:-0.528000px;}
.lsb{letter-spacing:-0.462000px;}
.lsc{letter-spacing:-0.396000px;}
.lsd{letter-spacing:-0.162000px;}
.ls1{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.432000px;}
.ls6{letter-spacing:2.219456px;}
.ls5{letter-spacing:2.220049px;}
.lse{letter-spacing:2.376000px;}
.ls2{letter-spacing:2.430242px;}
.ls4{letter-spacing:2.430835px;}
.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;}
}
.ws8{word-spacing:-77.118397px;}
.ws9{word-spacing:-12.540000px;}
.ws2{word-spacing:-12.000000px;}
.wsa{word-spacing:-11.934000px;}
.ws0{word-spacing:-11.520000px;}
.ws11{word-spacing:-11.178000px;}
.wsb{word-spacing:-10.908000px;}
.wse{word-spacing:-10.530000px;}
.wsc{word-spacing:-10.152000px;}
.ws12{word-spacing:-9.882000px;}
.wsf{word-spacing:-9.666000px;}
.ws1{word-spacing:-9.600000px;}
.ws10{word-spacing:-9.504000px;}
.ws22{word-spacing:-7.800000px;}
.ws24{word-spacing:-2.640000px;}
.ws1e{word-spacing:-2.376000px;}
.ws7{word-spacing:-2.340000px;}
.ws1b{word-spacing:-2.214000px;}
.ws1c{word-spacing:-2.160000px;}
.ws6{word-spacing:-1.920000px;}
.ws1f{word-spacing:-0.432000px;}
.ws3{word-spacing:-0.198000px;}
.ws1d{word-spacing:-0.108000px;}
.wsd{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:0.144000px;}
.ws1a{word-spacing:0.162000px;}
.ws19{word-spacing:0.396000px;}
.ws18{word-spacing:0.462000px;}
.ws17{word-spacing:0.528000px;}
.ws14{word-spacing:0.594000px;}
.ws13{word-spacing:0.660000px;}
.ws15{word-spacing:0.726000px;}
.ws21{word-spacing:0.792000px;}
.ws20{word-spacing:0.858000px;}
.ws23{word-spacing:0.924000px;}
.ws25{word-spacing:2.508000px;}
.ws16{word-spacing:2.640000px;}
._3{margin-left:-6.624000px;}
._5{margin-left:-4.428000px;}
._1{margin-left:-3.168000px;}
._0{margin-left:-1.776000px;}
._2{width:1.822200px;}
._4{width:3.186600px;}
.fc1{color:rgb(167,165,166);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:38.478000px;}
.fs6{font-size:39.000000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:352.138800px;}
.y0{bottom:0.000000px;}
.y2e{bottom:106.299150px;}
.y2d{bottom:125.799150px;}
.y52{bottom:127.836000px;}
.y74{bottom:139.862250px;}
.y2c{bottom:145.299150px;}
.y51{bottom:149.372850px;}
.y73{bottom:161.687250px;}
.y2b{bottom:164.799150px;}
.y50{bottom:170.909550px;}
.y72{bottom:183.512250px;}
.y2a{bottom:184.299150px;}
.y4f{bottom:192.446400px;}
.y29{bottom:203.799150px;}
.y71{bottom:205.337250px;}
.y4e{bottom:213.983250px;}
.y28{bottom:223.299150px;}
.y70{bottom:227.162250px;}
.y4d{bottom:235.519950px;}
.y27{bottom:242.799150px;}
.y6f{bottom:248.987250px;}
.y4c{bottom:257.056800px;}
.y26{bottom:262.299150px;}
.y6e{bottom:270.812250px;}
.y4b{bottom:278.593650px;}
.y25{bottom:281.799150px;}
.y6d{bottom:292.637250px;}
.y4a{bottom:300.130350px;}
.y6c{bottom:314.462250px;}
.y24{bottom:318.212250px;}
.y49{bottom:321.667200px;}
.y6b{bottom:336.287250px;}
.y23{bottom:339.887250px;}
.y48{bottom:343.204050px;}
.y6a{bottom:358.112250px;}
.y22{bottom:361.562250px;}
.y47{bottom:364.740900px;}
.y69{bottom:379.937250px;}
.y21{bottom:383.237250px;}
.y46{bottom:386.277600px;}
.y68{bottom:401.762250px;}
.y20{bottom:404.912250px;}
.y45{bottom:407.814450px;}
.y67{bottom:423.587250px;}
.y8{bottom:425.686950px;}
.y1f{bottom:426.587250px;}
.y44{bottom:429.351150px;}
.y5{bottom:444.716850px;}
.y66{bottom:445.412250px;}
.y1e{bottom:448.262250px;}
.y43{bottom:450.888000px;}
.y4{bottom:462.716850px;}
.y65{bottom:467.237250px;}
.y1d{bottom:469.937250px;}
.y42{bottom:472.424850px;}
.y64{bottom:489.062250px;}
.y1c{bottom:491.612250px;}
.y41{bottom:493.961550px;}
.y63{bottom:510.887250px;}
.y1b{bottom:513.287250px;}
.y3{bottom:513.648750px;}
.y40{bottom:515.498400px;}
.y2{bottom:531.648750px;}
.y62{bottom:532.712250px;}
.y1a{bottom:534.962250px;}
.y3f{bottom:537.035250px;}
.y1{bottom:554.332350px;}
.y61{bottom:554.537250px;}
.y19{bottom:556.637250px;}
.y3e{bottom:558.571950px;}
.y60{bottom:576.362250px;}
.y18{bottom:578.312250px;}
.y3d{bottom:580.108800px;}
.y5f{bottom:598.187250px;}
.y17{bottom:599.987250px;}
.y3c{bottom:601.645650px;}
.y5e{bottom:620.012250px;}
.y16{bottom:621.662250px;}
.y3b{bottom:623.182500px;}
.y5d{bottom:641.837250px;}
.y15{bottom:643.337250px;}
.y3a{bottom:644.719200px;}
.y5c{bottom:663.662250px;}
.y14{bottom:665.012250px;}
.y39{bottom:666.256050px;}
.y5b{bottom:685.487250px;}
.y13{bottom:686.687250px;}
.y38{bottom:687.792750px;}
.y5a{bottom:707.312250px;}
.y11{bottom:708.362250px;}
.y37{bottom:709.329600px;}
.y12{bottom:713.856750px;}
.y59{bottom:729.137250px;}
.yf{bottom:730.037250px;}
.y36{bottom:730.866450px;}
.y10{bottom:735.531750px;}
.y58{bottom:750.962250px;}
.ye{bottom:751.712250px;}
.y35{bottom:752.403150px;}
.y57{bottom:772.787250px;}
.yd{bottom:773.387250px;}
.y34{bottom:773.940000px;}
.y56{bottom:794.612250px;}
.yc{bottom:795.062250px;}
.y33{bottom:795.476850px;}
.y55{bottom:816.437250px;}
.ya{bottom:816.737250px;}
.y32{bottom:817.013550px;}
.y54{bottom:838.262250px;}
.yb{bottom:838.412250px;}
.y31{bottom:838.550400px;}
.y7{bottom:840.138750px;}
.y30{bottom:860.087250px;}
.y6{bottom:861.138750px;}
.y53{bottom:871.653600px;}
.y2f{bottom:930.708000px;}
.y9{bottom:946.311000px;}
.h9{height:29.820450px;}
.hc{height:30.225000px;}
.h6{height:33.600000px;}
.h3{height:34.494545px;}
.h4{height:37.200000px;}
.ha{height:41.850000px;}
.h5{height:46.500000px;}
.hb{height:50.760000px;}
.h8{height:51.150000px;}
.h2{height:62.040000px;}
.h7{height:272.907570px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x8{left:41.769300px;}
.x3{left:103.455750px;}
.x1{left:106.298250px;}
.x4{left:130.301850px;}
.x7{left:135.595950px;}
.x2{left:137.365500px;}
.x5{left:157.478100px;}
.x6{left:161.773200px;}
.x9{left:637.058400px;}
.xa{left:645.842550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:154.133333pt;}
.ls13{letter-spacing:-1.728000pt;}
.ls11{letter-spacing:-1.152000pt;}
.ls12{letter-spacing:-1.008000pt;}
.ls16{letter-spacing:-0.821333pt;}
.ls14{letter-spacing:-0.762667pt;}
.ls15{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.645333pt;}
.ls7{letter-spacing:-0.586667pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.528000pt;}
.lsa{letter-spacing:-0.469333pt;}
.lsb{letter-spacing:-0.410667pt;}
.lsc{letter-spacing:-0.352000pt;}
.lsd{letter-spacing:-0.144000pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.384000pt;}
.ls6{letter-spacing:1.972850pt;}
.ls5{letter-spacing:1.973377pt;}
.lse{letter-spacing:2.112000pt;}
.ls2{letter-spacing:2.160215pt;}
.ls4{letter-spacing:2.160742pt;}
.ws8{word-spacing:-68.549686pt;}
.ws9{word-spacing:-11.146667pt;}
.ws2{word-spacing:-10.666667pt;}
.wsa{word-spacing:-10.608000pt;}
.ws0{word-spacing:-10.240000pt;}
.ws11{word-spacing:-9.936000pt;}
.wsb{word-spacing:-9.696000pt;}
.wse{word-spacing:-9.360000pt;}
.wsc{word-spacing:-9.024000pt;}
.ws12{word-spacing:-8.784000pt;}
.wsf{word-spacing:-8.592000pt;}
.ws1{word-spacing:-8.533333pt;}
.ws10{word-spacing:-8.448000pt;}
.ws22{word-spacing:-6.933333pt;}
.ws24{word-spacing:-2.346667pt;}
.ws1e{word-spacing:-2.112000pt;}
.ws7{word-spacing:-2.080000pt;}
.ws1b{word-spacing:-1.968000pt;}
.ws1c{word-spacing:-1.920000pt;}
.ws6{word-spacing:-1.706667pt;}
.ws1f{word-spacing:-0.384000pt;}
.ws3{word-spacing:-0.176000pt;}
.ws1d{word-spacing:-0.096000pt;}
.wsd{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:0.128000pt;}
.ws1a{word-spacing:0.144000pt;}
.ws19{word-spacing:0.352000pt;}
.ws18{word-spacing:0.410667pt;}
.ws17{word-spacing:0.469333pt;}
.ws14{word-spacing:0.528000pt;}
.ws13{word-spacing:0.586667pt;}
.ws15{word-spacing:0.645333pt;}
.ws21{word-spacing:0.704000pt;}
.ws20{word-spacing:0.762667pt;}
.ws23{word-spacing:0.821333pt;}
.ws25{word-spacing:2.229333pt;}
.ws16{word-spacing:2.346667pt;}
._3{margin-left:-5.888000pt;}
._5{margin-left:-3.936000pt;}
._1{margin-left:-2.816000pt;}
._0{margin-left:-1.578667pt;}
._2{width:1.619733pt;}
._4{width:2.832533pt;}
.fs4{font-size:34.202667pt;}
.fs6{font-size:34.666667pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:313.012267pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:94.488133pt;}
.y2d{bottom:111.821467pt;}
.y52{bottom:113.632000pt;}
.y74{bottom:124.322000pt;}
.y2c{bottom:129.154800pt;}
.y51{bottom:132.775867pt;}
.y73{bottom:143.722000pt;}
.y2b{bottom:146.488133pt;}
.y50{bottom:151.919600pt;}
.y72{bottom:163.122000pt;}
.y2a{bottom:163.821467pt;}
.y4f{bottom:171.063467pt;}
.y29{bottom:181.154800pt;}
.y71{bottom:182.522000pt;}
.y4e{bottom:190.207333pt;}
.y28{bottom:198.488133pt;}
.y70{bottom:201.922000pt;}
.y4d{bottom:209.351067pt;}
.y27{bottom:215.821467pt;}
.y6f{bottom:221.322000pt;}
.y4c{bottom:228.494933pt;}
.y26{bottom:233.154800pt;}
.y6e{bottom:240.722000pt;}
.y4b{bottom:247.638800pt;}
.y25{bottom:250.488133pt;}
.y6d{bottom:260.122000pt;}
.y4a{bottom:266.782533pt;}
.y6c{bottom:279.522000pt;}
.y24{bottom:282.855333pt;}
.y49{bottom:285.926400pt;}
.y6b{bottom:298.922000pt;}
.y23{bottom:302.122000pt;}
.y48{bottom:305.070267pt;}
.y6a{bottom:318.322000pt;}
.y22{bottom:321.388667pt;}
.y47{bottom:324.214133pt;}
.y69{bottom:337.722000pt;}
.y21{bottom:340.655333pt;}
.y46{bottom:343.357867pt;}
.y68{bottom:357.122000pt;}
.y20{bottom:359.922000pt;}
.y45{bottom:362.501733pt;}
.y67{bottom:376.522000pt;}
.y8{bottom:378.388400pt;}
.y1f{bottom:379.188667pt;}
.y44{bottom:381.645467pt;}
.y5{bottom:395.303867pt;}
.y66{bottom:395.922000pt;}
.y1e{bottom:398.455333pt;}
.y43{bottom:400.789333pt;}
.y4{bottom:411.303867pt;}
.y65{bottom:415.322000pt;}
.y1d{bottom:417.722000pt;}
.y42{bottom:419.933200pt;}
.y64{bottom:434.722000pt;}
.y1c{bottom:436.988667pt;}
.y41{bottom:439.076933pt;}
.y63{bottom:454.122000pt;}
.y1b{bottom:456.255333pt;}
.y3{bottom:456.576667pt;}
.y40{bottom:458.220800pt;}
.y2{bottom:472.576667pt;}
.y62{bottom:473.522000pt;}
.y1a{bottom:475.522000pt;}
.y3f{bottom:477.364667pt;}
.y1{bottom:492.739867pt;}
.y61{bottom:492.922000pt;}
.y19{bottom:494.788667pt;}
.y3e{bottom:496.508400pt;}
.y60{bottom:512.322000pt;}
.y18{bottom:514.055333pt;}
.y3d{bottom:515.652267pt;}
.y5f{bottom:531.722000pt;}
.y17{bottom:533.322000pt;}
.y3c{bottom:534.796133pt;}
.y5e{bottom:551.122000pt;}
.y16{bottom:552.588667pt;}
.y3b{bottom:553.940000pt;}
.y5d{bottom:570.522000pt;}
.y15{bottom:571.855333pt;}
.y3a{bottom:573.083733pt;}
.y5c{bottom:589.922000pt;}
.y14{bottom:591.122000pt;}
.y39{bottom:592.227600pt;}
.y5b{bottom:609.322000pt;}
.y13{bottom:610.388667pt;}
.y38{bottom:611.371333pt;}
.y5a{bottom:628.722000pt;}
.y11{bottom:629.655333pt;}
.y37{bottom:630.515200pt;}
.y12{bottom:634.539333pt;}
.y59{bottom:648.122000pt;}
.yf{bottom:648.922000pt;}
.y36{bottom:649.659067pt;}
.y10{bottom:653.806000pt;}
.y58{bottom:667.522000pt;}
.ye{bottom:668.188667pt;}
.y35{bottom:668.802800pt;}
.y57{bottom:686.922000pt;}
.yd{bottom:687.455333pt;}
.y34{bottom:687.946667pt;}
.y56{bottom:706.322000pt;}
.yc{bottom:706.722000pt;}
.y33{bottom:707.090533pt;}
.y55{bottom:725.722000pt;}
.ya{bottom:725.988667pt;}
.y32{bottom:726.234267pt;}
.y54{bottom:745.122000pt;}
.yb{bottom:745.255333pt;}
.y31{bottom:745.378133pt;}
.y7{bottom:746.790000pt;}
.y30{bottom:764.522000pt;}
.y6{bottom:765.456667pt;}
.y53{bottom:774.803200pt;}
.y2f{bottom:827.296000pt;}
.y9{bottom:841.165333pt;}
.h9{height:26.507067pt;}
.hc{height:26.866667pt;}
.h6{height:29.866667pt;}
.h3{height:30.661818pt;}
.h4{height:33.066667pt;}
.ha{height:37.200000pt;}
.h5{height:41.333333pt;}
.hb{height:45.120000pt;}
.h8{height:45.466667pt;}
.h2{height:55.146667pt;}
.h7{height:242.584507pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x8{left:37.128267pt;}
.x3{left:91.960667pt;}
.x1{left:94.487333pt;}
.x4{left:115.823867pt;}
.x7{left:120.529733pt;}
.x2{left:122.102667pt;}
.x5{left:139.980533pt;}
.x6{left:143.798400pt;}
.x9{left:566.274133pt;}
.xa{left:574.082267pt;}
}




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