
    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_727b21f473f723332ecf4bae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.123000;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_15a5fa9193a0f66e87ead07a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.075000;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_ac9654b4ac890569a7416519.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_94da412dd83e5ec2af01cef2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.663000;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_68db8f3946c1c0a4d136dbd0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.079000;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_ea6331ad9cdf2a9a6826173e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.075000;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_5ddea558ecb667b134b09aa0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.061000;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_44a09a7137c1ebd6b3676ec1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112000;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_af5b8b93533a8fb0175d22a6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061000;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_9696d121f246479239a350d4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.061000;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_73c44dda6f86cffbcd9053ae.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.028000;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:ffc;src:url('chunks/assets/font_ae0d7848f69ec6569e84a508.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005000;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:ffd;src:url('chunks/assets/font_d3c6da69fefce9597b3e3994.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.061000;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:ffe;src:url('chunks/assets/font_4e8b1b6861a8abd6f9543d05.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.062000;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:fff;src:url('chunks/assets/font_14501331bcc22e9fec2059d1.woff2')format("woff");}.fff{font-family:fff;line-height:1.005000;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.014586px;}
.ls2{letter-spacing:0.030949px;}
.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;}
}
.ws2{word-spacing:-65.994864px;}
.ws4{word-spacing:-30.467479px;}
.ws0{word-spacing:-16.498716px;}
.ws7{word-spacing:-15.001902px;}
.ws3{word-spacing:-13.662648px;}
.ws8{word-spacing:-10.504681px;}
.ws5{word-spacing:-6.996050px;}
.ws6{word-spacing:-5.901460px;}
.ws1{word-spacing:0.000000px;}
._35{margin-left:-7.843698px;}
._1{margin-left:-1.001573px;}
._20{width:1.038043px;}
._8{width:2.184905px;}
._e{width:3.271376px;}
._c{width:4.393679px;}
._11{width:5.939028px;}
._19{width:7.122561px;}
._0{width:8.434861px;}
._3{width:9.774340px;}
._17{width:10.813197px;}
._6{width:11.948720px;}
._1b{width:13.255528px;}
._7{width:14.279780px;}
._2{width:15.414716px;}
._d{width:17.739034px;}
._9{width:19.606200px;}
._1f{width:21.477238px;}
._18{width:22.782760px;}
._b{width:24.520236px;}
._1e{width:26.289939px;}
._22{width:27.515480px;}
._1d{width:29.428260px;}
._4{width:31.246847px;}
._f{width:32.595863px;}
._14{width:33.652913px;}
._a{width:34.945258px;}
._16{width:35.982764px;}
._26{width:37.092821px;}
._12{width:39.076089px;}
._1c{width:40.329898px;}
._1a{width:41.351943px;}
._24{width:42.421017px;}
._15{width:43.452894px;}
._28{width:45.499066px;}
._2c{width:46.601476px;}
._30{width:47.780764px;}
._21{width:49.201651px;}
._29{width:50.342289px;}
._2a{width:51.759353px;}
._2f{width:53.525558px;}
._2b{width:54.697871px;}
._33{width:56.692786px;}
._34{width:58.220290px;}
._23{width:59.351820px;}
._10{width:62.658125px;}
._37{width:64.412826px;}
._2e{width:65.920700px;}
._31{width:67.491353px;}
._13{width:75.279081px;}
._32{width:76.431005px;}
._5{width:78.193205px;}
._36{width:83.336600px;}
._39{width:85.169116px;}
._3a{width:89.503936px;}
._27{width:90.628645px;}
._25{width:97.036678px;}
._3c{width:102.885822px;}
._2d{width:106.814240px;}
._38{width:120.166311px;}
._3b{width:140.036816px;}
.fc5{color:transparent;}
.fc4{color:rgb(1,52,44);}
.fc2{color:rgb(0,76,62);}
.fc1{color:rgb(18,87,63);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.675507px;}
.fs6{font-size:27.984200px;}
.fs9{font-size:29.750527px;}
.fsa{font-size:42.018724px;}
.fs4{font-size:48.686578px;}
.fs2{font-size:54.020354px;}
.fs5{font-size:54.650592px;}
.fs8{font-size:60.007609px;}
.fs0{font-size:65.994864px;}
.fs3{font-size:72.027138px;}
.fs1{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.yf8{bottom:5.604055px;}
.yf7{bottom:15.520897px;}
.ya2{bottom:16.881306px;}
.ya7{bottom:16.881341px;}
.y91{bottom:16.881363px;}
.y94{bottom:16.881364px;}
.y9a{bottom:16.881366px;}
.yad{bottom:16.881378px;}
.y9d{bottom:18.006749px;}
.yb0{bottom:18.006815px;}
.ya9{bottom:18.006851px;}
.yf6{bottom:25.437740px;}
.ya3{bottom:25.884699px;}
.y95{bottom:25.884757px;}
.yae{bottom:25.884771px;}
.yf5{bottom:35.354582px;}
.ya1{bottom:36.013515px;}
.ya6{bottom:36.013550px;}
.y8e{bottom:36.013571px;}
.y93{bottom:36.013573px;}
.y99{bottom:36.013575px;}
.yac{bottom:36.013587px;}
.yf4{bottom:45.271424px;}
.ya5{bottom:55.145758px;}
.y90{bottom:55.145780px;}
.y98{bottom:55.145783px;}
.yf3{bottom:63.495018px;}
.yf0{bottom:69.341374px;}
.yef{bottom:87.697305px;}
.yf1{bottom:88.570477px;}
.y2b{bottom:99.533399px;}
.yee{bottom:104.835572px;}
.y2a{bottom:122.041880px;}
.yb7{bottom:134.802313px;}
.y63{bottom:140.681657px;}
.y29{bottom:144.550361px;}
.yce{bottom:145.025751px;}
.y48{bottom:147.356730px;}
.yb6{bottom:157.310794px;}
.y28{bottom:167.058841px;}
.ycd{bottom:167.534232px;}
.y47{bottom:169.865210px;}
.y8c{bottom:173.806505px;}
.y84{bottom:173.806512px;}
.yf9{bottom:177.702007px;}
.y27{bottom:189.567322px;}
.ycc{bottom:190.042713px;}
.y46{bottom:192.373691px;}
.y8b{bottom:196.314985px;}
.y83{bottom:196.314992px;}
.yb5{bottom:202.327755px;}
.y26{bottom:212.075803px;}
.ycb{bottom:212.551193px;}
.yed{bottom:214.051450px;}
.y45{bottom:214.882172px;}
.y8a{bottom:218.823466px;}
.y82{bottom:218.823473px;}
.yb4{bottom:224.836236px;}
.y25{bottom:234.584283px;}
.yca{bottom:235.059674px;}
.yec{bottom:236.559931px;}
.y44{bottom:237.390652px;}
.yfb{bottom:238.856313px;}
.y89{bottom:241.331947px;}
.y81{bottom:241.331954px;}
.yb3{bottom:247.344717px;}
.y24{bottom:257.092764px;}
.yc9{bottom:257.568155px;}
.yeb{bottom:259.068411px;}
.y43{bottom:259.899133px;}
.y88{bottom:263.840427px;}
.y80{bottom:263.840434px;}
.yf2{bottom:268.878324px;}
.y23{bottom:279.601245px;}
.yc8{bottom:280.076635px;}
.y42{bottom:282.407614px;}
.y87{bottom:286.348908px;}
.y7f{bottom:286.348915px;}
.yb2{bottom:291.077963px;}
.y22{bottom:302.109725px;}
.yea{bottom:304.085373px;}
.y41{bottom:304.916094px;}
.yb1{bottom:307.306822px;}
.y86{bottom:308.857388px;}
.yaf{bottom:323.792942px;}
.y21{bottom:324.618206px;}
.yc7{bottom:325.093597px;}
.ye9{bottom:326.593853px;}
.y40{bottom:327.424575px;}
.yfc{bottom:331.001729px;}
.y85{bottom:331.365869px;}
.y7e{bottom:332.416249px;}
.y20{bottom:347.126686px;}
.yc6{bottom:347.602077px;}
.y3f{bottom:349.933056px;}
.yfa{bottom:362.599280px;}
.yab{bottom:365.433652px;}
.y1f{bottom:369.635167px;}
.yc5{bottom:370.110558px;}
.ye8{bottom:371.610815px;}
.y3e{bottom:372.441536px;}
.y7d{bottom:377.124931px;}
.y1e{bottom:392.143648px;}
.yc4{bottom:392.619039px;}
.ye7{bottom:394.119295px;}
.y3d{bottom:394.950017px;}
.y2c{bottom:414.652128px;}
.yc3{bottom:415.127519px;}
.ye6{bottom:416.627776px;}
.y3c{bottom:417.458498px;}
.yaa{bottom:423.223678px;}
.y1d{bottom:437.160609px;}
.yc2{bottom:437.636000px;}
.y1c{bottom:459.669090px;}
.yc1{bottom:460.144481px;}
.ye5{bottom:461.644737px;}
.y62{bottom:463.525862px;}
.ya8{bottom:465.257889px;}
.y1b{bottom:482.177570px;}
.yc0{bottom:482.652961px;}
.ye4{bottom:484.153218px;}
.y61{bottom:488.285191px;}
.y1a{bottom:504.686051px;}
.ybf{bottom:505.161442px;}
.ya4{bottom:506.898626px;}
.y19{bottom:527.194532px;}
.ybe{bottom:527.669923px;}
.ye3{bottom:529.170179px;}
.y60{bottom:534.352588px;}
.y18{bottom:549.703012px;}
.ybd{bottom:550.178403px;}
.ye2{bottom:551.678660px;}
.y5f{bottom:556.861069px;}
.y17{bottom:572.211493px;}
.ybc{bottom:572.686884px;}
.y5e{bottom:579.369549px;}
.ya0{bottom:583.427467px;}
.y16{bottom:594.719974px;}
.ybb{bottom:595.195365px;}
.ye1{bottom:596.695621px;}
.y5d{bottom:601.878030px;}
.y15{bottom:617.228454px;}
.yba{bottom:617.703845px;}
.ye0{bottom:619.204102px;}
.y5c{bottom:624.386511px;}
.y53{bottom:628.374799px;}
.y14{bottom:639.736935px;}
.y9f{bottom:640.824031px;}
.ydf{bottom:641.712583px;}
.y5b{bottom:646.894991px;}
.y52{bottom:650.883280px;}
.yb9{bottom:661.520315px;}
.y13{bottom:662.245416px;}
.y5a{bottom:669.403472px;}
.y51{bottom:673.391761px;}
.y12{bottom:684.753896px;}
.yde{bottom:686.729544px;}
.y59{bottom:691.911953px;}
.y50{bottom:695.900241px;}
.yb8{bottom:703.757676px;}
.y11{bottom:707.262377px;}
.ydd{bottom:709.238025px;}
.y58{bottom:714.420433px;}
.y9e{bottom:717.746388px;}
.y4f{bottom:718.408722px;}
.y10{bottom:729.770858px;}
.ydc{bottom:731.746505px;}
.y10a{bottom:736.856370px;}
.y57{bottom:736.928914px;}
.y4e{bottom:740.917202px;}
.yf{bottom:752.279338px;}
.y109{bottom:759.364851px;}
.y56{bottom:759.437395px;}
.y9c{bottom:759.780515px;}
.y4d{bottom:763.425683px;}
.ye{bottom:774.787819px;}
.ydb{bottom:776.763467px;}
.y108{bottom:781.873332px;}
.y4c{bottom:785.934164px;}
.y9b{bottom:801.893086px;}
.y97{bottom:801.893129px;}
.y55{bottom:805.504737px;}
.y4b{bottom:808.442644px;}
.yd{bottom:819.804780px;}
.yda{bottom:821.780428px;}
.y107{bottom:826.890293px;}
.y76{bottom:827.374536px;}
.y6f{bottom:827.374561px;}
.y54{bottom:830.264066px;}
.y4a{bottom:830.951125px;}
.yc{bottom:842.313261px;}
.yd9{bottom:844.288909px;}
.y106{bottom:849.398774px;}
.y75{bottom:849.883017px;}
.y6e{bottom:849.883042px;}
.y49{bottom:853.459606px;}
.yb{bottom:864.821742px;}
.yd8{bottom:866.797389px;}
.y105{bottom:871.907254px;}
.y74{bottom:872.391497px;}
.y6d{bottom:872.391523px;}
.y3b{bottom:875.968086px;}
.y96{bottom:878.421955px;}
.ya{bottom:887.330222px;}
.y73{bottom:894.899978px;}
.y3a{bottom:898.476567px;}
.y9{bottom:909.838703px;}
.yd7{bottom:911.814351px;}
.y104{bottom:916.924216px;}
.y72{bottom:917.408459px;}
.y6c{bottom:918.458921px;}
.y39{bottom:920.985048px;}
.y8{bottom:932.347184px;}
.yd6{bottom:934.322831px;}
.y92{bottom:935.818574px;}
.y103{bottom:939.432696px;}
.y71{bottom:939.916939px;}
.y38{bottom:943.493528px;}
.y7{bottom:954.855664px;}
.yd5{bottom:956.831312px;}
.y6b{bottom:964.526225px;}
.y37{bottom:966.002009px;}
.y6{bottom:977.364145px;}
.y102{bottom:984.449658px;}
.y70{bottom:985.984320px;}
.y6a{bottom:987.034706px;}
.y36{bottom:988.510490px;}
.y8d{bottom:993.215193px;}
.y8f{bottom:993.215215px;}
.y5{bottom:999.872626px;}
.yd4{bottom:1001.848273px;}
.y101{bottom:1006.958138px;}
.y69{bottom:1009.543186px;}
.y35{bottom:1011.018970px;}
.y4{bottom:1022.381106px;}
.yd3{bottom:1024.356754px;}
.y100{bottom:1029.466619px;}
.y68{bottom:1032.051667px;}
.y34{bottom:1033.527451px;}
.y7c{bottom:1034.302513px;}
.y3{bottom:1044.889587px;}
.y67{bottom:1054.560148px;}
.y33{bottom:1056.035932px;}
.y7b{bottom:1056.810994px;}
.y2{bottom:1067.398068px;}
.yd2{bottom:1069.373715px;}
.yff{bottom:1074.483580px;}
.y32{bottom:1078.544412px;}
.y7a{bottom:1079.319474px;}
.yd1{bottom:1091.882196px;}
.yfe{bottom:1096.992061px;}
.y66{bottom:1100.264173px;}
.y31{bottom:1101.052893px;}
.y79{bottom:1101.827955px;}
.y2e{bottom:1113.597342px;}
.yd0{bottom:1114.390677px;}
.yfd{bottom:1119.500542px;}
.y30{bottom:1123.561374px;}
.y78{bottom:1124.336436px;}
.y65{bottom:1125.023501px;}
.y2f{bottom:1146.069854px;}
.y77{bottom:1146.844916px;}
.y64{bottom:1149.782830px;}
.ycf{bottom:1160.094695px;}
.y2d{bottom:1168.408029px;}
.h15{height:15.033783px;}
.h14{height:22.779139px;}
.h18{height:24.216929px;}
.h19{height:34.203241px;}
.h8{height:39.582188px;}
.hf{height:40.515247px;}
.h11{height:40.515291px;}
.hd{height:44.430932px;}
.ha{height:47.054160px;}
.h5{height:47.267809px;}
.h16{height:48.846194px;}
.h17{height:53.639998px;}
.h6{height:53.653825px;}
.h1a{height:53.719820px;}
.h10{height:56.271179px;}
.hc{height:56.271201px;}
.h12{height:56.821578px;}
.h3{height:57.745506px;}
.h13{height:57.981846px;}
.h7{height:59.638470px;}
.h4{height:69.553366px;}
.he{height:75.403386px;}
.hb{height:75.403408px;}
.h9{height:75.403430px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w5{width:200.519992px;}
.w3{width:204.827161px;}
.w4{width:232.962794px;}
.w2{width:363.511961px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:4.501700px;}
.x1{left:43.552352px;}
.x9{left:44.749035px;}
.x4{left:45.943809px;}
.xe{left:47.967125px;}
.x11{left:53.391773px;}
.xa{left:71.600029px;}
.x3{left:116.581821px;}
.xf{left:119.519995px;}
.x10{left:127.283452px;}
.x7{left:410.017659px;}
.x2{left:469.235590px;}
.x5{left:471.190894px;}
.xd{left:496.419632px;}
.x8{left:616.097962px;}
.xc{left:618.659038px;}
.xb{left:620.563834px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.012965pt;}
.ls2{letter-spacing:0.027511pt;}
.ws2{word-spacing:-58.662102pt;}
.ws4{word-spacing:-27.082204pt;}
.ws0{word-spacing:-14.665525pt;}
.ws7{word-spacing:-13.335024pt;}
.ws3{word-spacing:-12.144576pt;}
.ws8{word-spacing:-9.337494pt;}
.ws5{word-spacing:-6.218711pt;}
.ws6{word-spacing:-5.245742pt;}
.ws1{word-spacing:0.000000pt;}
._35{margin-left:-6.972176pt;}
._1{margin-left:-0.890287pt;}
._20{width:0.922705pt;}
._8{width:1.942138pt;}
._e{width:2.907890pt;}
._c{width:3.905493pt;}
._11{width:5.279136pt;}
._19{width:6.331166pt;}
._0{width:7.497654pt;}
._3{width:8.688302pt;}
._17{width:9.611731pt;}
._6{width:10.621084pt;}
._1b{width:11.782692pt;}
._7{width:12.693138pt;}
._2{width:13.701970pt;}
._d{width:15.768030pt;}
._9{width:17.427734pt;}
._1f{width:19.090878pt;}
._18{width:20.251342pt;}
._b{width:21.795765pt;}
._1e{width:23.368835pt;}
._22{width:24.458205pt;}
._1d{width:26.158454pt;}
._4{width:27.774975pt;}
._f{width:28.974100pt;}
._14{width:29.913701pt;}
._a{width:31.062451pt;}
._16{width:31.984679pt;}
._26{width:32.971397pt;}
._12{width:34.734301pt;}
._1c{width:35.848798pt;}
._1a{width:36.757282pt;}
._24{width:37.707571pt;}
._15{width:38.624794pt;}
._28{width:40.443614pt;}
._2c{width:41.423534pt;}
._30{width:42.471791pt;}
._21{width:43.734801pt;}
._29{width:44.748701pt;}
._2a{width:46.008314pt;}
._2f{width:47.578273pt;}
._2b{width:48.620330pt;}
._33{width:50.393587pt;}
._34{width:51.751368pt;}
._23{width:52.757174pt;}
._10{width:55.696111pt;}
._37{width:57.255845pt;}
._2e{width:58.596178pt;}
._31{width:59.992313pt;}
._13{width:66.914739pt;}
._32{width:67.938671pt;}
._5{width:69.505071pt;}
._36{width:74.076978pt;}
._39{width:75.705881pt;}
._3a{width:79.559054pt;}
._27{width:80.558796pt;}
._25{width:86.254825pt;}
._3c{width:91.454064pt;}
._2d{width:94.945991pt;}
._38{width:106.814499pt;}
._3b{width:124.477170pt;}
.fs7{font-size:16.600451pt;}
.fs6{font-size:24.874844pt;}
.fs9{font-size:26.444913pt;}
.fsa{font-size:37.349977pt;}
.fs4{font-size:43.276958pt;}
.fs2{font-size:48.018092pt;}
.fs5{font-size:48.578304pt;}
.fs8{font-size:53.340097pt;}
.fs0{font-size:58.662102pt;}
.fs3{font-size:64.024123pt;}
.fs1{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.yf8{bottom:4.981382pt;}
.yf7{bottom:13.796353pt;}
.ya2{bottom:15.005606pt;}
.ya7{bottom:15.005636pt;}
.y91{bottom:15.005656pt;}
.y94{bottom:15.005657pt;}
.y9a{bottom:15.005659pt;}
.yad{bottom:15.005670pt;}
.y9d{bottom:16.005999pt;}
.yb0{bottom:16.006058pt;}
.ya9{bottom:16.006090pt;}
.yf6{bottom:22.611324pt;}
.ya3{bottom:23.008621pt;}
.y95{bottom:23.008673pt;}
.yae{bottom:23.008685pt;}
.yf5{bottom:31.426295pt;}
.ya1{bottom:32.012013pt;}
.ya6{bottom:32.012044pt;}
.y8e{bottom:32.012063pt;}
.y93{bottom:32.012065pt;}
.y99{bottom:32.012067pt;}
.yac{bottom:32.012077pt;}
.yf4{bottom:40.241266pt;}
.ya5{bottom:49.018452pt;}
.y90{bottom:49.018471pt;}
.y98{bottom:49.018474pt;}
.yf3{bottom:56.440016pt;}
.yf0{bottom:61.636777pt;}
.yef{bottom:77.953160pt;}
.yf1{bottom:78.729313pt;}
.y2b{bottom:88.474133pt;}
.yee{bottom:93.187175pt;}
.y2a{bottom:108.481671pt;}
.yb7{bottom:119.824279pt;}
.y63{bottom:125.050362pt;}
.y29{bottom:128.489209pt;}
.yce{bottom:128.911779pt;}
.y48{bottom:130.983760pt;}
.yb6{bottom:139.831817pt;}
.y28{bottom:148.496748pt;}
.ycd{bottom:148.919317pt;}
.y47{bottom:150.991298pt;}
.y8c{bottom:154.494671pt;}
.y84{bottom:154.494677pt;}
.yf9{bottom:157.957340pt;}
.y27{bottom:168.504286pt;}
.ycc{bottom:168.926856pt;}
.y46{bottom:170.998836pt;}
.y8b{bottom:174.502209pt;}
.y83{bottom:174.502215pt;}
.yb5{bottom:179.846894pt;}
.y26{bottom:188.511824pt;}
.ycb{bottom:188.934394pt;}
.yed{bottom:190.267956pt;}
.y45{bottom:191.006375pt;}
.y8a{bottom:194.509747pt;}
.y82{bottom:194.509754pt;}
.yb4{bottom:199.854432pt;}
.y25{bottom:208.519363pt;}
.yca{bottom:208.941932pt;}
.yec{bottom:210.275494pt;}
.y44{bottom:211.013913pt;}
.yfb{bottom:212.316723pt;}
.y89{bottom:214.517286pt;}
.y81{bottom:214.517292pt;}
.yb3{bottom:219.861970pt;}
.y24{bottom:228.526901pt;}
.yc9{bottom:228.949471pt;}
.yeb{bottom:230.283032pt;}
.y43{bottom:231.021451pt;}
.y88{bottom:234.524824pt;}
.y80{bottom:234.524831pt;}
.yf2{bottom:239.002955pt;}
.y23{bottom:248.534440pt;}
.yc8{bottom:248.957009pt;}
.y42{bottom:251.028990pt;}
.y87{bottom:254.532363pt;}
.y7f{bottom:254.532369pt;}
.yb2{bottom:258.735967pt;}
.y22{bottom:268.541978pt;}
.yea{bottom:270.298109pt;}
.y41{bottom:271.036528pt;}
.yb1{bottom:273.161619pt;}
.y86{bottom:274.539901pt;}
.yaf{bottom:287.815949pt;}
.y21{bottom:288.549516pt;}
.yc7{bottom:288.972086pt;}
.ye9{bottom:290.305647pt;}
.y40{bottom:291.044067pt;}
.yfc{bottom:294.223759pt;}
.y85{bottom:294.547439pt;}
.y7e{bottom:295.481110pt;}
.y20{bottom:308.557055pt;}
.yc6{bottom:308.979624pt;}
.y3f{bottom:311.051605pt;}
.yfa{bottom:322.310471pt;}
.yab{bottom:324.829913pt;}
.y1f{bottom:328.564593pt;}
.yc5{bottom:328.987163pt;}
.ye8{bottom:330.320724pt;}
.y3e{bottom:331.059143pt;}
.y7d{bottom:335.222161pt;}
.y1e{bottom:348.572131pt;}
.yc4{bottom:348.994701pt;}
.ye7{bottom:350.328263pt;}
.y3d{bottom:351.066682pt;}
.y2c{bottom:368.579670pt;}
.yc3{bottom:369.002239pt;}
.ye6{bottom:370.335801pt;}
.y3c{bottom:371.074220pt;}
.yaa{bottom:376.198825pt;}
.y1d{bottom:388.587208pt;}
.yc2{bottom:389.009778pt;}
.y1c{bottom:408.594746pt;}
.yc1{bottom:409.017316pt;}
.ye5{bottom:410.350878pt;}
.y62{bottom:412.022988pt;}
.ya8{bottom:413.562568pt;}
.y1b{bottom:428.602285pt;}
.yc0{bottom:429.024854pt;}
.ye4{bottom:430.358416pt;}
.y61{bottom:434.031280pt;}
.y1a{bottom:448.609823pt;}
.ybf{bottom:449.032393pt;}
.ya4{bottom:450.576556pt;}
.y19{bottom:468.617362pt;}
.ybe{bottom:469.039931pt;}
.ye3{bottom:470.373493pt;}
.y60{bottom:474.980078pt;}
.y18{bottom:488.624900pt;}
.ybd{bottom:489.047470pt;}
.ye2{bottom:490.381031pt;}
.y5f{bottom:494.987616pt;}
.y17{bottom:508.632438pt;}
.ybc{bottom:509.055008pt;}
.y5e{bottom:514.995155pt;}
.ya0{bottom:518.602193pt;}
.y16{bottom:528.639977pt;}
.ybb{bottom:529.062546pt;}
.ye1{bottom:530.396108pt;}
.y5d{bottom:535.002693pt;}
.y15{bottom:548.647515pt;}
.yba{bottom:549.070085pt;}
.ye0{bottom:550.403646pt;}
.y5c{bottom:555.010232pt;}
.y53{bottom:558.555377pt;}
.y14{bottom:568.655053pt;}
.y9f{bottom:569.621361pt;}
.ydf{bottom:570.411185pt;}
.y5b{bottom:575.017770pt;}
.y52{bottom:578.562915pt;}
.yb9{bottom:588.018058pt;}
.y13{bottom:588.662592pt;}
.y5a{bottom:595.025308pt;}
.y51{bottom:598.570454pt;}
.y12{bottom:608.670130pt;}
.yde{bottom:610.426261pt;}
.y59{bottom:615.032847pt;}
.y50{bottom:618.577992pt;}
.yb8{bottom:625.562379pt;}
.y11{bottom:628.677669pt;}
.ydd{bottom:630.433800pt;}
.y58{bottom:635.040385pt;}
.y9e{bottom:637.996789pt;}
.y4f{bottom:638.585531pt;}
.y10{bottom:648.685207pt;}
.ydc{bottom:650.441338pt;}
.y10a{bottom:654.983440pt;}
.y57{bottom:655.047923pt;}
.y4e{bottom:658.593069pt;}
.yf{bottom:668.692745pt;}
.y109{bottom:674.990979pt;}
.y56{bottom:675.055462pt;}
.y9c{bottom:675.360458pt;}
.y4d{bottom:678.600607pt;}
.ye{bottom:688.700284pt;}
.ydb{bottom:690.456415pt;}
.y108{bottom:694.998517pt;}
.y4c{bottom:698.608146pt;}
.y9b{bottom:712.793854pt;}
.y97{bottom:712.793893pt;}
.y55{bottom:716.004211pt;}
.y4b{bottom:718.615684pt;}
.yd{bottom:728.715360pt;}
.yda{bottom:730.471491pt;}
.y107{bottom:735.013594pt;}
.y76{bottom:735.444032pt;}
.y6f{bottom:735.444054pt;}
.y54{bottom:738.012503pt;}
.y4a{bottom:738.623222pt;}
.yc{bottom:748.722899pt;}
.yd9{bottom:750.479030pt;}
.y106{bottom:755.021132pt;}
.y75{bottom:755.451570pt;}
.y6e{bottom:755.451593pt;}
.y49{bottom:758.630761pt;}
.yb{bottom:768.730437pt;}
.yd8{bottom:770.486568pt;}
.y105{bottom:775.028670pt;}
.y74{bottom:775.459109pt;}
.y6d{bottom:775.459131pt;}
.y3b{bottom:778.638299pt;}
.y96{bottom:780.819516pt;}
.ya{bottom:788.737975pt;}
.y73{bottom:795.466647pt;}
.y3a{bottom:798.645837pt;}
.y9{bottom:808.745514pt;}
.yd7{bottom:810.501645pt;}
.y104{bottom:815.043747pt;}
.y72{bottom:815.474186pt;}
.y6c{bottom:816.407930pt;}
.y39{bottom:818.653376pt;}
.y8{bottom:828.753052pt;}
.yd6{bottom:830.509183pt;}
.y92{bottom:831.838733pt;}
.y103{bottom:835.051286pt;}
.y71{bottom:835.481724pt;}
.y38{bottom:838.660914pt;}
.y7{bottom:848.760591pt;}
.yd5{bottom:850.516722pt;}
.y6b{bottom:857.356645pt;}
.y37{bottom:858.668453pt;}
.y6{bottom:868.768129pt;}
.y102{bottom:875.066362pt;}
.y70{bottom:876.430507pt;}
.y6a{bottom:877.364183pt;}
.y36{bottom:878.675991pt;}
.y8d{bottom:882.857950pt;}
.y8f{bottom:882.857969pt;}
.y5{bottom:888.775667pt;}
.yd4{bottom:890.531798pt;}
.y101{bottom:895.073901pt;}
.y69{bottom:897.371721pt;}
.y35{bottom:898.683529pt;}
.y4{bottom:908.783206pt;}
.yd3{bottom:910.539337pt;}
.y100{bottom:915.081439pt;}
.y68{bottom:917.379260pt;}
.y34{bottom:918.691068pt;}
.y7c{bottom:919.380012pt;}
.y3{bottom:928.790744pt;}
.y67{bottom:937.386798pt;}
.y33{bottom:938.698606pt;}
.y7b{bottom:939.387550pt;}
.y2{bottom:948.798282pt;}
.yd2{bottom:950.554414pt;}
.yff{bottom:955.096516pt;}
.y32{bottom:958.706144pt;}
.y7a{bottom:959.395088pt;}
.yd1{bottom:970.561952pt;}
.yfe{bottom:975.104054pt;}
.y66{bottom:978.012598pt;}
.y31{bottom:978.713683pt;}
.y79{bottom:979.402627pt;}
.y2e{bottom:989.864304pt;}
.yd0{bottom:990.569490pt;}
.yfd{bottom:995.111592pt;}
.y30{bottom:998.721221pt;}
.y78{bottom:999.410165pt;}
.y65{bottom:1000.020890pt;}
.y2f{bottom:1018.728759pt;}
.y77{bottom:1019.417703pt;}
.y64{bottom:1022.029182pt;}
.ycf{bottom:1031.195284pt;}
.y2d{bottom:1038.584915pt;}
.h15{height:13.363363pt;}
.h14{height:20.248123pt;}
.h18{height:21.526159pt;}
.h19{height:30.402881pt;}
.h8{height:35.184167pt;}
.hf{height:36.013553pt;}
.h11{height:36.013592pt;}
.hd{height:39.494161pt;}
.ha{height:41.825920pt;}
.h5{height:42.015831pt;}
.h16{height:43.418839pt;}
.h17{height:47.679998pt;}
.h6{height:47.692289pt;}
.h1a{height:47.750951pt;}
.h10{height:50.018826pt;}
.hc{height:50.018846pt;}
.h12{height:50.508070pt;}
.h3{height:51.329339pt;}
.h13{height:51.539419pt;}
.h7{height:53.011974pt;}
.h4{height:61.825214pt;}
.he{height:67.025232pt;}
.hb{height:67.025252pt;}
.h9{height:67.025271pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w5{width:178.239993pt;}
.w3{width:182.068588pt;}
.w4{width:207.078039pt;}
.w2{width:323.121743pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:4.001511pt;}
.x1{left:38.713202pt;}
.x9{left:39.776920pt;}
.x4{left:40.838941pt;}
.xe{left:42.637445pt;}
.x11{left:47.459354pt;}
.xa{left:63.644470pt;}
.x3{left:103.628285pt;}
.xf{left:106.239996pt;}
.x10{left:113.140846pt;}
.x7{left:364.460142pt;}
.x2{left:417.098303pt;}
.x5{left:418.836351pt;}
.xd{left:441.261895pt;}
.x8{left:547.642633pt;}
.xc{left:549.919145pt;}
.xb{left:551.612297pt;}
}




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