
    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_060749348c250c271361d4b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a9e5918d16147dc43cfd9b45.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.568848;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_ddd536be106571963a305f16.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.568848;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_fd8124e1b4b59e59b2d3349b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b9c6d32ff10cb70b6cf629c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682129;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_2efcdd8a06d018c541b97c36.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.480469;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);}
.v5{vertical-align:-131.941800px;}
.v6{vertical-align:-26.640000px;}
.v7{vertical-align:-1.455600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.734000px;}
.v1{vertical-align:114.049800px;}
.v4{vertical-align:129.000000px;}
.v2{vertical-align:145.150200px;}
.ls2b{letter-spacing:-0.443520px;}
.ls26{letter-spacing:-0.383040px;}
.ls2d{letter-spacing:-0.380160px;}
.ls18{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.336960px;}
.ls15{letter-spacing:-0.331200px;}
.ls5{letter-spacing:-0.324000px;}
.ls28{letter-spacing:-0.316800px;}
.lsd{letter-spacing:-0.288000px;}
.ls2f{letter-spacing:-0.287280px;}
.ls27{letter-spacing:-0.253440px;}
.lsb{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.191520px;}
.ls4{letter-spacing:-0.144000px;}
.ls2c{letter-spacing:-0.126720px;}
.ls6{letter-spacing:-0.108000px;}
.ls25{letter-spacing:-0.095760px;}
.ls13{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084240px;}
.ls1{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.063360px;}
.ls10{letter-spacing:0.072000px;}
.ls24{letter-spacing:0.095760px;}
.ls7{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.156240px;}
.ls21{letter-spacing:0.190080px;}
.ls30{letter-spacing:0.192240px;}
.ls16{letter-spacing:0.198720px;}
.lsa{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.252000px;}
.ls9{letter-spacing:0.252720px;}
.ls14{letter-spacing:0.270000px;}
.ls19{letter-spacing:0.288000px;}
.ls2e{letter-spacing:0.316800px;}
.ls8{letter-spacing:0.324000px;}
.ls17{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.478800px;}
.ls1d{letter-spacing:2.782080px;}
.ls20{letter-spacing:7.793280px;}
.ls1f{letter-spacing:16.512480px;}
.ls23{letter-spacing:41.627520px;}
.ls22{letter-spacing:50.369760px;}
.lse{letter-spacing:460.420800px;}
.ls3{letter-spacing:467.456400px;}
.ls1c{letter-spacing:554.020800px;}
.ls11{letter-spacing:669.271200px;}
.ls2{letter-spacing:804.247200px;}
.ls1a{letter-spacing:2456.467800px;}
.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;}
}
.ws1c{word-spacing:-36.576000px;}
.ws3{word-spacing:-36.432000px;}
.ws20{word-spacing:-36.288000px;}
.ws24{word-spacing:-29.700000px;}
.ws13{word-spacing:-27.756000px;}
.ws11{word-spacing:-27.648000px;}
.ws17{word-spacing:-27.540000px;}
.ws14{word-spacing:-27.432000px;}
.ws12{word-spacing:-27.216000px;}
.ws21{word-spacing:-26.352000px;}
.ws15{word-spacing:-26.244000px;}
.wsf{word-spacing:-26.136000px;}
.wse{word-spacing:-26.028000px;}
.ws25{word-spacing:-25.920000px;}
.ws22{word-spacing:-25.812000px;}
.ws4{word-spacing:-25.704000px;}
.ws45{word-spacing:-23.556960px;}
.ws4c{word-spacing:-23.173920px;}
.ws41{word-spacing:-22.982400px;}
.ws44{word-spacing:-22.886640px;}
.ws26{word-spacing:-22.860000px;}
.ws4b{word-spacing:-22.790880px;}
.ws42{word-spacing:-22.695120px;}
.ws27{word-spacing:-21.960000px;}
.ws10{word-spacing:-21.649680px;}
.ws16{word-spacing:-21.312720px;}
.ws23{word-spacing:-17.352000px;}
.ws2c{word-spacing:-17.136000px;}
.ws29{word-spacing:-17.064000px;}
.ws49{word-spacing:-15.586560px;}
.ws47{word-spacing:-15.143040px;}
.ws43{word-spacing:-15.016320px;}
.ws4a{word-spacing:-14.952960px;}
.ws48{word-spacing:-14.889600px;}
.ws46{word-spacing:-14.826240px;}
.ws52{word-spacing:-12.303360px;}
.ws34{word-spacing:-5.184000px;}
.ws0{word-spacing:-3.281040px;}
.ws37{word-spacing:-2.517120px;}
.ws1{word-spacing:-2.499840px;}
.ws3d{word-spacing:-2.016000px;}
.wsd{word-spacing:-1.620000px;}
.ws5{word-spacing:-1.512000px;}
.ws3c{word-spacing:-1.224000px;}
.ws1b{word-spacing:-1.188000px;}
.ws40{word-spacing:-0.972000px;}
.ws6{word-spacing:-0.864000px;}
.ws19{word-spacing:-0.756000px;}
.ws8{word-spacing:-0.648000px;}
.ws38{word-spacing:-0.576000px;}
.ws1f{word-spacing:-0.540000px;}
.ws4e{word-spacing:-0.505440px;}
.ws39{word-spacing:-0.504000px;}
.ws1a{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.324000px;}
.ws1d{word-spacing:-0.288000px;}
.wsc{word-spacing:-0.216000px;}
.ws31{word-spacing:-0.144000px;}
.ws18{word-spacing:-0.108000px;}
.ws2{word-spacing:0.000000px;}
.ws50{word-spacing:0.063360px;}
.ws1e{word-spacing:0.108000px;}
.ws3b{word-spacing:0.144000px;}
.ws3e{word-spacing:0.168480px;}
.wsa{word-spacing:0.216000px;}
.ws3a{word-spacing:0.288000px;}
.ws4f{word-spacing:0.316800px;}
.ws7{word-spacing:0.324000px;}
.ws36{word-spacing:0.331200px;}
.ws4d{word-spacing:0.540000px;}
.ws9{word-spacing:0.648000px;}
.ws35{word-spacing:0.720000px;}
.ws33{word-spacing:0.972000px;}
.ws32{word-spacing:1.188000px;}
.ws3f{word-spacing:1.620000px;}
.ws2f{word-spacing:22.032000px;}
.ws2a{word-spacing:23.184000px;}
.ws2d{word-spacing:24.048000px;}
.ws2b{word-spacing:24.336000px;}
.ws2e{word-spacing:25.200000px;}
.ws30{word-spacing:27.936000px;}
.ws28{word-spacing:32.688000px;}
.ws51{word-spacing:50.369760px;}
._7{margin-left:-20.154960px;}
._10{margin-left:-14.118480px;}
._5{margin-left:-11.874240px;}
._2{margin-left:-8.905680px;}
._1{margin-left:-6.093360px;}
._4{margin-left:-3.281040px;}
._e{margin-left:-2.183040px;}
._0{margin-left:-1.093680px;}
._6{width:1.249920px;}
._3{width:2.968560px;}
._a{width:5.937120px;}
._d{width:8.154000px;}
._f{width:9.419760px;}
._c{width:16.652160px;}
._b{width:17.902080px;}
._9{width:241.893600px;}
._8{width:384.356400px;}
.fc5{color:rgb(46,88,92);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(66,68,86);}
.fc0{color:rgb(230,241,242);}
.fs8{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:144.000000px;}
.fs0{font-size:156.240000px;}
.fs9{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.y35{bottom:45.267450px;}
.y24{bottom:48.629850px;}
.y82{bottom:60.776700px;}
.y8a{bottom:63.795300px;}
.y45{bottom:64.039800px;}
.y44{bottom:66.314700px;}
.y7f{bottom:76.976700px;}
.y34{bottom:77.478450px;}
.y56{bottom:78.700950px;}
.ye{bottom:80.419350px;}
.y89{bottom:90.618030px;}
.y81{bottom:93.176700px;}
.y55{bottom:100.300950px;}
.y2c{bottom:105.304800px;}
.y7e{bottom:109.376700px;}
.y88{bottom:111.495300px;}
.y1c{bottom:114.759900px;}
.y1b{bottom:114.909900px;}
.y54{bottom:121.900950px;}
.y69{bottom:125.111700px;}
.y80{bottom:125.576700px;}
.y66{bottom:126.998550px;}
.y63{bottom:133.220700px;}
.y2b{bottom:137.704800px;}
.y87{bottom:140.295300px;}
.y53{bottom:143.500950px;}
.y1a{bottom:147.309900px;}
.y11{bottom:153.544500px;}
.y68{bottom:157.700700px;}
.y65{bottom:159.398550px;}
.y52{bottom:165.100950px;}
.y86{bottom:167.118030px;}
.yd{bottom:167.266950px;}
.y39{bottom:169.945500px;}
.y37{bottom:170.667750px;}
.yc{bottom:171.154500px;}
.y62{bottom:171.560700px;}
.y2d{bottom:178.138200px;}
.y10{bottom:185.944500px;}
.y51{bottom:186.700950px;}
.y85{bottom:187.995300px;}
.y67{bottom:190.100700px;}
.y64{bottom:191.798550px;}
.y38{bottom:202.156500px;}
.y36{bottom:202.878750px;}
.yb{bottom:203.554500px;}
.y50{bottom:208.300950px;}
.y7b{bottom:212.144100px;}
.y84{bottom:217.515300px;}
.yf{bottom:218.344500px;}
.y2a{bottom:223.736850px;}
.y19{bottom:225.323850px;}
.y7d{bottom:226.184100px;}
.y4f{bottom:229.900950px;}
.y22{bottom:233.039100px;}
.y7a{bottom:238.784100px;}
.y25{bottom:248.854200px;}
.y4e{bottom:251.500950px;}
.y29{bottom:256.136850px;}
.y18{bottom:257.723850px;}
.y7c{bottom:258.584100px;}
.y21{bottom:265.439100px;}
.y83{bottom:268.219650px;}
.y79{bottom:271.184100px;}
.y42{bottom:272.272950px;}
.y4d{bottom:273.100950px;}
.y3d{bottom:285.829500px;}
.y5a{bottom:290.035650px;}
.y59{bottom:290.035800px;}
.y61{bottom:290.672100px;}
.y1f{bottom:292.694400px;}
.ya{bottom:294.637350px;}
.y8{bottom:294.637500px;}
.y4c{bottom:294.700950px;}
.y41{bottom:304.672950px;}
.y4b{bottom:316.300950px;}
.y3c{bottom:318.229500px;}
.y58{bottom:322.435800px;}
.y60{bottom:323.072100px;}
.y1e{bottom:325.094400px;}
.y40{bottom:337.072950px;}
.y4a{bottom:337.900950px;}
.y3b{bottom:350.629500px;}
.y28{bottom:352.743600px;}
.y1d{bottom:357.494400px;}
.y49{bottom:359.500950px;}
.y6f{bottom:361.467900px;}
.y3f{bottom:369.472950px;}
.y78{bottom:372.378450px;}
.y9{bottom:380.741400px;}
.y48{bottom:381.100950px;}
.y3a{bottom:383.029500px;}
.y6e{bottom:393.867900px;}
.y3e{bottom:401.872950px;}
.y77{bottom:404.778450px;}
.y5f{bottom:410.634150px;}
.y23{bottom:424.041450px;}
.y6d{bottom:426.267900px;}
.y76{bottom:437.178450px;}
.y5e{bottom:443.034150px;}
.y3{bottom:446.994840px;}
.y27{bottom:452.108100px;}
.y7{bottom:457.613700px;}
.y6c{bottom:458.667900px;}
.y33{bottom:470.495250px;}
.y8b{bottom:472.228350px;}
.y31{bottom:472.245600px;}
.y5d{bottom:475.434150px;}
.y47{bottom:475.654500px;}
.y26{bottom:484.508100px;}
.y43{bottom:485.198250px;}
.y6b{bottom:491.067900px;}
.y20{bottom:492.239850px;}
.y2{bottom:493.788720px;}
.y46{bottom:497.974500px;}
.y15{bottom:499.500600px;}
.y32{bottom:502.895250px;}
.y30{bottom:504.645600px;}
.y17{bottom:505.917000px;}
.y5c{bottom:507.834150px;}
.y75{bottom:528.445050px;}
.y73{bottom:528.524700px;}
.y6{bottom:534.675900px;}
.y5b{bottom:540.234150px;}
.y1{bottom:540.582600px;}
.y12{bottom:553.762500px;}
.y74{bottom:560.845050px;}
.y72{bottom:560.924700px;}
.y2f{bottom:562.489350px;}
.y14{bottom:574.049100px;}
.y6a{bottom:606.457950px;}
.y2e{bottom:613.971000px;}
.y5{bottom:619.206600px;}
.y71{bottom:630.095100px;}
.y16{bottom:631.522500px;}
.y13{bottom:646.414950px;}
.y70{bottom:662.495100px;}
.y57{bottom:666.028500px;}
.y4{bottom:707.438700px;}
.he{height:80.220938px;}
.ha{height:83.867344px;}
.hb{height:91.160156px;}
.h6{height:106.657383px;}
.h9{height:112.640625px;}
.hd{height:121.243008px;}
.h3{height:136.740234px;}
.h7{height:138.474234px;}
.h1{height:157.460625px;}
.h2{height:182.320312px;}
.hf{height:193.741875px;}
.h4{height:250.790034px;}
.h8{height:265.740234px;}
.hc{height:266.339634px;}
.h5{height:281.890434px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x14{left:25.889100px;}
.x34{left:26.932200px;}
.x13{left:29.577900px;}
.x25{left:34.769400px;}
.x1f{left:38.557950px;}
.x2f{left:43.866450px;}
.x21{left:47.344650px;}
.x12{left:50.674650px;}
.x1e{left:52.408950px;}
.x5d{left:55.446600px;}
.x2{left:65.139030px;}
.x20{left:67.177950px;}
.x3{left:76.466430px;}
.x5a{left:78.292500px;}
.x9{left:82.606200px;}
.x4{left:91.536450px;}
.x30{left:92.679750px;}
.x54{left:95.167950px;}
.x11{left:100.516650px;}
.x55{left:109.558950px;}
.x43{left:110.748150px;}
.x39{left:115.689900px;}
.x38{left:119.658900px;}
.x31{left:128.130750px;}
.x1{left:132.986250px;}
.x2c{left:140.638050px;}
.x6{left:147.034950px;}
.xd{left:155.663550px;}
.xc{left:158.012550px;}
.x61{left:179.876100px;}
.x15{left:184.637550px;}
.x2d{left:231.184950px;}
.x2e{left:239.473950px;}
.x32{left:242.782950px;}
.x33{left:246.022950px;}
.x42{left:261.097500px;}
.x16{left:267.354000px;}
.x29{left:276.249450px;}
.x28{left:281.714100px;}
.x27{left:285.057150px;}
.x5{left:294.476400px;}
.x57{left:295.669650px;}
.x58{left:300.178650px;}
.x22{left:306.554850px;}
.x23{left:325.805850px;}
.xa{left:331.399500px;}
.x5b{left:334.009650px;}
.x5c{left:336.358650px;}
.x10{left:346.642200px;}
.x59{left:367.489650px;}
.x7{left:376.579500px;}
.x3d{left:382.307850px;}
.x50{left:392.444850px;}
.x51{left:394.604850px;}
.x2b{left:396.543450px;}
.x56{left:423.226800px;}
.x4e{left:424.397400px;}
.x4b{left:429.010350px;}
.xe{left:438.130350px;}
.x4a{left:449.179350px;}
.x36{left:456.925650px;}
.x3b{left:462.966900px;}
.x45{left:469.436400px;}
.x2a{left:474.564150px;}
.x37{left:478.876650px;}
.x3a{left:480.116700px;}
.x47{left:481.478400px;}
.x49{left:487.146150px;}
.x35{left:489.685650px;}
.x26{left:497.650800px;}
.x48{left:500.756400px;}
.x18{left:510.940950px;}
.x46{left:535.127400px;}
.x4f{left:550.946400px;}
.x3c{left:566.934000px;}
.x5f{left:593.324400px;}
.x1b{left:612.759150px;}
.x60{left:614.037360px;}
.x1c{left:615.108150px;}
.xb{left:631.307550px;}
.x24{left:653.179350px;}
.x17{left:666.295200px;}
.x19{left:714.282900px;}
.x5e{left:721.490100px;}
.x1a{left:729.051900px;}
.x8{left:730.447050px;}
.x3f{left:755.817750px;}
.x40{left:757.429650px;}
.x4c{left:767.161050px;}
.x4d{left:774.721050px;}
.x41{left:784.429650px;}
.xf{left:807.363450px;}
.x44{left:820.823100px;}
.x3e{left:824.217750px;}
.x52{left:831.620250px;}
.x1d{left:832.829550px;}
.x53{left:856.271250px;}
@media print{
.v5{vertical-align:-117.281600pt;}
.v6{vertical-align:-23.680000pt;}
.v7{vertical-align:-1.293867pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.541333pt;}
.v1{vertical-align:101.377600pt;}
.v4{vertical-align:114.666667pt;}
.v2{vertical-align:129.022400pt;}
.ls2b{letter-spacing:-0.394240pt;}
.ls26{letter-spacing:-0.340480pt;}
.ls2d{letter-spacing:-0.337920pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.299520pt;}
.ls15{letter-spacing:-0.294400pt;}
.ls5{letter-spacing:-0.288000pt;}
.ls28{letter-spacing:-0.281600pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls2f{letter-spacing:-0.255360pt;}
.ls27{letter-spacing:-0.225280pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.170240pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls2c{letter-spacing:-0.112640pt;}
.ls6{letter-spacing:-0.096000pt;}
.ls25{letter-spacing:-0.085120pt;}
.ls13{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.074880pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.056320pt;}
.ls10{letter-spacing:0.064000pt;}
.ls24{letter-spacing:0.085120pt;}
.ls7{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.138880pt;}
.ls21{letter-spacing:0.168960pt;}
.ls30{letter-spacing:0.170880pt;}
.ls16{letter-spacing:0.176640pt;}
.lsa{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.224000pt;}
.ls9{letter-spacing:0.224640pt;}
.ls14{letter-spacing:0.240000pt;}
.ls19{letter-spacing:0.256000pt;}
.ls2e{letter-spacing:0.281600pt;}
.ls8{letter-spacing:0.288000pt;}
.ls17{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.425600pt;}
.ls1d{letter-spacing:2.472960pt;}
.ls20{letter-spacing:6.927360pt;}
.ls1f{letter-spacing:14.677760pt;}
.ls23{letter-spacing:37.002240pt;}
.ls22{letter-spacing:44.773120pt;}
.lse{letter-spacing:409.262933pt;}
.ls3{letter-spacing:415.516800pt;}
.ls1c{letter-spacing:492.462933pt;}
.ls11{letter-spacing:594.907733pt;}
.ls2{letter-spacing:714.886400pt;}
.ls1a{letter-spacing:2183.526933pt;}
.ws1c{word-spacing:-32.512000pt;}
.ws3{word-spacing:-32.384000pt;}
.ws20{word-spacing:-32.256000pt;}
.ws24{word-spacing:-26.400000pt;}
.ws13{word-spacing:-24.672000pt;}
.ws11{word-spacing:-24.576000pt;}
.ws17{word-spacing:-24.480000pt;}
.ws14{word-spacing:-24.384000pt;}
.ws12{word-spacing:-24.192000pt;}
.ws21{word-spacing:-23.424000pt;}
.ws15{word-spacing:-23.328000pt;}
.wsf{word-spacing:-23.232000pt;}
.wse{word-spacing:-23.136000pt;}
.ws25{word-spacing:-23.040000pt;}
.ws22{word-spacing:-22.944000pt;}
.ws4{word-spacing:-22.848000pt;}
.ws45{word-spacing:-20.939520pt;}
.ws4c{word-spacing:-20.599040pt;}
.ws41{word-spacing:-20.428800pt;}
.ws44{word-spacing:-20.343680pt;}
.ws26{word-spacing:-20.320000pt;}
.ws4b{word-spacing:-20.258560pt;}
.ws42{word-spacing:-20.173440pt;}
.ws27{word-spacing:-19.520000pt;}
.ws10{word-spacing:-19.244160pt;}
.ws16{word-spacing:-18.944640pt;}
.ws23{word-spacing:-15.424000pt;}
.ws2c{word-spacing:-15.232000pt;}
.ws29{word-spacing:-15.168000pt;}
.ws49{word-spacing:-13.854720pt;}
.ws47{word-spacing:-13.460480pt;}
.ws43{word-spacing:-13.347840pt;}
.ws4a{word-spacing:-13.291520pt;}
.ws48{word-spacing:-13.235200pt;}
.ws46{word-spacing:-13.178880pt;}
.ws52{word-spacing:-10.936320pt;}
.ws34{word-spacing:-4.608000pt;}
.ws0{word-spacing:-2.916480pt;}
.ws37{word-spacing:-2.237440pt;}
.ws1{word-spacing:-2.222080pt;}
.ws3d{word-spacing:-1.792000pt;}
.wsd{word-spacing:-1.440000pt;}
.ws5{word-spacing:-1.344000pt;}
.ws3c{word-spacing:-1.088000pt;}
.ws1b{word-spacing:-1.056000pt;}
.ws40{word-spacing:-0.864000pt;}
.ws6{word-spacing:-0.768000pt;}
.ws19{word-spacing:-0.672000pt;}
.ws8{word-spacing:-0.576000pt;}
.ws38{word-spacing:-0.512000pt;}
.ws1f{word-spacing:-0.480000pt;}
.ws4e{word-spacing:-0.449280pt;}
.ws39{word-spacing:-0.448000pt;}
.ws1a{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.288000pt;}
.ws1d{word-spacing:-0.256000pt;}
.wsc{word-spacing:-0.192000pt;}
.ws31{word-spacing:-0.128000pt;}
.ws18{word-spacing:-0.096000pt;}
.ws2{word-spacing:0.000000pt;}
.ws50{word-spacing:0.056320pt;}
.ws1e{word-spacing:0.096000pt;}
.ws3b{word-spacing:0.128000pt;}
.ws3e{word-spacing:0.149760pt;}
.wsa{word-spacing:0.192000pt;}
.ws3a{word-spacing:0.256000pt;}
.ws4f{word-spacing:0.281600pt;}
.ws7{word-spacing:0.288000pt;}
.ws36{word-spacing:0.294400pt;}
.ws4d{word-spacing:0.480000pt;}
.ws9{word-spacing:0.576000pt;}
.ws35{word-spacing:0.640000pt;}
.ws33{word-spacing:0.864000pt;}
.ws32{word-spacing:1.056000pt;}
.ws3f{word-spacing:1.440000pt;}
.ws2f{word-spacing:19.584000pt;}
.ws2a{word-spacing:20.608000pt;}
.ws2d{word-spacing:21.376000pt;}
.ws2b{word-spacing:21.632000pt;}
.ws2e{word-spacing:22.400000pt;}
.ws30{word-spacing:24.832000pt;}
.ws28{word-spacing:29.056000pt;}
.ws51{word-spacing:44.773120pt;}
._7{margin-left:-17.915520pt;}
._10{margin-left:-12.549760pt;}
._5{margin-left:-10.554880pt;}
._2{margin-left:-7.916160pt;}
._1{margin-left:-5.416320pt;}
._4{margin-left:-2.916480pt;}
._e{margin-left:-1.940480pt;}
._0{margin-left:-0.972160pt;}
._6{width:1.111040pt;}
._3{width:2.638720pt;}
._a{width:5.277440pt;}
._d{width:7.248000pt;}
._f{width:8.373120pt;}
._c{width:14.801920pt;}
._b{width:15.912960pt;}
._9{width:215.016533pt;}
._8{width:341.650133pt;}
.fs8{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:128.000000pt;}
.fs0{font-size:138.880000pt;}
.fs9{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:40.237733pt;}
.y24{bottom:43.226533pt;}
.y82{bottom:54.023733pt;}
.y8a{bottom:56.706933pt;}
.y45{bottom:56.924267pt;}
.y44{bottom:58.946400pt;}
.y7f{bottom:68.423733pt;}
.y34{bottom:68.869733pt;}
.y56{bottom:69.956400pt;}
.ye{bottom:71.483867pt;}
.y89{bottom:80.549360pt;}
.y81{bottom:82.823733pt;}
.y55{bottom:89.156400pt;}
.y2c{bottom:93.604267pt;}
.y7e{bottom:97.223733pt;}
.y88{bottom:99.106933pt;}
.y1c{bottom:102.008800pt;}
.y1b{bottom:102.142133pt;}
.y54{bottom:108.356400pt;}
.y69{bottom:111.210400pt;}
.y80{bottom:111.623733pt;}
.y66{bottom:112.887600pt;}
.y63{bottom:118.418400pt;}
.y2b{bottom:122.404267pt;}
.y87{bottom:124.706933pt;}
.y53{bottom:127.556400pt;}
.y1a{bottom:130.942133pt;}
.y11{bottom:136.484000pt;}
.y68{bottom:140.178400pt;}
.y65{bottom:141.687600pt;}
.y52{bottom:146.756400pt;}
.y86{bottom:148.549360pt;}
.yd{bottom:148.681733pt;}
.y39{bottom:151.062667pt;}
.y37{bottom:151.704667pt;}
.yc{bottom:152.137333pt;}
.y62{bottom:152.498400pt;}
.y2d{bottom:158.345067pt;}
.y10{bottom:165.284000pt;}
.y51{bottom:165.956400pt;}
.y85{bottom:167.106933pt;}
.y67{bottom:168.978400pt;}
.y64{bottom:170.487600pt;}
.y38{bottom:179.694667pt;}
.y36{bottom:180.336667pt;}
.yb{bottom:180.937333pt;}
.y50{bottom:185.156400pt;}
.y7b{bottom:188.572533pt;}
.y84{bottom:193.346933pt;}
.yf{bottom:194.084000pt;}
.y2a{bottom:198.877200pt;}
.y19{bottom:200.287867pt;}
.y7d{bottom:201.052533pt;}
.y4f{bottom:204.356400pt;}
.y22{bottom:207.145867pt;}
.y7a{bottom:212.252533pt;}
.y25{bottom:221.203733pt;}
.y4e{bottom:223.556400pt;}
.y29{bottom:227.677200pt;}
.y18{bottom:229.087867pt;}
.y7c{bottom:229.852533pt;}
.y21{bottom:235.945867pt;}
.y83{bottom:238.417467pt;}
.y79{bottom:241.052533pt;}
.y42{bottom:242.020400pt;}
.y4d{bottom:242.756400pt;}
.y3d{bottom:254.070667pt;}
.y5a{bottom:257.809467pt;}
.y59{bottom:257.809600pt;}
.y61{bottom:258.375200pt;}
.y1f{bottom:260.172800pt;}
.ya{bottom:261.899867pt;}
.y8{bottom:261.900000pt;}
.y4c{bottom:261.956400pt;}
.y41{bottom:270.820400pt;}
.y4b{bottom:281.156400pt;}
.y3c{bottom:282.870667pt;}
.y58{bottom:286.609600pt;}
.y60{bottom:287.175200pt;}
.y1e{bottom:288.972800pt;}
.y40{bottom:299.620400pt;}
.y4a{bottom:300.356400pt;}
.y3b{bottom:311.670667pt;}
.y28{bottom:313.549867pt;}
.y1d{bottom:317.772800pt;}
.y49{bottom:319.556400pt;}
.y6f{bottom:321.304800pt;}
.y3f{bottom:328.420400pt;}
.y78{bottom:331.003067pt;}
.y9{bottom:338.436800pt;}
.y48{bottom:338.756400pt;}
.y3a{bottom:340.470667pt;}
.y6e{bottom:350.104800pt;}
.y3e{bottom:357.220400pt;}
.y77{bottom:359.803067pt;}
.y5f{bottom:365.008133pt;}
.y23{bottom:376.925733pt;}
.y6d{bottom:378.904800pt;}
.y76{bottom:388.603067pt;}
.y5e{bottom:393.808133pt;}
.y3{bottom:397.328747pt;}
.y27{bottom:401.873867pt;}
.y7{bottom:406.767733pt;}
.y6c{bottom:407.704800pt;}
.y33{bottom:418.218000pt;}
.y8b{bottom:419.758533pt;}
.y31{bottom:419.773867pt;}
.y5d{bottom:422.608133pt;}
.y47{bottom:422.804000pt;}
.y26{bottom:430.673867pt;}
.y43{bottom:431.287333pt;}
.y6b{bottom:436.504800pt;}
.y20{bottom:437.546533pt;}
.y2{bottom:438.923307pt;}
.y46{bottom:442.644000pt;}
.y15{bottom:444.000533pt;}
.y32{bottom:447.018000pt;}
.y30{bottom:448.573867pt;}
.y17{bottom:449.704000pt;}
.y5c{bottom:451.408133pt;}
.y75{bottom:469.728933pt;}
.y73{bottom:469.799733pt;}
.y6{bottom:475.267467pt;}
.y5b{bottom:480.208133pt;}
.y1{bottom:480.517867pt;}
.y12{bottom:492.233333pt;}
.y74{bottom:498.528933pt;}
.y72{bottom:498.599733pt;}
.y2f{bottom:499.990533pt;}
.y14{bottom:510.265867pt;}
.y6a{bottom:539.073733pt;}
.y2e{bottom:545.752000pt;}
.y5{bottom:550.405867pt;}
.y71{bottom:560.084533pt;}
.y16{bottom:561.353333pt;}
.y13{bottom:574.591067pt;}
.y70{bottom:588.884533pt;}
.y57{bottom:592.025333pt;}
.y4{bottom:628.834400pt;}
.he{height:71.307500pt;}
.ha{height:74.548750pt;}
.hb{height:81.031250pt;}
.h6{height:94.806562pt;}
.h9{height:100.125000pt;}
.hd{height:107.771563pt;}
.h3{height:121.546875pt;}
.h7{height:123.088208pt;}
.h1{height:139.965000pt;}
.h2{height:162.062500pt;}
.hf{height:172.215000pt;}
.h4{height:222.924475pt;}
.h8{height:236.213542pt;}
.hc{height:236.746342pt;}
.h5{height:250.569275pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x14{left:23.012533pt;}
.x34{left:23.939733pt;}
.x13{left:26.291467pt;}
.x25{left:30.906133pt;}
.x1f{left:34.273733pt;}
.x2f{left:38.992400pt;}
.x21{left:42.084133pt;}
.x12{left:45.044133pt;}
.x1e{left:46.585733pt;}
.x5d{left:49.285867pt;}
.x2{left:57.901360pt;}
.x20{left:59.713733pt;}
.x3{left:67.970160pt;}
.x5a{left:69.593333pt;}
.x9{left:73.427733pt;}
.x4{left:81.365733pt;}
.x30{left:82.382000pt;}
.x54{left:84.593733pt;}
.x11{left:89.348133pt;}
.x55{left:97.385733pt;}
.x43{left:98.442800pt;}
.x39{left:102.835467pt;}
.x38{left:106.363467pt;}
.x31{left:113.894000pt;}
.x1{left:118.210000pt;}
.x2c{left:125.011600pt;}
.x6{left:130.697733pt;}
.xd{left:138.367600pt;}
.xc{left:140.455600pt;}
.x61{left:159.889867pt;}
.x15{left:164.122267pt;}
.x2d{left:205.497733pt;}
.x2e{left:212.865733pt;}
.x32{left:215.807067pt;}
.x33{left:218.687067pt;}
.x42{left:232.086667pt;}
.x16{left:237.648000pt;}
.x29{left:245.555067pt;}
.x28{left:250.412533pt;}
.x27{left:253.384133pt;}
.x5{left:261.756800pt;}
.x57{left:262.817467pt;}
.x58{left:266.825467pt;}
.x22{left:272.493200pt;}
.x23{left:289.605200pt;}
.xa{left:294.577333pt;}
.x5b{left:296.897467pt;}
.x5c{left:298.985467pt;}
.x10{left:308.126400pt;}
.x59{left:326.657467pt;}
.x7{left:334.737333pt;}
.x3d{left:339.829200pt;}
.x50{left:348.839867pt;}
.x51{left:350.759867pt;}
.x2b{left:352.483067pt;}
.x56{left:376.201600pt;}
.x4e{left:377.242133pt;}
.x4b{left:381.342533pt;}
.xe{left:389.449200pt;}
.x4a{left:399.270533pt;}
.x36{left:406.156133pt;}
.x3b{left:411.526133pt;}
.x45{left:417.276800pt;}
.x2a{left:421.834800pt;}
.x37{left:425.668133pt;}
.x3a{left:426.770400pt;}
.x47{left:427.980800pt;}
.x49{left:433.018800pt;}
.x35{left:435.276133pt;}
.x26{left:442.356267pt;}
.x48{left:445.116800pt;}
.x18{left:454.169733pt;}
.x46{left:475.668800pt;}
.x4f{left:489.730133pt;}
.x3c{left:503.941333pt;}
.x5f{left:527.399467pt;}
.x1b{left:544.674800pt;}
.x60{left:545.810987pt;}
.x1c{left:546.762800pt;}
.xb{left:561.162267pt;}
.x24{left:580.603867pt;}
.x17{left:592.262400pt;}
.x19{left:634.918133pt;}
.x5e{left:641.324533pt;}
.x1a{left:648.046133pt;}
.x8{left:649.286267pt;}
.x3f{left:671.838000pt;}
.x40{left:673.270800pt;}
.x4c{left:681.920933pt;}
.x4d{left:688.640933pt;}
.x41{left:697.270800pt;}
.xf{left:717.656400pt;}
.x44{left:729.620533pt;}
.x3e{left:732.638000pt;}
.x52{left:739.218000pt;}
.x1d{left:740.292933pt;}
.x53{left:761.130000pt;}
}




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