
    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_df68ac997d389302e0aa0359.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_62f4e84420a82a2763fdc982.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_384cd26a5d59cf902a76b5fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_0a3bd27fe6fa670ca8601fc7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_639456fa5748f9fe6b69233f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_515121c1f73982bdf35f9954.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.693359;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_8300cd10b466227b1f31b918.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_7af383c65bc7623731aab4a4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.870605;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);}
.v2{vertical-align:-27.000000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.000000px;}
.ls3a{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.344736px;}
.ls22{letter-spacing:-0.288000px;}
.ls35{letter-spacing:-0.132264px;}
.ls2e{letter-spacing:-0.114228px;}
.ls38{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.105336px;}
.ls2c{letter-spacing:-0.102204px;}
.ls39{letter-spacing:-0.100800px;}
.ls1e{letter-spacing:-0.086400px;}
.ls32{letter-spacing:-0.078156px;}
.ls1f{letter-spacing:-0.072000px;}
.ls30{letter-spacing:-0.066132px;}
.ls2f{letter-spacing:-0.060120px;}
.ls23{letter-spacing:-0.057600px;}
.ls31{letter-spacing:-0.054108px;}
.lsb{letter-spacing:-0.050400px;}
.ls11{letter-spacing:-0.048000px;}
.ls1c{letter-spacing:-0.043200px;}
.ls33{letter-spacing:-0.042084px;}
.ls37{letter-spacing:-0.036072px;}
.ls19{letter-spacing:-0.036000px;}
.lsf{letter-spacing:-0.028800px;}
.ls2b{letter-spacing:-0.024048px;}
.ls13{letter-spacing:-0.021600px;}
.ls34{letter-spacing:-0.018036px;}
.ls12{letter-spacing:-0.014400px;}
.ls36{letter-spacing:-0.012024px;}
.lse{letter-spacing:-0.007200px;}
.ls2d{letter-spacing:-0.006012px;}
.lsc{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.006012px;}
.ls0{letter-spacing:0.007200px;}
.ls27{letter-spacing:0.012024px;}
.ls1b{letter-spacing:0.014364px;}
.ls5{letter-spacing:0.014400px;}
.ls26{letter-spacing:0.018036px;}
.ls14{letter-spacing:0.019152px;}
.ls4{letter-spacing:0.021600px;}
.ls9{letter-spacing:0.028800px;}
.ls1{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.043200px;}
.ls2a{letter-spacing:0.048096px;}
.ls7{letter-spacing:0.050400px;}
.ls6{letter-spacing:0.057600px;}
.ls29{letter-spacing:0.060120px;}
.lsa{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.079200px;}
.ls1a{letter-spacing:0.086184px;}
.ls17{letter-spacing:0.086400px;}
.ls24{letter-spacing:0.087840px;}
.ls25{letter-spacing:0.090180px;}
.ls15{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.100800px;}
.ls18{letter-spacing:0.108000px;}
.ls3c{letter-spacing:0.122400px;}
.ls3b{letter-spacing:0.136800px;}
.ls20{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.158400px;}
.ls1d{letter-spacing:0.180000px;}
.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;}
}
.ws49{word-spacing:-60.120000px;}
.ws3a{word-spacing:-18.144000px;}
.ws69{word-spacing:-18.122400px;}
.ws66{word-spacing:-18.108000px;}
.ws64{word-spacing:-18.072000px;}
.ws6b{word-spacing:-18.064800px;}
.ws1{word-spacing:-18.043200px;}
.ws65{word-spacing:-18.028800px;}
.ws67{word-spacing:-18.021600px;}
.ws60{word-spacing:-18.014400px;}
.ws5f{word-spacing:-18.007200px;}
.ws5d{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.992800px;}
.ws68{word-spacing:-17.964000px;}
.ws63{word-spacing:-17.949600px;}
.ws6c{word-spacing:-17.942400px;}
.ws5e{word-spacing:-17.640000px;}
.ws4{word-spacing:-13.452000px;}
.ws34{word-spacing:-12.056184px;}
.ws29{word-spacing:-11.989152px;}
.ws35{word-spacing:-11.984364px;}
.ws39{word-spacing:-11.970000px;}
.ws0{word-spacing:-11.864664px;}
.ws3d{word-spacing:-11.625264px;}
.ws58{word-spacing:-0.504000px;}
.ws57{word-spacing:-0.468000px;}
.ws32{word-spacing:-0.446400px;}
.ws42{word-spacing:-0.439200px;}
.ws61{word-spacing:-0.424800px;}
.ws5b{word-spacing:-0.403200px;}
.ws33{word-spacing:-0.396000px;}
.ws56{word-spacing:-0.388800px;}
.ws3c{word-spacing:-0.381600px;}
.ws6d{word-spacing:-0.374400px;}
.ws30{word-spacing:-0.367200px;}
.ws62{word-spacing:-0.360000px;}
.ws6a{word-spacing:-0.338400px;}
.ws59{word-spacing:-0.316800px;}
.ws5a{word-spacing:-0.302400px;}
.ws2d{word-spacing:-0.295200px;}
.ws41{word-spacing:-0.288000px;}
.ws2f{word-spacing:-0.280800px;}
.ws2b{word-spacing:-0.273600px;}
.ws23{word-spacing:-0.266400px;}
.ws3f{word-spacing:-0.259200px;}
.ws31{word-spacing:-0.252000px;}
.ws25{word-spacing:-0.244800px;}
.ws21{word-spacing:-0.237600px;}
.ws37{word-spacing:-0.230400px;}
.ws2a{word-spacing:-0.223200px;}
.ws2e{word-spacing:-0.216000px;}
.ws1b{word-spacing:-0.208800px;}
.ws16{word-spacing:-0.201600px;}
.ws22{word-spacing:-0.194400px;}
.ws26{word-spacing:-0.187200px;}
.ws24{word-spacing:-0.180000px;}
.ws1d{word-spacing:-0.172800px;}
.ws11{word-spacing:-0.165600px;}
.ws27{word-spacing:-0.158400px;}
.ws13{word-spacing:-0.151200px;}
.ws18{word-spacing:-0.144000px;}
.ws14{word-spacing:-0.136800px;}
.ws17{word-spacing:-0.129600px;}
.ws6{word-spacing:-0.122400px;}
.ws4f{word-spacing:-0.120240px;}
.ws12{word-spacing:-0.115200px;}
.ws51{word-spacing:-0.108216px;}
.ws8{word-spacing:-0.108000px;}
.ws28{word-spacing:-0.100800px;}
.ws19{word-spacing:-0.093600px;}
.ws9{word-spacing:-0.086400px;}
.ws10{word-spacing:-0.079200px;}
.ws46{word-spacing:-0.078156px;}
.ws4d{word-spacing:-0.072144px;}
.ws1f{word-spacing:-0.072000px;}
.ws4e{word-spacing:-0.066132px;}
.ws1a{word-spacing:-0.064800px;}
.ws48{word-spacing:-0.060120px;}
.wse{word-spacing:-0.057600px;}
.ws45{word-spacing:-0.054108px;}
.ws1e{word-spacing:-0.050400px;}
.ws54{word-spacing:-0.048096px;}
.wsf{word-spacing:-0.043200px;}
.ws52{word-spacing:-0.042084px;}
.ws43{word-spacing:-0.036072px;}
.ws7{word-spacing:-0.036000px;}
.ws15{word-spacing:-0.028800px;}
.ws55{word-spacing:-0.024048px;}
.ws20{word-spacing:-0.021600px;}
.ws50{word-spacing:-0.018036px;}
.wsb{word-spacing:-0.014400px;}
.wsa{word-spacing:-0.007200px;}
.ws4b{word-spacing:-0.006012px;}
.ws2{word-spacing:0.000000px;}
.ws4a{word-spacing:0.006012px;}
.wsd{word-spacing:0.007200px;}
.ws1c{word-spacing:0.014400px;}
.ws4c{word-spacing:0.018036px;}
.ws2c{word-spacing:0.021600px;}
.ws40{word-spacing:0.028800px;}
.ws36{word-spacing:0.036000px;}
.ws44{word-spacing:0.042084px;}
.ws38{word-spacing:0.043200px;}
.ws5{word-spacing:0.050400px;}
.ws47{word-spacing:0.054108px;}
.ws3e{word-spacing:0.057600px;}
.ws53{word-spacing:0.072144px;}
.ws5c{word-spacing:0.100800px;}
.ws3b{word-spacing:0.201600px;}
.wsc{word-spacing:0.360000px;}
._1{margin-left:-1.022400px;}
._0{width:1.432800px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs1{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:110.549334px;}
.y6b{bottom:122.340450px;}
.y1a{bottom:124.320450px;}
.y3c{bottom:128.370450px;}
.y59{bottom:128.819802px;}
.ya8{bottom:129.270000px;}
.ya0{bottom:133.140450px;}
.y68{bottom:134.400450px;}
.y80{bottom:145.200450px;}
.y53{bottom:146.370450px;}
.y58{bottom:152.400450px;}
.y19{bottom:155.370450px;}
.y9d{bottom:157.170450px;}
.ya9{bottom:161.040000px;}
.y6a{bottom:163.740450px;}
.y57{bottom:165.810450px;}
.y3b{bottom:169.770450px;}
.y9f{bottom:174.540450px;}
.y67{bottom:175.800600px;}
.y18{bottom:186.420450px;}
.y7f{bottom:186.600450px;}
.y52{bottom:187.770450px;}
.y9c{bottom:198.570450px;}
.y3a{bottom:211.170450px;}
.y95{bottom:215.940450px;}
.y66{bottom:217.200450px;}
.y17{bottom:217.470450px;}
.y7e{bottom:228.000450px;}
.y51{bottom:229.170450px;}
.y69{bottom:229.170600px;}
.y9b{bottom:239.970450px;}
.y16{bottom:248.520450px;}
.y39{bottom:252.570450px;}
.y94{bottom:257.340450px;}
.y65{bottom:258.600450px;}
.y7d{bottom:269.400450px;}
.y50{bottom:270.570450px;}
.y56{bottom:270.570600px;}
.y15{bottom:279.570450px;}
.y85{bottom:281.370450px;}
.y9a{bottom:293.340450px;}
.y38{bottom:293.970450px;}
.y93{bottom:298.740450px;}
.y64{bottom:300.000450px;}
.y14{bottom:310.620450px;}
.ya2{bottom:310.800450px;}
.y4f{bottom:311.970450px;}
.y55{bottom:311.970600px;}
.y7c{bottom:322.770450px;}
.y99{bottom:334.740450px;}
.y37{bottom:335.370450px;}
.y63{bottom:341.400450px;}
.y13{bottom:341.670450px;}
.y92{bottom:352.110450px;}
.y4e{bottom:353.370450px;}
.y54{bottom:353.370600px;}
.y7b{bottom:364.170450px;}
.y12{bottom:372.720450px;}
.y8a{bottom:376.140450px;}
.y36{bottom:376.770450px;}
.y62{bottom:382.800450px;}
.y91{bottom:393.510450px;}
.y4d{bottom:394.770450px;}
.y11{bottom:403.770450px;}
.y7a{bottom:405.570450px;}
.y84{bottom:417.540450px;}
.y35{bottom:418.170450px;}
.y61{bottom:424.110450px;}
.y98{bottom:429.510450px;}
.y10{bottom:434.820450px;}
.y4c{bottom:436.170450px;}
.y90{bottom:446.970450px;}
.y79{bottom:458.940450px;}
.y34{bottom:459.570450px;}
.y60{bottom:465.510450px;}
.yf{bottom:465.870450px;}
.y89{bottom:470.910450px;}
.y4b{bottom:477.570450px;}
.y8f{bottom:488.370450px;}
.y78{bottom:500.340450px;}
.y33{bottom:500.970450px;}
.y5f{bottom:506.910450px;}
.y88{bottom:512.310450px;}
.y4a{bottom:518.970450px;}
.y8e{bottom:529.770450px;}
.ya1{bottom:541.740450px;}
.y32{bottom:542.370450px;}
.y5e{bottom:548.310450px;}
.y77{bottom:553.710450px;}
.y49{bottom:560.370450px;}
.y8d{bottom:583.140450px;}
.y31{bottom:583.770450px;}
.y5d{bottom:589.710450px;}
.y76{bottom:595.110450px;}
.y48{bottom:601.770450px;}
.y97{bottom:607.170450px;}
.ye{bottom:624.090450px;}
.y8c{bottom:624.540450px;}
.y30{bottom:625.170450px;}
.y5c{bottom:631.110450px;}
.y87{bottom:636.510450px;}
.y47{bottom:643.170450px;}
.yd{bottom:647.850450px;}
.y75{bottom:648.570450px;}
.y2f{bottom:666.570450px;}
.y5b{bottom:672.510450px;}
.y86{bottom:677.910450px;}
.y46{bottom:684.570450px;}
.yc{bottom:686.640450px;}
.y74{bottom:689.970450px;}
.yaa{bottom:695.010000px;}
.ya4{bottom:701.940450px;}
.ya7{bottom:707.070000px;}
.y2e{bottom:707.970450px;}
.yb{bottom:710.490450px;}
.y8b{bottom:719.310450px;}
.y45{bottom:725.970450px;}
.y73{bottom:731.370450px;}
.y96{bottom:743.340450px;}
.ya6{bottom:748.380000px;}
.ya{bottom:749.280450px;}
.y2d{bottom:749.370450px;}
.y44{bottom:767.370450px;}
.y83{bottom:772.680450px;}
.y9{bottom:773.040450px;}
.y72{bottom:784.740450px;}
.y2c{bottom:790.680450px;}
.y43{bottom:808.680450px;}
.y82{bottom:814.080450px;}
.y71{bottom:826.140450px;}
.y2b{bottom:832.080450px;}
.y42{bottom:850.080450px;}
.y8{bottom:850.710450px;}
.y70{bottom:867.540450px;}
.y2a{bottom:873.480450px;}
.y7{bottom:874.470450px;}
.ya3{bottom:879.510450px;}
.y41{bottom:891.480450px;}
.y29{bottom:904.530450px;}
.y81{bottom:908.940450px;}
.y6{bottom:913.260450px;}
.y6f{bottom:920.910450px;}
.y40{bottom:932.880450px;}
.y28{bottom:935.580450px;}
.y5{bottom:937.110450px;}
.y9e{bottom:950.340450px;}
.y6e{bottom:962.310450px;}
.y3f{bottom:974.280450px;}
.y27{bottom:984.630450px;}
.y6d{bottom:1003.710450px;}
.y4{bottom:1014.690450px;}
.y26{bottom:1015.680450px;}
.y3{bottom:1038.450450px;}
.y6c{bottom:1045.110450px;}
.y25{bottom:1046.730450px;}
.y3e{bottom:1057.080450px;}
.y2{bottom:1077.330450px;}
.y24{bottom:1077.780450px;}
.y3d{bottom:1098.480450px;}
.y1{bottom:1101.090450px;}
.y23{bottom:1108.830450px;}
.ya5{bottom:1116.120450px;}
.y21{bottom:1132.304700px;}
.y22{bottom:1139.880450px;}
.y20{bottom:1148.504700px;}
.y1f{bottom:1164.704700px;}
.y1e{bottom:1180.904700px;}
.y1d{bottom:1197.104700px;}
.y1c{bottom:1213.304700px;}
.y1b{bottom:1229.505000px;}
.h9{height:26.938828px;}
.h5{height:37.494141px;}
.ha{height:41.655410px;}
.h8{height:43.909277px;}
.h1{height:48.796875px;}
.h4{height:63.035156px;}
.h3{height:63.351562px;}
.h7{height:68.917779px;}
.h2{height:68.918379px;}
.h6{height:68.918979px;}
.hc{height:892.500000px;}
.hb{height:892.830000px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w2{width:1263.000000px;}
.x0{left:0.000000px;}
.xd{left:93.018000px;}
.x11{left:106.275900px;}
.xe{left:127.620000px;}
.x1{left:131.760000px;}
.x5{left:133.290000px;}
.x9{left:135.090000px;}
.x7{left:138.510000px;}
.xb{left:145.620000px;}
.x12{left:159.465900px;}
.x3{left:165.600000px;}
.xc{left:181.620000px;}
.x2{left:245.160000px;}
.x10{left:343.620000px;}
.x6{left:351.270000px;}
.x8{left:380.790000px;}
.x4{left:408.510000px;}
.xa{left:428.490000px;}
.xf{left:473.130000px;}
.x14{left:1011.855750px;}
.x13{left:1069.275750px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.ls3a{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.306432pt;}
.ls22{letter-spacing:-0.256000pt;}
.ls35{letter-spacing:-0.117568pt;}
.ls2e{letter-spacing:-0.101536pt;}
.ls38{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.093632pt;}
.ls2c{letter-spacing:-0.090848pt;}
.ls39{letter-spacing:-0.089600pt;}
.ls1e{letter-spacing:-0.076800pt;}
.ls32{letter-spacing:-0.069472pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls30{letter-spacing:-0.058784pt;}
.ls2f{letter-spacing:-0.053440pt;}
.ls23{letter-spacing:-0.051200pt;}
.ls31{letter-spacing:-0.048096pt;}
.lsb{letter-spacing:-0.044800pt;}
.ls11{letter-spacing:-0.042667pt;}
.ls1c{letter-spacing:-0.038400pt;}
.ls33{letter-spacing:-0.037408pt;}
.ls37{letter-spacing:-0.032064pt;}
.ls19{letter-spacing:-0.032000pt;}
.lsf{letter-spacing:-0.025600pt;}
.ls2b{letter-spacing:-0.021376pt;}
.ls13{letter-spacing:-0.019200pt;}
.ls34{letter-spacing:-0.016032pt;}
.ls12{letter-spacing:-0.012800pt;}
.ls36{letter-spacing:-0.010688pt;}
.lse{letter-spacing:-0.006400pt;}
.ls2d{letter-spacing:-0.005344pt;}
.lsc{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.005344pt;}
.ls0{letter-spacing:0.006400pt;}
.ls27{letter-spacing:0.010688pt;}
.ls1b{letter-spacing:0.012768pt;}
.ls5{letter-spacing:0.012800pt;}
.ls26{letter-spacing:0.016032pt;}
.ls14{letter-spacing:0.017024pt;}
.ls4{letter-spacing:0.019200pt;}
.ls9{letter-spacing:0.025600pt;}
.ls1{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.038400pt;}
.ls2a{letter-spacing:0.042752pt;}
.ls7{letter-spacing:0.044800pt;}
.ls6{letter-spacing:0.051200pt;}
.ls29{letter-spacing:0.053440pt;}
.lsa{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.070400pt;}
.ls1a{letter-spacing:0.076608pt;}
.ls17{letter-spacing:0.076800pt;}
.ls24{letter-spacing:0.078080pt;}
.ls25{letter-spacing:0.080160pt;}
.ls15{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.089600pt;}
.ls18{letter-spacing:0.096000pt;}
.ls3c{letter-spacing:0.108800pt;}
.ls3b{letter-spacing:0.121600pt;}
.ls20{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.140800pt;}
.ls1d{letter-spacing:0.160000pt;}
.ws49{word-spacing:-53.440000pt;}
.ws3a{word-spacing:-16.128000pt;}
.ws69{word-spacing:-16.108800pt;}
.ws66{word-spacing:-16.096000pt;}
.ws64{word-spacing:-16.064000pt;}
.ws6b{word-spacing:-16.057600pt;}
.ws1{word-spacing:-16.038400pt;}
.ws65{word-spacing:-16.025600pt;}
.ws67{word-spacing:-16.019200pt;}
.ws60{word-spacing:-16.012800pt;}
.ws5f{word-spacing:-16.006400pt;}
.ws5d{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.993600pt;}
.ws68{word-spacing:-15.968000pt;}
.ws63{word-spacing:-15.955200pt;}
.ws6c{word-spacing:-15.948800pt;}
.ws5e{word-spacing:-15.680000pt;}
.ws4{word-spacing:-11.957333pt;}
.ws34{word-spacing:-10.716608pt;}
.ws29{word-spacing:-10.657024pt;}
.ws35{word-spacing:-10.652768pt;}
.ws39{word-spacing:-10.640000pt;}
.ws0{word-spacing:-10.546368pt;}
.ws3d{word-spacing:-10.333568pt;}
.ws58{word-spacing:-0.448000pt;}
.ws57{word-spacing:-0.416000pt;}
.ws32{word-spacing:-0.396800pt;}
.ws42{word-spacing:-0.390400pt;}
.ws61{word-spacing:-0.377600pt;}
.ws5b{word-spacing:-0.358400pt;}
.ws33{word-spacing:-0.352000pt;}
.ws56{word-spacing:-0.345600pt;}
.ws3c{word-spacing:-0.339200pt;}
.ws6d{word-spacing:-0.332800pt;}
.ws30{word-spacing:-0.326400pt;}
.ws62{word-spacing:-0.320000pt;}
.ws6a{word-spacing:-0.300800pt;}
.ws59{word-spacing:-0.281600pt;}
.ws5a{word-spacing:-0.268800pt;}
.ws2d{word-spacing:-0.262400pt;}
.ws41{word-spacing:-0.256000pt;}
.ws2f{word-spacing:-0.249600pt;}
.ws2b{word-spacing:-0.243200pt;}
.ws23{word-spacing:-0.236800pt;}
.ws3f{word-spacing:-0.230400pt;}
.ws31{word-spacing:-0.224000pt;}
.ws25{word-spacing:-0.217600pt;}
.ws21{word-spacing:-0.211200pt;}
.ws37{word-spacing:-0.204800pt;}
.ws2a{word-spacing:-0.198400pt;}
.ws2e{word-spacing:-0.192000pt;}
.ws1b{word-spacing:-0.185600pt;}
.ws16{word-spacing:-0.179200pt;}
.ws22{word-spacing:-0.172800pt;}
.ws26{word-spacing:-0.166400pt;}
.ws24{word-spacing:-0.160000pt;}
.ws1d{word-spacing:-0.153600pt;}
.ws11{word-spacing:-0.147200pt;}
.ws27{word-spacing:-0.140800pt;}
.ws13{word-spacing:-0.134400pt;}
.ws18{word-spacing:-0.128000pt;}
.ws14{word-spacing:-0.121600pt;}
.ws17{word-spacing:-0.115200pt;}
.ws6{word-spacing:-0.108800pt;}
.ws4f{word-spacing:-0.106880pt;}
.ws12{word-spacing:-0.102400pt;}
.ws51{word-spacing:-0.096192pt;}
.ws8{word-spacing:-0.096000pt;}
.ws28{word-spacing:-0.089600pt;}
.ws19{word-spacing:-0.083200pt;}
.ws9{word-spacing:-0.076800pt;}
.ws10{word-spacing:-0.070400pt;}
.ws46{word-spacing:-0.069472pt;}
.ws4d{word-spacing:-0.064128pt;}
.ws1f{word-spacing:-0.064000pt;}
.ws4e{word-spacing:-0.058784pt;}
.ws1a{word-spacing:-0.057600pt;}
.ws48{word-spacing:-0.053440pt;}
.wse{word-spacing:-0.051200pt;}
.ws45{word-spacing:-0.048096pt;}
.ws1e{word-spacing:-0.044800pt;}
.ws54{word-spacing:-0.042752pt;}
.wsf{word-spacing:-0.038400pt;}
.ws52{word-spacing:-0.037408pt;}
.ws43{word-spacing:-0.032064pt;}
.ws7{word-spacing:-0.032000pt;}
.ws15{word-spacing:-0.025600pt;}
.ws55{word-spacing:-0.021376pt;}
.ws20{word-spacing:-0.019200pt;}
.ws50{word-spacing:-0.016032pt;}
.wsb{word-spacing:-0.012800pt;}
.wsa{word-spacing:-0.006400pt;}
.ws4b{word-spacing:-0.005344pt;}
.ws2{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.005344pt;}
.wsd{word-spacing:0.006400pt;}
.ws1c{word-spacing:0.012800pt;}
.ws4c{word-spacing:0.016032pt;}
.ws2c{word-spacing:0.019200pt;}
.ws40{word-spacing:0.025600pt;}
.ws36{word-spacing:0.032000pt;}
.ws44{word-spacing:0.037408pt;}
.ws38{word-spacing:0.038400pt;}
.ws5{word-spacing:0.044800pt;}
.ws47{word-spacing:0.048096pt;}
.ws3e{word-spacing:0.051200pt;}
.ws53{word-spacing:0.064128pt;}
.ws5c{word-spacing:0.089600pt;}
.ws3b{word-spacing:0.179200pt;}
.wsc{word-spacing:0.320000pt;}
._1{margin-left:-0.908800pt;}
._0{width:1.273600pt;}
.fs4{font-size:34.560000pt;}
.fs1{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:98.266075pt;}
.y6b{bottom:108.747067pt;}
.y1a{bottom:110.507067pt;}
.y3c{bottom:114.107067pt;}
.y59{bottom:114.506491pt;}
.ya8{bottom:114.906667pt;}
.ya0{bottom:118.347067pt;}
.y68{bottom:119.467067pt;}
.y80{bottom:129.067067pt;}
.y53{bottom:130.107067pt;}
.y58{bottom:135.467067pt;}
.y19{bottom:138.107067pt;}
.y9d{bottom:139.707067pt;}
.ya9{bottom:143.146667pt;}
.y6a{bottom:145.547067pt;}
.y57{bottom:147.387067pt;}
.y3b{bottom:150.907067pt;}
.y9f{bottom:155.147067pt;}
.y67{bottom:156.267200pt;}
.y18{bottom:165.707067pt;}
.y7f{bottom:165.867067pt;}
.y52{bottom:166.907067pt;}
.y9c{bottom:176.507067pt;}
.y3a{bottom:187.707067pt;}
.y95{bottom:191.947067pt;}
.y66{bottom:193.067067pt;}
.y17{bottom:193.307067pt;}
.y7e{bottom:202.667067pt;}
.y51{bottom:203.707067pt;}
.y69{bottom:203.707200pt;}
.y9b{bottom:213.307067pt;}
.y16{bottom:220.907067pt;}
.y39{bottom:224.507067pt;}
.y94{bottom:228.747067pt;}
.y65{bottom:229.867067pt;}
.y7d{bottom:239.467067pt;}
.y50{bottom:240.507067pt;}
.y56{bottom:240.507200pt;}
.y15{bottom:248.507067pt;}
.y85{bottom:250.107067pt;}
.y9a{bottom:260.747067pt;}
.y38{bottom:261.307067pt;}
.y93{bottom:265.547067pt;}
.y64{bottom:266.667067pt;}
.y14{bottom:276.107067pt;}
.ya2{bottom:276.267067pt;}
.y4f{bottom:277.307067pt;}
.y55{bottom:277.307200pt;}
.y7c{bottom:286.907067pt;}
.y99{bottom:297.547067pt;}
.y37{bottom:298.107067pt;}
.y63{bottom:303.467067pt;}
.y13{bottom:303.707067pt;}
.y92{bottom:312.987067pt;}
.y4e{bottom:314.107067pt;}
.y54{bottom:314.107200pt;}
.y7b{bottom:323.707067pt;}
.y12{bottom:331.307067pt;}
.y8a{bottom:334.347067pt;}
.y36{bottom:334.907067pt;}
.y62{bottom:340.267067pt;}
.y91{bottom:349.787067pt;}
.y4d{bottom:350.907067pt;}
.y11{bottom:358.907067pt;}
.y7a{bottom:360.507067pt;}
.y84{bottom:371.147067pt;}
.y35{bottom:371.707067pt;}
.y61{bottom:376.987067pt;}
.y98{bottom:381.787067pt;}
.y10{bottom:386.507067pt;}
.y4c{bottom:387.707067pt;}
.y90{bottom:397.307067pt;}
.y79{bottom:407.947067pt;}
.y34{bottom:408.507067pt;}
.y60{bottom:413.787067pt;}
.yf{bottom:414.107067pt;}
.y89{bottom:418.587067pt;}
.y4b{bottom:424.507067pt;}
.y8f{bottom:434.107067pt;}
.y78{bottom:444.747067pt;}
.y33{bottom:445.307067pt;}
.y5f{bottom:450.587067pt;}
.y88{bottom:455.387067pt;}
.y4a{bottom:461.307067pt;}
.y8e{bottom:470.907067pt;}
.ya1{bottom:481.547067pt;}
.y32{bottom:482.107067pt;}
.y5e{bottom:487.387067pt;}
.y77{bottom:492.187067pt;}
.y49{bottom:498.107067pt;}
.y8d{bottom:518.347067pt;}
.y31{bottom:518.907067pt;}
.y5d{bottom:524.187067pt;}
.y76{bottom:528.987067pt;}
.y48{bottom:534.907067pt;}
.y97{bottom:539.707067pt;}
.ye{bottom:554.747067pt;}
.y8c{bottom:555.147067pt;}
.y30{bottom:555.707067pt;}
.y5c{bottom:560.987067pt;}
.y87{bottom:565.787067pt;}
.y47{bottom:571.707067pt;}
.yd{bottom:575.867067pt;}
.y75{bottom:576.507067pt;}
.y2f{bottom:592.507067pt;}
.y5b{bottom:597.787067pt;}
.y86{bottom:602.587067pt;}
.y46{bottom:608.507067pt;}
.yc{bottom:610.347067pt;}
.y74{bottom:613.307067pt;}
.yaa{bottom:617.786667pt;}
.ya4{bottom:623.947067pt;}
.ya7{bottom:628.506667pt;}
.y2e{bottom:629.307067pt;}
.yb{bottom:631.547067pt;}
.y8b{bottom:639.387067pt;}
.y45{bottom:645.307067pt;}
.y73{bottom:650.107067pt;}
.y96{bottom:660.747067pt;}
.ya6{bottom:665.226667pt;}
.ya{bottom:666.027067pt;}
.y2d{bottom:666.107067pt;}
.y44{bottom:682.107067pt;}
.y83{bottom:686.827067pt;}
.y9{bottom:687.147067pt;}
.y72{bottom:697.547067pt;}
.y2c{bottom:702.827067pt;}
.y43{bottom:718.827067pt;}
.y82{bottom:723.627067pt;}
.y71{bottom:734.347067pt;}
.y2b{bottom:739.627067pt;}
.y42{bottom:755.627067pt;}
.y8{bottom:756.187067pt;}
.y70{bottom:771.147067pt;}
.y2a{bottom:776.427067pt;}
.y7{bottom:777.307067pt;}
.ya3{bottom:781.787067pt;}
.y41{bottom:792.427067pt;}
.y29{bottom:804.027067pt;}
.y81{bottom:807.947067pt;}
.y6{bottom:811.787067pt;}
.y6f{bottom:818.587067pt;}
.y40{bottom:829.227067pt;}
.y28{bottom:831.627067pt;}
.y5{bottom:832.987067pt;}
.y9e{bottom:844.747067pt;}
.y6e{bottom:855.387067pt;}
.y3f{bottom:866.027067pt;}
.y27{bottom:875.227067pt;}
.y6d{bottom:892.187067pt;}
.y4{bottom:901.947067pt;}
.y26{bottom:902.827067pt;}
.y3{bottom:923.067067pt;}
.y6c{bottom:928.987067pt;}
.y25{bottom:930.427067pt;}
.y3e{bottom:939.627067pt;}
.y2{bottom:957.627067pt;}
.y24{bottom:958.027067pt;}
.y3d{bottom:976.427067pt;}
.y1{bottom:978.747067pt;}
.y23{bottom:985.627067pt;}
.ya5{bottom:992.107067pt;}
.y21{bottom:1006.493067pt;}
.y22{bottom:1013.227067pt;}
.y20{bottom:1020.893067pt;}
.y1f{bottom:1035.293067pt;}
.y1e{bottom:1049.693067pt;}
.y1d{bottom:1064.093067pt;}
.y1c{bottom:1078.493067pt;}
.y1b{bottom:1092.893333pt;}
.h9{height:23.945625pt;}
.h5{height:33.328125pt;}
.ha{height:37.027031pt;}
.h8{height:39.030469pt;}
.h1{height:43.375000pt;}
.h4{height:56.031250pt;}
.h3{height:56.312500pt;}
.h7{height:61.260248pt;}
.h2{height:61.260781pt;}
.h6{height:61.261315pt;}
.hc{height:793.333333pt;}
.hb{height:793.626667pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w2{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xd{left:82.682667pt;}
.x11{left:94.467467pt;}
.xe{left:113.440000pt;}
.x1{left:117.120000pt;}
.x5{left:118.480000pt;}
.x9{left:120.080000pt;}
.x7{left:123.120000pt;}
.xb{left:129.440000pt;}
.x12{left:141.747467pt;}
.x3{left:147.200000pt;}
.xc{left:161.440000pt;}
.x2{left:217.920000pt;}
.x10{left:305.440000pt;}
.x6{left:312.240000pt;}
.x8{left:338.480000pt;}
.x4{left:363.120000pt;}
.xa{left:380.880000pt;}
.xf{left:420.560000pt;}
.x14{left:899.427333pt;}
.x13{left:950.467333pt;}
}




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