
    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_499a2e689f2633c76f158fc9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.123047;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_21edd1014be9f52eacfbc3b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.701660;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_29dcfc9f8a54a393eea65206.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.701660;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_70fa6ce1d87934b4368e7de5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_65e0e39e45f4eb642ef3864b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708984;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_0516a53ba7fbd8401644ef40.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710449;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_416dab7c5f812e7c8bd2b3be.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_f5d256bd12eea289d17f1882.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.821000;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);}
.v3{vertical-align:-32.994000px;}
.v5{vertical-align:-23.472000px;}
.vd{vertical-align:-22.278000px;}
.ve{vertical-align:-20.406000px;}
.vf{vertical-align:-18.030000px;}
.v9{vertical-align:-16.332000px;}
.v10{vertical-align:-14.970000px;}
.v2{vertical-align:-12.588000px;}
.v12{vertical-align:-5.952000px;}
.v1{vertical-align:-4.932000px;}
.v7{vertical-align:-3.738000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:1.872000px;}
.v6{vertical-align:13.092000px;}
.v11{vertical-align:16.152000px;}
.v8{vertical-align:19.896000px;}
.v4{vertical-align:23.472000px;}
.va{vertical-align:36.060000px;}
.vb{vertical-align:37.080000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.014028px;}
.ls4{letter-spacing:0.115968px;}
.lsa{letter-spacing:0.131976px;}
.lsd{letter-spacing:0.248310px;}
.lsc{letter-spacing:0.269910px;}
.lse{letter-spacing:0.493632px;}
.ls3{letter-spacing:56.694900px;}
.ls8{letter-spacing:58.030200px;}
.ls5{letter-spacing:60.264900px;}
.ls7{letter-spacing:61.606200px;}
.ls11{letter-spacing:68.301300px;}
.ls6{letter-spacing:70.914900px;}
.ls12{letter-spacing:76.866900px;}
.ls9{letter-spacing:78.952200px;}
.ls13{letter-spacing:79.758900px;}
.ls1{letter-spacing:116.082006px;}
.ls2{letter-spacing:118.350492px;}
.ls10{letter-spacing:121.118022px;}
.lsb{letter-spacing:127.534500px;}
.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;}
}
.ws3{word-spacing:-33.261606px;}
.wsa{word-spacing:-24.921690px;}
.ws1{word-spacing:-23.272986px;}
.ws6{word-spacing:-19.929042px;}
.ws9{word-spacing:-18.410652px;}
.ws7{word-spacing:-18.278676px;}
.wse{word-spacing:-16.629972px;}
.wsb{word-spacing:-14.462724px;}
.ws4{word-spacing:-12.484944px;}
.wsc{word-spacing:-11.447856px;}
.ws8{word-spacing:-10.646772px;}
.ws5{word-spacing:-0.084018px;}
.wsd{word-spacing:-0.054084px;}
.ws0{word-spacing:0.000000px;}
.wsf{word-spacing:414.051132px;}
.ws2{word-spacing:3742.526292px;}
._20{margin-left:-489.523770px;}
._0{margin-left:-8.787294px;}
._7{margin-left:-7.739316px;}
._4{margin-left:-5.334102px;}
._6{margin-left:-3.399684px;}
._1{margin-left:-1.534752px;}
._3{width:1.048338px;}
._2{width:2.049912px;}
._5{width:3.592152px;}
._11{width:5.379396px;}
._1e{width:8.958960px;}
._b{width:10.056366px;}
._c{width:11.151972px;}
._f{width:12.734442px;}
._e{width:14.748930px;}
._d{width:15.944700px;}
._a{width:17.842608px;}
._9{width:18.917838px;}
._1d{width:20.215908px;}
._12{width:21.224070px;}
._13{width:22.387944px;}
._1a{width:25.374528px;}
._1c{width:26.740770px;}
._16{width:31.615146px;}
._14{width:34.379748px;}
._15{width:44.246790px;}
._1b{width:47.402256px;}
._1f{width:80.596596px;}
._17{width:95.310984px;}
._18{width:97.798644px;}
._19{width:99.033216px;}
._8{width:480.546564px;}
._10{width:1631.323908px;}
.fc7{color:rgb(0,112,192);}
.fc6{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(139,139,139);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(0,51,204);}
.fsf{font-size:34.866000px;}
.fsa{font-size:38.436000px;}
.fse{font-size:41.328000px;}
.fs9{font-size:45.072000px;}
.fsb{font-size:47.964000px;}
.fsd{font-size:52.212000px;}
.fs4{font-size:54.084000px;}
.fs7{font-size:60.036000px;}
.fs6{font-size:65.988000px;}
.fs5{font-size:71.946000px;}
.fs8{font-size:78.066000px;}
.fs2{font-size:84.018000px;}
.fsc{font-size:89.970000px;}
.fs1{font-size:95.922000px;}
.fs3{font-size:120.078000px;}
.fs0{font-size:144.054000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y88{bottom:5.527500px;}
.y84{bottom:6.718500px;}
.y5f{bottom:13.648500px;}
.yab{bottom:14.371500px;}
.y2e{bottom:16.498500px;}
.y41{bottom:20.070000px;}
.yf{bottom:22.918500px;}
.y87{bottom:25.938000px;}
.y38{bottom:26.065500px;}
.y27{bottom:31.167000px;}
.y5e{bottom:31.635000px;}
.yc3{bottom:32.995500px;}
.y57{bottom:37.630500px;}
.ya6{bottom:40.011000px;}
.y6{bottom:41.371500px;}
.y91{bottom:43.327500px;}
.y26{bottom:52.767000px;}
.y74{bottom:54.298500px;}
.yc2{bottom:56.382000px;}
.y56{bottom:59.059500px;}
.ya5{bottom:59.826000px;}
.y31{bottom:63.142500px;}
.yca{bottom:67.011000px;}
.y25{bottom:74.367000px;}
.y40{bottom:74.665500px;}
.y73{bottom:75.727500px;}
.ya4{bottom:79.639500px;}
.y55{bottom:80.659500px;}
.y9b{bottom:91.927500px;}
.y3f{bottom:94.309500px;}
.y24{bottom:95.839500px;}
.yd9{bottom:97.795500px;}
.y10{bottom:98.092500px;}
.ya3{bottom:99.411000px;}
.y6d{bottom:113.059500px;}
.y9a{bottom:113.527500px;}
.y3e{bottom:115.186500px;}
.y23{bottom:117.439500px;}
.y78{bottom:118.162500px;}
.y54{bottom:121.947000px;}
.yc9{bottom:124.626000px;}
.y99{bottom:134.958000px;}
.y22{bottom:139.039500px;}
.y77{bottom:140.698500px;}
.yd8{bottom:140.826000px;}
.y53{bottom:141.591000px;}
.y6c{bottom:146.692500px;}
.ybf{bottom:152.986500px;}
.y30{bottom:154.474500px;}
.y98{bottom:156.558000px;}
.y76{bottom:160.470000px;}
.y21{bottom:160.639500px;}
.y3d{bottom:168.718500px;}
.ybe{bottom:172.758000px;}
.y97{bottom:178.158000px;}
.y75{bottom:180.582000px;}
.y20{bottom:182.070000px;}
.y52{bottom:183.898500px;}
.ye{bottom:184.195500px;}
.yd7{bottom:185.811000px;}
.y36{bottom:186.874500px;}
.y6b{bottom:189.595500px;}
.y5{bottom:190.020000px;}
.ybd{bottom:192.571500px;}
.y4e{bottom:192.870000px;}
.y3c{bottom:195.888000px;}
.y1f{bottom:203.670000px;}
.yd6{bottom:208.474500px;}
.ybc{bottom:212.386500px;}
.y82{bottom:213.874500px;}
.y35{bottom:215.830500px;}
.y62{bottom:217.191000px;}
.yb9{bottom:218.509500px;}
.y96{bottom:221.230500px;}
.y3b{bottom:223.186500px;}
.y6a{bottom:223.314000px;}
.y51{bottom:223.483500px;}
.y1e{bottom:225.270000px;}
.yd{bottom:232.498500px;}
.y81{bottom:235.474500px;}
.yb8{bottom:236.538000px;}
.y61{bottom:238.620000px;}
.y4{bottom:239.088000px;}
.y72{bottom:241.767000px;}
.y50{bottom:243.298500px;}
.y34{bottom:243.892500px;}
.y95{bottom:245.848500px;}
.y1d{bottom:246.742500px;}
.y2d{bottom:248.698500px;}
.yd5{bottom:251.547000px;}
.y2f{bottom:252.567000px;}
.yb7{bottom:254.523000px;}
.ybb{bottom:254.692500px;}
.y80{bottom:257.074500px;}
.y60{bottom:260.220000px;}
.y71{bottom:263.239500px;}
.y33{bottom:266.514000px;}
.y69{bottom:267.576000px;}
.y1c{bottom:268.342500px;}
.y3a{bottom:270.595500px;}
.yb6{bottom:272.509500px;}
.yd4{bottom:273.147000px;}
.yc{bottom:282.883500px;}
.y94{bottom:288.879000px;}
.y1b{bottom:289.942500px;}
.yb5{bottom:290.538000px;}
.y4c{bottom:293.088000px;}
.yd3{bottom:294.747000px;}
.y32{bottom:295.470000px;}
.y70{bottom:301.338000px;}
.y68{bottom:307.758000px;}
.y1a{bottom:311.542500px;}
.y4d{bottom:315.879000px;}
.y4a{bottom:318.727500px;}
.y2c{bottom:320.982000px;}
.y6f{bottom:322.767000px;}
.yb4{bottom:326.509500px;}
.yb{bottom:332.079000px;}
.y19{bottom:332.971500px;}
.y37{bottom:334.162500px;}
.yd2{bottom:337.776000px;}
.y7f{bottom:338.670000px;}
.y49{bottom:339.435000px;}
.yb3{bottom:344.538000px;}
.y67{bottom:350.532000px;}
.y18{bottom:354.571500px;}
.y4b{bottom:356.826000px;}
.ya{bottom:358.314000px;}
.yd1{bottom:359.376000px;}
.y7e{bottom:363.118500px;}
.ya9{bottom:365.371500px;}
.y48{bottom:365.839500px;}
.y7b{bottom:372.430500px;}
.y17{bottom:376.171500px;}
.yb2{bottom:380.509500px;}
.yd0{bottom:380.848500px;}
.ya8{bottom:381.571500px;}
.y9d{bottom:381.742500px;}
.y3{bottom:383.527500px;}
.y7d{bottom:384.718500px;}
.y47{bottom:386.547000px;}
.y66{bottom:390.118500px;}
.y85{bottom:390.586500px;}
.y7a{bottom:393.859500px;}
.y16{bottom:397.644000px;}
.ya7{bottom:397.771500px;}
.yb1{bottom:398.367000px;}
.yc7{bottom:398.538000px;}
.y9c{bottom:399.727500px;}
.ycf{bottom:403.938000px;}
.y7c{bottom:406.191000px;}
.y9{bottom:408.742500px;}
.y46{bottom:413.844000px;}
.y15{bottom:419.244000px;}
.y65{bottom:423.709500px;}
.y2{bottom:426.727500px;}
.yb0{bottom:434.382000px;}
.y14{bottom:440.844000px;}
.y45{bottom:440.971500px;}
.y5b{bottom:446.371500px;}
.yc6{bottom:446.542500px;}
.y90{bottom:447.732000px;}
.yc0{bottom:448.030500px;}
.yce{bottom:449.986500px;}
.y8{bottom:457.938000px;}
.y13{bottom:462.444000px;}
.y2b{bottom:462.870000px;}
.y44{bottom:467.248500px;}
.y8f{bottom:467.547000px;}
.yc5{bottom:469.758000px;}
.y64{bottom:469.927500px;}
.yaf{bottom:470.395500px;}
.y5a{bottom:472.182000px;}
.y8b{bottom:481.026000px;}
.y12{bottom:484.171500px;}
.y8e{bottom:487.318500px;}
.y43{bottom:488.083500px;}
.yae{bottom:488.382000px;}
.yc4{bottom:492.123000px;}
.ycd{bottom:493.483500px;}
.y2a{bottom:496.927500px;}
.y92{bottom:497.820000px;}
.y59{bottom:500.670000px;}
.y8a{bottom:500.839500px;}
.y8d{bottom:506.962500px;}
.y42{bottom:507.898500px;}
.ycc{bottom:516.147000px;}
.y5d{bottom:520.483500px;}
.yad{bottom:524.395500px;}
.ya2{bottom:525.714000px;}
.y58{bottom:526.648500px;}
.y8c{bottom:529.498500px;}
.y29{bottom:530.986500px;}
.yc8{bottom:537.109500px;}
.y11{bottom:540.298500px;}
.yba{bottom:541.914000px;}
.yac{bottom:542.382000px;}
.ya0{bottom:547.015500px;}
.y5c{bottom:552.883500px;}
.y63{bottom:555.138000px;}
.y86{bottom:557.815500px;}
.ya1{bottom:558.114000px;}
.y6e{bottom:558.709500px;}
.yc1{bottom:560.962500px;}
.y79{bottom:561.898500px;}
.y9e{bottom:562.026000px;}
.y7{bottom:563.386500px;}
.y39{bottom:563.811000px;}
.y83{bottom:565.639500px;}
.ycb{bottom:565.767000px;}
.y89{bottom:566.958000px;}
.y9f{bottom:567.595500px;}
.y93{bottom:569.382000px;}
.yaa{bottom:570.147000px;}
.y4f{bottom:571.465500px;}
.y28{bottom:574.186500px;}
.hf{height:33.654428px;}
.h8{height:37.552465px;}
.h10{height:38.027812px;}
.h16{height:49.356932px;}
.h15{height:52.378655px;}
.hb{height:54.788713px;}
.hd{height:58.336717px;}
.ha{height:60.220494px;}
.h7{height:64.086630px;}
.h9{height:65.657751px;}
.h17{height:67.355751px;}
.hc{height:71.242849px;}
.h11{height:74.632465px;}
.h5{height:76.674630px;}
.he{height:78.749751px;}
.h13{height:82.106411px;}
.h14{height:83.810411px;}
.h12{height:83.978411px;}
.h4{height:87.538192px;}
.h6{height:109.582901px;}
.h3{height:131.463343px;}
.h2{height:607.477500px;}
.h1{height:607.500000px;}
.h0{height:607.521260px;}
.w1{width:1079.956500px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2e{left:20.112000px;}
.xe{left:22.365000px;}
.x27{left:24.151500px;}
.x28{left:26.830500px;}
.x1a{left:28.488000px;}
.x4d{left:32.230500px;}
.x7{left:34.059000px;}
.xc{left:38.565000px;}
.x3b{left:42.307500px;}
.x1b{left:49.663500px;}
.x1{left:50.853000px;}
.x8{left:52.044000px;}
.x50{left:57.912000px;}
.x5{left:72.453000px;}
.xf{left:81.468000px;}
.x1c{left:82.488000px;}
.x13{left:83.551500px;}
.x9{left:88.059000px;}
.x2c{left:90.312000px;}
.x2d{left:94.180500px;}
.xb{left:95.244000px;}
.x3{left:101.835000px;}
.x4{left:115.483500px;}
.x33{left:117.312000px;}
.x34{left:160.639500px;}
.x22{left:178.965000px;}
.x2{left:212.088000px;}
.x2a{left:268.044000px;}
.x2b{left:281.692500px;}
.x1f{left:288.580500px;}
.x6{left:300.613500px;}
.x23{left:304.653000px;}
.x10{left:310.947000px;}
.x31{left:313.668000px;}
.x30{left:330.591000px;}
.x24{left:334.630500px;}
.x11{left:338.244000px;}
.x26{left:344.536500px;}
.x29{left:359.248500px;}
.x4e{left:370.813500px;}
.x32{left:373.195500px;}
.x4f{left:388.035000px;}
.x1d{left:398.536500px;}
.x4a{left:403.512000px;}
.x3e{left:405.297000px;}
.x19{left:411.165000px;}
.x3a{left:415.332000px;}
.x1e{left:424.048500px;}
.x51{left:457.809000px;}
.x4b{left:460.659000px;}
.xd{left:483.916500px;}
.x12{left:486.000000px;}
.x41{left:498.459000px;}
.x15{left:532.644000px;}
.x42{left:543.316500px;}
.x17{left:550.204500px;}
.x16{left:556.668000px;}
.x49{left:608.712000px;}
.x45{left:616.492500px;}
.x44{left:621.000000px;}
.x25{left:635.116500px;}
.x43{left:642.430500px;}
.x2f{left:649.659000px;}
.x3d{left:682.186500px;}
.x4c{left:713.097000px;}
.x46{left:721.347000px;}
.x3c{left:775.516500px;}
.x18{left:778.068000px;}
.x3f{left:806.088000px;}
.x35{left:828.283500px;}
.x36{left:833.853000px;}
.x37{left:835.213500px;}
.x38{left:846.312000px;}
.x47{left:849.586500px;}
.x40{left:873.013500px;}
.x48{left:876.756000px;}
.x14{left:941.980500px;}
.x20{left:960.604500px;}
.x39{left:983.863500px;}
.xa{left:990.751500px;}
.x21{left:1048.068000px;}
@media print{
.v3{vertical-align:-29.328000pt;}
.v5{vertical-align:-20.864000pt;}
.vd{vertical-align:-19.802667pt;}
.ve{vertical-align:-18.138667pt;}
.vf{vertical-align:-16.026667pt;}
.v9{vertical-align:-14.517333pt;}
.v10{vertical-align:-13.306667pt;}
.v2{vertical-align:-11.189333pt;}
.v12{vertical-align:-5.290667pt;}
.v1{vertical-align:-4.384000pt;}
.v7{vertical-align:-3.322667pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:1.664000pt;}
.v6{vertical-align:11.637333pt;}
.v11{vertical-align:14.357333pt;}
.v8{vertical-align:17.685333pt;}
.v4{vertical-align:20.864000pt;}
.va{vertical-align:32.053333pt;}
.vb{vertical-align:32.960000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.012469pt;}
.ls4{letter-spacing:0.103083pt;}
.lsa{letter-spacing:0.117312pt;}
.lsd{letter-spacing:0.220720pt;}
.lsc{letter-spacing:0.239920pt;}
.lse{letter-spacing:0.438784pt;}
.ls3{letter-spacing:50.395467pt;}
.ls8{letter-spacing:51.582400pt;}
.ls5{letter-spacing:53.568800pt;}
.ls7{letter-spacing:54.761067pt;}
.ls11{letter-spacing:60.712267pt;}
.ls6{letter-spacing:63.035467pt;}
.ls12{letter-spacing:68.326133pt;}
.ls9{letter-spacing:70.179733pt;}
.ls13{letter-spacing:70.896800pt;}
.ls1{letter-spacing:103.184005pt;}
.ls2{letter-spacing:105.200437pt;}
.ls10{letter-spacing:107.660464pt;}
.lsb{letter-spacing:113.364000pt;}
.ws3{word-spacing:-29.565872pt;}
.wsa{word-spacing:-22.152613pt;}
.ws1{word-spacing:-20.687099pt;}
.ws6{word-spacing:-17.714704pt;}
.ws9{word-spacing:-16.365024pt;}
.ws7{word-spacing:-16.247712pt;}
.wse{word-spacing:-14.782197pt;}
.wsb{word-spacing:-12.855755pt;}
.ws4{word-spacing:-11.097728pt;}
.wsc{word-spacing:-10.175872pt;}
.ws8{word-spacing:-9.463797pt;}
.ws5{word-spacing:-0.074683pt;}
.wsd{word-spacing:-0.048075pt;}
.ws0{word-spacing:0.000000pt;}
.wsf{word-spacing:368.045451pt;}
.ws2{word-spacing:3326.690037pt;}
._20{margin-left:-435.132240pt;}
._0{margin-left:-7.810928pt;}
._7{margin-left:-6.879392pt;}
._4{margin-left:-4.741424pt;}
._6{margin-left:-3.021941pt;}
._1{margin-left:-1.364224pt;}
._3{width:0.931856pt;}
._2{width:1.822144pt;}
._5{width:3.193024pt;}
._11{width:4.781685pt;}
._1e{width:7.963520pt;}
._b{width:8.938992pt;}
._c{width:9.912864pt;}
._f{width:11.319504pt;}
._e{width:13.110160pt;}
._d{width:14.173067pt;}
._a{width:15.860096pt;}
._9{width:16.815856pt;}
._1d{width:17.969696pt;}
._12{width:18.865840pt;}
._13{width:19.900395pt;}
._1a{width:22.555136pt;}
._1c{width:23.769573pt;}
._16{width:28.102352pt;}
._14{width:30.559776pt;}
._15{width:39.330480pt;}
._1b{width:42.135339pt;}
._1f{width:71.641419pt;}
._17{width:84.720875pt;}
._18{width:86.932128pt;}
._19{width:88.029525pt;}
._8{width:427.152501pt;}
._10{width:1450.065696pt;}
.fsf{font-size:30.992000pt;}
.fsa{font-size:34.165333pt;}
.fse{font-size:36.736000pt;}
.fs9{font-size:40.064000pt;}
.fsb{font-size:42.634667pt;}
.fsd{font-size:46.410667pt;}
.fs4{font-size:48.074667pt;}
.fs7{font-size:53.365333pt;}
.fs6{font-size:58.656000pt;}
.fs5{font-size:63.952000pt;}
.fs8{font-size:69.392000pt;}
.fs2{font-size:74.682667pt;}
.fsc{font-size:79.973333pt;}
.fs1{font-size:85.264000pt;}
.fs3{font-size:106.736000pt;}
.fs0{font-size:128.048000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y88{bottom:4.913333pt;}
.y84{bottom:5.972000pt;}
.y5f{bottom:12.132000pt;}
.yab{bottom:12.774667pt;}
.y2e{bottom:14.665333pt;}
.y41{bottom:17.840000pt;}
.yf{bottom:20.372000pt;}
.y87{bottom:23.056000pt;}
.y38{bottom:23.169333pt;}
.y27{bottom:27.704000pt;}
.y5e{bottom:28.120000pt;}
.yc3{bottom:29.329333pt;}
.y57{bottom:33.449333pt;}
.ya6{bottom:35.565333pt;}
.y6{bottom:36.774667pt;}
.y91{bottom:38.513333pt;}
.y26{bottom:46.904000pt;}
.y74{bottom:48.265333pt;}
.yc2{bottom:50.117333pt;}
.y56{bottom:52.497333pt;}
.ya5{bottom:53.178667pt;}
.y31{bottom:56.126667pt;}
.yca{bottom:59.565333pt;}
.y25{bottom:66.104000pt;}
.y40{bottom:66.369333pt;}
.y73{bottom:67.313333pt;}
.ya4{bottom:70.790667pt;}
.y55{bottom:71.697333pt;}
.y9b{bottom:81.713333pt;}
.y3f{bottom:83.830667pt;}
.y24{bottom:85.190667pt;}
.yd9{bottom:86.929333pt;}
.y10{bottom:87.193333pt;}
.ya3{bottom:88.365333pt;}
.y6d{bottom:100.497333pt;}
.y9a{bottom:100.913333pt;}
.y3e{bottom:102.388000pt;}
.y23{bottom:104.390667pt;}
.y78{bottom:105.033333pt;}
.y54{bottom:108.397333pt;}
.yc9{bottom:110.778667pt;}
.y99{bottom:119.962667pt;}
.y22{bottom:123.590667pt;}
.y77{bottom:125.065333pt;}
.yd8{bottom:125.178667pt;}
.y53{bottom:125.858667pt;}
.y6c{bottom:130.393333pt;}
.ybf{bottom:135.988000pt;}
.y30{bottom:137.310667pt;}
.y98{bottom:139.162667pt;}
.y76{bottom:142.640000pt;}
.y21{bottom:142.790667pt;}
.y3d{bottom:149.972000pt;}
.ybe{bottom:153.562667pt;}
.y97{bottom:158.362667pt;}
.y75{bottom:160.517333pt;}
.y20{bottom:161.840000pt;}
.y52{bottom:163.465333pt;}
.ye{bottom:163.729333pt;}
.yd7{bottom:165.165333pt;}
.y36{bottom:166.110667pt;}
.y6b{bottom:168.529333pt;}
.y5{bottom:168.906667pt;}
.ybd{bottom:171.174667pt;}
.y4e{bottom:171.440000pt;}
.y3c{bottom:174.122667pt;}
.y1f{bottom:181.040000pt;}
.yd6{bottom:185.310667pt;}
.ybc{bottom:188.788000pt;}
.y82{bottom:190.110667pt;}
.y35{bottom:191.849333pt;}
.y62{bottom:193.058667pt;}
.yb9{bottom:194.230667pt;}
.y96{bottom:196.649333pt;}
.y3b{bottom:198.388000pt;}
.y6a{bottom:198.501333pt;}
.y51{bottom:198.652000pt;}
.y1e{bottom:200.240000pt;}
.yd{bottom:206.665333pt;}
.y81{bottom:209.310667pt;}
.yb8{bottom:210.256000pt;}
.y61{bottom:212.106667pt;}
.y4{bottom:212.522667pt;}
.y72{bottom:214.904000pt;}
.y50{bottom:216.265333pt;}
.y34{bottom:216.793333pt;}
.y95{bottom:218.532000pt;}
.y1d{bottom:219.326667pt;}
.y2d{bottom:221.065333pt;}
.yd5{bottom:223.597333pt;}
.y2f{bottom:224.504000pt;}
.yb7{bottom:226.242667pt;}
.ybb{bottom:226.393333pt;}
.y80{bottom:228.510667pt;}
.y60{bottom:231.306667pt;}
.y71{bottom:233.990667pt;}
.y33{bottom:236.901333pt;}
.y69{bottom:237.845333pt;}
.y1c{bottom:238.526667pt;}
.y3a{bottom:240.529333pt;}
.yb6{bottom:242.230667pt;}
.yd4{bottom:242.797333pt;}
.yc{bottom:251.452000pt;}
.y94{bottom:256.781333pt;}
.y1b{bottom:257.726667pt;}
.yb5{bottom:258.256000pt;}
.y4c{bottom:260.522667pt;}
.yd3{bottom:261.997333pt;}
.y32{bottom:262.640000pt;}
.y70{bottom:267.856000pt;}
.y68{bottom:273.562667pt;}
.y1a{bottom:276.926667pt;}
.y4d{bottom:280.781333pt;}
.y4a{bottom:283.313333pt;}
.y2c{bottom:285.317333pt;}
.y6f{bottom:286.904000pt;}
.yb4{bottom:290.230667pt;}
.yb{bottom:295.181333pt;}
.y19{bottom:295.974667pt;}
.y37{bottom:297.033333pt;}
.yd2{bottom:300.245333pt;}
.y7f{bottom:301.040000pt;}
.y49{bottom:301.720000pt;}
.yb3{bottom:306.256000pt;}
.y67{bottom:311.584000pt;}
.y18{bottom:315.174667pt;}
.y4b{bottom:317.178667pt;}
.ya{bottom:318.501333pt;}
.yd1{bottom:319.445333pt;}
.y7e{bottom:322.772000pt;}
.ya9{bottom:324.774667pt;}
.y48{bottom:325.190667pt;}
.y7b{bottom:331.049333pt;}
.y17{bottom:334.374667pt;}
.yb2{bottom:338.230667pt;}
.yd0{bottom:338.532000pt;}
.ya8{bottom:339.174667pt;}
.y9d{bottom:339.326667pt;}
.y3{bottom:340.913333pt;}
.y7d{bottom:341.972000pt;}
.y47{bottom:343.597333pt;}
.y66{bottom:346.772000pt;}
.y85{bottom:347.188000pt;}
.y7a{bottom:350.097333pt;}
.y16{bottom:353.461333pt;}
.ya7{bottom:353.574667pt;}
.yb1{bottom:354.104000pt;}
.yc7{bottom:354.256000pt;}
.y9c{bottom:355.313333pt;}
.ycf{bottom:359.056000pt;}
.y7c{bottom:361.058667pt;}
.y9{bottom:363.326667pt;}
.y46{bottom:367.861333pt;}
.y15{bottom:372.661333pt;}
.y65{bottom:376.630667pt;}
.y2{bottom:379.313333pt;}
.yb0{bottom:386.117333pt;}
.y14{bottom:391.861333pt;}
.y45{bottom:391.974667pt;}
.y5b{bottom:396.774667pt;}
.yc6{bottom:396.926667pt;}
.y90{bottom:397.984000pt;}
.yc0{bottom:398.249333pt;}
.yce{bottom:399.988000pt;}
.y8{bottom:407.056000pt;}
.y13{bottom:411.061333pt;}
.y2b{bottom:411.440000pt;}
.y44{bottom:415.332000pt;}
.y8f{bottom:415.597333pt;}
.yc5{bottom:417.562667pt;}
.y64{bottom:417.713333pt;}
.yaf{bottom:418.129333pt;}
.y5a{bottom:419.717333pt;}
.y8b{bottom:427.578667pt;}
.y12{bottom:430.374667pt;}
.y8e{bottom:433.172000pt;}
.y43{bottom:433.852000pt;}
.yae{bottom:434.117333pt;}
.yc4{bottom:437.442667pt;}
.ycd{bottom:438.652000pt;}
.y2a{bottom:441.713333pt;}
.y92{bottom:442.506667pt;}
.y59{bottom:445.040000pt;}
.y8a{bottom:445.190667pt;}
.y8d{bottom:450.633333pt;}
.y42{bottom:451.465333pt;}
.ycc{bottom:458.797333pt;}
.y5d{bottom:462.652000pt;}
.yad{bottom:466.129333pt;}
.ya2{bottom:467.301333pt;}
.y58{bottom:468.132000pt;}
.y8c{bottom:470.665333pt;}
.y29{bottom:471.988000pt;}
.yc8{bottom:477.430667pt;}
.y11{bottom:480.265333pt;}
.yba{bottom:481.701333pt;}
.yac{bottom:482.117333pt;}
.ya0{bottom:486.236000pt;}
.y5c{bottom:491.452000pt;}
.y63{bottom:493.456000pt;}
.y86{bottom:495.836000pt;}
.ya1{bottom:496.101333pt;}
.y6e{bottom:496.630667pt;}
.yc1{bottom:498.633333pt;}
.y79{bottom:499.465333pt;}
.y9e{bottom:499.578667pt;}
.y7{bottom:500.788000pt;}
.y39{bottom:501.165333pt;}
.y83{bottom:502.790667pt;}
.ycb{bottom:502.904000pt;}
.y89{bottom:503.962667pt;}
.y9f{bottom:504.529333pt;}
.y93{bottom:506.117333pt;}
.yaa{bottom:506.797333pt;}
.y4f{bottom:507.969333pt;}
.y28{bottom:510.388000pt;}
.hf{height:29.915047pt;}
.h8{height:33.379969pt;}
.h10{height:33.802500pt;}
.h16{height:43.872828pt;}
.h15{height:46.558805pt;}
.hb{height:48.701078pt;}
.hd{height:51.854859pt;}
.ha{height:53.529328pt;}
.h7{height:56.965893pt;}
.h9{height:58.362445pt;}
.h17{height:59.871779pt;}
.hc{height:63.326977pt;}
.h11{height:66.339969pt;}
.h5{height:68.155227pt;}
.he{height:69.999779pt;}
.h13{height:72.983477pt;}
.h14{height:74.498143pt;}
.h12{height:74.647477pt;}
.h4{height:77.811727pt;}
.h6{height:97.407023pt;}
.h3{height:116.856305pt;}
.h2{height:539.980000pt;}
.h1{height:540.000000pt;}
.h0{height:540.018898pt;}
.w1{width:959.961333pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:17.877333pt;}
.xe{left:19.880000pt;}
.x27{left:21.468000pt;}
.x28{left:23.849333pt;}
.x1a{left:25.322667pt;}
.x4d{left:28.649333pt;}
.x7{left:30.274667pt;}
.xc{left:34.280000pt;}
.x3b{left:37.606667pt;}
.x1b{left:44.145333pt;}
.x1{left:45.202667pt;}
.x8{left:46.261333pt;}
.x50{left:51.477333pt;}
.x5{left:64.402667pt;}
.xf{left:72.416000pt;}
.x1c{left:73.322667pt;}
.x13{left:74.268000pt;}
.x9{left:78.274667pt;}
.x2c{left:80.277333pt;}
.x2d{left:83.716000pt;}
.xb{left:84.661333pt;}
.x3{left:90.520000pt;}
.x4{left:102.652000pt;}
.x33{left:104.277333pt;}
.x34{left:142.790667pt;}
.x22{left:159.080000pt;}
.x2{left:188.522667pt;}
.x2a{left:238.261333pt;}
.x2b{left:250.393333pt;}
.x1f{left:256.516000pt;}
.x6{left:267.212000pt;}
.x23{left:270.802667pt;}
.x10{left:276.397333pt;}
.x31{left:278.816000pt;}
.x30{left:293.858667pt;}
.x24{left:297.449333pt;}
.x11{left:300.661333pt;}
.x26{left:306.254667pt;}
.x29{left:319.332000pt;}
.x4e{left:329.612000pt;}
.x32{left:331.729333pt;}
.x4f{left:344.920000pt;}
.x1d{left:354.254667pt;}
.x4a{left:358.677333pt;}
.x3e{left:360.264000pt;}
.x19{left:365.480000pt;}
.x3a{left:369.184000pt;}
.x1e{left:376.932000pt;}
.x51{left:406.941333pt;}
.x4b{left:409.474667pt;}
.xd{left:430.148000pt;}
.x12{left:432.000000pt;}
.x41{left:443.074667pt;}
.x15{left:473.461333pt;}
.x42{left:482.948000pt;}
.x17{left:489.070667pt;}
.x16{left:494.816000pt;}
.x49{left:541.077333pt;}
.x45{left:547.993333pt;}
.x44{left:552.000000pt;}
.x25{left:564.548000pt;}
.x43{left:571.049333pt;}
.x2f{left:577.474667pt;}
.x3d{left:606.388000pt;}
.x4c{left:633.864000pt;}
.x46{left:641.197333pt;}
.x3c{left:689.348000pt;}
.x18{left:691.616000pt;}
.x3f{left:716.522667pt;}
.x35{left:736.252000pt;}
.x36{left:741.202667pt;}
.x37{left:742.412000pt;}
.x38{left:752.277333pt;}
.x47{left:755.188000pt;}
.x40{left:776.012000pt;}
.x48{left:779.338667pt;}
.x14{left:837.316000pt;}
.x20{left:853.870667pt;}
.x39{left:874.545333pt;}
.xa{left:880.668000pt;}
.x21{left:931.616000pt;}
}




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