
    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_f645af48430ed7d97ff3beab.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5b88dfc54c78280a4f21f485.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7a0ea1257de191f90ae7078e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_dcbbb625633e34470e07005b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_34538f8a8797c52b50269ecf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970703;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_f7b36dfeeeb72d19979cb83c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_9242ef6c16073351909f1ef6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-2.700000px;}
.ls16{letter-spacing:-0.774000px;}
.ls1d{letter-spacing:-0.666000px;}
.lsa{letter-spacing:-0.612000px;}
.ls13{letter-spacing:-0.584400px;}
.ls4{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.259800px;}
.ls3{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.100800px;}
.ls9{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.109440px;}
.ls12{letter-spacing:0.135600px;}
.ls1{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.206400px;}
.ls1a{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.365760px;}
.ls15{letter-spacing:0.666000px;}
.ls8{letter-spacing:3.780000px;}
.lsc{letter-spacing:5.940000px;}
.ls11{letter-spacing:12.420000px;}
.lse{letter-spacing:13.140000px;}
.ls1e{letter-spacing:16.506720px;}
.ls10{letter-spacing:37.620000px;}
.ls1c{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.146400px;}
.ws6{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.680200px;}
.wsc{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.166000px;}
.ws8{word-spacing:-10.080000px;}
.ws7{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-1728.673920px;}
._34{margin-left:-12.625200px;}
._1{margin-left:-6.094080px;}
._4{margin-left:-3.444480px;}
._15{margin-left:-2.428560px;}
._2{margin-left:-1.391040px;}
._0{width:1.010880px;}
._21{width:2.085120px;}
._9{width:3.085920px;}
._a{width:4.248000px;}
._8{width:5.981040px;}
._16{width:7.051680px;}
._19{width:8.691120px;}
._1a{width:10.626000px;}
._c{width:12.365760px;}
._b{width:13.685040px;}
._1b{width:16.254720px;}
._33{width:17.276400px;}
._13{width:18.307920px;}
._d{width:19.422000px;}
._e{width:20.861280px;}
._11{width:21.877200px;}
._10{width:23.490720px;}
._f{width:24.680880px;}
._18{width:25.995600px;}
._12{width:27.429840px;}
._1c{width:28.744560px;}
._1d{width:30.427920px;}
._20{width:31.613040px;}
._1f{width:32.628960px;}
._22{width:34.187760px;}
._23{width:35.263440px;}
._24{width:36.393840px;}
._25{width:37.833120px;}
._2c{width:39.553920px;}
._1e{width:40.641840px;}
._35{width:41.919600px;}
._2a{width:42.972480px;}
._14{width:44.227440px;}
._17{width:45.656640px;}
._30{width:47.330640px;}
._28{width:48.465360px;}
._27{width:49.500000px;}
._2b{width:50.736240px;}
._2e{width:51.809760px;}
._31{width:54.446400px;}
._26{width:57.135600px;}
._29{width:58.928400px;}
._38{width:60.775920px;}
._2f{width:61.851600px;}
._2d{width:63.290880px;}
._40{width:66.609360px;}
._45{width:70.214400px;}
._3b{width:71.614080px;}
._3a{width:72.732960px;}
._39{width:73.743840px;}
._3d{width:78.823440px;}
._3c{width:83.131200px;}
._43{width:86.233680px;}
._42{width:87.428880px;}
._36{width:99.560160px;}
._46{width:106.133760px;}
._3f{width:107.503200px;}
._3e{width:108.588960px;}
._44{width:110.257200px;}
._37{width:188.004960px;}
._32{width:201.204000px;}
._6{width:202.500000px;}
._5{width:345.365760px;}
._41{width:491.549040px;}
._3{width:631.448160px;}
.fc8{color:rgb(128,0,128);}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(17,85,204);}
.fc3{color:rgb(0,78,154);}
.fc2{color:transparent;}
.fc1{color:rgb(19,19,20);}
.fc5{color:rgb(31,31,31);}
.fc4{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y70{bottom:5.760000px;}
.y7b{bottom:5.790000px;}
.y87{bottom:5.934000px;}
.y72{bottom:5.940000px;}
.y8{bottom:6.300000px;}
.y7{bottom:6.480000px;}
.yb3{bottom:20.700000px;}
.ycb{bottom:20.880000px;}
.yb0{bottom:25.560000px;}
.yd2{bottom:25.740000px;}
.yb2{bottom:40.500000px;}
.yb7{bottom:40.680000px;}
.ybf{bottom:40.710000px;}
.yc8{bottom:40.725000px;}
.yaf{bottom:45.360000px;}
.y9{bottom:57.276000px;}
.y6{bottom:72.756000px;}
.yac{bottom:102.096000px;}
.ye3{bottom:107.676000px;}
.y88{bottom:108.756000px;}
.y6e{bottom:112.176000px;}
.y37{bottom:114.516000px;}
.yab{bottom:122.076000px;}
.ye2{bottom:127.656000px;}
.ybd{bottom:129.996000px;}
.y6d{bottom:131.976000px;}
.y36{bottom:134.316000px;}
.yaa{bottom:141.876000px;}
.y86{bottom:144.216000px;}
.ye1{bottom:147.456000px;}
.y6c{bottom:151.950000px;}
.y35{bottom:154.110000px;}
.ya9{bottom:161.670000px;}
.ybb{bottom:164.910000px;}
.ye0{bottom:167.250000px;}
.y6b{bottom:171.750000px;}
.y34{bottom:173.910000px;}
.y85{bottom:179.850000px;}
.ya8{bottom:181.470000px;}
.ydf{bottom:187.050000px;}
.y6a{bottom:191.550000px;}
.y33{bottom:193.890000px;}
.ybc{bottom:199.650000px;}
.ya7{bottom:201.270000px;}
.yde{bottom:206.850000px;}
.y69{bottom:211.350000px;}
.y32{bottom:213.690000px;}
.y84{bottom:215.490000px;}
.ya6{bottom:221.250000px;}
.ydd{bottom:226.830000px;}
.y68{bottom:231.150000px;}
.y31{bottom:233.490000px;}
.yba{bottom:234.570000px;}
.ya5{bottom:241.050000px;}
.ydc{bottom:246.630000px;}
.y67{bottom:251.130000px;}
.y30{bottom:253.290000px;}
.ya4{bottom:260.850000px;}
.ydb{bottom:266.430000px;}
.yb9{bottom:269.310000px;}
.y66{bottom:270.930000px;}
.y2f{bottom:273.090000px;}
.ya3{bottom:280.650000px;}
.yda{bottom:286.230000px;}
.y83{bottom:286.590000px;}
.y65{bottom:290.730000px;}
.y2e{bottom:293.070000px;}
.ya2{bottom:300.495000px;}
.yb6{bottom:304.275000px;}
.yd9{bottom:308.595000px;}
.y64{bottom:310.575000px;}
.y2d{bottom:312.915000px;}
.ya1{bottom:320.475000px;}
.y82{bottom:322.275000px;}
.y63{bottom:330.375000px;}
.y2c{bottom:332.715000px;}
.yb8{bottom:339.015000px;}
.ya0{bottom:340.275000px;}
.yd8{bottom:344.235000px;}
.y62{bottom:350.355000px;}
.y2b{bottom:352.515000px;}
.y81{bottom:357.915000px;}
.y9f{bottom:360.075000px;}
.y61{bottom:370.155000px;}
.y2a{bottom:372.315000px;}
.yb5{bottom:373.935000px;}
.yd7{bottom:378.975000px;}
.y9e{bottom:379.875000px;}
.y60{bottom:389.955000px;}
.y29{bottom:392.295000px;}
.y80{bottom:393.375000px;}
.y9d{bottom:402.195000px;}
.y5f{bottom:409.755000px;}
.y28{bottom:412.095000px;}
.yd6{bottom:413.895000px;}
.yb1{bottom:428.655000px;}
.y7f{bottom:429.015000px;}
.y5e{bottom:429.555000px;}
.y27{bottom:431.895000px;}
.y9c{bottom:437.835000px;}
.yd4{bottom:448.635000px;}
.y5d{bottom:449.535000px;}
.y26{bottom:451.695000px;}
.yb4{bottom:463.395000px;}
.y7e{bottom:464.655000px;}
.y5c{bottom:469.335000px;}
.y25{bottom:471.495000px;}
.y9b{bottom:473.295000px;}
.yd5{bottom:483.555000px;}
.y5b{bottom:489.135000px;}
.y24{bottom:491.475000px;}
.yae{bottom:499.035000px;}
.y7d{bottom:500.115000px;}
.y5a{bottom:508.935000px;}
.y23{bottom:511.275000px;}
.yd3{bottom:518.295000px;}
.y59{bottom:528.735000px;}
.y22{bottom:531.075000px;}
.y7c{bottom:535.755000px;}
.y9a{bottom:544.575000px;}
.y58{bottom:548.715000px;}
.y21{bottom:550.875000px;}
.y57{bottom:568.515000px;}
.y20{bottom:570.675000px;}
.y7a{bottom:571.395000px;}
.yd1{bottom:573.045000px;}
.yad{bottom:574.305000px;}
.y99{bottom:580.245000px;}
.y56{bottom:588.345000px;}
.y1f{bottom:590.685000px;}
.y79{bottom:607.065000px;}
.y55{bottom:608.145000px;}
.y1e{bottom:610.485000px;}
.y98{bottom:615.705000px;}
.yd0{bottom:627.765000px;}
.y54{bottom:627.945000px;}
.y1d{bottom:630.285000px;}
.y78{bottom:642.525000px;}
.y53{bottom:647.925000px;}
.y1c{bottom:650.085000px;}
.y97{bottom:651.345000px;}
.ycf{bottom:662.505000px;}
.y52{bottom:667.725000px;}
.y1b{bottom:669.885000px;}
.y77{bottom:678.165000px;}
.y96{bottom:686.985000px;}
.y51{bottom:687.525000px;}
.y1a{bottom:689.865000px;}
.ycd{bottom:697.425000px;}
.y50{bottom:707.325000px;}
.y19{bottom:711.825000px;}
.y76{bottom:713.805000px;}
.y95{bottom:722.445000px;}
.y4f{bottom:727.125000px;}
.y18{bottom:731.625000px;}
.yce{bottom:732.345000px;}
.y4e{bottom:747.105000px;}
.y75{bottom:749.265000px;}
.y17{bottom:751.605000px;}
.y94{bottom:758.085000px;}
.y4d{bottom:766.905000px;}
.yca{bottom:767.085000px;}
.y16{bottom:771.405000px;}
.y74{bottom:784.905000px;}
.y4c{bottom:786.705000px;}
.y15{bottom:791.205000px;}
.y93{bottom:793.725000px;}
.ycc{bottom:802.005000px;}
.y4b{bottom:806.505000px;}
.y14{bottom:811.005000px;}
.y73{bottom:820.545000px;}
.y4a{bottom:826.305000px;}
.y92{bottom:829.185000px;}
.y13{bottom:830.805000px;}
.yc7{bottom:836.745000px;}
.y49{bottom:846.285000px;}
.y12{bottom:850.785000px;}
.y71{bottom:856.050000px;}
.y91{bottom:864.870000px;}
.y48{bottom:866.130000px;}
.y11{bottom:870.630000px;}
.yc9{bottom:871.710000px;}
.y47{bottom:885.930000px;}
.y10{bottom:890.430000px;}
.y6f{bottom:891.690000px;}
.y90{bottom:900.510000px;}
.y46{bottom:905.730000px;}
.yc5{bottom:906.450000px;}
.yf{bottom:912.570000px;}
.y45{bottom:925.530000px;}
.ye{bottom:932.370000px;}
.y8f{bottom:936.150000px;}
.yc6{bottom:941.370000px;}
.y44{bottom:945.510000px;}
.yd{bottom:952.710000px;}
.y43{bottom:965.310000px;}
.y8e{bottom:971.610000px;}
.yc{bottom:974.490000px;}
.yc3{bottom:976.110000px;}
.y42{bottom:985.110000px;}
.yb{bottom:999.510000px;}
.y41{bottom:1004.910000px;}
.y8d{bottom:1007.250000px;}
.yc4{bottom:1011.030000px;}
.y40{bottom:1024.710000px;}
.ya{bottom:1031.190000px;}
.y8c{bottom:1042.890000px;}
.y3f{bottom:1044.690000px;}
.yc1{bottom:1045.770000px;}
.y3e{bottom:1064.490000px;}
.y5{bottom:1065.930000px;}
.y8b{bottom:1078.350000px;}
.yc2{bottom:1080.690000px;}
.y3d{bottom:1084.290000px;}
.y4{bottom:1102.470000px;}
.y3c{bottom:1104.090000px;}
.y8a{bottom:1113.990000px;}
.ybe{bottom:1115.430000px;}
.y3b{bottom:1123.890000px;}
.y3{bottom:1130.910000px;}
.y3a{bottom:1143.900000px;}
.y89{bottom:1149.660000px;}
.yc0{bottom:1150.380000px;}
.y2{bottom:1159.380000px;}
.y39{bottom:1163.700000px;}
.y1{bottom:1190.160000px;}
.y38{bottom:1193.040000px;}
.hc{height:19.800000px;}
.he{height:19.836000px;}
.hd{height:19.980000px;}
.h14{height:20.016000px;}
.h6{height:21.780000px;}
.h11{height:39.600000px;}
.h15{height:39.780000px;}
.hb{height:42.164648px;}
.h9{height:43.215117px;}
.ha{height:43.302656px;}
.h16{height:43.506914px;}
.h3{height:46.736719px;}
.h7{height:47.901094px;}
.h5{height:48.224531px;}
.h17{height:49.255313px;}
.h4{height:50.800781px;}
.h10{height:54.540000px;}
.h12{height:54.720000px;}
.h13{height:54.756000px;}
.h2{height:54.864844px;}
.hf{height:59.400000px;}
.h8{height:67.565039px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:46.620000px;}
.w3{width:51.516000px;}
.w6{width:80.316000px;}
.w10{width:82.116000px;}
.wf{width:84.420000px;}
.wd{width:87.660000px;}
.we{width:88.956000px;}
.w9{width:91.440000px;}
.wa{width:98.316000px;}
.w8{width:107.316000px;}
.wb{width:118.656000px;}
.w5{width:142.200000px;}
.w11{width:148.536000px;}
.wc{width:175.530000px;}
.w13{width:352.155000px;}
.w12{width:667.230000px;}
.w4{width:733.110000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.020000px;}
.x3{left:8.100000px;}
.x1{left:52.919987px;}
.x2{left:53.999987px;}
.x20{left:81.035987px;}
.xc{left:96.515987px;}
.x6{left:98.855987px;}
.x11{left:102.096000px;}
.x4{left:106.236000px;}
.xb{left:108.035987px;}
.x19{left:113.076000px;}
.xf{left:128.735987px;}
.x12{left:245.010000px;}
.xa{left:259.634987px;}
.x1a{left:288.615000px;}
.x7{left:316.874987px;}
.x13{left:326.055000px;}
.x5{left:335.769000px;}
.x14{left:373.395000px;}
.x1b{left:376.275000px;}
.x9{left:394.814987px;}
.x8{left:446.684987px;}
.x1c{left:465.225000px;}
.xd{left:473.684987px;}
.x16{left:481.425000px;}
.x1f{left:500.684987px;}
.x10{left:516.164987px;}
.xe{left:527.684987px;}
.x1d{left:549.645000px;}
.x17{left:573.585000px;}
.x1e{left:631.770000px;}
.x18{left:672.630000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-2.400000pt;}
.ls16{letter-spacing:-0.688000pt;}
.ls1d{letter-spacing:-0.592000pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls13{letter-spacing:-0.519467pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.230933pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.089600pt;}
.ls9{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.097280pt;}
.ls12{letter-spacing:0.120533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.183467pt;}
.ls1a{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.325120pt;}
.ls15{letter-spacing:0.592000pt;}
.ls8{letter-spacing:3.360000pt;}
.lsc{letter-spacing:5.280000pt;}
.ls11{letter-spacing:11.040000pt;}
.lse{letter-spacing:11.680000pt;}
.ls1e{letter-spacing:14.672640pt;}
.ls10{letter-spacing:33.440000pt;}
.ls1c{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.049067pt;}
.wsc{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.592000pt;}
.ws8{word-spacing:-8.960000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-1536.599040pt;}
._34{margin-left:-11.222400pt;}
._1{margin-left:-5.416960pt;}
._4{margin-left:-3.061760pt;}
._15{margin-left:-2.158720pt;}
._2{margin-left:-1.236480pt;}
._0{width:0.898560pt;}
._21{width:1.853440pt;}
._9{width:2.743040pt;}
._a{width:3.776000pt;}
._8{width:5.316480pt;}
._16{width:6.268160pt;}
._19{width:7.725440pt;}
._1a{width:9.445333pt;}
._c{width:10.991787pt;}
._b{width:12.164480pt;}
._1b{width:14.448640pt;}
._33{width:15.356800pt;}
._13{width:16.273707pt;}
._d{width:17.264000pt;}
._e{width:18.543360pt;}
._11{width:19.446400pt;}
._10{width:20.880640pt;}
._f{width:21.938560pt;}
._18{width:23.107200pt;}
._12{width:24.382080pt;}
._1c{width:25.550720pt;}
._1d{width:27.047040pt;}
._20{width:28.100480pt;}
._1f{width:29.003520pt;}
._22{width:30.389120pt;}
._23{width:31.345280pt;}
._24{width:32.350080pt;}
._25{width:33.629440pt;}
._2c{width:35.159040pt;}
._1e{width:36.126080pt;}
._35{width:37.261867pt;}
._2a{width:38.197760pt;}
._14{width:39.313280pt;}
._17{width:40.583680pt;}
._30{width:42.071680pt;}
._28{width:43.080320pt;}
._27{width:44.000000pt;}
._2b{width:45.098880pt;}
._2e{width:46.053120pt;}
._31{width:48.396800pt;}
._26{width:50.787200pt;}
._29{width:52.380800pt;}
._38{width:54.023040pt;}
._2f{width:54.979200pt;}
._2d{width:56.258560pt;}
._40{width:59.208320pt;}
._45{width:62.412800pt;}
._3b{width:63.656960pt;}
._3a{width:64.651520pt;}
._39{width:65.550080pt;}
._3d{width:70.065280pt;}
._3c{width:73.894400pt;}
._43{width:76.652160pt;}
._42{width:77.714560pt;}
._36{width:88.497920pt;}
._46{width:94.341120pt;}
._3f{width:95.558400pt;}
._3e{width:96.523520pt;}
._44{width:98.006400pt;}
._37{width:167.115520pt;}
._32{width:178.848000pt;}
._6{width:180.000000pt;}
._5{width:306.991787pt;}
._41{width:436.932480pt;}
._3{width:561.287253pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:5.120000pt;}
.y7b{bottom:5.146667pt;}
.y87{bottom:5.274667pt;}
.y72{bottom:5.280000pt;}
.y8{bottom:5.600000pt;}
.y7{bottom:5.760000pt;}
.yb3{bottom:18.400000pt;}
.ycb{bottom:18.560000pt;}
.yb0{bottom:22.720000pt;}
.yd2{bottom:22.880000pt;}
.yb2{bottom:36.000000pt;}
.yb7{bottom:36.160000pt;}
.ybf{bottom:36.186667pt;}
.yc8{bottom:36.200000pt;}
.yaf{bottom:40.320000pt;}
.y9{bottom:50.912000pt;}
.y6{bottom:64.672000pt;}
.yac{bottom:90.752000pt;}
.ye3{bottom:95.712000pt;}
.y88{bottom:96.672000pt;}
.y6e{bottom:99.712000pt;}
.y37{bottom:101.792000pt;}
.yab{bottom:108.512000pt;}
.ye2{bottom:113.472000pt;}
.ybd{bottom:115.552000pt;}
.y6d{bottom:117.312000pt;}
.y36{bottom:119.392000pt;}
.yaa{bottom:126.112000pt;}
.y86{bottom:128.192000pt;}
.ye1{bottom:131.072000pt;}
.y6c{bottom:135.066667pt;}
.y35{bottom:136.986667pt;}
.ya9{bottom:143.706667pt;}
.ybb{bottom:146.586667pt;}
.ye0{bottom:148.666667pt;}
.y6b{bottom:152.666667pt;}
.y34{bottom:154.586667pt;}
.y85{bottom:159.866667pt;}
.ya8{bottom:161.306667pt;}
.ydf{bottom:166.266667pt;}
.y6a{bottom:170.266667pt;}
.y33{bottom:172.346667pt;}
.ybc{bottom:177.466667pt;}
.ya7{bottom:178.906667pt;}
.yde{bottom:183.866667pt;}
.y69{bottom:187.866667pt;}
.y32{bottom:189.946667pt;}
.y84{bottom:191.546667pt;}
.ya6{bottom:196.666667pt;}
.ydd{bottom:201.626667pt;}
.y68{bottom:205.466667pt;}
.y31{bottom:207.546667pt;}
.yba{bottom:208.506667pt;}
.ya5{bottom:214.266667pt;}
.ydc{bottom:219.226667pt;}
.y67{bottom:223.226667pt;}
.y30{bottom:225.146667pt;}
.ya4{bottom:231.866667pt;}
.ydb{bottom:236.826667pt;}
.yb9{bottom:239.386667pt;}
.y66{bottom:240.826667pt;}
.y2f{bottom:242.746667pt;}
.ya3{bottom:249.466667pt;}
.yda{bottom:254.426667pt;}
.y83{bottom:254.746667pt;}
.y65{bottom:258.426667pt;}
.y2e{bottom:260.506667pt;}
.ya2{bottom:267.106667pt;}
.yb6{bottom:270.466667pt;}
.yd9{bottom:274.306667pt;}
.y64{bottom:276.066667pt;}
.y2d{bottom:278.146667pt;}
.ya1{bottom:284.866667pt;}
.y82{bottom:286.466667pt;}
.y63{bottom:293.666667pt;}
.y2c{bottom:295.746667pt;}
.yb8{bottom:301.346667pt;}
.ya0{bottom:302.466667pt;}
.yd8{bottom:305.986667pt;}
.y62{bottom:311.426667pt;}
.y2b{bottom:313.346667pt;}
.y81{bottom:318.146667pt;}
.y9f{bottom:320.066667pt;}
.y61{bottom:329.026667pt;}
.y2a{bottom:330.946667pt;}
.yb5{bottom:332.386667pt;}
.yd7{bottom:336.866667pt;}
.y9e{bottom:337.666667pt;}
.y60{bottom:346.626667pt;}
.y29{bottom:348.706667pt;}
.y80{bottom:349.666667pt;}
.y9d{bottom:357.506667pt;}
.y5f{bottom:364.226667pt;}
.y28{bottom:366.306667pt;}
.yd6{bottom:367.906667pt;}
.yb1{bottom:381.026667pt;}
.y7f{bottom:381.346667pt;}
.y5e{bottom:381.826667pt;}
.y27{bottom:383.906667pt;}
.y9c{bottom:389.186667pt;}
.yd4{bottom:398.786667pt;}
.y5d{bottom:399.586667pt;}
.y26{bottom:401.506667pt;}
.yb4{bottom:411.906667pt;}
.y7e{bottom:413.026667pt;}
.y5c{bottom:417.186667pt;}
.y25{bottom:419.106667pt;}
.y9b{bottom:420.706667pt;}
.yd5{bottom:429.826667pt;}
.y5b{bottom:434.786667pt;}
.y24{bottom:436.866667pt;}
.yae{bottom:443.586667pt;}
.y7d{bottom:444.546667pt;}
.y5a{bottom:452.386667pt;}
.y23{bottom:454.466667pt;}
.yd3{bottom:460.706667pt;}
.y59{bottom:469.986667pt;}
.y22{bottom:472.066667pt;}
.y7c{bottom:476.226667pt;}
.y9a{bottom:484.066667pt;}
.y58{bottom:487.746667pt;}
.y21{bottom:489.666667pt;}
.y57{bottom:505.346667pt;}
.y20{bottom:507.266667pt;}
.y7a{bottom:507.906667pt;}
.yd1{bottom:509.373333pt;}
.yad{bottom:510.493333pt;}
.y99{bottom:515.773333pt;}
.y56{bottom:522.973333pt;}
.y1f{bottom:525.053333pt;}
.y79{bottom:539.613333pt;}
.y55{bottom:540.573333pt;}
.y1e{bottom:542.653333pt;}
.y98{bottom:547.293333pt;}
.yd0{bottom:558.013333pt;}
.y54{bottom:558.173333pt;}
.y1d{bottom:560.253333pt;}
.y78{bottom:571.133333pt;}
.y53{bottom:575.933333pt;}
.y1c{bottom:577.853333pt;}
.y97{bottom:578.973333pt;}
.ycf{bottom:588.893333pt;}
.y52{bottom:593.533333pt;}
.y1b{bottom:595.453333pt;}
.y77{bottom:602.813333pt;}
.y96{bottom:610.653333pt;}
.y51{bottom:611.133333pt;}
.y1a{bottom:613.213333pt;}
.ycd{bottom:619.933333pt;}
.y50{bottom:628.733333pt;}
.y19{bottom:632.733333pt;}
.y76{bottom:634.493333pt;}
.y95{bottom:642.173333pt;}
.y4f{bottom:646.333333pt;}
.y18{bottom:650.333333pt;}
.yce{bottom:650.973333pt;}
.y4e{bottom:664.093333pt;}
.y75{bottom:666.013333pt;}
.y17{bottom:668.093333pt;}
.y94{bottom:673.853333pt;}
.y4d{bottom:681.693333pt;}
.yca{bottom:681.853333pt;}
.y16{bottom:685.693333pt;}
.y74{bottom:697.693333pt;}
.y4c{bottom:699.293333pt;}
.y15{bottom:703.293333pt;}
.y93{bottom:705.533333pt;}
.ycc{bottom:712.893333pt;}
.y4b{bottom:716.893333pt;}
.y14{bottom:720.893333pt;}
.y73{bottom:729.373333pt;}
.y4a{bottom:734.493333pt;}
.y92{bottom:737.053333pt;}
.y13{bottom:738.493333pt;}
.yc7{bottom:743.773333pt;}
.y49{bottom:752.253333pt;}
.y12{bottom:756.253333pt;}
.y71{bottom:760.933333pt;}
.y91{bottom:768.773333pt;}
.y48{bottom:769.893333pt;}
.y11{bottom:773.893333pt;}
.yc9{bottom:774.853333pt;}
.y47{bottom:787.493333pt;}
.y10{bottom:791.493333pt;}
.y6f{bottom:792.613333pt;}
.y90{bottom:800.453333pt;}
.y46{bottom:805.093333pt;}
.yc5{bottom:805.733333pt;}
.yf{bottom:811.173333pt;}
.y45{bottom:822.693333pt;}
.ye{bottom:828.773333pt;}
.y8f{bottom:832.133333pt;}
.yc6{bottom:836.773333pt;}
.y44{bottom:840.453333pt;}
.yd{bottom:846.853333pt;}
.y43{bottom:858.053333pt;}
.y8e{bottom:863.653333pt;}
.yc{bottom:866.213333pt;}
.yc3{bottom:867.653333pt;}
.y42{bottom:875.653333pt;}
.yb{bottom:888.453333pt;}
.y41{bottom:893.253333pt;}
.y8d{bottom:895.333333pt;}
.yc4{bottom:898.693333pt;}
.y40{bottom:910.853333pt;}
.ya{bottom:916.613333pt;}
.y8c{bottom:927.013333pt;}
.y3f{bottom:928.613333pt;}
.yc1{bottom:929.573333pt;}
.y3e{bottom:946.213333pt;}
.y5{bottom:947.493333pt;}
.y8b{bottom:958.533333pt;}
.yc2{bottom:960.613333pt;}
.y3d{bottom:963.813333pt;}
.y4{bottom:979.973333pt;}
.y3c{bottom:981.413333pt;}
.y8a{bottom:990.213333pt;}
.ybe{bottom:991.493333pt;}
.y3b{bottom:999.013333pt;}
.y3{bottom:1005.253333pt;}
.y3a{bottom:1016.800000pt;}
.y89{bottom:1021.920000pt;}
.yc0{bottom:1022.560000pt;}
.y2{bottom:1030.560000pt;}
.y39{bottom:1034.400000pt;}
.y1{bottom:1057.920000pt;}
.y38{bottom:1060.480000pt;}
.hc{height:17.600000pt;}
.he{height:17.632000pt;}
.hd{height:17.760000pt;}
.h14{height:17.792000pt;}
.h6{height:19.360000pt;}
.h11{height:35.200000pt;}
.h15{height:35.360000pt;}
.hb{height:37.479688pt;}
.h9{height:38.413438pt;}
.ha{height:38.491250pt;}
.h16{height:38.672812pt;}
.h3{height:41.543750pt;}
.h7{height:42.578750pt;}
.h5{height:42.866250pt;}
.h17{height:43.782500pt;}
.h4{height:45.156250pt;}
.h10{height:48.480000pt;}
.h12{height:48.640000pt;}
.h13{height:48.672000pt;}
.h2{height:48.768750pt;}
.hf{height:52.800000pt;}
.h8{height:60.057813pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:41.440000pt;}
.w3{width:45.792000pt;}
.w6{width:71.392000pt;}
.w10{width:72.992000pt;}
.wf{width:75.040000pt;}
.wd{width:77.920000pt;}
.we{width:79.072000pt;}
.w9{width:81.280000pt;}
.wa{width:87.392000pt;}
.w8{width:95.392000pt;}
.wb{width:105.472000pt;}
.w5{width:126.400000pt;}
.w11{width:132.032000pt;}
.wc{width:156.026667pt;}
.w13{width:313.026667pt;}
.w12{width:593.093333pt;}
.w4{width:651.653333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.240000pt;}
.x3{left:7.200000pt;}
.x1{left:47.039988pt;}
.x2{left:47.999988pt;}
.x20{left:72.031988pt;}
.xc{left:85.791988pt;}
.x6{left:87.871988pt;}
.x11{left:90.752000pt;}
.x4{left:94.432000pt;}
.xb{left:96.031988pt;}
.x19{left:100.512000pt;}
.xf{left:114.431988pt;}
.x12{left:217.786667pt;}
.xa{left:230.786655pt;}
.x1a{left:256.546667pt;}
.x7{left:281.666655pt;}
.x13{left:289.826667pt;}
.x5{left:298.461333pt;}
.x14{left:331.906667pt;}
.x1b{left:334.466667pt;}
.x9{left:350.946655pt;}
.x8{left:397.053322pt;}
.x1c{left:413.533333pt;}
.xd{left:421.053322pt;}
.x16{left:427.933333pt;}
.x1f{left:445.053322pt;}
.x10{left:458.813322pt;}
.xe{left:469.053322pt;}
.x1d{left:488.573333pt;}
.x17{left:509.853333pt;}
.x1e{left:561.573333pt;}
.x18{left:597.893333pt;}
}




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