
    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_6db4447d0ad0b3025cd171a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.907715;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_b1081ae0274fd6a81c4da4b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_f7d8baefdd7dfce8914cc079.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9e0c59f9941b7d0dc2b738ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.764160;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_a96d0c2ad9999cd64e3ec4e7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_d96465d7fa65c0100cfa6090.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_2c37b2195b24f6cf095863e3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_357ac4f739a3c23a5fcb3f13.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a834174802819ee711a096ec.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9ea3a1ee25ca52bfecbad5e9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8b519dba5a2c2a713742e615.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d3a5f054f70a3806ef2e0a39.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940918;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_ba545ea6b6b5254a220e33b9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.401855;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.fff{font-family:fff;line-height:0.682617;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;}
.ls2c{letter-spacing:-0.900000px;}
.ls2a{letter-spacing:-0.852000px;}
.lse{letter-spacing:-0.363000px;}
.lsc{letter-spacing:-0.322800px;}
.ls2b{letter-spacing:-0.310800px;}
.ls29{letter-spacing:-0.291000px;}
.ls3{letter-spacing:-0.266400px;}
.ls2d{letter-spacing:-0.178800px;}
.ls2f{letter-spacing:-0.175800px;}
.lsa{letter-spacing:-0.115800px;}
.lsd{letter-spacing:-0.058320px;}
.ls31{letter-spacing:-0.025920px;}
.ls2{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.040320px;}
.ls9{letter-spacing:0.060480px;}
.ls7{letter-spacing:0.060600px;}
.ls17{letter-spacing:0.077760px;}
.ls1f{letter-spacing:0.108480px;}
.ls30{letter-spacing:0.129600px;}
.ls10{letter-spacing:0.132480px;}
.ls27{letter-spacing:0.150000px;}
.ls19{letter-spacing:0.174240px;}
.ls4{letter-spacing:0.256200px;}
.ls15{letter-spacing:0.256320px;}
.ls1a{letter-spacing:0.313800px;}
.lsb{letter-spacing:0.936000px;}
.ls20{letter-spacing:3.749760px;}
.ls12{letter-spacing:5.345280px;}
.ls1e{letter-spacing:6.629760px;}
.ls1c{letter-spacing:9.509760px;}
.ls1d{letter-spacing:14.549760px;}
.ls21{letter-spacing:17.429760px;}
.ls1b{letter-spacing:28.385280px;}
.ls14{letter-spacing:37.001280px;}
.ls11{letter-spacing:38.465280px;}
.ls25{letter-spacing:39.161280px;}
.ls2e{letter-spacing:48.545280px;}
.ls26{letter-spacing:49.985280px;}
.ls13{letter-spacing:56.465280px;}
.ls18{letter-spacing:57.881280px;}
.lsf{letter-spacing:59.321280px;}
.ls0{letter-spacing:60.489360px;}
.ls8{letter-spacing:61.349760px;}
.ls22{letter-spacing:62.201280px;}
.ls24{letter-spacing:67.961280px;}
.ls23{letter-spacing:69.401280px;}
.ls16{letter-spacing:78.065280px;}
.ls5{letter-spacing:86.549760px;}
.ls6{letter-spacing:106.685760px;}
.ls1{letter-spacing:846.006240px;}
.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;}
}
.wsc{word-spacing:-66.240000px;}
.ws1{word-spacing:-45.966240px;}
.ws13{word-spacing:-15.284040px;}
.ws2{word-spacing:-15.226440px;}
.ws14{word-spacing:-15.099840px;}
.wse{word-spacing:-15.010560px;}
.wsd{word-spacing:-14.970240px;}
.ws15{word-spacing:-14.944320px;}
.wsf{word-spacing:-14.679240px;}
.ws12{word-spacing:-14.659440px;}
.ws6{word-spacing:-14.441760px;}
.ws10{word-spacing:-14.118240px;}
.ws7{word-spacing:-13.566360px;}
.ws5{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.447440px;}
.ws4{word-spacing:-13.389960px;}
.wsb{word-spacing:-13.142760px;}
.ws9{word-spacing:-10.902240px;}
.ws8{word-spacing:-10.579440px;}
.ws11{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:43.326000px;}
._9{margin-left:-12.168360px;}
._8{margin-left:-10.539720px;}
._7{margin-left:-6.880080px;}
._6{margin-left:-5.416320px;}
._4{margin-left:-3.690720px;}
._3{margin-left:-2.684160px;}
._5{margin-left:-1.342080px;}
._0{width:1.195200px;}
._2{width:2.270640px;}
._c{width:4.170720px;}
._b{width:5.232960px;}
._11{width:6.324480px;}
._12{width:8.272800px;}
._19{width:9.332160px;}
._13{width:10.431360px;}
._14{width:11.522880px;}
._18{width:12.737760px;}
._17{width:13.777920px;}
._1a{width:16.493760px;}
._1b{width:17.652000px;}
._1c{width:20.324160px;}
._15{width:22.023360px;}
._16{width:24.052320px;}
._e{width:25.701120px;}
._f{width:29.609280px;}
._10{width:31.199040px;}
._1{width:60.716160px;}
._a{width:846.006240px;}
._d{width:849.185760px;}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(255,0,0);}
.fc0{color:rgb(146,208,80);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.780000px;}
.y14{bottom:4.500000px;}
.y10{bottom:10.440000px;}
.y3{bottom:12.960000px;}
.y2{bottom:32.940000px;}
.y7{bottom:57.420000px;}
.yf{bottom:66.240000px;}
.y5{bottom:73.080000px;}
.yad{bottom:111.780000px;}
.y83{bottom:115.200000px;}
.ye{bottom:122.220000px;}
.yac{bottom:130.140000px;}
.yab{bottom:135.360000px;}
.y82{bottom:136.980000px;}
.yaa{bottom:148.536000px;}
.ya9{bottom:166.710000px;}
.y81{bottom:170.670000px;}
.ya8{bottom:171.930000px;}
.yd{bottom:178.020000px;}
.y80{bottom:192.450000px;}
.ya7{bottom:199.110000px;}
.y19{bottom:201.090000px;}
.y7f{bottom:227.010000px;}
.ya6{bottom:242.130000px;}
.y18{bottom:245.010000px;}
.y7e{bottom:254.910000px;}
.ya5{bottom:263.910000px;}
.y17{bottom:278.670000px;}
.y4d{bottom:282.090000px;}
.y16{bottom:295.230000px;}
.ya4{bottom:295.950000px;}
.y4c{bottom:315.750000px;}
.y15{bottom:316.110000px;}
.ya3{bottom:317.730000px;}
.y4b{bottom:335.910000px;}
.y13{bottom:336.990000px;}
.ya2{bottom:339.510000px;}
.y4a{bottom:356.070000px;}
.ya1{bottom:371.730000px;}
.y12{bottom:375.870000px;}
.y49{bottom:376.230000px;}
.ya0{bottom:391.890000px;}
.y48{bottom:396.435000px;}
.y11{bottom:409.755000px;}
.y9f{bottom:411.915000px;}
.y47{bottom:416.595000px;}
.yc{bottom:425.415000px;}
.y9e{bottom:432.075000px;}
.y46{bottom:436.755000px;}
.y9c{bottom:452.235000px;}
.y45{bottom:456.915000px;}
.y9d{bottom:458.175000px;}
.y9b{bottom:472.395000px;}
.y44{bottom:477.075000px;}
.yd0{bottom:482.655000px;}
.y66{bottom:486.975000px;}
.y9a{bottom:492.555000px;}
.y7d{bottom:494.715000px;}
.y43{bottom:497.235000px;}
.ycf{bottom:504.435000px;}
.y65{bottom:507.135000px;}
.y99{bottom:512.715000px;}
.y7c{bottom:516.315000px;}
.y42{bottom:517.395000px;}
.yce{bottom:526.215000px;}
.y64{bottom:527.295000px;}
.y98{bottom:532.875000px;}
.y63{bottom:547.455000px;}
.ycd{bottom:547.995000px;}
.y7b{bottom:548.535000px;}
.y97{bottom:554.475000px;}
.y41{bottom:556.995000px;}
.y62{bottom:567.615000px;}
.y7a{bottom:568.695000px;}
.ycc{bottom:583.995000px;}
.y96{bottom:586.695000px;}
.y61{bottom:587.775000px;}
.y79{bottom:588.855000px;}
.y40{bottom:595.155000px;}
.y94{bottom:606.855000px;}
.y60{bottom:607.935000px;}
.y95{bottom:612.795000px;}
.y3f{bottom:616.215000px;}
.y2a{bottom:618.015000px;}
.y78{bottom:621.795000px;}
.y93{bottom:627.015000px;}
.y5f{bottom:628.095000px;}
.ycb{bottom:632.055000px;}
.y3e{bottom:637.275000px;}
.y77{bottom:641.985000px;}
.y5e{bottom:648.285000px;}
.yb{bottom:648.825000px;}
.yca{bottom:651.705000px;}
.y29{bottom:653.685000px;}
.y3d{bottom:658.365000px;}
.y76{bottom:662.145000px;}
.y5d{bottom:668.445000px;}
.y92{bottom:670.425000px;}
.y28{bottom:676.905000px;}
.y3c{bottom:679.245000px;}
.yc9{bottom:684.285000px;}
.ya{bottom:686.085000px;}
.y5c{bottom:688.605000px;}
.y27{bottom:696.525000px;}
.y75{bottom:696.705000px;}
.y3b{bottom:700.305000px;}
.yc8{bottom:705.885000px;}
.y91{bottom:706.605000px;}
.y3a{bottom:721.365000px;}
.y5b{bottom:724.425000px;}
.y26{bottom:725.325000px;}
.yc7{bottom:727.665000px;}
.y74{bottom:730.545000px;}
.y39{bottom:742.425000px;}
.y5a{bottom:746.205000px;}
.yc6{bottom:749.445000px;}
.y73{bottom:752.145000px;}
.y25{bottom:754.125000px;}
.y90{bottom:755.205000px;}
.y38{bottom:763.305000px;}
.yc5{bottom:771.225000px;}
.y24{bottom:773.925000px;}
.y8f{bottom:776.985000px;}
.y59{bottom:782.205000px;}
.y37{bottom:784.365000px;}
.ybc{bottom:787.245000px;}
.yc4{bottom:792.825000px;}
.y23{bottom:793.725000px;}
.y72{bottom:795.705000px;}
.y8e{bottom:798.765000px;}
.y58{bottom:803.985000px;}
.y36{bottom:805.425000px;}
.y22{bottom:813.345000px;}
.y71{bottom:817.485000px;}
.ybb{bottom:821.085000px;}
.y57{bottom:825.765000px;}
.yc3{bottom:826.125000px;}
.y35{bottom:826.485000px;}
.y8d{bottom:832.425000px;}
.y21{bottom:842.145000px;}
.yc2{bottom:845.745000px;}
.y56{bottom:847.365000px;}
.y34{bottom:847.545000px;}
.yba{bottom:853.125000px;}
.y70{bottom:853.485000px;}
.y8c{bottom:854.205000px;}
.y33{bottom:868.425000px;}
.y55{bottom:869.145000px;}
.y20{bottom:870.945000px;}
.yb9{bottom:873.285000px;}
.y6f{bottom:875.085000px;}
.y8b{bottom:875.805000px;}
.yc1{bottom:878.145000px;}
.y32{bottom:889.485000px;}
.yb8{bottom:893.490000px;}
.y1f{bottom:899.790000px;}
.yc0{bottom:899.970000px;}
.y54{bottom:902.850000px;}
.y8a{bottom:909.690000px;}
.y31{bottom:910.590000px;}
.y6e{bottom:911.130000px;}
.yb7{bottom:913.650000px;}
.ybf{bottom:921.750000px;}
.y53{bottom:924.630000px;}
.y1e{bottom:928.410000px;}
.y89{bottom:931.470000px;}
.y30{bottom:931.650000px;}
.y6d{bottom:932.910000px;}
.yb6{bottom:933.810000px;}
.ybe{bottom:943.350000px;}
.y52{bottom:946.410000px;}
.y88{bottom:953.070000px;}
.yb5{bottom:953.970000px;}
.y6c{bottom:954.690000px;}
.y1d{bottom:957.210000px;}
.ybd{bottom:965.130000px;}
.y2f{bottom:972.330000px;}
.yb4{bottom:974.130000px;}
.y6b{bottom:976.470000px;}
.y51{bottom:980.070000px;}
.y1c{bottom:986.010000px;}
.y87{bottom:986.910000px;}
.yb3{bottom:994.290000px;}
.y50{bottom:1001.850000px;}
.y86{bottom:1008.690000px;}
.y6a{bottom:1010.130000px;}
.y2e{bottom:1011.930000px;}
.yb2{bottom:1014.450000px;}
.y1b{bottom:1022.010000px;}
.y4f{bottom:1023.630000px;}
.y85{bottom:1030.290000px;}
.y69{bottom:1031.910000px;}
.y2d{bottom:1033.710000px;}
.yb1{bottom:1034.610000px;}
.y4e{bottom:1045.410000px;}
.y68{bottom:1053.690000px;}
.yb0{bottom:1054.590000px;}
.y84{bottom:1066.290000px;}
.y2c{bottom:1073.490000px;}
.yaf{bottom:1074.750000px;}
.y67{bottom:1075.290000px;}
.y9{bottom:1081.410000px;}
.yae{bottom:1094.910000px;}
.y1a{bottom:1104.810000px;}
.y2b{bottom:1112.910000px;}
.y8{bottom:1115.070000px;}
.y4{bottom:1135.230000px;}
.y1{bottom:1151.640000px;}
.h6{height:19.980000px;}
.hc{height:20.160000px;}
.h9{height:37.260000px;}
.h15{height:38.671172px;}
.h14{height:41.535703px;}
.h3{height:43.681992px;}
.h12{height:45.637031px;}
.h4{height:51.677227px;}
.he{height:57.280781px;}
.h2{height:58.140000px;}
.h16{height:59.439023px;}
.hd{height:63.344531px;}
.h5{height:65.884219px;}
.h13{height:66.757500px;}
.hf{height:67.824844px;}
.h10{height:68.084282px;}
.h11{height:68.956875px;}
.h8{height:72.007031px;}
.hb{height:145.069805px;}
.ha{height:223.410000px;}
.h7{height:377.130000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:84.096000px;}
.w9{width:265.530000px;}
.w2{width:290.370000px;}
.w6{width:324.030000px;}
.w5{width:352.695000px;}
.w3{width:397.695000px;}
.w7{width:656.205000px;}
.wa{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x1{left:97.416000px;}
.x4{left:105.330000px;}
.x6{left:108.035987px;}
.x1f{left:112.895987px;}
.x17{left:116.135987px;}
.x13{left:123.515987px;}
.x10{left:124.595987px;}
.xa{left:128.916000px;}
.x12{left:135.035987px;}
.x11{left:140.975987px;}
.x14{left:150.509987px;}
.x15{left:162.029987px;}
.x1a{left:189.029987px;}
.x1d{left:216.029987px;}
.x5{left:219.630000px;}
.x2{left:281.199000px;}
.x9{left:285.705000px;}
.x1e{left:324.074987px;}
.x3{left:387.795000px;}
.xd{left:434.055000px;}
.x8{left:460.365000px;}
.xb{left:513.114000px;}
.xe{left:518.865000px;}
.x18{left:613.364973px;}
.x19{left:618.584987px;}
.x16{left:649.049987px;}
.x1b{left:685.229973px;}
.x1c{left:690.449987px;}
.xc{left:713.664000px;}
.xf{left:777.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2c{letter-spacing:-0.800000pt;}
.ls2a{letter-spacing:-0.757333pt;}
.lse{letter-spacing:-0.322667pt;}
.lsc{letter-spacing:-0.286933pt;}
.ls2b{letter-spacing:-0.276267pt;}
.ls29{letter-spacing:-0.258667pt;}
.ls3{letter-spacing:-0.236800pt;}
.ls2d{letter-spacing:-0.158933pt;}
.ls2f{letter-spacing:-0.156267pt;}
.lsa{letter-spacing:-0.102933pt;}
.lsd{letter-spacing:-0.051840pt;}
.ls31{letter-spacing:-0.023040pt;}
.ls2{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.035840pt;}
.ls9{letter-spacing:0.053760pt;}
.ls7{letter-spacing:0.053867pt;}
.ls17{letter-spacing:0.069120pt;}
.ls1f{letter-spacing:0.096427pt;}
.ls30{letter-spacing:0.115200pt;}
.ls10{letter-spacing:0.117760pt;}
.ls27{letter-spacing:0.133333pt;}
.ls19{letter-spacing:0.154880pt;}
.ls4{letter-spacing:0.227733pt;}
.ls15{letter-spacing:0.227840pt;}
.ls1a{letter-spacing:0.278933pt;}
.lsb{letter-spacing:0.832000pt;}
.ls20{letter-spacing:3.333120pt;}
.ls12{letter-spacing:4.751360pt;}
.ls1e{letter-spacing:5.893120pt;}
.ls1c{letter-spacing:8.453120pt;}
.ls1d{letter-spacing:12.933120pt;}
.ls21{letter-spacing:15.493120pt;}
.ls1b{letter-spacing:25.231360pt;}
.ls14{letter-spacing:32.890027pt;}
.ls11{letter-spacing:34.191360pt;}
.ls25{letter-spacing:34.810027pt;}
.ls2e{letter-spacing:43.151360pt;}
.ls26{letter-spacing:44.431360pt;}
.ls13{letter-spacing:50.191360pt;}
.ls18{letter-spacing:51.450027pt;}
.lsf{letter-spacing:52.730027pt;}
.ls0{letter-spacing:53.768320pt;}
.ls8{letter-spacing:54.533120pt;}
.ls22{letter-spacing:55.290027pt;}
.ls24{letter-spacing:60.410027pt;}
.ls23{letter-spacing:61.690027pt;}
.ls16{letter-spacing:69.391360pt;}
.ls5{letter-spacing:76.933120pt;}
.ls6{letter-spacing:94.831787pt;}
.ls1{letter-spacing:752.005547pt;}
.wsc{word-spacing:-58.880000pt;}
.ws1{word-spacing:-40.858880pt;}
.ws13{word-spacing:-13.585813pt;}
.ws2{word-spacing:-13.534613pt;}
.ws14{word-spacing:-13.422080pt;}
.wse{word-spacing:-13.342720pt;}
.wsd{word-spacing:-13.306880pt;}
.ws15{word-spacing:-13.283840pt;}
.wsf{word-spacing:-13.048213pt;}
.ws12{word-spacing:-13.030613pt;}
.ws6{word-spacing:-12.837120pt;}
.ws10{word-spacing:-12.549547pt;}
.ws7{word-spacing:-12.058987pt;}
.ws5{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.953280pt;}
.ws4{word-spacing:-11.902187pt;}
.wsb{word-spacing:-11.682453pt;}
.ws9{word-spacing:-9.690880pt;}
.ws8{word-spacing:-9.403947pt;}
.ws11{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:38.512000pt;}
._9{margin-left:-10.816320pt;}
._8{margin-left:-9.368640pt;}
._7{margin-left:-6.115627pt;}
._6{margin-left:-4.814507pt;}
._4{margin-left:-3.280640pt;}
._3{margin-left:-2.385920pt;}
._5{margin-left:-1.192960pt;}
._0{width:1.062400pt;}
._2{width:2.018347pt;}
._c{width:3.707307pt;}
._b{width:4.651520pt;}
._11{width:5.621760pt;}
._12{width:7.353600pt;}
._19{width:8.295253pt;}
._13{width:9.272320pt;}
._14{width:10.242560pt;}
._18{width:11.322453pt;}
._17{width:12.247040pt;}
._1a{width:14.661120pt;}
._1b{width:15.690667pt;}
._1c{width:18.065920pt;}
._15{width:19.576320pt;}
._16{width:21.379840pt;}
._e{width:22.845440pt;}
._f{width:26.319360pt;}
._10{width:27.732480pt;}
._1{width:53.969920pt;}
._a{width:752.005547pt;}
._d{width:754.831787pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.360000pt;}
.y14{bottom:4.000000pt;}
.y10{bottom:9.280000pt;}
.y3{bottom:11.520000pt;}
.y2{bottom:29.280000pt;}
.y7{bottom:51.040000pt;}
.yf{bottom:58.880000pt;}
.y5{bottom:64.960000pt;}
.yad{bottom:99.360000pt;}
.y83{bottom:102.400000pt;}
.ye{bottom:108.640000pt;}
.yac{bottom:115.680000pt;}
.yab{bottom:120.320000pt;}
.y82{bottom:121.760000pt;}
.yaa{bottom:132.032000pt;}
.ya9{bottom:148.186667pt;}
.y81{bottom:151.706667pt;}
.ya8{bottom:152.826667pt;}
.yd{bottom:158.240000pt;}
.y80{bottom:171.066667pt;}
.ya7{bottom:176.986667pt;}
.y19{bottom:178.746667pt;}
.y7f{bottom:201.786667pt;}
.ya6{bottom:215.226667pt;}
.y18{bottom:217.786667pt;}
.y7e{bottom:226.586667pt;}
.ya5{bottom:234.586667pt;}
.y17{bottom:247.706667pt;}
.y4d{bottom:250.746667pt;}
.y16{bottom:262.426667pt;}
.ya4{bottom:263.066667pt;}
.y4c{bottom:280.666667pt;}
.y15{bottom:280.986667pt;}
.ya3{bottom:282.426667pt;}
.y4b{bottom:298.586667pt;}
.y13{bottom:299.546667pt;}
.ya2{bottom:301.786667pt;}
.y4a{bottom:316.506667pt;}
.ya1{bottom:330.426667pt;}
.y12{bottom:334.106667pt;}
.y49{bottom:334.426667pt;}
.ya0{bottom:348.346667pt;}
.y48{bottom:352.386667pt;}
.y11{bottom:364.226667pt;}
.y9f{bottom:366.146667pt;}
.y47{bottom:370.306667pt;}
.yc{bottom:378.146667pt;}
.y9e{bottom:384.066667pt;}
.y46{bottom:388.226667pt;}
.y9c{bottom:401.986667pt;}
.y45{bottom:406.146667pt;}
.y9d{bottom:407.266667pt;}
.y9b{bottom:419.906667pt;}
.y44{bottom:424.066667pt;}
.yd0{bottom:429.026667pt;}
.y66{bottom:432.866667pt;}
.y9a{bottom:437.826667pt;}
.y7d{bottom:439.746667pt;}
.y43{bottom:441.986667pt;}
.ycf{bottom:448.386667pt;}
.y65{bottom:450.786667pt;}
.y99{bottom:455.746667pt;}
.y7c{bottom:458.946667pt;}
.y42{bottom:459.906667pt;}
.yce{bottom:467.746667pt;}
.y64{bottom:468.706667pt;}
.y98{bottom:473.666667pt;}
.y63{bottom:486.626667pt;}
.ycd{bottom:487.106667pt;}
.y7b{bottom:487.586667pt;}
.y97{bottom:492.866667pt;}
.y41{bottom:495.106667pt;}
.y62{bottom:504.546667pt;}
.y7a{bottom:505.506667pt;}
.ycc{bottom:519.106667pt;}
.y96{bottom:521.506667pt;}
.y61{bottom:522.466667pt;}
.y79{bottom:523.426667pt;}
.y40{bottom:529.026667pt;}
.y94{bottom:539.426667pt;}
.y60{bottom:540.386667pt;}
.y95{bottom:544.706667pt;}
.y3f{bottom:547.746667pt;}
.y2a{bottom:549.346667pt;}
.y78{bottom:552.706667pt;}
.y93{bottom:557.346667pt;}
.y5f{bottom:558.306667pt;}
.ycb{bottom:561.826667pt;}
.y3e{bottom:566.466667pt;}
.y77{bottom:570.653333pt;}
.y5e{bottom:576.253333pt;}
.yb{bottom:576.733333pt;}
.yca{bottom:579.293333pt;}
.y29{bottom:581.053333pt;}
.y3d{bottom:585.213333pt;}
.y76{bottom:588.573333pt;}
.y5d{bottom:594.173333pt;}
.y92{bottom:595.933333pt;}
.y28{bottom:601.693333pt;}
.y3c{bottom:603.773333pt;}
.yc9{bottom:608.253333pt;}
.ya{bottom:609.853333pt;}
.y5c{bottom:612.093333pt;}
.y27{bottom:619.133333pt;}
.y75{bottom:619.293333pt;}
.y3b{bottom:622.493333pt;}
.yc8{bottom:627.453333pt;}
.y91{bottom:628.093333pt;}
.y3a{bottom:641.213333pt;}
.y5b{bottom:643.933333pt;}
.y26{bottom:644.733333pt;}
.yc7{bottom:646.813333pt;}
.y74{bottom:649.373333pt;}
.y39{bottom:659.933333pt;}
.y5a{bottom:663.293333pt;}
.yc6{bottom:666.173333pt;}
.y73{bottom:668.573333pt;}
.y25{bottom:670.333333pt;}
.y90{bottom:671.293333pt;}
.y38{bottom:678.493333pt;}
.yc5{bottom:685.533333pt;}
.y24{bottom:687.933333pt;}
.y8f{bottom:690.653333pt;}
.y59{bottom:695.293333pt;}
.y37{bottom:697.213333pt;}
.ybc{bottom:699.773333pt;}
.yc4{bottom:704.733333pt;}
.y23{bottom:705.533333pt;}
.y72{bottom:707.293333pt;}
.y8e{bottom:710.013333pt;}
.y58{bottom:714.653333pt;}
.y36{bottom:715.933333pt;}
.y22{bottom:722.973333pt;}
.y71{bottom:726.653333pt;}
.ybb{bottom:729.853333pt;}
.y57{bottom:734.013333pt;}
.yc3{bottom:734.333333pt;}
.y35{bottom:734.653333pt;}
.y8d{bottom:739.933333pt;}
.y21{bottom:748.573333pt;}
.yc2{bottom:751.773333pt;}
.y56{bottom:753.213333pt;}
.y34{bottom:753.373333pt;}
.yba{bottom:758.333333pt;}
.y70{bottom:758.653333pt;}
.y8c{bottom:759.293333pt;}
.y33{bottom:771.933333pt;}
.y55{bottom:772.573333pt;}
.y20{bottom:774.173333pt;}
.yb9{bottom:776.253333pt;}
.y6f{bottom:777.853333pt;}
.y8b{bottom:778.493333pt;}
.yc1{bottom:780.573333pt;}
.y32{bottom:790.653333pt;}
.yb8{bottom:794.213333pt;}
.y1f{bottom:799.813333pt;}
.yc0{bottom:799.973333pt;}
.y54{bottom:802.533333pt;}
.y8a{bottom:808.613333pt;}
.y31{bottom:809.413333pt;}
.y6e{bottom:809.893333pt;}
.yb7{bottom:812.133333pt;}
.ybf{bottom:819.333333pt;}
.y53{bottom:821.893333pt;}
.y1e{bottom:825.253333pt;}
.y89{bottom:827.973333pt;}
.y30{bottom:828.133333pt;}
.y6d{bottom:829.253333pt;}
.yb6{bottom:830.053333pt;}
.ybe{bottom:838.533333pt;}
.y52{bottom:841.253333pt;}
.y88{bottom:847.173333pt;}
.yb5{bottom:847.973333pt;}
.y6c{bottom:848.613333pt;}
.y1d{bottom:850.853333pt;}
.ybd{bottom:857.893333pt;}
.y2f{bottom:864.293333pt;}
.yb4{bottom:865.893333pt;}
.y6b{bottom:867.973333pt;}
.y51{bottom:871.173333pt;}
.y1c{bottom:876.453333pt;}
.y87{bottom:877.253333pt;}
.yb3{bottom:883.813333pt;}
.y50{bottom:890.533333pt;}
.y86{bottom:896.613333pt;}
.y6a{bottom:897.893333pt;}
.y2e{bottom:899.493333pt;}
.yb2{bottom:901.733333pt;}
.y1b{bottom:908.453333pt;}
.y4f{bottom:909.893333pt;}
.y85{bottom:915.813333pt;}
.y69{bottom:917.253333pt;}
.y2d{bottom:918.853333pt;}
.yb1{bottom:919.653333pt;}
.y4e{bottom:929.253333pt;}
.y68{bottom:936.613333pt;}
.yb0{bottom:937.413333pt;}
.y84{bottom:947.813333pt;}
.y2c{bottom:954.213333pt;}
.yaf{bottom:955.333333pt;}
.y67{bottom:955.813333pt;}
.y9{bottom:961.253333pt;}
.yae{bottom:973.253333pt;}
.y1a{bottom:982.053333pt;}
.y2b{bottom:989.253333pt;}
.y8{bottom:991.173333pt;}
.y4{bottom:1009.093333pt;}
.y1{bottom:1023.680000pt;}
.h6{height:17.760000pt;}
.hc{height:17.920000pt;}
.h9{height:33.120000pt;}
.h15{height:34.374375pt;}
.h14{height:36.920625pt;}
.h3{height:38.828437pt;}
.h12{height:40.566250pt;}
.h4{height:45.935313pt;}
.he{height:50.916250pt;}
.h2{height:51.680000pt;}
.h16{height:52.834688pt;}
.hd{height:56.306250pt;}
.h5{height:58.563750pt;}
.h13{height:59.340000pt;}
.hf{height:60.288750pt;}
.h10{height:60.519362pt;}
.h11{height:61.295000pt;}
.h8{height:64.006250pt;}
.hb{height:128.950937pt;}
.ha{height:198.586667pt;}
.h7{height:335.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:74.752000pt;}
.w9{width:236.026667pt;}
.w2{width:258.106667pt;}
.w6{width:288.026667pt;}
.w5{width:313.506667pt;}
.w3{width:353.506667pt;}
.w7{width:583.293333pt;}
.wa{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x1{left:86.592000pt;}
.x4{left:93.626667pt;}
.x6{left:96.031988pt;}
.x1f{left:100.351988pt;}
.x17{left:103.231988pt;}
.x13{left:109.791988pt;}
.x10{left:110.751988pt;}
.xa{left:114.592000pt;}
.x12{left:120.031988pt;}
.x11{left:125.311988pt;}
.x14{left:133.786655pt;}
.x15{left:144.026655pt;}
.x1a{left:168.026655pt;}
.x1d{left:192.026655pt;}
.x5{left:195.226667pt;}
.x2{left:249.954667pt;}
.x9{left:253.960000pt;}
.x1e{left:288.066655pt;}
.x3{left:344.706667pt;}
.xd{left:385.826667pt;}
.x8{left:409.213333pt;}
.xb{left:456.101333pt;}
.xe{left:461.213333pt;}
.x18{left:545.213310pt;}
.x19{left:549.853322pt;}
.x16{left:576.933322pt;}
.x1b{left:609.093310pt;}
.x1c{left:613.733322pt;}
.xc{left:634.368000pt;}
.xf{left:691.493322pt;}
}




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