
    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_1dce7a75bc17536bff240731.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_e1c8d46b29d5c40fcc927c48.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_a785061e6a2efced15923a32.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_11d08d4576f9cf3bfa2fc73d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_6d680be81d7acd50fa318c82.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926270;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_9c0c9915c2997d99b7c90632.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_8585787754cd1ae31a9c3c9f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926270;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_6c0ecb878178771e118b1e7b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971191;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_b66470c9a6de791255762f33.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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.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);}
.m1{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);}
.m0{transform:matrix(0.254862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254862,0.000000,0.000000,0.250000,0,0);}
.va{vertical-align:-30.959988px;}
.v6{vertical-align:-17.279993px;}
.vb{vertical-align:-14.399994px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:17.279993px;}
.v1{vertical-align:21.599991px;}
.v8{vertical-align:38.879984px;}
.v9{vertical-align:48.239981px;}
.v3{vertical-align:56.159978px;}
.v2{vertical-align:64.079974px;}
.v4{vertical-align:87.119965px;}
.v5{vertical-align:120.239952px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:1.760399px;}
.lsc{letter-spacing:4.125598px;}
.lsb{letter-spacing:4.705198px;}
.ls6{letter-spacing:5.104798px;}
.lsf{letter-spacing:12.995995px;}
.ls5{letter-spacing:13.811034px;}
.ls2{letter-spacing:14.408634px;}
.ls9{letter-spacing:17.288633px;}
.ls4{letter-spacing:18.432713px;}
.ls8{letter-spacing:22.752711px;}
.lsd{letter-spacing:22.903191px;}
.ls1{letter-spacing:24.515990px;}
.ls7{letter-spacing:27.745189px;}
.ls10{letter-spacing:32.435987px;}
.lse{letter-spacing:49.091020px;}
.ls3{letter-spacing:58.183177px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-55.429898px;}
.wse{word-spacing:-41.641584px;}
.wsa{word-spacing:-37.723078px;}
.ws6{word-spacing:-37.003079px;}
.wsd{word-spacing:-35.360989px;}
.ws1{word-spacing:-29.777748px;}
.ws7{word-spacing:-28.224707px;}
.ws5{word-spacing:-26.784708px;}
.ws4c{word-spacing:-26.593909px;}
.ws8{word-spacing:-26.064708px;}
.ws11{word-spacing:-19.038232px;}
.ws0{word-spacing:-18.036556px;}
.ws9{word-spacing:-16.416064px;}
.ws4b{word-spacing:-15.412314px;}
.ws2d{word-spacing:-12.203995px;}
.wsc{word-spacing:-12.095978px;}
.ws15{word-spacing:-8.135997px;}
.wsb{word-spacing:-7.344716px;}
.ws27{word-spacing:-6.183358px;}
.ws44{word-spacing:-2.626570px;}
.ws40{word-spacing:-1.835252px;}
.ws42{word-spacing:-1.344217px;}
.ws41{word-spacing:-1.229735px;}
.ws43{word-spacing:-1.115253px;}
.ws30{word-spacing:-0.917963px;}
.ws14{word-spacing:-0.889237px;}
.ws45{word-spacing:-0.879846px;}
.ws22{word-spacing:-0.811399px;}
.ws1e{word-spacing:-0.624218px;}
.ws39{word-spacing:-0.509736px;}
.ws4a{word-spacing:-0.106552px;}
.ws3{word-spacing:0.000000px;}
.ws18{word-spacing:0.095781px;}
.ws3e{word-spacing:0.210179px;}
.ws49{word-spacing:0.560190px;}
.ws47{word-spacing:1.280178px;}
.ws38{word-spacing:2.710842px;}
.ws3f{word-spacing:4.228594px;}
.ws21{word-spacing:4.415775px;}
.ws17{word-spacing:5.250172px;}
.ws12{word-spacing:5.855773px;}
.ws1d{word-spacing:6.021389px;}
.ws48{word-spacing:6.373461px;}
.ws37{word-spacing:7.410253px;}
.ws35{word-spacing:8.470834px;}
.ws46{word-spacing:8.533486px;}
.ws3d{word-spacing:10.895766px;}
.ws34{word-spacing:13.013980px;}
.wsf{word-spacing:13.221378px;}
.ws3b{word-spacing:14.610159px;}
.ws2f{word-spacing:15.168248px;}
.ws13{word-spacing:15.935759px;}
.ws20{word-spacing:18.815755px;}
.ws1b{word-spacing:20.975752px;}
.ws33{word-spacing:21.924715px;}
.ws3a{word-spacing:22.415750px;}
.ws16{word-spacing:34.655732px;}
.ws1c{word-spacing:36.815729px;}
.ws2{word-spacing:38.933269px;}
.ws36{word-spacing:38.975726px;}
.ws19{word-spacing:42.575721px;}
.ws31{word-spacing:43.295720px;}
.ws10{word-spacing:44.015719px;}
.ws3c{word-spacing:44.861741px;}
.ws2e{word-spacing:49.170110px;}
.ws2b{word-spacing:50.495710px;}
.ws23{word-spacing:62.272861px;}
.ws1a{word-spacing:63.041063px;}
.ws1f{word-spacing:75.508494px;}
.ws2a{word-spacing:99.130960px;}
.ws26{word-spacing:108.922984px;}
.ws32{word-spacing:116.129848px;}
.ws24{word-spacing:117.562980px;}
.ws2c{word-spacing:118.630933px;}
.ws25{word-spacing:131.962944px;}
.ws28{word-spacing:177.224876px;}
.ws29{word-spacing:471.383809px;}
._27{margin-left:-7.303434px;}
._18{margin-left:-5.280001px;}
._2{margin-left:-3.743999px;}
._1{margin-left:-2.015999px;}
._3{margin-left:-1.008000px;}
._0{width:1.065600px;}
._11{width:2.340880px;}
._7{width:3.715109px;}
._5{width:9.282440px;}
._26{width:15.007065px;}
._25{width:16.346936px;}
._23{width:17.635748px;}
._19{width:19.283076px;}
._9{width:20.788907px;}
._24{width:21.955771px;}
._f{width:23.103545px;}
._b{width:24.388902px;}
._14{width:26.381338px;}
._20{width:27.470242px;}
._22{width:30.946283px;}
._1a{width:32.360339px;}
._13{width:33.936399px;}
._8{width:35.977078px;}
._a{width:37.936711px;}
._17{width:41.783984px;}
._21{width:42.874351px;}
._c{width:46.760970px;}
._d{width:52.934596px;}
._10{width:54.376321px;}
._4{width:57.741843px;}
._e{width:59.327412px;}
._1f{width:63.355317px;}
._12{width:65.145363px;}
._16{width:83.382534px;}
._1c{width:93.090071px;}
._1b{width:100.232655px;}
._1e{width:138.822580px;}
._1d{width:158.113402px;}
._15{width:756.374097px;}
._6{width:774.374090px;}
.fc5{color:transparent;}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.359989px;}
.fsa{font-size:30.239988px;}
.fs8{font-size:33.119987px;}
.fs5{font-size:35.999986px;}
.fs6{font-size:53.999978px;}
.fsd{font-size:55.439978px;}
.fsb{font-size:59.759976px;}
.fs7{font-size:61.199976px;}
.fsf{font-size:66.959973px;}
.fs2{font-size:71.999971px;}
.fse{font-size:77.759969px;}
.fs0{font-size:79.807768px;}
.fs4{font-size:84.239966px;}
.fs3{font-size:131.759947px;}
.fs1{font-size:143.999942px;}
.fsc{font-size:239.759904px;}
.y0{bottom:0.000000px;}
.y8a{bottom:4.139143px;}
.y2{bottom:33.959986px;}
.y13{bottom:164.819934px;}
.y80{bottom:170.219932px;}
.y12{bottom:175.619930px;}
.y7f{bottom:181.019928px;}
.y90{bottom:193.439923px;}
.y81{bottom:201.179920px;}
.y11{bottom:205.139918px;}
.y3b{bottom:211.799915px;}
.y35{bottom:218.639913px;}
.y10{bottom:235.379906px;}
.y3a{bottom:236.999905px;}
.y5e{bottom:237.899905px;}
.y28{bottom:239.699904px;}
.y34{bottom:243.839902px;}
.y20{bottom:252.299899px;}
.y26{bottom:253.739899px;}
.y39{bottom:262.199895px;}
.y5d{bottom:263.099895px;}
.yf{bottom:265.439894px;}
.y8f{bottom:267.059893px;}
.y33{bottom:269.039892px;}
.y27{bottom:269.759892px;}
.y45{bottom:272.819891px;}
.y25{bottom:282.719887px;}
.y71{bottom:287.399885px;}
.y5c{bottom:288.299885px;}
.y1f{bottom:289.019884px;}
.y44{bottom:295.499882px;}
.ye{bottom:295.679882px;}
.y70{bottom:310.079876px;}
.y24{bottom:312.779875px;}
.y5b{bottom:313.499875px;}
.y43{bottom:318.179873px;}
.y64{bottom:318.359873px;}
.y1e{bottom:319.259872px;}
.yd{bottom:325.919870px;}
.y23{bottom:326.459869px;}
.y6f{bottom:332.759867px;}
.y7e{bottom:338.339865px;}
.y22{bottom:340.499864px;}
.y42{bottom:340.859864px;}
.y63{bottom:341.039864px;}
.y1d{bottom:341.939863px;}
.y6e{bottom:355.439858px;}
.yc{bottom:355.979858px;}
.y77{bottom:356.699857px;}
.y41{bottom:371.099852px;}
.y1c{bottom:372.179851px;}
.y6d{bottom:378.119849px;}
.y76{bottom:379.379848px;}
.yb{bottom:386.219846px;}
.y40{bottom:393.779842px;}
.y1b{bottom:394.859842px;}
.y21{bottom:406.379837px;}
.y8e{bottom:414.119834px;}
.ya{bottom:416.459833px;}
.y9{bottom:460.379816px;}
.y8d{bottom:469.199812px;}
.y8c{bottom:524.279790px;}
.y8b{bottom:618.059753px;}
.y89{bottom:637.680600px;}
.y88{bottom:700.679720px;}
.y1a{bottom:713.999714px;}
.y19{bottom:724.799710px;}
.y54{bottom:738.299705px;}
.y52{bottom:749.459700px;}
.y87{bottom:755.759698px;}
.y4b{bottom:758.279697px;}
.y59{bottom:784.919686px;}
.y62{bottom:787.079685px;}
.y6c{bottom:787.259685px;}
.y32{bottom:787.979685px;}
.y4c{bottom:790.319684px;}
.y31{bottom:802.019679px;}
.y6b{bottom:807.419677px;}
.y58{bottom:810.119676px;}
.y61{bottom:812.279675px;}
.y3f{bottom:812.819675px;}
.y8{bottom:819.839672px;}
.y4d{bottom:822.179671px;}
.y6a{bottom:827.579669px;}
.y7d{bottom:828.479669px;}
.y86{bottom:829.379668px;}
.y75{bottom:829.739668px;}
.y53{bottom:830.279668px;}
.y18{bottom:830.459668px;}
.y57{bottom:835.319666px;}
.y30{bottom:836.759665px;}
.y60{bottom:837.479665px;}
.y3e{bottom:838.019665px;}
.y7{bottom:839.279664px;}
.y2f{bottom:846.479661px;}
.y69{bottom:847.739661px;}
.y2e{bottom:850.799660px;}
.y17{bottom:853.139659px;}
.y4e{bottom:854.219658px;}
.y74{bottom:859.979656px;}
.y5f{bottom:862.679655px;}
.y3d{bottom:863.219655px;}
.y7c{bottom:864.479654px;}
.y68{bottom:875.459650px;}
.y6{bottom:877.799649px;}
.y2c{bottom:879.599648px;}
.y7b{bottom:882.479647px;}
.y85{bottom:884.459646px;}
.y5a{bottom:884.819646px;}
.y4f{bottom:886.259645px;}
.y3c{bottom:888.419645px;}
.y2d{bottom:889.319644px;}
.y73{bottom:890.219644px;}
.y2a{bottom:893.639643px;}
.y67{bottom:895.619642px;}
.y38{bottom:897.599641px;}
.y7a{bottom:900.479640px;}
.y4a{bottom:903.899638px;}
.y2b{bottom:909.659636px;}
.y72{bottom:912.899635px;}
.y16{bottom:913.439635px;}
.y66{bottom:915.779634px;}
.y5{bottom:916.679633px;}
.y50{bottom:918.119633px;}
.y79{bottom:918.479633px;}
.y49{bottom:920.639632px;}
.y37{bottom:922.799631px;}
.y65{bottom:935.939626px;}
.y78{bottom:936.479625px;}
.y48{bottom:937.379625px;}
.y36{bottom:947.999621px;}
.y51{bottom:950.159620px;}
.y47{bottom:954.119618px;}
.y4{bottom:955.559618px;}
.y84{bottom:958.079617px;}
.y56{bottom:958.619617px;}
.y29{bottom:959.519616px;}
.y46{bottom:970.679612px;}
.y15{bottom:973.919610px;}
.y55{bottom:980.399608px;}
.y3{bottom:994.439602px;}
.y14{bottom:1009.559596px;}
.y83{bottom:1013.159595px;}
.y82{bottom:1068.239573px;}
.y91{bottom:1081.199568px;}
.y1{bottom:1238.339505px;}
.h12{height:22.563975px;}
.h10{height:22.640616px;}
.h1a{height:23.580000px;}
.h6{height:24.609365px;}
.h13{height:24.939131px;}
.h11{height:27.314286px;}
.h17{height:29.689441px;}
.h19{height:39.685062px;}
.he{height:43.180647px;}
.h9{height:44.534162px;}
.h18{height:44.555256px;}
.h1c{height:46.492716px;}
.h7{height:51.289433px;}
.h14{height:52.009432px;}
.h3{height:59.378882px;}
.hd{height:59.436890px;}
.h1b{height:59.459039px;}
.h15{height:62.327788px;}
.h1{height:65.818027px;}
.h5{height:69.473293px;}
.h8{height:87.859652px;}
.h4{height:90.070276px;}
.h2{height:98.437461px;}
.hc{height:115.596868px;}
.ha{height:123.516865px;}
.hf{height:140.796858px;}
.hb{height:179.676842px;}
.h16{height:197.731679px;}
.h0{height:1263.000000px;}
.w2{width:9.360000px;}
.w1{width:82.800000px;}
.w3{width:448.920000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x26{left:116.099954px;}
.x31{left:124.919950px;}
.x27{left:129.599948px;}
.x25{left:130.859948px;}
.x32{left:135.539946px;}
.x9{left:141.119944px;}
.x42{left:144.899942px;}
.xe{left:151.379939px;}
.x10{left:154.619938px;}
.x2a{left:168.299933px;}
.x29{left:170.279932px;}
.x28{left:172.439931px;}
.x12{left:174.779930px;}
.x38{left:181.799927px;}
.x3c{left:182.879927px;}
.x3a{left:186.299925px;}
.x13{left:192.059923px;}
.x3f{left:196.919921px;}
.x3b{left:199.799920px;}
.x33{left:205.919918px;}
.xd{left:214.019914px;}
.x3e{left:226.259909px;}
.x19{left:228.419909px;}
.x43{left:244.440000px;}
.x44{left:249.659900px;}
.x1a{left:266.399893px;}
.x1b{left:268.379893px;}
.x21{left:280.079888px;}
.x17{left:282.959887px;}
.x41{left:285.119886px;}
.x3d{left:301.139880px;}
.xf{left:302.399879px;}
.x40{left:304.739878px;}
.x1d{left:306.539877px;}
.x18{left:320.939872px;}
.xc{left:322.379871px;}
.x46{left:325.619870px;}
.xa{left:334.259866px;}
.xb{left:338.939864px;}
.x3{left:350.639860px;}
.x1e{left:360.359856px;}
.x4{left:363.059855px;}
.x5{left:364.319854px;}
.x6{left:368.999852px;}
.x7{left:373.499851px;}
.x15{left:374.579850px;}
.x16{left:376.199850px;}
.x1f{left:385.379846px;}
.x8{left:395.099842px;}
.x2d{left:405.359838px;}
.x2b{left:409.499836px;}
.x24{left:411.479835px;}
.x2c{left:431.279827px;}
.x20{left:451.619819px;}
.x36{left:482.399807px;}
.x23{left:485.459806px;}
.x37{left:495.899802px;}
.x22{left:496.979801px;}
.x45{left:536.219786px;}
.x2f{left:541.979783px;}
.x11{left:574.019770px;}
.x34{left:583.379767px;}
.x2e{left:592.559763px;}
.x14{left:593.639763px;}
.x35{left:598.859760px;}
.x1c{left:653.219739px;}
.x30{left:709.739716px;}
.x1{left:781.559687px;}
.x39{left:860.939589px;}
.x2{left:871.199584px;}
@media print{
.va{vertical-align:-27.519989pt;}
.v6{vertical-align:-15.359994pt;}
.vb{vertical-align:-12.799995pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:15.359994pt;}
.v1{vertical-align:19.199992pt;}
.v8{vertical-align:34.559986pt;}
.v9{vertical-align:42.879983pt;}
.v3{vertical-align:49.919980pt;}
.v2{vertical-align:56.959977pt;}
.v4{vertical-align:77.439969pt;}
.v5{vertical-align:106.879957pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:1.564799pt;}
.lsc{letter-spacing:3.667199pt;}
.lsb{letter-spacing:4.182398pt;}
.ls6{letter-spacing:4.537598pt;}
.lsf{letter-spacing:11.551995pt;}
.ls5{letter-spacing:12.276475pt;}
.ls2{letter-spacing:12.807675pt;}
.ls9{letter-spacing:15.367674pt;}
.ls4{letter-spacing:16.384633pt;}
.ls8{letter-spacing:20.224632pt;}
.lsd{letter-spacing:20.358392pt;}
.ls1{letter-spacing:21.791991pt;}
.ls7{letter-spacing:24.662390pt;}
.ls10{letter-spacing:28.831988pt;}
.lse{letter-spacing:43.636463pt;}
.ls3{letter-spacing:51.718379pt;}
.ws4{word-spacing:-49.271020pt;}
.wse{word-spacing:-37.014742pt;}
.wsa{word-spacing:-33.531625pt;}
.ws6{word-spacing:-32.891626pt;}
.wsd{word-spacing:-31.431991pt;}
.ws1{word-spacing:-26.469109pt;}
.ws7{word-spacing:-25.088629pt;}
.ws5{word-spacing:-23.808629pt;}
.ws4c{word-spacing:-23.639031pt;}
.ws8{word-spacing:-23.168629pt;}
.ws11{word-spacing:-16.922873pt;}
.ws0{word-spacing:-16.032494pt;}
.ws9{word-spacing:-14.592057pt;}
.ws4b{word-spacing:-13.699835pt;}
.ws2d{word-spacing:-10.847996pt;}
.wsc{word-spacing:-10.751980pt;}
.ws15{word-spacing:-7.231997pt;}
.wsb{word-spacing:-6.528636pt;}
.ws27{word-spacing:-5.496318pt;}
.ws44{word-spacing:-2.334729pt;}
.ws40{word-spacing:-1.631335pt;}
.ws42{word-spacing:-1.194860pt;}
.ws41{word-spacing:-1.093098pt;}
.ws43{word-spacing:-0.991336pt;}
.ws30{word-spacing:-0.815967pt;}
.ws14{word-spacing:-0.790433pt;}
.ws45{word-spacing:-0.782085pt;}
.ws22{word-spacing:-0.721244pt;}
.ws1e{word-spacing:-0.554861pt;}
.ws39{word-spacing:-0.453099pt;}
.ws4a{word-spacing:-0.094713pt;}
.ws3{word-spacing:0.000000pt;}
.ws18{word-spacing:0.085139pt;}
.ws3e{word-spacing:0.186826pt;}
.ws49{word-spacing:0.497947pt;}
.ws47{word-spacing:1.137936pt;}
.ws38{word-spacing:2.409637pt;}
.ws3f{word-spacing:3.758750pt;}
.ws21{word-spacing:3.925133pt;}
.ws17{word-spacing:4.666819pt;}
.ws12{word-spacing:5.205131pt;}
.ws1d{word-spacing:5.352345pt;}
.ws48{word-spacing:5.665299pt;}
.ws37{word-spacing:6.586891pt;}
.ws35{word-spacing:7.529630pt;}
.ws46{word-spacing:7.585320pt;}
.ws3d{word-spacing:9.685125pt;}
.ws34{word-spacing:11.567982pt;}
.wsf{word-spacing:11.752336pt;}
.ws3b{word-spacing:12.986808pt;}
.ws2f{word-spacing:13.482887pt;}
.ws13{word-spacing:14.165119pt;}
.ws20{word-spacing:16.725115pt;}
.ws1b{word-spacing:18.645113pt;}
.ws33{word-spacing:19.488635pt;}
.ws3a{word-spacing:19.925111pt;}
.ws16{word-spacing:30.805096pt;}
.ws1c{word-spacing:32.725093pt;}
.ws2{word-spacing:34.607351pt;}
.ws36{word-spacing:34.645090pt;}
.ws19{word-spacing:37.845086pt;}
.ws31{word-spacing:38.485085pt;}
.ws10{word-spacing:39.125084pt;}
.ws3c{word-spacing:39.877103pt;}
.ws2e{word-spacing:43.706765pt;}
.ws2b{word-spacing:44.885076pt;}
.ws23{word-spacing:55.353655pt;}
.ws1a{word-spacing:56.036500pt;}
.ws1f{word-spacing:67.118661pt;}
.ws2a{word-spacing:88.116409pt;}
.ws26{word-spacing:96.820430pt;}
.ws32{word-spacing:103.226532pt;}
.ws24{word-spacing:104.500427pt;}
.ws2c{word-spacing:105.449718pt;}
.ws25{word-spacing:117.300395pt;}
.ws28{word-spacing:157.533223pt;}
.ws29{word-spacing:419.007831pt;}
._27{margin-left:-6.491942pt;}
._18{margin-left:-4.693334pt;}
._2{margin-left:-3.327999pt;}
._1{margin-left:-1.791999pt;}
._3{margin-left:-0.896000pt;}
._0{width:0.947200pt;}
._11{width:2.080783pt;}
._7{width:3.302319pt;}
._5{width:8.251058pt;}
._26{width:13.339614pt;}
._25{width:14.530610pt;}
._23{width:15.676221pt;}
._19{width:17.140512pt;}
._9{width:18.479029pt;}
._24{width:19.516240pt;}
._f{width:20.536484pt;}
._b{width:21.679024pt;}
._14{width:23.450078pt;}
._20{width:24.417993pt;}
._22{width:27.507807pt;}
._1a{width:28.764746pt;}
._13{width:30.165688pt;}
._8{width:31.979625pt;}
._a{width:33.721521pt;}
._17{width:37.141319pt;}
._21{width:38.110535pt;}
._c{width:41.565306pt;}
._d{width:47.052974pt;}
._10{width:48.334508pt;}
._4{width:51.326083pt;}
._e{width:52.735478pt;}
._1f{width:56.315837pt;}
._12{width:57.906989pt;}
._16{width:74.117808pt;}
._1c{width:82.746729pt;}
._1b{width:89.095694pt;}
._1e{width:123.397849pt;}
._1d{width:140.545246pt;}
._15{width:672.332531pt;}
._6{width:688.332525pt;}
.fs9{font-size:24.319990pt;}
.fsa{font-size:26.879989pt;}
.fs8{font-size:29.439988pt;}
.fs5{font-size:31.999987pt;}
.fs6{font-size:47.999981pt;}
.fsd{font-size:49.279980pt;}
.fsb{font-size:53.119979pt;}
.fs7{font-size:54.399978pt;}
.fsf{font-size:59.519976pt;}
.fs2{font-size:63.999974pt;}
.fse{font-size:69.119972pt;}
.fs0{font-size:70.940238pt;}
.fs4{font-size:74.879970pt;}
.fs3{font-size:117.119953pt;}
.fs1{font-size:127.999949pt;}
.fsc{font-size:213.119915pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:3.679238pt;}
.y2{bottom:30.186655pt;}
.y13{bottom:146.506608pt;}
.y80{bottom:151.306606pt;}
.y12{bottom:156.106604pt;}
.y7f{bottom:160.906602pt;}
.y90{bottom:171.946598pt;}
.y81{bottom:178.826595pt;}
.y11{bottom:182.346594pt;}
.y3b{bottom:188.266591pt;}
.y35{bottom:194.346589pt;}
.y10{bottom:209.226583pt;}
.y3a{bottom:210.666582pt;}
.y5e{bottom:211.466582pt;}
.y28{bottom:213.066581pt;}
.y34{bottom:216.746580pt;}
.y20{bottom:224.266577pt;}
.y26{bottom:225.546576pt;}
.y39{bottom:233.066573pt;}
.y5d{bottom:233.866573pt;}
.yf{bottom:235.946572pt;}
.y8f{bottom:237.386572pt;}
.y33{bottom:239.146571pt;}
.y27{bottom:239.786571pt;}
.y45{bottom:242.506570pt;}
.y25{bottom:251.306566pt;}
.y71{bottom:255.466564pt;}
.y5c{bottom:256.266564pt;}
.y1f{bottom:256.906564pt;}
.y44{bottom:262.666562pt;}
.ye{bottom:262.826562pt;}
.y70{bottom:275.626556pt;}
.y24{bottom:278.026555pt;}
.y5b{bottom:278.666555pt;}
.y43{bottom:282.826554pt;}
.y64{bottom:282.986553pt;}
.y1e{bottom:283.786553pt;}
.yd{bottom:289.706551pt;}
.y23{bottom:290.186551pt;}
.y6f{bottom:295.786548pt;}
.y7e{bottom:300.746546pt;}
.y22{bottom:302.666546pt;}
.y42{bottom:302.986545pt;}
.y63{bottom:303.146545pt;}
.y1d{bottom:303.946545pt;}
.y6e{bottom:315.946540pt;}
.yc{bottom:316.426540pt;}
.y77{bottom:317.066540pt;}
.y41{bottom:329.866535pt;}
.y1c{bottom:330.826534pt;}
.y6d{bottom:336.106532pt;}
.y76{bottom:337.226532pt;}
.yb{bottom:343.306529pt;}
.y40{bottom:350.026527pt;}
.y1b{bottom:350.986526pt;}
.y21{bottom:361.226522pt;}
.y8e{bottom:368.106519pt;}
.ya{bottom:370.186519pt;}
.y9{bottom:409.226503pt;}
.y8d{bottom:417.066500pt;}
.y8c{bottom:466.026480pt;}
.y8b{bottom:549.386447pt;}
.y89{bottom:566.827200pt;}
.y88{bottom:622.826418pt;}
.y1a{bottom:634.666413pt;}
.y19{bottom:644.266409pt;}
.y54{bottom:656.266404pt;}
.y52{bottom:666.186400pt;}
.y87{bottom:671.786398pt;}
.y4b{bottom:674.026397pt;}
.y59{bottom:697.706388pt;}
.y62{bottom:699.626387pt;}
.y6c{bottom:699.786387pt;}
.y32{bottom:700.426386pt;}
.y4c{bottom:702.506386pt;}
.y31{bottom:712.906382pt;}
.y6b{bottom:717.706380pt;}
.y58{bottom:720.106379pt;}
.y61{bottom:722.026378pt;}
.y3f{bottom:722.506378pt;}
.y8{bottom:728.746375pt;}
.y4d{bottom:730.826374pt;}
.y6a{bottom:735.626372pt;}
.y7d{bottom:736.426372pt;}
.y86{bottom:737.226372pt;}
.y75{bottom:737.546372pt;}
.y53{bottom:738.026371pt;}
.y18{bottom:738.186371pt;}
.y57{bottom:742.506370pt;}
.y30{bottom:743.786369pt;}
.y60{bottom:744.426369pt;}
.y3e{bottom:744.906369pt;}
.y7{bottom:746.026368pt;}
.y2f{bottom:752.426366pt;}
.y69{bottom:753.546365pt;}
.y2e{bottom:756.266364pt;}
.y17{bottom:758.346363pt;}
.y4e{bottom:759.306363pt;}
.y74{bottom:764.426361pt;}
.y5f{bottom:766.826360pt;}
.y3d{bottom:767.306360pt;}
.y7c{bottom:768.426359pt;}
.y68{bottom:778.186355pt;}
.y6{bottom:780.266355pt;}
.y2c{bottom:781.866354pt;}
.y7b{bottom:784.426353pt;}
.y85{bottom:786.186352pt;}
.y5a{bottom:786.506352pt;}
.y4f{bottom:787.786352pt;}
.y3c{bottom:789.706351pt;}
.y2d{bottom:790.506350pt;}
.y73{bottom:791.306350pt;}
.y2a{bottom:794.346349pt;}
.y67{bottom:796.106348pt;}
.y38{bottom:797.866348pt;}
.y7a{bottom:800.426346pt;}
.y4a{bottom:803.466345pt;}
.y2b{bottom:808.586343pt;}
.y72{bottom:811.466342pt;}
.y16{bottom:811.946342pt;}
.y66{bottom:814.026341pt;}
.y5{bottom:814.826341pt;}
.y50{bottom:816.106340pt;}
.y79{bottom:816.426340pt;}
.y49{bottom:818.346339pt;}
.y37{bottom:820.266339pt;}
.y65{bottom:831.946334pt;}
.y78{bottom:832.426334pt;}
.y48{bottom:833.226333pt;}
.y36{bottom:842.666330pt;}
.y51{bottom:844.586329pt;}
.y47{bottom:848.106327pt;}
.y4{bottom:849.386327pt;}
.y84{bottom:851.626326pt;}
.y56{bottom:852.106326pt;}
.y29{bottom:852.906326pt;}
.y46{bottom:862.826322pt;}
.y15{bottom:865.706320pt;}
.y55{bottom:871.466318pt;}
.y3{bottom:883.946313pt;}
.y14{bottom:897.386308pt;}
.y83{bottom:900.586306pt;}
.y82{bottom:949.546287pt;}
.y91{bottom:961.066282pt;}
.y1{bottom:1100.746226pt;}
.h12{height:20.056867pt;}
.h10{height:20.124992pt;}
.h1a{height:20.960000pt;}
.h6{height:21.874991pt;}
.h13{height:22.168116pt;}
.h11{height:24.279365pt;}
.h17{height:26.390614pt;}
.h19{height:35.275611pt;}
.he{height:38.382797pt;}
.h9{height:39.585922pt;}
.h18{height:39.604672pt;}
.h1c{height:41.326858pt;}
.h7{height:45.590607pt;}
.h14{height:46.230607pt;}
.h3{height:52.781229pt;}
.hd{height:52.832791pt;}
.h1b{height:52.852479pt;}
.h15{height:55.402478pt;}
.h1{height:58.504913pt;}
.h5{height:61.754038pt;}
.h8{height:78.097469pt;}
.h4{height:80.062468pt;}
.h2{height:87.499965pt;}
.hc{height:102.752771pt;}
.ha{height:109.792769pt;}
.hf{height:125.152762pt;}
.hb{height:159.712749pt;}
.h16{height:175.761492pt;}
.h0{height:1122.666667pt;}
.w2{width:8.320000pt;}
.w1{width:73.600000pt;}
.w3{width:399.040000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x26{left:103.199959pt;}
.x31{left:111.039956pt;}
.x27{left:115.199954pt;}
.x25{left:116.319953pt;}
.x32{left:120.479952pt;}
.x9{left:125.439950pt;}
.x42{left:128.799948pt;}
.xe{left:134.559946pt;}
.x10{left:137.439945pt;}
.x2a{left:149.599940pt;}
.x29{left:151.359939pt;}
.x28{left:153.279939pt;}
.x12{left:155.359938pt;}
.x38{left:161.599935pt;}
.x3c{left:162.559935pt;}
.x3a{left:165.599934pt;}
.x13{left:170.719932pt;}
.x3f{left:175.039930pt;}
.x3b{left:177.599929pt;}
.x33{left:183.039927pt;}
.xd{left:190.239924pt;}
.x3e{left:201.119920pt;}
.x19{left:203.039919pt;}
.x43{left:217.280000pt;}
.x44{left:221.919911pt;}
.x1a{left:236.799905pt;}
.x1b{left:238.559905pt;}
.x21{left:248.959900pt;}
.x17{left:251.519899pt;}
.x41{left:253.439899pt;}
.x3d{left:267.679893pt;}
.xf{left:268.799892pt;}
.x40{left:270.879892pt;}
.x1d{left:272.479891pt;}
.x18{left:285.279886pt;}
.xc{left:286.559885pt;}
.x46{left:289.439884pt;}
.xa{left:297.119881pt;}
.xb{left:301.279879pt;}
.x3{left:311.679875pt;}
.x1e{left:320.319872pt;}
.x4{left:322.719871pt;}
.x5{left:323.839870pt;}
.x6{left:327.999869pt;}
.x7{left:331.999867pt;}
.x15{left:332.959867pt;}
.x16{left:334.399866pt;}
.x1f{left:342.559863pt;}
.x8{left:351.199860pt;}
.x2d{left:360.319856pt;}
.x2b{left:363.999854pt;}
.x24{left:365.759854pt;}
.x2c{left:383.359847pt;}
.x20{left:401.439839pt;}
.x36{left:428.799828pt;}
.x23{left:431.519827pt;}
.x37{left:440.799824pt;}
.x22{left:441.759823pt;}
.x45{left:476.639809pt;}
.x2f{left:481.759807pt;}
.x11{left:510.239796pt;}
.x34{left:518.559793pt;}
.x2e{left:526.719789pt;}
.x14{left:527.679789pt;}
.x35{left:532.319787pt;}
.x1c{left:580.639768pt;}
.x30{left:630.879748pt;}
.x1{left:694.719722pt;}
.x39{left:765.279634pt;}
.x2{left:774.399630pt;}
}




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