
    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_a9e0c0199ef90d9e62fce9a3.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7a13e50594119f014790ef20.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9a757c478b0f2514b24553f9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_4e929d53e546fa7295117b6c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_f592ab586eab24fe9c0484d6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_e69812bc4621ce1f7a2ea9dd.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_998f915514c2789f8978f2b2.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bbad3053d1749e3254155293.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_c8595aa2262801069ddbd9de.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_d864cf716fc2fced4132ea87.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_fe5878029c153415055c063f.woff')format("woff");}.fff{font-family:fff;line-height:0.914062;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:ff10;src:url('chunks/assets/font_0d628562269a710e0e4008fc.woff')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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:ff11;src:url('chunks/assets/font_2b6d8997550e18cb493ee7c4.woff')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_2fc0ed73142faff57c9d974f.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-2.724000px;}
.lsa{letter-spacing:-0.792000px;}
.lsc{letter-spacing:-0.780000px;}
.ls8{letter-spacing:-0.378000px;}
.ls7{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.090000px;}
.ls3{letter-spacing:0.099000px;}
.lsb{letter-spacing:0.690000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.536000px;}
.ls4{letter-spacing:1.842000px;}
.ls2{letter-spacing:1.854000px;}
.lsf{letter-spacing:2.164500px;}
.ls5{letter-spacing:2.250000px;}
.ls6{letter-spacing:4.779000px;}
.ls12{letter-spacing:15.237000px;}
.ls11{letter-spacing:46.887000px;}
.lse{letter-spacing:64.737000px;}
.ls10{letter-spacing:64.887000px;}
.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;}
}
.ws7{word-spacing:-16.875000px;}
.wsa{word-spacing:-16.789500px;}
.ws4{word-spacing:-16.146000px;}
.ws3{word-spacing:-15.354000px;}
.ws5{word-spacing:-15.063000px;}
.ws6{word-spacing:-14.625000px;}
.ws8{word-spacing:-13.221000px;}
.ws2{word-spacing:-12.531000px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-11.826000px;}
.ws9{word-spacing:0.000000px;}
._7{margin-left:-11.194200px;}
._8{margin-left:-9.815850px;}
._a{margin-left:-6.855750px;}
._17{margin-left:-5.853750px;}
._6{margin-left:-4.841250px;}
._2{margin-left:-2.946000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.036000px;}
._4{width:4.314000px;}
._15{width:6.123000px;}
._12{width:7.722000px;}
._9{width:8.728500px;}
._5{width:9.858000px;}
._d{width:11.373000px;}
._c{width:12.810000px;}
._b{width:16.708500px;}
._16{width:17.754000px;}
._13{width:20.322000px;}
._14{width:21.478500px;}
._e{width:25.515000px;}
._f{width:26.653500px;}
._11{width:38.782500px;}
._10{width:44.541000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs3{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs2{font-size:67.500000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:1.125000px;}
.y4{bottom:3.375000px;}
.y4c{bottom:3.390000px;}
.ya4{bottom:3.420000px;}
.y18{bottom:4.500000px;}
.yf{bottom:10.125000px;}
.y4a{bottom:11.295000px;}
.y1b{bottom:12.375000px;}
.yd{bottom:14.655000px;}
.y5{bottom:16.875000px;}
.y3{bottom:19.125000px;}
.y47{bottom:20.295000px;}
.y4b{bottom:22.545000px;}
.y17{bottom:24.780000px;}
.y49{bottom:25.920000px;}
.yc{bottom:30.405000px;}
.y46{bottom:38.280000px;}
.y16{bottom:45.030000px;}
.yb{bottom:47.280000px;}
.y15{bottom:55.155000px;}
.y45{bottom:55.200000px;}
.y6{bottom:57.412500px;}
.y14{bottom:69.825000px;}
.y44{bottom:72.075000px;}
.ya{bottom:73.185000px;}
.y2{bottom:81.075000px;}
.y13{bottom:88.950000px;}
.y43{bottom:90.075000px;}
.y9{bottom:94.560000px;}
.y42{bottom:106.995000px;}
.y8{bottom:111.480000px;}
.y12{bottom:114.855000px;}
.y41{bottom:123.870000px;}
.ye0{bottom:124.987500px;}
.y91{bottom:131.737500px;}
.y11{bottom:139.605000px;}
.y40{bottom:141.900000px;}
.ydf{bottom:142.987500px;}
.ye7{bottom:145.237500px;}
.y55{bottom:148.612500px;}
.y90{bottom:149.737500px;}
.y3f{bottom:158.775000px;}
.yde{bottom:159.900000px;}
.y54{bottom:166.650000px;}
.y3e{bottom:175.650000px;}
.ydd{bottom:176.775000px;}
.ye6{bottom:182.400000px;}
.y53{bottom:183.525000px;}
.y8f{bottom:184.650000px;}
.y3d{bottom:193.695000px;}
.ydc{bottom:194.775000px;}
.y52{bottom:200.400000px;}
.y8e{bottom:202.695000px;}
.y3c{bottom:210.570000px;}
.ydb{bottom:211.695000px;}
.y51{bottom:218.445000px;}
.y8d{bottom:220.695000px;}
.y3b{bottom:227.475000px;}
.yda{bottom:228.570000px;}
.y50{bottom:235.320000px;}
.y2b{bottom:237.600000px;}
.y8c{bottom:239.820000px;}
.y3a{bottom:245.475000px;}
.yd9{bottom:246.600000px;}
.y2a{bottom:252.225000px;}
.y8b{bottom:257.850000px;}
.y39{bottom:262.350000px;}
.yd8{bottom:263.475000px;}
.y4f{bottom:270.225000px;}
.y29{bottom:270.270000px;}
.y8a{bottom:275.850000px;}
.y38{bottom:279.270000px;}
.yd7{bottom:280.350000px;}
.y4e{bottom:287.130000px;}
.y28{bottom:287.145000px;}
.y89{bottom:293.880000px;}
.ye5{bottom:295.020000px;}
.y37{bottom:297.270000px;}
.yd6{bottom:299.505000px;}
.y4d{bottom:304.005000px;}
.y27{bottom:304.020000px;}
.y88{bottom:310.755000px;}
.yb4{bottom:314.130000px;}
.y36{bottom:314.175000px;}
.yd5{bottom:317.505000px;}
.y48{bottom:318.630000px;}
.y26{bottom:322.050000px;}
.y87{bottom:327.675000px;}
.y35{bottom:331.050000px;}
.ye4{bottom:333.300000px;}
.yd4{bottom:335.550000px;}
.y25{bottom:338.925000px;}
.y86{bottom:345.675000px;}
.y34{bottom:349.080000px;}
.yd3{bottom:353.550000px;}
.y1c{bottom:355.800000px;}
.y24{bottom:356.970000px;}
.y85{bottom:362.550000px;}
.y33{bottom:365.955000px;}
.ye3{bottom:370.455000px;}
.yd2{bottom:371.580000px;}
.y23{bottom:373.845000px;}
.y84{bottom:379.470000px;}
.y32{bottom:382.830000px;}
.yd1{bottom:388.455000px;}
.y22{bottom:391.875000px;}
.y83{bottom:397.455000px;}
.y31{bottom:400.875000px;}
.yd0{bottom:406.470000px;}
.ye2{bottom:407.580000px;}
.y21{bottom:408.750000px;}
.y82{bottom:414.375000px;}
.y30{bottom:417.750000px;}
.ycf{bottom:425.625000px;}
.y20{bottom:426.750000px;}
.y81{bottom:431.250000px;}
.y2f{bottom:434.655000px;}
.yce{bottom:443.625000px;}
.y1f{bottom:443.655000px;}
.ye1{bottom:445.875000px;}
.y80{bottom:449.250000px;}
.y2e{bottom:452.655000px;}
.ycd{bottom:460.545000px;}
.y7f{bottom:466.170000px;}
.y2d{bottom:469.530000px;}
.y1e{bottom:470.655000px;}
.ycc{bottom:478.530000px;}
.y7e{bottom:483.045000px;}
.y2c{bottom:486.450000px;}
.y1d{bottom:488.700000px;}
.ycb{bottom:495.450000px;}
.y7d{bottom:501.075000px;}
.yca{bottom:512.325000px;}
.y7c{bottom:517.950000px;}
.yc9{bottom:530.325000px;}
.y7b{bottom:534.855000px;}
.yc8{bottom:547.245000px;}
.y7a{bottom:552.870000px;}
.yc7{bottom:564.120000px;}
.y79{bottom:569.745000px;}
.yb3{bottom:582.150000px;}
.y78{bottom:586.650000px;}
.yb2{bottom:596.775000px;}
.yc6{bottom:600.150000px;}
.y77{bottom:604.650000px;}
.yb1{bottom:614.775000px;}
.yc5{bottom:618.150000px;}
.y76{bottom:621.570000px;}
.yb0{bottom:632.820000px;}
.yc4{bottom:635.070000px;}
.y75{bottom:638.445000px;}
.yaf{bottom:650.820000px;}
.yc3{bottom:654.195000px;}
.y74{bottom:656.445000px;}
.yae{bottom:668.850000px;}
.yc2{bottom:671.100000px;}
.y73{bottom:673.350000px;}
.yad{bottom:686.850000px;}
.yc1{bottom:687.975000px;}
.y72{bottom:690.225000px;}
.yac{bottom:704.880000px;}
.yc0{bottom:706.020000px;}
.y71{bottom:708.255000px;}
.ybf{bottom:722.895000px;}
.y70{bottom:725.130000px;}
.yab{bottom:726.270000px;}
.ybe{bottom:739.770000px;}
.y6f{bottom:742.005000px;}
.yaa{bottom:743.145000px;}
.ya9{bottom:757.800000px;}
.y6e{bottom:758.925000px;}
.ybd{bottom:774.675000px;}
.ya8{bottom:775.800000px;}
.y6d{bottom:776.925000px;}
.ybc{bottom:791.580000px;}
.y6c{bottom:793.830000px;}
.ybb{bottom:809.580000px;}
.y6b{bottom:810.705000px;}
.ya7{bottom:811.830000px;}
.yba{bottom:826.455000px;}
.y6a{bottom:828.750000px;}
.ya6{bottom:829.875000px;}
.yb9{bottom:843.375000px;}
.y69{bottom:845.625000px;}
.ya5{bottom:847.875000px;}
.y19{bottom:855.750000px;}
.yb8{bottom:861.375000px;}
.y68{bottom:862.500000px;}
.ya3{bottom:865.875000px;}
.yb7{bottom:878.295000px;}
.y67{bottom:880.545000px;}
.ya2{bottom:883.920000px;}
.y10{bottom:886.170000px;}
.yb6{bottom:895.170000px;}
.y66{bottom:897.420000px;}
.ya1{bottom:901.905000px;}
.yb5{bottom:908.670000px;}
.y65{bottom:914.325000px;}
.ya0{bottom:923.325000px;}
.y64{bottom:932.325000px;}
.y9f{bottom:940.200000px;}
.y63{bottom:949.200000px;}
.y9e{bottom:958.245000px;}
.y62{bottom:966.120000px;}
.y9d{bottom:976.245000px;}
.y61{bottom:984.120000px;}
.y9c{bottom:994.275000px;}
.y60{bottom:1001.025000px;}
.y9b{bottom:1013.400000px;}
.y5f{bottom:1017.900000px;}
.y9a{bottom:1030.275000px;}
.y5e{bottom:1035.945000px;}
.ye{bottom:1040.445000px;}
.y99{bottom:1047.195000px;}
.y5d{bottom:1052.820000px;}
.y7{bottom:1065.195000px;}
.y98{bottom:1066.320000px;}
.y5c{bottom:1069.695000px;}
.y97{bottom:1084.350000px;}
.y5b{bottom:1087.725000px;}
.y96{bottom:1102.350000px;}
.y5a{bottom:1104.600000px;}
.y95{bottom:1120.380000px;}
.y59{bottom:1121.505000px;}
.y94{bottom:1137.255000px;}
.y58{bottom:1139.505000px;}
.y93{bottom:1154.130000px;}
.y57{bottom:1156.380000px;}
.y92{bottom:1172.175000px;}
.y56{bottom:1173.300000px;}
.y1{bottom:1191.300000px;}
.h1f{height:16.860000px;}
.h20{height:16.875000px;}
.h21{height:16.897500px;}
.h1e{height:16.912500px;}
.hb{height:24.750000px;}
.h13{height:30.412500px;}
.h3{height:32.625000px;}
.h11{height:35.806641px;}
.h8{height:37.125000px;}
.h1c{height:37.162500px;}
.h19{height:39.832031px;}
.h1b{height:40.847168px;}
.h1a{height:41.275635px;}
.h18{height:41.389893px;}
.h1d{height:42.589600px;}
.hd{height:43.075195px;}
.h12{height:43.453125px;}
.ha{height:43.875000px;}
.h17{height:47.074219px;}
.h16{height:49.234131px;}
.h5{height:53.709961px;}
.h9{height:54.000000px;}
.h4{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h6{height:69.114990px;}
.h2{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:154.275000px;}
.h15{height:499.950000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w3{width:74.362500px;}
.w4{width:152.055000px;}
.wb{width:185.850000px;}
.wd{width:186.975000px;}
.wc{width:187.020000px;}
.w7{width:223.020000px;}
.w9{width:373.950000px;}
.wa{width:373.995000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w2{width:674.745000px;}
.w6{width:747.945000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.875000px;}
.x3{left:9.037500px;}
.x13{left:12.420000px;}
.x2{left:72.075000px;}
.x5{left:73.237500px;}
.x1{left:81.112487px;}
.x6{left:97.987500px;}
.x10{left:106.987500px;}
.x1c{left:108.149987px;}
.x1e{left:113.774987px;}
.x1d{left:135.187487px;}
.x1f{left:140.812487px;}
.x14{left:162.224987px;}
.x17{left:188.099987px;}
.x11{left:214.012500px;}
.x7{left:225.300000px;}
.xe{left:238.807500px;}
.x15{left:255.719987px;}
.x18{left:260.220000px;}
.xb{left:290.625000px;}
.x12{left:296.250000px;}
.xf{left:307.507500px;}
.x9{left:345.780000px;}
.xa{left:364.950000px;}
.xd{left:373.957500px;}
.x16{left:447.195000px;}
.xc{left:453.945000px;}
.x19{left:634.200000px;}
.x1b{left:707.399987px;}
.x1a{left:726.569987px;}
.x4{left:746.820000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.421333pt;}
.lsa{letter-spacing:-0.704000pt;}
.lsc{letter-spacing:-0.693333pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.080000pt;}
.ls3{letter-spacing:0.088000pt;}
.lsb{letter-spacing:0.613333pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.365333pt;}
.ls4{letter-spacing:1.637333pt;}
.ls2{letter-spacing:1.648000pt;}
.lsf{letter-spacing:1.924000pt;}
.ls5{letter-spacing:2.000000pt;}
.ls6{letter-spacing:4.248000pt;}
.ls12{letter-spacing:13.544000pt;}
.ls11{letter-spacing:41.677333pt;}
.lse{letter-spacing:57.544000pt;}
.ls10{letter-spacing:57.677333pt;}
.ws7{word-spacing:-15.000000pt;}
.wsa{word-spacing:-14.924000pt;}
.ws4{word-spacing:-14.352000pt;}
.ws3{word-spacing:-13.648000pt;}
.ws5{word-spacing:-13.389333pt;}
.ws6{word-spacing:-13.000000pt;}
.ws8{word-spacing:-11.752000pt;}
.ws2{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.512000pt;}
.ws9{word-spacing:0.000000pt;}
._7{margin-left:-9.950400pt;}
._8{margin-left:-8.725200pt;}
._a{margin-left:-6.094000pt;}
._17{margin-left:-5.203333pt;}
._6{margin-left:-4.303333pt;}
._2{margin-left:-2.618667pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:2.698667pt;}
._4{width:3.834667pt;}
._15{width:5.442667pt;}
._12{width:6.864000pt;}
._9{width:7.758667pt;}
._5{width:8.762667pt;}
._d{width:10.109333pt;}
._c{width:11.386667pt;}
._b{width:14.852000pt;}
._16{width:15.781333pt;}
._13{width:18.064000pt;}
._14{width:19.092000pt;}
._e{width:22.680000pt;}
._f{width:23.692000pt;}
._11{width:34.473333pt;}
._10{width:39.592000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs2{font-size:60.000000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:1.000000pt;}
.y4{bottom:3.000000pt;}
.y4c{bottom:3.013333pt;}
.ya4{bottom:3.040000pt;}
.y18{bottom:4.000000pt;}
.yf{bottom:9.000000pt;}
.y4a{bottom:10.040000pt;}
.y1b{bottom:11.000000pt;}
.yd{bottom:13.026667pt;}
.y5{bottom:15.000000pt;}
.y3{bottom:17.000000pt;}
.y47{bottom:18.040000pt;}
.y4b{bottom:20.040000pt;}
.y17{bottom:22.026667pt;}
.y49{bottom:23.040000pt;}
.yc{bottom:27.026667pt;}
.y46{bottom:34.026667pt;}
.y16{bottom:40.026667pt;}
.yb{bottom:42.026667pt;}
.y15{bottom:49.026667pt;}
.y45{bottom:49.066667pt;}
.y6{bottom:51.033333pt;}
.y14{bottom:62.066667pt;}
.y44{bottom:64.066667pt;}
.ya{bottom:65.053333pt;}
.y2{bottom:72.066667pt;}
.y13{bottom:79.066667pt;}
.y43{bottom:80.066667pt;}
.y9{bottom:84.053333pt;}
.y42{bottom:95.106667pt;}
.y8{bottom:99.093333pt;}
.y12{bottom:102.093333pt;}
.y41{bottom:110.106667pt;}
.ye0{bottom:111.100000pt;}
.y91{bottom:117.100000pt;}
.y11{bottom:124.093333pt;}
.y40{bottom:126.133333pt;}
.ydf{bottom:127.100000pt;}
.ye7{bottom:129.100000pt;}
.y55{bottom:132.100000pt;}
.y90{bottom:133.100000pt;}
.y3f{bottom:141.133333pt;}
.yde{bottom:142.133333pt;}
.y54{bottom:148.133333pt;}
.y3e{bottom:156.133333pt;}
.ydd{bottom:157.133333pt;}
.ye6{bottom:162.133333pt;}
.y53{bottom:163.133333pt;}
.y8f{bottom:164.133333pt;}
.y3d{bottom:172.173333pt;}
.ydc{bottom:173.133333pt;}
.y52{bottom:178.133333pt;}
.y8e{bottom:180.173333pt;}
.y3c{bottom:187.173333pt;}
.ydb{bottom:188.173333pt;}
.y51{bottom:194.173333pt;}
.y8d{bottom:196.173333pt;}
.y3b{bottom:202.200000pt;}
.yda{bottom:203.173333pt;}
.y50{bottom:209.173333pt;}
.y2b{bottom:211.200000pt;}
.y8c{bottom:213.173333pt;}
.y3a{bottom:218.200000pt;}
.yd9{bottom:219.200000pt;}
.y2a{bottom:224.200000pt;}
.y8b{bottom:229.200000pt;}
.y39{bottom:233.200000pt;}
.yd8{bottom:234.200000pt;}
.y4f{bottom:240.200000pt;}
.y29{bottom:240.240000pt;}
.y8a{bottom:245.200000pt;}
.y38{bottom:248.240000pt;}
.yd7{bottom:249.200000pt;}
.y4e{bottom:255.226667pt;}
.y28{bottom:255.240000pt;}
.y89{bottom:261.226667pt;}
.ye5{bottom:262.240000pt;}
.y37{bottom:264.240000pt;}
.yd6{bottom:266.226667pt;}
.y4d{bottom:270.226667pt;}
.y27{bottom:270.240000pt;}
.y88{bottom:276.226667pt;}
.yb4{bottom:279.226667pt;}
.y36{bottom:279.266667pt;}
.yd5{bottom:282.226667pt;}
.y48{bottom:283.226667pt;}
.y26{bottom:286.266667pt;}
.y87{bottom:291.266667pt;}
.y35{bottom:294.266667pt;}
.ye4{bottom:296.266667pt;}
.yd4{bottom:298.266667pt;}
.y25{bottom:301.266667pt;}
.y86{bottom:307.266667pt;}
.y34{bottom:310.293333pt;}
.yd3{bottom:314.266667pt;}
.y1c{bottom:316.266667pt;}
.y24{bottom:317.306667pt;}
.y85{bottom:322.266667pt;}
.y33{bottom:325.293333pt;}
.ye3{bottom:329.293333pt;}
.yd2{bottom:330.293333pt;}
.y23{bottom:332.306667pt;}
.y84{bottom:337.306667pt;}
.y32{bottom:340.293333pt;}
.yd1{bottom:345.293333pt;}
.y22{bottom:348.333333pt;}
.y83{bottom:353.293333pt;}
.y31{bottom:356.333333pt;}
.yd0{bottom:361.306667pt;}
.ye2{bottom:362.293333pt;}
.y21{bottom:363.333333pt;}
.y82{bottom:368.333333pt;}
.y30{bottom:371.333333pt;}
.ycf{bottom:378.333333pt;}
.y20{bottom:379.333333pt;}
.y81{bottom:383.333333pt;}
.y2f{bottom:386.360000pt;}
.yce{bottom:394.333333pt;}
.y1f{bottom:394.360000pt;}
.ye1{bottom:396.333333pt;}
.y80{bottom:399.333333pt;}
.y2e{bottom:402.360000pt;}
.ycd{bottom:409.373333pt;}
.y7f{bottom:414.373333pt;}
.y2d{bottom:417.360000pt;}
.y1e{bottom:418.360000pt;}
.ycc{bottom:425.360000pt;}
.y7e{bottom:429.373333pt;}
.y2c{bottom:432.400000pt;}
.y1d{bottom:434.400000pt;}
.ycb{bottom:440.400000pt;}
.y7d{bottom:445.400000pt;}
.yca{bottom:455.400000pt;}
.y7c{bottom:460.400000pt;}
.yc9{bottom:471.400000pt;}
.y7b{bottom:475.426667pt;}
.yc8{bottom:486.440000pt;}
.y7a{bottom:491.440000pt;}
.yc7{bottom:501.440000pt;}
.y79{bottom:506.440000pt;}
.yb3{bottom:517.466667pt;}
.y78{bottom:521.466667pt;}
.yb2{bottom:530.466667pt;}
.yc6{bottom:533.466667pt;}
.y77{bottom:537.466667pt;}
.yb1{bottom:546.466667pt;}
.yc5{bottom:549.466667pt;}
.y76{bottom:552.506667pt;}
.yb0{bottom:562.506667pt;}
.yc4{bottom:564.506667pt;}
.y75{bottom:567.506667pt;}
.yaf{bottom:578.506667pt;}
.yc3{bottom:581.506667pt;}
.y74{bottom:583.506667pt;}
.yae{bottom:594.533333pt;}
.yc2{bottom:596.533333pt;}
.y73{bottom:598.533333pt;}
.yad{bottom:610.533333pt;}
.yc1{bottom:611.533333pt;}
.y72{bottom:613.533333pt;}
.yac{bottom:626.560000pt;}
.yc0{bottom:627.573333pt;}
.y71{bottom:629.560000pt;}
.ybf{bottom:642.573333pt;}
.y70{bottom:644.560000pt;}
.yab{bottom:645.573333pt;}
.ybe{bottom:657.573333pt;}
.y6f{bottom:659.560000pt;}
.yaa{bottom:660.573333pt;}
.ya9{bottom:673.600000pt;}
.y6e{bottom:674.600000pt;}
.ybd{bottom:688.600000pt;}
.ya8{bottom:689.600000pt;}
.y6d{bottom:690.600000pt;}
.ybc{bottom:703.626667pt;}
.y6c{bottom:705.626667pt;}
.ybb{bottom:719.626667pt;}
.y6b{bottom:720.626667pt;}
.ya7{bottom:721.626667pt;}
.yba{bottom:734.626667pt;}
.y6a{bottom:736.666667pt;}
.ya6{bottom:737.666667pt;}
.yb9{bottom:749.666667pt;}
.y69{bottom:751.666667pt;}
.ya5{bottom:753.666667pt;}
.y19{bottom:760.666667pt;}
.yb8{bottom:765.666667pt;}
.y68{bottom:766.666667pt;}
.ya3{bottom:769.666667pt;}
.yb7{bottom:780.706667pt;}
.y67{bottom:782.706667pt;}
.ya2{bottom:785.706667pt;}
.y10{bottom:787.706667pt;}
.yb6{bottom:795.706667pt;}
.y66{bottom:797.706667pt;}
.ya1{bottom:801.693333pt;}
.yb5{bottom:807.706667pt;}
.y65{bottom:812.733333pt;}
.ya0{bottom:820.733333pt;}
.y64{bottom:828.733333pt;}
.y9f{bottom:835.733333pt;}
.y63{bottom:843.733333pt;}
.y9e{bottom:851.773333pt;}
.y62{bottom:858.773333pt;}
.y9d{bottom:867.773333pt;}
.y61{bottom:874.773333pt;}
.y9c{bottom:883.800000pt;}
.y60{bottom:889.800000pt;}
.y9b{bottom:900.800000pt;}
.y5f{bottom:904.800000pt;}
.y9a{bottom:915.800000pt;}
.y5e{bottom:920.840000pt;}
.ye{bottom:924.840000pt;}
.y99{bottom:930.840000pt;}
.y5d{bottom:935.840000pt;}
.y7{bottom:946.840000pt;}
.y98{bottom:947.840000pt;}
.y5c{bottom:950.840000pt;}
.y97{bottom:963.866667pt;}
.y5b{bottom:966.866667pt;}
.y96{bottom:979.866667pt;}
.y5a{bottom:981.866667pt;}
.y95{bottom:995.893333pt;}
.y59{bottom:996.893333pt;}
.y94{bottom:1010.893333pt;}
.y58{bottom:1012.893333pt;}
.y93{bottom:1025.893333pt;}
.y57{bottom:1027.893333pt;}
.y92{bottom:1041.933333pt;}
.y56{bottom:1042.933333pt;}
.y1{bottom:1058.933333pt;}
.h1f{height:14.986667pt;}
.h20{height:15.000000pt;}
.h21{height:15.020000pt;}
.h1e{height:15.033333pt;}
.hb{height:22.000000pt;}
.h13{height:27.033333pt;}
.h3{height:29.000000pt;}
.h11{height:31.828125pt;}
.h8{height:33.000000pt;}
.h1c{height:33.033333pt;}
.h19{height:35.406250pt;}
.h1b{height:36.308594pt;}
.h1a{height:36.689453pt;}
.h18{height:36.791016pt;}
.h1d{height:37.857422pt;}
.hd{height:38.289062pt;}
.h12{height:38.625000pt;}
.ha{height:39.000000pt;}
.h17{height:41.843750pt;}
.h16{height:43.763672pt;}
.h5{height:47.742188pt;}
.h9{height:48.000000pt;}
.h4{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h6{height:61.435547pt;}
.h2{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:137.133333pt;}
.h15{height:444.400000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w3{width:66.100000pt;}
.w4{width:135.160000pt;}
.wb{width:165.200000pt;}
.wd{width:166.200000pt;}
.wc{width:166.240000pt;}
.w7{width:198.240000pt;}
.w9{width:332.400000pt;}
.wa{width:332.440000pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w2{width:599.773333pt;}
.w6{width:664.840000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.000000pt;}
.x3{left:8.033333pt;}
.x13{left:11.040000pt;}
.x2{left:64.066667pt;}
.x5{left:65.100000pt;}
.x1{left:72.099988pt;}
.x6{left:87.100000pt;}
.x10{left:95.100000pt;}
.x1c{left:96.133322pt;}
.x1e{left:101.133322pt;}
.x1d{left:120.166655pt;}
.x1f{left:125.166655pt;}
.x14{left:144.199988pt;}
.x17{left:167.199988pt;}
.x11{left:190.233333pt;}
.x7{left:200.266667pt;}
.xe{left:212.273333pt;}
.x15{left:227.306655pt;}
.x18{left:231.306667pt;}
.xb{left:258.333333pt;}
.x12{left:263.333333pt;}
.xf{left:273.340000pt;}
.x9{left:307.360000pt;}
.xa{left:324.400000pt;}
.xd{left:332.406667pt;}
.x16{left:397.506667pt;}
.xc{left:403.506667pt;}
.x19{left:563.733333pt;}
.x1b{left:628.799988pt;}
.x1a{left:645.839988pt;}
.x4{left:663.840000pt;}
}




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