
    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_e35b7146f40cd5975501aeee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_bb2352d844c08a9958be631d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.679688;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_a8026ac33fbb17845c10acae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.813000;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_c83dce2d9700638c3766be77.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.713000;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_31141d10833faac47622f56e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.868000;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_1ddabf0666ee4502c8fbb507.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895000;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_085b6d39632e0031cf3505f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.000000;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_6a0d01f1560710eddc284e11.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.000000;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;}
.m3{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.140892px;}
.ls7{letter-spacing:0.359220px;}
.ls0{letter-spacing:0.359274px;}
.ls5{letter-spacing:0.362790px;}
.ls4{letter-spacing:6.854967px;}
.ls2{letter-spacing:19.786631px;}
.ls6{letter-spacing:20.424567px;}
.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;}
}
.ws0{word-spacing:-28.306489px;}
.ws1{word-spacing:-22.542891px;}
.ws3{word-spacing:-19.830892px;}
.ws2{word-spacing:-18.305843px;}
.ws4{word-spacing:-15.593994px;}
.ws6{word-spacing:-14.068074px;}
.ws5{word-spacing:0.000000px;}
._20{margin-left:-7.680907px;}
._1{margin-left:-1.525240px;}
._0{width:1.238436px;}
._4{width:2.995893px;}
._3{width:4.387418px;}
._5{width:6.379225px;}
._8{width:7.434008px;}
._7{width:8.986700px;}
._6{width:10.257043px;}
._a{width:11.591345px;}
._2{width:12.662254px;}
._e{width:14.379428px;}
._11{width:15.568569px;}
._15{width:18.029867px;}
._14{width:19.180965px;}
._b{width:20.692969px;}
._9{width:21.776429px;}
._d{width:23.756928px;}
._c{width:25.045272px;}
._1f{width:27.381747px;}
._12{width:29.432834px;}
._13{width:32.169173px;}
._f{width:37.378469px;}
._10{width:39.345227px;}
._18{width:75.699198px;}
._17{width:82.055511px;}
._16{width:102.207669px;}
._1e{width:290.826798px;}
._1b{width:362.962020px;}
._1a{width:397.834924px;}
._19{width:410.050248px;}
._1d{width:441.196473px;}
._1c{width:461.634302px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:45.424782px;}
.fs4{font-size:48.135581px;}
.fs0{font-size:56.272297px;}
.fs7{font-size:62.375975px;}
.fs6{font-size:67.798173px;}
.fs3{font-size:73.223371px;}
.fs8{font-size:79.323568px;}
.fs2{font-size:90.171564px;}
.fs1{font-size:113.225955px;}
.y0{bottom:0.000000px;}
.y2{bottom:107.819957px;}
.y79{bottom:126.899949px;}
.y32{bottom:133.019947px;}
.y60{bottom:136.799945px;}
.ya5{bottom:137.699945px;}
.yc6{bottom:138.779944px;}
.ye3{bottom:141.839943px;}
.y96{bottom:143.819942px;}
.y78{bottom:146.339941px;}
.y31{bottom:152.459939px;}
.y5f{bottom:156.239938px;}
.y85{bottom:157.679937px;}
.yc5{bottom:158.219937px;}
.y95{bottom:163.439935px;}
.y107{bottom:164.519934px;}
.y77{bottom:165.959934px;}
.ye2{bottom:166.319933px;}
.y30{bottom:172.079931px;}
.y5e{bottom:175.679930px;}
.yc4{bottom:177.839929px;}
.ya4{bottom:179.819928px;}
.y94{bottom:182.879927px;}
.y76{bottom:185.399926px;}
.y106{bottom:188.999924px;}
.ye1{bottom:190.619924px;}
.y2f{bottom:191.519923px;}
.y5d{bottom:195.299922px;}
.yc3{bottom:197.279921px;}
.y93{bottom:202.319919px;}
.y84{bottom:206.639917px;}
.y2e{bottom:210.959916px;}
.y5c{bottom:214.739914px;}
.ye0{bottom:214.919914px;}
.yc2{bottom:216.719913px;}
.y105{bottom:219.599912px;}
.y92{bottom:221.759911px;}
.y75{bottom:224.639910px;}
.y2d{bottom:230.399908px;}
.y5b{bottom:234.179906px;}
.yc1{bottom:236.339905px;}
.ydf{bottom:239.219904px;}
.y91{bottom:241.379903px;}
.y2c{bottom:250.019900px;}
.y83{bottom:251.279899px;}
.yc0{bottom:255.779898px;}
.y74{bottom:260.099896px;}
.y104{bottom:261.719895px;}
.yde{bottom:263.699895px;}
.y2b{bottom:269.459892px;}
.y5a{bottom:273.599891px;}
.ybf{bottom:275.219890px;}
.y90{bottom:278.819888px;}
.y73{bottom:279.719888px;}
.ydd{bottom:288.179885px;}
.y2a{bottom:288.899884px;}
.y103{bottom:290.879884px;}
.ybe{bottom:294.659882px;}
.y72{bottom:299.159880px;}
.y29{bottom:308.519877px;}
.y59{bottom:308.879876px;}
.ydc{bottom:312.299875px;}
.ybd{bottom:314.279874px;}
.y71{bottom:318.599873px;}
.y102{bottom:320.219872px;}
.y8f{bottom:323.639871px;}
.y28{bottom:327.959869px;}
.y58{bottom:331.739867px;}
.ybc{bottom:333.719867px;}
.ydb{bottom:336.779865px;}
.y70{bottom:338.039865px;}
.y27{bottom:347.399861px;}
.y101{bottom:349.379860px;}
.y57{bottom:351.179860px;}
.ybb{bottom:353.159859px;}
.yda{bottom:361.259855px;}
.y56{bottom:370.619852px;}
.yba{bottom:372.779851px;}
.y6f{bottom:377.459849px;}
.y100{bottom:378.719849px;}
.y26{bottom:382.679847px;}
.yd9{bottom:385.379846px;}
.y55{bottom:390.239844px;}
.yb9{bottom:392.219843px;}
.yff{bottom:407.699837px;}
.y54{bottom:409.679836px;}
.yd8{bottom:409.859836px;}
.yb8{bottom:411.659835px;}
.y6e{bottom:412.919835px;}
.y53{bottom:429.119828px;}
.y25{bottom:430.559828px;}
.yb7{bottom:431.099828px;}
.y6d{bottom:432.359827px;}
.yd7{bottom:434.159826px;}
.yfe{bottom:437.039825px;}
.y24{bottom:448.379821px;}
.y52{bottom:448.559821px;}
.yb6{bottom:450.719820px;}
.ya3{bottom:450.899820px;}
.y6c{bottom:451.799819px;}
.yd6{bottom:458.639817px;}
.y23{bottom:464.579814px;}
.yfd{bottom:466.199814px;}
.y51{bottom:468.179813px;}
.yb5{bottom:470.159812px;}
.ya2{bottom:470.339812px;}
.y6b{bottom:471.419811px;}
.y22{bottom:480.779808px;}
.yd5{bottom:482.939807px;}
.y50{bottom:487.619805px;}
.ya1{bottom:489.599804px;}
.y6a{bottom:490.859804px;}
.yfc{bottom:495.539802px;}
.y21{bottom:497.159801px;}
.y4f{bottom:507.059797px;}
.yd4{bottom:507.239797px;}
.yb4{bottom:509.399796px;}
.y69{bottom:510.299796px;}
.y20{bottom:513.359795px;}
.ya0{bottom:518.759792px;}
.yfb{bottom:524.699790px;}
.y4e{bottom:526.679789px;}
.y1f{bottom:529.739788px;}
.yd3{bottom:531.719787px;}
.y1e{bottom:545.759782px;}
.y4d{bottom:546.119782px;}
.y68{bottom:549.359780px;}
.yb3{bottom:552.059779px;}
.y9f{bottom:552.239779px;}
.yfa{bottom:554.039778px;}
.yd2{bottom:556.019778px;}
.y1d{bottom:561.959775px;}
.y4c{bottom:565.559774px;}
.y67{bottom:568.799772px;}
.yf9{bottom:573.659771px;}
.y1c{bottom:578.339769px;}
.yd1{bottom:580.319768px;}
.y4b{bottom:584.999766px;}
.y66{bottom:588.239765px;}
.yf8{bottom:593.279763px;}
.y1b{bottom:594.539762px;}
.yb2{bottom:602.999759px;}
.y4a{bottom:604.619758px;}
.yd0{bottom:604.799758px;}
.y65{bottom:607.859757px;}
.y1a{bottom:610.919756px;}
.yf7{bottom:612.719755px;}
.y49{bottom:624.059750px;}
.y19{bottom:627.119749px;}
.y64{bottom:627.299749px;}
.ycf{bottom:629.099748px;}
.yf6{bottom:632.159747px;}
.yb1{bottom:642.419743px;}
.y18{bottom:643.139743px;}
.y48{bottom:643.499743px;}
.y63{bottom:646.739741px;}
.y82{bottom:650.339740px;}
.yf5{bottom:651.779739px;}
.yce{bottom:653.579739px;}
.y17{bottom:659.519736px;}
.y47{bottom:663.119735px;}
.y81{bottom:669.779732px;}
.yf4{bottom:671.219732px;}
.y16{bottom:675.719730px;}
.ycd{bottom:677.879729px;}
.yb0{bottom:681.839727px;}
.y46{bottom:682.559727px;}
.y62{bottom:686.159726px;}
.y80{bottom:689.399724px;}
.yf3{bottom:690.659724px;}
.y15{bottom:692.099723px;}
.y45{bottom:701.999719px;}
.ycc{bottom:702.179719px;}
.y14{bottom:708.479717px;}
.y7f{bottom:708.839716px;}
.yf2{bottom:710.099716px;}
.yaf{bottom:719.819712px;}
.y61{bottom:720.719712px;}
.y44{bottom:721.619711px;}
.ycb{bottom:726.659709px;}
.y7e{bottom:728.279709px;}
.yf1{bottom:729.719708px;}
.y13{bottom:740.159704px;}
.y43{bottom:741.059704px;}
.y7d{bottom:747.719701px;}
.yae{bottom:749.699700px;}
.yca{bottom:750.959700px;}
.yf0{bottom:758.699697px;}
.y42{bottom:760.499696px;}
.y12{bottom:761.219696px;}
.y8e{bottom:763.739695px;}
.y7c{bottom:767.339693px;}
.y11{bottom:777.059689px;}
.yef{bottom:778.319689px;}
.yad{bottom:779.039688px;}
.y41{bottom:779.939688px;}
.y8d{bottom:783.179687px;}
.yc9{bottom:783.539687px;}
.y9e{bottom:791.639683px;}
.y10{bottom:793.799682px;}
.yee{bottom:797.759681px;}
.y40{bottom:799.559680px;}
.y8c{bottom:802.799679px;}
.y7b{bottom:804.779678px;}
.y9d{bottom:811.259675px;}
.yf{bottom:813.239675px;}
.yed{bottom:817.379673px;}
.yac{bottom:818.279673px;}
.y3f{bottom:818.999672px;}
.y8b{bottom:822.239671px;}
.y9c{bottom:830.699668px;}
.ye{bottom:832.679667px;}
.yec{bottom:836.819665px;}
.y3e{bottom:838.439665px;}
.yd{bottom:840.599664px;}
.y8a{bottom:841.679663px;}
.y7a{bottom:849.599660px;}
.y9b{bottom:850.139660px;}
.yc{bottom:851.759659px;}
.yeb{bottom:856.259657px;}
.yab{bottom:857.879657px;}
.y3d{bottom:858.059657px;}
.y89{bottom:861.119656px;}
.yb{bottom:868.319653px;}
.yea{bottom:875.699650px;}
.y3c{bottom:877.499649px;}
.y88{bottom:880.739648px;}
.ya{bottom:887.759645px;}
.y9a{bottom:889.739644px;}
.y9{bottom:895.679642px;}
.y3b{bottom:896.939641px;}
.yaa{bottom:897.119641px;}
.y87{bottom:900.179640px;}
.ye9{bottom:915.119634px;}
.y3a{bottom:916.379633px;}
.y7{bottom:924.299630px;}
.y99{bottom:932.039627px;}
.y8{bottom:932.759627px;}
.ya9{bottom:935.099626px;}
.y39{bottom:935.999626px;}
.y86{bottom:939.419624px;}
.y6{bottom:948.419621px;}
.y98{bottom:951.479619px;}
.y38{bottom:955.439618px;}
.ye8{bottom:957.959617px;}
.ya8{bottom:965.159614px;}
.y37{bottom:974.879610px;}
.y5{bottom:980.099608px;}
.ye7{bottom:982.439607px;}
.y97{bottom:991.079604px;}
.ya7{bottom:994.319602px;}
.y36{bottom:994.499602px;}
.ye6{bottom:1006.739597px;}
.y4{bottom:1012.139595px;}
.y35{bottom:1013.939594px;}
.yc8{bottom:1014.299594px;}
.ya6{bottom:1023.659591px;}
.ye5{bottom:1031.039588px;}
.y34{bottom:1033.379587px;}
.y3{bottom:1043.819582px;}
.yc7{bottom:1049.759580px;}
.y33{bottom:1052.819579px;}
.ye4{bottom:1055.519578px;}
.y1{bottom:1073.699571px;}
.he{height:0.000000px;}
.h6{height:31.252250px;}
.h5{height:33.117280px;}
.h8{height:35.282731px;}
.ha{height:38.602796px;}
.h1{height:38.715341px;}
.hd{height:43.164175px;}
.hb{height:43.600807px;}
.h10{height:46.509547px;}
.h7{height:46.645143px;}
.hf{height:46.916336px;}
.h4{height:50.377679px;}
.h9{height:51.183136px;}
.hc{height:54.891909px;}
.h3{height:60.099700px;}
.h2{height:75.465541px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:158.760187px;}
.x19{left:164.879934px;}
.x55{left:169.739932px;}
.x1{left:171.539931px;}
.x54{left:172.979931px;}
.x4{left:178.559566px;}
.x47{left:180.179719px;}
.x41{left:183.419927px;}
.x2e{left:185.219926px;}
.x42{left:187.379925px;}
.x38{left:188.999924px;}
.x1b{left:191.699923px;}
.x2f{left:193.679923px;}
.x3d{left:195.119922px;}
.x25{left:196.199922px;}
.x22{left:198.359921px;}
.x5{left:200.699920px;}
.x52{left:206.099918px;}
.x20{left:209.519968px;}
.x30{left:212.939915px;}
.x48{left:215.459914px;}
.x56{left:219.599912px;}
.x4a{left:223.019911px;}
.x49{left:228.239909px;}
.x57{left:232.559907px;}
.x1d{left:243.719374px;}
.x15{left:253.799898px;}
.x29{left:257.579897px;}
.x23{left:266.399893px;}
.x43{left:268.019893px;}
.x26{left:275.399890px;}
.x6{left:278.459889px;}
.x39{left:280.259888px;}
.x2a{left:284.039886px;}
.x24{left:286.019886px;}
.x27{left:288.359885px;}
.x3e{left:292.499883px;}
.x3a{left:294.479882px;}
.x7{left:296.819881px;}
.x2b{left:298.259881px;}
.x53{left:304.199878px;}
.x3f{left:306.539877px;}
.x1f{left:310.139876px;}
.x46{left:312.119210px;}
.x31{left:313.199875px;}
.x4b{left:322.919981px;}
.x10{left:324.719870px;}
.x37{left:329.040482px;}
.x45{left:333.719731px;}
.x1e{left:336.419865px;}
.x4c{left:338.399865px;}
.x2c{left:353.879858px;}
.x40{left:357.479857px;}
.x4d{left:364.859854px;}
.x1a{left:365.939854px;}
.x28{left:372.959851px;}
.x4e{left:376.919849px;}
.x36{left:382.500407px;}
.x34{left:386.820069px;}
.x11{left:398.519841px;}
.x12{left:404.099838px;}
.x32{left:412.379835px;}
.x8{left:413.459835px;}
.x2d{left:416.519833px;}
.x3c{left:419.580441px;}
.x13{left:422.819831px;}
.x1c{left:427.139347px;}
.x9{left:430.919828px;}
.x16{left:433.619827px;}
.x17{left:442.799823px;}
.x4f{left:455.759818px;}
.x3{left:459.179816px;}
.x50{left:468.899812px;}
.xa{left:470.159812px;}
.xb{left:487.630305px;}
.x51{left:553.859778px;}
.xc{left:554.939778px;}
.xd{left:574.559770px;}
.x14{left:593.639763px;}
.x3b{left:610.559756px;}
.x18{left:655.379738px;}
.x35{left:667.979733px;}
.x33{left:672.119731px;}
.xe{left:709.379716px;}
.xf{left:720.539712px;}
.x21{left:745.739104px;}
.x44{left:762.839695px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.125237pt;}
.ls7{letter-spacing:0.319307pt;}
.ls0{letter-spacing:0.319355pt;}
.ls5{letter-spacing:0.322480pt;}
.ls4{letter-spacing:6.093304pt;}
.ls2{letter-spacing:17.588117pt;}
.ls6{letter-spacing:18.155171pt;}
.ws0{word-spacing:-25.161323pt;}
.ws1{word-spacing:-20.038125pt;}
.ws3{word-spacing:-17.627460pt;}
.ws2{word-spacing:-16.271860pt;}
.ws4{word-spacing:-13.861328pt;}
.ws6{word-spacing:-12.504955pt;}
.ws5{word-spacing:0.000000pt;}
._20{margin-left:-6.827473pt;}
._1{margin-left:-1.355769pt;}
._0{width:1.100832pt;}
._4{width:2.663016pt;}
._3{width:3.899927pt;}
._5{width:5.670422pt;}
._8{width:6.608007pt;}
._7{width:7.988178pt;}
._6{width:9.117372pt;}
._a{width:10.303418pt;}
._2{width:11.255337pt;}
._e{width:12.781714pt;}
._11{width:13.838728pt;}
._15{width:16.026549pt;}
._14{width:17.049747pt;}
._b{width:18.393750pt;}
._9{width:19.356826pt;}
._d{width:21.117270pt;}
._c{width:22.262464pt;}
._1f{width:24.339331pt;}
._12{width:26.162519pt;}
._13{width:28.594821pt;}
._f{width:33.225306pt;}
._10{width:34.973535pt;}
._18{width:67.288176pt;}
._17{width:72.938232pt;}
._16{width:90.851261pt;}
._1e{width:258.512710pt;}
._1b{width:322.632906pt;}
._1a{width:353.631043pt;}
._19{width:364.489110pt;}
._1d{width:392.174643pt;}
._1c{width:410.341602pt;}
.fs5{font-size:40.377584pt;}
.fs4{font-size:42.787183pt;}
.fs0{font-size:50.019820pt;}
.fs7{font-size:55.445311pt;}
.fs6{font-size:60.265043pt;}
.fs3{font-size:65.087441pt;}
.fs8{font-size:70.509838pt;}
.fs2{font-size:80.152501pt;}
.fs1{font-size:100.645293pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:95.839962pt;}
.y79{bottom:112.799955pt;}
.y32{bottom:118.239953pt;}
.y60{bottom:121.599951pt;}
.ya5{bottom:122.399951pt;}
.yc6{bottom:123.359951pt;}
.ye3{bottom:126.079950pt;}
.y96{bottom:127.839949pt;}
.y78{bottom:130.079948pt;}
.y31{bottom:135.519946pt;}
.y5f{bottom:138.879944pt;}
.y85{bottom:140.159944pt;}
.yc5{bottom:140.639944pt;}
.y95{bottom:145.279942pt;}
.y107{bottom:146.239942pt;}
.y77{bottom:147.519941pt;}
.ye2{bottom:147.839941pt;}
.y30{bottom:152.959939pt;}
.y5e{bottom:156.159938pt;}
.yc4{bottom:158.079937pt;}
.ya4{bottom:159.839936pt;}
.y94{bottom:162.559935pt;}
.y76{bottom:164.799934pt;}
.y106{bottom:167.999933pt;}
.ye1{bottom:169.439932pt;}
.y2f{bottom:170.239932pt;}
.y5d{bottom:173.599931pt;}
.yc3{bottom:175.359930pt;}
.y93{bottom:179.839928pt;}
.y84{bottom:183.679927pt;}
.y2e{bottom:187.519925pt;}
.y5c{bottom:190.879924pt;}
.ye0{bottom:191.039924pt;}
.yc2{bottom:192.639923pt;}
.y105{bottom:195.199922pt;}
.y92{bottom:197.119921pt;}
.y75{bottom:199.679920pt;}
.y2d{bottom:204.799918pt;}
.y5b{bottom:208.159917pt;}
.yc1{bottom:210.079916pt;}
.ydf{bottom:212.639915pt;}
.y91{bottom:214.559914pt;}
.y2c{bottom:222.239911pt;}
.y83{bottom:223.359911pt;}
.yc0{bottom:227.359909pt;}
.y74{bottom:231.199908pt;}
.y104{bottom:232.639907pt;}
.yde{bottom:234.399906pt;}
.y2b{bottom:239.519904pt;}
.y5a{bottom:243.199903pt;}
.ybf{bottom:244.639902pt;}
.y90{bottom:247.839901pt;}
.y73{bottom:248.639901pt;}
.ydd{bottom:256.159898pt;}
.y2a{bottom:256.799897pt;}
.y103{bottom:258.559897pt;}
.ybe{bottom:261.919895pt;}
.y72{bottom:265.919894pt;}
.y29{bottom:274.239890pt;}
.y59{bottom:274.559890pt;}
.ydc{bottom:277.599889pt;}
.ybd{bottom:279.359888pt;}
.y71{bottom:283.199887pt;}
.y102{bottom:284.639886pt;}
.y8f{bottom:287.679885pt;}
.y28{bottom:291.519883pt;}
.y58{bottom:294.879882pt;}
.ybc{bottom:296.639881pt;}
.ydb{bottom:299.359880pt;}
.y70{bottom:300.479880pt;}
.y27{bottom:308.799876pt;}
.y101{bottom:310.559876pt;}
.y57{bottom:312.159875pt;}
.ybb{bottom:313.919874pt;}
.yda{bottom:321.119872pt;}
.y56{bottom:329.439868pt;}
.yba{bottom:331.359867pt;}
.y6f{bottom:335.519866pt;}
.y100{bottom:336.639865pt;}
.y26{bottom:340.159864pt;}
.yd9{bottom:342.559863pt;}
.y55{bottom:346.879861pt;}
.yb9{bottom:348.639861pt;}
.yff{bottom:362.399855pt;}
.y54{bottom:364.159854pt;}
.yd8{bottom:364.319854pt;}
.yb8{bottom:365.919854pt;}
.y6e{bottom:367.039853pt;}
.y53{bottom:381.439847pt;}
.y25{bottom:382.719847pt;}
.yb7{bottom:383.199847pt;}
.y6d{bottom:384.319846pt;}
.yd7{bottom:385.919846pt;}
.yfe{bottom:388.479845pt;}
.y24{bottom:398.559841pt;}
.y52{bottom:398.719841pt;}
.yb6{bottom:400.639840pt;}
.ya3{bottom:400.799840pt;}
.y6c{bottom:401.599839pt;}
.yd6{bottom:407.679837pt;}
.y23{bottom:412.959835pt;}
.yfd{bottom:414.399834pt;}
.y51{bottom:416.159834pt;}
.yb5{bottom:417.919833pt;}
.ya2{bottom:418.079833pt;}
.y6b{bottom:419.039832pt;}
.y22{bottom:427.359829pt;}
.yd5{bottom:429.279828pt;}
.y50{bottom:433.439827pt;}
.ya1{bottom:435.199826pt;}
.y6a{bottom:436.319825pt;}
.yfc{bottom:440.479824pt;}
.y21{bottom:441.919823pt;}
.y4f{bottom:450.719820pt;}
.yd4{bottom:450.879820pt;}
.yb4{bottom:452.799819pt;}
.y69{bottom:453.599819pt;}
.y20{bottom:456.319817pt;}
.ya0{bottom:461.119816pt;}
.yfb{bottom:466.399813pt;}
.y4e{bottom:468.159813pt;}
.y1f{bottom:470.879812pt;}
.yd3{bottom:472.639811pt;}
.y1e{bottom:485.119806pt;}
.y4d{bottom:485.439806pt;}
.y68{bottom:488.319805pt;}
.yb3{bottom:490.719804pt;}
.y9f{bottom:490.879804pt;}
.yfa{bottom:492.479803pt;}
.yd2{bottom:494.239802pt;}
.y1d{bottom:499.519800pt;}
.y4c{bottom:502.719799pt;}
.y67{bottom:505.599798pt;}
.yf9{bottom:509.919796pt;}
.y1c{bottom:514.079794pt;}
.yd1{bottom:515.839794pt;}
.y4b{bottom:519.999792pt;}
.y66{bottom:522.879791pt;}
.yf8{bottom:527.359789pt;}
.y1b{bottom:528.479789pt;}
.yb2{bottom:535.999786pt;}
.y4a{bottom:537.439785pt;}
.yd0{bottom:537.599785pt;}
.y65{bottom:540.319784pt;}
.y1a{bottom:543.039783pt;}
.yf7{bottom:544.639782pt;}
.y49{bottom:554.719778pt;}
.y19{bottom:557.439777pt;}
.y64{bottom:557.599777pt;}
.ycf{bottom:559.199776pt;}
.yf6{bottom:561.919775pt;}
.yb1{bottom:571.039772pt;}
.y18{bottom:571.679771pt;}
.y48{bottom:571.999771pt;}
.y63{bottom:574.879770pt;}
.y82{bottom:578.079769pt;}
.yf5{bottom:579.359768pt;}
.yce{bottom:580.959768pt;}
.y17{bottom:586.239766pt;}
.y47{bottom:589.439764pt;}
.y81{bottom:595.359762pt;}
.yf4{bottom:596.639761pt;}
.y16{bottom:600.639760pt;}
.ycd{bottom:602.559759pt;}
.yb0{bottom:606.079758pt;}
.y46{bottom:606.719757pt;}
.y62{bottom:609.919756pt;}
.y80{bottom:612.799755pt;}
.yf3{bottom:613.919754pt;}
.y15{bottom:615.199754pt;}
.y45{bottom:623.999750pt;}
.ycc{bottom:624.159750pt;}
.y14{bottom:629.759748pt;}
.y7f{bottom:630.079748pt;}
.yf2{bottom:631.199748pt;}
.yaf{bottom:639.839744pt;}
.y61{bottom:640.639744pt;}
.y44{bottom:641.439743pt;}
.ycb{bottom:645.919742pt;}
.y7e{bottom:647.359741pt;}
.yf1{bottom:648.639741pt;}
.y13{bottom:657.919737pt;}
.y43{bottom:658.719737pt;}
.y7d{bottom:664.639734pt;}
.yae{bottom:666.399733pt;}
.yca{bottom:667.519733pt;}
.yf0{bottom:674.399730pt;}
.y42{bottom:675.999730pt;}
.y12{bottom:676.639729pt;}
.y8e{bottom:678.879728pt;}
.y7c{bottom:682.079727pt;}
.y11{bottom:690.719724pt;}
.yef{bottom:691.839723pt;}
.yad{bottom:692.479723pt;}
.y41{bottom:693.279723pt;}
.y8d{bottom:696.159722pt;}
.yc9{bottom:696.479721pt;}
.y9e{bottom:703.679719pt;}
.y10{bottom:705.599718pt;}
.yee{bottom:709.119716pt;}
.y40{bottom:710.719716pt;}
.y8c{bottom:713.599715pt;}
.y7b{bottom:715.359714pt;}
.y9d{bottom:721.119712pt;}
.yf{bottom:722.879711pt;}
.yed{bottom:726.559709pt;}
.yac{bottom:727.359709pt;}
.y3f{bottom:727.999709pt;}
.y8b{bottom:730.879708pt;}
.y9c{bottom:738.399705pt;}
.ye{bottom:740.159704pt;}
.yec{bottom:743.839702pt;}
.y3e{bottom:745.279702pt;}
.yd{bottom:747.199701pt;}
.y8a{bottom:748.159701pt;}
.y7a{bottom:755.199698pt;}
.y9b{bottom:755.679698pt;}
.yc{bottom:757.119697pt;}
.yeb{bottom:761.119696pt;}
.yab{bottom:762.559695pt;}
.y3d{bottom:762.719695pt;}
.y89{bottom:765.439694pt;}
.yb{bottom:771.839691pt;}
.yea{bottom:778.399689pt;}
.y3c{bottom:779.999688pt;}
.y88{bottom:782.879687pt;}
.ya{bottom:789.119684pt;}
.y9a{bottom:790.879684pt;}
.y9{bottom:796.159682pt;}
.y3b{bottom:797.279681pt;}
.yaa{bottom:797.439681pt;}
.y87{bottom:800.159680pt;}
.ye9{bottom:813.439675pt;}
.y3a{bottom:814.559674pt;}
.y7{bottom:821.599671pt;}
.y99{bottom:828.479669pt;}
.y8{bottom:829.119668pt;}
.ya9{bottom:831.199668pt;}
.y39{bottom:831.999667pt;}
.y86{bottom:835.039666pt;}
.y6{bottom:843.039663pt;}
.y98{bottom:845.759662pt;}
.y38{bottom:849.279660pt;}
.ye8{bottom:851.519659pt;}
.ya8{bottom:857.919657pt;}
.y37{bottom:866.559653pt;}
.y5{bottom:871.199652pt;}
.ye7{bottom:873.279651pt;}
.y97{bottom:880.959648pt;}
.ya7{bottom:883.839646pt;}
.y36{bottom:883.999646pt;}
.ye6{bottom:894.879642pt;}
.y4{bottom:899.679640pt;}
.y35{bottom:901.279639pt;}
.yc8{bottom:901.599639pt;}
.ya6{bottom:909.919636pt;}
.ye5{bottom:916.479633pt;}
.y34{bottom:918.559633pt;}
.y3{bottom:927.839629pt;}
.yc7{bottom:933.119627pt;}
.y33{bottom:935.839626pt;}
.ye4{bottom:938.239625pt;}
.y1{bottom:954.399618pt;}
.he{height:0.000000pt;}
.h6{height:27.779778pt;}
.h5{height:29.437582pt;}
.h8{height:31.362427pt;}
.ha{height:34.313597pt;}
.h1{height:34.413636pt;}
.hd{height:38.368155pt;}
.hb{height:38.756272pt;}
.h10{height:41.341819pt;}
.h7{height:41.462349pt;}
.hf{height:41.703409pt;}
.h4{height:44.780159pt;}
.h9{height:45.496121pt;}
.hc{height:48.792808pt;}
.h3{height:53.421955pt;}
.h2{height:67.080481pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:141.120166pt;}
.x19{left:146.559941pt;}
.x55{left:150.879940pt;}
.x1{left:152.479939pt;}
.x54{left:153.759938pt;}
.x4{left:158.719614pt;}
.x47{left:160.159751pt;}
.x41{left:163.039935pt;}
.x2e{left:164.639934pt;}
.x42{left:166.559933pt;}
.x38{left:167.999933pt;}
.x1b{left:170.399932pt;}
.x2f{left:172.159931pt;}
.x3d{left:173.439931pt;}
.x25{left:174.399930pt;}
.x22{left:176.319929pt;}
.x5{left:178.399929pt;}
.x52{left:183.199927pt;}
.x20{left:186.239972pt;}
.x30{left:189.279924pt;}
.x48{left:191.519923pt;}
.x56{left:195.199922pt;}
.x4a{left:198.239921pt;}
.x49{left:202.879919pt;}
.x57{left:206.719917pt;}
.x1d{left:216.639444pt;}
.x15{left:225.599910pt;}
.x29{left:228.959908pt;}
.x23{left:236.799905pt;}
.x43{left:238.239905pt;}
.x26{left:244.799902pt;}
.x6{left:247.519901pt;}
.x39{left:249.119900pt;}
.x2a{left:252.479899pt;}
.x24{left:254.239898pt;}
.x27{left:256.319897pt;}
.x3e{left:259.999896pt;}
.x3a{left:261.759895pt;}
.x7{left:263.839894pt;}
.x2b{left:265.119894pt;}
.x53{left:270.399892pt;}
.x3f{left:272.479891pt;}
.x1f{left:275.679890pt;}
.x46{left:277.439298pt;}
.x31{left:278.399889pt;}
.x4b{left:287.039983pt;}
.x10{left:288.639885pt;}
.x37{left:292.480429pt;}
.x45{left:296.639761pt;}
.x1e{left:299.039880pt;}
.x4c{left:300.799880pt;}
.x2c{left:314.559874pt;}
.x40{left:317.759873pt;}
.x4d{left:324.319870pt;}
.x1a{left:325.279870pt;}
.x28{left:331.519867pt;}
.x4e{left:335.039866pt;}
.x36{left:340.000362pt;}
.x34{left:343.840061pt;}
.x11{left:354.239858pt;}
.x12{left:359.199856pt;}
.x32{left:366.559853pt;}
.x8{left:367.519853pt;}
.x2d{left:370.239852pt;}
.x3c{left:372.960392pt;}
.x13{left:375.839850pt;}
.x1c{left:379.679420pt;}
.x9{left:383.039847pt;}
.x16{left:385.439846pt;}
.x17{left:393.599843pt;}
.x4f{left:405.119838pt;}
.x3{left:408.159837pt;}
.x50{left:416.799833pt;}
.xa{left:417.919833pt;}
.xb{left:433.449160pt;}
.x51{left:492.319803pt;}
.xc{left:493.279803pt;}
.xd{left:510.719796pt;}
.x14{left:527.679789pt;}
.x3b{left:542.719783pt;}
.x18{left:582.559767pt;}
.x35{left:593.759762pt;}
.x33{left:597.439761pt;}
.xe{left:630.559748pt;}
.xf{left:640.479744pt;}
.x21{left:662.879204pt;}
.x44{left:678.079729pt;}
}




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