
    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_efd23da98b84b68698196ee0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_99da6e729c89859fa6a089cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_45f11d1ac754591f591d71dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.892578;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_75b473fa63d008753c3551ea.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2861e3460ae0866829cade1e.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_c29b283cce73a020c4e5ea68.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.693359;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_e998a10f05e2dccfe6d0d4f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901855;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_823a5162bdbf1d1446f2c9ba.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4adb00903e1a3fd708e431c7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8b40c220e9fa07fdc8c3882d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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:ffb;src:url('chunks/assets/font_9633ef952f80ff0133d9cb03.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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:ffc;src:url('chunks/assets/font_af11d34eaf3a02e463e04d03.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.939941;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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-1.176000px;}
.lsf{letter-spacing:-1.134000px;}
.ls9{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.612000px;}
.ls14{letter-spacing:-0.457800px;}
.lsa{letter-spacing:-0.414600px;}
.lse{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.109200px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.109200px;}
.ls7{letter-spacing:0.109440px;}
.lsb{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.178560px;}
.ls3{letter-spacing:0.178800px;}
.ls1b{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.262200px;}
.ls4{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.457800px;}
.ls13{letter-spacing:0.720000px;}
.ls15{letter-spacing:1.440000px;}
.ls1a{letter-spacing:2.160000px;}
.ls1c{letter-spacing:3.600000px;}
.ls17{letter-spacing:4.320000px;}
.ls5{letter-spacing:6.480000px;}
.ls18{letter-spacing:7.920000px;}
.ls19{letter-spacing:10.800000px;}
.ls16{letter-spacing:16.560000px;}
.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;}
}
.ws11{word-spacing:-66.240000px;}
.wse{word-spacing:-17.280000px;}
.wsc{word-spacing:-17.017800px;}
.ws8{word-spacing:-16.865400px;}
.ws6{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.712400px;}
.ws4{word-spacing:-16.669200px;}
.ws1{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.450800px;}
.wsb{word-spacing:-16.145400px;}
.wsf{word-spacing:-16.102200px;}
.ws9{word-spacing:-15.948000px;}
.ws10{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.426000px;}
.ws5{word-spacing:-15.384000px;}
.ws2{word-spacing:-13.500000px;}
.ws0{word-spacing:-10.440000px;}
.ws3{word-spacing:0.000000px;}
._5{margin-left:-2864.103957px;}
._a{margin-left:-2739.147510px;}
._9{margin-left:-2710.889711px;}
._1{margin-left:-2441.717032px;}
._b{margin-left:-2052.880354px;}
._6{margin-left:-1940.508514px;}
._2{margin-left:-1909.713435px;}
._7{margin-left:-1895.123355px;}
._8{margin-left:-1830.149794px;}
._c{margin-left:-1645.744395px;}
._1d{margin-left:-2.364728px;}
._0{margin-left:-1.285241px;}
._f{width:1.045324px;}
._14{width:2.572485px;}
._11{width:3.622080px;}
._12{width:4.790400px;}
._d{width:5.895360px;}
._3{width:7.380960px;}
._15{width:9.259961px;}
._4{width:10.824066px;}
._10{width:12.004403px;}
._e{width:13.248000px;}
._19{width:14.374080px;}
._17{width:15.483443px;}
._1c{width:18.293644px;}
._13{width:19.342080px;}
._16{width:21.329280px;}
._18{width:22.630841px;}
._20{width:23.651156px;}
._1b{width:24.875801px;}
._1a{width:26.334720px;}
._1f{width:28.143874px;}
._1e{width:29.675520px;}
.fc4{color:rgb(84,141,212);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc7{color:rgb(64,49,82);}
.fc6{color:rgb(35,31,32);}
.fc5{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ye9{bottom:112.176000px;}
.ya6{bottom:116.856000px;}
.y8b{bottom:118.296000px;}
.y5f{bottom:125.856000px;}
.y7c{bottom:128.736000px;}
.yfd{bottom:131.796000px;}
.ycf{bottom:135.216000px;}
.y46{bottom:136.296000px;}
.ye8{bottom:140.796000px;}
.y11c{bottom:144.756000px;}
.ya5{bottom:145.296000px;}
.y1c{bottom:146.556000px;}
.y5e{bottom:154.290000px;}
.y7b{bottom:157.170000px;}
.y45{bottom:164.730000px;}
.yf9{bottom:169.230000px;}
.yce{bottom:172.650000px;}
.ya4{bottom:173.730000px;}
.ye7{bottom:178.230000px;}
.y11b{bottom:178.590000px;}
.y5d{bottom:182.730000px;}
.y1b{bottom:183.990000px;}
.y44{bottom:193.170000px;}
.y7a{bottom:194.790000px;}
.yf8{bottom:197.670000px;}
.ya3{bottom:202.170000px;}
.ye6{bottom:206.670000px;}
.ycd{bottom:210.090000px;}
.y5c{bottom:211.170000px;}
.y11a{bottom:212.610000px;}
.y1a{bottom:221.430000px;}
.y43{bottom:221.790000px;}
.y79{bottom:223.230000px;}
.yf7{bottom:226.110000px;}
.ya2{bottom:230.790000px;}
.ye5{bottom:235.110000px;}
.ycc{bottom:238.530000px;}
.y5b{bottom:239.790000px;}
.y119{bottom:246.630000px;}
.y42{bottom:250.230000px;}
.y78{bottom:251.670000px;}
.y19{bottom:258.870000px;}
.ya1{bottom:259.230000px;}
.yf6{bottom:263.550000px;}
.ycb{bottom:266.970000px;}
.y5a{bottom:268.230000px;}
.ye4{bottom:272.550000px;}
.yad{bottom:277.230000px;}
.y41{bottom:278.670000px;}
.y77{bottom:280.110000px;}
.y118{bottom:280.650000px;}
.ya0{bottom:287.670000px;}
.y8a{bottom:289.110000px;}
.yf5{bottom:291.990000px;}
.yca{bottom:295.590000px;}
.y18{bottom:296.310000px;}
.y59{bottom:296.670000px;}
.ye3{bottom:300.990000px;}
.yac{bottom:305.670000px;}
.y40{bottom:307.110000px;}
.y76{bottom:308.550000px;}
.y117{bottom:314.490000px;}
.y9f{bottom:316.110000px;}
.y89{bottom:317.550000px;}
.y58{bottom:325.110000px;}
.ye2{bottom:329.475000px;}
.yc9{bottom:333.075000px;}
.y17{bottom:333.975000px;}
.yab{bottom:334.155000px;}
.y3f{bottom:335.595000px;}
.y75{bottom:337.035000px;}
.y103{bottom:338.475000px;}
.y88{bottom:346.035000px;}
.y116{bottom:348.555000px;}
.y57{bottom:353.595000px;}
.yf4{bottom:357.915000px;}
.yaa{bottom:362.595000px;}
.y3e{bottom:364.035000px;}
.y74{bottom:365.475000px;}
.ye1{bottom:366.915000px;}
.yc8{bottom:370.515000px;}
.y16{bottom:371.415000px;}
.y87{bottom:374.475000px;}
.y9e{bottom:382.035000px;}
.y115{bottom:382.575000px;}
.y56{bottom:391.035000px;}
.y3d{bottom:392.475000px;}
.y73{bottom:393.915000px;}
.ye0{bottom:395.355000px;}
.yc7{bottom:398.955000px;}
.y102{bottom:404.355000px;}
.y15{bottom:408.855000px;}
.y9d{bottom:410.475000px;}
.y86{bottom:411.915000px;}
.y114{bottom:416.415000px;}
.y55{bottom:419.475000px;}
.y3c{bottom:420.915000px;}
.yf3{bottom:423.975000px;}
.yc6{bottom:427.395000px;}
.y72{bottom:430.995000px;}
.ydf{bottom:432.975000px;}
.y9c{bottom:438.915000px;}
.y85{bottom:440.355000px;}
.y14{bottom:446.295000px;}
.y54{bottom:447.915000px;}
.y113{bottom:450.435000px;}
.yfc{bottom:452.415000px;}
.y3b{bottom:458.355000px;}
.yde{bottom:461.415000px;}
.yc5{bottom:464.835000px;}
.y9b{bottom:467.355000px;}
.y71{bottom:468.975000px;}
.y101{bottom:470.415000px;}
.y53{bottom:476.355000px;}
.y13{bottom:483.735000px;}
.y112{bottom:484.455000px;}
.y3a{bottom:486.975000px;}
.yf2{bottom:489.855000px;}
.yc4{bottom:493.275000px;}
.y9a{bottom:495.975000px;}
.y70{bottom:497.415000px;}
.ydd{bottom:498.855000px;}
.y52{bottom:504.975000px;}
.y39{bottom:515.415000px;}
.yfb{bottom:518.295000px;}
.y111{bottom:518.475000px;}
.y12{bottom:521.175000px;}
.yc3{bottom:521.715000px;}
.y99{bottom:524.415000px;}
.y6f{bottom:525.855000px;}
.ydc{bottom:527.295000px;}
.y51{bottom:533.415000px;}
.y100{bottom:536.295000px;}
.y38{bottom:543.855000px;}
.yc2{bottom:550.155000px;}
.y110{bottom:552.315000px;}
.y98{bottom:552.855000px;}
.y6e{bottom:554.295000px;}
.yf1{bottom:555.735000px;}
.y11{bottom:558.615000px;}
.y50{bottom:561.855000px;}
.ydb{bottom:564.735000px;}
.y37{bottom:572.295000px;}
.yc1{bottom:578.775000px;}
.y97{bottom:581.295000px;}
.y6d{bottom:582.735000px;}
.yf0{bottom:583.815000px;}
.yfa{bottom:584.175000px;}
.y10f{bottom:586.335000px;}
.y4f{bottom:590.295000px;}
.yda{bottom:593.175000px;}
.y10{bottom:596.085000px;}
.y36{bottom:600.765000px;}
.yc0{bottom:607.245000px;}
.y96{bottom:609.765000px;}
.y6c{bottom:611.205000px;}
.y4e{bottom:618.765000px;}
.y10e{bottom:620.385000px;}
.yd9{bottom:621.645000px;}
.y35{bottom:629.205000px;}
.yf{bottom:633.525000px;}
.y95{bottom:638.205000px;}
.ybf{bottom:644.685000px;}
.y4d{bottom:647.205000px;}
.y6b{bottom:648.285000px;}
.yef{bottom:650.085000px;}
.y10d{bottom:654.405000px;}
.yd8{bottom:659.085000px;}
.y34{bottom:666.285000px;}
.y94{bottom:666.645000px;}
.ye{bottom:671.145000px;}
.ybe{bottom:673.125000px;}
.y4c{bottom:675.645000px;}
.y6a{bottom:686.085000px;}
.yd7{bottom:687.525000px;}
.y10c{bottom:688.245000px;}
.y93{bottom:695.085000px;}
.ybd{bottom:701.565000px;}
.y33{bottom:704.085000px;}
.yd{bottom:708.585000px;}
.y69{bottom:714.525000px;}
.yee{bottom:716.145000px;}
.y10b{bottom:722.265000px;}
.y92{bottom:723.525000px;}
.yd6{bottom:725.145000px;}
.ybc{bottom:730.005000px;}
.y32{bottom:732.525000px;}
.y68{bottom:743.145000px;}
.yc{bottom:746.025000px;}
.y91{bottom:752.145000px;}
.yd5{bottom:753.585000px;}
.y10a{bottom:756.285000px;}
.ybb{bottom:758.445000px;}
.y31{bottom:761.145000px;}
.y67{bottom:771.585000px;}
.y90{bottom:780.585000px;}
.yed{bottom:782.025000px;}
.yb{bottom:783.465000px;}
.yba{bottom:786.885000px;}
.y30{bottom:789.585000px;}
.y109{bottom:790.305000px;}
.yd4{bottom:791.025000px;}
.y66{bottom:800.025000px;}
.y8f{bottom:809.025000px;}
.yec{bottom:810.465000px;}
.yb9{bottom:815.325000px;}
.y2f{bottom:818.025000px;}
.yd3{bottom:819.465000px;}
.ya{bottom:820.905000px;}
.y108{bottom:824.145000px;}
.y65{bottom:828.465000px;}
.y8e{bottom:837.465000px;}
.yb8{bottom:843.945000px;}
.y2e{bottom:846.465000px;}
.yd2{bottom:847.905000px;}
.y9{bottom:849.345000px;}
.ya9{bottom:855.465000px;}
.y84{bottom:856.905000px;}
.y107{bottom:858.165000px;}
.y64{bottom:865.590000px;}
.y8d{bottom:865.950000px;}
.yb7{bottom:872.430000px;}
.y2d{bottom:874.950000px;}
.yeb{bottom:876.390000px;}
.y8{bottom:877.830000px;}
.ya8{bottom:883.950000px;}
.y83{bottom:885.390000px;}
.y106{bottom:892.230000px;}
.y8c{bottom:894.390000px;}
.y63{bottom:903.030000px;}
.y2c{bottom:903.390000px;}
.yff{bottom:904.830000px;}
.yb6{bottom:909.870000px;}
.ya7{bottom:912.390000px;}
.yd1{bottom:913.830000px;}
.y7{bottom:915.270000px;}
.y82{bottom:922.830000px;}
.y105{bottom:926.250000px;}
.y2b{bottom:931.830000px;}
.yb5{bottom:938.310000px;}
.y62{bottom:940.830000px;}
.yd0{bottom:942.270000px;}
.y81{bottom:951.270000px;}
.y6{bottom:952.710000px;}
.y104{bottom:960.090000px;}
.y2a{bottom:960.270000px;}
.yb4{bottom:966.750000px;}
.y61{bottom:969.270000px;}
.yea{bottom:970.350000px;}
.yfe{bottom:970.710000px;}
.y80{bottom:979.710000px;}
.y29{bottom:988.710000px;}
.yb3{bottom:995.190000px;}
.y5{bottom:996.270000px;}
.y60{bottom:997.710000px;}
.y7f{bottom:1008.330000px;}
.y28{bottom:1017.330000px;}
.yb2{bottom:1023.630000px;}
.y4b{bottom:1026.330000px;}
.y4{bottom:1027.770000px;}
.y7e{bottom:1036.770000px;}
.y27{bottom:1045.770000px;}
.yb1{bottom:1052.070000px;}
.y4a{bottom:1054.770000px;}
.y3{bottom:1062.150000px;}
.y7d{bottom:1073.850000px;}
.y26{bottom:1074.210000px;}
.yb0{bottom:1080.510000px;}
.y49{bottom:1083.210000px;}
.y2{bottom:1093.650000px;}
.y25{bottom:1102.650000px;}
.yaf{bottom:1109.130000px;}
.y48{bottom:1111.650000px;}
.y1{bottom:1131.120000px;}
.yae{bottom:1138.680000px;}
.y24{bottom:1139.760000px;}
.y47{bottom:1140.120000px;}
.y21{bottom:1168.432500px;}
.y23{bottom:1172.520000px;}
.y20{bottom:1184.632500px;}
.y22{bottom:1193.580000px;}
.y1f{bottom:1200.832500px;}
.y1e{bottom:1217.032500px;}
.y1d{bottom:1233.232500px;}
.h6{height:37.494141px;}
.h4{height:41.250937px;}
.h5{height:49.605469px;}
.h7{height:50.273438px;}
.h8{height:59.383125px;}
.h9{height:64.978594px;}
.h3{height:65.010937px;}
.h2{height:66.757500px;}
.ha{height:70.664062px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:53.999973px;}
.x3{left:63.000000px;}
.x2{left:72.000000px;}
.x6{left:80.999987px;}
.x4{left:92.247000px;}
.x1{left:108.036000px;}
.x8{left:766.589987px;}
.x5{left:775.589987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-1.045333pt;}
.lsf{letter-spacing:-1.008000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls14{letter-spacing:-0.406933pt;}
.lsa{letter-spacing:-0.368533pt;}
.lse{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.097067pt;}
.ls7{letter-spacing:0.097280pt;}
.lsb{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.158720pt;}
.ls3{letter-spacing:0.158933pt;}
.ls1b{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.233067pt;}
.ls4{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.406933pt;}
.ls13{letter-spacing:0.640000pt;}
.ls15{letter-spacing:1.280000pt;}
.ls1a{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:3.200000pt;}
.ls17{letter-spacing:3.840000pt;}
.ls5{letter-spacing:5.760000pt;}
.ls18{letter-spacing:7.040000pt;}
.ls19{letter-spacing:9.600000pt;}
.ls16{letter-spacing:14.720000pt;}
.ws11{word-spacing:-58.880000pt;}
.wse{word-spacing:-15.360000pt;}
.wsc{word-spacing:-15.126933pt;}
.ws8{word-spacing:-14.991467pt;}
.ws6{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.855467pt;}
.ws4{word-spacing:-14.817067pt;}
.ws1{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.622933pt;}
.wsb{word-spacing:-14.351467pt;}
.wsf{word-spacing:-14.313067pt;}
.ws9{word-spacing:-14.176000pt;}
.ws10{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.712000pt;}
.ws5{word-spacing:-13.674667pt;}
.ws2{word-spacing:-12.000000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws3{word-spacing:0.000000pt;}
._5{margin-left:-2545.870184pt;}
._a{margin-left:-2434.797786pt;}
._9{margin-left:-2409.679743pt;}
._1{margin-left:-2170.415140pt;}
._b{margin-left:-1824.782537pt;}
._6{margin-left:-1724.896457pt;}
._2{margin-left:-1697.523053pt;}
._7{margin-left:-1684.554093pt;}
._8{margin-left:-1626.799817pt;}
._c{margin-left:-1462.883907pt;}
._1d{margin-left:-2.101980pt;}
._0{margin-left:-1.142437pt;}
._f{width:0.929177pt;}
._14{width:2.286653pt;}
._11{width:3.219627pt;}
._12{width:4.258133pt;}
._d{width:5.240320pt;}
._3{width:6.560853pt;}
._15{width:8.231077pt;}
._4{width:9.621392pt;}
._10{width:10.670580pt;}
._e{width:11.776000pt;}
._19{width:12.776960pt;}
._17{width:13.763060pt;}
._1c{width:16.261017pt;}
._13{width:17.192960pt;}
._16{width:18.959360pt;}
._18{width:20.116303pt;}
._20{width:21.023250pt;}
._1b{width:22.111823pt;}
._1a{width:23.408640pt;}
._1f{width:25.016777pt;}
._1e{width:26.378240pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:99.712000pt;}
.ya6{bottom:103.872000pt;}
.y8b{bottom:105.152000pt;}
.y5f{bottom:111.872000pt;}
.y7c{bottom:114.432000pt;}
.yfd{bottom:117.152000pt;}
.ycf{bottom:120.192000pt;}
.y46{bottom:121.152000pt;}
.ye8{bottom:125.152000pt;}
.y11c{bottom:128.672000pt;}
.ya5{bottom:129.152000pt;}
.y1c{bottom:130.272000pt;}
.y5e{bottom:137.146667pt;}
.y7b{bottom:139.706667pt;}
.y45{bottom:146.426667pt;}
.yf9{bottom:150.426667pt;}
.yce{bottom:153.466667pt;}
.ya4{bottom:154.426667pt;}
.ye7{bottom:158.426667pt;}
.y11b{bottom:158.746667pt;}
.y5d{bottom:162.426667pt;}
.y1b{bottom:163.546667pt;}
.y44{bottom:171.706667pt;}
.y7a{bottom:173.146667pt;}
.yf8{bottom:175.706667pt;}
.ya3{bottom:179.706667pt;}
.ye6{bottom:183.706667pt;}
.ycd{bottom:186.746667pt;}
.y5c{bottom:187.706667pt;}
.y11a{bottom:188.986667pt;}
.y1a{bottom:196.826667pt;}
.y43{bottom:197.146667pt;}
.y79{bottom:198.426667pt;}
.yf7{bottom:200.986667pt;}
.ya2{bottom:205.146667pt;}
.ye5{bottom:208.986667pt;}
.ycc{bottom:212.026667pt;}
.y5b{bottom:213.146667pt;}
.y119{bottom:219.226667pt;}
.y42{bottom:222.426667pt;}
.y78{bottom:223.706667pt;}
.y19{bottom:230.106667pt;}
.ya1{bottom:230.426667pt;}
.yf6{bottom:234.266667pt;}
.ycb{bottom:237.306667pt;}
.y5a{bottom:238.426667pt;}
.ye4{bottom:242.266667pt;}
.yad{bottom:246.426667pt;}
.y41{bottom:247.706667pt;}
.y77{bottom:248.986667pt;}
.y118{bottom:249.466667pt;}
.ya0{bottom:255.706667pt;}
.y8a{bottom:256.986667pt;}
.yf5{bottom:259.546667pt;}
.yca{bottom:262.746667pt;}
.y18{bottom:263.386667pt;}
.y59{bottom:263.706667pt;}
.ye3{bottom:267.546667pt;}
.yac{bottom:271.706667pt;}
.y40{bottom:272.986667pt;}
.y76{bottom:274.266667pt;}
.y117{bottom:279.546667pt;}
.y9f{bottom:280.986667pt;}
.y89{bottom:282.266667pt;}
.y58{bottom:288.986667pt;}
.ye2{bottom:292.866667pt;}
.yc9{bottom:296.066667pt;}
.y17{bottom:296.866667pt;}
.yab{bottom:297.026667pt;}
.y3f{bottom:298.306667pt;}
.y75{bottom:299.586667pt;}
.y103{bottom:300.866667pt;}
.y88{bottom:307.586667pt;}
.y116{bottom:309.826667pt;}
.y57{bottom:314.306667pt;}
.yf4{bottom:318.146667pt;}
.yaa{bottom:322.306667pt;}
.y3e{bottom:323.586667pt;}
.y74{bottom:324.866667pt;}
.ye1{bottom:326.146667pt;}
.yc8{bottom:329.346667pt;}
.y16{bottom:330.146667pt;}
.y87{bottom:332.866667pt;}
.y9e{bottom:339.586667pt;}
.y115{bottom:340.066667pt;}
.y56{bottom:347.586667pt;}
.y3d{bottom:348.866667pt;}
.y73{bottom:350.146667pt;}
.ye0{bottom:351.426667pt;}
.yc7{bottom:354.626667pt;}
.y102{bottom:359.426667pt;}
.y15{bottom:363.426667pt;}
.y9d{bottom:364.866667pt;}
.y86{bottom:366.146667pt;}
.y114{bottom:370.146667pt;}
.y55{bottom:372.866667pt;}
.y3c{bottom:374.146667pt;}
.yf3{bottom:376.866667pt;}
.yc6{bottom:379.906667pt;}
.y72{bottom:383.106667pt;}
.ydf{bottom:384.866667pt;}
.y9c{bottom:390.146667pt;}
.y85{bottom:391.426667pt;}
.y14{bottom:396.706667pt;}
.y54{bottom:398.146667pt;}
.y113{bottom:400.386667pt;}
.yfc{bottom:402.146667pt;}
.y3b{bottom:407.426667pt;}
.yde{bottom:410.146667pt;}
.yc5{bottom:413.186667pt;}
.y9b{bottom:415.426667pt;}
.y71{bottom:416.866667pt;}
.y101{bottom:418.146667pt;}
.y53{bottom:423.426667pt;}
.y13{bottom:429.986667pt;}
.y112{bottom:430.626667pt;}
.y3a{bottom:432.866667pt;}
.yf2{bottom:435.426667pt;}
.yc4{bottom:438.466667pt;}
.y9a{bottom:440.866667pt;}
.y70{bottom:442.146667pt;}
.ydd{bottom:443.426667pt;}
.y52{bottom:448.866667pt;}
.y39{bottom:458.146667pt;}
.yfb{bottom:460.706667pt;}
.y111{bottom:460.866667pt;}
.y12{bottom:463.266667pt;}
.yc3{bottom:463.746667pt;}
.y99{bottom:466.146667pt;}
.y6f{bottom:467.426667pt;}
.ydc{bottom:468.706667pt;}
.y51{bottom:474.146667pt;}
.y100{bottom:476.706667pt;}
.y38{bottom:483.426667pt;}
.yc2{bottom:489.026667pt;}
.y110{bottom:490.946667pt;}
.y98{bottom:491.426667pt;}
.y6e{bottom:492.706667pt;}
.yf1{bottom:493.986667pt;}
.y11{bottom:496.546667pt;}
.y50{bottom:499.426667pt;}
.ydb{bottom:501.986667pt;}
.y37{bottom:508.706667pt;}
.yc1{bottom:514.466667pt;}
.y97{bottom:516.706667pt;}
.y6d{bottom:517.986667pt;}
.yf0{bottom:518.946667pt;}
.yfa{bottom:519.266667pt;}
.y10f{bottom:521.186667pt;}
.y4f{bottom:524.706667pt;}
.yda{bottom:527.266667pt;}
.y10{bottom:529.853333pt;}
.y36{bottom:534.013333pt;}
.yc0{bottom:539.773333pt;}
.y96{bottom:542.013333pt;}
.y6c{bottom:543.293333pt;}
.y4e{bottom:550.013333pt;}
.y10e{bottom:551.453333pt;}
.yd9{bottom:552.573333pt;}
.y35{bottom:559.293333pt;}
.yf{bottom:563.133333pt;}
.y95{bottom:567.293333pt;}
.ybf{bottom:573.053333pt;}
.y4d{bottom:575.293333pt;}
.y6b{bottom:576.253333pt;}
.yef{bottom:577.853333pt;}
.y10d{bottom:581.693333pt;}
.yd8{bottom:585.853333pt;}
.y34{bottom:592.253333pt;}
.y94{bottom:592.573333pt;}
.ye{bottom:596.573333pt;}
.ybe{bottom:598.333333pt;}
.y4c{bottom:600.573333pt;}
.y6a{bottom:609.853333pt;}
.yd7{bottom:611.133333pt;}
.y10c{bottom:611.773333pt;}
.y93{bottom:617.853333pt;}
.ybd{bottom:623.613333pt;}
.y33{bottom:625.853333pt;}
.yd{bottom:629.853333pt;}
.y69{bottom:635.133333pt;}
.yee{bottom:636.573333pt;}
.y10b{bottom:642.013333pt;}
.y92{bottom:643.133333pt;}
.yd6{bottom:644.573333pt;}
.ybc{bottom:648.893333pt;}
.y32{bottom:651.133333pt;}
.y68{bottom:660.573333pt;}
.yc{bottom:663.133333pt;}
.y91{bottom:668.573333pt;}
.yd5{bottom:669.853333pt;}
.y10a{bottom:672.253333pt;}
.ybb{bottom:674.173333pt;}
.y31{bottom:676.573333pt;}
.y67{bottom:685.853333pt;}
.y90{bottom:693.853333pt;}
.yed{bottom:695.133333pt;}
.yb{bottom:696.413333pt;}
.yba{bottom:699.453333pt;}
.y30{bottom:701.853333pt;}
.y109{bottom:702.493333pt;}
.yd4{bottom:703.133333pt;}
.y66{bottom:711.133333pt;}
.y8f{bottom:719.133333pt;}
.yec{bottom:720.413333pt;}
.yb9{bottom:724.733333pt;}
.y2f{bottom:727.133333pt;}
.yd3{bottom:728.413333pt;}
.ya{bottom:729.693333pt;}
.y108{bottom:732.573333pt;}
.y65{bottom:736.413333pt;}
.y8e{bottom:744.413333pt;}
.yb8{bottom:750.173333pt;}
.y2e{bottom:752.413333pt;}
.yd2{bottom:753.693333pt;}
.y9{bottom:754.973333pt;}
.ya9{bottom:760.413333pt;}
.y84{bottom:761.693333pt;}
.y107{bottom:762.813333pt;}
.y64{bottom:769.413333pt;}
.y8d{bottom:769.733333pt;}
.yb7{bottom:775.493333pt;}
.y2d{bottom:777.733333pt;}
.yeb{bottom:779.013333pt;}
.y8{bottom:780.293333pt;}
.ya8{bottom:785.733333pt;}
.y83{bottom:787.013333pt;}
.y106{bottom:793.093333pt;}
.y8c{bottom:795.013333pt;}
.y63{bottom:802.693333pt;}
.y2c{bottom:803.013333pt;}
.yff{bottom:804.293333pt;}
.yb6{bottom:808.773333pt;}
.ya7{bottom:811.013333pt;}
.yd1{bottom:812.293333pt;}
.y7{bottom:813.573333pt;}
.y82{bottom:820.293333pt;}
.y105{bottom:823.333333pt;}
.y2b{bottom:828.293333pt;}
.yb5{bottom:834.053333pt;}
.y62{bottom:836.293333pt;}
.yd0{bottom:837.573333pt;}
.y81{bottom:845.573333pt;}
.y6{bottom:846.853333pt;}
.y104{bottom:853.413333pt;}
.y2a{bottom:853.573333pt;}
.yb4{bottom:859.333333pt;}
.y61{bottom:861.573333pt;}
.yea{bottom:862.533333pt;}
.yfe{bottom:862.853333pt;}
.y80{bottom:870.853333pt;}
.y29{bottom:878.853333pt;}
.yb3{bottom:884.613333pt;}
.y5{bottom:885.573333pt;}
.y60{bottom:886.853333pt;}
.y7f{bottom:896.293333pt;}
.y28{bottom:904.293333pt;}
.yb2{bottom:909.893333pt;}
.y4b{bottom:912.293333pt;}
.y4{bottom:913.573333pt;}
.y7e{bottom:921.573333pt;}
.y27{bottom:929.573333pt;}
.yb1{bottom:935.173333pt;}
.y4a{bottom:937.573333pt;}
.y3{bottom:944.133333pt;}
.y7d{bottom:954.533333pt;}
.y26{bottom:954.853333pt;}
.yb0{bottom:960.453333pt;}
.y49{bottom:962.853333pt;}
.y2{bottom:972.133333pt;}
.y25{bottom:980.133333pt;}
.yaf{bottom:985.893333pt;}
.y48{bottom:988.133333pt;}
.y1{bottom:1005.440000pt;}
.yae{bottom:1012.160000pt;}
.y24{bottom:1013.120000pt;}
.y47{bottom:1013.440000pt;}
.y21{bottom:1038.606667pt;}
.y23{bottom:1042.240000pt;}
.y20{bottom:1053.006667pt;}
.y22{bottom:1060.960000pt;}
.y1f{bottom:1067.406667pt;}
.y1e{bottom:1081.806667pt;}
.y1d{bottom:1096.206667pt;}
.h6{height:33.328125pt;}
.h4{height:36.667500pt;}
.h5{height:44.093750pt;}
.h7{height:44.687500pt;}
.h8{height:52.785000pt;}
.h9{height:57.758750pt;}
.h3{height:57.787500pt;}
.h2{height:59.340000pt;}
.ha{height:62.812500pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:47.999976pt;}
.x3{left:56.000000pt;}
.x2{left:64.000000pt;}
.x6{left:71.999988pt;}
.x4{left:81.997333pt;}
.x1{left:96.032000pt;}
.x8{left:681.413322pt;}
.x5{left:689.413322pt;}
}




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