
    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_3cbc69d06a806a5a969c9f38.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_159c2be5f5fed11f9de72f38.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bcebe33a177439edf70b2366.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_aeb5366fd554077ecbd415a8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.117000;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_c6dca3ada5b916b11032a712.woff')format("woff");}.ff5{font-family:ff5;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_088b697f5eed22293cd1b533.woff')format("woff");}.ff6{font-family:ff6;line-height:0.716000;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_0ed55e191815538dbadde45a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.922000;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_5e8afacf256693443fbeab6e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.671000;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_e7dff61437682c5ae801a080.woff')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_9f70bec0799ed2eba70725a5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.400000;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_2a46449d6a029a16b66ecd5b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.117000;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_19afca5df950039b600d46ae.woff')format("woff");}.ffc{font-family:ffc;line-height:0.522000;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_08cac7386163aad6d8ec9eab.woff')format("woff");}.ffd{font-family:ffd;line-height:1.006000;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_f7c5ff9cec1cfd37db89545f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.954000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.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);}
.m5{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);}
.m8{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);}
.m4{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);}
.ma{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m7{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-46.026000px;}
.v6{vertical-align:-11.952000px;}
.v3{vertical-align:-9.816000px;}
.v1{vertical-align:-4.674000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:11.958000px;}
.v4{vertical-align:18.912000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.002706px;}
.ls4{letter-spacing:3.509236px;}
.ls6{letter-spacing:14.543412px;}
.ls5{letter-spacing:14.546700px;}
.ls8{letter-spacing:18.179412px;}
.ls3{letter-spacing:25.557478px;}
.lsa{letter-spacing:28.096800px;}
.ls9{letter-spacing:29.094888px;}
.ls2{letter-spacing:52.748915px;}
.ls1{letter-spacing:52.754915px;}
.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;}
}
.wsa{word-spacing:-32.727300px;}
.ws12{word-spacing:-27.646998px;}
.ws4{word-spacing:-25.407085px;}
.ws19{word-spacing:-15.637104px;}
.ws21{word-spacing:-15.373388px;}
.ws6{word-spacing:-14.082230px;}
.ws0{word-spacing:-13.996153px;}
.ws9{word-spacing:-11.735224px;}
.ws2{word-spacing:-10.930918px;}
.ws7{word-spacing:-10.865464px;}
.ws14{word-spacing:-10.800009px;}
.ws16{word-spacing:-10.734554px;}
.ws1d{word-spacing:-10.669100px;}
.ws1e{word-spacing:-10.603645px;}
.ws15{word-spacing:-10.538191px;}
.ws20{word-spacing:-9.982525px;}
.ws17{word-spacing:-9.883645px;}
.wsc{word-spacing:-9.247945px;}
.ws10{word-spacing:-9.225176px;}
.wse{word-spacing:-9.194147px;}
.wsf{word-spacing:-9.032751px;}
.ws13{word-spacing:-8.925155px;}
.ws27{word-spacing:-6.430702px;}
.ws5{word-spacing:-6.358971px;}
.ws1f{word-spacing:-5.726424px;}
.ws23{word-spacing:-3.716062px;}
.ws25{word-spacing:-2.343338px;}
.ws11{word-spacing:-0.053798px;}
.ws18{word-spacing:-0.047821px;}
.ws8{word-spacing:0.000000px;}
.ws3{word-spacing:17.502340px;}
.wsd{word-spacing:18.399053px;}
.ws1b{word-spacing:20.990893px;}
.ws1c{word-spacing:20.996893px;}
.ws1{word-spacing:23.956384px;}
.ws1a{word-spacing:24.626893px;}
.ws22{word-spacing:39.995240px;}
.ws24{word-spacing:40.278382px;}
.ws26{word-spacing:68.308296px;}
.wsb{word-spacing:552.939955px;}
._0{margin-left:-7.230485px;}
._9{margin-left:-5.432732px;}
._25{margin-left:-3.552749px;}
._1{margin-left:-2.324084px;}
._3{margin-left:-1.128553px;}
._1f{width:1.008652px;}
._2{width:2.029093px;}
._e{width:5.019052px;}
._8{width:6.348211px;}
._16{width:7.499728px;}
._1b{width:17.017014px;}
._1a{width:23.996362px;}
._4{width:25.481296px;}
._1d{width:27.790379px;}
._a{width:29.684107px;}
._22{width:37.390825px;}
._21{width:40.493829px;}
._20{width:44.280242px;}
._23{width:46.763312px;}
._1e{width:56.361273px;}
._14{width:73.743841px;}
._19{width:75.108127px;}
._24{width:78.366623px;}
._18{width:82.041077px;}
._7{width:89.035139px;}
._1c{width:98.756880px;}
._11{width:116.306192px;}
._10{width:144.674651px;}
._d{width:191.909646px;}
._15{width:202.120589px;}
._12{width:324.146113px;}
._5{width:376.889315px;}
._13{width:440.608896px;}
._17{width:520.783726px;}
._6{width:539.833726px;}
._c{width:582.959462px;}
._f{width:640.818742px;}
._b{width:813.178063px;}
.fc8{color:rgb(29,29,27);}
.fc6{color:rgb(0,0,255);}
.fc4{color:rgb(251,251,253);}
.fc3{color:rgb(51,51,178);}
.fc7{color:rgb(157,157,156);}
.fc2{color:rgb(235,235,247);}
.fc5{color:rgb(214,214,240);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:9.012838px;}
.fs7{font-size:11.946010px;}
.fs8{font-size:14.292547px;}
.fs3{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y8{bottom:3.985500px;}
.y85{bottom:20.664137px;}
.y86{bottom:20.718996px;}
.y59{bottom:21.918000px;}
.y2d{bottom:22.455000px;}
.yb1{bottom:24.337500px;}
.y84{bottom:29.463127px;}
.y69{bottom:30.297000px;}
.y2c{bottom:32.914500px;}
.ya4{bottom:37.514985px;}
.y91{bottom:44.661259px;}
.y3c{bottom:45.454500px;}
.y6a{bottom:48.567000px;}
.yb0{bottom:49.144500px;}
.y83{bottom:51.405000px;}
.y87{bottom:51.807533px;}
.y2b{bottom:53.239500px;}
.y72{bottom:55.683000px;}
.y3b{bottom:56.961000px;}
.y17{bottom:61.999500px;}
.ya3{bottom:64.606053px;}
.y10{bottom:65.517000px;}
.y82{bottom:71.730000px;}
.y92{bottom:71.752327px;}
.y3a{bottom:73.399500px;}
.y2a{bottom:73.563000px;}
.yaf{bottom:73.951500px;}
.y71{bottom:76.008000px;}
.y88{bottom:78.844995px;}
.y68{bottom:79.204500px;}
.y7{bottom:81.988500px;}
.ybd{bottom:83.847000px;}
.y39{bottom:89.838000px;}
.ya2{bottom:91.648008px;}
.y79{bottom:93.342000px;}
.y29{bottom:93.886500px;}
.yae{bottom:94.275000px;}
.y70{bottom:96.331500px;}
.y81{bottom:96.537000px;}
.y93{bottom:98.794281px;}
.yf{bottom:103.191000px;}
.y67{bottom:104.011500px;}
.ybc{bottom:104.172000px;}
.y89{bottom:105.886949px;}
.ya5{bottom:105.940555px;}
.y38{bottom:106.276500px;}
.y16{bottom:106.869000px;}
.y43{bottom:108.046500px;}
.y78{bottom:113.665500px;}
.yad{bottom:114.598500px;}
.y4c{bottom:116.212500px;}
.y52{bottom:116.214000px;}
.y6f{bottom:116.655000px;}
.y80{bottom:116.860500px;}
.y28{bottom:118.693500px;}
.ya1{bottom:118.739970px;}
.y6{bottom:121.081500px;}
.y37{bottom:122.715000px;}
.yb6{bottom:123.305559px;}
.ybb{bottom:124.495500px;}
.y94{bottom:125.832638px;}
.y42{bottom:128.370000px;}
.yb5{bottom:128.679457px;}
.y66{bottom:128.818500px;}
.y8a{bottom:132.978911px;}
.y77{bottom:133.989000px;}
.yb4{bottom:134.109687px;}
.yac{bottom:134.922000px;}
.y58{bottom:135.768000px;}
.y51{bottom:136.537500px;}
.y7f{bottom:137.184000px;}
.y1e{bottom:138.129000px;}
.y27{bottom:139.017000px;}
.y36{bottom:139.153500px;}
.ye{bottom:140.865000px;}
.y5e{bottom:141.246000px;}
.y6e{bottom:141.462000px;}
.y5{bottom:144.244500px;}
.yba{bottom:144.819000px;}
.ya0{bottom:145.777890px;}
.y49{bottom:148.372500px;}
.y15{bottom:151.738500px;}
.y95{bottom:152.924164px;}
.y41{bottom:153.177000px;}
.y65{bottom:153.625500px;}
.y76{bottom:154.312500px;}
.yb3{bottom:154.735010px;}
.y4b{bottom:155.349000px;}
.y35{bottom:155.592000px;}
.y57{bottom:156.093000px;}
.y50{bottom:156.861000px;}
.y7e{bottom:157.507500px;}
.y1d{bottom:158.452500px;}
.y26{bottom:159.340500px;}
.yab{bottom:159.729000px;}
.y8b{bottom:160.016842px;}
.yb2{bottom:160.107507px;}
.y6d{bottom:161.785500px;}
.yb9{bottom:165.142500px;}
.y5d{bottom:166.053000px;}
.y46{bottom:166.573500px;}
.y34{bottom:167.098500px;}
.y64{bottom:171.558000px;}
.y9f{bottom:172.815821px;}
.y40{bottom:173.500500px;}
.y56{bottom:176.416500px;}
.y4f{bottom:177.184500px;}
.y4a{bottom:177.643500px;}
.yd{bottom:178.539000px;}
.y75{bottom:179.119500px;}
.y25{bottom:179.665500px;}
.y96{bottom:179.962094px;}
.yaa{bottom:180.052500px;}
.y48{bottom:181.125000px;}
.y4{bottom:181.636500px;}
.y6c{bottom:182.109000px;}
.y7d{bottom:182.314500px;}
.y33{bottom:183.537000px;}
.yb8{bottom:185.466000px;}
.y47{bottom:185.608500px;}
.y5c{bottom:186.378000px;}
.y8c{bottom:187.108368px;}
.y63{bottom:189.490500px;}
.y1c{bottom:190.006500px;}
.y3f{bottom:193.825500px;}
.yb7{bottom:196.161000px;}
.y14{bottom:196.606500px;}
.y55{bottom:196.740000px;}
.y4e{bottom:197.509500px;}
.y74{bottom:199.444500px;}
.y9e{bottom:199.907347px;}
.ya9{bottom:200.377500px;}
.y6b{bottom:202.434000px;}
.y7c{bottom:202.638000px;}
.y24{bottom:204.472500px;}
.y97{bottom:207.000025px;}
.y1b{bottom:210.330000px;}
.y62{bottom:210.412500px;}
.y5b{bottom:211.185000px;}
.y32{bottom:211.482000px;}
.y8d{bottom:214.146299px;}
.y3e{bottom:214.149000px;}
.yc{bottom:216.211500px;}
.y54{bottom:217.063500px;}
.y4d{bottom:217.833000px;}
.y73{bottom:219.768000px;}
.ya8{bottom:220.701000px;}
.y7b{bottom:222.961500px;}
.y23{bottom:224.796000px;}
.y9d{bottom:226.945267px;}
.y31{bottom:227.920500px;}
.y45{bottom:228.604500px;}
.y1a{bottom:230.655000px;}
.y61{bottom:232.828500px;}
.y98{bottom:234.091540px;}
.y3d{bottom:234.472500px;}
.y5a{bottom:235.992000px;}
.y53{bottom:237.387000px;}
.ya7{bottom:241.024500px;}
.y8e{bottom:241.184219px;}
.ya6{bottom:241.237814px;}
.y13{bottom:241.476000px;}
.y7a{bottom:243.286500px;}
.y30{bottom:244.359000px;}
.y22{bottom:245.119500px;}
.y3{bottom:245.607000px;}
.y44{bottom:248.929500px;}
.y19{bottom:250.978500px;}
.yb{bottom:253.885500px;}
.y9c{bottom:254.036793px;}
.y60{bottom:257.635500px;}
.y2f{bottom:260.797500px;}
.y99{bottom:261.129471px;}
.y2{bottom:265.930500px;}
.y8f{bottom:268.275745px;}
.y21{bottom:269.926500px;}
.y18{bottom:274.297500px;}
.y5f{bottom:277.959000px;}
.y9b{bottom:281.074718px;}
.y2e{bottom:285.690000px;}
.y12{bottom:286.345500px;}
.y9a{bottom:288.220992px;}
.y20{bottom:290.250000px;}
.y1{bottom:291.522000px;}
.ya{bottom:291.559500px;}
.y90{bottom:295.317244px;}
.y1f{bottom:310.573500px;}
.y11{bottom:331.215000px;}
.y9{bottom:352.585500px;}
.hc{height:0.000000px;}
.h15{height:8.508119px;}
.h16{height:8.964427px;}
.h11{height:9.150643px;}
.h14{height:9.200970px;}
.h12{height:10.948091px;}
.h6{height:31.095475px;}
.hb{height:31.609417px;}
.h4{height:35.865450px;}
.ha{height:40.348800px;}
.h5{height:41.460460px;}
.h17{height:43.053475px;}
.h7{height:44.416950px;}
.h8{height:44.422950px;}
.hf{height:44.831700px;}
.hd{height:46.865494px;}
.h3{height:49.090950px;}
.he{height:50.521417px;}
.h9{height:53.798400px;}
.h2{height:64.557900px;}
.h10{height:335.740140px;}
.h13{height:335.742360px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w2{width:271.985040px;}
.w3{width:294.650460px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x9{left:12.756000px;}
.xa{left:16.824000px;}
.xd{left:25.330500px;}
.xc{left:29.812500px;}
.x18{left:35.303445px;}
.x1a{left:37.703738px;}
.x1d{left:40.372872px;}
.x1c{left:41.491266px;}
.x1b{left:42.556059px;}
.xb{left:43.636500px;}
.x1e{left:46.929577px;}
.x2{left:48.538500px;}
.x8{left:51.060000px;}
.x20{left:55.515825px;}
.x1f{left:76.797427px;}
.x5{left:80.340000px;}
.x16{left:81.819000px;}
.x29{left:85.540893px;}
.x1{left:89.832000px;}
.x28{left:92.529948px;}
.x27{left:97.807478px;}
.x25{left:108.526888px;}
.x26{left:114.501173px;}
.x15{left:127.411500px;}
.x24{left:131.087668px;}
.x2b{left:141.836712px;}
.x23{left:148.363787px;}
.x22{left:158.979573px;}
.x19{left:162.764381px;}
.x2c{left:171.243914px;}
.xf{left:213.342000px;}
.x10{left:217.320000px;}
.x21{left:224.629703px;}
.x3{left:241.813500px;}
.x4{left:255.933000px;}
.x7{left:268.771500px;}
.x6{left:283.134000px;}
.x2d{left:290.598000px;}
.x2a{left:295.426500px;}
.x17{left:306.757500px;}
.x12{left:319.558500px;}
.x11{left:326.994000px;}
.x13{left:345.718500px;}
.x14{left:355.671000px;}
.xe{left:443.872500px;}
@media print{
.v2{vertical-align:-40.912000pt;}
.v6{vertical-align:-10.624000pt;}
.v3{vertical-align:-8.725333pt;}
.v1{vertical-align:-4.154667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.629333pt;}
.v4{vertical-align:16.810667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.002405pt;}
.ls4{letter-spacing:3.119321pt;}
.ls6{letter-spacing:12.927477pt;}
.ls5{letter-spacing:12.930400pt;}
.ls8{letter-spacing:16.159477pt;}
.ls3{letter-spacing:22.717758pt;}
.lsa{letter-spacing:24.974933pt;}
.ls9{letter-spacing:25.862122pt;}
.ls2{letter-spacing:46.887925pt;}
.ls1{letter-spacing:46.893258pt;}
.wsa{word-spacing:-29.090933pt;}
.ws12{word-spacing:-24.575109pt;}
.ws4{word-spacing:-22.584075pt;}
.ws19{word-spacing:-13.899648pt;}
.ws21{word-spacing:-13.665234pt;}
.ws6{word-spacing:-12.517538pt;}
.ws0{word-spacing:-12.441025pt;}
.ws9{word-spacing:-10.431311pt;}
.ws2{word-spacing:-9.716372pt;}
.ws7{word-spacing:-9.658190pt;}
.ws14{word-spacing:-9.600008pt;}
.ws16{word-spacing:-9.541826pt;}
.ws1d{word-spacing:-9.483644pt;}
.ws1e{word-spacing:-9.425462pt;}
.ws15{word-spacing:-9.367281pt;}
.ws20{word-spacing:-8.873356pt;}
.ws17{word-spacing:-8.785462pt;}
.wsc{word-spacing:-8.220396pt;}
.ws10{word-spacing:-8.200156pt;}
.wse{word-spacing:-8.172575pt;}
.wsf{word-spacing:-8.029112pt;}
.ws13{word-spacing:-7.933471pt;}
.ws27{word-spacing:-5.716180pt;}
.ws5{word-spacing:-5.652419pt;}
.ws1f{word-spacing:-5.090155pt;}
.ws23{word-spacing:-3.303166pt;}
.ws25{word-spacing:-2.082967pt;}
.ws11{word-spacing:-0.047821pt;}
.ws18{word-spacing:-0.042507pt;}
.ws8{word-spacing:0.000000pt;}
.ws3{word-spacing:15.557635pt;}
.wsd{word-spacing:16.354714pt;}
.ws1b{word-spacing:18.658572pt;}
.ws1c{word-spacing:18.663905pt;}
.ws1{word-spacing:21.294563pt;}
.ws1a{word-spacing:21.890572pt;}
.ws22{word-spacing:35.551325pt;}
.ws24{word-spacing:35.803006pt;}
.ws26{word-spacing:60.718485pt;}
.wsb{word-spacing:491.502182pt;}
._0{margin-left:-6.427098pt;}
._9{margin-left:-4.829095pt;}
._25{margin-left:-3.157999pt;}
._1{margin-left:-2.065853pt;}
._3{margin-left:-1.003158pt;}
._1f{width:0.896579pt;}
._2{width:1.803638pt;}
._e{width:4.461380pt;}
._8{width:5.642854pt;}
._16{width:6.666425pt;}
._1b{width:15.126235pt;}
._1a{width:21.330099pt;}
._4{width:22.650041pt;}
._1d{width:24.702559pt;}
._a{width:26.385873pt;}
._22{width:33.236289pt;}
._21{width:35.994515pt;}
._20{width:39.360215pt;}
._23{width:41.567388pt;}
._1e{width:50.098910pt;}
._14{width:65.550081pt;}
._19{width:66.762780pt;}
._24{width:69.659220pt;}
._18{width:72.925402pt;}
._7{width:79.142346pt;}
._1c{width:87.783893pt;}
._11{width:103.383282pt;}
._10{width:128.599690pt;}
._d{width:170.586352pt;}
._15{width:179.662746pt;}
._12{width:288.129878pt;}
._5{width:335.012724pt;}
._13{width:391.652352pt;}
._17{width:462.918868pt;}
._6{width:479.852201pt;}
._c{width:518.186189pt;}
._f{width:569.616660pt;}
._b{width:722.824945pt;}
.fs9{font-size:8.011411pt;}
.fs7{font-size:10.618675pt;}
.fs8{font-size:12.704486pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.542667pt;}
.y85{bottom:18.368122pt;}
.y86{bottom:18.416885pt;}
.y59{bottom:19.482667pt;}
.y2d{bottom:19.960000pt;}
.yb1{bottom:21.633333pt;}
.y84{bottom:26.189446pt;}
.y69{bottom:26.930667pt;}
.y2c{bottom:29.257333pt;}
.ya4{bottom:33.346654pt;}
.y91{bottom:39.698897pt;}
.y3c{bottom:40.404000pt;}
.y6a{bottom:43.170667pt;}
.yb0{bottom:43.684000pt;}
.y83{bottom:45.693333pt;}
.y87{bottom:46.051140pt;}
.y2b{bottom:47.324000pt;}
.y72{bottom:49.496000pt;}
.y3b{bottom:50.632000pt;}
.y17{bottom:55.110667pt;}
.ya3{bottom:57.427603pt;}
.y10{bottom:58.237333pt;}
.y82{bottom:63.760000pt;}
.y92{bottom:63.779846pt;}
.y3a{bottom:65.244000pt;}
.y2a{bottom:65.389333pt;}
.yaf{bottom:65.734667pt;}
.y71{bottom:67.562667pt;}
.y88{bottom:70.084440pt;}
.y68{bottom:70.404000pt;}
.y7{bottom:72.878667pt;}
.ybd{bottom:74.530667pt;}
.y39{bottom:79.856000pt;}
.ya2{bottom:81.464896pt;}
.y79{bottom:82.970667pt;}
.y29{bottom:83.454667pt;}
.yae{bottom:83.800000pt;}
.y70{bottom:85.628000pt;}
.y81{bottom:85.810667pt;}
.y93{bottom:87.817139pt;}
.yf{bottom:91.725333pt;}
.y67{bottom:92.454667pt;}
.ybc{bottom:92.597333pt;}
.y89{bottom:94.121733pt;}
.ya5{bottom:94.169382pt;}
.y38{bottom:94.468000pt;}
.y16{bottom:94.994667pt;}
.y43{bottom:96.041333pt;}
.y78{bottom:101.036000pt;}
.yad{bottom:101.865333pt;}
.y4c{bottom:103.300000pt;}
.y52{bottom:103.301333pt;}
.y6f{bottom:103.693333pt;}
.y80{bottom:103.876000pt;}
.y28{bottom:105.505333pt;}
.ya1{bottom:105.546640pt;}
.y6{bottom:107.628000pt;}
.y37{bottom:109.080000pt;}
.yb6{bottom:109.604941pt;}
.ybb{bottom:110.662667pt;}
.y94{bottom:111.851233pt;}
.y42{bottom:114.106667pt;}
.yb5{bottom:114.381740pt;}
.y66{bottom:114.505333pt;}
.y8a{bottom:118.203477pt;}
.y77{bottom:119.101333pt;}
.yb4{bottom:119.208610pt;}
.yac{bottom:119.930667pt;}
.y58{bottom:120.682667pt;}
.y51{bottom:121.366667pt;}
.y7f{bottom:121.941333pt;}
.y1e{bottom:122.781333pt;}
.y27{bottom:123.570667pt;}
.y36{bottom:123.692000pt;}
.ye{bottom:125.213333pt;}
.y5e{bottom:125.552000pt;}
.y6e{bottom:125.744000pt;}
.y5{bottom:128.217333pt;}
.yba{bottom:128.728000pt;}
.ya0{bottom:129.580347pt;}
.y49{bottom:131.886667pt;}
.y15{bottom:134.878667pt;}
.y95{bottom:135.932590pt;}
.y41{bottom:136.157333pt;}
.y65{bottom:136.556000pt;}
.y76{bottom:137.166667pt;}
.yb3{bottom:137.542231pt;}
.y4b{bottom:138.088000pt;}
.y35{bottom:138.304000pt;}
.y57{bottom:138.749333pt;}
.y50{bottom:139.432000pt;}
.y7e{bottom:140.006667pt;}
.y1d{bottom:140.846667pt;}
.y26{bottom:141.636000pt;}
.yab{bottom:141.981333pt;}
.y8b{bottom:142.237193pt;}
.yb2{bottom:142.317784pt;}
.y6d{bottom:143.809333pt;}
.yb9{bottom:146.793333pt;}
.y5d{bottom:147.602667pt;}
.y46{bottom:148.065333pt;}
.y34{bottom:148.532000pt;}
.y64{bottom:152.496000pt;}
.y9f{bottom:153.614063pt;}
.y40{bottom:154.222667pt;}
.y56{bottom:156.814667pt;}
.y4f{bottom:157.497333pt;}
.y4a{bottom:157.905333pt;}
.yd{bottom:158.701333pt;}
.y75{bottom:159.217333pt;}
.y25{bottom:159.702667pt;}
.y96{bottom:159.966306pt;}
.yaa{bottom:160.046667pt;}
.y48{bottom:161.000000pt;}
.y4{bottom:161.454667pt;}
.y6c{bottom:161.874667pt;}
.y7d{bottom:162.057333pt;}
.y33{bottom:163.144000pt;}
.yb8{bottom:164.858667pt;}
.y47{bottom:164.985333pt;}
.y5c{bottom:165.669333pt;}
.y8c{bottom:166.318549pt;}
.y63{bottom:168.436000pt;}
.y1c{bottom:168.894667pt;}
.y3f{bottom:172.289333pt;}
.yb7{bottom:174.365333pt;}
.y14{bottom:174.761333pt;}
.y55{bottom:174.880000pt;}
.y4e{bottom:175.564000pt;}
.y74{bottom:177.284000pt;}
.y9e{bottom:177.695419pt;}
.ya9{bottom:178.113333pt;}
.y6b{bottom:179.941333pt;}
.y7c{bottom:180.122667pt;}
.y24{bottom:181.753333pt;}
.y97{bottom:184.000023pt;}
.y1b{bottom:186.960000pt;}
.y62{bottom:187.033333pt;}
.y5b{bottom:187.720000pt;}
.y32{bottom:187.984000pt;}
.y8d{bottom:190.352266pt;}
.y3e{bottom:190.354667pt;}
.yc{bottom:192.188000pt;}
.y54{bottom:192.945333pt;}
.y4d{bottom:193.629333pt;}
.y73{bottom:195.349333pt;}
.ya8{bottom:196.178667pt;}
.y7b{bottom:198.188000pt;}
.y23{bottom:199.818667pt;}
.y9d{bottom:201.729126pt;}
.y31{bottom:202.596000pt;}
.y45{bottom:203.204000pt;}
.y1a{bottom:205.026667pt;}
.y61{bottom:206.958667pt;}
.y98{bottom:208.081369pt;}
.y3d{bottom:208.420000pt;}
.y5a{bottom:209.770667pt;}
.y53{bottom:211.010667pt;}
.ya7{bottom:214.244000pt;}
.y8e{bottom:214.385973pt;}
.ya6{bottom:214.433612pt;}
.y13{bottom:214.645333pt;}
.y7a{bottom:216.254667pt;}
.y30{bottom:217.208000pt;}
.y22{bottom:217.884000pt;}
.y3{bottom:218.317333pt;}
.y44{bottom:221.270667pt;}
.y19{bottom:223.092000pt;}
.yb{bottom:225.676000pt;}
.y9c{bottom:225.810482pt;}
.y60{bottom:229.009333pt;}
.y2f{bottom:231.820000pt;}
.y99{bottom:232.115086pt;}
.y2{bottom:236.382667pt;}
.y8f{bottom:238.467329pt;}
.y21{bottom:239.934667pt;}
.y18{bottom:243.820000pt;}
.y5f{bottom:247.074667pt;}
.y9b{bottom:249.844194pt;}
.y2e{bottom:253.946667pt;}
.y12{bottom:254.529333pt;}
.y9a{bottom:256.196437pt;}
.y20{bottom:258.000000pt;}
.y1{bottom:259.130667pt;}
.ya{bottom:259.164000pt;}
.y90{bottom:262.504217pt;}
.y1f{bottom:276.065333pt;}
.y11{bottom:294.413333pt;}
.y9{bottom:313.409333pt;}
.hc{height:0.000000pt;}
.h15{height:7.562772pt;}
.h16{height:7.968379pt;}
.h11{height:8.133905pt;}
.h14{height:8.178640pt;}
.h12{height:9.731637pt;}
.h6{height:27.640422pt;}
.hb{height:28.097259pt;}
.h4{height:31.880400pt;}
.ha{height:35.865600pt;}
.h5{height:36.853742pt;}
.h17{height:38.269756pt;}
.h7{height:39.481733pt;}
.h8{height:39.487067pt;}
.hf{height:39.850400pt;}
.hd{height:41.658217pt;}
.h3{height:43.636400pt;}
.he{height:44.907926pt;}
.h9{height:47.820800pt;}
.h2{height:57.384800pt;}
.h10{height:298.435680pt;}
.h13{height:298.437653pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w2{width:241.764480pt;}
.w3{width:261.911520pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x9{left:11.338667pt;}
.xa{left:14.954667pt;}
.xd{left:22.516000pt;}
.xc{left:26.500000pt;}
.x18{left:31.380840pt;}
.x1a{left:33.514434pt;}
.x1d{left:35.886997pt;}
.x1c{left:36.881125pt;}
.x1b{left:37.827608pt;}
.xb{left:38.788000pt;}
.x1e{left:41.715180pt;}
.x2{left:43.145333pt;}
.x8{left:45.386667pt;}
.x20{left:49.347400pt;}
.x1f{left:68.264379pt;}
.x5{left:71.413333pt;}
.x16{left:72.728000pt;}
.x29{left:76.036349pt;}
.x1{left:79.850667pt;}
.x28{left:82.248842pt;}
.x27{left:86.939980pt;}
.x25{left:96.468345pt;}
.x26{left:101.778821pt;}
.x15{left:113.254667pt;}
.x24{left:116.522372pt;}
.x2b{left:126.077078pt;}
.x23{left:131.878921pt;}
.x22{left:141.315176pt;}
.x19{left:144.679450pt;}
.x2c{left:152.216813pt;}
.xf{left:189.637333pt;}
.x10{left:193.173333pt;}
.x21{left:199.670847pt;}
.x3{left:214.945333pt;}
.x4{left:227.496000pt;}
.x7{left:238.908000pt;}
.x6{left:251.674667pt;}
.x2d{left:258.309333pt;}
.x2a{left:262.601333pt;}
.x17{left:272.673333pt;}
.x12{left:284.052000pt;}
.x11{left:290.661333pt;}
.x13{left:307.305333pt;}
.x14{left:316.152000pt;}
.xe{left:394.553333pt;}
}




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