
    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_4764c5efd34f73690dbf4165.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_3e0a7ab405b86e79a382fce3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_b10914f9549b1e07575ba02c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_50caf351f78e86befd1a7ab8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_a4e4e2291edfc1485b213b26.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.281250;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;}
.m7{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-95.039962px;}
.v1{vertical-align:-76.319969px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.393184px;}
.ls1{letter-spacing:760.091696px;}
.ls0{letter-spacing:1257.761497px;}
.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;}
}
.ws3{word-spacing:-40.607984px;}
.ws1{word-spacing:-16.919993px;}
.ws4{word-spacing:-15.565794px;}
.ws6{word-spacing:-14.043594px;}
.ws2{word-spacing:-13.366435px;}
.ws5{word-spacing:-12.689995px;}
.ws0{word-spacing:0.000000px;}
._19{margin-left:-14.428082px;}
._12{margin-left:-3.469274px;}
._3{margin-left:-2.328513px;}
._2{margin-left:-1.194763px;}
._0{width:1.283674px;}
._14{width:2.718476px;}
._a{width:3.793384px;}
._9{width:5.383332px;}
._8{width:6.399465px;}
._d{width:7.787434px;}
._f{width:9.068455px;}
._e{width:10.250021px;}
._13{width:12.124291px;}
._b{width:13.413447px;}
._c{width:14.820873px;}
._23{width:15.836478px;}
._22{width:18.065473px;}
._1d{width:19.292744px;}
._10{width:20.321045px;}
._11{width:21.366038px;}
._18{width:22.694908px;}
._17{width:24.081212px;}
._16{width:25.581259px;}
._15{width:27.119587px;}
._20{width:28.958036px;}
._21{width:30.205056px;}
._28{width:31.298787px;}
._27{width:32.526958px;}
._26{width:33.548800px;}
._1c{width:34.639007px;}
._1b{width:36.420310px;}
._25{width:41.266269px;}
._24{width:42.606508px;}
._1f{width:48.537440px;}
._1e{width:49.992698px;}
._29{width:165.982434px;}
._7{width:182.902420px;}
._1a{width:192.085164px;}
._4{width:628.803630px;}
._5{width:902.094245px;}
._6{width:903.535379px;}
._1{width:1253.509239px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:28.423429px;}
.fs0{font-size:45.343422px;}
.fs8{font-size:50.759980px;}
.fs6{font-size:53.465739px;}
.fs2{font-size:56.174378px;}
.fs7{font-size:62.263175px;}
.fs1{font-size:67.679973px;}
.fs5{font-size:79.183168px;}
.fs4{font-size:84.599966px;}
.y0{bottom:0.000000px;}
.ya{bottom:106.559957px;}
.y9{bottom:145.259942px;}
.y8{bottom:160.019936px;}
.yb{bottom:162.359935px;}
.y5c{bottom:179.099928px;}
.y31{bottom:186.119926px;}
.ycd{bottom:192.599923px;}
.y86{bottom:192.779923px;}
.y62{bottom:193.499923px;}
.y5b{bottom:196.019922px;}
.yae{bottom:196.379921px;}
.y30{bottom:205.739918px;}
.ycc{bottom:212.219915px;}
.y85{bottom:212.399915px;}
.y5a{bottom:212.939915px;}
.y61{bottom:213.119915px;}
.yad{bottom:215.999914px;}
.y2f{bottom:225.359910px;}
.y59{bottom:229.859908px;}
.ycb{bottom:231.839907px;}
.y84{bottom:232.019907px;}
.y60{bottom:232.739907px;}
.yac{bottom:235.619906px;}
.y2e{bottom:244.979902px;}
.y58{bottom:247.499901px;}
.yca{bottom:251.459899px;}
.y83{bottom:251.639899px;}
.y5f{bottom:252.359899px;}
.y57{bottom:255.239898px;}
.y2d{bottom:264.599894px;}
.y56{bottom:267.119893px;}
.yc9{bottom:271.079892px;}
.y82{bottom:271.259891px;}
.y5e{bottom:271.979891px;}
.yab{bottom:274.859890px;}
.y2c{bottom:284.219886px;}
.yc8{bottom:290.699884px;}
.y81{bottom:290.879884px;}
.y55{bottom:291.599883px;}
.yaa{bottom:294.479882px;}
.y2b{bottom:303.839878px;}
.yc7{bottom:310.319876px;}
.y80{bottom:310.499876px;}
.y54{bottom:311.219876px;}
.ya9{bottom:314.099874px;}
.y2a{bottom:323.639871px;}
.yc6{bottom:329.939868px;}
.y7f{bottom:330.119868px;}
.y53{bottom:330.839868px;}
.ya8{bottom:333.719867px;}
.y29{bottom:343.259863px;}
.yc5{bottom:349.559860px;}
.y7e{bottom:349.739860px;}
.y52{bottom:350.459860px;}
.ya7{bottom:353.339859px;}
.y28{bottom:362.519855px;}
.ye9{bottom:368.639853px;}
.yc4{bottom:369.179852px;}
.y7d{bottom:369.359852px;}
.y51{bottom:370.079852px;}
.ya6{bottom:372.959851px;}
.y27{bottom:382.499847px;}
.ye8{bottom:388.439845px;}
.yc3{bottom:388.799844px;}
.y7c{bottom:388.979844px;}
.y50{bottom:389.699844px;}
.ya5{bottom:392.579843px;}
.y26{bottom:402.119839px;}
.ye7{bottom:408.059837px;}
.yc2{bottom:408.419837px;}
.y7b{bottom:408.599837px;}
.y4f{bottom:409.319836px;}
.ya4{bottom:412.199835px;}
.y25{bottom:421.739831px;}
.ye6{bottom:427.679829px;}
.yc1{bottom:428.039829px;}
.y7a{bottom:428.219829px;}
.y4e{bottom:428.939828px;}
.ya3{bottom:431.819827px;}
.y24{bottom:441.359823px;}
.ye5{bottom:447.299821px;}
.yc0{bottom:447.659821px;}
.y79{bottom:447.839821px;}
.y4d{bottom:448.559821px;}
.ya2{bottom:451.439819px;}
.y23{bottom:460.979816px;}
.ye4{bottom:466.919813px;}
.y78{bottom:467.459813px;}
.y64{bottom:467.819813px;}
.y4c{bottom:468.179813px;}
.ya1{bottom:471.059812px;}
.y22{bottom:480.599808px;}
.ye3{bottom:486.539805px;}
.y77{bottom:487.079805px;}
.y4b{bottom:487.799805px;}
.ya0{bottom:490.679804px;}
.y21{bottom:500.219800px;}
.ye2{bottom:506.159798px;}
.ybf{bottom:506.699797px;}
.y76{bottom:506.879797px;}
.y63{bottom:507.059797px;}
.y4a{bottom:507.419797px;}
.y9f{bottom:510.299796px;}
.y20{bottom:519.839792px;}
.ye1{bottom:525.779790px;}
.y75{bottom:526.499789px;}
.ybd{bottom:526.679789px;}
.y49{bottom:527.039789px;}
.y9e{bottom:529.919788px;}
.y1f{bottom:539.459784px;}
.ybc{bottom:544.499782px;}
.ye0{bottom:545.399782px;}
.y74{bottom:546.119782px;}
.y48{bottom:546.659781px;}
.y9d{bottom:549.539780px;}
.y1e{bottom:559.079776px;}
.ybe{bottom:560.519776px;}
.ybb{bottom:561.599775px;}
.ydf{bottom:565.019774px;}
.y73{bottom:565.739774px;}
.y47{bottom:566.279773px;}
.y9c{bottom:569.159772px;}
.y1d{bottom:578.699769px;}
.yba{bottom:580.139768px;}
.yde{bottom:584.639766px;}
.y72{bottom:585.359766px;}
.y46{bottom:585.899766px;}
.y9b{bottom:587.339765px;}
.yb9{bottom:598.139761px;}
.y1c{bottom:598.319761px;}
.ydd{bottom:604.259758px;}
.y71{bottom:604.979758px;}
.y45{bottom:605.519758px;}
.yb8{bottom:616.319753px;}
.y1b{bottom:617.579753px;}
.ydc{bottom:623.879750px;}
.y99{bottom:624.239750px;}
.y70{bottom:624.599750px;}
.y44{bottom:625.319750px;}
.yb7{bottom:635.399746px;}
.y1a{bottom:637.559745px;}
.y98{bottom:641.339743px;}
.y6f{bottom:644.219742px;}
.y43{bottom:644.939742px;}
.ydb{bottom:647.639741px;}
.yb6{bottom:653.399739px;}
.y19{bottom:656.819737px;}
.y97{bottom:658.259737px;}
.y6e{bottom:663.839734px;}
.y42{bottom:664.559734px;}
.yda{bottom:667.799733px;}
.yb4{bottom:669.239732px;}
.yb5{bottom:670.499732px;}
.y9a{bottom:674.999730px;}
.y96{bottom:675.179730px;}
.y18{bottom:676.799729px;}
.y6d{bottom:683.459727px;}
.y41{bottom:684.179726px;}
.yd9{bottom:687.059725px;}
.yb3{bottom:688.859724px;}
.y95{bottom:692.099723px;}
.y17{bottom:696.419721px;}
.y6c{bottom:703.079719px;}
.y40{bottom:703.799718px;}
.yd8{bottom:703.979718px;}
.yb2{bottom:707.039717px;}
.y94{bottom:709.019716px;}
.y16{bottom:716.039714px;}
.yd7{bottom:721.259711px;}
.y6b{bottom:722.699711px;}
.y3f{bottom:723.419711px;}
.yb1{bottom:725.039710px;}
.y93{bottom:725.939710px;}
.y15{bottom:735.659706px;}
.yd6{bottom:739.439704px;}
.y6a{bottom:742.319703px;}
.y3e{bottom:743.039703px;}
.y92{bottom:743.399703px;}
.yb0{bottom:744.479702px;}
.y14{bottom:755.999698px;}
.yd5{bottom:757.619697px;}
.y91{bottom:761.399695px;}
.y69{bottom:761.939695px;}
.y3d{bottom:762.659695px;}
.yaf{bottom:763.559695px;}
.yd4{bottom:775.619690px;}
.y13{bottom:778.499689px;}
.y90{bottom:779.579688px;}
.y68{bottom:781.559687px;}
.y3c{bottom:782.279687px;}
.yd3{bottom:795.059682px;}
.y8f{bottom:798.299681px;}
.y12{bottom:800.279680px;}
.y67{bottom:801.179680px;}
.y3b{bottom:801.899679px;}
.yd2{bottom:814.319674px;}
.y8e{bottom:815.399674px;}
.y11{bottom:820.439672px;}
.y66{bottom:820.799672px;}
.y5d{bottom:821.159672px;}
.y3a{bottom:821.519671px;}
.yd1{bottom:831.239668px;}
.y8d{bottom:832.319667px;}
.y65{bottom:840.419664px;}
.y39{bottom:841.139664px;}
.ycf{bottom:845.819662px;}
.yd0{bottom:848.159661px;}
.y8c{bottom:849.239660px;}
.y38{bottom:860.759656px;}
.yce{bottom:865.439654px;}
.y8b{bottom:866.159654px;}
.y10{bottom:868.139653px;}
.y37{bottom:880.379648px;}
.y8a{bottom:883.619647px;}
.yf{bottom:892.079643px;}
.y36{bottom:899.999640px;}
.y89{bottom:901.619639px;}
.ye{bottom:915.839634px;}
.y35{bottom:919.619632px;}
.y88{bottom:921.239632px;}
.yd{bottom:938.879624px;}
.y33{bottom:939.239624px;}
.y87{bottom:940.139624px;}
.y34{bottom:946.979621px;}
.yc{bottom:958.499617px;}
.y32{bottom:958.859616px;}
.y7{bottom:977.759609px;}
.y6{bottom:994.679602px;}
.y5{bottom:1011.419595px;}
.y4{bottom:1028.699589px;}
.y3{bottom:1047.059581px;}
.y2{bottom:1061.099576px;}
.y1{bottom:1075.139570px;}
.h5{height:27.896041px;}
.h1{height:44.479948px;}
.h2{height:44.502089px;}
.he{height:49.793359px;}
.hc{height:51.156542px;}
.ha{height:52.473699px;}
.hd{height:55.104651px;}
.h4{height:55.132080px;}
.hf{height:61.077499px;}
.h10{height:61.107901px;}
.hb{height:62.749606px;}
.h3{height:66.424192px;}
.h6{height:68.208723px;}
.h9{height:77.675286px;}
.h8{height:77.713949px;}
.h7{height:85.260903px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:140.400189px;}
.x57{left:150.299940px;}
.x32{left:152.459939px;}
.x2d{left:155.339938px;}
.x7a{left:170.460679px;}
.x41{left:190.259924px;}
.x58{left:194.219922px;}
.xb{left:196.919921px;}
.x76{left:198.539288px;}
.x6f{left:200.519298px;}
.x77{left:203.759918px;}
.x59{left:205.379918px;}
.x33{left:208.979916px;}
.x2e{left:212.759915px;}
.x5d{left:214.559914px;}
.x34{left:218.159913px;}
.x6c{left:220.859912px;}
.x2f{left:223.919910px;}
.x5f{left:227.699909px;}
.x36{left:242.819903px;}
.x1e{left:243.899902px;}
.x4f{left:249.299900px;}
.x43{left:250.559900px;}
.x35{left:251.999899px;}
.x30{left:254.879898px;}
.x47{left:266.219894px;}
.x1a{left:279.179888px;}
.x6d{left:286.559885px;}
.x5e{left:290.519884px;}
.x42{left:297.539881px;}
.x50{left:303.119879px;}
.x37{left:309.779876px;}
.x1f{left:322.379871px;}
.x69{left:325.079870px;}
.x20{left:331.739867px;}
.x3f{left:333.359867px;}
.x64{left:334.439866px;}
.x48{left:336.599865px;}
.x15{left:338.579865px;}
.x1b{left:340.559864px;}
.xa{left:343.439863px;}
.x40{left:345.239862px;}
.x16{left:346.679861px;}
.x5a{left:350.639860px;}
.x1c{left:352.619859px;}
.x51{left:353.699859px;}
.x6a{left:355.319858px;}
.x17{left:361.619855px;}
.x6b{left:365.399854px;}
.x38{left:374.579850px;}
.x6e{left:379.439848px;}
.x70{left:382.859847px;}
.x39{left:383.939846px;}
.x71{left:387.899845px;}
.x21{left:395.819842px;}
.x1d{left:398.519841px;}
.x22{left:406.979837px;}
.x5b{left:409.859836px;}
.x18{left:419.579832px;}
.xd{left:423.359831px;}
.x19{left:430.739828px;}
.x3b{left:435.239826px;}
.x3a{left:437.039825px;}
.x11{left:449.279820px;}
.x23{left:452.159819px;}
.x8{left:460.799816px;}
.x63{left:463.319815px;}
.x5c{left:465.479814px;}
.x9{left:466.559813px;}
.x3c{left:472.319811px;}
.xe{left:478.439809px;}
.x3d{left:481.679807px;}
.xf{left:487.799805px;}
.x12{left:499.859800px;}
.x13{left:511.019796px;}
.x29{left:513.899794px;}
.x72{left:526.499789px;}
.x3e{left:529.199788px;}
.x2a{left:538.199785px;}
.x10{left:539.459784px;}
.x7{left:546.299781px;}
.x28{left:549.899780px;}
.x67{left:551.339779px;}
.x14{left:557.819777px;}
.x61{left:566.819773px;}
.xc{left:568.619773px;}
.x49{left:572.399771px;}
.x54{left:573.659660px;}
.x45{left:575.099770px;}
.x4b{left:576.359769px;}
.x52{left:579.059768px;}
.x2b{left:608.399757px;}
.x65{left:609.659756px;}
.x60{left:613.439755px;}
.x6{left:614.699754px;}
.x44{left:620.639752px;}
.x4c{left:625.499750px;}
.x4d{left:630.539748px;}
.x24{left:645.659742px;}
.x2{left:647.819776px;}
.x66{left:662.759735px;}
.x78{left:665.999734px;}
.x62{left:667.799733px;}
.x53{left:669.779732px;}
.x4e{left:672.479731px;}
.x46{left:673.739731px;}
.x55{left:674.999730px;}
.x4a{left:676.439729px;}
.x25{left:678.599729px;}
.x68{left:683.279727px;}
.x26{left:687.779725px;}
.x74{left:700.019720px;}
.x75{left:705.059718px;}
.x73{left:708.119717px;}
.x79{left:724.319710px;}
.x31{left:729.719708px;}
.x27{left:732.239707px;}
.x56{left:734.219706px;}
.x3{left:742.679703px;}
.x1{left:751.139700px;}
.x5{left:770.399692px;}
.x2c{left:773.459691px;}
@media print{
.v2{vertical-align:-84.479966pt;}
.v1{vertical-align:-67.839973pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.349497pt;}
.ls1{letter-spacing:675.637063pt;}
.ls0{letter-spacing:1118.010219pt;}
.ws3{word-spacing:-36.095986pt;}
.ws1{word-spacing:-15.039994pt;}
.ws4{word-spacing:-13.836261pt;}
.ws6{word-spacing:-12.483195pt;}
.ws2{word-spacing:-11.881275pt;}
.ws5{word-spacing:-11.279995pt;}
.ws0{word-spacing:0.000000pt;}
._19{margin-left:-12.824961pt;}
._12{margin-left:-3.083799pt;}
._3{margin-left:-2.069789pt;}
._2{margin-left:-1.062012pt;}
._0{width:1.141044pt;}
._14{width:2.416423pt;}
._a{width:3.371897pt;}
._9{width:4.785184pt;}
._8{width:5.688413pt;}
._d{width:6.922164pt;}
._f{width:8.060849pt;}
._e{width:9.111129pt;}
._13{width:10.777147pt;}
._b{width:11.923064pt;}
._c{width:13.174110pt;}
._23{width:14.076870pt;}
._22{width:16.058198pt;}
._1d{width:17.149106pt;}
._10{width:18.063151pt;}
._11{width:18.992034pt;}
._18{width:20.173251pt;}
._17{width:21.405522pt;}
._16{width:22.738897pt;}
._15{width:24.106299pt;}
._20{width:25.740477pt;}
._21{width:26.848939pt;}
._28{width:27.821144pt;}
._27{width:28.912851pt;}
._26{width:29.821156pt;}
._1c{width:30.790228pt;}
._1b{width:32.373608pt;}
._25{width:36.681128pt;}
._24{width:37.872452pt;}
._1f{width:43.144391pt;}
._1e{width:44.437954pt;}
._29{width:147.539941pt;}
._7{width:162.579929pt;}
._1a{width:170.742368pt;}
._4{width:558.936560pt;}
._5{width:801.861551pt;}
._6{width:803.142559pt;}
._1{width:1114.230434pt;}
.fs3{font-size:25.265270pt;}
.fs0{font-size:40.305264pt;}
.fs8{font-size:45.119982pt;}
.fs6{font-size:47.525101pt;}
.fs2{font-size:49.932780pt;}
.fs7{font-size:55.345045pt;}
.fs1{font-size:60.159976pt;}
.fs5{font-size:70.385039pt;}
.fs4{font-size:75.199970pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:94.719962pt;}
.y9{bottom:129.119948pt;}
.y8{bottom:142.239943pt;}
.yb{bottom:144.319942pt;}
.y5c{bottom:159.199936pt;}
.y31{bottom:165.439934pt;}
.ycd{bottom:171.199932pt;}
.y86{bottom:171.359931pt;}
.y62{bottom:171.999931pt;}
.y5b{bottom:174.239930pt;}
.yae{bottom:174.559930pt;}
.y30{bottom:182.879927pt;}
.ycc{bottom:188.639925pt;}
.y85{bottom:188.799924pt;}
.y5a{bottom:189.279924pt;}
.y61{bottom:189.439924pt;}
.yad{bottom:191.999923pt;}
.y2f{bottom:200.319920pt;}
.y59{bottom:204.319918pt;}
.ycb{bottom:206.079918pt;}
.y84{bottom:206.239918pt;}
.y60{bottom:206.879917pt;}
.yac{bottom:209.439916pt;}
.y2e{bottom:217.759913pt;}
.y58{bottom:219.999912pt;}
.yca{bottom:223.519911pt;}
.y83{bottom:223.679911pt;}
.y5f{bottom:224.319910pt;}
.y57{bottom:226.879909pt;}
.y2d{bottom:235.199906pt;}
.y56{bottom:237.439905pt;}
.yc9{bottom:240.959904pt;}
.y82{bottom:241.119904pt;}
.y5e{bottom:241.759903pt;}
.yab{bottom:244.319902pt;}
.y2c{bottom:252.639899pt;}
.yc8{bottom:258.399897pt;}
.y81{bottom:258.559897pt;}
.y55{bottom:259.199896pt;}
.yaa{bottom:261.759895pt;}
.y2b{bottom:270.079892pt;}
.yc7{bottom:275.839890pt;}
.y80{bottom:275.999890pt;}
.y54{bottom:276.639889pt;}
.ya9{bottom:279.199888pt;}
.y2a{bottom:287.679885pt;}
.yc6{bottom:293.279883pt;}
.y7f{bottom:293.439883pt;}
.y53{bottom:294.079882pt;}
.ya8{bottom:296.639881pt;}
.y29{bottom:305.119878pt;}
.yc5{bottom:310.719876pt;}
.y7e{bottom:310.879876pt;}
.y52{bottom:311.519875pt;}
.ya7{bottom:314.079874pt;}
.y28{bottom:322.239871pt;}
.ye9{bottom:327.679869pt;}
.yc4{bottom:328.159869pt;}
.y7d{bottom:328.319869pt;}
.y51{bottom:328.959868pt;}
.ya6{bottom:331.519867pt;}
.y27{bottom:339.999864pt;}
.ye8{bottom:345.279862pt;}
.yc3{bottom:345.599862pt;}
.y7c{bottom:345.759862pt;}
.y50{bottom:346.399861pt;}
.ya5{bottom:348.959860pt;}
.y26{bottom:357.439857pt;}
.ye7{bottom:362.719855pt;}
.yc2{bottom:363.039855pt;}
.y7b{bottom:363.199855pt;}
.y4f{bottom:363.839854pt;}
.ya4{bottom:366.399853pt;}
.y25{bottom:374.879850pt;}
.ye6{bottom:380.159848pt;}
.yc1{bottom:380.479848pt;}
.y7a{bottom:380.639848pt;}
.y4e{bottom:381.279847pt;}
.ya3{bottom:383.839846pt;}
.y24{bottom:392.319843pt;}
.ye5{bottom:397.599841pt;}
.yc0{bottom:397.919841pt;}
.y79{bottom:398.079841pt;}
.y4d{bottom:398.719841pt;}
.ya2{bottom:401.279839pt;}
.y23{bottom:409.759836pt;}
.ye4{bottom:415.039834pt;}
.y78{bottom:415.519834pt;}
.y64{bottom:415.839834pt;}
.y4c{bottom:416.159834pt;}
.ya1{bottom:418.719833pt;}
.y22{bottom:427.199829pt;}
.ye3{bottom:432.479827pt;}
.y77{bottom:432.959827pt;}
.y4b{bottom:433.599827pt;}
.ya0{bottom:436.159826pt;}
.y21{bottom:444.639822pt;}
.ye2{bottom:449.919820pt;}
.ybf{bottom:450.399820pt;}
.y76{bottom:450.559820pt;}
.y63{bottom:450.719820pt;}
.y4a{bottom:451.039820pt;}
.y9f{bottom:453.599819pt;}
.y20{bottom:462.079815pt;}
.ye1{bottom:467.359813pt;}
.y75{bottom:467.999813pt;}
.ybd{bottom:468.159813pt;}
.y49{bottom:468.479813pt;}
.y9e{bottom:471.039812pt;}
.y1f{bottom:479.519808pt;}
.ybc{bottom:483.999806pt;}
.ye0{bottom:484.799806pt;}
.y74{bottom:485.439806pt;}
.y48{bottom:485.919806pt;}
.y9d{bottom:488.479805pt;}
.y1e{bottom:496.959801pt;}
.ybe{bottom:498.239801pt;}
.ybb{bottom:499.199800pt;}
.ydf{bottom:502.239799pt;}
.y73{bottom:502.879799pt;}
.y47{bottom:503.359799pt;}
.y9c{bottom:505.919798pt;}
.y1d{bottom:514.399794pt;}
.yba{bottom:515.679794pt;}
.yde{bottom:519.679792pt;}
.y72{bottom:520.319792pt;}
.y46{bottom:520.799792pt;}
.y9b{bottom:522.079791pt;}
.yb9{bottom:531.679787pt;}
.y1c{bottom:531.839787pt;}
.ydd{bottom:537.119785pt;}
.y71{bottom:537.759785pt;}
.y45{bottom:538.239785pt;}
.yb8{bottom:547.839781pt;}
.y1b{bottom:548.959780pt;}
.ydc{bottom:554.559778pt;}
.y99{bottom:554.879778pt;}
.y70{bottom:555.199778pt;}
.y44{bottom:555.839778pt;}
.yb7{bottom:564.799774pt;}
.y1a{bottom:566.719773pt;}
.y98{bottom:570.079772pt;}
.y6f{bottom:572.639771pt;}
.y43{bottom:573.279771pt;}
.ydb{bottom:575.679770pt;}
.yb6{bottom:580.799768pt;}
.y19{bottom:583.839766pt;}
.y97{bottom:585.119766pt;}
.y6e{bottom:590.079764pt;}
.y42{bottom:590.719764pt;}
.yda{bottom:593.599763pt;}
.yb4{bottom:594.879762pt;}
.yb5{bottom:595.999762pt;}
.y9a{bottom:599.999760pt;}
.y96{bottom:600.159760pt;}
.y18{bottom:601.599759pt;}
.y6d{bottom:607.519757pt;}
.y41{bottom:608.159757pt;}
.yd9{bottom:610.719756pt;}
.yb3{bottom:612.319755pt;}
.y95{bottom:615.199754pt;}
.y17{bottom:619.039752pt;}
.y6c{bottom:624.959750pt;}
.y40{bottom:625.599750pt;}
.yd8{bottom:625.759750pt;}
.yb2{bottom:628.479749pt;}
.y94{bottom:630.239748pt;}
.y16{bottom:636.479745pt;}
.yd7{bottom:641.119744pt;}
.y6b{bottom:642.399743pt;}
.y3f{bottom:643.039743pt;}
.yb1{bottom:644.479742pt;}
.y93{bottom:645.279742pt;}
.y15{bottom:653.919738pt;}
.yd6{bottom:657.279737pt;}
.y6a{bottom:659.839736pt;}
.y3e{bottom:660.479736pt;}
.y92{bottom:660.799736pt;}
.yb0{bottom:661.759735pt;}
.y14{bottom:671.999731pt;}
.yd5{bottom:673.439731pt;}
.y91{bottom:676.799729pt;}
.y69{bottom:677.279729pt;}
.y3d{bottom:677.919729pt;}
.yaf{bottom:678.719729pt;}
.yd4{bottom:689.439724pt;}
.y13{bottom:691.999723pt;}
.y90{bottom:692.959723pt;}
.y68{bottom:694.719722pt;}
.y3c{bottom:695.359722pt;}
.yd3{bottom:706.719717pt;}
.y8f{bottom:709.599716pt;}
.y12{bottom:711.359715pt;}
.y67{bottom:712.159715pt;}
.y3b{bottom:712.799715pt;}
.yd2{bottom:723.839710pt;}
.y8e{bottom:724.799710pt;}
.y11{bottom:729.279708pt;}
.y66{bottom:729.599708pt;}
.y5d{bottom:729.919708pt;}
.y3a{bottom:730.239708pt;}
.yd1{bottom:738.879704pt;}
.y8d{bottom:739.839704pt;}
.y65{bottom:747.039701pt;}
.y39{bottom:747.679701pt;}
.ycf{bottom:751.839699pt;}
.yd0{bottom:753.919698pt;}
.y8c{bottom:754.879698pt;}
.y38{bottom:765.119694pt;}
.yce{bottom:769.279692pt;}
.y8b{bottom:769.919692pt;}
.y10{bottom:771.679691pt;}
.y37{bottom:782.559687pt;}
.y8a{bottom:785.439686pt;}
.yf{bottom:792.959683pt;}
.y36{bottom:799.999680pt;}
.y89{bottom:801.439679pt;}
.ye{bottom:814.079674pt;}
.y35{bottom:817.439673pt;}
.y88{bottom:818.879672pt;}
.yd{bottom:834.559666pt;}
.y33{bottom:834.879666pt;}
.y87{bottom:835.679666pt;}
.y34{bottom:841.759663pt;}
.yc{bottom:851.999659pt;}
.y32{bottom:852.319659pt;}
.y7{bottom:869.119652pt;}
.y6{bottom:884.159646pt;}
.y5{bottom:899.039640pt;}
.y4{bottom:914.399634pt;}
.y3{bottom:930.719628pt;}
.y2{bottom:943.199623pt;}
.y1{bottom:955.679618pt;}
.h5{height:24.796481pt;}
.h1{height:39.537732pt;}
.h2{height:39.557412pt;}
.he{height:44.260764pt;}
.hc{height:45.472482pt;}
.ha{height:46.643288pt;}
.hd{height:48.981912pt;}
.h4{height:49.006293pt;}
.hf{height:54.291111pt;}
.h10{height:54.318135pt;}
.hb{height:55.777428pt;}
.h3{height:59.043726pt;}
.h6{height:60.629976pt;}
.h9{height:69.044698pt;}
.h8{height:69.079066pt;}
.h7{height:75.787470pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:124.800168pt;}
.x57{left:133.599947pt;}
.x32{left:135.519946pt;}
.x2d{left:138.079945pt;}
.x7a{left:151.520603pt;}
.x41{left:169.119932pt;}
.x58{left:172.639931pt;}
.xb{left:175.039930pt;}
.x76{left:176.479367pt;}
.x6f{left:178.239376pt;}
.x77{left:181.119928pt;}
.x59{left:182.559927pt;}
.x33{left:185.759926pt;}
.x2e{left:189.119924pt;}
.x5d{left:190.719924pt;}
.x34{left:193.919922pt;}
.x6c{left:196.319921pt;}
.x2f{left:199.039920pt;}
.x5f{left:202.399919pt;}
.x36{left:215.839914pt;}
.x1e{left:216.799913pt;}
.x4f{left:221.599911pt;}
.x43{left:222.719911pt;}
.x35{left:223.999910pt;}
.x30{left:226.559909pt;}
.x47{left:236.639905pt;}
.x1a{left:248.159901pt;}
.x6d{left:254.719898pt;}
.x5e{left:258.239897pt;}
.x42{left:264.479894pt;}
.x50{left:269.439892pt;}
.x37{left:275.359890pt;}
.x1f{left:286.559885pt;}
.x69{left:288.959884pt;}
.x20{left:294.879882pt;}
.x3f{left:296.319881pt;}
.x64{left:297.279881pt;}
.x48{left:299.199880pt;}
.x15{left:300.959880pt;}
.x1b{left:302.719879pt;}
.xa{left:305.279878pt;}
.x40{left:306.879877pt;}
.x16{left:308.159877pt;}
.x5a{left:311.679875pt;}
.x1c{left:313.439875pt;}
.x51{left:314.399874pt;}
.x6a{left:315.839874pt;}
.x17{left:321.439871pt;}
.x6b{left:324.799870pt;}
.x38{left:332.959867pt;}
.x6e{left:337.279865pt;}
.x70{left:340.319864pt;}
.x39{left:341.279863pt;}
.x71{left:344.799862pt;}
.x21{left:351.839859pt;}
.x1d{left:354.239858pt;}
.x22{left:361.759855pt;}
.x5b{left:364.319854pt;}
.x18{left:372.959851pt;}
.xd{left:376.319849pt;}
.x19{left:382.879847pt;}
.x3b{left:386.879845pt;}
.x3a{left:388.479845pt;}
.x11{left:399.359840pt;}
.x23{left:401.919839pt;}
.x8{left:409.599836pt;}
.x63{left:411.839835pt;}
.x5c{left:413.759834pt;}
.x9{left:414.719834pt;}
.x3c{left:419.839832pt;}
.xe{left:425.279830pt;}
.x3d{left:428.159829pt;}
.xf{left:433.599827pt;}
.x12{left:444.319822pt;}
.x13{left:454.239818pt;}
.x29{left:456.799817pt;}
.x72{left:467.999813pt;}
.x3e{left:470.399812pt;}
.x2a{left:478.399809pt;}
.x10{left:479.519808pt;}
.x7{left:485.599806pt;}
.x28{left:488.799804pt;}
.x67{left:490.079804pt;}
.x14{left:495.839802pt;}
.x61{left:503.839798pt;}
.xc{left:505.439798pt;}
.x49{left:508.799796pt;}
.x54{left:509.919698pt;}
.x45{left:511.199796pt;}
.x4b{left:512.319795pt;}
.x52{left:514.719794pt;}
.x2b{left:540.799784pt;}
.x65{left:541.919783pt;}
.x60{left:545.279782pt;}
.x6{left:546.399781pt;}
.x44{left:551.679779pt;}
.x4c{left:555.999778pt;}
.x4d{left:560.479776pt;}
.x24{left:573.919770pt;}
.x2{left:575.839801pt;}
.x66{left:589.119764pt;}
.x78{left:591.999763pt;}
.x62{left:593.599763pt;}
.x53{left:595.359762pt;}
.x4e{left:597.759761pt;}
.x46{left:598.879760pt;}
.x55{left:599.999760pt;}
.x4a{left:601.279759pt;}
.x25{left:603.199759pt;}
.x68{left:607.359757pt;}
.x26{left:611.359755pt;}
.x74{left:622.239751pt;}
.x75{left:626.719749pt;}
.x73{left:629.439748pt;}
.x79{left:643.839742pt;}
.x31{left:648.639741pt;}
.x27{left:650.879740pt;}
.x56{left:652.639739pt;}
.x3{left:660.159736pt;}
.x1{left:667.679733pt;}
.x5{left:684.799726pt;}
.x2c{left:687.519725pt;}
}




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