
    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_38d61db738f15446c964b7af.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_7e08f2524435da7e8464f443.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_f68ddf1dc0bb39a5c07229c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_35c0c1bf4d8fb0f03b3bd6ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005859;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_aed907665889a18b0b7f8018.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_67264774ed73dbeb5a3bec2b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_db0e2673279421d81a0e0414.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_aabb5cd4a9a06af97f17f2d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.968262;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_3037ee4a4ef15a1a5b3008a8.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_b3a4405096c51cdc3d31e253.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_a82d0ad7c50ce2bf2da4ea1e.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_dd13041235ac8491de668fd4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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:ffd;src:url('chunks/assets/font_11688cd2f6974a25fb0a7269.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172852;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:ffe;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6ba98bcd8d5d91bac4bfb8aa.woff2')format("woff");}.fff{font-family:fff;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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.305400px;}
.ls1a{letter-spacing:-0.262200px;}
.ls18{letter-spacing:-0.229800px;}
.ls12{letter-spacing:-0.109200px;}
.lsd{letter-spacing:-0.085200px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.059040px;}
.ls17{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.109200px;}
.ls6{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.152400px;}
.lsf{letter-spacing:0.187200px;}
.ls7{letter-spacing:0.262080px;}
.ls13{letter-spacing:0.262200px;}
.ls5{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.305400px;}
.lsb{letter-spacing:0.382080px;}
.ls1d{letter-spacing:0.414720px;}
.ls10{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.442080px;}
.ls22{letter-spacing:0.612000px;}
.ls20{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.828000px;}
.ls1e{letter-spacing:0.829440px;}
.ls21{letter-spacing:1.080000px;}
.ls1f{letter-spacing:5.760000px;}
.lsa{letter-spacing:6.480000px;}
.ls4{letter-spacing:7.200000px;}
.ls3{letter-spacing:14.400000px;}
.ls14{letter-spacing:17.280000px;}
.ls1{letter-spacing:20.160000px;}
.ls2{letter-spacing:31.680000px;}
.ls1b{letter-spacing:78.785280px;}
.ls1c{letter-spacing:83.141280px;}
.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;}
}
.wse{word-spacing:-66.240000px;}
.wsf{word-spacing:-22.140000px;}
.wsb{word-spacing:-18.808440px;}
.ws3{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.388000px;}
.ws10{word-spacing:-17.172000px;}
.ws5{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.822200px;}
.wsc{word-spacing:-16.712400px;}
.ws8{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.450800px;}
.wsd{word-spacing:-16.297800px;}
.wsa{word-spacing:-16.254600px;}
.ws6{word-spacing:-15.840000px;}
.ws2{word-spacing:-10.612800px;}
.ws1{word-spacing:-10.527600px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-1.495440px;}
._1{width:1.327680px;}
._12{width:2.398080px;}
._13{width:3.502800px;}
._21{width:4.573440px;}
._a{width:5.976000px;}
._b{width:7.128000px;}
._9{width:8.616000px;}
._1e{width:9.840960px;}
._1b{width:11.629440px;}
._1c{width:13.127760px;}
._d{width:14.308320px;}
._c{width:15.391440px;}
._23{width:17.581680px;}
._1f{width:18.872640px;}
._2{width:20.496000px;}
._4{width:22.464000px;}
._e{width:23.832000px;}
._3{width:25.488000px;}
._29{width:27.191520px;}
._28{width:28.330320px;}
._25{width:30.838800px;}
._6{width:31.872000px;}
._3a{width:32.921280px;}
._30{width:34.378560px;}
._5{width:36.504000px;}
._39{width:38.096640px;}
._26{width:39.228480px;}
._27{width:40.405440px;}
._20{width:42.065280px;}
._17{width:43.094160px;}
._16{width:44.286480px;}
._36{width:45.745920px;}
._34{width:46.964160px;}
._35{width:48.255600px;}
._32{width:49.495680px;}
._2b{width:50.646240px;}
._2a{width:51.895440px;}
._1a{width:53.072400px;}
._1d{width:54.532080px;}
._3b{width:55.892160px;}
._22{width:57.309840px;}
._3d{width:60.145920px;}
._40{width:61.943040px;}
._24{width:63.069840px;}
._14{width:65.245800px;}
._15{width:66.345000px;}
._18{width:68.624640px;}
._31{width:70.611840px;}
._2d{width:72.371520px;}
._2c{width:73.506960px;}
._f{width:75.216000px;}
._10{width:76.320000px;}
._7{width:78.192000px;}
._8{width:79.488000px;}
._41{width:84.242880px;}
._42{width:85.633920px;}
._3f{width:87.263280px;}
._3c{width:89.528400px;}
._19{width:94.320000px;}
._2e{width:95.394000px;}
._33{width:104.814480px;}
._11{width:113.088000px;}
._38{width:115.986240px;}
._37{width:117.415440px;}
._2f{width:141.687360px;}
._3e{width:153.581760px;}
._44{width:195.194880px;}
._43{width:925.063200px;}
.fc5{color:rgb(32,33,34);}
.fc3{color:rgb(112,48,160);}
.fc4{color:rgb(75,172,198);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:18.000000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.y5c{bottom:-0.870000px;}
.y7e{bottom:-0.075000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:0.825000px;}
.y80{bottom:1.185000px;}
.y82{bottom:3.060000px;}
.y58{bottom:6.840000px;}
.y5a{bottom:7.005000px;}
.y68{bottom:7.020000px;}
.y6a{bottom:7.560000px;}
.y69{bottom:7.740000px;}
.y4{bottom:62.460000px;}
.y42{bottom:91.980000px;}
.y32{bottom:113.796000px;}
.y56{bottom:116.496000px;}
.y31{bottom:135.756000px;}
.y55{bottom:138.276000px;}
.y59{bottom:153.225000px;}
.y30{bottom:157.530000px;}
.y41{bottom:161.490000px;}
.y57{bottom:175.170000px;}
.y2f{bottom:179.310000px;}
.y40{bottom:183.270000px;}
.yb6{bottom:190.290000px;}
.y2e{bottom:201.090000px;}
.y3f{bottom:205.050000px;}
.y9e{bottom:215.310000px;}
.y5b{bottom:216.180000px;}
.y2d{bottom:222.870000px;}
.y3e{bottom:226.830000px;}
.y9d{bottom:237.450000px;}
.y2c{bottom:244.830000px;}
.yb5{bottom:248.430000px;}
.y3d{bottom:248.790000px;}
.y9c{bottom:259.230000px;}
.y2b{bottom:266.610000px;}
.yb4{bottom:270.210000px;}
.y3c{bottom:270.570000px;}
.y9b{bottom:281.190000px;}
.y2a{bottom:288.390000px;}
.yb3{bottom:291.990000px;}
.y3b{bottom:292.350000px;}
.y9a{bottom:302.970000px;}
.y29{bottom:310.170000px;}
.yb2{bottom:313.770000px;}
.y3a{bottom:314.130000px;}
.y99{bottom:324.750000px;}
.y28{bottom:332.130000px;}
.yb1{bottom:335.730000px;}
.y39{bottom:336.090000px;}
.y98{bottom:346.530000px;}
.y27{bottom:353.910000px;}
.y38{bottom:357.915000px;}
.yb0{bottom:361.695000px;}
.y97{bottom:368.355000px;}
.y26{bottom:375.735000px;}
.y37{bottom:379.695000px;}
.yaf{bottom:383.475000px;}
.y7a{bottom:390.135000px;}
.y96{bottom:390.315000px;}
.y25{bottom:397.515000px;}
.y36{bottom:401.475000px;}
.yae{bottom:405.435000px;}
.y95{bottom:412.095000px;}
.y78{bottom:412.455000px;}
.y24{bottom:419.295000px;}
.y35{bottom:423.255000px;}
.yad{bottom:427.215000px;}
.y77{bottom:433.875000px;}
.y94{bottom:434.055000px;}
.y79{bottom:434.235000px;}
.y23{bottom:441.795000px;}
.y34{bottom:445.215000px;}
.yac{bottom:448.995000px;}
.y76{bottom:456.015000px;}
.y93{bottom:456.915000px;}
.y22{bottom:465.555000px;}
.y33{bottom:466.995000px;}
.yab{bottom:470.955000px;}
.y53{bottom:474.915000px;}
.y75{bottom:477.795000px;}
.y92{bottom:479.955000px;}
.y21{bottom:496.515000px;}
.y52{bottom:496.695000px;}
.yaa{bottom:496.875000px;}
.y74{bottom:499.575000px;}
.y91{bottom:502.995000px;}
.y20{bottom:517.395000px;}
.y51{bottom:518.475000px;}
.ya9{bottom:518.655000px;}
.y73{bottom:521.535000px;}
.y90{bottom:526.035000px;}
.y50{bottom:540.435000px;}
.y1f{bottom:541.155000px;}
.y72{bottom:543.315000px;}
.y8f{bottom:548.895000px;}
.y54{bottom:561.855000px;}
.y4f{bottom:562.215000px;}
.ya8{bottom:562.395000px;}
.y1e{bottom:564.915000px;}
.y71{bottom:565.095000px;}
.y8e{bottom:570.675000px;}
.y4e{bottom:583.995000px;}
.ya7{bottom:584.175000px;}
.y70{bottom:586.875000px;}
.y1d{bottom:588.675000px;}
.y8d{bottom:592.455000px;}
.y4d{bottom:605.775000px;}
.ya6{bottom:605.955000px;}
.y6f{bottom:608.835000px;}
.y1c{bottom:612.435000px;}
.y8c{bottom:614.415000px;}
.y4c{bottom:627.585000px;}
.ya5{bottom:627.765000px;}
.y6e{bottom:630.645000px;}
.y8b{bottom:636.225000px;}
.y1b{bottom:636.405000px;}
.y4b{bottom:649.545000px;}
.y6d{bottom:652.425000px;}
.y8a{bottom:658.005000px;}
.y1a{bottom:660.165000px;}
.y4a{bottom:671.325000px;}
.ya4{bottom:671.505000px;}
.y6c{bottom:674.205000px;}
.y89{bottom:679.785000px;}
.y19{bottom:683.925000px;}
.y6b{bottom:689.145000px;}
.y49{bottom:693.105000px;}
.ya3{bottom:697.425000px;}
.y88{bottom:701.745000px;}
.y18{bottom:707.685000px;}
.y67{bottom:710.925000px;}
.y48{bottom:714.885000px;}
.ya2{bottom:719.205000px;}
.y87{bottom:723.525000px;}
.y17{bottom:731.625000px;}
.y47{bottom:736.845000px;}
.ya1{bottom:741.165000px;}
.y86{bottom:745.305000px;}
.y7d{bottom:751.140000px;}
.y7b{bottom:751.680000px;}
.y7f{bottom:753.300000px;}
.y16{bottom:755.385000px;}
.y46{bottom:758.265000px;}
.ya0{bottom:762.945000px;}
.y85{bottom:767.085000px;}
.y15{bottom:779.145000px;}
.y45{bottom:780.405000px;}
.y9f{bottom:784.725000px;}
.y84{bottom:788.865000px;}
.y44{bottom:802.185000px;}
.y14{bottom:802.905000px;}
.y83{bottom:803.805000px;}
.y43{bottom:820.185000px;}
.y81{bottom:825.765000px;}
.y13{bottom:826.665000px;}
.y12{bottom:850.605000px;}
.y11{bottom:874.410000px;}
.y10{bottom:898.170000px;}
.yf{bottom:921.930000px;}
.ye{bottom:945.870000px;}
.yd{bottom:969.630000px;}
.y65{bottom:988.350000px;}
.yc{bottom:993.390000px;}
.y64{bottom:1010.130000px;}
.yb{bottom:1017.150000px;}
.y63{bottom:1031.910000px;}
.ya{bottom:1041.090000px;}
.y62{bottom:1053.690000px;}
.y9{bottom:1064.490000px;}
.y61{bottom:1075.650000px;}
.y8{bottom:1085.910000px;}
.y60{bottom:1097.430000px;}
.y7{bottom:1110.030000px;}
.y5f{bottom:1119.210000px;}
.y6{bottom:1134.180000px;}
.y5e{bottom:1141.020000px;}
.y5{bottom:1158.480000px;}
.y66{bottom:1162.620000px;}
.y5d{bottom:1162.980000px;}
.y1{bottom:1167.120000px;}
.y3{bottom:1184.580000px;}
.y2{bottom:1198.980000px;}
.h11{height:16.380000px;}
.h17{height:20.160000px;}
.h15{height:21.060000px;}
.h18{height:21.420000px;}
.h14{height:21.780000px;}
.h10{height:21.945000px;}
.h1a{height:21.960000px;}
.hd{height:47.448281px;}
.h4{height:48.616875px;}
.h9{height:59.343750px;}
.h7{height:59.436914px;}
.h12{height:64.978594px;}
.hc{height:65.010937px;}
.he{height:66.757500px;}
.h1b{height:68.084282px;}
.h8{height:70.628906px;}
.hb{height:70.664062px;}
.h5{height:71.324297px;}
.ha{height:71.613281px;}
.h1d{height:77.342344px;}
.h16{height:83.787539px;}
.h2{height:84.898125px;}
.h6{height:86.255508px;}
.h1c{height:86.585445px;}
.h13{height:270.570000px;}
.hf{height:291.810000px;}
.h19{height:352.155000px;}
.h3{height:1262.879970px;}
.h1{height:1263.000000px;}
.h0{height:1263.059970px;}
.w7{width:34.020000px;}
.w8{width:34.200000px;}
.we{width:39.600000px;}
.wd{width:40.860000px;}
.wf{width:41.220000px;}
.wb{width:229.920000px;}
.w9{width:235.290000px;}
.wa{width:244.650000px;}
.w5{width:358.815000px;}
.w4{width:359.175000px;}
.wc{width:709.890000px;}
.w6{width:717.990000px;}
.w2{width:892.980015px;}
.w3{width:893.250000px;}
.w1{width:894.000000px;}
.w0{width:894.059970px;}
.x0{left:0.000000px;}
.x1b{left:12.816000px;}
.x28{left:15.015000px;}
.x2b{left:16.350000px;}
.x17{left:29.340000px;}
.xe{left:95.796000px;}
.x26{left:102.054000px;}
.x16{left:106.236000px;}
.x5{left:112.176000px;}
.xd{left:117.036000px;}
.x2c{left:119.556000px;}
.x1a{left:124.200000px;}
.x21{left:127.656000px;}
.x6{left:136.116000px;}
.x29{left:143.820000px;}
.x20{left:148.896000px;}
.x2e{left:168.519000px;}
.x2{left:177.510000px;}
.x1d{left:193.530000px;}
.x19{left:203.799000px;}
.x3{left:241.590000px;}
.x1e{left:257.430000px;}
.x7{left:262.650000px;}
.x13{left:285.735000px;}
.xa{left:301.395000px;}
.x14{left:331.635000px;}
.x9{left:343.875000px;}
.x24{left:362.955000px;}
.x27{left:379.260000px;}
.x11{left:451.875000px;}
.x1{left:456.225000px;}
.x4{left:457.305000px;}
.x8{left:462.525000px;}
.x18{left:465.405000px;}
.x1f{left:467.925000px;}
.xb{left:473.145000px;}
.x1c{left:482.940000px;}
.x10{left:489.165000px;}
.x23{left:505.005000px;}
.xf{left:510.405000px;}
.x22{left:526.245000px;}
.x15{left:540.825000px;}
.x25{left:607.620000px;}
.x2a{left:621.360000px;}
.x2d{left:684.654000px;}
.x12{left:780.270000px;}
.xc{left:829.440000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.271467pt;}
.ls1a{letter-spacing:-0.233067pt;}
.ls18{letter-spacing:-0.204267pt;}
.ls12{letter-spacing:-0.097067pt;}
.lsd{letter-spacing:-0.075733pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.052480pt;}
.ls17{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.097067pt;}
.ls6{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.135467pt;}
.lsf{letter-spacing:0.166400pt;}
.ls7{letter-spacing:0.232960pt;}
.ls13{letter-spacing:0.233067pt;}
.ls5{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.271467pt;}
.lsb{letter-spacing:0.339627pt;}
.ls1d{letter-spacing:0.368640pt;}
.ls10{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.392960pt;}
.ls22{letter-spacing:0.544000pt;}
.ls20{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.736000pt;}
.ls1e{letter-spacing:0.737280pt;}
.ls21{letter-spacing:0.960000pt;}
.ls1f{letter-spacing:5.120000pt;}
.lsa{letter-spacing:5.760000pt;}
.ls4{letter-spacing:6.400000pt;}
.ls3{letter-spacing:12.800000pt;}
.ls14{letter-spacing:15.360000pt;}
.ls1{letter-spacing:17.920000pt;}
.ls2{letter-spacing:28.160000pt;}
.ls1b{letter-spacing:70.031360pt;}
.ls1c{letter-spacing:73.903360pt;}
.wse{word-spacing:-58.880000pt;}
.wsf{word-spacing:-19.680000pt;}
.wsb{word-spacing:-16.718613pt;}
.ws3{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.456000pt;}
.ws10{word-spacing:-15.264000pt;}
.ws5{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.953067pt;}
.wsc{word-spacing:-14.855467pt;}
.ws8{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.622933pt;}
.wsd{word-spacing:-14.486933pt;}
.wsa{word-spacing:-14.448533pt;}
.ws6{word-spacing:-14.080000pt;}
.ws2{word-spacing:-9.433600pt;}
.ws1{word-spacing:-9.357867pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-1.329280pt;}
._1{width:1.180160pt;}
._12{width:2.131627pt;}
._13{width:3.113600pt;}
._21{width:4.065280pt;}
._a{width:5.312000pt;}
._b{width:6.336000pt;}
._9{width:7.658667pt;}
._1e{width:8.747520pt;}
._1b{width:10.337280pt;}
._1c{width:11.669120pt;}
._d{width:12.718507pt;}
._c{width:13.681280pt;}
._23{width:15.628160pt;}
._1f{width:16.775680pt;}
._2{width:18.218667pt;}
._4{width:19.968000pt;}
._e{width:21.184000pt;}
._3{width:22.656000pt;}
._29{width:24.170240pt;}
._28{width:25.182507pt;}
._25{width:27.412267pt;}
._6{width:28.330667pt;}
._3a{width:29.263360pt;}
._30{width:30.558720pt;}
._5{width:32.448000pt;}
._39{width:33.863680pt;}
._26{width:34.869760pt;}
._27{width:35.915947pt;}
._20{width:37.391360pt;}
._17{width:38.305920pt;}
._16{width:39.365760pt;}
._36{width:40.663040pt;}
._34{width:41.745920pt;}
._35{width:42.893867pt;}
._32{width:43.996160pt;}
._2b{width:45.018880pt;}
._2a{width:46.129280pt;}
._1a{width:47.175467pt;}
._1d{width:48.472960pt;}
._3b{width:49.681920pt;}
._22{width:50.942080pt;}
._3d{width:53.463040pt;}
._40{width:55.060480pt;}
._24{width:56.062080pt;}
._14{width:57.996267pt;}
._15{width:58.973333pt;}
._18{width:60.999680pt;}
._31{width:62.766080pt;}
._2d{width:64.330240pt;}
._2c{width:65.339520pt;}
._f{width:66.858667pt;}
._10{width:67.840000pt;}
._7{width:69.504000pt;}
._8{width:70.656000pt;}
._41{width:74.882560pt;}
._42{width:76.119040pt;}
._3f{width:77.567360pt;}
._3c{width:79.580800pt;}
._19{width:83.840000pt;}
._2e{width:84.794667pt;}
._33{width:93.168427pt;}
._11{width:100.522667pt;}
._38{width:103.098880pt;}
._37{width:104.369280pt;}
._2f{width:125.944320pt;}
._3e{width:136.517120pt;}
._44{width:173.506560pt;}
._43{width:822.278400pt;}
.fs3{font-size:16.000000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.y5c{bottom:-0.773333pt;}
.y7e{bottom:-0.066667pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:0.733333pt;}
.y80{bottom:1.053333pt;}
.y82{bottom:2.720000pt;}
.y58{bottom:6.080000pt;}
.y5a{bottom:6.226667pt;}
.y68{bottom:6.240000pt;}
.y6a{bottom:6.720000pt;}
.y69{bottom:6.880000pt;}
.y4{bottom:55.520000pt;}
.y42{bottom:81.760000pt;}
.y32{bottom:101.152000pt;}
.y56{bottom:103.552000pt;}
.y31{bottom:120.672000pt;}
.y55{bottom:122.912000pt;}
.y59{bottom:136.200000pt;}
.y30{bottom:140.026667pt;}
.y41{bottom:143.546667pt;}
.y57{bottom:155.706667pt;}
.y2f{bottom:159.386667pt;}
.y40{bottom:162.906667pt;}
.yb6{bottom:169.146667pt;}
.y2e{bottom:178.746667pt;}
.y3f{bottom:182.266667pt;}
.y9e{bottom:191.386667pt;}
.y5b{bottom:192.160000pt;}
.y2d{bottom:198.106667pt;}
.y3e{bottom:201.626667pt;}
.y9d{bottom:211.066667pt;}
.y2c{bottom:217.626667pt;}
.yb5{bottom:220.826667pt;}
.y3d{bottom:221.146667pt;}
.y9c{bottom:230.426667pt;}
.y2b{bottom:236.986667pt;}
.yb4{bottom:240.186667pt;}
.y3c{bottom:240.506667pt;}
.y9b{bottom:249.946667pt;}
.y2a{bottom:256.346667pt;}
.yb3{bottom:259.546667pt;}
.y3b{bottom:259.866667pt;}
.y9a{bottom:269.306667pt;}
.y29{bottom:275.706667pt;}
.yb2{bottom:278.906667pt;}
.y3a{bottom:279.226667pt;}
.y99{bottom:288.666667pt;}
.y28{bottom:295.226667pt;}
.yb1{bottom:298.426667pt;}
.y39{bottom:298.746667pt;}
.y98{bottom:308.026667pt;}
.y27{bottom:314.586667pt;}
.y38{bottom:318.146667pt;}
.yb0{bottom:321.506667pt;}
.y97{bottom:327.426667pt;}
.y26{bottom:333.986667pt;}
.y37{bottom:337.506667pt;}
.yaf{bottom:340.866667pt;}
.y7a{bottom:346.786667pt;}
.y96{bottom:346.946667pt;}
.y25{bottom:353.346667pt;}
.y36{bottom:356.866667pt;}
.yae{bottom:360.386667pt;}
.y95{bottom:366.306667pt;}
.y78{bottom:366.626667pt;}
.y24{bottom:372.706667pt;}
.y35{bottom:376.226667pt;}
.yad{bottom:379.746667pt;}
.y77{bottom:385.666667pt;}
.y94{bottom:385.826667pt;}
.y79{bottom:385.986667pt;}
.y23{bottom:392.706667pt;}
.y34{bottom:395.746667pt;}
.yac{bottom:399.106667pt;}
.y76{bottom:405.346667pt;}
.y93{bottom:406.146667pt;}
.y22{bottom:413.826667pt;}
.y33{bottom:415.106667pt;}
.yab{bottom:418.626667pt;}
.y53{bottom:422.146667pt;}
.y75{bottom:424.706667pt;}
.y92{bottom:426.626667pt;}
.y21{bottom:441.346667pt;}
.y52{bottom:441.506667pt;}
.yaa{bottom:441.666667pt;}
.y74{bottom:444.066667pt;}
.y91{bottom:447.106667pt;}
.y20{bottom:459.906667pt;}
.y51{bottom:460.866667pt;}
.ya9{bottom:461.026667pt;}
.y73{bottom:463.586667pt;}
.y90{bottom:467.586667pt;}
.y50{bottom:480.386667pt;}
.y1f{bottom:481.026667pt;}
.y72{bottom:482.946667pt;}
.y8f{bottom:487.906667pt;}
.y54{bottom:499.426667pt;}
.y4f{bottom:499.746667pt;}
.ya8{bottom:499.906667pt;}
.y1e{bottom:502.146667pt;}
.y71{bottom:502.306667pt;}
.y8e{bottom:507.266667pt;}
.y4e{bottom:519.106667pt;}
.ya7{bottom:519.266667pt;}
.y70{bottom:521.666667pt;}
.y1d{bottom:523.266667pt;}
.y8d{bottom:526.626667pt;}
.y4d{bottom:538.466667pt;}
.ya6{bottom:538.626667pt;}
.y6f{bottom:541.186667pt;}
.y1c{bottom:544.386667pt;}
.y8c{bottom:546.146667pt;}
.y4c{bottom:557.853333pt;}
.ya5{bottom:558.013333pt;}
.y6e{bottom:560.573333pt;}
.y8b{bottom:565.533333pt;}
.y1b{bottom:565.693333pt;}
.y4b{bottom:577.373333pt;}
.y6d{bottom:579.933333pt;}
.y8a{bottom:584.893333pt;}
.y1a{bottom:586.813333pt;}
.y4a{bottom:596.733333pt;}
.ya4{bottom:596.893333pt;}
.y6c{bottom:599.293333pt;}
.y89{bottom:604.253333pt;}
.y19{bottom:607.933333pt;}
.y6b{bottom:612.573333pt;}
.y49{bottom:616.093333pt;}
.ya3{bottom:619.933333pt;}
.y88{bottom:623.773333pt;}
.y18{bottom:629.053333pt;}
.y67{bottom:631.933333pt;}
.y48{bottom:635.453333pt;}
.ya2{bottom:639.293333pt;}
.y87{bottom:643.133333pt;}
.y17{bottom:650.333333pt;}
.y47{bottom:654.973333pt;}
.ya1{bottom:658.813333pt;}
.y86{bottom:662.493333pt;}
.y7d{bottom:667.680000pt;}
.y7b{bottom:668.160000pt;}
.y7f{bottom:669.600000pt;}
.y16{bottom:671.453333pt;}
.y46{bottom:674.013333pt;}
.ya0{bottom:678.173333pt;}
.y85{bottom:681.853333pt;}
.y15{bottom:692.573333pt;}
.y45{bottom:693.693333pt;}
.y9f{bottom:697.533333pt;}
.y84{bottom:701.213333pt;}
.y44{bottom:713.053333pt;}
.y14{bottom:713.693333pt;}
.y83{bottom:714.493333pt;}
.y43{bottom:729.053333pt;}
.y81{bottom:734.013333pt;}
.y13{bottom:734.813333pt;}
.y12{bottom:756.093333pt;}
.y11{bottom:777.253333pt;}
.y10{bottom:798.373333pt;}
.yf{bottom:819.493333pt;}
.ye{bottom:840.773333pt;}
.yd{bottom:861.893333pt;}
.y65{bottom:878.533333pt;}
.yc{bottom:883.013333pt;}
.y64{bottom:897.893333pt;}
.yb{bottom:904.133333pt;}
.y63{bottom:917.253333pt;}
.ya{bottom:925.413333pt;}
.y62{bottom:936.613333pt;}
.y9{bottom:946.213333pt;}
.y61{bottom:956.133333pt;}
.y8{bottom:965.253333pt;}
.y60{bottom:975.493333pt;}
.y7{bottom:986.693333pt;}
.y5f{bottom:994.853333pt;}
.y6{bottom:1008.160000pt;}
.y5e{bottom:1014.240000pt;}
.y5{bottom:1029.760000pt;}
.y66{bottom:1033.440000pt;}
.y5d{bottom:1033.760000pt;}
.y1{bottom:1037.440000pt;}
.y3{bottom:1052.960000pt;}
.y2{bottom:1065.760000pt;}
.h11{height:14.560000pt;}
.h17{height:17.920000pt;}
.h15{height:18.720000pt;}
.h18{height:19.040000pt;}
.h14{height:19.360000pt;}
.h10{height:19.506667pt;}
.h1a{height:19.520000pt;}
.hd{height:42.176250pt;}
.h4{height:43.215000pt;}
.h9{height:52.750000pt;}
.h7{height:52.832812pt;}
.h12{height:57.758750pt;}
.hc{height:57.787500pt;}
.he{height:59.340000pt;}
.h1b{height:60.519362pt;}
.h8{height:62.781250pt;}
.hb{height:62.812500pt;}
.h5{height:63.399375pt;}
.ha{height:63.656250pt;}
.h1d{height:68.748750pt;}
.h16{height:74.477812pt;}
.h2{height:75.465000pt;}
.h6{height:76.671562pt;}
.h1c{height:76.964840pt;}
.h13{height:240.506667pt;}
.hf{height:259.386667pt;}
.h19{height:313.026667pt;}
.h3{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.719973pt;}
.w7{width:30.240000pt;}
.w8{width:30.400000pt;}
.we{width:35.200000pt;}
.wd{width:36.320000pt;}
.wf{width:36.640000pt;}
.wb{width:204.373333pt;}
.w9{width:209.146667pt;}
.wa{width:217.466667pt;}
.w5{width:318.946667pt;}
.w4{width:319.266667pt;}
.wc{width:631.013333pt;}
.w6{width:638.213333pt;}
.w2{width:793.760013pt;}
.w3{width:794.000000pt;}
.w1{width:794.666667pt;}
.w0{width:794.719973pt;}
.x0{left:0.000000pt;}
.x1b{left:11.392000pt;}
.x28{left:13.346667pt;}
.x2b{left:14.533333pt;}
.x17{left:26.080000pt;}
.xe{left:85.152000pt;}
.x26{left:90.714667pt;}
.x16{left:94.432000pt;}
.x5{left:99.712000pt;}
.xd{left:104.032000pt;}
.x2c{left:106.272000pt;}
.x1a{left:110.400000pt;}
.x21{left:113.472000pt;}
.x6{left:120.992000pt;}
.x29{left:127.840000pt;}
.x20{left:132.352000pt;}
.x2e{left:149.794667pt;}
.x2{left:157.786667pt;}
.x1d{left:172.026667pt;}
.x19{left:181.154667pt;}
.x3{left:214.746667pt;}
.x1e{left:228.826667pt;}
.x7{left:233.466667pt;}
.x13{left:253.986667pt;}
.xa{left:267.906667pt;}
.x14{left:294.786667pt;}
.x9{left:305.666667pt;}
.x24{left:322.626667pt;}
.x27{left:337.120000pt;}
.x11{left:401.666667pt;}
.x1{left:405.533333pt;}
.x4{left:406.493333pt;}
.x8{left:411.133333pt;}
.x18{left:413.693333pt;}
.x1f{left:415.933333pt;}
.xb{left:420.573333pt;}
.x1c{left:429.280000pt;}
.x10{left:434.813333pt;}
.x23{left:448.893333pt;}
.xf{left:453.693333pt;}
.x22{left:467.773333pt;}
.x15{left:480.733333pt;}
.x25{left:540.106667pt;}
.x2a{left:552.320000pt;}
.x2d{left:608.581333pt;}
.x12{left:693.573333pt;}
.xc{left:737.280000pt;}
}




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