
    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_86fbe0d75d319b768d09227a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_45f6694ef4d4fb491a5849c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_d47979d0642e5522317de59d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_f39bfa4d8ec08557b2cdcdfd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_6bcbe83f2986397459a794fb.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_673aeee60ddb1b020121c1db.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_9161e2b1aa00cd718e243c90.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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);}
.v2{vertical-align:-21.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.600000px;}
.ls2{letter-spacing:4.884000px;}
.ls3{letter-spacing:9.000000px;}
.ls4{letter-spacing:184.260000px;}
.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:-15.000000px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:-7.800000px;}
.ws6{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:1157.130000px;}
._17{margin-left:-7.806000px;}
._3{margin-left:-5.760000px;}
._d{margin-left:-4.561200px;}
._0{margin-left:-3.430800px;}
._1{margin-left:-1.728000px;}
._2{width:1.018800px;}
._f{width:2.020800px;}
._6{width:3.024000px;}
._5{width:4.374000px;}
._4{width:5.400000px;}
._c{width:6.600000px;}
._b{width:7.728000px;}
._7{width:9.000000px;}
._8{width:10.090800px;}
._e{width:11.607600px;}
._9{width:12.660000px;}
._a{width:13.920000px;}
._11{width:67.500000px;}
._16{width:231.558000px;}
._12{width:265.578000px;}
._14{width:441.024000px;}
._10{width:476.988000px;}
._13{width:492.324000px;}
._15{width:539.898000px;}
.fc5{color:rgb(0,0,10);}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,176,240);}
.fs1{font-size:31.200000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y37{bottom:112.650000px;}
.y166{bottom:115.350000px;}
.y113{bottom:115.800000px;}
.y98{bottom:117.300000px;}
.y104{bottom:121.200000px;}
.ybe{bottom:123.150000px;}
.y36{bottom:130.050000px;}
.y165{bottom:132.600000px;}
.y136{bottom:132.750000px;}
.y97{bottom:134.550000px;}
.y103{bottom:138.450000px;}
.y6b{bottom:139.950000px;}
.ybd{bottom:140.550000px;}
.y35{bottom:147.300000px;}
.y164{bottom:150.000000px;}
.y96{bottom:151.950000px;}
.y135{bottom:152.550000px;}
.y102{bottom:155.850000px;}
.y6a{bottom:157.350000px;}
.ybc{bottom:157.800000px;}
.y34{bottom:164.700000px;}
.y163{bottom:167.250000px;}
.y95{bottom:169.200000px;}
.y134{bottom:172.500000px;}
.y112{bottom:172.800000px;}
.y101{bottom:173.100000px;}
.y69{bottom:174.600000px;}
.ybb{bottom:175.200000px;}
.y33{bottom:181.950000px;}
.y162{bottom:184.650000px;}
.y94{bottom:186.600000px;}
.y111{bottom:190.200000px;}
.y100{bottom:190.500000px;}
.y68{bottom:192.000000px;}
.y133{bottom:192.300000px;}
.yba{bottom:192.450000px;}
.y161{bottom:201.900000px;}
.y93{bottom:203.850000px;}
.y110{bottom:207.450000px;}
.y67{bottom:209.250000px;}
.yb9{bottom:209.850000px;}
.y132{bottom:212.250000px;}
.y32{bottom:213.150000px;}
.y160{bottom:219.300000px;}
.y92{bottom:221.250000px;}
.y10f{bottom:224.850000px;}
.y66{bottom:226.650000px;}
.yb8{bottom:227.100000px;}
.y31{bottom:230.400000px;}
.y131{bottom:232.050000px;}
.y15f{bottom:236.550000px;}
.y10e{bottom:242.100000px;}
.y65{bottom:243.900000px;}
.yb7{bottom:244.500000px;}
.y30{bottom:247.800000px;}
.y130{bottom:252.000000px;}
.y15e{bottom:253.950000px;}
.yed{bottom:254.550000px;}
.y91{bottom:255.900000px;}
.y10d{bottom:259.500000px;}
.yb6{bottom:261.750000px;}
.y2f{bottom:265.050000px;}
.y15d{bottom:271.200000px;}
.yec{bottom:271.800000px;}
.y90{bottom:273.150000px;}
.y64{bottom:278.550000px;}
.yb5{bottom:279.150000px;}
.y2e{bottom:282.450000px;}
.y15c{bottom:288.600000px;}
.yeb{bottom:289.200000px;}
.y8f{bottom:290.550000px;}
.y12f{bottom:291.750000px;}
.y10c{bottom:294.150000px;}
.y63{bottom:295.950000px;}
.yb4{bottom:296.400000px;}
.y2d{bottom:299.700000px;}
.y15b{bottom:305.850000px;}
.yea{bottom:306.450000px;}
.yd4{bottom:306.600000px;}
.y8e{bottom:307.800000px;}
.y10b{bottom:311.400000px;}
.y12e{bottom:311.550000px;}
.y62{bottom:313.200000px;}
.y2c{bottom:317.100000px;}
.y15a{bottom:323.250000px;}
.yd3{bottom:323.850000px;}
.y8d{bottom:325.200000px;}
.y10a{bottom:328.800000px;}
.y61{bottom:330.600000px;}
.yb3{bottom:331.050000px;}
.y12d{bottom:331.500000px;}
.y159{bottom:340.500000px;}
.ye9{bottom:341.100000px;}
.yd2{bottom:341.250000px;}
.y8c{bottom:342.450000px;}
.y109{bottom:346.050000px;}
.yb2{bottom:348.450000px;}
.y12c{bottom:351.300000px;}
.y2b{bottom:354.600000px;}
.y158{bottom:357.900000px;}
.yd1{bottom:358.500000px;}
.y8b{bottom:359.850000px;}
.y60{bottom:362.850000px;}
.y108{bottom:363.450000px;}
.yb1{bottom:365.700000px;}
.y12b{bottom:371.250000px;}
.y2a{bottom:371.850000px;}
.y157{bottom:375.150000px;}
.ye8{bottom:375.750000px;}
.yd0{bottom:375.900000px;}
.y8a{bottom:377.100000px;}
.yb0{bottom:383.100000px;}
.y29{bottom:389.250000px;}
.y156{bottom:392.550000px;}
.ycf{bottom:393.150000px;}
.y89{bottom:394.500000px;}
.y107{bottom:398.100000px;}
.yaf{bottom:400.350000px;}
.y28{bottom:406.500000px;}
.y155{bottom:409.800000px;}
.ye7{bottom:410.400000px;}
.yce{bottom:410.550000px;}
.y88{bottom:411.750000px;}
.y5f{bottom:414.900000px;}
.y106{bottom:415.350000px;}
.yae{bottom:417.750000px;}
.y27{bottom:423.900000px;}
.y154{bottom:427.200000px;}
.ycd{bottom:427.800000px;}
.y87{bottom:429.150000px;}
.y5e{bottom:432.150000px;}
.y105{bottom:432.750000px;}
.yad{bottom:435.000000px;}
.y26{bottom:441.150000px;}
.y153{bottom:444.450000px;}
.ycc{bottom:445.200000px;}
.y86{bottom:446.400000px;}
.y5d{bottom:449.550000px;}
.yac{bottom:452.400000px;}
.y25{bottom:458.550000px;}
.yff{bottom:460.350000px;}
.y152{bottom:461.850000px;}
.ye6{bottom:462.450000px;}
.y85{bottom:463.800000px;}
.y5c{bottom:466.800000px;}
.y24{bottom:475.800000px;}
.yfe{bottom:477.750000px;}
.ye5{bottom:479.700000px;}
.ycb{bottom:479.850000px;}
.y151{bottom:480.300000px;}
.y84{bottom:481.050000px;}
.y5b{bottom:484.200000px;}
.yab{bottom:492.150000px;}
.y23{bottom:493.200000px;}
.yfd{bottom:495.000000px;}
.yca{bottom:497.100000px;}
.y150{bottom:497.700000px;}
.y83{bottom:498.450000px;}
.y5a{bottom:501.450000px;}
.y22{bottom:510.450000px;}
.yaa{bottom:511.950000px;}
.ye4{bottom:514.350000px;}
.yc9{bottom:514.500000px;}
.y14f{bottom:514.950000px;}
.y82{bottom:515.700000px;}
.y59{bottom:518.850000px;}
.y21{bottom:527.850000px;}
.yfc{bottom:529.650000px;}
.yc8{bottom:531.750000px;}
.ya9{bottom:531.900000px;}
.y14e{bottom:532.350000px;}
.y81{bottom:533.100000px;}
.y58{bottom:536.100000px;}
.y20{bottom:545.100000px;}
.yfb{bottom:547.050000px;}
.ye3{bottom:549.000000px;}
.yc7{bottom:549.150000px;}
.y14d{bottom:549.600000px;}
.y80{bottom:551.100000px;}
.ya8{bottom:551.700000px;}
.y57{bottom:553.500000px;}
.y1f{bottom:562.500000px;}
.yfa{bottom:564.300000px;}
.yc6{bottom:566.400000px;}
.y14c{bottom:567.000000px;}
.y7f{bottom:568.650000px;}
.y56{bottom:570.750000px;}
.ya7{bottom:571.650000px;}
.y1e{bottom:579.750000px;}
.yf9{bottom:581.700000px;}
.ye2{bottom:583.650000px;}
.yc5{bottom:583.800000px;}
.y14b{bottom:584.250000px;}
.y7e{bottom:586.050000px;}
.y55{bottom:588.150000px;}
.ya6{bottom:591.450000px;}
.y1d{bottom:597.150000px;}
.yf8{bottom:598.950000px;}
.yc4{bottom:601.050000px;}
.y14a{bottom:601.650000px;}
.y7d{bottom:603.300000px;}
.y54{bottom:605.400000px;}
.ya5{bottom:611.400000px;}
.y1c{bottom:614.400000px;}
.yf7{bottom:616.350000px;}
.ye1{bottom:618.300000px;}
.y149{bottom:618.900000px;}
.yc3{bottom:619.050000px;}
.y7c{bottom:620.700000px;}
.y53{bottom:622.800000px;}
.ya4{bottom:631.200000px;}
.y1b{bottom:631.800000px;}
.yf6{bottom:633.600000px;}
.ye0{bottom:635.700000px;}
.y148{bottom:636.300000px;}
.yc2{bottom:636.750000px;}
.y7b{bottom:637.950000px;}
.y52{bottom:640.050000px;}
.y1a{bottom:649.050000px;}
.yf5{bottom:651.000000px;}
.ydf{bottom:652.950000px;}
.y147{bottom:653.550000px;}
.yc1{bottom:654.000000px;}
.y7a{bottom:655.350000px;}
.y51{bottom:657.450000px;}
.y19{bottom:666.450000px;}
.yf4{bottom:668.250000px;}
.yde{bottom:670.350000px;}
.ya3{bottom:670.950000px;}
.yc0{bottom:671.400000px;}
.y79{bottom:672.600000px;}
.y50{bottom:674.700000px;}
.y12a{bottom:681.300000px;}
.y18{bottom:683.700000px;}
.yf3{bottom:685.650000px;}
.y146{bottom:688.200000px;}
.ydd{bottom:688.800000px;}
.y4f{bottom:692.100000px;}
.y17{bottom:701.100000px;}
.y129{bottom:701.250000px;}
.yf2{bottom:702.900000px;}
.ybf{bottom:705.600000px;}
.y78{bottom:707.250000px;}
.ydc{bottom:707.850000px;}
.y4e{bottom:709.350000px;}
.y16{bottom:718.350000px;}
.ya2{bottom:720.300000px;}
.y128{bottom:721.050000px;}
.y145{bottom:722.850000px;}
.y77{bottom:724.650000px;}
.ydb{bottom:725.100000px;}
.y4d{bottom:726.750000px;}
.y15{bottom:735.750000px;}
.ya1{bottom:736.500000px;}
.yf1{bottom:737.550000px;}
.y144{bottom:740.250000px;}
.y127{bottom:741.000000px;}
.y76{bottom:741.900000px;}
.yda{bottom:742.500000px;}
.y4c{bottom:744.000000px;}
.ya0{bottom:752.850000px;}
.y14{bottom:753.000000px;}
.yf0{bottom:754.950000px;}
.y143{bottom:757.500000px;}
.y75{bottom:759.300000px;}
.yd9{bottom:759.750000px;}
.y126{bottom:760.800000px;}
.y4b{bottom:761.400000px;}
.y9f{bottom:769.050000px;}
.yef{bottom:772.200000px;}
.y142{bottom:774.900000px;}
.y74{bottom:776.550000px;}
.yd8{bottom:777.150000px;}
.y125{bottom:778.200000px;}
.y4a{bottom:778.650000px;}
.y9e{bottom:785.400000px;}
.yee{bottom:789.600000px;}
.y141{bottom:792.150000px;}
.y13{bottom:792.750000px;}
.y73{bottom:793.950000px;}
.yd7{bottom:794.400000px;}
.y124{bottom:795.450000px;}
.y49{bottom:796.050000px;}
.y9d{bottom:801.600000px;}
.y140{bottom:809.550000px;}
.y72{bottom:811.200000px;}
.yd6{bottom:811.800000px;}
.y123{bottom:812.850000px;}
.y48{bottom:813.300000px;}
.y9c{bottom:817.950000px;}
.y13f{bottom:826.800000px;}
.y71{bottom:828.600000px;}
.yd5{bottom:829.050000px;}
.y122{bottom:830.100000px;}
.y47{bottom:830.700000px;}
.y9b{bottom:834.150000px;}
.y13e{bottom:844.200000px;}
.y70{bottom:845.850000px;}
.y12{bottom:846.900000px;}
.y121{bottom:847.500000px;}
.y46{bottom:847.950000px;}
.y9a{bottom:850.500000px;}
.y13d{bottom:861.450000px;}
.y6f{bottom:863.250000px;}
.y11{bottom:864.750000px;}
.y45{bottom:865.350000px;}
.y99{bottom:865.950000px;}
.y13c{bottom:878.850000px;}
.y6e{bottom:880.500000px;}
.y120{bottom:882.150000px;}
.y10{bottom:882.600000px;}
.y13b{bottom:896.100000px;}
.y6d{bottom:897.900000px;}
.y11f{bottom:899.400000px;}
.y44{bottom:900.000000px;}
.yf{bottom:900.450000px;}
.y13a{bottom:913.500000px;}
.y11e{bottom:916.800000px;}
.y43{bottom:917.250000px;}
.ye{bottom:918.300000px;}
.y139{bottom:930.750000px;}
.y11d{bottom:934.050000px;}
.y42{bottom:934.650000px;}
.yd{bottom:936.150000px;}
.y138{bottom:948.150000px;}
.y11c{bottom:951.450000px;}
.y41{bottom:951.900000px;}
.yc{bottom:954.000000px;}
.y11b{bottom:968.700000px;}
.y40{bottom:969.300000px;}
.yb{bottom:971.850000px;}
.y11a{bottom:986.100000px;}
.y3f{bottom:986.550000px;}
.ya{bottom:989.700000px;}
.y137{bottom:1000.050000px;}
.y119{bottom:1003.350000px;}
.y3e{bottom:1003.950000px;}
.y9{bottom:1007.550000px;}
.y3d{bottom:1021.200000px;}
.y118{bottom:1023.300000px;}
.y8{bottom:1027.650000px;}
.y3c{bottom:1038.600000px;}
.y117{bottom:1043.100000px;}
.y7{bottom:1053.900000px;}
.y3b{bottom:1055.850000px;}
.y116{bottom:1063.050000px;}
.y6c{bottom:1073.250000px;}
.y115{bottom:1082.850000px;}
.y6{bottom:1084.350000px;}
.y3a{bottom:1090.500000px;}
.y114{bottom:1102.800000px;}
.y39{bottom:1107.900000px;}
.y5{bottom:1122.600000px;}
.y38{bottom:1125.150000px;}
.y4{bottom:1142.550000px;}
.y3{bottom:1181.550000px;}
.y2{bottom:1197.150000px;}
.h6{height:21.145313px;}
.h3{height:36.597656px;}
.h4{height:40.664062px;}
.h2{height:42.145313px;}
.h5{height:42.745313px;}
.h8{height:45.061523px;}
.h7{height:45.117188px;}
.h9{height:50.068359px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:106.500000px;}
.xf{left:113.250000px;}
.xc{left:123.750000px;}
.xe{left:127.800000px;}
.xa{left:132.000000px;}
.x9{left:133.500000px;}
.x1{left:156.900000px;}
.x8{left:159.600000px;}
.xb{left:171.300000px;}
.x2{left:193.800000px;}
.xd{left:199.050000px;}
.x5{left:245.700000px;}
.x4{left:277.350000px;}
.x6{left:369.900000px;}
.x3{left:393.600000px;}
.x10{left:401.250000px;}
@media print{
.v2{vertical-align:-18.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls2{letter-spacing:4.341333pt;}
.ls3{letter-spacing:8.000000pt;}
.ls4{letter-spacing:163.786667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:-6.933333pt;}
.ws6{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:1028.560000pt;}
._17{margin-left:-6.938667pt;}
._3{margin-left:-5.120000pt;}
._d{margin-left:-4.054400pt;}
._0{margin-left:-3.049600pt;}
._1{margin-left:-1.536000pt;}
._2{width:0.905600pt;}
._f{width:1.796267pt;}
._6{width:2.688000pt;}
._5{width:3.888000pt;}
._4{width:4.800000pt;}
._c{width:5.866667pt;}
._b{width:6.869333pt;}
._7{width:8.000000pt;}
._8{width:8.969600pt;}
._e{width:10.317867pt;}
._9{width:11.253333pt;}
._a{width:12.373333pt;}
._11{width:60.000000pt;}
._16{width:205.829333pt;}
._12{width:236.069333pt;}
._14{width:392.021333pt;}
._10{width:423.989333pt;}
._13{width:437.621333pt;}
._15{width:479.909333pt;}
.fs1{font-size:27.733333pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y37{bottom:100.133333pt;}
.y166{bottom:102.533333pt;}
.y113{bottom:102.933333pt;}
.y98{bottom:104.266667pt;}
.y104{bottom:107.733333pt;}
.ybe{bottom:109.466667pt;}
.y36{bottom:115.600000pt;}
.y165{bottom:117.866667pt;}
.y136{bottom:118.000000pt;}
.y97{bottom:119.600000pt;}
.y103{bottom:123.066667pt;}
.y6b{bottom:124.400000pt;}
.ybd{bottom:124.933333pt;}
.y35{bottom:130.933333pt;}
.y164{bottom:133.333333pt;}
.y96{bottom:135.066667pt;}
.y135{bottom:135.600000pt;}
.y102{bottom:138.533333pt;}
.y6a{bottom:139.866667pt;}
.ybc{bottom:140.266667pt;}
.y34{bottom:146.400000pt;}
.y163{bottom:148.666667pt;}
.y95{bottom:150.400000pt;}
.y134{bottom:153.333333pt;}
.y112{bottom:153.600000pt;}
.y101{bottom:153.866667pt;}
.y69{bottom:155.200000pt;}
.ybb{bottom:155.733333pt;}
.y33{bottom:161.733333pt;}
.y162{bottom:164.133333pt;}
.y94{bottom:165.866667pt;}
.y111{bottom:169.066667pt;}
.y100{bottom:169.333333pt;}
.y68{bottom:170.666667pt;}
.y133{bottom:170.933333pt;}
.yba{bottom:171.066667pt;}
.y161{bottom:179.466667pt;}
.y93{bottom:181.200000pt;}
.y110{bottom:184.400000pt;}
.y67{bottom:186.000000pt;}
.yb9{bottom:186.533333pt;}
.y132{bottom:188.666667pt;}
.y32{bottom:189.466667pt;}
.y160{bottom:194.933333pt;}
.y92{bottom:196.666667pt;}
.y10f{bottom:199.866667pt;}
.y66{bottom:201.466667pt;}
.yb8{bottom:201.866667pt;}
.y31{bottom:204.800000pt;}
.y131{bottom:206.266667pt;}
.y15f{bottom:210.266667pt;}
.y10e{bottom:215.200000pt;}
.y65{bottom:216.800000pt;}
.yb7{bottom:217.333333pt;}
.y30{bottom:220.266667pt;}
.y130{bottom:224.000000pt;}
.y15e{bottom:225.733333pt;}
.yed{bottom:226.266667pt;}
.y91{bottom:227.466667pt;}
.y10d{bottom:230.666667pt;}
.yb6{bottom:232.666667pt;}
.y2f{bottom:235.600000pt;}
.y15d{bottom:241.066667pt;}
.yec{bottom:241.600000pt;}
.y90{bottom:242.800000pt;}
.y64{bottom:247.600000pt;}
.yb5{bottom:248.133333pt;}
.y2e{bottom:251.066667pt;}
.y15c{bottom:256.533333pt;}
.yeb{bottom:257.066667pt;}
.y8f{bottom:258.266667pt;}
.y12f{bottom:259.333333pt;}
.y10c{bottom:261.466667pt;}
.y63{bottom:263.066667pt;}
.yb4{bottom:263.466667pt;}
.y2d{bottom:266.400000pt;}
.y15b{bottom:271.866667pt;}
.yea{bottom:272.400000pt;}
.yd4{bottom:272.533333pt;}
.y8e{bottom:273.600000pt;}
.y10b{bottom:276.800000pt;}
.y12e{bottom:276.933333pt;}
.y62{bottom:278.400000pt;}
.y2c{bottom:281.866667pt;}
.y15a{bottom:287.333333pt;}
.yd3{bottom:287.866667pt;}
.y8d{bottom:289.066667pt;}
.y10a{bottom:292.266667pt;}
.y61{bottom:293.866667pt;}
.yb3{bottom:294.266667pt;}
.y12d{bottom:294.666667pt;}
.y159{bottom:302.666667pt;}
.ye9{bottom:303.200000pt;}
.yd2{bottom:303.333333pt;}
.y8c{bottom:304.400000pt;}
.y109{bottom:307.600000pt;}
.yb2{bottom:309.733333pt;}
.y12c{bottom:312.266667pt;}
.y2b{bottom:315.200000pt;}
.y158{bottom:318.133333pt;}
.yd1{bottom:318.666667pt;}
.y8b{bottom:319.866667pt;}
.y60{bottom:322.533333pt;}
.y108{bottom:323.066667pt;}
.yb1{bottom:325.066667pt;}
.y12b{bottom:330.000000pt;}
.y2a{bottom:330.533333pt;}
.y157{bottom:333.466667pt;}
.ye8{bottom:334.000000pt;}
.yd0{bottom:334.133333pt;}
.y8a{bottom:335.200000pt;}
.yb0{bottom:340.533333pt;}
.y29{bottom:346.000000pt;}
.y156{bottom:348.933333pt;}
.ycf{bottom:349.466667pt;}
.y89{bottom:350.666667pt;}
.y107{bottom:353.866667pt;}
.yaf{bottom:355.866667pt;}
.y28{bottom:361.333333pt;}
.y155{bottom:364.266667pt;}
.ye7{bottom:364.800000pt;}
.yce{bottom:364.933333pt;}
.y88{bottom:366.000000pt;}
.y5f{bottom:368.800000pt;}
.y106{bottom:369.200000pt;}
.yae{bottom:371.333333pt;}
.y27{bottom:376.800000pt;}
.y154{bottom:379.733333pt;}
.ycd{bottom:380.266667pt;}
.y87{bottom:381.466667pt;}
.y5e{bottom:384.133333pt;}
.y105{bottom:384.666667pt;}
.yad{bottom:386.666667pt;}
.y26{bottom:392.133333pt;}
.y153{bottom:395.066667pt;}
.ycc{bottom:395.733333pt;}
.y86{bottom:396.800000pt;}
.y5d{bottom:399.600000pt;}
.yac{bottom:402.133333pt;}
.y25{bottom:407.600000pt;}
.yff{bottom:409.200000pt;}
.y152{bottom:410.533333pt;}
.ye6{bottom:411.066667pt;}
.y85{bottom:412.266667pt;}
.y5c{bottom:414.933333pt;}
.y24{bottom:422.933333pt;}
.yfe{bottom:424.666667pt;}
.ye5{bottom:426.400000pt;}
.ycb{bottom:426.533333pt;}
.y151{bottom:426.933333pt;}
.y84{bottom:427.600000pt;}
.y5b{bottom:430.400000pt;}
.yab{bottom:437.466667pt;}
.y23{bottom:438.400000pt;}
.yfd{bottom:440.000000pt;}
.yca{bottom:441.866667pt;}
.y150{bottom:442.400000pt;}
.y83{bottom:443.066667pt;}
.y5a{bottom:445.733333pt;}
.y22{bottom:453.733333pt;}
.yaa{bottom:455.066667pt;}
.ye4{bottom:457.200000pt;}
.yc9{bottom:457.333333pt;}
.y14f{bottom:457.733333pt;}
.y82{bottom:458.400000pt;}
.y59{bottom:461.200000pt;}
.y21{bottom:469.200000pt;}
.yfc{bottom:470.800000pt;}
.yc8{bottom:472.666667pt;}
.ya9{bottom:472.800000pt;}
.y14e{bottom:473.200000pt;}
.y81{bottom:473.866667pt;}
.y58{bottom:476.533333pt;}
.y20{bottom:484.533333pt;}
.yfb{bottom:486.266667pt;}
.ye3{bottom:488.000000pt;}
.yc7{bottom:488.133333pt;}
.y14d{bottom:488.533333pt;}
.y80{bottom:489.866667pt;}
.ya8{bottom:490.400000pt;}
.y57{bottom:492.000000pt;}
.y1f{bottom:500.000000pt;}
.yfa{bottom:501.600000pt;}
.yc6{bottom:503.466667pt;}
.y14c{bottom:504.000000pt;}
.y7f{bottom:505.466667pt;}
.y56{bottom:507.333333pt;}
.ya7{bottom:508.133333pt;}
.y1e{bottom:515.333333pt;}
.yf9{bottom:517.066667pt;}
.ye2{bottom:518.800000pt;}
.yc5{bottom:518.933333pt;}
.y14b{bottom:519.333333pt;}
.y7e{bottom:520.933333pt;}
.y55{bottom:522.800000pt;}
.ya6{bottom:525.733333pt;}
.y1d{bottom:530.800000pt;}
.yf8{bottom:532.400000pt;}
.yc4{bottom:534.266667pt;}
.y14a{bottom:534.800000pt;}
.y7d{bottom:536.266667pt;}
.y54{bottom:538.133333pt;}
.ya5{bottom:543.466667pt;}
.y1c{bottom:546.133333pt;}
.yf7{bottom:547.866667pt;}
.ye1{bottom:549.600000pt;}
.y149{bottom:550.133333pt;}
.yc3{bottom:550.266667pt;}
.y7c{bottom:551.733333pt;}
.y53{bottom:553.600000pt;}
.ya4{bottom:561.066667pt;}
.y1b{bottom:561.600000pt;}
.yf6{bottom:563.200000pt;}
.ye0{bottom:565.066667pt;}
.y148{bottom:565.600000pt;}
.yc2{bottom:566.000000pt;}
.y7b{bottom:567.066667pt;}
.y52{bottom:568.933333pt;}
.y1a{bottom:576.933333pt;}
.yf5{bottom:578.666667pt;}
.ydf{bottom:580.400000pt;}
.y147{bottom:580.933333pt;}
.yc1{bottom:581.333333pt;}
.y7a{bottom:582.533333pt;}
.y51{bottom:584.400000pt;}
.y19{bottom:592.400000pt;}
.yf4{bottom:594.000000pt;}
.yde{bottom:595.866667pt;}
.ya3{bottom:596.400000pt;}
.yc0{bottom:596.800000pt;}
.y79{bottom:597.866667pt;}
.y50{bottom:599.733333pt;}
.y12a{bottom:605.600000pt;}
.y18{bottom:607.733333pt;}
.yf3{bottom:609.466667pt;}
.y146{bottom:611.733333pt;}
.ydd{bottom:612.266667pt;}
.y4f{bottom:615.200000pt;}
.y17{bottom:623.200000pt;}
.y129{bottom:623.333333pt;}
.yf2{bottom:624.800000pt;}
.ybf{bottom:627.200000pt;}
.y78{bottom:628.666667pt;}
.ydc{bottom:629.200000pt;}
.y4e{bottom:630.533333pt;}
.y16{bottom:638.533333pt;}
.ya2{bottom:640.266667pt;}
.y128{bottom:640.933333pt;}
.y145{bottom:642.533333pt;}
.y77{bottom:644.133333pt;}
.ydb{bottom:644.533333pt;}
.y4d{bottom:646.000000pt;}
.y15{bottom:654.000000pt;}
.ya1{bottom:654.666667pt;}
.yf1{bottom:655.600000pt;}
.y144{bottom:658.000000pt;}
.y127{bottom:658.666667pt;}
.y76{bottom:659.466667pt;}
.yda{bottom:660.000000pt;}
.y4c{bottom:661.333333pt;}
.ya0{bottom:669.200000pt;}
.y14{bottom:669.333333pt;}
.yf0{bottom:671.066667pt;}
.y143{bottom:673.333333pt;}
.y75{bottom:674.933333pt;}
.yd9{bottom:675.333333pt;}
.y126{bottom:676.266667pt;}
.y4b{bottom:676.800000pt;}
.y9f{bottom:683.600000pt;}
.yef{bottom:686.400000pt;}
.y142{bottom:688.800000pt;}
.y74{bottom:690.266667pt;}
.yd8{bottom:690.800000pt;}
.y125{bottom:691.733333pt;}
.y4a{bottom:692.133333pt;}
.y9e{bottom:698.133333pt;}
.yee{bottom:701.866667pt;}
.y141{bottom:704.133333pt;}
.y13{bottom:704.666667pt;}
.y73{bottom:705.733333pt;}
.yd7{bottom:706.133333pt;}
.y124{bottom:707.066667pt;}
.y49{bottom:707.600000pt;}
.y9d{bottom:712.533333pt;}
.y140{bottom:719.600000pt;}
.y72{bottom:721.066667pt;}
.yd6{bottom:721.600000pt;}
.y123{bottom:722.533333pt;}
.y48{bottom:722.933333pt;}
.y9c{bottom:727.066667pt;}
.y13f{bottom:734.933333pt;}
.y71{bottom:736.533333pt;}
.yd5{bottom:736.933333pt;}
.y122{bottom:737.866667pt;}
.y47{bottom:738.400000pt;}
.y9b{bottom:741.466667pt;}
.y13e{bottom:750.400000pt;}
.y70{bottom:751.866667pt;}
.y12{bottom:752.800000pt;}
.y121{bottom:753.333333pt;}
.y46{bottom:753.733333pt;}
.y9a{bottom:756.000000pt;}
.y13d{bottom:765.733333pt;}
.y6f{bottom:767.333333pt;}
.y11{bottom:768.666667pt;}
.y45{bottom:769.200000pt;}
.y99{bottom:769.733333pt;}
.y13c{bottom:781.200000pt;}
.y6e{bottom:782.666667pt;}
.y120{bottom:784.133333pt;}
.y10{bottom:784.533333pt;}
.y13b{bottom:796.533333pt;}
.y6d{bottom:798.133333pt;}
.y11f{bottom:799.466667pt;}
.y44{bottom:800.000000pt;}
.yf{bottom:800.400000pt;}
.y13a{bottom:812.000000pt;}
.y11e{bottom:814.933333pt;}
.y43{bottom:815.333333pt;}
.ye{bottom:816.266667pt;}
.y139{bottom:827.333333pt;}
.y11d{bottom:830.266667pt;}
.y42{bottom:830.800000pt;}
.yd{bottom:832.133333pt;}
.y138{bottom:842.800000pt;}
.y11c{bottom:845.733333pt;}
.y41{bottom:846.133333pt;}
.yc{bottom:848.000000pt;}
.y11b{bottom:861.066667pt;}
.y40{bottom:861.600000pt;}
.yb{bottom:863.866667pt;}
.y11a{bottom:876.533333pt;}
.y3f{bottom:876.933333pt;}
.ya{bottom:879.733333pt;}
.y137{bottom:888.933333pt;}
.y119{bottom:891.866667pt;}
.y3e{bottom:892.400000pt;}
.y9{bottom:895.600000pt;}
.y3d{bottom:907.733333pt;}
.y118{bottom:909.600000pt;}
.y8{bottom:913.466667pt;}
.y3c{bottom:923.200000pt;}
.y117{bottom:927.200000pt;}
.y7{bottom:936.800000pt;}
.y3b{bottom:938.533333pt;}
.y116{bottom:944.933333pt;}
.y6c{bottom:954.000000pt;}
.y115{bottom:962.533333pt;}
.y6{bottom:963.866667pt;}
.y3a{bottom:969.333333pt;}
.y114{bottom:980.266667pt;}
.y39{bottom:984.800000pt;}
.y5{bottom:997.866667pt;}
.y38{bottom:1000.133333pt;}
.y4{bottom:1015.600000pt;}
.y3{bottom:1050.266667pt;}
.y2{bottom:1064.133333pt;}
.h6{height:18.795833pt;}
.h3{height:32.531250pt;}
.h4{height:36.145833pt;}
.h2{height:37.462500pt;}
.h5{height:37.995833pt;}
.h8{height:40.054688pt;}
.h7{height:40.104167pt;}
.h9{height:44.505208pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:94.666667pt;}
.xf{left:100.666667pt;}
.xc{left:110.000000pt;}
.xe{left:113.600000pt;}
.xa{left:117.333333pt;}
.x9{left:118.666667pt;}
.x1{left:139.466667pt;}
.x8{left:141.866667pt;}
.xb{left:152.266667pt;}
.x2{left:172.266667pt;}
.xd{left:176.933333pt;}
.x5{left:218.400000pt;}
.x4{left:246.533333pt;}
.x6{left:328.800000pt;}
.x3{left:349.866667pt;}
.x10{left:356.666667pt;}
}




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