
    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_6c0306fe03e04909c5bd649f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_5e64e727b36c85c1656e6401.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_b333920ff0086db1b03a9278.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_32514887d0fc21c89a5cc063.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cd01e137abcabc747f5da802.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_eb850e0c266c5a497e69d4ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_d22e14fb5fc34a58ed85d697.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906250;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_52ead4b87f1ed0ca4500950b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_89f1d1ec0def6eef6c29a64a.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_b54c66fb237de3f460fc12b3.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;}
.m0{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:33.988136px;}
.ls1{letter-spacing:38.300760px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-81.988667px;}
.ws6{word-spacing:-70.075882px;}
.ws8{word-spacing:-64.469973px;}
.ws0{word-spacing:-44.147772px;}
.ws2{word-spacing:-44.147588px;}
.ws7{word-spacing:-32.234895px;}
.ws4{word-spacing:-14.183232px;}
.ws1{word-spacing:-9.712632px;}
.ws5{word-spacing:0.000000px;}
._14{margin-left:-4.440003px;}
._13{margin-left:-3.259879px;}
._6{margin-left:-2.191954px;}
._0{margin-left:-1.059560px;}
._1{width:1.639773px;}
._12{width:2.825373px;}
._8{width:4.126041px;}
._7{width:5.222008px;}
._10{width:6.511402px;}
._1b{width:7.570953px;}
._2{width:8.767816px;}
._3{width:9.855428px;}
._1c{width:10.861384px;}
._18{width:12.507032px;}
._d{width:15.618334px;}
._a{width:16.798447px;}
._9{width:18.244794px;}
._b{width:19.469709px;}
._c{width:21.145910px;}
._17{width:22.471731px;}
._1e{width:24.304902px;}
._1d{width:25.336410px;}
._11{width:26.404354px;}
._4{width:27.528364px;}
._21{width:29.333531px;}
._20{width:30.622878px;}
._1f{width:31.783343px;}
._e{width:33.008249px;}
._f{width:34.168705px;}
._5{width:35.200203px;}
._16{width:36.618536px;}
._15{width:38.165788px;}
._23{width:39.676632px;}
._19{width:44.161427px;}
._1a{width:46.031035px;}
._22{width:47.808131px;}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:44.147588px;}
.fs1{font-size:44.147772px;}
.fs0{font-size:44.148325px;}
.fs3{font-size:64.469236px;}
.fsa{font-size:64.469789px;}
.fs6{font-size:64.469973px;}
.fs7{font-size:70.075513px;}
.fs8{font-size:70.075882px;}
.fs4{font-size:81.988483px;}
.fs5{font-size:81.988667px;}
.fs9{font-size:105.113823px;}
.y0{bottom:0.000000px;}
.y11{bottom:108.909593px;}
.y10{bottom:127.806960px;}
.ye4{bottom:263.349126px;}
.y2f{bottom:273.973329px;}
.ye3{bottom:274.686528px;}
.yfc{bottom:277.750862px;}
.yb9{bottom:279.369105px;}
.y51{bottom:280.628250px;}
.y72{bottom:282.251392px;}
.ye2{bottom:293.411743px;}
.y2e{bottom:295.748084px;}
.yfb{bottom:296.643233px;}
.y8e{bottom:296.825184px;}
.yc3{bottom:297.912274px;}
.yb8{bottom:298.266376px;}
.y50{bottom:299.353370px;}
.y71{bottom:301.143764px;}
.yb1{bottom:302.584956px;}
.ye1{bottom:312.304115px;}
.yfa{bottom:315.545500px;}
.y8d{bottom:315.727450px;}
.yc2{bottom:316.627594px;}
.yb7{bottom:316.986596px;}
.y2d{bottom:317.350592px;}
.y4f{bottom:318.245741px;}
.y70{bottom:319.868883px;}
.yb0{bottom:321.669172px;}
.ye0{bottom:331.029234px;}
.y8c{bottom:334.629716px;}
.y10d{bottom:335.337207px;}
.ycf{bottom:335.347814px;}
.yb6{bottom:335.888862px;}
.y6f{bottom:338.771149px;}
.y2c{bottom:338.943301px;}
.yaf{bottom:340.384493px;}
.y8b{bottom:353.526987px;}
.yce{bottom:354.422136px;}
.yb5{bottom:354.786133px;}
.yc1{bottom:355.863328px;}
.y6e{bottom:357.486470px;}
.y4e{bottom:358.739525px;}
.yae{bottom:359.286663px;}
.y10b{bottom:359.450500px;}
.y10c{bottom:359.468709px;}
.y2b{bottom:360.727855px;}
.ydf{bottom:370.265064px;}
.ycd{bottom:373.147351px;}
.yb4{bottom:373.688399px;}
.y9c{bottom:376.388736px;}
.yad{bottom:378.011878px;}
.y2a{bottom:382.148412px;}
.yde{bottom:389.167234px;}
.ycc{bottom:392.049522px;}
.yb3{bottom:392.403719px;}
.y8a{bottom:392.767716px;}
.y9b{bottom:395.108956px;}
.y10a{bottom:395.463058px;}
.y6d{bottom:396.722204px;}
.y4d{bottom:397.627247px;}
.y4c{bottom:397.637598px;}
.y29{bottom:403.923071px;}
.ydd{bottom:407.882555px;}
.yf9{bottom:411.305890px;}
.y89{bottom:411.487936px;}
.y9a{bottom:414.006227px;}
.y6c{bottom:415.629369px;}
.y109{bottom:417.247612px;}
.y4b{bottom:422.629744px;}
.y49{bottom:422.632146px;}
.y4a{bottom:422.648287px;}
.y28{bottom:425.707625px;}
.ydc{bottom:426.966771px;}
.yf8{bottom:430.031105px;}
.y88{bottom:430.385207px;}
.ycb{bottom:431.290251px;}
.yc0{bottom:432.908493px;}
.yb2{bottom:434.167639px;}
.y6b{bottom:434.349589px;}
.yac{bottom:436.144883px;}
.y107{bottom:441.360073px;}
.y108{bottom:441.368507px;}
.ydb{bottom:445.691986px;}
.y27{bottom:447.128183px;}
.yf7{bottom:448.923476px;}
.y87{bottom:449.105427px;}
.yca{bottom:450.010471px;}
.ybf{bottom:451.805764px;}
.y6a{bottom:453.424007px;}
.yab{bottom:454.865199px;}
.y48{bottom:463.870166px;}
.y86{bottom:468.007693px;}
.y26{bottom:468.907789px;}
.ybe{bottom:470.526032px;}
.y69{bottom:472.149174px;}
.yaa{bottom:473.767369px;}
.y105{bottom:479.875218px;}
.y106{bottom:479.886142px;}
.y47{bottom:484.709555px;}
.y85{bottom:486.723013px;}
.yda{bottom:487.446059px;}
.yc9{bottom:487.628057px;}
.yf6{bottom:488.164157px;}
.y25{bottom:490.510345px;}
.y99{bottom:491.041546px;}
.ya9{bottom:492.664688px;}
.y104{bottom:504.177381px;}
.y46{bottom:505.422999px;}
.y84{bottom:505.625232px;}
.yf5{bottom:506.884425px;}
.y98{bottom:509.766713px;}
.y68{bottom:511.384956px;}
.y24{bottom:512.285052px;}
.yf4{bottom:525.786644px;}
.y45{bottom:526.136444px;}
.yc8{bottom:527.045789px;}
.y97{bottom:528.668931px;}
.y67{bottom:530.282227px;}
.y23{bottom:533.705610px;}
.y103{bottom:542.692526px;}
.y102{bottom:542.706671px;}
.yf3{bottom:544.683962px;}
.y83{bottom:545.047911px;}
.yc7{bottom:545.770957px;}
.y44{bottom:547.038757px;}
.y96{bottom:547.384252px;}
.y66{bottom:549.002495px;}
.y22{bottom:555.490116px;}
.yf2{bottom:563.586181px;}
.y82{bottom:563.768179px;}
.yc6{bottom:564.663328px;}
.ybd{bottom:566.286470px;}
.y43{bottom:567.878098px;}
.y65{bottom:567.909612px;}
.ya8{bottom:569.527855px;}
.y21{bottom:577.264823px;}
.y100{bottom:581.396541px;}
.y101{bottom:581.406304px;}
.yf1{bottom:582.311348px;}
.y81{bottom:582.665450px;}
.yc5{bottom:583.570494px;}
.ybc{bottom:585.006738px;}
.y64{bottom:586.620033px;}
.ya7{bottom:588.425174px;}
.y42{bottom:588.780411px;}
.y20{bottom:598.685380px;}
.y80{bottom:601.385718px;}
.ybb{bottom:604.086007px;}
.yfe{bottom:605.336672px;}
.yff{bottom:605.345201px;}
.y63{bottom:605.527199px;}
.ya6{bottom:607.145394px;}
.y41{bottom:609.682723px;}
.y7f{bottom:620.105938px;}
.y1f{bottom:620.460087px;}
.yf0{bottom:621.547082px;}
.yc4{bottom:622.806275px;}
.y62{bottom:624.247419px;}
.ya5{bottom:625.870561px;}
.y40{bottom:630.333195px;}
.y7e{bottom:639.003256px;}
.yef{bottom:640.444400px;}
.yfd{bottom:641.521596px;}
.yd9{bottom:641.703594px;}
.y1e{bottom:642.062643px;}
.y95{bottom:643.321789px;}
.ya4{bottom:644.762933px;}
.y3f{bottom:651.235509px;}
.yee{bottom:659.164668px;}
.yd8{bottom:660.423814px;}
.y94{bottom:662.046956px;}
.y61{bottom:663.488100px;}
.y1d{bottom:665.458907px;}
.y3e{bottom:672.137822px;}
.yed{bottom:678.066887px;}
.y7d{bottom:678.243937px;}
.yd7{bottom:679.148981px;}
.y93{bottom:680.939327px;}
.y60{bottom:682.562470px;}
.ya3{bottom:684.003661px;}
.y3d{bottom:692.851266px;}
.yec{bottom:696.782207px;}
.y7c{bottom:697.146156px;}
.yba{bottom:699.664495px;}
.y5f{bottom:701.282738px;}
.y1c{bottom:702.905880px;}
.y3c{bottom:713.690607px;}
.y7b{bottom:715.866424px;}
.yd6{bottom:718.566713px;}
.y5e{bottom:720.189855px;}
.ya2{bottom:721.803199px;}
.y3b{bottom:734.592920px;}
.y7a{bottom:734.763742px;}
.yeb{bottom:736.022888px;}
.yd5{bottom:737.282034px;}
.y5d{bottom:738.900276px;}
.y1b{bottom:739.264273px;}
.ya1{bottom:740.523418px;}
.y79{bottom:753.665961px;}
.yea{bottom:754.925106px;}
.yd4{bottom:756.184300px;}
.y5c{bottom:757.807442px;}
.ya0{bottom:759.425637px;}
.y1a{bottom:760.866781px;}
.y78{bottom:772.380273px;}
.ye9{bottom:773.820456px;}
.yd3{bottom:774.906489px;}
.y92{bottom:776.527662px;}
.y9f{bottom:778.140957px;}
.y39{bottom:779.739707px;}
.y3a{bottom:779.759322px;}
.y77{bottom:791.283499px;}
.ye8{bottom:792.723683px;}
.y91{bottom:795.423011px;}
.y5b{bottom:797.044184px;}
.y19{bottom:799.738216px;}
.y18{bottom:799.743513px;}
.ye7{bottom:811.445872px;}
.y90{bottom:814.145201px;}
.y5a{bottom:815.766374px;}
.y38{bottom:818.284713px;}
.ye6{bottom:830.160232px;}
.y76{bottom:830.522211px;}
.yd2{bottom:833.221540px;}
.y59{bottom:834.661723px;}
.y17{bottom:835.739879px;}
.y37{bottom:839.887268px;}
.yd1{bottom:851.943777px;}
.y58{bottom:853.383912px;}
.y35{bottom:864.000262px;}
.y36{bottom:864.003578px;}
.yd0{bottom:870.846980px;}
.y75{bottom:871.023470px;}
.y16{bottom:872.106150px;}
.ye5{bottom:872.287139px;}
.y57{bottom:872.460275px;}
.y9e{bottom:873.900459px;}
.y56{bottom:891.182489px;}
.y9d{bottom:892.622648px;}
.y34{bottom:900.004505px;}
.y55{bottom:910.085692px;}
.y74{bottom:911.706864px;}
.y14{bottom:911.866074px;}
.y15{bottom:911.876881px;}
.y33{bottom:921.780197px;}
.y8f{bottom:928.800028px;}
.y73{bottom:930.421200px;}
.y110{bottom:941.045403px;}
.y32{bottom:943.563742px;}
.y54{bottom:949.324427px;}
.y13{bottom:955.082954px;}
.y10f{bottom:962.821095px;}
.y31{bottom:964.985285px;}
.y53{bottom:968.038763px;}
.y12{bottom:982.796105px;}
.y30{bottom:986.760976px;}
.y52{bottom:986.941966px;}
.y10e{bottom:986.946688px;}
.yf{bottom:1008.182495px;}
.ye{bottom:1027.257398px;}
.yd{bottom:1027.258857px;}
.yb{bottom:1041.475570px;}
.yc{bottom:1041.484645px;}
.ya{bottom:1054.436589px;}
.y9{bottom:1067.219772px;}
.y8{bottom:1079.997561px;}
.y7{bottom:1092.775349px;}
.y4{bottom:1106.983242px;}
.y5{bottom:1106.997456px;}
.y6{bottom:1107.005454px;}
.y3{bottom:1120.497395px;}
.y2{bottom:1133.458431px;}
.y1{bottom:1146.236220px;}
.h4{height:34.317852px;}
.h5{height:35.007674px;}
.h6{height:35.050763px;}
.h3{height:36.387422px;}
.h2{height:37.379490px;}
.ha{height:50.115331px;}
.h11{height:50.807787px;}
.h10{height:50.870808px;}
.hf{height:53.137209px;}
.he{height:53.389044px;}
.h7{height:54.584793px;}
.hc{height:57.210388px;}
.h9{height:67.576597px;}
.h8{height:69.417983px;}
.hb{height:71.752125px;}
.hd{height:87.321021px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:131.400476px;}
.x1e{left:147.447355px;}
.x10{left:153.360724px;}
.x13{left:158.939904px;}
.x2e{left:163.439585px;}
.x32{left:179.643471px;}
.xc{left:194.403502px;}
.x29{left:195.658467px;}
.x2a{left:202.472541px;}
.x30{left:211.862341px;}
.x11{left:219.058269px;}
.x1f{left:244.443225px;}
.x15{left:247.323807px;}
.x20{left:252.209276px;}
.x2{left:262.978782px;}
.x3{left:265.141998px;}
.x2b{left:266.761934px;}
.x2c{left:273.614941px;}
.x4{left:279.000328px;}
.x5{left:288.379644px;}
.x34{left:292.141974px;}
.x19{left:300.601988px;}
.x21{left:316.613374px;}
.x22{left:320.402357px;}
.x6{left:323.998645px;}
.x35{left:325.443167px;}
.x18{left:332.104716px;}
.xd{left:336.776023px;}
.x7{left:339.475927px;}
.x1d{left:345.788909px;}
.x8{left:350.461679px;}
.x33{left:354.954504px;}
.x1a{left:356.044597px;}
.x9{left:361.434835px;}
.x2d{left:386.099265px;}
.xa{left:389.176703px;}
.x1b{left:390.415326px;}
.x1c{left:394.378289px;}
.x17{left:401.224983px;}
.xe{left:403.195694px;}
.x14{left:407.513066px;}
.xb{left:410.757854px;}
.x23{left:420.482336px;}
.x24{left:427.484015px;}
.x2f{left:437.945380px;}
.x12{left:442.265881px;}
.x31{left:495.538634px;}
.xf{left:534.597527px;}
.x37{left:538.740527px;}
.x25{left:556.024550px;}
.x26{left:563.032323px;}
.x16{left:637.370919px;}
.x36{left:645.307214px;}
.x27{left:707.586695px;}
.x28{left:714.571938px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:30.211677pt;}
.ls1{letter-spacing:34.045120pt;}
.ws3{word-spacing:-72.878816pt;}
.ws6{word-spacing:-62.289673pt;}
.ws8{word-spacing:-57.306643pt;}
.ws0{word-spacing:-39.242464pt;}
.ws2{word-spacing:-39.242300pt;}
.ws7{word-spacing:-28.653240pt;}
.ws4{word-spacing:-12.607317pt;}
.ws1{word-spacing:-8.633450pt;}
.ws5{word-spacing:0.000000pt;}
._14{margin-left:-3.946669pt;}
._13{margin-left:-2.897670pt;}
._6{margin-left:-1.948404pt;}
._0{margin-left:-0.941831pt;}
._1{width:1.457576pt;}
._12{width:2.511442pt;}
._8{width:3.667592pt;}
._7{width:4.641785pt;}
._10{width:5.787913pt;}
._1b{width:6.729736pt;}
._2{width:7.793614pt;}
._3{width:8.760380pt;}
._1c{width:9.654563pt;}
._18{width:11.117362pt;}
._d{width:13.882963pt;}
._a{width:14.931953pt;}
._9{width:16.217595pt;}
._b{width:17.306408pt;}
._c{width:18.796364pt;}
._17{width:19.974872pt;}
._1e{width:21.604357pt;}
._1d{width:22.521253pt;}
._11{width:23.470537pt;}
._4{width:24.469657pt;}
._21{width:26.074250pt;}
._20{width:27.220336pt;}
._1f{width:28.251861pt;}
._e{width:29.340666pt;}
._f{width:30.372182pt;}
._5{width:31.289069pt;}
._16{width:32.549810pt;}
._15{width:33.925145pt;}
._23{width:35.268118pt;}
._19{width:39.254602pt;}
._1a{width:40.916475pt;}
._22{width:42.496116pt;}
.fs2{font-size:39.242300pt;}
.fs1{font-size:39.242464pt;}
.fs0{font-size:39.242956pt;}
.fs3{font-size:57.305988pt;}
.fsa{font-size:57.306479pt;}
.fs6{font-size:57.306643pt;}
.fs7{font-size:62.289345pt;}
.fs8{font-size:62.289673pt;}
.fs4{font-size:72.878652pt;}
.fs5{font-size:72.878816pt;}
.fs9{font-size:93.434509pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:96.808527pt;}
.y10{bottom:113.606187pt;}
.ye4{bottom:234.088112pt;}
.y2f{bottom:243.531848pt;}
.ye3{bottom:244.165803pt;}
.yfc{bottom:246.889655pt;}
.yb9{bottom:248.328093pt;}
.y51{bottom:249.447334pt;}
.y72{bottom:250.890127pt;}
.ye2{bottom:260.810439pt;}
.y2e{bottom:262.887186pt;}
.yfb{bottom:263.682874pt;}
.y8e{bottom:263.844608pt;}
.yc3{bottom:264.810910pt;}
.yb8{bottom:265.125667pt;}
.y50{bottom:266.091884pt;}
.y71{bottom:267.683346pt;}
.yb1{bottom:268.964405pt;}
.ye1{bottom:277.603658pt;}
.yfa{bottom:280.484889pt;}
.y8d{bottom:280.646622pt;}
.yc2{bottom:281.446751pt;}
.yb7{bottom:281.765863pt;}
.y2d{bottom:282.089415pt;}
.y4f{bottom:282.885103pt;}
.y70{bottom:284.327896pt;}
.yb0{bottom:285.928153pt;}
.ye0{bottom:294.248208pt;}
.y8c{bottom:297.448637pt;}
.y10d{bottom:298.077517pt;}
.ycf{bottom:298.086946pt;}
.yb6{bottom:298.567877pt;}
.y6f{bottom:301.129911pt;}
.y2c{bottom:301.282934pt;}
.yaf{bottom:302.563994pt;}
.y8b{bottom:314.246211pt;}
.yce{bottom:315.041899pt;}
.yb5{bottom:315.365451pt;}
.yc1{bottom:316.322958pt;}
.y6e{bottom:317.765751pt;}
.y4e{bottom:318.879578pt;}
.yae{bottom:319.365923pt;}
.y10b{bottom:319.511556pt;}
.y10c{bottom:319.527742pt;}
.y2b{bottom:320.646982pt;}
.ydf{bottom:329.124501pt;}
.ycd{bottom:331.686535pt;}
.yb4{bottom:332.167466pt;}
.y9c{bottom:334.567766pt;}
.yad{bottom:336.010559pt;}
.y2a{bottom:339.687478pt;}
.yde{bottom:345.926430pt;}
.ycc{bottom:348.488464pt;}
.yb3{bottom:348.803306pt;}
.y8a{bottom:349.126859pt;}
.y9b{bottom:351.207961pt;}
.y10a{bottom:351.522718pt;}
.y6d{bottom:352.641959pt;}
.y4d{bottom:353.446442pt;}
.y4c{bottom:353.455643pt;}
.y29{bottom:359.042730pt;}
.ydd{bottom:362.562271pt;}
.yf9{bottom:365.605235pt;}
.y89{bottom:365.767054pt;}
.y9a{bottom:368.005535pt;}
.y6c{bottom:369.448328pt;}
.y109{bottom:370.886766pt;}
.y4b{bottom:375.670883pt;}
.y49{bottom:375.673019pt;}
.y4a{bottom:375.687366pt;}
.y28{bottom:378.406778pt;}
.ydc{bottom:379.526019pt;}
.yf8{bottom:382.249871pt;}
.y88{bottom:382.564628pt;}
.ycb{bottom:383.369112pt;}
.yc0{bottom:384.807550pt;}
.yb2{bottom:385.926790pt;}
.y6b{bottom:386.088524pt;}
.yac{bottom:387.684340pt;}
.y107{bottom:392.320065pt;}
.y108{bottom:392.327562pt;}
.ydb{bottom:396.170655pt;}
.y27{bottom:397.447274pt;}
.yf7{bottom:399.043090pt;}
.y87{bottom:399.204824pt;}
.yca{bottom:400.009307pt;}
.ybf{bottom:401.605124pt;}
.y6a{bottom:403.043562pt;}
.yab{bottom:404.324621pt;}
.y48{bottom:412.329036pt;}
.y86{bottom:416.006838pt;}
.y26{bottom:416.806924pt;}
.ybe{bottom:418.245362pt;}
.y69{bottom:419.688155pt;}
.yaa{bottom:421.126550pt;}
.y105{bottom:426.555750pt;}
.y106{bottom:426.565460pt;}
.y47{bottom:430.852937pt;}
.y85{bottom:432.642679pt;}
.yda{bottom:433.285386pt;}
.yc9{bottom:433.447162pt;}
.yf6{bottom:433.923695pt;}
.y25{bottom:436.009196pt;}
.y99{bottom:436.481374pt;}
.ya9{bottom:437.924167pt;}
.y104{bottom:448.157672pt;}
.y46{bottom:449.264888pt;}
.y84{bottom:449.444650pt;}
.yf5{bottom:450.563934pt;}
.y98{bottom:453.125967pt;}
.y68{bottom:454.564405pt;}
.y24{bottom:455.364491pt;}
.yf4{bottom:467.365905pt;}
.y45{bottom:467.676839pt;}
.yc8{bottom:468.485146pt;}
.y97{bottom:469.927939pt;}
.y67{bottom:471.361979pt;}
.y23{bottom:474.404986pt;}
.y103{bottom:482.393357pt;}
.y102{bottom:482.405929pt;}
.yf3{bottom:484.163522pt;}
.y83{bottom:484.487032pt;}
.yc7{bottom:485.129739pt;}
.y44{bottom:486.256673pt;}
.y96{bottom:486.563779pt;}
.y66{bottom:488.002217pt;}
.y22{bottom:493.768992pt;}
.yf2{bottom:500.965494pt;}
.y82{bottom:501.127270pt;}
.yc6{bottom:501.922958pt;}
.ybd{bottom:503.365751pt;}
.y43{bottom:504.780531pt;}
.y65{bottom:504.808544pt;}
.ya8{bottom:506.246982pt;}
.y21{bottom:513.124287pt;}
.y100{bottom:516.796926pt;}
.y101{bottom:516.805604pt;}
.yf1{bottom:517.610087pt;}
.y81{bottom:517.924844pt;}
.yc5{bottom:518.729328pt;}
.ybc{bottom:520.005989pt;}
.y64{bottom:521.440030pt;}
.ya7{bottom:523.044599pt;}
.y42{bottom:523.360365pt;}
.y20{bottom:532.164782pt;}
.y80{bottom:534.565082pt;}
.ybb{bottom:536.965340pt;}
.yfe{bottom:538.077042pt;}
.yff{bottom:538.084623pt;}
.y63{bottom:538.246399pt;}
.ya6{bottom:539.684794pt;}
.y41{bottom:541.940199pt;}
.y7f{bottom:551.205278pt;}
.y1f{bottom:551.520078pt;}
.yf0{bottom:552.486295pt;}
.yc4{bottom:553.605578pt;}
.y62{bottom:554.886595pt;}
.ya5{bottom:556.329388pt;}
.y40{bottom:560.296174pt;}
.y7e{bottom:568.002895pt;}
.yef{bottom:569.283911pt;}
.yfd{bottom:570.241418pt;}
.yd9{bottom:570.403195pt;}
.y1e{bottom:570.722349pt;}
.y95{bottom:571.841590pt;}
.ya4{bottom:573.122607pt;}
.y3f{bottom:578.876008pt;}
.yee{bottom:585.924150pt;}
.yd8{bottom:587.043390pt;}
.y94{bottom:588.486183pt;}
.y61{bottom:589.767200pt;}
.y1d{bottom:591.519029pt;}
.y3e{bottom:597.455842pt;}
.yed{bottom:602.726121pt;}
.y7d{bottom:602.883500pt;}
.yd7{bottom:603.687983pt;}
.y93{bottom:605.279402pt;}
.y60{bottom:606.722195pt;}
.ya3{bottom:608.003255pt;}
.y3d{bottom:615.867792pt;}
.yec{bottom:619.361962pt;}
.y7c{bottom:619.685472pt;}
.yba{bottom:621.923995pt;}
.y5f{bottom:623.362433pt;}
.y1c{bottom:624.805226pt;}
.y3c{bottom:634.391650pt;}
.y7b{bottom:636.325710pt;}
.yd6{bottom:638.725967pt;}
.y5e{bottom:640.168760pt;}
.ya2{bottom:641.602843pt;}
.y3b{bottom:652.971484pt;}
.y7a{bottom:653.123327pt;}
.yeb{bottom:654.242567pt;}
.yd5{bottom:655.361808pt;}
.y5d{bottom:656.800246pt;}
.y1b{bottom:657.123798pt;}
.ya1{bottom:658.243039pt;}
.y79{bottom:669.925298pt;}
.yea{bottom:671.044539pt;}
.yd4{bottom:672.163822pt;}
.y5c{bottom:673.606615pt;}
.ya0{bottom:675.045010pt;}
.y1a{bottom:676.326027pt;}
.y78{bottom:686.560242pt;}
.ye9{bottom:687.840405pt;}
.yd3{bottom:688.805768pt;}
.y92{bottom:690.246811pt;}
.y9f{bottom:691.680851pt;}
.y39{bottom:693.101962pt;}
.y3a{bottom:693.119397pt;}
.y77{bottom:703.363111pt;}
.ye8{bottom:704.643273pt;}
.y91{bottom:707.042677pt;}
.y5b{bottom:708.483719pt;}
.y19{bottom:710.878415pt;}
.y18{bottom:710.883123pt;}
.ye7{bottom:721.285220pt;}
.y90{bottom:723.684623pt;}
.y5a{bottom:725.125665pt;}
.y38{bottom:727.364189pt;}
.ye6{bottom:737.920206pt;}
.y76{bottom:738.241965pt;}
.yd2{bottom:740.641369pt;}
.y59{bottom:741.921532pt;}
.y17{bottom:742.879892pt;}
.y37{bottom:746.566461pt;}
.yd1{bottom:757.283357pt;}
.y58{bottom:758.563478pt;}
.y35{bottom:768.000233pt;}
.y36{bottom:768.003180pt;}
.yd0{bottom:774.086205pt;}
.y75{bottom:774.243084pt;}
.y16{bottom:775.205466pt;}
.ye5{bottom:775.366346pt;}
.y57{bottom:775.520245pt;}
.y9e{bottom:776.800408pt;}
.y56{bottom:792.162212pt;}
.y9d{bottom:793.442354pt;}
.y34{bottom:800.004005pt;}
.y55{bottom:808.965059pt;}
.y74{bottom:810.406102pt;}
.y14{bottom:810.547621pt;}
.y15{bottom:810.557228pt;}
.y33{bottom:819.360175pt;}
.y8f{bottom:825.600024pt;}
.y73{bottom:827.041067pt;}
.y110{bottom:836.484803pt;}
.y32{bottom:838.723327pt;}
.y54{bottom:843.843935pt;}
.y13{bottom:848.962626pt;}
.y10f{bottom:855.840973pt;}
.y31{bottom:857.764697pt;}
.y53{bottom:860.478901pt;}
.y12{bottom:873.596538pt;}
.y30{bottom:877.120868pt;}
.y52{bottom:877.281748pt;}
.y10e{bottom:877.285945pt;}
.yf{bottom:896.162217pt;}
.ye{bottom:913.117687pt;}
.yd{bottom:913.118984pt;}
.yb{bottom:925.756062pt;}
.yc{bottom:925.764129pt;}
.ya{bottom:937.276968pt;}
.y9{bottom:948.639797pt;}
.y8{bottom:959.997832pt;}
.y7{bottom:971.355866pt;}
.y4{bottom:983.985104pt;}
.y5{bottom:983.997739pt;}
.y6{bottom:984.004848pt;}
.y3{bottom:995.997685pt;}
.y2{bottom:1007.518606pt;}
.y1{bottom:1018.876640pt;}
.h4{height:30.504757pt;}
.h5{height:31.117932pt;}
.h6{height:31.156234pt;}
.h3{height:32.344375pt;}
.h2{height:33.226214pt;}
.ha{height:44.546961pt;}
.h11{height:45.162477pt;}
.h10{height:45.218496pt;}
.hf{height:47.233075pt;}
.he{height:47.456928pt;}
.h7{height:48.519816pt;}
.hc{height:50.853678pt;}
.h9{height:60.068086pt;}
.h8{height:61.704874pt;}
.hb{height:63.779666pt;}
.hd{height:77.618685pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:116.800423pt;}
.x1e{left:131.064316pt;}
.x10{left:136.320644pt;}
.x13{left:141.279915pt;}
.x2e{left:145.279631pt;}
.x32{left:159.683086pt;}
.xc{left:172.803113pt;}
.x29{left:173.918637pt;}
.x2a{left:179.975592pt;}
.x30{left:188.322081pt;}
.x11{left:194.718461pt;}
.x1f{left:217.282867pt;}
.x15{left:219.843384pt;}
.x20{left:224.186023pt;}
.x2{left:233.758917pt;}
.x3{left:235.681776pt;}
.x2b{left:237.121719pt;}
.x2c{left:243.213281pt;}
.x4{left:248.000291pt;}
.x5{left:256.337461pt;}
.x34{left:259.681755pt;}
.x19{left:267.201767pt;}
.x21{left:281.434110pt;}
.x22{left:284.802095pt;}
.x6{left:287.998795pt;}
.x35{left:289.282815pt;}
.x18{left:295.204192pt;}
.xd{left:299.356465pt;}
.x7{left:301.756380pt;}
.x1d{left:307.367919pt;}
.x8{left:311.521493pt;}
.x33{left:315.515115pt;}
.x1a{left:316.484087pt;}
.x9{left:321.275409pt;}
.x2d{left:343.199347pt;}
.xa{left:345.934848pt;}
.x1b{left:347.035845pt;}
.x1c{left:350.558479pt;}
.x17{left:356.644429pt;}
.xe{left:358.396173pt;}
.x14{left:362.233836pt;}
.xb{left:365.118092pt;}
.x23{left:373.762076pt;}
.x24{left:379.985791pt;}
.x2f{left:389.284782pt;}
.x12{left:393.125228pt;}
.x31{left:440.478786pt;}
.xf{left:475.197802pt;}
.x37{left:478.880468pt;}
.x25{left:494.244045pt;}
.x26{left:500.473176pt;}
.x16{left:566.551928pt;}
.x36{left:573.606412pt;}
.x27{left:628.965951pt;}
.x28{left:635.175056pt;}
}




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