
    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_d54918cbc044a7120f64f5b4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_985f89c2c44e6658a006de39.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_fa6ce19da501f0ff0d36345b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_fe076802457da9bccc3129e0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_c01594bea98df343af5ed625.woff')format("woff");}.ff5{font-family:ff5;line-height:0.934082;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_ec096e7fe8ac21313ebf44a4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.798000px;}
.ls27{letter-spacing:-0.786000px;}
.lse{letter-spacing:-0.579600px;}
.ls10{letter-spacing:-0.544800px;}
.ls2e{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls29{letter-spacing:-0.326400px;}
.ls17{letter-spacing:-0.240600px;}
.ls20{letter-spacing:-0.186600px;}
.ls13{letter-spacing:-0.175800px;}
.ls4{letter-spacing:-0.132600px;}
.ls7{letter-spacing:-0.115200px;}
.ls23{letter-spacing:-0.112200px;}
.lsa{letter-spacing:-0.108600px;}
.ls2d{letter-spacing:-0.107400px;}
.ls1a{letter-spacing:-0.067200px;}
.ls1e{letter-spacing:-0.061200px;}
.ls16{letter-spacing:-0.058320px;}
.ls30{letter-spacing:-0.043920px;}
.ls31{letter-spacing:-0.041040px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.023760px;}
.ls3{letter-spacing:0.038880px;}
.ls1f{letter-spacing:0.044640px;}
.ls22{letter-spacing:0.060480px;}
.ls33{letter-spacing:0.060600px;}
.lsd{letter-spacing:0.066000px;}
.ls2a{letter-spacing:0.121680px;}
.ls1d{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls8{letter-spacing:0.150000px;}
.ls1c{letter-spacing:0.174000px;}
.ls12{letter-spacing:0.175200px;}
.ls2f{letter-spacing:0.179280px;}
.ls28{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.186600px;}
.lsb{letter-spacing:0.210000px;}
.ls21{letter-spacing:0.214560px;}
.ls6{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.269760px;}
.ls11{letter-spacing:0.306000px;}
.lsc{letter-spacing:0.321000px;}
.ls26{letter-spacing:0.393600px;}
.ls1b{letter-spacing:0.479400px;}
.ls2b{letter-spacing:0.479520px;}
.ls18{letter-spacing:0.654000px;}
.ls34{letter-spacing:0.659520px;}
.ls32{letter-spacing:0.660000px;}
.ls9{letter-spacing:0.702000px;}
.ls19{letter-spacing:0.744000px;}
.ls15{letter-spacing:0.858000px;}
.ls2c{letter-spacing:12.186720px;}
.ls25{letter-spacing:42.570720px;}
.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:-21.962760px;}
.ws7{word-spacing:-21.641760px;}
.ws6{word-spacing:-21.533160px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-15.226440px;}
.ws4{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.855040px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws16{word-spacing:-14.165760px;}
.ws10{word-spacing:-13.811760px;}
.wsd{word-spacing:-13.680960px;}
.wsb{word-spacing:-13.505760px;}
.ws15{word-spacing:-13.464720px;}
.ws14{word-spacing:-13.461840px;}
.wse{word-spacing:-13.447440px;}
.ws11{word-spacing:-13.444560px;}
.wsf{word-spacing:-13.438560px;}
.ws13{word-spacing:-13.398360px;}
.ws12{word-spacing:-13.319160px;}
.ws9{word-spacing:-9.437760px;}
.wsa{word-spacing:-8.786880px;}
.wsc{word-spacing:0.000000px;}
._1f{margin-left:-532.404480px;}
._20{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._12{margin-left:-310.890240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._18{margin-left:-244.391040px;}
._b{margin-left:-240.510240px;}
._17{margin-left:-223.087680px;}
._23{margin-left:-211.138560px;}
._f{margin-left:-203.010240px;}
._1a{margin-left:-201.453120px;}
._19{margin-left:-200.226720px;}
._22{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._28{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-156.158400px;}
._9{margin-left:-153.774720px;}
._14{margin-left:-151.062480px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._27{margin-left:-144.360000px;}
._c{margin-left:-134.192160px;}
._21{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._26{margin-left:-110.154240px;}
._7{margin-left:-91.124880px;}
._1d{margin-left:-87.299760px;}
._24{margin-left:-85.407360px;}
._1c{margin-left:-84.240000px;}
._13{margin-left:-81.964800px;}
._25{margin-left:-80.733840px;}
._1e{margin-left:-69.229440px;}
._16{margin-left:-66.703680px;}
._15{margin-left:-48.810240px;}
._1b{margin-left:-30.810240px;}
._2a{margin-left:-4.362480px;}
._29{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._2d{width:1.326960px;}
._2f{width:2.689200px;}
._2e{width:3.764880px;}
._30{width:5.735040px;}
._34{width:7.340160px;}
._32{width:8.857200px;}
._31{width:10.338480px;}
._33{width:12.340800px;}
._38{width:14.641200px;}
._39{width:15.765840px;}
._3f{width:16.789680px;}
._3e{width:19.601280px;}
._48{width:22.967760px;}
._47{width:24.382080px;}
._46{width:28.232640px;}
._37{width:31.008960px;}
._4b{width:32.150880px;}
._2c{width:33.415200px;}
._2b{width:34.952880px;}
._40{width:36.335280px;}
._41{width:37.603200px;}
._3b{width:39.083040px;}
._3c{width:40.944720px;}
._35{width:58.445280px;}
._3d{width:60.178320px;}
._4a{width:62.901120px;}
._49{width:64.122480px;}
._44{width:69.906960px;}
._45{width:70.971840px;}
._3a{width:84.142080px;}
._42{width:105.536160px;}
._43{width:108.192720px;}
._36{width:202.015440px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y68{bottom:3.960000px;}
.y8b{bottom:9.180000px;}
.y9e{bottom:13.140000px;}
.y9c{bottom:22.320000px;}
.y9d{bottom:31.500000px;}
.y9f{bottom:40.500000px;}
.y6{bottom:61.596000px;}
.y66{bottom:92.196000px;}
.yce{bottom:110.016000px;}
.y31{bottom:110.196000px;}
.yc8{bottom:112.896000px;}
.y65{bottom:113.256000px;}
.y9a{bottom:125.316000px;}
.y30{bottom:131.256000px;}
.yc7{bottom:133.956000px;}
.y64{bottom:134.316000px;}
.y99{bottom:146.376000px;}
.y2f{bottom:152.310000px;}
.yc6{bottom:155.010000px;}
.y63{bottom:155.370000px;}
.y98{bottom:167.430000px;}
.y2e{bottom:173.370000px;}
.yc5{bottom:176.070000px;}
.y62{bottom:176.430000px;}
.y97{bottom:188.310000px;}
.y2d{bottom:194.430000px;}
.yc4{bottom:197.130000px;}
.y61{bottom:197.490000px;}
.y96{bottom:209.370000px;}
.ycd{bottom:209.730000px;}
.y2c{bottom:215.490000px;}
.yc3{bottom:218.190000px;}
.y60{bottom:218.550000px;}
.y95{bottom:230.430000px;}
.y2b{bottom:236.550000px;}
.yc2{bottom:239.250000px;}
.y5f{bottom:239.610000px;}
.ycc{bottom:242.850000px;}
.y94{bottom:251.490000px;}
.y2a{bottom:257.610000px;}
.yc1{bottom:260.310000px;}
.y5e{bottom:260.670000px;}
.y93{bottom:272.550000px;}
.ycb{bottom:275.790000px;}
.y29{bottom:278.670000px;}
.yc0{bottom:281.370000px;}
.y5d{bottom:281.730000px;}
.y92{bottom:293.610000px;}
.y28{bottom:299.730000px;}
.ybf{bottom:302.430000px;}
.y5c{bottom:302.790000px;}
.yca{bottom:308.910000px;}
.y91{bottom:314.670000px;}
.y27{bottom:320.790000px;}
.ybe{bottom:323.310000px;}
.y5b{bottom:323.850000px;}
.y90{bottom:335.775000px;}
.y26{bottom:341.895000px;}
.ybd{bottom:344.415000px;}
.y5a{bottom:344.955000px;}
.y8f{bottom:356.835000px;}
.y25{bottom:362.955000px;}
.ybc{bottom:365.475000px;}
.y59{bottom:366.015000px;}
.yc9{bottom:375.015000px;}
.y8e{bottom:377.895000px;}
.y24{bottom:384.015000px;}
.ybb{bottom:386.535000px;}
.y58{bottom:387.075000px;}
.y8d{bottom:393.195000px;}
.y23{bottom:405.075000px;}
.yba{bottom:407.595000px;}
.y57{bottom:408.135000px;}
.y8c{bottom:411.375000px;}
.y22{bottom:426.135000px;}
.yb9{bottom:428.655000px;}
.y56{bottom:429.195000px;}
.y8a{bottom:430.455000px;}
.y21{bottom:447.195000px;}
.yb8{bottom:449.715000px;}
.y55{bottom:450.255000px;}
.y89{bottom:456.195000px;}
.y20{bottom:468.255000px;}
.yb7{bottom:470.775000px;}
.y54{bottom:471.315000px;}
.y88{bottom:477.255000px;}
.y1f{bottom:489.315000px;}
.yb6{bottom:491.835000px;}
.y53{bottom:492.375000px;}
.y87{bottom:498.315000px;}
.y1e{bottom:510.375000px;}
.yb5{bottom:512.895000px;}
.y52{bottom:513.435000px;}
.y86{bottom:519.375000px;}
.y1d{bottom:531.435000px;}
.yb4{bottom:533.955000px;}
.y51{bottom:534.495000px;}
.y85{bottom:540.435000px;}
.y1c{bottom:552.495000px;}
.yb3{bottom:555.015000px;}
.y50{bottom:555.555000px;}
.y84{bottom:561.495000px;}
.y1b{bottom:573.555000px;}
.yb2{bottom:576.075000px;}
.y4f{bottom:576.615000px;}
.y83{bottom:582.555000px;}
.y1a{bottom:596.985000px;}
.yb1{bottom:597.165000px;}
.y4e{bottom:597.705000px;}
.y82{bottom:603.645000px;}
.y19{bottom:617.865000px;}
.yb0{bottom:618.225000px;}
.y4d{bottom:618.765000px;}
.y81{bottom:624.705000px;}
.y18{bottom:638.925000px;}
.yaf{bottom:639.285000px;}
.y4c{bottom:639.825000px;}
.y80{bottom:645.765000px;}
.y17{bottom:659.985000px;}
.yae{bottom:660.345000px;}
.y4b{bottom:660.885000px;}
.y7f{bottom:666.825000px;}
.y16{bottom:681.045000px;}
.yad{bottom:681.405000px;}
.y4a{bottom:681.945000px;}
.y7e{bottom:687.885000px;}
.y15{bottom:702.105000px;}
.yac{bottom:702.465000px;}
.y49{bottom:703.005000px;}
.y7d{bottom:708.945000px;}
.y14{bottom:723.165000px;}
.yab{bottom:723.525000px;}
.y48{bottom:724.065000px;}
.y7c{bottom:730.005000px;}
.y13{bottom:744.225000px;}
.yaa{bottom:744.585000px;}
.y47{bottom:745.125000px;}
.y7b{bottom:751.065000px;}
.ya9{bottom:759.705000px;}
.y12{bottom:765.285000px;}
.y46{bottom:766.005000px;}
.y7a{bottom:772.125000px;}
.y11{bottom:786.345000px;}
.y45{bottom:787.065000px;}
.y79{bottom:793.185000px;}
.ya8{bottom:796.425000px;}
.y10{bottom:807.405000px;}
.y44{bottom:808.125000px;}
.y78{bottom:814.245000px;}
.yf{bottom:828.465000px;}
.y43{bottom:829.185000px;}
.ya7{bottom:832.965000px;}
.y77{bottom:835.305000px;}
.ye{bottom:849.525000px;}
.y42{bottom:850.245000px;}
.y76{bottom:856.365000px;}
.ya6{bottom:869.730000px;}
.yd{bottom:870.630000px;}
.y41{bottom:871.350000px;}
.y75{bottom:877.470000px;}
.ya5{bottom:887.910000px;}
.y40{bottom:892.410000px;}
.yc{bottom:893.850000px;}
.y74{bottom:898.530000px;}
.ya4{bottom:906.270000px;}
.y3f{bottom:913.470000px;}
.y73{bottom:919.590000px;}
.yb{bottom:920.130000px;}
.ya3{bottom:924.630000px;}
.y3e{bottom:934.530000px;}
.ya{bottom:936.870000px;}
.y72{bottom:940.650000px;}
.ya2{bottom:942.990000px;}
.y3d{bottom:955.590000px;}
.y9{bottom:959.190000px;}
.ya1{bottom:961.170000px;}
.y71{bottom:961.710000px;}
.y3c{bottom:976.650000px;}
.ya0{bottom:979.530000px;}
.y70{bottom:982.770000px;}
.y8{bottom:984.390000px;}
.y3b{bottom:997.710000px;}
.y9b{bottom:998.610000px;}
.y6f{bottom:1003.830000px;}
.y7{bottom:1018.050000px;}
.y3a{bottom:1018.770000px;}
.y6e{bottom:1024.890000px;}
.y39{bottom:1039.830000px;}
.y6d{bottom:1045.950000px;}
.y5{bottom:1058.190000px;}
.y38{bottom:1060.890000px;}
.y6c{bottom:1067.010000px;}
.y37{bottom:1081.950000px;}
.y6b{bottom:1088.070000px;}
.y4{bottom:1090.410000px;}
.y36{bottom:1103.010000px;}
.y6a{bottom:1103.190000px;}
.y69{bottom:1121.370000px;}
.y3{bottom:1122.630000px;}
.y35{bottom:1124.070000px;}
.y67{bottom:1140.480000px;}
.y34{bottom:1145.160000px;}
.y2{bottom:1154.700000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1188.720000px;}
.y32{bottom:1193.220000px;}
.hc{height:18.180000px;}
.ha{height:18.360000px;}
.hb{height:18.396000px;}
.h10{height:36.540000px;}
.h11{height:36.720000px;}
.hf{height:36.756000px;}
.h7{height:38.671172px;}
.he{height:45.170156px;}
.h9{height:52.260820px;}
.hd{height:54.900000px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:57.600000px;}
.wb{width:102.996000px;}
.wa{width:111.456000px;}
.w7{width:130.500000px;}
.wd{width:133.236000px;}
.w6{width:145.836000px;}
.wc{width:151.200000px;}
.w8{width:182.730000px;}
.w9{width:228.630000px;}
.w5{width:271.875000px;}
.w4{width:338.655000px;}
.w3{width:364.350000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x6{left:53.999987px;}
.xa{left:81.000000px;}
.x7{left:95.076000px;}
.x13{left:108.035987px;}
.x5{left:173.189987px;}
.xe{left:282.630000px;}
.x3{left:291.674987px;}
.x2{left:350.714987px;}
.xb{left:352.875000px;}
.xf{left:394.095000px;}
.x4{left:410.834987px;}
.x9{left:459.435000px;}
.x1{left:479.444987px;}
.x10{left:497.085000px;}
.xc{left:498.705000px;}
.xd{left:629.205000px;}
.x11{left:648.285000px;}
.x12{left:781.530000px;}
.x14{left:839.129987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.709333pt;}
.ls27{letter-spacing:-0.698667pt;}
.lse{letter-spacing:-0.515200pt;}
.ls10{letter-spacing:-0.484267pt;}
.ls2e{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls29{letter-spacing:-0.290133pt;}
.ls17{letter-spacing:-0.213867pt;}
.ls20{letter-spacing:-0.165867pt;}
.ls13{letter-spacing:-0.156267pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls7{letter-spacing:-0.102400pt;}
.ls23{letter-spacing:-0.099733pt;}
.lsa{letter-spacing:-0.096533pt;}
.ls2d{letter-spacing:-0.095467pt;}
.ls1a{letter-spacing:-0.059733pt;}
.ls1e{letter-spacing:-0.054400pt;}
.ls16{letter-spacing:-0.051840pt;}
.ls30{letter-spacing:-0.039040pt;}
.ls31{letter-spacing:-0.036480pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.021120pt;}
.ls3{letter-spacing:0.034560pt;}
.ls1f{letter-spacing:0.039680pt;}
.ls22{letter-spacing:0.053760pt;}
.ls33{letter-spacing:0.053867pt;}
.lsd{letter-spacing:0.058667pt;}
.ls2a{letter-spacing:0.108160pt;}
.ls1d{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls8{letter-spacing:0.133333pt;}
.ls1c{letter-spacing:0.154667pt;}
.ls12{letter-spacing:0.155733pt;}
.ls2f{letter-spacing:0.159360pt;}
.ls28{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.165867pt;}
.lsb{letter-spacing:0.186667pt;}
.ls21{letter-spacing:0.190720pt;}
.ls6{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.239787pt;}
.ls11{letter-spacing:0.272000pt;}
.lsc{letter-spacing:0.285333pt;}
.ls26{letter-spacing:0.349867pt;}
.ls1b{letter-spacing:0.426133pt;}
.ls2b{letter-spacing:0.426240pt;}
.ls18{letter-spacing:0.581333pt;}
.ls34{letter-spacing:0.586240pt;}
.ls32{letter-spacing:0.586667pt;}
.ls9{letter-spacing:0.624000pt;}
.ls19{letter-spacing:0.661333pt;}
.ls15{letter-spacing:0.762667pt;}
.ls2c{letter-spacing:10.832640pt;}
.ls25{letter-spacing:37.840640pt;}
.ws8{word-spacing:-19.522453pt;}
.ws7{word-spacing:-19.237120pt;}
.ws6{word-spacing:-19.140587pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.534613pt;}
.ws4{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.204480pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws16{word-spacing:-12.591787pt;}
.ws10{word-spacing:-12.277120pt;}
.wsd{word-spacing:-12.160853pt;}
.wsb{word-spacing:-12.005120pt;}
.ws15{word-spacing:-11.968640pt;}
.ws14{word-spacing:-11.966080pt;}
.wse{word-spacing:-11.953280pt;}
.ws11{word-spacing:-11.950720pt;}
.wsf{word-spacing:-11.945387pt;}
.ws13{word-spacing:-11.909653pt;}
.ws12{word-spacing:-11.839253pt;}
.ws9{word-spacing:-8.389120pt;}
.wsa{word-spacing:-7.810560pt;}
.wsc{word-spacing:0.000000pt;}
._1f{margin-left:-473.248427pt;}
._20{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._12{margin-left:-276.346880pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._18{margin-left:-217.236480pt;}
._b{margin-left:-213.786880pt;}
._17{margin-left:-198.300160pt;}
._23{margin-left:-187.678720pt;}
._f{margin-left:-180.453547pt;}
._1a{margin-left:-179.069440pt;}
._19{margin-left:-177.979307pt;}
._22{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._28{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-138.807467pt;}
._9{margin-left:-136.688640pt;}
._14{margin-left:-134.277760pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._27{margin-left:-128.320000pt;}
._c{margin-left:-119.281920pt;}
._21{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._26{margin-left:-97.914880pt;}
._7{margin-left:-80.999893pt;}
._1d{margin-left:-77.599787pt;}
._24{margin-left:-75.917653pt;}
._1c{margin-left:-74.880000pt;}
._13{margin-left:-72.857600pt;}
._25{margin-left:-71.763413pt;}
._1e{margin-left:-61.537280pt;}
._16{margin-left:-59.292160pt;}
._15{margin-left:-43.386880pt;}
._1b{margin-left:-27.386880pt;}
._2a{margin-left:-3.877760pt;}
._29{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._2d{width:1.179520pt;}
._2f{width:2.390400pt;}
._2e{width:3.346560pt;}
._30{width:5.097813pt;}
._34{width:6.524587pt;}
._32{width:7.873067pt;}
._31{width:9.189760pt;}
._33{width:10.969600pt;}
._38{width:13.014400pt;}
._39{width:14.014080pt;}
._3f{width:14.924160pt;}
._3e{width:17.423360pt;}
._48{width:20.415787pt;}
._47{width:21.672960pt;}
._46{width:25.095680pt;}
._37{width:27.563520pt;}
._4b{width:28.578560pt;}
._2c{width:29.702400pt;}
._2b{width:31.069227pt;}
._40{width:32.298027pt;}
._41{width:33.425067pt;}
._3b{width:34.740480pt;}
._3c{width:36.395307pt;}
._35{width:51.951360pt;}
._3d{width:53.491840pt;}
._4a{width:55.912107pt;}
._49{width:56.997760pt;}
._44{width:62.139520pt;}
._45{width:63.086080pt;}
._3a{width:74.792960pt;}
._42{width:93.809920pt;}
._43{width:96.171307pt;}
._36{width:179.569280pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:3.520000pt;}
.y8b{bottom:8.160000pt;}
.y9e{bottom:11.680000pt;}
.y9c{bottom:19.840000pt;}
.y9d{bottom:28.000000pt;}
.y9f{bottom:36.000000pt;}
.y6{bottom:54.752000pt;}
.y66{bottom:81.952000pt;}
.yce{bottom:97.792000pt;}
.y31{bottom:97.952000pt;}
.yc8{bottom:100.352000pt;}
.y65{bottom:100.672000pt;}
.y9a{bottom:111.392000pt;}
.y30{bottom:116.672000pt;}
.yc7{bottom:119.072000pt;}
.y64{bottom:119.392000pt;}
.y99{bottom:130.112000pt;}
.y2f{bottom:135.386667pt;}
.yc6{bottom:137.786667pt;}
.y63{bottom:138.106667pt;}
.y98{bottom:148.826667pt;}
.y2e{bottom:154.106667pt;}
.yc5{bottom:156.506667pt;}
.y62{bottom:156.826667pt;}
.y97{bottom:167.386667pt;}
.y2d{bottom:172.826667pt;}
.yc4{bottom:175.226667pt;}
.y61{bottom:175.546667pt;}
.y96{bottom:186.106667pt;}
.ycd{bottom:186.426667pt;}
.y2c{bottom:191.546667pt;}
.yc3{bottom:193.946667pt;}
.y60{bottom:194.266667pt;}
.y95{bottom:204.826667pt;}
.y2b{bottom:210.266667pt;}
.yc2{bottom:212.666667pt;}
.y5f{bottom:212.986667pt;}
.ycc{bottom:215.866667pt;}
.y94{bottom:223.546667pt;}
.y2a{bottom:228.986667pt;}
.yc1{bottom:231.386667pt;}
.y5e{bottom:231.706667pt;}
.y93{bottom:242.266667pt;}
.ycb{bottom:245.146667pt;}
.y29{bottom:247.706667pt;}
.yc0{bottom:250.106667pt;}
.y5d{bottom:250.426667pt;}
.y92{bottom:260.986667pt;}
.y28{bottom:266.426667pt;}
.ybf{bottom:268.826667pt;}
.y5c{bottom:269.146667pt;}
.yca{bottom:274.586667pt;}
.y91{bottom:279.706667pt;}
.y27{bottom:285.146667pt;}
.ybe{bottom:287.386667pt;}
.y5b{bottom:287.866667pt;}
.y90{bottom:298.466667pt;}
.y26{bottom:303.906667pt;}
.ybd{bottom:306.146667pt;}
.y5a{bottom:306.626667pt;}
.y8f{bottom:317.186667pt;}
.y25{bottom:322.626667pt;}
.ybc{bottom:324.866667pt;}
.y59{bottom:325.346667pt;}
.yc9{bottom:333.346667pt;}
.y8e{bottom:335.906667pt;}
.y24{bottom:341.346667pt;}
.ybb{bottom:343.586667pt;}
.y58{bottom:344.066667pt;}
.y8d{bottom:349.506667pt;}
.y23{bottom:360.066667pt;}
.yba{bottom:362.306667pt;}
.y57{bottom:362.786667pt;}
.y8c{bottom:365.666667pt;}
.y22{bottom:378.786667pt;}
.yb9{bottom:381.026667pt;}
.y56{bottom:381.506667pt;}
.y8a{bottom:382.626667pt;}
.y21{bottom:397.506667pt;}
.yb8{bottom:399.746667pt;}
.y55{bottom:400.226667pt;}
.y89{bottom:405.506667pt;}
.y20{bottom:416.226667pt;}
.yb7{bottom:418.466667pt;}
.y54{bottom:418.946667pt;}
.y88{bottom:424.226667pt;}
.y1f{bottom:434.946667pt;}
.yb6{bottom:437.186667pt;}
.y53{bottom:437.666667pt;}
.y87{bottom:442.946667pt;}
.y1e{bottom:453.666667pt;}
.yb5{bottom:455.906667pt;}
.y52{bottom:456.386667pt;}
.y86{bottom:461.666667pt;}
.y1d{bottom:472.386667pt;}
.yb4{bottom:474.626667pt;}
.y51{bottom:475.106667pt;}
.y85{bottom:480.386667pt;}
.y1c{bottom:491.106667pt;}
.yb3{bottom:493.346667pt;}
.y50{bottom:493.826667pt;}
.y84{bottom:499.106667pt;}
.y1b{bottom:509.826667pt;}
.yb2{bottom:512.066667pt;}
.y4f{bottom:512.546667pt;}
.y83{bottom:517.826667pt;}
.y1a{bottom:530.653333pt;}
.yb1{bottom:530.813333pt;}
.y4e{bottom:531.293333pt;}
.y82{bottom:536.573333pt;}
.y19{bottom:549.213333pt;}
.yb0{bottom:549.533333pt;}
.y4d{bottom:550.013333pt;}
.y81{bottom:555.293333pt;}
.y18{bottom:567.933333pt;}
.yaf{bottom:568.253333pt;}
.y4c{bottom:568.733333pt;}
.y80{bottom:574.013333pt;}
.y17{bottom:586.653333pt;}
.yae{bottom:586.973333pt;}
.y4b{bottom:587.453333pt;}
.y7f{bottom:592.733333pt;}
.y16{bottom:605.373333pt;}
.yad{bottom:605.693333pt;}
.y4a{bottom:606.173333pt;}
.y7e{bottom:611.453333pt;}
.y15{bottom:624.093333pt;}
.yac{bottom:624.413333pt;}
.y49{bottom:624.893333pt;}
.y7d{bottom:630.173333pt;}
.y14{bottom:642.813333pt;}
.yab{bottom:643.133333pt;}
.y48{bottom:643.613333pt;}
.y7c{bottom:648.893333pt;}
.y13{bottom:661.533333pt;}
.yaa{bottom:661.853333pt;}
.y47{bottom:662.333333pt;}
.y7b{bottom:667.613333pt;}
.ya9{bottom:675.293333pt;}
.y12{bottom:680.253333pt;}
.y46{bottom:680.893333pt;}
.y7a{bottom:686.333333pt;}
.y11{bottom:698.973333pt;}
.y45{bottom:699.613333pt;}
.y79{bottom:705.053333pt;}
.ya8{bottom:707.933333pt;}
.y10{bottom:717.693333pt;}
.y44{bottom:718.333333pt;}
.y78{bottom:723.773333pt;}
.yf{bottom:736.413333pt;}
.y43{bottom:737.053333pt;}
.ya7{bottom:740.413333pt;}
.y77{bottom:742.493333pt;}
.ye{bottom:755.133333pt;}
.y42{bottom:755.773333pt;}
.y76{bottom:761.213333pt;}
.ya6{bottom:773.093333pt;}
.yd{bottom:773.893333pt;}
.y41{bottom:774.533333pt;}
.y75{bottom:779.973333pt;}
.ya5{bottom:789.253333pt;}
.y40{bottom:793.253333pt;}
.yc{bottom:794.533333pt;}
.y74{bottom:798.693333pt;}
.ya4{bottom:805.573333pt;}
.y3f{bottom:811.973333pt;}
.y73{bottom:817.413333pt;}
.yb{bottom:817.893333pt;}
.ya3{bottom:821.893333pt;}
.y3e{bottom:830.693333pt;}
.ya{bottom:832.773333pt;}
.y72{bottom:836.133333pt;}
.ya2{bottom:838.213333pt;}
.y3d{bottom:849.413333pt;}
.y9{bottom:852.613333pt;}
.ya1{bottom:854.373333pt;}
.y71{bottom:854.853333pt;}
.y3c{bottom:868.133333pt;}
.ya0{bottom:870.693333pt;}
.y70{bottom:873.573333pt;}
.y8{bottom:875.013333pt;}
.y3b{bottom:886.853333pt;}
.y9b{bottom:887.653333pt;}
.y6f{bottom:892.293333pt;}
.y7{bottom:904.933333pt;}
.y3a{bottom:905.573333pt;}
.y6e{bottom:911.013333pt;}
.y39{bottom:924.293333pt;}
.y6d{bottom:929.733333pt;}
.y5{bottom:940.613333pt;}
.y38{bottom:943.013333pt;}
.y6c{bottom:948.453333pt;}
.y37{bottom:961.733333pt;}
.y6b{bottom:967.173333pt;}
.y4{bottom:969.253333pt;}
.y36{bottom:980.453333pt;}
.y6a{bottom:980.613333pt;}
.y69{bottom:996.773333pt;}
.y3{bottom:997.893333pt;}
.y35{bottom:999.173333pt;}
.y67{bottom:1013.760000pt;}
.y34{bottom:1017.920000pt;}
.y2{bottom:1026.400000pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1056.640000pt;}
.y32{bottom:1060.640000pt;}
.hc{height:16.160000pt;}
.ha{height:16.320000pt;}
.hb{height:16.352000pt;}
.h10{height:32.480000pt;}
.h11{height:32.640000pt;}
.hf{height:32.672000pt;}
.h7{height:34.374375pt;}
.he{height:40.151250pt;}
.h9{height:46.454062pt;}
.hd{height:48.800000pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:51.200000pt;}
.wb{width:91.552000pt;}
.wa{width:99.072000pt;}
.w7{width:116.000000pt;}
.wd{width:118.432000pt;}
.w6{width:129.632000pt;}
.wc{width:134.400000pt;}
.w8{width:162.426667pt;}
.w9{width:203.226667pt;}
.w5{width:241.666667pt;}
.w4{width:301.026667pt;}
.w3{width:323.866667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x6{left:47.999988pt;}
.xa{left:72.000000pt;}
.x7{left:84.512000pt;}
.x13{left:96.031988pt;}
.x5{left:153.946655pt;}
.xe{left:251.226667pt;}
.x3{left:259.266655pt;}
.x2{left:311.746655pt;}
.xb{left:313.666667pt;}
.xf{left:350.306667pt;}
.x4{left:365.186655pt;}
.x9{left:408.386667pt;}
.x1{left:426.173322pt;}
.x10{left:441.853333pt;}
.xc{left:443.293333pt;}
.xd{left:559.293333pt;}
.x11{left:576.253333pt;}
.x12{left:694.693333pt;}
.x14{left:745.893322pt;}
}




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