
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_e9b1293b40b6a9023d9122fa.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bf7b79dbc0d4646a0c5fd59e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_42da342fb674cd79777d4a56.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_23d16c285bb02643b597ff50.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_5192b03f3a3f2df9ffc51b7c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_926fa5db9d3fb2879d8716e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fbc66e3b8dc1d73f9a2c3299.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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;}
.m1{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);}
.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);}
.m2{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);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.ls11{letter-spacing:-1.134000px;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.274800px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.109440px;}
.lsf{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.262080px;}
.lsb{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls10{letter-spacing:6.785280px;}
.lsc{letter-spacing:39.905280px;}
.lsd{letter-spacing:43.920000px;}
.lsa{letter-spacing:59.345280px;}
.ls9{letter-spacing:59.489280px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.ws8{word-spacing:-28.712400px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.426000px;}
.ws0{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.939200px;}
.ws6{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-2.091360px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._6{width:3.438720px;}
._7{width:4.514880px;}
._9{width:6.292800px;}
._31{width:7.295040px;}
._8{width:8.302560px;}
._5{width:9.406080px;}
._d{width:11.407680px;}
._4{width:13.166400px;}
._3{width:14.904000px;}
._f{width:17.832960px;}
._10{width:18.835200px;}
._1b{width:20.203200px;}
._1c{width:21.263040px;}
._2d{width:22.655520px;}
._1d{width:24.376320px;}
._1e{width:26.071680px;}
._25{width:27.555840px;}
._26{width:28.984800px;}
._27{width:30.205440px;}
._23{width:31.965120px;}
._b{width:33.200640px;}
._a{width:34.246080px;}
._15{width:36.034560px;}
._16{width:37.425600px;}
._28{width:38.481120px;}
._1a{width:39.583200px;}
._19{width:40.605120px;}
._21{width:42.194880px;}
._22{width:43.320960px;}
._1f{width:45.175680px;}
._20{width:46.178880px;}
._24{width:47.315520px;}
._13{width:49.164480px;}
._14{width:50.317920px;}
._34{width:51.932160px;}
._30{width:52.957680px;}
._2b{width:54.550560px;}
._17{width:56.053440px;}
._33{width:57.098880px;}
._2c{width:58.704480px;}
._29{width:59.880960px;}
._2a{width:61.243680px;}
._35{width:65.312640px;}
._12{width:72.576000px;}
._11{width:74.387520px;}
._e{width:86.632320px;}
._32{width:89.622720px;}
._2e{width:96.877440px;}
._2f{width:98.074560px;}
._c{width:111.548160px;}
._36{width:127.634880px;}
._2{width:961.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.y36{bottom:20.520000px;}
.ya{bottom:20.880000px;}
.y35{bottom:37.080000px;}
.y37{bottom:48.420000px;}
.y38{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y34{bottom:53.100000px;}
.y7{bottom:53.280000px;}
.y5{bottom:68.976000px;}
.yc2{bottom:87.876000px;}
.y103{bottom:88.776000px;}
.yea{bottom:97.416000px;}
.y31{bottom:97.596000px;}
.y107{bottom:99.396000px;}
.y5c{bottom:99.756000px;}
.ya1{bottom:102.276000px;}
.y6d{bottom:105.696000px;}
.yc1{bottom:116.496000px;}
.y102{bottom:117.216000px;}
.y7e{bottom:120.996000px;}
.ye9{bottom:125.856000px;}
.y2f{bottom:126.036000px;}
.y106{bottom:127.836000px;}
.y5b{bottom:128.196000px;}
.ya0{bottom:130.716000px;}
.y6c{bottom:134.136000px;}
.yc0{bottom:144.936000px;}
.y101{bottom:145.656000px;}
.y7d{bottom:149.436000px;}
.ye8{bottom:154.290000px;}
.y2e{bottom:154.470000px;}
.y5a{bottom:156.630000px;}
.y9f{bottom:160.410000px;}
.y6b{bottom:162.570000px;}
.y100{bottom:174.090000px;}
.ybf{bottom:174.450000px;}
.y7c{bottom:177.870000px;}
.ye7{bottom:182.730000px;}
.y2d{bottom:182.910000px;}
.y59{bottom:185.250000px;}
.y9e{bottom:190.110000px;}
.y6a{bottom:191.010000px;}
.yff{bottom:202.530000px;}
.ybe{bottom:203.070000px;}
.y7b{bottom:207.210000px;}
.y2c{bottom:211.350000px;}
.y58{bottom:213.690000px;}
.y69{bottom:219.450000px;}
.y9d{bottom:219.630000px;}
.yfe{bottom:230.970000px;}
.ybd{bottom:232.590000px;}
.y7a{bottom:235.650000px;}
.y2b{bottom:239.790000px;}
.y57{bottom:242.130000px;}
.y68{bottom:248.070000px;}
.y9c{bottom:249.330000px;}
.yfd{bottom:259.590000px;}
.ybc{bottom:261.210000px;}
.y79{bottom:264.450000px;}
.y2a{bottom:268.230000px;}
.y56{bottom:270.570000px;}
.y67{bottom:276.510000px;}
.y9b{bottom:279.030000px;}
.yfc{bottom:287.670000px;}
.ybb{bottom:290.730000px;}
.y78{bottom:292.890000px;}
.ye6{bottom:296.670000px;}
.y29{bottom:296.850000px;}
.y55{bottom:299.010000px;}
.y66{bottom:304.950000px;}
.y9a{bottom:308.550000px;}
.ydb{bottom:315.570000px;}
.yfb{bottom:316.470000px;}
.yba{bottom:320.475000px;}
.y77{bottom:321.375000px;}
.ye5{bottom:325.155000px;}
.y28{bottom:325.335000px;}
.y54{bottom:327.495000px;}
.y65{bottom:333.435000px;}
.y99{bottom:338.295000px;}
.yda{bottom:344.055000px;}
.yfa{bottom:344.955000px;}
.yb9{bottom:348.915000px;}
.y76{bottom:349.815000px;}
.ye4{bottom:353.595000px;}
.y27{bottom:353.775000px;}
.y53{bottom:355.935000px;}
.y64{bottom:361.875000px;}
.y98{bottom:367.995000px;}
.yd9{bottom:372.495000px;}
.yf9{bottom:373.395000px;}
.y75{bottom:378.255000px;}
.yb8{bottom:378.435000px;}
.ye3{bottom:382.035000px;}
.y26{bottom:382.215000px;}
.y52{bottom:384.375000px;}
.y63{bottom:390.315000px;}
.y97{bottom:397.155000px;}
.yd8{bottom:401.115000px;}
.yf8{bottom:401.835000px;}
.y74{bottom:406.695000px;}
.yb7{bottom:407.055000px;}
.ye2{bottom:410.475000px;}
.y25{bottom:410.655000px;}
.y51{bottom:412.815000px;}
.y62{bottom:418.755000px;}
.y96{bottom:426.135000px;}
.yd7{bottom:429.555000px;}
.yf7{bottom:430.275000px;}
.y73{bottom:435.135000px;}
.yb6{bottom:435.495000px;}
.ye1{bottom:438.915000px;}
.y24{bottom:439.095000px;}
.y50{bottom:441.435000px;}
.y61{bottom:447.195000px;}
.y95{bottom:455.655000px;}
.yd6{bottom:457.995000px;}
.yf6{bottom:458.355000px;}
.ye0{bottom:463.575000px;}
.y72{bottom:463.755000px;}
.yb5{bottom:463.935000px;}
.y23{bottom:467.535000px;}
.y4f{bottom:469.875000px;}
.y60{bottom:475.635000px;}
.y94{bottom:485.355000px;}
.yd5{bottom:486.435000px;}
.yf5{bottom:487.155000px;}
.y71{bottom:492.195000px;}
.yb4{bottom:492.375000px;}
.y22{bottom:495.975000px;}
.y4e{bottom:498.315000px;}
.y5f{bottom:504.255000px;}
.y93{bottom:514.875000px;}
.yf4{bottom:515.775000px;}
.y70{bottom:520.635000px;}
.yb3{bottom:521.715000px;}
.y21{bottom:524.415000px;}
.y104{bottom:526.395000px;}
.y4d{bottom:526.755000px;}
.y5e{bottom:532.695000px;}
.yd4{bottom:543.315000px;}
.y92{bottom:543.495000px;}
.yf3{bottom:544.215000px;}
.y6f{bottom:549.075000px;}
.yb2{bottom:550.515000px;}
.y20{bottom:553.035000px;}
.y105{bottom:554.835000px;}
.y4c{bottom:555.195000px;}
.y5d{bottom:557.175000px;}
.yd3{bottom:571.785000px;}
.yf2{bottom:572.685000px;}
.y91{bottom:573.045000px;}
.y6e{bottom:573.585000px;}
.yb1{bottom:578.985000px;}
.y1f{bottom:581.505000px;}
.y4b{bottom:583.665000px;}
.yd2{bottom:600.225000px;}
.yf1{bottom:601.125000px;}
.y90{bottom:602.745000px;}
.yb0{bottom:607.425000px;}
.y1e{bottom:609.945000px;}
.y4a{bottom:612.105000px;}
.yd1{bottom:628.665000px;}
.yf0{bottom:629.565000px;}
.y8f{bottom:632.445000px;}
.yaf{bottom:637.125000px;}
.y1d{bottom:638.025000px;}
.y30{bottom:638.385000px;}
.y49{bottom:640.545000px;}
.yd0{bottom:657.285000px;}
.yef{bottom:658.005000px;}
.y8e{bottom:662.145000px;}
.yae{bottom:665.565000px;}
.y48{bottom:668.985000px;}
.y1c{bottom:670.605000px;}
.ycf{bottom:685.725000px;}
.yee{bottom:686.445000px;}
.y8d{bottom:691.305000px;}
.yad{bottom:694.005000px;}
.ydf{bottom:697.425000px;}
.y47{bottom:697.605000px;}
.y1b{bottom:699.045000px;}
.yed{bottom:711.105000px;}
.yce{bottom:714.165000px;}
.y8c{bottom:720.105000px;}
.yac{bottom:722.445000px;}
.yde{bottom:725.865000px;}
.y46{bottom:726.045000px;}
.y1a{bottom:727.485000px;}
.ycd{bottom:742.605000px;}
.y8b{bottom:749.625000px;}
.yab{bottom:750.885000px;}
.ydd{bottom:754.305000px;}
.y45{bottom:754.485000px;}
.y19{bottom:755.925000px;}
.ycc{bottom:771.045000px;}
.y8a{bottom:778.245000px;}
.ydc{bottom:778.965000px;}
.yaa{bottom:779.325000px;}
.y44{bottom:782.925000px;}
.y18{bottom:784.365000px;}
.ycb{bottom:799.485000px;}
.y89{bottom:806.685000px;}
.ya9{bottom:807.945000px;}
.y43{bottom:811.365000px;}
.y17{bottom:812.805000px;}
.yca{bottom:827.970000px;}
.yec{bottom:828.690000px;}
.y88{bottom:835.170000px;}
.ya8{bottom:837.510000px;}
.y42{bottom:839.850000px;}
.y16{bottom:841.290000px;}
.yeb{bottom:853.350000px;}
.yc9{bottom:856.050000px;}
.y87{bottom:864.330000px;}
.ya7{bottom:865.950000px;}
.y41{bottom:868.290000px;}
.y15{bottom:869.910000px;}
.yc8{bottom:884.850000px;}
.y86{bottom:893.310000px;}
.ya6{bottom:894.390000px;}
.y40{bottom:896.730000px;}
.y14{bottom:898.350000px;}
.yc7{bottom:913.470000px;}
.y85{bottom:921.750000px;}
.ya5{bottom:922.830000px;}
.y3f{bottom:925.170000px;}
.y13{bottom:926.790000px;}
.yc6{bottom:941.910000px;}
.y84{bottom:950.190000px;}
.ya4{bottom:951.270000px;}
.y3e{bottom:953.790000px;}
.y12{bottom:961.170000px;}
.yc5{bottom:969.990000px;}
.y83{bottom:978.630000px;}
.ya3{bottom:979.710000px;}
.y3d{bottom:982.230000px;}
.y11{bottom:983.310000px;}
.yc4{bottom:994.830000px;}
.y82{bottom:1008.330000px;}
.y3c{bottom:1010.670000px;}
.y10{bottom:1011.750000px;}
.y4{bottom:1032.810000px;}
.ya2{bottom:1036.770000px;}
.y81{bottom:1037.850000px;}
.y3b{bottom:1039.110000px;}
.y3{bottom:1052.790000px;}
.y80{bottom:1066.290000px;}
.y3a{bottom:1067.550000px;}
.y2{bottom:1072.620000px;}
.y7f{bottom:1094.940000px;}
.yc3{bottom:1095.660000px;}
.y39{bottom:1096.020000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1114.380000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1131.660000px;}
.h6{height:33.480000px;}
.hb{height:41.250937px;}
.h11{height:46.251562px;}
.h1{height:48.045938px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h2{height:58.621992px;}
.h10{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h12{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562519px;}
.h13{height:111.043849px;}
.hf{height:111.043854px;}
.h4{height:167.250000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w3{width:361.335000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.xe{left:64.619986px;}
.x13{left:80.999986px;}
.xf{left:91.655986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x17{left:342.794986px;}
.x16{left:360.794986px;}
.xd{left:405.794986px;}
.x8{left:486.104986px;}
.x10{left:496.724986px;}
.x12{left:513.104986px;}
.x5{left:521.025000px;}
.x11{left:523.724986px;}
.x15{left:688.649986px;}
.xc{left:819.149986px;}
.x14{left:864.149986px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls11{letter-spacing:-1.008000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.244267pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.097280pt;}
.lsf{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.232960pt;}
.lsb{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls10{letter-spacing:6.031360pt;}
.lsc{letter-spacing:35.471360pt;}
.lsd{letter-spacing:39.040000pt;}
.lsa{letter-spacing:52.751360pt;}
.ls9{letter-spacing:52.879360pt;}
.ls0{letter-spacing:184.370347pt;}
.ws9{word-spacing:-58.880000pt;}
.ws8{word-spacing:-25.522133pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.712000pt;}
.ws0{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.390400pt;}
.ws6{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-1.858987pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._6{width:3.056640pt;}
._7{width:4.013227pt;}
._9{width:5.593600pt;}
._31{width:6.484480pt;}
._8{width:7.380053pt;}
._5{width:8.360960pt;}
._d{width:10.140160pt;}
._4{width:11.703467pt;}
._3{width:13.248000pt;}
._f{width:15.851520pt;}
._10{width:16.742400pt;}
._1b{width:17.958400pt;}
._1c{width:18.900480pt;}
._2d{width:20.138240pt;}
._1d{width:21.667840pt;}
._1e{width:23.174827pt;}
._25{width:24.494080pt;}
._26{width:25.764267pt;}
._27{width:26.849280pt;}
._23{width:28.413440pt;}
._b{width:29.511680pt;}
._a{width:30.440960pt;}
._15{width:32.030720pt;}
._16{width:33.267200pt;}
._28{width:34.205440pt;}
._1a{width:35.185067pt;}
._19{width:36.093440pt;}
._21{width:37.506560pt;}
._22{width:38.507520pt;}
._1f{width:40.156160pt;}
._20{width:41.047893pt;}
._24{width:42.058240pt;}
._13{width:43.701760pt;}
._14{width:44.727040pt;}
._34{width:46.161920pt;}
._30{width:47.073493pt;}
._2b{width:48.489387pt;}
._17{width:49.825280pt;}
._33{width:50.754560pt;}
._2c{width:52.181760pt;}
._29{width:53.227520pt;}
._2a{width:54.438827pt;}
._35{width:58.055680pt;}
._12{width:64.512000pt;}
._11{width:66.122240pt;}
._e{width:77.006507pt;}
._32{width:79.664640pt;}
._2e{width:86.113280pt;}
._2f{width:87.177387pt;}
._c{width:99.153920pt;}
._36{width:113.453227pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.y36{bottom:18.240000pt;}
.ya{bottom:18.560000pt;}
.y35{bottom:32.960000pt;}
.y37{bottom:43.040000pt;}
.y38{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y34{bottom:47.200000pt;}
.y7{bottom:47.360000pt;}
.y5{bottom:61.312000pt;}
.yc2{bottom:78.112000pt;}
.y103{bottom:78.912000pt;}
.yea{bottom:86.592000pt;}
.y31{bottom:86.752000pt;}
.y107{bottom:88.352000pt;}
.y5c{bottom:88.672000pt;}
.ya1{bottom:90.912000pt;}
.y6d{bottom:93.952000pt;}
.yc1{bottom:103.552000pt;}
.y102{bottom:104.192000pt;}
.y7e{bottom:107.552000pt;}
.ye9{bottom:111.872000pt;}
.y2f{bottom:112.032000pt;}
.y106{bottom:113.632000pt;}
.y5b{bottom:113.952000pt;}
.ya0{bottom:116.192000pt;}
.y6c{bottom:119.232000pt;}
.yc0{bottom:128.832000pt;}
.y101{bottom:129.472000pt;}
.y7d{bottom:132.832000pt;}
.ye8{bottom:137.146667pt;}
.y2e{bottom:137.306667pt;}
.y5a{bottom:139.226667pt;}
.y9f{bottom:142.586667pt;}
.y6b{bottom:144.506667pt;}
.y100{bottom:154.746667pt;}
.ybf{bottom:155.066667pt;}
.y7c{bottom:158.106667pt;}
.ye7{bottom:162.426667pt;}
.y2d{bottom:162.586667pt;}
.y59{bottom:164.666667pt;}
.y9e{bottom:168.986667pt;}
.y6a{bottom:169.786667pt;}
.yff{bottom:180.026667pt;}
.ybe{bottom:180.506667pt;}
.y7b{bottom:184.186667pt;}
.y2c{bottom:187.866667pt;}
.y58{bottom:189.946667pt;}
.y69{bottom:195.066667pt;}
.y9d{bottom:195.226667pt;}
.yfe{bottom:205.306667pt;}
.ybd{bottom:206.746667pt;}
.y7a{bottom:209.466667pt;}
.y2b{bottom:213.146667pt;}
.y57{bottom:215.226667pt;}
.y68{bottom:220.506667pt;}
.y9c{bottom:221.626667pt;}
.yfd{bottom:230.746667pt;}
.ybc{bottom:232.186667pt;}
.y79{bottom:235.066667pt;}
.y2a{bottom:238.426667pt;}
.y56{bottom:240.506667pt;}
.y67{bottom:245.786667pt;}
.y9b{bottom:248.026667pt;}
.yfc{bottom:255.706667pt;}
.ybb{bottom:258.426667pt;}
.y78{bottom:260.346667pt;}
.ye6{bottom:263.706667pt;}
.y29{bottom:263.866667pt;}
.y55{bottom:265.786667pt;}
.y66{bottom:271.066667pt;}
.y9a{bottom:274.266667pt;}
.ydb{bottom:280.506667pt;}
.yfb{bottom:281.306667pt;}
.yba{bottom:284.866667pt;}
.y77{bottom:285.666667pt;}
.ye5{bottom:289.026667pt;}
.y28{bottom:289.186667pt;}
.y54{bottom:291.106667pt;}
.y65{bottom:296.386667pt;}
.y99{bottom:300.706667pt;}
.yda{bottom:305.826667pt;}
.yfa{bottom:306.626667pt;}
.yb9{bottom:310.146667pt;}
.y76{bottom:310.946667pt;}
.ye4{bottom:314.306667pt;}
.y27{bottom:314.466667pt;}
.y53{bottom:316.386667pt;}
.y64{bottom:321.666667pt;}
.y98{bottom:327.106667pt;}
.yd9{bottom:331.106667pt;}
.yf9{bottom:331.906667pt;}
.y75{bottom:336.226667pt;}
.yb8{bottom:336.386667pt;}
.ye3{bottom:339.586667pt;}
.y26{bottom:339.746667pt;}
.y52{bottom:341.666667pt;}
.y63{bottom:346.946667pt;}
.y97{bottom:353.026667pt;}
.yd8{bottom:356.546667pt;}
.yf8{bottom:357.186667pt;}
.y74{bottom:361.506667pt;}
.yb7{bottom:361.826667pt;}
.ye2{bottom:364.866667pt;}
.y25{bottom:365.026667pt;}
.y51{bottom:366.946667pt;}
.y62{bottom:372.226667pt;}
.y96{bottom:378.786667pt;}
.yd7{bottom:381.826667pt;}
.yf7{bottom:382.466667pt;}
.y73{bottom:386.786667pt;}
.yb6{bottom:387.106667pt;}
.ye1{bottom:390.146667pt;}
.y24{bottom:390.306667pt;}
.y50{bottom:392.386667pt;}
.y61{bottom:397.506667pt;}
.y95{bottom:405.026667pt;}
.yd6{bottom:407.106667pt;}
.yf6{bottom:407.426667pt;}
.ye0{bottom:412.066667pt;}
.y72{bottom:412.226667pt;}
.yb5{bottom:412.386667pt;}
.y23{bottom:415.586667pt;}
.y4f{bottom:417.666667pt;}
.y60{bottom:422.786667pt;}
.y94{bottom:431.426667pt;}
.yd5{bottom:432.386667pt;}
.yf5{bottom:433.026667pt;}
.y71{bottom:437.506667pt;}
.yb4{bottom:437.666667pt;}
.y22{bottom:440.866667pt;}
.y4e{bottom:442.946667pt;}
.y5f{bottom:448.226667pt;}
.y93{bottom:457.666667pt;}
.yf4{bottom:458.466667pt;}
.y70{bottom:462.786667pt;}
.yb3{bottom:463.746667pt;}
.y21{bottom:466.146667pt;}
.y104{bottom:467.906667pt;}
.y4d{bottom:468.226667pt;}
.y5e{bottom:473.506667pt;}
.yd4{bottom:482.946667pt;}
.y92{bottom:483.106667pt;}
.yf3{bottom:483.746667pt;}
.y6f{bottom:488.066667pt;}
.yb2{bottom:489.346667pt;}
.y20{bottom:491.586667pt;}
.y105{bottom:493.186667pt;}
.y4c{bottom:493.506667pt;}
.y5d{bottom:495.266667pt;}
.yd3{bottom:508.253333pt;}
.yf2{bottom:509.053333pt;}
.y91{bottom:509.373333pt;}
.y6e{bottom:509.853333pt;}
.yb1{bottom:514.653333pt;}
.y1f{bottom:516.893333pt;}
.y4b{bottom:518.813333pt;}
.yd2{bottom:533.533333pt;}
.yf1{bottom:534.333333pt;}
.y90{bottom:535.773333pt;}
.yb0{bottom:539.933333pt;}
.y1e{bottom:542.173333pt;}
.y4a{bottom:544.093333pt;}
.yd1{bottom:558.813333pt;}
.yf0{bottom:559.613333pt;}
.y8f{bottom:562.173333pt;}
.yaf{bottom:566.333333pt;}
.y1d{bottom:567.133333pt;}
.y30{bottom:567.453333pt;}
.y49{bottom:569.373333pt;}
.yd0{bottom:584.253333pt;}
.yef{bottom:584.893333pt;}
.y8e{bottom:588.573333pt;}
.yae{bottom:591.613333pt;}
.y48{bottom:594.653333pt;}
.y1c{bottom:596.093333pt;}
.ycf{bottom:609.533333pt;}
.yee{bottom:610.173333pt;}
.y8d{bottom:614.493333pt;}
.yad{bottom:616.893333pt;}
.ydf{bottom:619.933333pt;}
.y47{bottom:620.093333pt;}
.y1b{bottom:621.373333pt;}
.yed{bottom:632.093333pt;}
.yce{bottom:634.813333pt;}
.y8c{bottom:640.093333pt;}
.yac{bottom:642.173333pt;}
.yde{bottom:645.213333pt;}
.y46{bottom:645.373333pt;}
.y1a{bottom:646.653333pt;}
.ycd{bottom:660.093333pt;}
.y8b{bottom:666.333333pt;}
.yab{bottom:667.453333pt;}
.ydd{bottom:670.493333pt;}
.y45{bottom:670.653333pt;}
.y19{bottom:671.933333pt;}
.ycc{bottom:685.373333pt;}
.y8a{bottom:691.773333pt;}
.ydc{bottom:692.413333pt;}
.yaa{bottom:692.733333pt;}
.y44{bottom:695.933333pt;}
.y18{bottom:697.213333pt;}
.ycb{bottom:710.653333pt;}
.y89{bottom:717.053333pt;}
.ya9{bottom:718.173333pt;}
.y43{bottom:721.213333pt;}
.y17{bottom:722.493333pt;}
.yca{bottom:735.973333pt;}
.yec{bottom:736.613333pt;}
.y88{bottom:742.373333pt;}
.ya8{bottom:744.453333pt;}
.y42{bottom:746.533333pt;}
.y16{bottom:747.813333pt;}
.yeb{bottom:758.533333pt;}
.yc9{bottom:760.933333pt;}
.y87{bottom:768.293333pt;}
.ya7{bottom:769.733333pt;}
.y41{bottom:771.813333pt;}
.y15{bottom:773.253333pt;}
.yc8{bottom:786.533333pt;}
.y86{bottom:794.053333pt;}
.ya6{bottom:795.013333pt;}
.y40{bottom:797.093333pt;}
.y14{bottom:798.533333pt;}
.yc7{bottom:811.973333pt;}
.y85{bottom:819.333333pt;}
.ya5{bottom:820.293333pt;}
.y3f{bottom:822.373333pt;}
.y13{bottom:823.813333pt;}
.yc6{bottom:837.253333pt;}
.y84{bottom:844.613333pt;}
.ya4{bottom:845.573333pt;}
.y3e{bottom:847.813333pt;}
.y12{bottom:854.373333pt;}
.yc5{bottom:862.213333pt;}
.y83{bottom:869.893333pt;}
.ya3{bottom:870.853333pt;}
.y3d{bottom:873.093333pt;}
.y11{bottom:874.053333pt;}
.yc4{bottom:884.293333pt;}
.y82{bottom:896.293333pt;}
.y3c{bottom:898.373333pt;}
.y10{bottom:899.333333pt;}
.y4{bottom:918.053333pt;}
.ya2{bottom:921.573333pt;}
.y81{bottom:922.533333pt;}
.y3b{bottom:923.653333pt;}
.y3{bottom:935.813333pt;}
.y80{bottom:947.813333pt;}
.y3a{bottom:948.933333pt;}
.y2{bottom:953.440000pt;}
.y7f{bottom:973.280000pt;}
.yc3{bottom:973.920000pt;}
.y39{bottom:974.240000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:990.560000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1005.920000pt;}
.h6{height:29.760000pt;}
.hb{height:36.667500pt;}
.h11{height:41.112500pt;}
.h1{height:42.707500pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h2{height:52.108438pt;}
.h10{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h12{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500017pt;}
.h13{height:98.705643pt;}
.hf{height:98.705648pt;}
.h4{height:148.666667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w3{width:321.186667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.xe{left:57.439988pt;}
.x13{left:71.999988pt;}
.xf{left:81.471988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x17{left:304.706655pt;}
.x16{left:320.706655pt;}
.xd{left:360.706655pt;}
.x8{left:432.093321pt;}
.x10{left:441.533321pt;}
.x12{left:456.093321pt;}
.x5{left:463.133333pt;}
.x11{left:465.533321pt;}
.x15{left:612.133321pt;}
.xc{left:728.133321pt;}
.x14{left:768.133321pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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