
    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_5a946b87905fa05c2ff393f3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_07928b096fdd8e78c065c515.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1214f7a16bfdeb6258af1515.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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_beb23834df0d3776a713b917.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls17{letter-spacing:-0.966000px;}
.lsf{letter-spacing:-0.960000px;}
.ls10{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls11{letter-spacing:-0.431400px;}
.lsa{letter-spacing:-0.414000px;}
.lsc{letter-spacing:-0.326400px;}
.ls7{letter-spacing:-0.226200px;}
.ls4{letter-spacing:-0.132600px;}
.ls8{letter-spacing:-0.115800px;}
.ls1b{letter-spacing:-0.107400px;}
.ls9{letter-spacing:-0.064800px;}
.ls13{letter-spacing:-0.058320px;}
.ls18{letter-spacing:-0.049680px;}
.ls14{letter-spacing:-0.041040px;}
.ls1f{letter-spacing:-0.038160px;}
.ls2{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.023760px;}
.ls3{letter-spacing:0.038880px;}
.ls15{letter-spacing:0.064200px;}
.lsb{letter-spacing:0.140400px;}
.ls6{letter-spacing:0.150000px;}
.ls16{letter-spacing:0.174000px;}
.ls20{letter-spacing:0.306000px;}
.ls1{letter-spacing:0.617760px;}
.ls19{letter-spacing:0.762000px;}
.ls12{letter-spacing:2.106720px;}
.lse{letter-spacing:5.706720px;}
.ls1e{letter-spacing:12.186720px;}
.ls1c{letter-spacing:17.946720px;}
.lsd{letter-spacing:21.546720px;}
.ls0{letter-spacing:38.106720px;}
.ls1d{letter-spacing:42.570720px;}
.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;}
}
.ws4{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws9{word-spacing:-13.646160px;}
.wsd{word-spacing:-13.569960px;}
.ws7{word-spacing:-13.505760px;}
.ws10{word-spacing:-13.467600px;}
.wsc{word-spacing:-13.464720px;}
.wse{word-spacing:-13.456080px;}
.wsb{word-spacing:-13.447440px;}
.wsf{word-spacing:-13.398360px;}
.ws8{word-spacing:-13.389960px;}
.ws5{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.786880px;}
.wsa{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._17{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._21{margin-left:-214.738560px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._24{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-160.046400px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._23{margin-left:-145.036560px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._22{margin-left:-109.621680px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._19{margin-left:-32.468640px;}
._26{margin-left:-4.827600px;}
._25{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._28{width:1.441200px;}
._2b{width:2.474880px;}
._2a{width:3.811680px;}
._29{width:5.263200px;}
._2c{width:6.319920px;}
._2d{width:7.425600px;}
._2f{width:8.523360px;}
._2e{width:9.561600px;}
._33{width:11.234880px;}
._31{width:12.310560px;}
._36{width:14.532720px;}
._30{width:15.537600px;}
._32{width:16.546560px;}
._27{width:18.481680px;}
._37{width:23.963760px;}
._38{width:26.859600px;}
._35{width:30.649920px;}
._34{width:74.520720px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y98{bottom:6.480000px;}
.y4f{bottom:6.660000px;}
.ya3{bottom:17.100000px;}
.y93{bottom:17.280000px;}
.y51{bottom:19.800000px;}
.y90{bottom:27.720000px;}
.y59{bottom:33.300000px;}
.y7a{bottom:33.840000px;}
.y92{bottom:38.340000px;}
.y6a{bottom:46.080000px;}
.y54{bottom:46.260000px;}
.y75{bottom:47.340000px;}
.y91{bottom:48.780000px;}
.y81{bottom:51.840000px;}
.y6{bottom:59.760000px;}
.y6f{bottom:60.840000px;}
.ydc{bottom:91.440000px;}
.y30{bottom:92.160000px;}
.y79{bottom:106.560000px;}
.yae{bottom:107.460000px;}
.ydd{bottom:109.980000px;}
.ydb{bottom:112.500000px;}
.y2f{bottom:113.220000px;}
.yad{bottom:128.520000px;}
.yda{bottom:133.560000px;}
.y7c{bottom:133.740000px;}
.y2e{bottom:134.280000px;}
.yac{bottom:149.580000px;}
.yd9{bottom:154.650000px;}
.y2d{bottom:155.370000px;}
.y7b{bottom:160.770000px;}
.yab{bottom:170.670000px;}
.yd8{bottom:175.710000px;}
.y2c{bottom:176.430000px;}
.y74{bottom:187.050000px;}
.yaa{bottom:191.730000px;}
.yd7{bottom:196.770000px;}
.y2b{bottom:197.490000px;}
.ya9{bottom:212.790000px;}
.y78{bottom:214.230000px;}
.yd6{bottom:217.830000px;}
.y2a{bottom:218.550000px;}
.ya8{bottom:233.850000px;}
.yd5{bottom:238.890000px;}
.y29{bottom:239.610000px;}
.y77{bottom:241.230000px;}
.ya7{bottom:254.910000px;}
.yd4{bottom:259.950000px;}
.y28{bottom:260.670000px;}
.y76{bottom:268.230000px;}
.ya6{bottom:275.970000px;}
.yd3{bottom:281.010000px;}
.y27{bottom:281.730000px;}
.y6e{bottom:294.510000px;}
.ya5{bottom:297.030000px;}
.yd2{bottom:302.070000px;}
.y26{bottom:302.790000px;}
.ya4{bottom:315.570000px;}
.y73{bottom:321.690000px;}
.yd1{bottom:323.130000px;}
.y25{bottom:323.850000px;}
.ya2{bottom:341.850000px;}
.yd0{bottom:344.190000px;}
.y24{bottom:344.910000px;}
.y72{bottom:348.690000px;}
.ycf{bottom:365.250000px;}
.y23{bottom:365.970000px;}
.y71{bottom:375.690000px;}
.yce{bottom:386.310000px;}
.y22{bottom:387.030000px;}
.ya1{bottom:394.770000px;}
.y70{bottom:402.915000px;}
.ycd{bottom:407.415000px;}
.y21{bottom:408.135000px;}
.ya0{bottom:415.875000px;}
.ycc{bottom:428.475000px;}
.y20{bottom:429.195000px;}
.y9f{bottom:436.935000px;}
.ycb{bottom:449.535000px;}
.y1f{bottom:450.255000px;}
.y6d{bottom:455.475000px;}
.y9e{bottom:457.995000px;}
.yca{bottom:470.595000px;}
.y1e{bottom:471.315000px;}
.y9d{bottom:479.055000px;}
.y6c{bottom:481.755000px;}
.yc9{bottom:491.655000px;}
.y1d{bottom:492.375000px;}
.y9c{bottom:500.115000px;}
.y6b{bottom:508.035000px;}
.yc8{bottom:512.715000px;}
.y1c{bottom:513.435000px;}
.y9b{bottom:521.175000px;}
.yc7{bottom:533.775000px;}
.y69{bottom:534.315000px;}
.y1b{bottom:534.495000px;}
.y9a{bottom:542.235000px;}
.yc6{bottom:554.835000px;}
.y1a{bottom:555.555000px;}
.y99{bottom:563.295000px;}
.y68{bottom:566.175000px;}
.yc5{bottom:575.895000px;}
.y19{bottom:576.615000px;}
.y97{bottom:581.835000px;}
.y67{bottom:587.235000px;}
.yc4{bottom:596.955000px;}
.y4d{bottom:597.675000px;}
.y96{bottom:608.115000px;}
.y66{bottom:608.295000px;}
.yc3{bottom:618.015000px;}
.y4c{bottom:618.735000px;}
.y18{bottom:621.075000px;}
.y65{bottom:629.355000px;}
.y95{bottom:634.395000px;}
.yc2{bottom:639.075000px;}
.y4b{bottom:639.795000px;}
.y64{bottom:650.445000px;}
.y17{bottom:650.985000px;}
.yc1{bottom:660.165000px;}
.y94{bottom:660.705000px;}
.y4a{bottom:660.885000px;}
.y63{bottom:671.505000px;}
.y16{bottom:672.045000px;}
.yc0{bottom:678.705000px;}
.y49{bottom:681.945000px;}
.y8f{bottom:686.985000px;}
.y62{bottom:692.565000px;}
.y15{bottom:693.105000px;}
.y48{bottom:703.005000px;}
.ybf{bottom:704.985000px;}
.y61{bottom:713.625000px;}
.y14{bottom:714.165000px;}
.y47{bottom:724.065000px;}
.y60{bottom:734.685000px;}
.y13{bottom:735.225000px;}
.ybe{bottom:736.845000px;}
.y46{bottom:745.125000px;}
.y5f{bottom:755.745000px;}
.y12{bottom:756.285000px;}
.ybd{bottom:757.905000px;}
.y8e{bottom:760.965000px;}
.y45{bottom:766.005000px;}
.y5c{bottom:774.285000px;}
.y11{bottom:777.345000px;}
.ybc{bottom:778.965000px;}
.y8d{bottom:782.025000px;}
.y44{bottom:787.065000px;}
.y10{bottom:798.405000px;}
.ybb{bottom:800.025000px;}
.y5e{bottom:801.285000px;}
.y8c{bottom:803.085000px;}
.y43{bottom:808.125000px;}
.yf{bottom:819.465000px;}
.yba{bottom:821.085000px;}
.y8b{bottom:824.145000px;}
.y5d{bottom:827.565000px;}
.y42{bottom:829.185000px;}
.ye{bottom:840.525000px;}
.yb9{bottom:842.145000px;}
.y8a{bottom:845.205000px;}
.y41{bottom:850.245000px;}
.y58{bottom:854.745000px;}
.yd{bottom:861.585000px;}
.yb8{bottom:863.205000px;}
.y89{bottom:866.265000px;}
.y40{bottom:871.305000px;}
.y5b{bottom:881.025000px;}
.yb7{bottom:884.265000px;}
.yc{bottom:884.805000px;}
.y88{bottom:887.325000px;}
.y3f{bottom:892.365000px;}
.yb6{bottom:905.370000px;}
.y5a{bottom:908.070000px;}
.y87{bottom:908.430000px;}
.yb{bottom:911.130000px;}
.y3e{bottom:913.470000px;}
.yb5{bottom:926.430000px;}
.ya{bottom:927.870000px;}
.y86{bottom:929.490000px;}
.y53{bottom:934.350000px;}
.y3d{bottom:934.530000px;}
.yb4{bottom:947.490000px;}
.y80{bottom:948.030000px;}
.y9{bottom:950.190000px;}
.y3c{bottom:955.590000px;}
.y57{bottom:960.810000px;}
.yb3{bottom:966.030000px;}
.y85{bottom:974.310000px;}
.y8{bottom:975.390000px;}
.y3b{bottom:976.650000px;}
.y56{bottom:987.090000px;}
.yb2{bottom:992.310000px;}
.y3a{bottom:997.710000px;}
.y84{bottom:1000.590000px;}
.y7{bottom:1009.050000px;}
.y55{bottom:1013.370000px;}
.yb1{bottom:1018.590000px;}
.y39{bottom:1018.770000px;}
.y83{bottom:1026.870000px;}
.y50{bottom:1039.650000px;}
.y38{bottom:1039.830000px;}
.yb0{bottom:1044.870000px;}
.y5{bottom:1049.190000px;}
.y82{bottom:1054.050000px;}
.y37{bottom:1060.890000px;}
.y52{bottom:1065.930000px;}
.yaf{bottom:1071.150000px;}
.y7f{bottom:1080.330000px;}
.y4{bottom:1081.410000px;}
.y36{bottom:1081.950000px;}
.y4e{bottom:1092.210000px;}
.y35{bottom:1103.010000px;}
.y7e{bottom:1107.330000px;}
.y3{bottom:1113.630000px;}
.y34{bottom:1124.070000px;}
.y7d{bottom:1134.330000px;}
.y33{bottom:1145.130000px;}
.y2{bottom:1145.670000px;}
.y32{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.h15{height:20.880000px;}
.h9{height:21.060000px;}
.hd{height:21.096000px;}
.h7{height:38.671172px;}
.h16{height:42.120000px;}
.ha{height:47.340000px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h14{height:63.180000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.he{height:74.340000px;}
.hc{height:74.376000px;}
.h12{height:75.276000px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.hf{height:99.900000px;}
.hb{height:100.080000px;}
.h11{height:102.240000px;}
.h13{height:127.080000px;}
.h10{height:129.456000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:61.776000px;}
.wb{width:72.000000px;}
.w16{width:72.036000px;}
.w15{width:72.180000px;}
.w9{width:82.800000px;}
.wc{width:83.700000px;}
.w13{width:85.140000px;}
.wd{width:86.760000px;}
.we{width:87.336000px;}
.w18{width:92.196000px;}
.w17{width:93.420000px;}
.wa{width:93.456000px;}
.w12{width:99.576000px;}
.w1b{width:103.896000px;}
.w1a{width:104.040000px;}
.w14{width:104.256000px;}
.w6{width:113.580000px;}
.w11{width:114.660000px;}
.w7{width:123.516000px;}
.w19{width:127.656000px;}
.wf{width:138.096000px;}
.w1c{width:145.476000px;}
.w8{width:146.520000px;}
.w3{width:156.090000px;}
.w5{width:156.450000px;}
.w4{width:187.050000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.xe{left:-2.340000px;}
.x0{left:0.000000px;}
.x9{left:1.080000px;}
.x18{left:17.280000px;}
.x23{left:33.345000px;}
.x6{left:53.999987px;}
.x12{left:70.199987px;}
.x29{left:75.239987px;}
.x7{left:86.075987px;}
.x2a{left:98.135987px;}
.xc{left:128.555987px;}
.x8{left:130.716000px;}
.x24{left:160.409987px;}
.x1d{left:162.570000px;}
.x1c{left:171.029987px;}
.x5{left:173.189987px;}
.x28{left:192.269987px;}
.x25{left:194.430000px;}
.x1e{left:249.870000px;}
.x16{left:266.654987px;}
.x13{left:268.995000px;}
.x3{left:286.634987px;}
.xa{left:289.155000px;}
.xd{left:299.775000px;}
.x17{left:313.815000px;}
.x26{left:324.435000px;}
.x2{left:350.534987px;}
.x14{left:355.035000px;}
.x1f{left:356.295000px;}
.x19{left:398.775000px;}
.x4{left:419.114987px;}
.x20{left:430.815000px;}
.x15{left:444.135000px;}
.xf{left:448.665000px;}
.x1a{left:462.705000px;}
.x1{left:479.264987px;}
.x21{left:505.185000px;}
.x10{left:533.625000px;}
.x27{left:537.045000px;}
.x1b{left:579.705000px;}
.x22{left:600.945000px;}
.x11{left:629.430000px;}
.xb{left:636.990000px;}
.x2b{left:838.439987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls17{letter-spacing:-0.858667pt;}
.lsf{letter-spacing:-0.853333pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls11{letter-spacing:-0.383467pt;}
.lsa{letter-spacing:-0.368000pt;}
.lsc{letter-spacing:-0.290133pt;}
.ls7{letter-spacing:-0.201067pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls8{letter-spacing:-0.102933pt;}
.ls1b{letter-spacing:-0.095467pt;}
.ls9{letter-spacing:-0.057600pt;}
.ls13{letter-spacing:-0.051840pt;}
.ls18{letter-spacing:-0.044160pt;}
.ls14{letter-spacing:-0.036480pt;}
.ls1f{letter-spacing:-0.033920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.021120pt;}
.ls3{letter-spacing:0.034560pt;}
.ls15{letter-spacing:0.057067pt;}
.lsb{letter-spacing:0.124800pt;}
.ls6{letter-spacing:0.133333pt;}
.ls16{letter-spacing:0.154667pt;}
.ls20{letter-spacing:0.272000pt;}
.ls1{letter-spacing:0.549120pt;}
.ls19{letter-spacing:0.677333pt;}
.ls12{letter-spacing:1.872640pt;}
.lse{letter-spacing:5.072640pt;}
.ls1e{letter-spacing:10.832640pt;}
.ls1c{letter-spacing:15.952640pt;}
.lsd{letter-spacing:19.152640pt;}
.ls0{letter-spacing:33.872640pt;}
.ls1d{letter-spacing:37.840640pt;}
.ws4{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws9{word-spacing:-12.129920pt;}
.wsd{word-spacing:-12.062187pt;}
.ws7{word-spacing:-12.005120pt;}
.ws10{word-spacing:-11.971200pt;}
.wsc{word-spacing:-11.968640pt;}
.wse{word-spacing:-11.960960pt;}
.wsb{word-spacing:-11.953280pt;}
.wsf{word-spacing:-11.909653pt;}
.ws8{word-spacing:-11.902187pt;}
.ws5{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.810560pt;}
.wsa{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._17{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._21{margin-left:-190.878720pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._24{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.263467pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._23{margin-left:-128.921387pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._22{margin-left:-97.441493pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._19{margin-left:-28.861013pt;}
._26{margin-left:-4.291200pt;}
._25{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._28{width:1.281067pt;}
._2b{width:2.199893pt;}
._2a{width:3.388160pt;}
._29{width:4.678400pt;}
._2c{width:5.617707pt;}
._2d{width:6.600533pt;}
._2f{width:7.576320pt;}
._2e{width:8.499200pt;}
._33{width:9.986560pt;}
._31{width:10.942720pt;}
._36{width:12.917973pt;}
._30{width:13.811200pt;}
._32{width:14.708053pt;}
._27{width:16.428160pt;}
._37{width:21.301120pt;}
._38{width:23.875200pt;}
._35{width:27.244373pt;}
._34{width:66.240640pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:5.760000pt;}
.y4f{bottom:5.920000pt;}
.ya3{bottom:15.200000pt;}
.y93{bottom:15.360000pt;}
.y51{bottom:17.600000pt;}
.y90{bottom:24.640000pt;}
.y59{bottom:29.600000pt;}
.y7a{bottom:30.080000pt;}
.y92{bottom:34.080000pt;}
.y6a{bottom:40.960000pt;}
.y54{bottom:41.120000pt;}
.y75{bottom:42.080000pt;}
.y91{bottom:43.360000pt;}
.y81{bottom:46.080000pt;}
.y6{bottom:53.120000pt;}
.y6f{bottom:54.080000pt;}
.ydc{bottom:81.280000pt;}
.y30{bottom:81.920000pt;}
.y79{bottom:94.720000pt;}
.yae{bottom:95.520000pt;}
.ydd{bottom:97.760000pt;}
.ydb{bottom:100.000000pt;}
.y2f{bottom:100.640000pt;}
.yad{bottom:114.240000pt;}
.yda{bottom:118.720000pt;}
.y7c{bottom:118.880000pt;}
.y2e{bottom:119.360000pt;}
.yac{bottom:132.960000pt;}
.yd9{bottom:137.466667pt;}
.y2d{bottom:138.106667pt;}
.y7b{bottom:142.906667pt;}
.yab{bottom:151.706667pt;}
.yd8{bottom:156.186667pt;}
.y2c{bottom:156.826667pt;}
.y74{bottom:166.266667pt;}
.yaa{bottom:170.426667pt;}
.yd7{bottom:174.906667pt;}
.y2b{bottom:175.546667pt;}
.ya9{bottom:189.146667pt;}
.y78{bottom:190.426667pt;}
.yd6{bottom:193.626667pt;}
.y2a{bottom:194.266667pt;}
.ya8{bottom:207.866667pt;}
.yd5{bottom:212.346667pt;}
.y29{bottom:212.986667pt;}
.y77{bottom:214.426667pt;}
.ya7{bottom:226.586667pt;}
.yd4{bottom:231.066667pt;}
.y28{bottom:231.706667pt;}
.y76{bottom:238.426667pt;}
.ya6{bottom:245.306667pt;}
.yd3{bottom:249.786667pt;}
.y27{bottom:250.426667pt;}
.y6e{bottom:261.786667pt;}
.ya5{bottom:264.026667pt;}
.yd2{bottom:268.506667pt;}
.y26{bottom:269.146667pt;}
.ya4{bottom:280.506667pt;}
.y73{bottom:285.946667pt;}
.yd1{bottom:287.226667pt;}
.y25{bottom:287.866667pt;}
.ya2{bottom:303.866667pt;}
.yd0{bottom:305.946667pt;}
.y24{bottom:306.586667pt;}
.y72{bottom:309.946667pt;}
.ycf{bottom:324.666667pt;}
.y23{bottom:325.306667pt;}
.y71{bottom:333.946667pt;}
.yce{bottom:343.386667pt;}
.y22{bottom:344.026667pt;}
.ya1{bottom:350.906667pt;}
.y70{bottom:358.146667pt;}
.ycd{bottom:362.146667pt;}
.y21{bottom:362.786667pt;}
.ya0{bottom:369.666667pt;}
.ycc{bottom:380.866667pt;}
.y20{bottom:381.506667pt;}
.y9f{bottom:388.386667pt;}
.ycb{bottom:399.586667pt;}
.y1f{bottom:400.226667pt;}
.y6d{bottom:404.866667pt;}
.y9e{bottom:407.106667pt;}
.yca{bottom:418.306667pt;}
.y1e{bottom:418.946667pt;}
.y9d{bottom:425.826667pt;}
.y6c{bottom:428.226667pt;}
.yc9{bottom:437.026667pt;}
.y1d{bottom:437.666667pt;}
.y9c{bottom:444.546667pt;}
.y6b{bottom:451.586667pt;}
.yc8{bottom:455.746667pt;}
.y1c{bottom:456.386667pt;}
.y9b{bottom:463.266667pt;}
.yc7{bottom:474.466667pt;}
.y69{bottom:474.946667pt;}
.y1b{bottom:475.106667pt;}
.y9a{bottom:481.986667pt;}
.yc6{bottom:493.186667pt;}
.y1a{bottom:493.826667pt;}
.y99{bottom:500.706667pt;}
.y68{bottom:503.266667pt;}
.yc5{bottom:511.906667pt;}
.y19{bottom:512.546667pt;}
.y97{bottom:517.186667pt;}
.y67{bottom:521.986667pt;}
.yc4{bottom:530.626667pt;}
.y4d{bottom:531.266667pt;}
.y96{bottom:540.546667pt;}
.y66{bottom:540.706667pt;}
.yc3{bottom:549.346667pt;}
.y4c{bottom:549.986667pt;}
.y18{bottom:552.066667pt;}
.y65{bottom:559.426667pt;}
.y95{bottom:563.906667pt;}
.yc2{bottom:568.066667pt;}
.y4b{bottom:568.706667pt;}
.y64{bottom:578.173333pt;}
.y17{bottom:578.653333pt;}
.yc1{bottom:586.813333pt;}
.y94{bottom:587.293333pt;}
.y4a{bottom:587.453333pt;}
.y63{bottom:596.893333pt;}
.y16{bottom:597.373333pt;}
.yc0{bottom:603.293333pt;}
.y49{bottom:606.173333pt;}
.y8f{bottom:610.653333pt;}
.y62{bottom:615.613333pt;}
.y15{bottom:616.093333pt;}
.y48{bottom:624.893333pt;}
.ybf{bottom:626.653333pt;}
.y61{bottom:634.333333pt;}
.y14{bottom:634.813333pt;}
.y47{bottom:643.613333pt;}
.y60{bottom:653.053333pt;}
.y13{bottom:653.533333pt;}
.ybe{bottom:654.973333pt;}
.y46{bottom:662.333333pt;}
.y5f{bottom:671.773333pt;}
.y12{bottom:672.253333pt;}
.ybd{bottom:673.693333pt;}
.y8e{bottom:676.413333pt;}
.y45{bottom:680.893333pt;}
.y5c{bottom:688.253333pt;}
.y11{bottom:690.973333pt;}
.ybc{bottom:692.413333pt;}
.y8d{bottom:695.133333pt;}
.y44{bottom:699.613333pt;}
.y10{bottom:709.693333pt;}
.ybb{bottom:711.133333pt;}
.y5e{bottom:712.253333pt;}
.y8c{bottom:713.853333pt;}
.y43{bottom:718.333333pt;}
.yf{bottom:728.413333pt;}
.yba{bottom:729.853333pt;}
.y8b{bottom:732.573333pt;}
.y5d{bottom:735.613333pt;}
.y42{bottom:737.053333pt;}
.ye{bottom:747.133333pt;}
.yb9{bottom:748.573333pt;}
.y8a{bottom:751.293333pt;}
.y41{bottom:755.773333pt;}
.y58{bottom:759.773333pt;}
.yd{bottom:765.853333pt;}
.yb8{bottom:767.293333pt;}
.y89{bottom:770.013333pt;}
.y40{bottom:774.493333pt;}
.y5b{bottom:783.133333pt;}
.yb7{bottom:786.013333pt;}
.yc{bottom:786.493333pt;}
.y88{bottom:788.733333pt;}
.y3f{bottom:793.213333pt;}
.yb6{bottom:804.773333pt;}
.y5a{bottom:807.173333pt;}
.y87{bottom:807.493333pt;}
.yb{bottom:809.893333pt;}
.y3e{bottom:811.973333pt;}
.yb5{bottom:823.493333pt;}
.ya{bottom:824.773333pt;}
.y86{bottom:826.213333pt;}
.y53{bottom:830.533333pt;}
.y3d{bottom:830.693333pt;}
.yb4{bottom:842.213333pt;}
.y80{bottom:842.693333pt;}
.y9{bottom:844.613333pt;}
.y3c{bottom:849.413333pt;}
.y57{bottom:854.053333pt;}
.yb3{bottom:858.693333pt;}
.y85{bottom:866.053333pt;}
.y8{bottom:867.013333pt;}
.y3b{bottom:868.133333pt;}
.y56{bottom:877.413333pt;}
.yb2{bottom:882.053333pt;}
.y3a{bottom:886.853333pt;}
.y84{bottom:889.413333pt;}
.y7{bottom:896.933333pt;}
.y55{bottom:900.773333pt;}
.yb1{bottom:905.413333pt;}
.y39{bottom:905.573333pt;}
.y83{bottom:912.773333pt;}
.y50{bottom:924.133333pt;}
.y38{bottom:924.293333pt;}
.yb0{bottom:928.773333pt;}
.y5{bottom:932.613333pt;}
.y82{bottom:936.933333pt;}
.y37{bottom:943.013333pt;}
.y52{bottom:947.493333pt;}
.yaf{bottom:952.133333pt;}
.y7f{bottom:960.293333pt;}
.y4{bottom:961.253333pt;}
.y36{bottom:961.733333pt;}
.y4e{bottom:970.853333pt;}
.y35{bottom:980.453333pt;}
.y7e{bottom:984.293333pt;}
.y3{bottom:989.893333pt;}
.y34{bottom:999.173333pt;}
.y7d{bottom:1008.293333pt;}
.y33{bottom:1017.893333pt;}
.y2{bottom:1018.373333pt;}
.y32{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.h15{height:18.560000pt;}
.h9{height:18.720000pt;}
.hd{height:18.752000pt;}
.h7{height:34.374375pt;}
.h16{height:37.440000pt;}
.ha{height:42.080000pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h14{height:56.160000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.he{height:66.080000pt;}
.hc{height:66.112000pt;}
.h12{height:66.912000pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.hf{height:88.800000pt;}
.hb{height:88.960000pt;}
.h11{height:90.880000pt;}
.h13{height:112.960000pt;}
.h10{height:115.072000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:54.912000pt;}
.wb{width:64.000000pt;}
.w16{width:64.032000pt;}
.w15{width:64.160000pt;}
.w9{width:73.600000pt;}
.wc{width:74.400000pt;}
.w13{width:75.680000pt;}
.wd{width:77.120000pt;}
.we{width:77.632000pt;}
.w18{width:81.952000pt;}
.w17{width:83.040000pt;}
.wa{width:83.072000pt;}
.w12{width:88.512000pt;}
.w1b{width:92.352000pt;}
.w1a{width:92.480000pt;}
.w14{width:92.672000pt;}
.w6{width:100.960000pt;}
.w11{width:101.920000pt;}
.w7{width:109.792000pt;}
.w19{width:113.472000pt;}
.wf{width:122.752000pt;}
.w1c{width:129.312000pt;}
.w8{width:130.240000pt;}
.w3{width:138.746667pt;}
.w5{width:139.066667pt;}
.w4{width:166.266667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.xe{left:-2.080000pt;}
.x0{left:0.000000pt;}
.x9{left:0.960000pt;}
.x18{left:15.360000pt;}
.x23{left:29.640000pt;}
.x6{left:47.999988pt;}
.x12{left:62.399988pt;}
.x29{left:66.879988pt;}
.x7{left:76.511988pt;}
.x2a{left:87.231988pt;}
.xc{left:114.271988pt;}
.x8{left:116.192000pt;}
.x24{left:142.586655pt;}
.x1d{left:144.506667pt;}
.x1c{left:152.026655pt;}
.x5{left:153.946655pt;}
.x28{left:170.906655pt;}
.x25{left:172.826667pt;}
.x1e{left:222.106667pt;}
.x16{left:237.026655pt;}
.x13{left:239.106667pt;}
.x3{left:254.786655pt;}
.xa{left:257.026667pt;}
.xd{left:266.466667pt;}
.x17{left:278.946667pt;}
.x26{left:288.386667pt;}
.x2{left:311.586655pt;}
.x14{left:315.586667pt;}
.x1f{left:316.706667pt;}
.x19{left:354.466667pt;}
.x4{left:372.546655pt;}
.x20{left:382.946667pt;}
.x15{left:394.786667pt;}
.xf{left:398.813333pt;}
.x1a{left:411.293333pt;}
.x1{left:426.013322pt;}
.x21{left:449.053333pt;}
.x10{left:474.333333pt;}
.x27{left:477.373333pt;}
.x1b{left:515.293333pt;}
.x22{left:534.173333pt;}
.x11{left:559.493333pt;}
.xb{left:566.213333pt;}
.x2b{left:745.279988pt;}
}




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