
    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_d18fd80924a46069634c850c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_e1e405adbcb41a7cde4ae378.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_598cef23134345a631b94278.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932617;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_d1d5cc27f3a1ffd79a8b65eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932617;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_a5292d5a6a02d322486658f7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_ef62a0e29e7ad567cb19e272.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_aca1696f3dc1d6a77fb730ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_ee06ddaa9f8a7bb616d2ac32.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-18.000000px;}
.ls8{letter-spacing:-2.520000px;}
.ls19{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.119520px;}
.ls13{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.305400px;}
.ls1e{letter-spacing:0.306600px;}
.ls4{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.864000px;}
.ls14{letter-spacing:1.440000px;}
.ls1b{letter-spacing:3.060000px;}
.ls18{letter-spacing:6.785280px;}
.ls10{letter-spacing:7.920000px;}
.ls0{letter-spacing:26.820000px;}
.ls17{letter-spacing:39.905280px;}
.ls11{letter-spacing:62.784000px;}
.ls5{letter-spacing:72.180000px;}
.ls6{letter-spacing:92.880000px;}
.ls3{letter-spacing:178.020000px;}
.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;}
}
.wsb{word-spacing:-18.576000px;}
.wsd{word-spacing:-18.504000px;}
.wsc{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.wse{word-spacing:-16.560000px;}
.wsf{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.093600px;}
.ws0{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.833200px;}
.ws3{word-spacing:-12.420000px;}
.ws2{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._1a{margin-left:-8.977680px;}
._4{margin-left:-7.389120px;}
._5{margin-left:-5.300400px;}
._7{margin-left:-3.620640px;}
._1{margin-left:-1.638240px;}
._0{width:1.254960px;}
._2{width:2.765040px;}
._3{width:4.611360px;}
._9{width:6.456000px;}
._8{width:7.488000px;}
._16{width:9.159840px;}
._d{width:10.224000px;}
._e{width:11.304000px;}
._14{width:12.360000px;}
._c{width:14.250240px;}
._b{width:15.552000px;}
._11{width:16.688880px;}
._1d{width:18.007680px;}
._a{width:19.296000px;}
._19{width:20.345040px;}
._1e{width:23.431680px;}
._15{width:25.200000px;}
._12{width:26.280000px;}
._13{width:27.300000px;}
._f{width:28.992000px;}
._10{width:30.252000px;}
._17{width:37.944000px;}
._18{width:39.065040px;}
._1c{width:43.784640px;}
._1b{width:45.025440px;}
._6{width:72.457440px;}
.fc6{color:rgb(62,61,64);}
.fc5{color:transparent;}
.fc4{color:rgb(68,114,196);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(0,78,154);}
.fc1{color:rgb(238,0,0);}
.fc0{color:rgb(0,176,240);}
.fs2{font-size:38.880000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y108{bottom:-81.900000px;}
.y107{bottom:-44.280000px;}
.y35{bottom:-31.680000px;}
.y106{bottom:-8.280000px;}
.y0{bottom:0.000000px;}
.y34{bottom:0.360000px;}
.y6e{bottom:3.960000px;}
.y63{bottom:6.300000px;}
.y65{bottom:6.480000px;}
.y105{bottom:9.000000px;}
.y33{bottom:20.340000px;}
.y104{bottom:26.280000px;}
.y4{bottom:27.000000px;}
.y103{bottom:43.560000px;}
.y31{bottom:59.940000px;}
.y102{bottom:60.660000px;}
.y81{bottom:67.500000px;}
.y60{bottom:68.580000px;}
.yb8{bottom:76.500000px;}
.y101{bottom:77.940000px;}
.y30{bottom:83.880000px;}
.yaa{bottom:86.940000px;}
.y80{bottom:91.656000px;}
.y5f{bottom:92.556000px;}
.y100{bottom:95.220000px;}
.ye1{bottom:97.236000px;}
.yb7{bottom:100.476000px;}
.y2f{bottom:107.676000px;}
.ya9{bottom:110.736000px;}
.yff{bottom:112.500000px;}
.y7f{bottom:115.596000px;}
.ye0{bottom:116.136000px;}
.y5e{bottom:116.316000px;}
.yb6{bottom:124.416000px;}
.yfe{bottom:129.810000px;}
.y2e{bottom:131.436000px;}
.ya8{bottom:134.496000px;}
.ydf{bottom:135.216000px;}
.y7e{bottom:139.536000px;}
.y5d{bottom:140.076000px;}
.yfd{bottom:147.090000px;}
.yb5{bottom:148.356000px;}
.yde{bottom:154.110000px;}
.y2d{bottom:155.190000px;}
.ya7{bottom:158.250000px;}
.y7d{bottom:163.470000px;}
.y5c{bottom:163.830000px;}
.yfc{bottom:164.190000px;}
.yb4{bottom:172.290000px;}
.ydd{bottom:173.190000px;}
.y2c{bottom:179.130000px;}
.yfb{bottom:181.470000px;}
.ya6{bottom:182.190000px;}
.y7c{bottom:187.410000px;}
.ydc{bottom:192.090000px;}
.yb3{bottom:196.410000px;}
.y5b{bottom:196.770000px;}
.yfa{bottom:198.750000px;}
.y2b{bottom:202.890000px;}
.ya5{bottom:205.950000px;}
.ydb{bottom:210.990000px;}
.y7b{bottom:211.530000px;}
.yb2{bottom:220.350000px;}
.y5a{bottom:220.530000px;}
.y2a{bottom:226.650000px;}
.ya4{bottom:229.710000px;}
.yda{bottom:230.070000px;}
.y7a{bottom:235.470000px;}
.y59{bottom:244.290000px;}
.yd9{bottom:248.970000px;}
.ya3{bottom:253.470000px;}
.y29{bottom:259.410000px;}
.y58{bottom:268.050000px;}
.ya2{bottom:277.410000px;}
.y28{bottom:283.350000px;}
.yd8{bottom:286.950000px;}
.y57{bottom:291.990000px;}
.ya1{bottom:301.170000px;}
.yd7{bottom:305.850000px;}
.y27{bottom:307.110000px;}
.y79{bottom:307.290000px;}
.y56{bottom:315.750000px;}
.ya0{bottom:324.930000px;}
.y26{bottom:330.870000px;}
.y78{bottom:331.410000px;}
.y55{bottom:339.555000px;}
.yd6{bottom:343.875000px;}
.y9f{bottom:348.735000px;}
.y25{bottom:354.675000px;}
.y77{bottom:355.395000px;}
.yd5{bottom:362.955000px;}
.y54{bottom:363.315000px;}
.y9e{bottom:372.495000px;}
.y24{bottom:378.435000px;}
.y76{bottom:379.335000px;}
.yd4{bottom:381.855000px;}
.y53{bottom:387.255000px;}
.yd3{bottom:400.755000px;}
.y23{bottom:402.375000px;}
.y75{bottom:403.275000px;}
.y9d{bottom:405.435000px;}
.y52{bottom:411.015000px;}
.yd2{bottom:419.835000px;}
.y22{bottom:426.135000px;}
.y74{bottom:427.215000px;}
.y9c{bottom:429.195000px;}
.yf8{bottom:434.235000px;}
.y51{bottom:434.775000px;}
.yd1{bottom:438.735000px;}
.y21{bottom:449.895000px;}
.y73{bottom:451.155000px;}
.yd0{bottom:457.815000px;}
.y50{bottom:458.535000px;}
.y9b{bottom:461.955000px;}
.yf9{bottom:463.575000px;}
.y72{bottom:472.755000px;}
.y20{bottom:473.655000px;}
.ycf{bottom:476.715000px;}
.y4f{bottom:482.295000px;}
.y9a{bottom:485.715000px;}
.yce{bottom:495.615000px;}
.y1f{bottom:497.595000px;}
.y71{bottom:497.955000px;}
.y4e{bottom:506.235000px;}
.y99{bottom:509.655000px;}
.ycd{bottom:514.695000px;}
.y1e{bottom:521.355000px;}
.y70{bottom:523.155000px;}
.y4d{bottom:529.995000px;}
.y98{bottom:533.415000px;}
.ycc{bottom:533.595000px;}
.y1d{bottom:545.115000px;}
.y6f{bottom:548.355000px;}
.ycb{bottom:552.675000px;}
.y4c{bottom:553.755000px;}
.y97{bottom:557.175000px;}
.y1c{bottom:568.875000px;}
.yca{bottom:571.575000px;}
.y6d{bottom:573.555000px;}
.y4b{bottom:577.515000px;}
.y96{bottom:580.935000px;}
.yc9{bottom:590.505000px;}
.y1b{bottom:592.845000px;}
.y95{bottom:604.905000px;}
.yc8{bottom:609.585000px;}
.y4a{bottom:610.485000px;}
.y6c{bottom:614.625000px;}
.y1a{bottom:616.605000px;}
.yc7{bottom:628.485000px;}
.y94{bottom:628.665000px;}
.y49{bottom:634.245000px;}
.y6b{bottom:637.125000px;}
.y19{bottom:640.365000px;}
.yc6{bottom:647.565000px;}
.y93{bottom:652.425000px;}
.y48{bottom:658.005000px;}
.y6a{bottom:658.725000px;}
.y18{bottom:664.125000px;}
.yc5{bottom:666.465000px;}
.y92{bottom:676.185000px;}
.y47{bottom:681.765000px;}
.y69{bottom:685.005000px;}
.yc4{bottom:685.545000px;}
.y17{bottom:688.065000px;}
.yf7{bottom:696.885000px;}
.y91{bottom:700.125000px;}
.yc3{bottom:704.445000px;}
.y46{bottom:705.705000px;}
.y68{bottom:711.465000px;}
.y16{bottom:711.825000px;}
.yf6{bottom:717.405000px;}
.yc2{bottom:723.345000px;}
.y90{bottom:723.885000px;}
.y45{bottom:729.465000px;}
.y15{bottom:735.585000px;}
.yf5{bottom:736.485000px;}
.y67{bottom:737.745000px;}
.yc1{bottom:742.425000px;}
.y44{bottom:753.225000px;}
.yf4{bottom:755.385000px;}
.y14{bottom:756.285000px;}
.y8f{bottom:759.885000px;}
.yc0{bottom:761.325000px;}
.y66{bottom:764.025000px;}
.yf3{bottom:774.465000px;}
.y13{bottom:776.265000px;}
.y43{bottom:776.985000px;}
.ybf{bottom:780.405000px;}
.y8e{bottom:783.825000px;}
.y64{bottom:790.305000px;}
.yf2{bottom:793.365000px;}
.y12{bottom:796.065000px;}
.ybe{bottom:799.305000px;}
.y42{bottom:800.925000px;}
.y8d{bottom:807.765000px;}
.yf1{bottom:812.265000px;}
.y11{bottom:815.865000px;}
.y62{bottom:816.765000px;}
.ybd{bottom:818.205000px;}
.y41{bottom:824.685000px;}
.yf0{bottom:831.390000px;}
.y8c{bottom:831.750000px;}
.y10{bottom:835.710000px;}
.ybc{bottom:837.330000px;}
.yb1{bottom:848.490000px;}
.yf{bottom:849.750000px;}
.yef{bottom:850.290000px;}
.y8b{bottom:855.690000px;}
.ybb{bottom:856.230000px;}
.y40{bottom:857.490000px;}
.y61{bottom:858.750000px;}
.y32{bottom:866.850000px;}
.yee{bottom:869.370000px;}
.yb0{bottom:872.250000px;}
.y8a{bottom:879.810000px;}
.yba{bottom:879.990000px;}
.y3f{bottom:881.250000px;}
.yed{bottom:888.270000px;}
.yaf{bottom:896.190000px;}
.y89{bottom:903.750000px;}
.yb9{bottom:903.930000px;}
.y3e{bottom:905.190000px;}
.yec{bottom:907.170000px;}
.yae{bottom:919.950000px;}
.ye{bottom:925.170000px;}
.yeb{bottom:926.250000px;}
.y88{bottom:927.690000px;}
.y3d{bottom:928.950000px;}
.yd{bottom:942.450000px;}
.yad{bottom:943.710000px;}
.yea{bottom:945.150000px;}
.y87{bottom:951.630000px;}
.y3c{bottom:952.710000px;}
.yc{bottom:959.730000px;}
.ye9{bottom:964.230000px;}
.yac{bottom:967.470000px;}
.y86{bottom:975.570000px;}
.y3b{bottom:976.470000px;}
.yb{bottom:977.010000px;}
.ye8{bottom:983.130000px;}
.yab{bottom:991.230000px;}
.ya{bottom:994.290000px;}
.y85{bottom:999.690000px;}
.y3a{bottom:1000.230000px;}
.ye7{bottom:1002.030000px;}
.y9{bottom:1015.530000px;}
.ye6{bottom:1021.110000px;}
.y84{bottom:1023.630000px;}
.y39{bottom:1024.170000px;}
.y8{bottom:1034.070000px;}
.ye5{bottom:1040.010000px;}
.y83{bottom:1047.570000px;}
.y38{bottom:1047.930000px;}
.y7{bottom:1058.190000px;}
.ye4{bottom:1059.090000px;}
.y82{bottom:1071.510000px;}
.y37{bottom:1071.690000px;}
.ye3{bottom:1078.020000px;}
.y6{bottom:1081.080000px;}
.y36{bottom:1095.480000px;}
.ye2{bottom:1096.920000px;}
.y5{bottom:1098.360000px;}
.y3{bottom:1115.460000px;}
.y2{bottom:1132.740000px;}
.y1{bottom:1152.720000px;}
.h10{height:20.700000px;}
.hf{height:20.736000px;}
.he{height:21.780000px;}
.hb{height:21.816000px;}
.hd{height:21.960000px;}
.h7{height:34.380000px;}
.h4{height:42.164648px;}
.h3{height:42.835781px;}
.h9{height:43.506914px;}
.hc{height:46.736719px;}
.h14{height:50.510039px;}
.h6{height:50.800781px;}
.h11{height:51.609375px;}
.h1{height:53.573906px;}
.h8{height:55.735313px;}
.ha{height:59.383125px;}
.h2{height:59.436914px;}
.h12{height:60.855469px;}
.h5{height:64.546875px;}
.h13{height:212.790000px;}
.h0{height:1188.000000px;}
.w5{width:225.750000px;}
.w3{width:256.215000px;}
.w6{width:342.255000px;}
.w4{width:501.945000px;}
.w2{width:737.790000px;}
.w7{width:806.040000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:1.080000px;}
.xf{left:10.800000px;}
.x1{left:53.999986px;}
.xb{left:64.079986px;}
.xd{left:74.699986px;}
.x12{left:78.840000px;}
.x18{left:80.999986px;}
.x4{left:101.735986px;}
.x19{left:108.035986px;}
.x9{left:109.475986px;}
.xe{left:124.236000px;}
.x6{left:133.595986px;}
.x8{left:156.809986px;}
.x11{left:167.069986px;}
.x16{left:173.910000px;}
.xc{left:179.309986px;}
.x7{left:212.069986px;}
.x15{left:229.709986px;}
.x5{left:313.454986px;}
.x14{left:337.395000px;}
.x10{left:368.889000px;}
.xa{left:387.614986px;}
.x17{left:402.015000px;}
.x2{left:409.394986px;}
.x3{left:459.104986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-16.000000pt;}
.ls8{letter-spacing:-2.240000pt;}
.ls19{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls13{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.271467pt;}
.ls1e{letter-spacing:0.272533pt;}
.ls4{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.768000pt;}
.ls14{letter-spacing:1.280000pt;}
.ls1b{letter-spacing:2.720000pt;}
.ls18{letter-spacing:6.031360pt;}
.ls10{letter-spacing:7.040000pt;}
.ls0{letter-spacing:23.840000pt;}
.ls17{letter-spacing:35.471360pt;}
.ls11{letter-spacing:55.808000pt;}
.ls5{letter-spacing:64.160000pt;}
.ls6{letter-spacing:82.560000pt;}
.ls3{letter-spacing:158.240000pt;}
.wsb{word-spacing:-16.512000pt;}
.wsd{word-spacing:-16.448000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.wse{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.416533pt;}
.ws0{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.185067pt;}
.ws3{word-spacing:-11.040000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._1a{margin-left:-7.980160pt;}
._4{margin-left:-6.568107pt;}
._5{margin-left:-4.711467pt;}
._7{margin-left:-3.218347pt;}
._1{margin-left:-1.456213pt;}
._0{width:1.115520pt;}
._2{width:2.457813pt;}
._3{width:4.098987pt;}
._9{width:5.738667pt;}
._8{width:6.656000pt;}
._16{width:8.142080pt;}
._d{width:9.088000pt;}
._e{width:10.048000pt;}
._14{width:10.986667pt;}
._c{width:12.666880pt;}
._b{width:13.824000pt;}
._11{width:14.834560pt;}
._1d{width:16.006827pt;}
._a{width:17.152000pt;}
._19{width:18.084480pt;}
._1e{width:20.828160pt;}
._15{width:22.400000pt;}
._12{width:23.360000pt;}
._13{width:24.266667pt;}
._f{width:25.770667pt;}
._10{width:26.890667pt;}
._17{width:33.728000pt;}
._18{width:34.724480pt;}
._1c{width:38.919680pt;}
._1b{width:40.022613pt;}
._6{width:64.406613pt;}
.fs2{font-size:34.560000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y108{bottom:-72.800000pt;}
.y107{bottom:-39.360000pt;}
.y35{bottom:-28.160000pt;}
.y106{bottom:-7.360000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:0.320000pt;}
.y6e{bottom:3.520000pt;}
.y63{bottom:5.600000pt;}
.y65{bottom:5.760000pt;}
.y105{bottom:8.000000pt;}
.y33{bottom:18.080000pt;}
.y104{bottom:23.360000pt;}
.y4{bottom:24.000000pt;}
.y103{bottom:38.720000pt;}
.y31{bottom:53.280000pt;}
.y102{bottom:53.920000pt;}
.y81{bottom:60.000000pt;}
.y60{bottom:60.960000pt;}
.yb8{bottom:68.000000pt;}
.y101{bottom:69.280000pt;}
.y30{bottom:74.560000pt;}
.yaa{bottom:77.280000pt;}
.y80{bottom:81.472000pt;}
.y5f{bottom:82.272000pt;}
.y100{bottom:84.640000pt;}
.ye1{bottom:86.432000pt;}
.yb7{bottom:89.312000pt;}
.y2f{bottom:95.712000pt;}
.ya9{bottom:98.432000pt;}
.yff{bottom:100.000000pt;}
.y7f{bottom:102.752000pt;}
.ye0{bottom:103.232000pt;}
.y5e{bottom:103.392000pt;}
.yb6{bottom:110.592000pt;}
.yfe{bottom:115.386667pt;}
.y2e{bottom:116.832000pt;}
.ya8{bottom:119.552000pt;}
.ydf{bottom:120.192000pt;}
.y7e{bottom:124.032000pt;}
.y5d{bottom:124.512000pt;}
.yfd{bottom:130.746667pt;}
.yb5{bottom:131.872000pt;}
.yde{bottom:136.986667pt;}
.y2d{bottom:137.946667pt;}
.ya7{bottom:140.666667pt;}
.y7d{bottom:145.306667pt;}
.y5c{bottom:145.626667pt;}
.yfc{bottom:145.946667pt;}
.yb4{bottom:153.146667pt;}
.ydd{bottom:153.946667pt;}
.y2c{bottom:159.226667pt;}
.yfb{bottom:161.306667pt;}
.ya6{bottom:161.946667pt;}
.y7c{bottom:166.586667pt;}
.ydc{bottom:170.746667pt;}
.yb3{bottom:174.586667pt;}
.y5b{bottom:174.906667pt;}
.yfa{bottom:176.666667pt;}
.y2b{bottom:180.346667pt;}
.ya5{bottom:183.066667pt;}
.ydb{bottom:187.546667pt;}
.y7b{bottom:188.026667pt;}
.yb2{bottom:195.866667pt;}
.y5a{bottom:196.026667pt;}
.y2a{bottom:201.466667pt;}
.ya4{bottom:204.186667pt;}
.yda{bottom:204.506667pt;}
.y7a{bottom:209.306667pt;}
.y59{bottom:217.146667pt;}
.yd9{bottom:221.306667pt;}
.ya3{bottom:225.306667pt;}
.y29{bottom:230.586667pt;}
.y58{bottom:238.266667pt;}
.ya2{bottom:246.586667pt;}
.y28{bottom:251.866667pt;}
.yd8{bottom:255.066667pt;}
.y57{bottom:259.546667pt;}
.ya1{bottom:267.706667pt;}
.yd7{bottom:271.866667pt;}
.y27{bottom:272.986667pt;}
.y79{bottom:273.146667pt;}
.y56{bottom:280.666667pt;}
.ya0{bottom:288.826667pt;}
.y26{bottom:294.106667pt;}
.y78{bottom:294.586667pt;}
.y55{bottom:301.826667pt;}
.yd6{bottom:305.666667pt;}
.y9f{bottom:309.986667pt;}
.y25{bottom:315.266667pt;}
.y77{bottom:315.906667pt;}
.yd5{bottom:322.626667pt;}
.y54{bottom:322.946667pt;}
.y9e{bottom:331.106667pt;}
.y24{bottom:336.386667pt;}
.y76{bottom:337.186667pt;}
.yd4{bottom:339.426667pt;}
.y53{bottom:344.226667pt;}
.yd3{bottom:356.226667pt;}
.y23{bottom:357.666667pt;}
.y75{bottom:358.466667pt;}
.y9d{bottom:360.386667pt;}
.y52{bottom:365.346667pt;}
.yd2{bottom:373.186667pt;}
.y22{bottom:378.786667pt;}
.y74{bottom:379.746667pt;}
.y9c{bottom:381.506667pt;}
.yf8{bottom:385.986667pt;}
.y51{bottom:386.466667pt;}
.yd1{bottom:389.986667pt;}
.y21{bottom:399.906667pt;}
.y73{bottom:401.026667pt;}
.yd0{bottom:406.946667pt;}
.y50{bottom:407.586667pt;}
.y9b{bottom:410.626667pt;}
.yf9{bottom:412.066667pt;}
.y72{bottom:420.226667pt;}
.y20{bottom:421.026667pt;}
.ycf{bottom:423.746667pt;}
.y4f{bottom:428.706667pt;}
.y9a{bottom:431.746667pt;}
.yce{bottom:440.546667pt;}
.y1f{bottom:442.306667pt;}
.y71{bottom:442.626667pt;}
.y4e{bottom:449.986667pt;}
.y99{bottom:453.026667pt;}
.ycd{bottom:457.506667pt;}
.y1e{bottom:463.426667pt;}
.y70{bottom:465.026667pt;}
.y4d{bottom:471.106667pt;}
.y98{bottom:474.146667pt;}
.ycc{bottom:474.306667pt;}
.y1d{bottom:484.546667pt;}
.y6f{bottom:487.426667pt;}
.ycb{bottom:491.266667pt;}
.y4c{bottom:492.226667pt;}
.y97{bottom:495.266667pt;}
.y1c{bottom:505.666667pt;}
.yca{bottom:508.066667pt;}
.y6d{bottom:509.826667pt;}
.y4b{bottom:513.346667pt;}
.y96{bottom:516.386667pt;}
.yc9{bottom:524.893333pt;}
.y1b{bottom:526.973333pt;}
.y95{bottom:537.693333pt;}
.yc8{bottom:541.853333pt;}
.y4a{bottom:542.653333pt;}
.y6c{bottom:546.333333pt;}
.y1a{bottom:548.093333pt;}
.yc7{bottom:558.653333pt;}
.y94{bottom:558.813333pt;}
.y49{bottom:563.773333pt;}
.y6b{bottom:566.333333pt;}
.y19{bottom:569.213333pt;}
.yc6{bottom:575.613333pt;}
.y93{bottom:579.933333pt;}
.y48{bottom:584.893333pt;}
.y6a{bottom:585.533333pt;}
.y18{bottom:590.333333pt;}
.yc5{bottom:592.413333pt;}
.y92{bottom:601.053333pt;}
.y47{bottom:606.013333pt;}
.y69{bottom:608.893333pt;}
.yc4{bottom:609.373333pt;}
.y17{bottom:611.613333pt;}
.yf7{bottom:619.453333pt;}
.y91{bottom:622.333333pt;}
.yc3{bottom:626.173333pt;}
.y46{bottom:627.293333pt;}
.y68{bottom:632.413333pt;}
.y16{bottom:632.733333pt;}
.yf6{bottom:637.693333pt;}
.yc2{bottom:642.973333pt;}
.y90{bottom:643.453333pt;}
.y45{bottom:648.413333pt;}
.y15{bottom:653.853333pt;}
.yf5{bottom:654.653333pt;}
.y67{bottom:655.773333pt;}
.yc1{bottom:659.933333pt;}
.y44{bottom:669.533333pt;}
.yf4{bottom:671.453333pt;}
.y14{bottom:672.253333pt;}
.y8f{bottom:675.453333pt;}
.yc0{bottom:676.733333pt;}
.y66{bottom:679.133333pt;}
.yf3{bottom:688.413333pt;}
.y13{bottom:690.013333pt;}
.y43{bottom:690.653333pt;}
.ybf{bottom:693.693333pt;}
.y8e{bottom:696.733333pt;}
.y64{bottom:702.493333pt;}
.yf2{bottom:705.213333pt;}
.y12{bottom:707.613333pt;}
.ybe{bottom:710.493333pt;}
.y42{bottom:711.933333pt;}
.y8d{bottom:718.013333pt;}
.yf1{bottom:722.013333pt;}
.y11{bottom:725.213333pt;}
.y62{bottom:726.013333pt;}
.ybd{bottom:727.293333pt;}
.y41{bottom:733.053333pt;}
.yf0{bottom:739.013333pt;}
.y8c{bottom:739.333333pt;}
.y10{bottom:742.853333pt;}
.ybc{bottom:744.293333pt;}
.yb1{bottom:754.213333pt;}
.yf{bottom:755.333333pt;}
.yef{bottom:755.813333pt;}
.y8b{bottom:760.613333pt;}
.ybb{bottom:761.093333pt;}
.y40{bottom:762.213333pt;}
.y61{bottom:763.333333pt;}
.y32{bottom:770.533333pt;}
.yee{bottom:772.773333pt;}
.yb0{bottom:775.333333pt;}
.y8a{bottom:782.053333pt;}
.yba{bottom:782.213333pt;}
.y3f{bottom:783.333333pt;}
.yed{bottom:789.573333pt;}
.yaf{bottom:796.613333pt;}
.y89{bottom:803.333333pt;}
.yb9{bottom:803.493333pt;}
.y3e{bottom:804.613333pt;}
.yec{bottom:806.373333pt;}
.yae{bottom:817.733333pt;}
.ye{bottom:822.373333pt;}
.yeb{bottom:823.333333pt;}
.y88{bottom:824.613333pt;}
.y3d{bottom:825.733333pt;}
.yd{bottom:837.733333pt;}
.yad{bottom:838.853333pt;}
.yea{bottom:840.133333pt;}
.y87{bottom:845.893333pt;}
.y3c{bottom:846.853333pt;}
.yc{bottom:853.093333pt;}
.ye9{bottom:857.093333pt;}
.yac{bottom:859.973333pt;}
.y86{bottom:867.173333pt;}
.y3b{bottom:867.973333pt;}
.yb{bottom:868.453333pt;}
.ye8{bottom:873.893333pt;}
.yab{bottom:881.093333pt;}
.ya{bottom:883.813333pt;}
.y85{bottom:888.613333pt;}
.y3a{bottom:889.093333pt;}
.ye7{bottom:890.693333pt;}
.y9{bottom:902.693333pt;}
.ye6{bottom:907.653333pt;}
.y84{bottom:909.893333pt;}
.y39{bottom:910.373333pt;}
.y8{bottom:919.173333pt;}
.ye5{bottom:924.453333pt;}
.y83{bottom:931.173333pt;}
.y38{bottom:931.493333pt;}
.y7{bottom:940.613333pt;}
.ye4{bottom:941.413333pt;}
.y82{bottom:952.453333pt;}
.y37{bottom:952.613333pt;}
.ye3{bottom:958.240000pt;}
.y6{bottom:960.960000pt;}
.y36{bottom:973.760000pt;}
.ye2{bottom:975.040000pt;}
.y5{bottom:976.320000pt;}
.y3{bottom:991.520000pt;}
.y2{bottom:1006.880000pt;}
.y1{bottom:1024.640000pt;}
.h10{height:18.400000pt;}
.hf{height:18.432000pt;}
.he{height:19.360000pt;}
.hb{height:19.392000pt;}
.hd{height:19.520000pt;}
.h7{height:30.560000pt;}
.h4{height:37.479688pt;}
.h3{height:38.076250pt;}
.h9{height:38.672812pt;}
.hc{height:41.543750pt;}
.h14{height:44.897813pt;}
.h6{height:45.156250pt;}
.h11{height:45.875000pt;}
.h1{height:47.621250pt;}
.h8{height:49.542500pt;}
.ha{height:52.785000pt;}
.h2{height:52.832812pt;}
.h12{height:54.093750pt;}
.h5{height:57.375000pt;}
.h13{height:189.146667pt;}
.h0{height:1056.000000pt;}
.w5{width:200.666667pt;}
.w3{width:227.746667pt;}
.w6{width:304.226667pt;}
.w4{width:446.173333pt;}
.w2{width:655.813333pt;}
.w7{width:716.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:0.960000pt;}
.xf{left:9.600000pt;}
.x1{left:47.999988pt;}
.xb{left:56.959988pt;}
.xd{left:66.399988pt;}
.x12{left:70.080000pt;}
.x18{left:71.999988pt;}
.x4{left:90.431988pt;}
.x19{left:96.031988pt;}
.x9{left:97.311988pt;}
.xe{left:110.432000pt;}
.x6{left:118.751988pt;}
.x8{left:139.386655pt;}
.x11{left:148.506655pt;}
.x16{left:154.586667pt;}
.xc{left:159.386655pt;}
.x7{left:188.506655pt;}
.x15{left:204.186655pt;}
.x5{left:278.626655pt;}
.x14{left:299.906667pt;}
.x10{left:327.901333pt;}
.xa{left:344.546655pt;}
.x17{left:357.346667pt;}
.x2{left:363.906655pt;}
.x3{left:408.093321pt;}
}




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