
    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_7975ed400c1e561c563ee145.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936035;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_6ef85b7271b2906d266b31b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.929688;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_a280d50d345fe3b74a66fa7b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_d542d405d65f6f77252c76ac.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091797;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_b2491b5ac89ec3827471ff0a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_67a965b679865c81f62b80bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.929688;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_e41ce62a625b60996840919e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.030273;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_ca9b93091ddde602dd58e15c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854980;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_407d03292f52493301eab688.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.091797;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_f4e7548d9483515e0f3f94da.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.030273;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_fe840c5d2b9224ac3517e691.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.752441;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-64.800000px;}
.v3{vertical-align:-50.400000px;}
.v4{vertical-align:-36.720000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:64.800000px;}
.ls3b{letter-spacing:-5.484000px;}
.ls36{letter-spacing:-5.352000px;}
.ls23{letter-spacing:-4.632000px;}
.ls34{letter-spacing:-2.190000px;}
.ls26{letter-spacing:-2.046000px;}
.ls33{letter-spacing:-1.992000px;}
.ls38{letter-spacing:-1.470000px;}
.ls27{letter-spacing:-1.014000px;}
.ls2a{letter-spacing:-0.294600px;}
.ls30{letter-spacing:-0.235200px;}
.ls28{letter-spacing:-0.220800px;}
.ls2e{letter-spacing:-0.196800px;}
.ls22{letter-spacing:-0.155400px;}
.ls42{letter-spacing:-0.128400px;}
.ls3a{letter-spacing:-0.114600px;}
.ls39{letter-spacing:-0.114000px;}
.ls2d{letter-spacing:-0.101400px;}
.ls3c{letter-spacing:-0.091200px;}
.ls29{letter-spacing:-0.087600px;}
.ls41{letter-spacing:-0.058320px;}
.ls32{letter-spacing:-0.052560px;}
.ls3e{letter-spacing:-0.033840px;}
.ls3f{letter-spacing:-0.011520px;}
.ls20{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.002160px;}
.ls43{letter-spacing:0.040320px;}
.ls6{letter-spacing:0.044640px;}
.ls35{letter-spacing:0.056160px;}
.ls31{letter-spacing:0.058320px;}
.ls1c{letter-spacing:0.060480px;}
.ls16{letter-spacing:0.072000px;}
.ls2f{letter-spacing:0.090000px;}
.ls1d{letter-spacing:0.129600px;}
.ls12{letter-spacing:0.130320px;}
.ls1f{letter-spacing:0.132480px;}
.ls0{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.261600px;}
.ls1e{letter-spacing:0.265200px;}
.lse{letter-spacing:0.278640px;}
.ls13{letter-spacing:0.347760px;}
.ls5{letter-spacing:0.396720px;}
.ls15{letter-spacing:0.484560px;}
.ls21{letter-spacing:0.504600px;}
.ls2c{letter-spacing:0.523200px;}
.ls25{letter-spacing:0.564600px;}
.ls2b{letter-spacing:0.606000px;}
.ls3d{letter-spacing:0.630000px;}
.ls10{letter-spacing:0.822960px;}
.ls19{letter-spacing:0.849600px;}
.ls40{letter-spacing:0.984000px;}
.ls11{letter-spacing:1.030320px;}
.ls2{letter-spacing:4.716720px;}
.lsf{letter-spacing:11.196720px;}
.ls1b{letter-spacing:14.796720px;}
.ls4{letter-spacing:27.756720px;}
.ls17{letter-spacing:40.895280px;}
.ls14{letter-spacing:48.095280px;}
.lsa{letter-spacing:49.104000px;}
.ls18{letter-spacing:54.396720px;}
.ls3{letter-spacing:71.676720px;}
.lsd{letter-spacing:128.556720px;}
.lsb{letter-spacing:144.621600px;}
.ls7{letter-spacing:144.633600px;}
.lsc{letter-spacing:144.672000px;}
.ls1{letter-spacing:144.684000px;}
.ls1a{letter-spacing:149.436720px;}
.ls9{letter-spacing:189.036720px;}
.ls8{letter-spacing:189.756720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1c{word-spacing:-122.400000px;}
.ws2a{word-spacing:-100.080000px;}
.ws3{word-spacing:-66.941280px;}
.ws4{word-spacing:-48.671280px;}
.ws26{word-spacing:-43.848000px;}
.ws27{word-spacing:-42.347280px;}
.ws22{word-spacing:-41.993280px;}
.wsf{word-spacing:-41.969280px;}
.ws8{word-spacing:-41.927880px;}
.ws10{word-spacing:-41.886480px;}
.ws7{word-spacing:-41.624880px;}
.ws13{word-spacing:-41.482512px;}
.ws15{word-spacing:-41.421600px;}
.ws19{word-spacing:-41.419440px;}
.ws1b{word-spacing:-41.365440px;}
.ws9{word-spacing:-41.363280px;}
.ws25{word-spacing:-41.351760px;}
.ws23{word-spacing:-41.329440px;}
.ws16{word-spacing:-41.310720px;}
.ws28{word-spacing:-41.304960px;}
.ws21{word-spacing:-41.301312px;}
.wsd{word-spacing:-41.275680px;}
.ws11{word-spacing:-41.261880px;}
.ws1e{word-spacing:-41.249280px;}
.ws1f{word-spacing:-41.248680px;}
.ws5{word-spacing:-41.207880px;}
.ws12{word-spacing:-41.166480px;}
.ws14{word-spacing:-41.157312px;}
.wsc{word-spacing:-41.142480px;}
.wse{word-spacing:-41.068680px;}
.wsb{word-spacing:-40.349280px;}
.ws1d{word-spacing:-39.893280px;}
.ws17{word-spacing:-39.371280px;}
.wsa{word-spacing:-39.317280px;}
.ws18{word-spacing:-39.173280px;}
.ws6{word-spacing:-36.731280px;}
.ws1a{word-spacing:-36.011280px;}
.ws20{word-spacing:-35.908512px;}
.ws2c{word-spacing:-30.401280px;}
.ws24{word-spacing:-27.624240px;}
.ws29{word-spacing:-24.408720px;}
.ws2{word-spacing:-0.090000px;}
.ws0{word-spacing:-0.007200px;}
.ws1{word-spacing:-0.005760px;}
.ws2e{word-spacing:0.000000px;}
.ws2b{word-spacing:31.052160px;}
.ws2d{word-spacing:31.835520px;}
._38{margin-left:-17.076960px;}
._7{margin-left:-16.043760px;}
._8{margin-left:-14.893440px;}
._48{margin-left:-13.671600px;}
._2f{margin-left:-12.014640px;}
._53{margin-left:-10.340640px;}
._12{margin-left:-8.352480px;}
._1{margin-left:-6.624000px;}
._9{margin-left:-5.605920px;}
._15{margin-left:-4.278960px;}
._4{margin-left:-3.166560px;}
._6{margin-left:-2.160000px;}
._0{margin-left:-1.116000px;}
._2{width:1.440000px;}
._5{width:3.082320px;}
._10{width:4.932480px;}
._3{width:6.860880px;}
._f{width:9.691200px;}
._27{width:11.512800px;}
._33{width:12.669840px;}
._14{width:13.720560px;}
._13{width:15.111360px;}
._3b{width:17.732160px;}
._2c{width:18.923760px;}
._2d{width:20.730960px;}
._4b{width:21.766560px;}
._21{width:23.268480px;}
._18{width:25.292880px;}
._2b{width:26.615520px;}
._1f{width:27.867600px;}
._26{width:34.584480px;}
._25{width:35.941680px;}
._52{width:37.037040px;}
._40{width:44.144400px;}
._41{width:46.295280px;}
._20{width:47.928960px;}
._49{width:51.460080px;}
._4a{width:53.090640px;}
._4e{width:54.116400px;}
._4f{width:55.140240px;}
._c{width:58.357248px;}
._b{width:59.414784px;}
._22{width:60.416640px;}
._2a{width:61.488336px;}
._3f{width:62.921520px;}
._31{width:64.476000px;}
._19{width:65.568960px;}
._50{width:66.766080px;}
._17{width:72.047280px;}
._16{width:73.099440px;}
._d{width:89.053200px;}
._e{width:90.116640px;}
._1c{width:91.396800px;}
._35{width:92.961360px;}
._1d{width:99.554400px;}
._1b{width:101.432160px;}
._1a{width:103.313520px;}
._32{width:106.887600px;}
._23{width:109.819440px;}
._24{width:110.878080px;}
._30{width:112.112064px;}
._43{width:127.529280px;}
._44{width:128.907600px;}
._4d{width:130.116000px;}
._4c{width:131.152800px;}
._45{width:133.183680px;}
._11{width:145.389600px;}
._51{width:150.260880px;}
._42{width:162.365760px;}
._3a{width:168.661440px;}
._34{width:181.705440px;}
._28{width:189.352800px;}
._2e{width:196.313040px;}
._29{width:201.339360px;}
._37{width:218.527200px;}
._36{width:219.673440px;}
._47{width:273.714960px;}
._39{width:312.422400px;}
._1e{width:353.433600px;}
._3d{width:359.328240px;}
._3e{width:366.752880px;}
._3c{width:376.954560px;}
._46{width:532.018560px;}
._a{width:3484.194720px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,70,210);}
.fc3{color:rgb(192,0,0);}
.fc1{color:rgb(0,48,100);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.760000px;}
.fs0{font-size:7.200000px;}
.fs2{font-size:90.000000px;}
.fsf{font-size:100.080000px;}
.fsd{font-size:120.240000px;}
.fsb{font-size:136.080000px;}
.fs6{font-size:144.000000px;}
.fse{font-size:149.760000px;}
.fs4{font-size:167.760000px;}
.fsc{font-size:192.240000px;}
.fsa{font-size:203.760000px;}
.fs9{font-size:203.904000px;}
.fs5{font-size:216.000000px;}
.fs8{font-size:239.760000px;}
.fs7{font-size:329.760000px;}
.fs3{font-size:527.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:14.220000px;}
.y62{bottom:23.256000px;}
.y1{bottom:58.860000px;}
.y3{bottom:59.292000px;}
.y4{bottom:60.228000px;}
.y5d{bottom:150.660000px;}
.y61{bottom:183.885000px;}
.y5c{bottom:186.660000px;}
.y60{bottom:219.885000px;}
.y5b{bottom:222.660000px;}
.yc{bottom:246.030000px;}
.y5f{bottom:255.930000px;}
.y5a{bottom:258.660000px;}
.y5e{bottom:291.930000px;}
.y59{bottom:294.660000px;}
.y65{bottom:464.970000px;}
.y64{bottom:509.430000px;}
.y44{bottom:539.610000px;}
.y63{bottom:554.970000px;}
.y43{bottom:601.710000px;}
.y42{bottom:665.610000px;}
.y41{bottom:726.810000px;}
.y40{bottom:788.010000px;}
.y3f{bottom:849.210000px;}
.y58{bottom:958.035000px;}
.y57{bottom:1019.775000px;}
.y56{bottom:1080.975000px;}
.y55{bottom:1142.175000px;}
.y54{bottom:1203.375000px;}
.y3e{bottom:1216.440000px;}
.y53{bottom:1265.475000px;}
.y3d{bottom:1277.640000px;}
.y52{bottom:1329.375000px;}
.y3c{bottom:1338.840000px;}
.y51{bottom:1390.575000px;}
.y3b{bottom:1400.040000px;}
.y50{bottom:1451.775000px;}
.y3a{bottom:1461.240000px;}
.y4f{bottom:1512.975000px;}
.y39{bottom:1522.440000px;}
.y4e{bottom:1574.175000px;}
.y38{bottom:1583.640000px;}
.y4d{bottom:1636.275000px;}
.y37{bottom:1644.840000px;}
.y4c{bottom:1701.075000px;}
.y36{bottom:1706.040000px;}
.y68{bottom:1742.475000px;}
.y4b{bottom:1764.975000px;}
.y35{bottom:1767.240000px;}
.y67{bottom:1787.475000px;}
.y4a{bottom:1825.635000px;}
.y34{bottom:1828.440000px;}
.y66{bottom:1832.475000px;}
.y49{bottom:1887.405000px;}
.y33{bottom:1889.640000px;}
.y48{bottom:1948.605000px;}
.y32{bottom:1950.840000px;}
.y47{bottom:2009.805000px;}
.y31{bottom:2012.040000px;}
.y46{bottom:2071.005000px;}
.y30{bottom:2073.240000px;}
.y45{bottom:2132.205000px;}
.y2f{bottom:2134.470000px;}
.yb{bottom:2243.085000px;}
.y2b{bottom:2243.190000px;}
.y6f{bottom:2404.545000px;}
.y6e{bottom:2449.545000px;}
.y6d{bottom:2494.545000px;}
.y6c{bottom:2539.545000px;}
.y25{bottom:2553.765000px;}
.y6b{bottom:2584.545000px;}
.y24{bottom:2614.965000px;}
.y6a{bottom:2629.545000px;}
.y69{bottom:2674.545000px;}
.y23{bottom:2676.165000px;}
.y22{bottom:2737.365000px;}
.y21{bottom:2798.565000px;}
.y20{bottom:2859.810000px;}
.y1f{bottom:2921.010000px;}
.y1e{bottom:2982.210000px;}
.y1d{bottom:3043.410000px;}
.y2e{bottom:3104.070000px;}
.y1c{bottom:3104.610000px;}
.y1b{bottom:3165.810000px;}
.y1a{bottom:3227.010000px;}
.y19{bottom:3288.210000px;}
.y2d{bottom:3289.830000px;}
.y18{bottom:3349.410000px;}
.y17{bottom:3410.610000px;}
.y16{bottom:3471.810000px;}
.y15{bottom:3533.010000px;}
.y2c{bottom:3593.670000px;}
.y14{bottom:3594.210000px;}
.y13{bottom:3716.175000px;}
.y2a{bottom:3769.665000px;}
.y12{bottom:3777.375000px;}
.y29{bottom:3832.485000px;}
.y11{bottom:3838.575000px;}
.y28{bottom:3892.065000px;}
.y10{bottom:3899.775000px;}
.y27{bottom:3953.265000px;}
.yf{bottom:3960.975000px;}
.y26{bottom:4014.465000px;}
.ye{bottom:4022.205000px;}
.yd{bottom:4145.760000px;}
.ya{bottom:4382.130000px;}
.y9{bottom:4446.930000px;}
.y8{bottom:4495.530000px;}
.y7{bottom:4589.490000px;}
.y6{bottom:4664.730000px;}
.y5{bottom:4823.130000px;}
.h4{height:4.210313px;}
.h3{height:5.459766px;}
.h2{height:15.840000px;}
.h5{height:65.786133px;}
.h12{height:104.211914px;}
.h9{height:124.804688px;}
.h14{height:129.796875px;}
.h13{height:130.016250px;}
.h7{height:145.643203px;}
.hd{height:176.598633px;}
.hc{height:176.723437px;}
.he{height:176.897109px;}
.hf{height:177.022125px;}
.h10{height:182.566406px;}
.h11{height:187.523438px;}
.h8{height:189.815625px;}
.hb{height:208.151016px;}
.ha{height:286.285781px;}
.h6{height:457.409180px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:1.979850px;}
.w3{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.xe{left:99.719947px;}
.x14{left:105.587947px;}
.xf{left:153.719947px;}
.xd{left:155.804947px;}
.x11{left:158.969947px;}
.xb{left:223.634947px;}
.x7{left:677.729947px;}
.xc{left:686.264947px;}
.x19{left:755.309947px;}
.x4{left:828.389947px;}
.x8{left:831.809947px;}
.x5{left:864.029947px;}
.x1c{left:1038.884947px;}
.x1e{left:1064.489947px;}
.x1f{left:1106.069947px;}
.x9{left:1152.569947px;}
.x1d{left:1382.579947px;}
.x6{left:1783.334947px;}
.x10{left:1872.254947px;}
.x1a{left:2023.994947px;}
.x15{left:2644.559947px;}
.x12{left:2679.224947px;}
.x17{left:2695.859947px;}
.x16{left:2698.559947px;}
.x13{left:2733.224947px;}
.x18{left:2749.859947px;}
.xa{left:2772.539947px;}
.x1{left:2945.130000px;}
.x2{left:2946.629947px;}
.x1b{left:3021.839947px;}
.x3{left:3165.584947px;}
@media print{
.v2{vertical-align:-57.600000pt;}
.v3{vertical-align:-44.800000pt;}
.v4{vertical-align:-32.640000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:57.600000pt;}
.ls3b{letter-spacing:-4.874667pt;}
.ls36{letter-spacing:-4.757333pt;}
.ls23{letter-spacing:-4.117333pt;}
.ls34{letter-spacing:-1.946667pt;}
.ls26{letter-spacing:-1.818667pt;}
.ls33{letter-spacing:-1.770667pt;}
.ls38{letter-spacing:-1.306667pt;}
.ls27{letter-spacing:-0.901333pt;}
.ls2a{letter-spacing:-0.261867pt;}
.ls30{letter-spacing:-0.209067pt;}
.ls28{letter-spacing:-0.196267pt;}
.ls2e{letter-spacing:-0.174933pt;}
.ls22{letter-spacing:-0.138133pt;}
.ls42{letter-spacing:-0.114133pt;}
.ls3a{letter-spacing:-0.101867pt;}
.ls39{letter-spacing:-0.101333pt;}
.ls2d{letter-spacing:-0.090133pt;}
.ls3c{letter-spacing:-0.081067pt;}
.ls29{letter-spacing:-0.077867pt;}
.ls41{letter-spacing:-0.051840pt;}
.ls32{letter-spacing:-0.046720pt;}
.ls3e{letter-spacing:-0.030080pt;}
.ls3f{letter-spacing:-0.010240pt;}
.ls20{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.001920pt;}
.ls43{letter-spacing:0.035840pt;}
.ls6{letter-spacing:0.039680pt;}
.ls35{letter-spacing:0.049920pt;}
.ls31{letter-spacing:0.051840pt;}
.ls1c{letter-spacing:0.053760pt;}
.ls16{letter-spacing:0.064000pt;}
.ls2f{letter-spacing:0.080000pt;}
.ls1d{letter-spacing:0.115200pt;}
.ls12{letter-spacing:0.115840pt;}
.ls1f{letter-spacing:0.117760pt;}
.ls0{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.232533pt;}
.ls1e{letter-spacing:0.235733pt;}
.lse{letter-spacing:0.247680pt;}
.ls13{letter-spacing:0.309120pt;}
.ls5{letter-spacing:0.352640pt;}
.ls15{letter-spacing:0.430720pt;}
.ls21{letter-spacing:0.448533pt;}
.ls2c{letter-spacing:0.465067pt;}
.ls25{letter-spacing:0.501867pt;}
.ls2b{letter-spacing:0.538667pt;}
.ls3d{letter-spacing:0.560000pt;}
.ls10{letter-spacing:0.731520pt;}
.ls19{letter-spacing:0.755200pt;}
.ls40{letter-spacing:0.874667pt;}
.ls11{letter-spacing:0.915840pt;}
.ls2{letter-spacing:4.192640pt;}
.lsf{letter-spacing:9.952640pt;}
.ls1b{letter-spacing:13.152640pt;}
.ls4{letter-spacing:24.672640pt;}
.ls17{letter-spacing:36.351360pt;}
.ls14{letter-spacing:42.751360pt;}
.lsa{letter-spacing:43.648000pt;}
.ls18{letter-spacing:48.352640pt;}
.ls3{letter-spacing:63.712640pt;}
.lsd{letter-spacing:114.272640pt;}
.lsb{letter-spacing:128.552533pt;}
.ls7{letter-spacing:128.563200pt;}
.lsc{letter-spacing:128.597333pt;}
.ls1{letter-spacing:128.608000pt;}
.ls1a{letter-spacing:132.832640pt;}
.ls9{letter-spacing:168.032640pt;}
.ls8{letter-spacing:168.672640pt;}
.ws1c{word-spacing:-108.800000pt;}
.ws2a{word-spacing:-88.960000pt;}
.ws3{word-spacing:-59.503360pt;}
.ws4{word-spacing:-43.263360pt;}
.ws26{word-spacing:-38.976000pt;}
.ws27{word-spacing:-37.642027pt;}
.ws22{word-spacing:-37.327360pt;}
.wsf{word-spacing:-37.306027pt;}
.ws8{word-spacing:-37.269227pt;}
.ws10{word-spacing:-37.232427pt;}
.ws7{word-spacing:-36.999893pt;}
.ws13{word-spacing:-36.873344pt;}
.ws15{word-spacing:-36.819200pt;}
.ws19{word-spacing:-36.817280pt;}
.ws1b{word-spacing:-36.769280pt;}
.ws9{word-spacing:-36.767360pt;}
.ws25{word-spacing:-36.757120pt;}
.ws23{word-spacing:-36.737280pt;}
.ws16{word-spacing:-36.720640pt;}
.ws28{word-spacing:-36.715520pt;}
.ws21{word-spacing:-36.712277pt;}
.wsd{word-spacing:-36.689493pt;}
.ws11{word-spacing:-36.677227pt;}
.ws1e{word-spacing:-36.666027pt;}
.ws1f{word-spacing:-36.665493pt;}
.ws5{word-spacing:-36.629227pt;}
.ws12{word-spacing:-36.592427pt;}
.ws14{word-spacing:-36.584277pt;}
.wsc{word-spacing:-36.571093pt;}
.wse{word-spacing:-36.505493pt;}
.wsb{word-spacing:-35.866027pt;}
.ws1d{word-spacing:-35.460693pt;}
.ws17{word-spacing:-34.996693pt;}
.wsa{word-spacing:-34.948693pt;}
.ws18{word-spacing:-34.820693pt;}
.ws6{word-spacing:-32.650027pt;}
.ws1a{word-spacing:-32.010027pt;}
.ws20{word-spacing:-31.918677pt;}
.ws2c{word-spacing:-27.023360pt;}
.ws24{word-spacing:-24.554880pt;}
.ws29{word-spacing:-21.696640pt;}
.ws2{word-spacing:-0.080000pt;}
.ws0{word-spacing:-0.006400pt;}
.ws1{word-spacing:-0.005120pt;}
.ws2e{word-spacing:0.000000pt;}
.ws2b{word-spacing:27.601920pt;}
.ws2d{word-spacing:28.298240pt;}
._38{margin-left:-15.179520pt;}
._7{margin-left:-14.261120pt;}
._8{margin-left:-13.238613pt;}
._48{margin-left:-12.152533pt;}
._2f{margin-left:-10.679680pt;}
._53{margin-left:-9.191680pt;}
._12{margin-left:-7.424427pt;}
._1{margin-left:-5.888000pt;}
._9{margin-left:-4.983040pt;}
._15{margin-left:-3.803520pt;}
._4{margin-left:-2.814720pt;}
._6{margin-left:-1.920000pt;}
._0{margin-left:-0.992000pt;}
._2{width:1.280000pt;}
._5{width:2.739840pt;}
._10{width:4.384427pt;}
._3{width:6.098560pt;}
._f{width:8.614400pt;}
._27{width:10.233600pt;}
._33{width:11.262080pt;}
._14{width:12.196053pt;}
._13{width:13.432320pt;}
._3b{width:15.761920pt;}
._2c{width:16.821120pt;}
._2d{width:18.427520pt;}
._4b{width:19.348053pt;}
._21{width:20.683093pt;}
._18{width:22.482560pt;}
._2b{width:23.658240pt;}
._1f{width:24.771200pt;}
._26{width:30.741760pt;}
._25{width:31.948160pt;}
._52{width:32.921813pt;}
._40{width:39.239467pt;}
._41{width:41.151360pt;}
._20{width:42.603520pt;}
._49{width:45.742293pt;}
._4a{width:47.191680pt;}
._4e{width:48.103467pt;}
._4f{width:49.013547pt;}
._c{width:51.873109pt;}
._b{width:52.813141pt;}
._22{width:53.703680pt;}
._2a{width:54.656299pt;}
._3f{width:55.930240pt;}
._31{width:57.312000pt;}
._19{width:58.283520pt;}
._50{width:59.347627pt;}
._17{width:64.042027pt;}
._16{width:64.977280pt;}
._d{width:79.158400pt;}
._e{width:80.103680pt;}
._1c{width:81.241600pt;}
._35{width:82.632320pt;}
._1d{width:88.492800pt;}
._1b{width:90.161920pt;}
._1a{width:91.834240pt;}
._32{width:95.011200pt;}
._23{width:97.617280pt;}
._24{width:98.558293pt;}
._30{width:99.655168pt;}
._43{width:113.359360pt;}
._44{width:114.584533pt;}
._4d{width:115.658667pt;}
._4c{width:116.580267pt;}
._45{width:118.385493pt;}
._11{width:129.235200pt;}
._51{width:133.565227pt;}
._42{width:144.325120pt;}
._3a{width:149.921280pt;}
._34{width:161.515947pt;}
._28{width:168.313600pt;}
._2e{width:174.500480pt;}
._29{width:178.968320pt;}
._37{width:194.246400pt;}
._36{width:195.265280pt;}
._47{width:243.302187pt;}
._39{width:277.708800pt;}
._1e{width:314.163200pt;}
._3d{width:319.402880pt;}
._3e{width:326.002560pt;}
._3c{width:335.070720pt;}
._46{width:472.905387pt;}
._a{width:3097.061973pt;}
.fs1{font-size:5.120000pt;}
.fs0{font-size:6.400000pt;}
.fs2{font-size:80.000000pt;}
.fsf{font-size:88.960000pt;}
.fsd{font-size:106.880000pt;}
.fsb{font-size:120.960000pt;}
.fs6{font-size:128.000000pt;}
.fse{font-size:133.120000pt;}
.fs4{font-size:149.120000pt;}
.fsc{font-size:170.880000pt;}
.fsa{font-size:181.120000pt;}
.fs9{font-size:181.248000pt;}
.fs5{font-size:192.000000pt;}
.fs8{font-size:213.120000pt;}
.fs7{font-size:293.120000pt;}
.fs3{font-size:469.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:12.640000pt;}
.y62{bottom:20.672000pt;}
.y1{bottom:52.320000pt;}
.y3{bottom:52.704000pt;}
.y4{bottom:53.536000pt;}
.y5d{bottom:133.920000pt;}
.y61{bottom:163.453333pt;}
.y5c{bottom:165.920000pt;}
.y60{bottom:195.453333pt;}
.y5b{bottom:197.920000pt;}
.yc{bottom:218.693333pt;}
.y5f{bottom:227.493333pt;}
.y5a{bottom:229.920000pt;}
.y5e{bottom:259.493333pt;}
.y59{bottom:261.920000pt;}
.y65{bottom:413.306667pt;}
.y64{bottom:452.826667pt;}
.y44{bottom:479.653333pt;}
.y63{bottom:493.306667pt;}
.y43{bottom:534.853333pt;}
.y42{bottom:591.653333pt;}
.y41{bottom:646.053333pt;}
.y40{bottom:700.453333pt;}
.y3f{bottom:754.853333pt;}
.y58{bottom:851.586667pt;}
.y57{bottom:906.466667pt;}
.y56{bottom:960.866667pt;}
.y55{bottom:1015.266667pt;}
.y54{bottom:1069.666667pt;}
.y3e{bottom:1081.280000pt;}
.y53{bottom:1124.866667pt;}
.y3d{bottom:1135.680000pt;}
.y52{bottom:1181.666667pt;}
.y3c{bottom:1190.080000pt;}
.y51{bottom:1236.066667pt;}
.y3b{bottom:1244.480000pt;}
.y50{bottom:1290.466667pt;}
.y3a{bottom:1298.880000pt;}
.y4f{bottom:1344.866667pt;}
.y39{bottom:1353.280000pt;}
.y4e{bottom:1399.266667pt;}
.y38{bottom:1407.680000pt;}
.y4d{bottom:1454.466667pt;}
.y37{bottom:1462.080000pt;}
.y4c{bottom:1512.066667pt;}
.y36{bottom:1516.480000pt;}
.y68{bottom:1548.866667pt;}
.y4b{bottom:1568.866667pt;}
.y35{bottom:1570.880000pt;}
.y67{bottom:1588.866667pt;}
.y4a{bottom:1622.786667pt;}
.y34{bottom:1625.280000pt;}
.y66{bottom:1628.866667pt;}
.y49{bottom:1677.693333pt;}
.y33{bottom:1679.680000pt;}
.y48{bottom:1732.093333pt;}
.y32{bottom:1734.080000pt;}
.y47{bottom:1786.493333pt;}
.y31{bottom:1788.480000pt;}
.y46{bottom:1840.893333pt;}
.y30{bottom:1842.880000pt;}
.y45{bottom:1895.293333pt;}
.y2f{bottom:1897.306667pt;}
.yb{bottom:1993.853333pt;}
.y2b{bottom:1993.946667pt;}
.y6f{bottom:2137.373333pt;}
.y6e{bottom:2177.373333pt;}
.y6d{bottom:2217.373333pt;}
.y6c{bottom:2257.373333pt;}
.y25{bottom:2270.013333pt;}
.y6b{bottom:2297.373333pt;}
.y24{bottom:2324.413333pt;}
.y6a{bottom:2337.373333pt;}
.y69{bottom:2377.373333pt;}
.y23{bottom:2378.813333pt;}
.y22{bottom:2433.213333pt;}
.y21{bottom:2487.613333pt;}
.y20{bottom:2542.053333pt;}
.y1f{bottom:2596.453333pt;}
.y1e{bottom:2650.853333pt;}
.y1d{bottom:2705.253333pt;}
.y2e{bottom:2759.173333pt;}
.y1c{bottom:2759.653333pt;}
.y1b{bottom:2814.053333pt;}
.y1a{bottom:2868.453333pt;}
.y19{bottom:2922.853333pt;}
.y2d{bottom:2924.293333pt;}
.y18{bottom:2977.253333pt;}
.y17{bottom:3031.653333pt;}
.y16{bottom:3086.053333pt;}
.y15{bottom:3140.453333pt;}
.y2c{bottom:3194.373333pt;}
.y14{bottom:3194.853333pt;}
.y13{bottom:3303.266667pt;}
.y2a{bottom:3350.813333pt;}
.y12{bottom:3357.666667pt;}
.y29{bottom:3406.653333pt;}
.y11{bottom:3412.066667pt;}
.y28{bottom:3459.613333pt;}
.y10{bottom:3466.466667pt;}
.y27{bottom:3514.013333pt;}
.yf{bottom:3520.866667pt;}
.y26{bottom:3568.413333pt;}
.ye{bottom:3575.293333pt;}
.yd{bottom:3685.120000pt;}
.ya{bottom:3895.226667pt;}
.y9{bottom:3952.826667pt;}
.y8{bottom:3996.026667pt;}
.y7{bottom:4079.546667pt;}
.y6{bottom:4146.426667pt;}
.y5{bottom:4287.226667pt;}
.h4{height:3.742500pt;}
.h3{height:4.853125pt;}
.h2{height:14.080000pt;}
.h5{height:58.476562pt;}
.h12{height:92.632812pt;}
.h9{height:110.937500pt;}
.h14{height:115.375000pt;}
.h13{height:115.570000pt;}
.h7{height:129.460625pt;}
.hd{height:156.976562pt;}
.hc{height:157.087500pt;}
.he{height:157.241875pt;}
.hf{height:157.353000pt;}
.h10{height:162.281250pt;}
.h11{height:166.687500pt;}
.h8{height:168.725000pt;}
.hb{height:185.023125pt;}
.ha{height:254.476250pt;}
.h6{height:406.585938pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:1.759867pt;}
.w3{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.xe{left:88.639953pt;}
.x14{left:93.855953pt;}
.xf{left:136.639953pt;}
.xd{left:138.493286pt;}
.x11{left:141.306619pt;}
.xb{left:198.786619pt;}
.x7{left:602.426619pt;}
.xc{left:610.013286pt;}
.x19{left:671.386619pt;}
.x4{left:736.346619pt;}
.x8{left:739.386619pt;}
.x5{left:768.026619pt;}
.x1c{left:923.453286pt;}
.x1e{left:946.213286pt;}
.x1f{left:983.173286pt;}
.x9{left:1024.506619pt;}
.x1d{left:1228.959953pt;}
.x6{left:1585.186619pt;}
.x10{left:1664.226619pt;}
.x1a{left:1799.106619pt;}
.x15{left:2350.719953pt;}
.x12{left:2381.533286pt;}
.x17{left:2396.319953pt;}
.x16{left:2398.719953pt;}
.x13{left:2429.533286pt;}
.x18{left:2444.319953pt;}
.xa{left:2464.479953pt;}
.x1{left:2617.893333pt;}
.x2{left:2619.226619pt;}
.x1b{left:2686.079953pt;}
.x3{left:2813.853286pt;}
}




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