
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9299a328d25658f26822e753.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0c48943878c5bb327915f685.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.087402;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_d1c2f62830979d99b7ddbf4a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_686998f80fb6b617013ba0db.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.087402;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_861338c69c6c206701f4c486.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_f4a069c6a11f9a4ea37137e6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsd{letter-spacing:-0.285600px;}
.lsb{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.178800px;}
.ls13{letter-spacing:-0.141600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls9{letter-spacing:0.065400px;}
.ls3{letter-spacing:0.065520px;}
.ls10{letter-spacing:0.074160px;}
.lse{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:47.726640px;}
.ls15{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.300800px;}
.wsd{word-spacing:-13.275360px;}
.ws5{word-spacing:-13.226400px;}
.wse{word-spacing:-13.084800px;}
.ws4{word-spacing:-13.039800px;}
.ws8{word-spacing:-12.940800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.331800px;}
.ws3{word-spacing:-8.553600px;}
.wsb{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._10{margin-left:-4.301269px;}
._9{margin-left:-3.282123px;}
._8{margin-left:-2.224200px;}
._0{margin-left:-1.110000px;}
._1{width:1.006812px;}
._2{width:2.136228px;}
._3{width:3.446028px;}
._f{width:4.448880px;}
._7{width:5.530800px;}
._b{width:6.733801px;}
._5{width:7.996200px;}
._6{width:9.077399px;}
._e{width:11.062080px;}
._12{width:12.144240px;}
._4{width:14.368800px;}
._a{width:15.811800px;}
._11{width:17.194080px;}
._20{width:18.516960px;}
._13{width:20.019960px;}
._14{width:21.222360px;}
._21{width:22.665240px;}
._c{width:24.348600px;}
._d{width:25.698840px;}
._1c{width:42.023880px;}
._15{width:45.991800px;}
._1a{width:51.342480px;}
._1b{width:52.970880px;}
._18{width:55.190160px;}
._19{width:56.212200px;}
._17{width:57.895560px;}
._1f{width:65.711160px;}
._1d{width:90.480600px;}
._1e{width:91.622880px;}
._16{width:174.648600px;}
._22{width:733.103280px;}
._23{width:2464.138440px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y66{bottom:7.830000px;}
.y64{bottom:7.920000px;}
.y7a{bottom:12.330000px;}
.y68{bottom:25.380000px;}
.y6b{bottom:25.470000px;}
.y84{bottom:25.500000px;}
.y79{bottom:29.880000px;}
.y70{bottom:29.970000px;}
.y6a{bottom:43.020000px;}
.y75{bottom:43.110000px;}
.y6f{bottom:52.020000px;}
.y94{bottom:52.110000px;}
.y6e{bottom:56.520000px;}
.y2{bottom:73.380000px;}
.y6d{bottom:74.160000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y5a{bottom:112.170000px;}
.ybf{bottom:112.980000px;}
.y11d{bottom:115.680000px;}
.ye3{bottom:116.940000px;}
.y7f{bottom:125.040000px;}
.yf6{bottom:125.490000px;}
.y59{bottom:129.720000px;}
.ybe{bottom:130.530000px;}
.y11c{bottom:133.320000px;}
.y99{bottom:133.590000px;}
.ye2{bottom:134.580000px;}
.yf5{bottom:143.130000px;}
.y58{bottom:147.270000px;}
.ybd{bottom:148.170000px;}
.y98{bottom:151.140000px;}
.ye1{bottom:152.130000px;}
.y7e{bottom:152.400000px;}
.y27{bottom:159.600000px;}
.y11b{bottom:159.870000px;}
.y57{bottom:164.910000px;}
.y97{bottom:168.780000px;}
.ye0{bottom:169.680000px;}
.y26{bottom:177.240000px;}
.y7d{bottom:179.670000px;}
.ybc{bottom:183.720000px;}
.y11a{bottom:186.510000px;}
.ydf{bottom:187.320000px;}
.y56{bottom:191.460000px;}
.y25{bottom:194.790000px;}
.ybb{bottom:201.270000px;}
.y96{bottom:201.720000px;}
.y119{bottom:204.060000px;}
.yf4{bottom:213.870000px;}
.yba{bottom:218.910000px;}
.yde{bottom:222.870000px;}
.y7c{bottom:224.580000px;}
.y55{bottom:227.100000px;}
.y24{bottom:230.340000px;}
.y118{bottom:230.610000px;}
.yf3{bottom:231.420000px;}
.yb9{bottom:236.460000px;}
.ydd{bottom:240.510000px;}
.y54{bottom:244.650000px;}
.y23{bottom:247.980000px;}
.y117{bottom:248.250000px;}
.yb8{bottom:254.100000px;}
.ydc{bottom:258.060000px;}
.yf2{bottom:258.330000px;}
.y53{bottom:262.200000px;}
.y22{bottom:265.530000px;}
.yb7{bottom:271.650000px;}
.y95{bottom:273.180000px;}
.y7b{bottom:274.080000px;}
.y116{bottom:274.800000px;}
.ydb{bottom:275.610000px;}
.y52{bottom:279.840000px;}
.y21{bottom:283.170000px;}
.yb6{bottom:289.200000px;}
.y115{bottom:292.440000px;}
.y51{bottom:306.390000px;}
.yf1{bottom:306.660000px;}
.yb5{bottom:306.840000px;}
.y114{bottom:309.990000px;}
.y20{bottom:310.080000px;}
.yda{bottom:311.250000px;}
.y78{bottom:318.990000px;}
.y93{bottom:322.590000px;}
.yb4{bottom:324.390000px;}
.yd9{bottom:328.800000px;}
.yf0{bottom:333.570000px;}
.y113{bottom:336.540000px;}
.y50{bottom:341.940000px;}
.yd8{bottom:346.440000px;}
.y112{bottom:354.180000px;}
.y1f{bottom:358.680000px;}
.y4f{bottom:359.580000px;}
.yd7{bottom:363.990000px;}
.y77{bottom:368.400000px;}
.yb3{bottom:368.850000px;}
.yef{bottom:370.560000px;}
.y111{bottom:371.730000px;}
.y4e{bottom:377.130000px;}
.yd6{bottom:381.540000px;}
.y110{bottom:389.370000px;}
.y92{bottom:394.140000px;}
.y4d{bottom:394.770000px;}
.y1e{bottom:395.670000px;}
.yee{bottom:397.470000px;}
.y4c{bottom:412.320000px;}
.y1d{bottom:413.220000px;}
.y76{bottom:413.310000px;}
.y10f{bottom:415.920000px;}
.yb2{bottom:417.180000px;}
.y4b{bottom:429.870000px;}
.y1c{bottom:430.860000px;}
.y10e{bottom:433.470000px;}
.yb1{bottom:434.730000px;}
.yed{bottom:434.820000px;}
.y91{bottom:443.550000px;}
.y4a{bottom:447.510000px;}
.y1b{bottom:448.410000px;}
.yb0{bottom:452.370000px;}
.y10d{bottom:460.110000px;}
.y49{bottom:465.060000px;}
.y1a{bottom:466.050000px;}
.yaf{bottom:469.950000px;}
.y90{bottom:470.940000px;}
.y74{bottom:475.800000px;}
.y10c{bottom:477.690000px;}
.y48{bottom:482.730000px;}
.yec{bottom:483.090000px;}
.y19{bottom:483.630000px;}
.yae{bottom:487.500000px;}
.y47{bottom:500.280000px;}
.yeb{bottom:500.730000px;}
.y18{bottom:501.180000px;}
.y10b{bottom:504.330000px;}
.yad{bottom:505.140000px;}
.yd5{bottom:505.500000px;}
.y8f{bottom:515.850000px;}
.yea{bottom:518.280000px;}
.y17{bottom:518.820000px;}
.yd4{bottom:523.140000px;}
.y10a{bottom:530.880000px;}
.y46{bottom:535.830000px;}
.y16{bottom:536.370000px;}
.y73{bottom:538.350000px;}
.yac{bottom:540.690000px;}
.y109{bottom:548.430000px;}
.y45{bottom:553.470000px;}
.y15{bottom:553.920000px;}
.yab{bottom:558.330000px;}
.y8e{bottom:560.760000px;}
.y72{bottom:565.710000px;}
.y44{bottom:571.020000px;}
.ye9{bottom:571.470000px;}
.y14{bottom:571.560000px;}
.y108{bottom:575.070000px;}
.yaa{bottom:575.880000px;}
.y43{bottom:588.660000px;}
.ye8{bottom:589.020000px;}
.y13{bottom:589.110000px;}
.y71{bottom:592.980000px;}
.ya9{bottom:593.430000px;}
.yd3{bottom:593.880000px;}
.y107{bottom:601.620000px;}
.y8d{bottom:605.670000px;}
.ye7{bottom:606.660000px;}
.y12{bottom:606.750000px;}
.ya8{bottom:611.070000px;}
.yd2{bottom:611.430000px;}
.y42{bottom:615.570000px;}
.y106{bottom:619.260000px;}
.y6c{bottom:620.340000px;}
.ye6{bottom:624.210000px;}
.y11{bottom:624.300000px;}
.ya7{bottom:628.620000px;}
.yd1{bottom:629.070000px;}
.y8c{bottom:633.030000px;}
.y10{bottom:641.850000px;}
.y105{bottom:645.810000px;}
.yd0{bottom:646.620000px;}
.ye5{bottom:651.120000px;}
.yf{bottom:659.490000px;}
.y104{bottom:663.360000px;}
.y41{bottom:663.810000px;}
.ya6{bottom:664.260000px;}
.ye{bottom:677.040000px;}
.y8b{bottom:677.940000px;}
.y40{bottom:681.360000px;}
.ya5{bottom:681.810000px;}
.y103{bottom:690.000000px;}
.yd{bottom:694.680000px;}
.y3f{bottom:699.000000px;}
.ya4{bottom:699.360000px;}
.ycf{bottom:699.810000px;}
.y102{bottom:707.550000px;}
.yc{bottom:712.230000px;}
.y69{bottom:713.940000px;}
.y3e{bottom:716.550000px;}
.ya3{bottom:717.000000px;}
.yce{bottom:717.360000px;}
.y3d{bottom:734.190000px;}
.ya2{bottom:734.550000px;}
.ycd{bottom:735.000000px;}
.yb{bottom:739.140000px;}
.y8a{bottom:740.490000px;}
.y101{bottom:751.740000px;}
.ya1{bottom:752.190000px;}
.ycc{bottom:752.550000px;}
.y89{bottom:767.760000px;}
.y3c{bottom:769.740000px;}
.ycb{bottom:770.190000px;}
.y67{bottom:776.490000px;}
.y100{bottom:778.290000px;}
.y3b{bottom:787.290000px;}
.ya{bottom:787.380000px;}
.ya0{bottom:787.740000px;}
.yff{bottom:795.930000px;}
.y3a{bottom:804.930000px;}
.y9f{bottom:805.290000px;}
.y65{bottom:821.400000px;}
.y39{bottom:822.480000px;}
.y9e{bottom:822.930000px;}
.y9{bottom:823.200000px;}
.y88{bottom:830.310000px;}
.y38{bottom:840.030000px;}
.y9d{bottom:840.480000px;}
.yca{bottom:840.930000px;}
.y63{bottom:848.670000px;}
.y9c{bottom:858.030000px;}
.yc9{bottom:858.480000px;}
.y8{bottom:859.200000px;}
.yfe{bottom:866.670000px;}
.y87{bottom:875.220000px;}
.y37{bottom:875.670000px;}
.yc8{bottom:876.030000px;}
.yfd{bottom:884.220000px;}
.y36{bottom:893.220000px;}
.yc7{bottom:893.670000px;}
.y62{bottom:897.450000px;}
.y7{bottom:898.980000px;}
.y86{bottom:902.580000px;}
.y35{bottom:910.860000px;}
.yc6{bottom:911.220000px;}
.y61{bottom:915.000000px;}
.y6{bottom:916.980000px;}
.y34{bottom:928.410000px;}
.y9b{bottom:928.860000px;}
.y60{bottom:932.550000px;}
.yfc{bottom:937.410000px;}
.ye4{bottom:945.960000px;}
.y9a{bottom:946.410000px;}
.y85{bottom:947.490000px;}
.y5{bottom:949.290000px;}
.y5f{bottom:950.190000px;}
.yfb{bottom:954.960000px;}
.y33{bottom:963.960000px;}
.y5e{bottom:967.740000px;}
.y32{bottom:981.600000px;}
.y5d{bottom:985.290000px;}
.y4{bottom:987.630000px;}
.y83{bottom:992.400000px;}
.y31{bottom:999.150000px;}
.y5c{bottom:1012.230000px;}
.y3{bottom:1012.320000px;}
.y30{bottom:1016.820000px;}
.yc5{bottom:1017.180000px;}
.y2f{bottom:1034.370000px;}
.yc4{bottom:1034.820000px;}
.y82{bottom:1037.340000px;}
.yfa{bottom:1043.370000px;}
.y2e{bottom:1051.920000px;}
.yc3{bottom:1052.370000px;}
.y5b{bottom:1060.560000px;}
.yf9{bottom:1060.920000px;}
.y2d{bottom:1069.560000px;}
.yc2{bottom:1069.920000px;}
.yf8{bottom:1078.560000px;}
.y81{bottom:1082.250000px;}
.y2c{bottom:1087.110000px;}
.yc1{bottom:1087.560000px;}
.yf7{bottom:1096.110000px;}
.yc0{bottom:1105.110000px;}
.y80{bottom:1109.610000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hd{height:26.550000px;}
.hb{height:26.640000px;}
.h17{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.111328px;}
.he{height:44.100000px;}
.h13{height:44.190000px;}
.h16{height:44.220000px;}
.h14{height:48.600000px;}
.h15{height:48.690000px;}
.hc{height:50.902383px;}
.h7{height:52.252734px;}
.h8{height:55.779258px;}
.h5{height:57.258984px;}
.hf{height:61.740000px;}
.h12{height:61.770000px;}
.h1a{height:61.793886px;}
.h11{height:61.830000px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h19{height:70.740000px;}
.h18{height:70.830000px;}
.h4{height:72.903516px;}
.h10{height:92.880000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:34.290000px;}
.wb{width:73.890000px;}
.wc{width:95.790000px;}
.w9{width:127.710000px;}
.wa{width:153.540000px;}
.w6{width:170.400000px;}
.w5{width:266.790000px;}
.w7{width:281.970000px;}
.w8{width:453.180000px;}
.w3{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x6{left:103.770000px;}
.x10{left:111.239987px;}
.xc{left:129.810000px;}
.x9{left:150.780000px;}
.x4{left:166.440000px;}
.xd{left:193.260000px;}
.x2{left:202.799987px;}
.xf{left:307.380000px;}
.xe{left:310.080000px;}
.x7{left:371.280000px;}
.xb{left:445.890000px;}
.x8{left:542.490000px;}
.xa{left:670.920000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.253867pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.158933pt;}
.ls13{letter-spacing:-0.125867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls9{letter-spacing:0.058133pt;}
.ls3{letter-spacing:0.058240pt;}
.ls10{letter-spacing:0.065920pt;}
.lse{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:42.423680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.822933pt;}
.wsd{word-spacing:-11.800320pt;}
.ws5{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.630933pt;}
.ws4{word-spacing:-11.590933pt;}
.ws8{word-spacing:-11.502933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.294933pt;}
.ws3{word-spacing:-7.603200pt;}
.wsb{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._10{margin-left:-3.823350pt;}
._9{margin-left:-2.917443pt;}
._8{margin-left:-1.977066pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.894944pt;}
._2{width:1.898870pt;}
._3{width:3.063136pt;}
._f{width:3.954560pt;}
._7{width:4.916266pt;}
._b{width:5.985601pt;}
._5{width:7.107734pt;}
._6{width:8.068799pt;}
._e{width:9.832960pt;}
._12{width:10.794880pt;}
._4{width:12.772267pt;}
._a{width:14.054934pt;}
._11{width:15.283626pt;}
._20{width:16.459520pt;}
._13{width:17.795520pt;}
._14{width:18.864320pt;}
._21{width:20.146880pt;}
._c{width:21.643200pt;}
._d{width:22.843413pt;}
._1c{width:37.354560pt;}
._15{width:40.881600pt;}
._1a{width:45.637760pt;}
._1b{width:47.085227pt;}
._18{width:49.057920pt;}
._19{width:49.966400pt;}
._17{width:51.462720pt;}
._1f{width:58.409920pt;}
._1d{width:80.427200pt;}
._1e{width:81.442560pt;}
._16{width:155.243200pt;}
._22{width:651.647360pt;}
._23{width:2190.345280pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:6.960000pt;}
.y64{bottom:7.040000pt;}
.y7a{bottom:10.960000pt;}
.y68{bottom:22.560000pt;}
.y6b{bottom:22.640000pt;}
.y84{bottom:22.666667pt;}
.y79{bottom:26.560000pt;}
.y70{bottom:26.640000pt;}
.y6a{bottom:38.240000pt;}
.y75{bottom:38.320000pt;}
.y6f{bottom:46.240000pt;}
.y94{bottom:46.320000pt;}
.y6e{bottom:50.240000pt;}
.y2{bottom:65.226667pt;}
.y6d{bottom:65.920000pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y5a{bottom:99.706667pt;}
.ybf{bottom:100.426667pt;}
.y11d{bottom:102.826667pt;}
.ye3{bottom:103.946667pt;}
.y7f{bottom:111.146667pt;}
.yf6{bottom:111.546667pt;}
.y59{bottom:115.306667pt;}
.ybe{bottom:116.026667pt;}
.y11c{bottom:118.506667pt;}
.y99{bottom:118.746667pt;}
.ye2{bottom:119.626667pt;}
.yf5{bottom:127.226667pt;}
.y58{bottom:130.906667pt;}
.ybd{bottom:131.706667pt;}
.y98{bottom:134.346667pt;}
.ye1{bottom:135.226667pt;}
.y7e{bottom:135.466667pt;}
.y27{bottom:141.866667pt;}
.y11b{bottom:142.106667pt;}
.y57{bottom:146.586667pt;}
.y97{bottom:150.026667pt;}
.ye0{bottom:150.826667pt;}
.y26{bottom:157.546667pt;}
.y7d{bottom:159.706667pt;}
.ybc{bottom:163.306667pt;}
.y11a{bottom:165.786667pt;}
.ydf{bottom:166.506667pt;}
.y56{bottom:170.186667pt;}
.y25{bottom:173.146667pt;}
.ybb{bottom:178.906667pt;}
.y96{bottom:179.306667pt;}
.y119{bottom:181.386667pt;}
.yf4{bottom:190.106667pt;}
.yba{bottom:194.586667pt;}
.yde{bottom:198.106667pt;}
.y7c{bottom:199.626667pt;}
.y55{bottom:201.866667pt;}
.y24{bottom:204.746667pt;}
.y118{bottom:204.986667pt;}
.yf3{bottom:205.706667pt;}
.yb9{bottom:210.186667pt;}
.ydd{bottom:213.786667pt;}
.y54{bottom:217.466667pt;}
.y23{bottom:220.426667pt;}
.y117{bottom:220.666667pt;}
.yb8{bottom:225.866667pt;}
.ydc{bottom:229.386667pt;}
.yf2{bottom:229.626667pt;}
.y53{bottom:233.066667pt;}
.y22{bottom:236.026667pt;}
.yb7{bottom:241.466667pt;}
.y95{bottom:242.826667pt;}
.y7b{bottom:243.626667pt;}
.y116{bottom:244.266667pt;}
.ydb{bottom:244.986667pt;}
.y52{bottom:248.746667pt;}
.y21{bottom:251.706667pt;}
.yb6{bottom:257.066667pt;}
.y115{bottom:259.946667pt;}
.y51{bottom:272.346667pt;}
.yf1{bottom:272.586667pt;}
.yb5{bottom:272.746667pt;}
.y114{bottom:275.546667pt;}
.y20{bottom:275.626667pt;}
.yda{bottom:276.666667pt;}
.y78{bottom:283.546667pt;}
.y93{bottom:286.746667pt;}
.yb4{bottom:288.346667pt;}
.yd9{bottom:292.266667pt;}
.yf0{bottom:296.506667pt;}
.y113{bottom:299.146667pt;}
.y50{bottom:303.946667pt;}
.yd8{bottom:307.946667pt;}
.y112{bottom:314.826667pt;}
.y1f{bottom:318.826667pt;}
.y4f{bottom:319.626667pt;}
.yd7{bottom:323.546667pt;}
.y77{bottom:327.466667pt;}
.yb3{bottom:327.866667pt;}
.yef{bottom:329.386667pt;}
.y111{bottom:330.426667pt;}
.y4e{bottom:335.226667pt;}
.yd6{bottom:339.146667pt;}
.y110{bottom:346.106667pt;}
.y92{bottom:350.346667pt;}
.y4d{bottom:350.906667pt;}
.y1e{bottom:351.706667pt;}
.yee{bottom:353.306667pt;}
.y4c{bottom:366.506667pt;}
.y1d{bottom:367.306667pt;}
.y76{bottom:367.386667pt;}
.y10f{bottom:369.706667pt;}
.yb2{bottom:370.826667pt;}
.y4b{bottom:382.106667pt;}
.y1c{bottom:382.986667pt;}
.y10e{bottom:385.306667pt;}
.yb1{bottom:386.426667pt;}
.yed{bottom:386.506667pt;}
.y91{bottom:394.266667pt;}
.y4a{bottom:397.786667pt;}
.y1b{bottom:398.586667pt;}
.yb0{bottom:402.106667pt;}
.y10d{bottom:408.986667pt;}
.y49{bottom:413.386667pt;}
.y1a{bottom:414.266667pt;}
.yaf{bottom:417.733333pt;}
.y90{bottom:418.613333pt;}
.y74{bottom:422.933333pt;}
.y10c{bottom:424.613333pt;}
.y48{bottom:429.093333pt;}
.yec{bottom:429.413333pt;}
.y19{bottom:429.893333pt;}
.yae{bottom:433.333333pt;}
.y47{bottom:444.693333pt;}
.yeb{bottom:445.093333pt;}
.y18{bottom:445.493333pt;}
.y10b{bottom:448.293333pt;}
.yad{bottom:449.013333pt;}
.yd5{bottom:449.333333pt;}
.y8f{bottom:458.533333pt;}
.yea{bottom:460.693333pt;}
.y17{bottom:461.173333pt;}
.yd4{bottom:465.013333pt;}
.y10a{bottom:471.893333pt;}
.y46{bottom:476.293333pt;}
.y16{bottom:476.773333pt;}
.y73{bottom:478.533333pt;}
.yac{bottom:480.613333pt;}
.y109{bottom:487.493333pt;}
.y45{bottom:491.973333pt;}
.y15{bottom:492.373333pt;}
.yab{bottom:496.293333pt;}
.y8e{bottom:498.453333pt;}
.y72{bottom:502.853333pt;}
.y44{bottom:507.573333pt;}
.ye9{bottom:507.973333pt;}
.y14{bottom:508.053333pt;}
.y108{bottom:511.173333pt;}
.yaa{bottom:511.893333pt;}
.y43{bottom:523.253333pt;}
.ye8{bottom:523.573333pt;}
.y13{bottom:523.653333pt;}
.y71{bottom:527.093333pt;}
.ya9{bottom:527.493333pt;}
.yd3{bottom:527.893333pt;}
.y107{bottom:534.773333pt;}
.y8d{bottom:538.373333pt;}
.ye7{bottom:539.253333pt;}
.y12{bottom:539.333333pt;}
.ya8{bottom:543.173333pt;}
.yd2{bottom:543.493333pt;}
.y42{bottom:547.173333pt;}
.y106{bottom:550.453333pt;}
.y6c{bottom:551.413333pt;}
.ye6{bottom:554.853333pt;}
.y11{bottom:554.933333pt;}
.ya7{bottom:558.773333pt;}
.yd1{bottom:559.173333pt;}
.y8c{bottom:562.693333pt;}
.y10{bottom:570.533333pt;}
.y105{bottom:574.053333pt;}
.yd0{bottom:574.773333pt;}
.ye5{bottom:578.773333pt;}
.yf{bottom:586.213333pt;}
.y104{bottom:589.653333pt;}
.y41{bottom:590.053333pt;}
.ya6{bottom:590.453333pt;}
.ye{bottom:601.813333pt;}
.y8b{bottom:602.613333pt;}
.y40{bottom:605.653333pt;}
.ya5{bottom:606.053333pt;}
.y103{bottom:613.333333pt;}
.yd{bottom:617.493333pt;}
.y3f{bottom:621.333333pt;}
.ya4{bottom:621.653333pt;}
.ycf{bottom:622.053333pt;}
.y102{bottom:628.933333pt;}
.yc{bottom:633.093333pt;}
.y69{bottom:634.613333pt;}
.y3e{bottom:636.933333pt;}
.ya3{bottom:637.333333pt;}
.yce{bottom:637.653333pt;}
.y3d{bottom:652.613333pt;}
.ya2{bottom:652.933333pt;}
.ycd{bottom:653.333333pt;}
.yb{bottom:657.013333pt;}
.y8a{bottom:658.213333pt;}
.y101{bottom:668.213333pt;}
.ya1{bottom:668.613333pt;}
.ycc{bottom:668.933333pt;}
.y89{bottom:682.453333pt;}
.y3c{bottom:684.213333pt;}
.ycb{bottom:684.613333pt;}
.y67{bottom:690.213333pt;}
.y100{bottom:691.813333pt;}
.y3b{bottom:699.813333pt;}
.ya{bottom:699.893333pt;}
.ya0{bottom:700.213333pt;}
.yff{bottom:707.493333pt;}
.y3a{bottom:715.493333pt;}
.y9f{bottom:715.813333pt;}
.y65{bottom:730.133333pt;}
.y39{bottom:731.093333pt;}
.y9e{bottom:731.493333pt;}
.y9{bottom:731.733333pt;}
.y88{bottom:738.053333pt;}
.y38{bottom:746.693333pt;}
.y9d{bottom:747.093333pt;}
.yca{bottom:747.493333pt;}
.y63{bottom:754.373333pt;}
.y9c{bottom:762.693333pt;}
.yc9{bottom:763.093333pt;}
.y8{bottom:763.733333pt;}
.yfe{bottom:770.373333pt;}
.y87{bottom:777.973333pt;}
.y37{bottom:778.373333pt;}
.yc8{bottom:778.693333pt;}
.yfd{bottom:785.973333pt;}
.y36{bottom:793.973333pt;}
.yc7{bottom:794.373333pt;}
.y62{bottom:797.733333pt;}
.y7{bottom:799.093333pt;}
.y86{bottom:802.293333pt;}
.y35{bottom:809.653333pt;}
.yc6{bottom:809.973333pt;}
.y61{bottom:813.333333pt;}
.y6{bottom:815.093333pt;}
.y34{bottom:825.253333pt;}
.y9b{bottom:825.653333pt;}
.y60{bottom:828.933333pt;}
.yfc{bottom:833.253333pt;}
.ye4{bottom:840.853333pt;}
.y9a{bottom:841.253333pt;}
.y85{bottom:842.213333pt;}
.y5{bottom:843.813333pt;}
.y5f{bottom:844.613333pt;}
.yfb{bottom:848.853333pt;}
.y33{bottom:856.853333pt;}
.y5e{bottom:860.213333pt;}
.y32{bottom:872.533333pt;}
.y5d{bottom:875.813333pt;}
.y4{bottom:877.893333pt;}
.y83{bottom:882.133333pt;}
.y31{bottom:888.133333pt;}
.y5c{bottom:899.760000pt;}
.y3{bottom:899.840000pt;}
.y30{bottom:903.840000pt;}
.yc5{bottom:904.160000pt;}
.y2f{bottom:919.440000pt;}
.yc4{bottom:919.840000pt;}
.y82{bottom:922.080000pt;}
.yfa{bottom:927.440000pt;}
.y2e{bottom:935.040000pt;}
.yc3{bottom:935.440000pt;}
.y5b{bottom:942.720000pt;}
.yf9{bottom:943.040000pt;}
.y2d{bottom:950.720000pt;}
.yc2{bottom:951.040000pt;}
.yf8{bottom:958.720000pt;}
.y81{bottom:962.000000pt;}
.y2c{bottom:966.320000pt;}
.yc1{bottom:966.720000pt;}
.yf7{bottom:974.320000pt;}
.yc0{bottom:982.320000pt;}
.y80{bottom:986.320000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.hb{height:23.680000pt;}
.h17{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.765625pt;}
.he{height:39.200000pt;}
.h13{height:39.280000pt;}
.h16{height:39.306667pt;}
.h14{height:43.200000pt;}
.h15{height:43.280000pt;}
.hc{height:45.246562pt;}
.h7{height:46.446875pt;}
.h8{height:49.581562pt;}
.h5{height:50.896875pt;}
.hf{height:54.880000pt;}
.h12{height:54.906667pt;}
.h1a{height:54.927899pt;}
.h11{height:54.960000pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h19{height:62.880000pt;}
.h18{height:62.960000pt;}
.h4{height:64.803125pt;}
.h10{height:82.560000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:30.480000pt;}
.wb{width:65.680000pt;}
.wc{width:85.146667pt;}
.w9{width:113.520000pt;}
.wa{width:136.480000pt;}
.w6{width:151.466667pt;}
.w5{width:237.146667pt;}
.w7{width:250.640000pt;}
.w8{width:402.826667pt;}
.w3{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x6{left:92.240000pt;}
.x10{left:98.879988pt;}
.xc{left:115.386667pt;}
.x9{left:134.026667pt;}
.x4{left:147.946667pt;}
.xd{left:171.786667pt;}
.x2{left:180.266655pt;}
.xf{left:273.226667pt;}
.xe{left:275.626667pt;}
.x7{left:330.026667pt;}
.xb{left:396.346667pt;}
.x8{left:482.213333pt;}
.xa{left:596.373333pt;}
.x3{left:704.053322pt;}
}




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