
    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_31fd6f220d5731d963623813.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_b0f89178b9d07fc41c4a8cb2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_43cf1ebfdb551a421981e2e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_3b829c31db06f6e11165e15c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.992188;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_631955867769248a412e4b3e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_7e1e39ba1134ededeae75fe3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.028809;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_f3ecff1e56691a6334755e41.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.771978;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_73dfaefd7019d8ddefb8e785.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.116211;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_e3f9bcbb58577c5d3062c311.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.749512;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_674970fb7a2b04417f6a7a47.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_0afb1e2197a297f1c07c8974.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_bc8f4f3cf08ea54e8b737d0b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_f57711f0c0d9091e63c3ef93.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.106934;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_b45f2d3f488b963ca86ce22e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.103027;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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;}
.lsc{letter-spacing:-1.548000px;}
.lsb{letter-spacing:-1.134000px;}
.lsa{letter-spacing:-0.828000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.457800px;}
.ls26{letter-spacing:-0.417600px;}
.ls7{letter-spacing:-0.414600px;}
.lse{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.342787px;}
.ls8{letter-spacing:-0.305400px;}
.ls20{letter-spacing:-0.262200px;}
.ls2b{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.109200px;}
.ls27{letter-spacing:-0.106800px;}
.ls28{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.018000px;}
.ls30{letter-spacing:0.053280px;}
.ls1e{letter-spacing:0.097920px;}
.ls13{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.252000px;}
.ls2a{letter-spacing:0.259800px;}
.ls24{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.262080px;}
.ls15{letter-spacing:0.262200px;}
.ls6{letter-spacing:0.296400px;}
.lsf{letter-spacing:0.305280px;}
.ls4{letter-spacing:0.305400px;}
.ls1d{letter-spacing:0.311040px;}
.ls22{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.413400px;}
.ls18{letter-spacing:0.567600px;}
.ls29{letter-spacing:0.666000px;}
.ls25{letter-spacing:0.666720px;}
.ls2d{letter-spacing:0.979920px;}
.ls1{letter-spacing:1.025280px;}
.ls2f{letter-spacing:2.106720px;}
.ls11{letter-spacing:3.708000px;}
.ls16{letter-spacing:6.785280px;}
.ls2c{letter-spacing:10.026720px;}
.ls1f{letter-spacing:10.908000px;}
.ls1a{letter-spacing:14.705280px;}
.ls3{letter-spacing:15.425280px;}
.ls2e{letter-spacing:15.786720px;}
.ls2{letter-spacing:16.145280px;}
.ls23{letter-spacing:19.386720px;}
.ls1b{letter-spacing:19.745280px;}
.ls10{letter-spacing:27.665280px;}
.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;}
}
.ws1b{word-spacing:-59.760000px;}
.ws10{word-spacing:-18.982320px;}
.wsb{word-spacing:-18.676920px;}
.ws5{word-spacing:-18.414720px;}
.ws7{word-spacing:-18.305520px;}
.ws12{word-spacing:-18.152520px;}
.ws6{word-spacing:-18.109320px;}
.wsf{word-spacing:-17.956920px;}
.ws11{word-spacing:-17.694720px;}
.wsa{word-spacing:-17.586720px;}
.ws1e{word-spacing:-17.026680px;}
.ws1a{word-spacing:-16.973280px;}
.ws18{word-spacing:-16.873080px;}
.ws1d{word-spacing:-16.666560px;}
.ws16{word-spacing:-16.613280px;}
.ws13{word-spacing:-16.560000px;}
.ws17{word-spacing:-16.506480px;}
.ws19{word-spacing:-16.353480px;}
.ws1c{word-spacing:-15.785280px;}
.ws15{word-spacing:-15.264000px;}
.wsd{word-spacing:-15.228000px;}
.wsc{word-spacing:-15.012000px;}
.ws8{word-spacing:-14.994000px;}
.ws9{word-spacing:-14.652000px;}
.ws14{word-spacing:-13.500000px;}
.ws2{word-spacing:-11.004616px;}
.ws3{word-spacing:-10.661829px;}
.ws0{word-spacing:-0.049478px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:331.234560px;}
.wse{word-spacing:331.754400px;}
._0{margin-left:-5.393105px;}
._1{margin-left:-1.434863px;}
._3{width:1.439760px;}
._5{width:2.500877px;}
._2{width:4.151106px;}
._1b{width:5.541743px;}
._8{width:7.358114px;}
._7{width:8.556143px;}
._c{width:9.659857px;}
._9{width:10.666560px;}
._d{width:11.868480px;}
._17{width:13.084126px;}
._10{width:14.125103px;}
._6{width:15.130560px;}
._4{width:16.405103px;}
._1e{width:17.796188px;}
._1a{width:19.617600px;}
._18{width:20.982720px;}
._a{width:22.256640px;}
._b{width:23.357903px;}
._12{width:24.552623px;}
._11{width:25.634880px;}
._13{width:27.377423px;}
._16{width:28.462703px;}
._23{width:30.394080px;}
._21{width:31.782863px;}
._1d{width:32.850000px;}
._1c{width:33.948000px;}
._24{width:35.902080px;}
._f{width:37.580588px;}
._e{width:38.816640px;}
._22{width:40.715183px;}
._25{width:41.889600px;}
._26{width:43.284526px;}
._27{width:44.947154px;}
._20{width:46.676783px;}
._1f{width:48.355200px;}
._15{width:52.594560px;}
._14{width:53.698223px;}
._29{width:123.165360px;}
._28{width:156.584400px;}
._2a{width:334.814640px;}
._19{width:342.243406px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs7{font-size:44.018465px;}
.fs6{font-size:49.478028px;}
.fsc{font-size:54.000000px;}
.fs2{font-size:58.478028px;}
.fse{font-size:59.760000px;}
.fs0{font-size:59.976564px;}
.fs5{font-size:65.975100px;}
.fs9{font-size:66.240000px;}
.fs3{font-size:67.473630px;}
.fsd{font-size:72.000000px;}
.fs1{font-size:80.969238px;}
.fs4{font-size:101.957520px;}
.fsa{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y13{bottom:56.700000px;}
.y35{bottom:109.080000px;}
.y6e{bottom:116.640000px;}
.y34{bottom:124.560000px;}
.y63{bottom:129.060000px;}
.y33{bottom:140.040000px;}
.ya0{bottom:143.460000px;}
.y77{bottom:144.540000px;}
.y6d{bottom:145.080000px;}
.y62{bottom:155.700000px;}
.y32{bottom:155.880000px;}
.y76{bottom:165.810000px;}
.y9f{bottom:169.230000px;}
.y61{bottom:171.210000px;}
.y31{bottom:171.390000px;}
.y6c{bottom:173.550000px;}
.y30{bottom:175.890000px;}
.yc5{bottom:185.250000px;}
.y60{bottom:186.690000px;}
.y9e{bottom:195.330000px;}
.y2f{bottom:196.950000px;}
.y75{bottom:200.910000px;}
.y6b{bottom:201.990000px;}
.y5f{bottom:202.170000px;}
.yc4{bottom:211.170000px;}
.y5e{bottom:217.830000px;}
.y74{bottom:219.990000px;}
.y9d{bottom:220.890000px;}
.y6a{bottom:230.430000px;}
.y5d{bottom:233.310000px;}
.y73{bottom:237.270000px;}
.y9c{bottom:246.810000px;}
.y5c{bottom:248.790000px;}
.y72{bottom:254.550000px;}
.y69{bottom:258.870000px;}
.yc3{bottom:262.830000px;}
.y5b{bottom:264.270000px;}
.y9b{bottom:272.910000px;}
.y5a{bottom:279.750000px;}
.y71{bottom:281.370000px;}
.y68{bottom:287.310000px;}
.yc2{bottom:288.750000px;}
.y59{bottom:295.410000px;}
.y2e{bottom:297.750000px;}
.y9a{bottom:298.830000px;}
.y58{bottom:310.890000px;}
.y70{bottom:311.430000px;}
.yc1{bottom:314.850000px;}
.y67{bottom:315.750000px;}
.y99{bottom:324.570000px;}
.y2d{bottom:326.190000px;}
.y57{bottom:326.370000px;}
.yc0{bottom:340.590000px;}
.y56{bottom:341.850000px;}
.y6f{bottom:342.570000px;}
.y66{bottom:344.190000px;}
.y98{bottom:350.490000px;}
.y2c{bottom:354.630000px;}
.y55{bottom:357.510000px;}
.y54{bottom:362.010000px;}
.ybf{bottom:366.510000px;}
.y65{bottom:372.810000px;}
.y97{bottom:376.230000px;}
.y2b{bottom:383.070000px;}
.y53{bottom:383.250000px;}
.ybe{bottom:392.430000px;}
.y64{bottom:401.250000px;}
.y96{bottom:402.330000px;}
.y2a{bottom:411.555000px;}
.ybd{bottom:418.395000px;}
.y95{bottom:428.115000px;}
.y52{bottom:429.735000px;}
.y29{bottom:439.995000px;}
.ybc{bottom:444.315000px;}
.y94{bottom:453.855000px;}
.y51{bottom:458.175000px;}
.y28{bottom:468.435000px;}
.ybb{bottom:469.875000px;}
.y93{bottom:479.775000px;}
.y50{bottom:486.615000px;}
.yba{bottom:495.795000px;}
.y27{bottom:497.055000px;}
.y92{bottom:505.875000px;}
.y4f{bottom:515.055000px;}
.yb9{bottom:521.715000px;}
.y26{bottom:525.495000px;}
.y91{bottom:531.615000px;}
.y4e{bottom:543.495000px;}
.yb8{bottom:547.635000px;}
.y25{bottom:553.935000px;}
.y90{bottom:557.535000px;}
.y4d{bottom:571.935000px;}
.yb7{bottom:573.555000px;}
.y24{bottom:582.375000px;}
.y8f{bottom:583.455000px;}
.yb6{bottom:599.475000px;}
.y4c{bottom:600.375000px;}
.y8e{bottom:609.375000px;}
.y23{bottom:610.815000px;}
.yb5{bottom:625.215000px;}
.y4b{bottom:628.995000px;}
.y8d{bottom:634.935000px;}
.y22{bottom:639.255000px;}
.yb4{bottom:651.165000px;}
.y4a{bottom:657.465000px;}
.y8c{bottom:661.065000px;}
.y11{bottom:664.916042px;}
.y21{bottom:667.725000px;}
.yb3{bottom:677.085000px;}
.y10{bottom:679.757843px;}
.y49{bottom:685.905000px;}
.y8b{bottom:686.985000px;}
.yf{bottom:694.605494px;}
.y20{bottom:696.165000px;}
.yb2{bottom:703.005000px;}
.ye{bottom:709.376974px;}
.y8a{bottom:712.905000px;}
.y48{bottom:714.345000px;}
.y1f{bottom:724.605000px;}
.yb1{bottom:728.745000px;}
.yd{bottom:737.044938px;}
.y89{bottom:738.465000px;}
.y46{bottom:742.785000px;}
.y47{bottom:748.725000px;}
.yc{bottom:751.892590px;}
.y1d{bottom:753.225000px;}
.yb0{bottom:754.665000px;}
.y1e{bottom:759.165000px;}
.y88{bottom:764.565000px;}
.yb{bottom:766.664069px;}
.y45{bottom:771.225000px;}
.yaf{bottom:780.585000px;}
.y1c{bottom:781.665000px;}
.y87{bottom:790.305000px;}
.ya{bottom:794.332034px;}
.y44{bottom:799.665000px;}
.yae{bottom:806.505000px;}
.y9{bottom:809.179685px;}
.y1b{bottom:810.105000px;}
.y86{bottom:816.225000px;}
.y8{bottom:824.021486px;}
.y43{bottom:828.105000px;}
.yad{bottom:832.245000px;}
.y1a{bottom:838.545000px;}
.y7{bottom:838.798828px;}
.y85{bottom:841.965000px;}
.y42{bottom:856.545000px;}
.yac{bottom:857.985000px;}
.y19{bottom:866.985000px;}
.y84{bottom:868.065000px;}
.yab{bottom:883.905000px;}
.y41{bottom:885.165000px;}
.y83{bottom:894.705000px;}
.y18{bottom:895.470000px;}
.yaa{bottom:910.050000px;}
.y40{bottom:913.650000px;}
.y82{bottom:923.550000px;}
.y17{bottom:923.910000px;}
.ya9{bottom:935.970000px;}
.y3f{bottom:942.090000px;}
.y81{bottom:951.990000px;}
.ya8{bottom:961.530000px;}
.y3e{bottom:970.530000px;}
.y80{bottom:970.710000px;}
.y6{bottom:971.056641px;}
.y16{bottom:972.510000px;}
.ya7{bottom:987.630000px;}
.y7f{bottom:987.990000px;}
.y3d{bottom:998.970000px;}
.y7e{bottom:1005.270000px;}
.ya6{bottom:1013.550000px;}
.y5{bottom:1013.730468px;}
.y3c{bottom:1027.410000px;}
.y7d{bottom:1032.090000px;}
.ya5{bottom:1039.470000px;}
.y15{bottom:1044.870000px;}
.y3b{bottom:1055.850000px;}
.y7c{bottom:1060.890000px;}
.ya4{bottom:1065.210000px;}
.y7b{bottom:1079.610000px;}
.y3a{bottom:1084.290000px;}
.y4{bottom:1089.533204px;}
.ya3{bottom:1091.130000px;}
.y7a{bottom:1096.890000px;}
.y1{bottom:1100.390625px;}
.y3{bottom:1106.132812px;}
.y39{bottom:1112.730000px;}
.y79{bottom:1113.990000px;}
.ya2{bottom:1116.870000px;}
.y14{bottom:1117.410000px;}
.y2{bottom:1137.287109px;}
.y78{bottom:1141.020000px;}
.y37{bottom:1141.380000px;}
.ya1{bottom:1143.000000px;}
.y38{bottom:1147.320000px;}
.y12{bottom:1174.320000px;}
.y36{bottom:1175.220000px;}
.hf{height:37.546875px;}
.h7{height:38.195685px;}
.h1{height:39.974614px;}
.hb{height:39.977707px;}
.h8{height:40.200898px;}
.he{height:43.554375px;}
.h3{height:44.543810px;}
.h11{height:48.410156px;}
.h6{height:50.930973px;}
.h4{height:52.087797px;}
.h10{height:56.320312px;}
.h12{height:59.383125px;}
.h14{height:60.159375px;}
.h2{height:61.675787px;}
.h15{height:62.327813px;}
.hc{height:69.086250px;}
.h13{height:75.093750px;}
.h5{height:77.165115px;}
.hd{height:174.968437px;}
.h0{height:1261.500000px;}
.h9{height:1262.880000px;}
.ha{height:1263.000000px;}
.w0{width:892.500000px;}
.w4{width:892.979973px;}
.w3{width:892.979987px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.558593px;}
.xd{left:132.695987px;}
.x9{left:157.349987px;}
.x17{left:170.129987px;}
.x1{left:244.488282px;}
.x2{left:265.746093px;}
.xf{left:321.014973px;}
.x10{left:326.774987px;}
.xc{left:343.694987px;}
.xe{left:394.094987px;}
.x14{left:452.234987px;}
.x6{left:456.734987px;}
.x11{left:496.364973px;}
.x12{left:502.124987px;}
.x4{left:521.024987px;}
.xa{left:536.324973px;}
.xb{left:542.084987px;}
.x8{left:548.564987px;}
.x5{left:603.464987px;}
.x15{left:609.584973px;}
.x16{left:615.344987px;}
.x13{left:624.524987px;}
.x7{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.376000pt;}
.lsb{letter-spacing:-1.008000pt;}
.lsa{letter-spacing:-0.736000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.406933pt;}
.ls26{letter-spacing:-0.371200pt;}
.ls7{letter-spacing:-0.368533pt;}
.lse{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.304700pt;}
.ls8{letter-spacing:-0.271467pt;}
.ls20{letter-spacing:-0.233067pt;}
.ls2b{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.097067pt;}
.ls27{letter-spacing:-0.094933pt;}
.ls28{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.016000pt;}
.ls30{letter-spacing:0.047360pt;}
.ls1e{letter-spacing:0.087040pt;}
.ls13{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.224000pt;}
.ls2a{letter-spacing:0.230933pt;}
.ls24{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.232960pt;}
.ls15{letter-spacing:0.233067pt;}
.ls6{letter-spacing:0.263467pt;}
.lsf{letter-spacing:0.271360pt;}
.ls4{letter-spacing:0.271467pt;}
.ls1d{letter-spacing:0.276480pt;}
.ls22{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.367467pt;}
.ls18{letter-spacing:0.504533pt;}
.ls29{letter-spacing:0.592000pt;}
.ls25{letter-spacing:0.592640pt;}
.ls2d{letter-spacing:0.871040pt;}
.ls1{letter-spacing:0.911360pt;}
.ls2f{letter-spacing:1.872640pt;}
.ls11{letter-spacing:3.296000pt;}
.ls16{letter-spacing:6.031360pt;}
.ls2c{letter-spacing:8.912640pt;}
.ls1f{letter-spacing:9.696000pt;}
.ls1a{letter-spacing:13.071360pt;}
.ls3{letter-spacing:13.711360pt;}
.ls2e{letter-spacing:14.032640pt;}
.ls2{letter-spacing:14.351360pt;}
.ls23{letter-spacing:17.232640pt;}
.ls1b{letter-spacing:17.551360pt;}
.ls10{letter-spacing:24.591360pt;}
.ws1b{word-spacing:-53.120000pt;}
.ws10{word-spacing:-16.873173pt;}
.wsb{word-spacing:-16.601707pt;}
.ws5{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.271573pt;}
.ws12{word-spacing:-16.135573pt;}
.ws6{word-spacing:-16.097173pt;}
.wsf{word-spacing:-15.961707pt;}
.ws11{word-spacing:-15.728640pt;}
.wsa{word-spacing:-15.632640pt;}
.ws1e{word-spacing:-15.134827pt;}
.ws1a{word-spacing:-15.087360pt;}
.ws18{word-spacing:-14.998293pt;}
.ws1d{word-spacing:-14.814720pt;}
.ws16{word-spacing:-14.767360pt;}
.ws13{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.672427pt;}
.ws19{word-spacing:-14.536427pt;}
.ws1c{word-spacing:-14.031360pt;}
.ws15{word-spacing:-13.568000pt;}
.wsd{word-spacing:-13.536000pt;}
.wsc{word-spacing:-13.344000pt;}
.ws8{word-spacing:-13.328000pt;}
.ws9{word-spacing:-13.024000pt;}
.ws14{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.781881pt;}
.ws3{word-spacing:-9.477181pt;}
.ws0{word-spacing:-0.043980pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:294.430720pt;}
.wse{word-spacing:294.892800pt;}
._0{margin-left:-4.793871pt;}
._1{margin-left:-1.275434pt;}
._3{width:1.279787pt;}
._5{width:2.223002pt;}
._2{width:3.689872pt;}
._1b{width:4.925994pt;}
._8{width:6.540546pt;}
._7{width:7.605460pt;}
._c{width:8.586540pt;}
._9{width:9.481387pt;}
._d{width:10.549760pt;}
._17{width:11.630334pt;}
._10{width:12.555647pt;}
._6{width:13.449387pt;}
._4{width:14.582314pt;}
._1e{width:15.818834pt;}
._1a{width:17.437867pt;}
._18{width:18.651307pt;}
._a{width:19.783680pt;}
._b{width:20.762580pt;}
._12{width:21.824554pt;}
._11{width:22.786560pt;}
._13{width:24.335487pt;}
._16{width:25.300180pt;}
._23{width:27.016960pt;}
._21{width:28.251434pt;}
._1d{width:29.200000pt;}
._1c{width:30.176000pt;}
._24{width:31.912960pt;}
._f{width:33.404967pt;}
._e{width:34.503680pt;}
._22{width:36.191274pt;}
._25{width:37.235200pt;}
._26{width:38.475134pt;}
._27{width:39.953026pt;}
._20{width:41.490474pt;}
._1f{width:42.982400pt;}
._15{width:46.750720pt;}
._14{width:47.731754pt;}
._29{width:109.480320pt;}
._28{width:139.186133pt;}
._2a{width:297.613013pt;}
._19{width:304.216361pt;}
.fsb{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs7{font-size:39.127524pt;}
.fs6{font-size:43.980469pt;}
.fsc{font-size:48.000000pt;}
.fs2{font-size:51.980469pt;}
.fse{font-size:53.120000pt;}
.fs0{font-size:53.312501pt;}
.fs5{font-size:58.644533pt;}
.fs9{font-size:58.880000pt;}
.fs3{font-size:59.976560pt;}
.fsd{font-size:64.000000pt;}
.fs1{font-size:71.972656pt;}
.fs4{font-size:90.628907pt;}
.fsa{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:50.400000pt;}
.y35{bottom:96.960000pt;}
.y6e{bottom:103.680000pt;}
.y34{bottom:110.720000pt;}
.y63{bottom:114.720000pt;}
.y33{bottom:124.480000pt;}
.ya0{bottom:127.520000pt;}
.y77{bottom:128.480000pt;}
.y6d{bottom:128.960000pt;}
.y62{bottom:138.400000pt;}
.y32{bottom:138.560000pt;}
.y76{bottom:147.386667pt;}
.y9f{bottom:150.426667pt;}
.y61{bottom:152.186667pt;}
.y31{bottom:152.346667pt;}
.y6c{bottom:154.266667pt;}
.y30{bottom:156.346667pt;}
.yc5{bottom:164.666667pt;}
.y60{bottom:165.946667pt;}
.y9e{bottom:173.626667pt;}
.y2f{bottom:175.066667pt;}
.y75{bottom:178.586667pt;}
.y6b{bottom:179.546667pt;}
.y5f{bottom:179.706667pt;}
.yc4{bottom:187.706667pt;}
.y5e{bottom:193.626667pt;}
.y74{bottom:195.546667pt;}
.y9d{bottom:196.346667pt;}
.y6a{bottom:204.826667pt;}
.y5d{bottom:207.386667pt;}
.y73{bottom:210.906667pt;}
.y9c{bottom:219.386667pt;}
.y5c{bottom:221.146667pt;}
.y72{bottom:226.266667pt;}
.y69{bottom:230.106667pt;}
.yc3{bottom:233.626667pt;}
.y5b{bottom:234.906667pt;}
.y9b{bottom:242.586667pt;}
.y5a{bottom:248.666667pt;}
.y71{bottom:250.106667pt;}
.y68{bottom:255.386667pt;}
.yc2{bottom:256.666667pt;}
.y59{bottom:262.586667pt;}
.y2e{bottom:264.666667pt;}
.y9a{bottom:265.626667pt;}
.y58{bottom:276.346667pt;}
.y70{bottom:276.826667pt;}
.yc1{bottom:279.866667pt;}
.y67{bottom:280.666667pt;}
.y99{bottom:288.506667pt;}
.y2d{bottom:289.946667pt;}
.y57{bottom:290.106667pt;}
.yc0{bottom:302.746667pt;}
.y56{bottom:303.866667pt;}
.y6f{bottom:304.506667pt;}
.y66{bottom:305.946667pt;}
.y98{bottom:311.546667pt;}
.y2c{bottom:315.226667pt;}
.y55{bottom:317.786667pt;}
.y54{bottom:321.786667pt;}
.ybf{bottom:325.786667pt;}
.y65{bottom:331.386667pt;}
.y97{bottom:334.426667pt;}
.y2b{bottom:340.506667pt;}
.y53{bottom:340.666667pt;}
.ybe{bottom:348.826667pt;}
.y64{bottom:356.666667pt;}
.y96{bottom:357.626667pt;}
.y2a{bottom:365.826667pt;}
.ybd{bottom:371.906667pt;}
.y95{bottom:380.546667pt;}
.y52{bottom:381.986667pt;}
.y29{bottom:391.106667pt;}
.ybc{bottom:394.946667pt;}
.y94{bottom:403.426667pt;}
.y51{bottom:407.266667pt;}
.y28{bottom:416.386667pt;}
.ybb{bottom:417.666667pt;}
.y93{bottom:426.466667pt;}
.y50{bottom:432.546667pt;}
.yba{bottom:440.706667pt;}
.y27{bottom:441.826667pt;}
.y92{bottom:449.666667pt;}
.y4f{bottom:457.826667pt;}
.yb9{bottom:463.746667pt;}
.y26{bottom:467.106667pt;}
.y91{bottom:472.546667pt;}
.y4e{bottom:483.106667pt;}
.yb8{bottom:486.786667pt;}
.y25{bottom:492.386667pt;}
.y90{bottom:495.586667pt;}
.y4d{bottom:508.386667pt;}
.yb7{bottom:509.826667pt;}
.y24{bottom:517.666667pt;}
.y8f{bottom:518.626667pt;}
.yb6{bottom:532.866667pt;}
.y4c{bottom:533.666667pt;}
.y8e{bottom:541.666667pt;}
.y23{bottom:542.946667pt;}
.yb5{bottom:555.746667pt;}
.y4b{bottom:559.106667pt;}
.y8d{bottom:564.386667pt;}
.y22{bottom:568.226667pt;}
.yb4{bottom:578.813333pt;}
.y4a{bottom:584.413333pt;}
.y8c{bottom:587.613333pt;}
.y11{bottom:591.036482pt;}
.y21{bottom:593.533333pt;}
.yb3{bottom:601.853333pt;}
.y10{bottom:604.229194pt;}
.y49{bottom:609.693333pt;}
.y8b{bottom:610.653333pt;}
.yf{bottom:617.427106pt;}
.y20{bottom:618.813333pt;}
.yb2{bottom:624.893333pt;}
.ye{bottom:630.557310pt;}
.y8a{bottom:633.693333pt;}
.y48{bottom:634.973333pt;}
.y1f{bottom:644.093333pt;}
.yb1{bottom:647.773333pt;}
.yd{bottom:655.151056pt;}
.y89{bottom:656.413333pt;}
.y46{bottom:660.253333pt;}
.y47{bottom:665.533333pt;}
.yc{bottom:668.348969pt;}
.y1d{bottom:669.533333pt;}
.yb0{bottom:670.813333pt;}
.y1e{bottom:674.813333pt;}
.y88{bottom:679.613333pt;}
.yb{bottom:681.479173pt;}
.y45{bottom:685.533333pt;}
.yaf{bottom:693.853333pt;}
.y1c{bottom:694.813333pt;}
.y87{bottom:702.493333pt;}
.ya{bottom:706.072919pt;}
.y44{bottom:710.813333pt;}
.yae{bottom:716.893333pt;}
.y9{bottom:719.270831pt;}
.y1b{bottom:720.093333pt;}
.y86{bottom:725.533333pt;}
.y8{bottom:732.463543pt;}
.y43{bottom:736.093333pt;}
.yad{bottom:739.773333pt;}
.y1a{bottom:745.373333pt;}
.y7{bottom:745.598959pt;}
.y85{bottom:748.413333pt;}
.y42{bottom:761.373333pt;}
.yac{bottom:762.653333pt;}
.y19{bottom:770.653333pt;}
.y84{bottom:771.613333pt;}
.yab{bottom:785.693333pt;}
.y41{bottom:786.813333pt;}
.y83{bottom:795.293333pt;}
.y18{bottom:795.973333pt;}
.yaa{bottom:808.933333pt;}
.y40{bottom:812.133333pt;}
.y82{bottom:820.933333pt;}
.y17{bottom:821.253333pt;}
.ya9{bottom:831.973333pt;}
.y3f{bottom:837.413333pt;}
.y81{bottom:846.213333pt;}
.ya8{bottom:854.693333pt;}
.y3e{bottom:862.693333pt;}
.y80{bottom:862.853333pt;}
.y6{bottom:863.161459pt;}
.y16{bottom:864.453333pt;}
.ya7{bottom:877.893333pt;}
.y7f{bottom:878.213333pt;}
.y3d{bottom:887.973333pt;}
.y7e{bottom:893.573333pt;}
.ya6{bottom:900.933333pt;}
.y5{bottom:901.093749pt;}
.y3c{bottom:913.253333pt;}
.y7d{bottom:917.413333pt;}
.ya5{bottom:923.973333pt;}
.y15{bottom:928.773333pt;}
.y3b{bottom:938.533333pt;}
.y7c{bottom:943.013333pt;}
.ya4{bottom:946.853333pt;}
.y7b{bottom:959.653333pt;}
.y3a{bottom:963.813333pt;}
.y4{bottom:968.473959pt;}
.ya3{bottom:969.893333pt;}
.y7a{bottom:975.013333pt;}
.y1{bottom:978.125000pt;}
.y3{bottom:983.229167pt;}
.y39{bottom:989.093333pt;}
.y79{bottom:990.213333pt;}
.ya2{bottom:992.773333pt;}
.y14{bottom:993.253333pt;}
.y2{bottom:1010.921875pt;}
.y78{bottom:1014.240000pt;}
.y37{bottom:1014.560000pt;}
.ya1{bottom:1016.000000pt;}
.y38{bottom:1019.840000pt;}
.y12{bottom:1043.840000pt;}
.y36{bottom:1044.640000pt;}
.hf{height:33.375000pt;}
.h7{height:33.951720pt;}
.h1{height:35.532990pt;}
.hb{height:35.535740pt;}
.h8{height:35.734131pt;}
.he{height:38.715000pt;}
.h3{height:39.594498pt;}
.h11{height:43.031250pt;}
.h6{height:45.271976pt;}
.h4{height:46.300264pt;}
.h10{height:50.062500pt;}
.h12{height:52.785000pt;}
.h14{height:53.475000pt;}
.h2{height:54.822922pt;}
.h15{height:55.402500pt;}
.hc{height:61.410000pt;}
.h13{height:66.750000pt;}
.h5{height:68.591214pt;}
.hd{height:155.527500pt;}
.h0{height:1121.333333pt;}
.h9{height:1122.560000pt;}
.ha{height:1122.666667pt;}
.w0{width:793.333333pt;}
.w4{width:793.759976pt;}
.w3{width:793.759988pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.385416pt;}
.xd{left:117.951988pt;}
.x9{left:139.866655pt;}
.x17{left:151.226655pt;}
.x1{left:217.322917pt;}
.x2{left:236.218749pt;}
.xf{left:285.346643pt;}
.x10{left:290.466655pt;}
.xc{left:305.506655pt;}
.xe{left:350.306655pt;}
.x14{left:401.986655pt;}
.x6{left:405.986655pt;}
.x11{left:441.213310pt;}
.x12{left:446.333322pt;}
.x4{left:463.133322pt;}
.xa{left:476.733310pt;}
.xb{left:481.853322pt;}
.x8{left:487.613322pt;}
.x5{left:536.413322pt;}
.x15{left:541.853310pt;}
.x16{left:546.973322pt;}
.x13{left:555.133322pt;}
.x7{left:680.453322pt;}
}




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