
    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_17898010150b5c17def11906.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_591d2832c48be3afbcac8f7b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_29e3fa83b03436182163c0d3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_916e8aa7ab741e22bb555dda.woff')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_0505015a8c5d233659e70dd9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_389c8fb2cbf637a52b861ed0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_de804ba437263dbd9a5c583b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_35ad698bdfe4e107b1a2b6f9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.707000;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_0843ab827a1f0c08f0302d50.woff')format("woff");}.ff9{font-family:ff9;line-height:0.427000;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_cc10192a78ce6ed90a09f00b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.664000;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_1f83e1e445fe66d3ffa9fa1f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.429000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:2.143908px;}
.ls2{letter-spacing:19.944538px;}
.ls1{letter-spacing:19.948893px;}
.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;}
}
.ws48{word-spacing:-16.438290px;}
.ws13{word-spacing:-16.378514px;}
.ws53{word-spacing:-16.199188px;}
.ws4b{word-spacing:-16.079636px;}
.ws4a{word-spacing:-15.840534px;}
.ws50{word-spacing:-15.720983px;}
.wsb{word-spacing:-15.601432px;}
.ws31{word-spacing:-15.362329px;}
.ws30{word-spacing:-15.003676px;}
.ws1b{word-spacing:-14.704798px;}
.ws24{word-spacing:-14.346144px;}
.ws8d{word-spacing:-14.286368px;}
.ws26{word-spacing:-14.166817px;}
.ws6d{word-spacing:-13.987490px;}
.ws56{word-spacing:-13.688612px;}
.ws6f{word-spacing:-13.449510px;}
.ws15{word-spacing:-13.270183px;}
.ws8c{word-spacing:-13.150632px;}
.ws45{word-spacing:-13.031081px;}
.ws43{word-spacing:-12.911530px;}
.ws37{word-spacing:-12.851754px;}
.ws5b{word-spacing:-12.732203px;}
.ws2f{word-spacing:-12.612652px;}
.ws3e{word-spacing:-12.552876px;}
.ws1c{word-spacing:-12.493100px;}
.ws83{word-spacing:-12.433325px;}
.ws79{word-spacing:-12.313774px;}
.ws34{word-spacing:-12.253998px;}
.ws59{word-spacing:-12.134447px;}
.ws68{word-spacing:-12.074671px;}
.ws88{word-spacing:-11.716018px;}
.ws78{word-spacing:-11.656242px;}
.ws7a{word-spacing:-11.596466px;}
.ws28{word-spacing:-11.536691px;}
.ws5f{word-spacing:-11.417140px;}
.ws5d{word-spacing:-11.357364px;}
.ws19{word-spacing:-11.297588px;}
.ws36{word-spacing:-11.237813px;}
.ws51{word-spacing:-11.118262px;}
.ws2c{word-spacing:-11.058486px;}
.ws89{word-spacing:-10.640057px;}
.ws2e{word-spacing:-10.281403px;}
.ws1e{word-spacing:-10.221628px;}
.ws46{word-spacing:-10.102076px;}
.ws22{word-spacing:-10.042301px;}
.ws10{word-spacing:-9.982525px;}
.ws42{word-spacing:-9.971790px;}
.ws41{word-spacing:-9.922750px;}
.ws14{word-spacing:-9.862974px;}
.ws40{word-spacing:-9.743423px;}
.ws4e{word-spacing:-9.324994px;}
.ws3d{word-spacing:-9.205442px;}
.ws44{word-spacing:-9.085891px;}
.ws57{word-spacing:-8.966340px;}
.ws1a{word-spacing:-8.787013px;}
.ws47{word-spacing:-8.660430px;}
.ws6e{word-spacing:-8.607686px;}
.ws82{word-spacing:-8.547911px;}
.ws27{word-spacing:-8.488135px;}
.ws23{word-spacing:-8.428360px;}
.wsf{word-spacing:-8.368584px;}
.ws2b{word-spacing:-8.308808px;}
.ws6a{word-spacing:-8.129482px;}
.ws4c{word-spacing:-8.069706px;}
.ws4f{word-spacing:-8.009930px;}
.ws86{word-spacing:-7.950155px;}
.ws75{word-spacing:-7.890379px;}
.ws70{word-spacing:-7.651277px;}
.ws64{word-spacing:-7.352399px;}
.ws54{word-spacing:-7.232848px;}
.wse{word-spacing:-7.173072px;}
.wsc{word-spacing:-7.113296px;}
.ws21{word-spacing:-7.053521px;}
.ws18{word-spacing:-6.993745px;}
.ws5e{word-spacing:-6.933970px;}
.ws76{word-spacing:-6.874194px;}
.wsa{word-spacing:-6.814418px;}
.ws1f{word-spacing:-6.754643px;}
.ws32{word-spacing:-6.694867px;}
.ws52{word-spacing:-6.635092px;}
.ws65{word-spacing:-6.515540px;}
.ws1d{word-spacing:-6.455765px;}
.ws67{word-spacing:-6.395989px;}
.ws3f{word-spacing:-6.336214px;}
.ws5a{word-spacing:-6.276438px;}
.ws2d{word-spacing:-6.216662px;}
.ws3c{word-spacing:-5.858009px;}
.ws69{word-spacing:-5.798233px;}
.ws55{word-spacing:-5.320028px;}
.ws7f{word-spacing:-5.260253px;}
.ws4d{word-spacing:-5.251299px;}
.ws71{word-spacing:-5.140702px;}
.ws25{word-spacing:-5.021150px;}
.ws66{word-spacing:-4.961375px;}
.ws80{word-spacing:-4.841824px;}
.ws8a{word-spacing:-4.782048px;}
.ws7b{word-spacing:-4.722272px;}
.ws84{word-spacing:-4.542946px;}
.wsd{word-spacing:-4.488173px;}
.ws6b{word-spacing:-4.303843px;}
.ws17{word-spacing:-4.184292px;}
.ws6c{word-spacing:-4.064741px;}
.ws35{word-spacing:-4.004965px;}
.ws3b{word-spacing:-3.885414px;}
.ws74{word-spacing:-3.765863px;}
.ws62{word-spacing:-3.586536px;}
.ws85{word-spacing:-3.526760px;}
.ws77{word-spacing:-3.407209px;}
.ws73{word-spacing:-3.347434px;}
.ws63{word-spacing:-3.227882px;}
.ws33{word-spacing:-3.168107px;}
.ws72{word-spacing:-3.108331px;}
.ws7e{word-spacing:-2.929004px;}
.ws61{word-spacing:-2.869229px;}
.ws20{word-spacing:-2.689902px;}
.ws29{word-spacing:-2.570351px;}
.ws38{word-spacing:-2.391024px;}
.ws81{word-spacing:-1.853044px;}
.ws60{word-spacing:-1.793268px;}
.ws39{word-spacing:-1.733492px;}
.ws8b{word-spacing:-1.494390px;}
.ws7c{word-spacing:-1.374839px;}
.ws49{word-spacing:-1.195512px;}
.ws2a{word-spacing:-1.135736px;}
.ws16{word-spacing:-1.016185px;}
.ws3a{word-spacing:-0.956410px;}
.ws58{word-spacing:-0.896634px;}
.ws87{word-spacing:-0.777083px;}
.ws7d{word-spacing:-0.597756px;}
.ws6{word-spacing:-0.103292px;}
.ws12{word-spacing:-0.086077px;}
.ws1{word-spacing:-0.053798px;}
.ws4{word-spacing:0.000000px;}
.ws3{word-spacing:18.345254px;}
.ws7{word-spacing:23.312640px;}
.ws8{word-spacing:23.325996px;}
.ws0{word-spacing:23.671296px;}
.ws2{word-spacing:24.526038px;}
.ws5{word-spacing:31.091012px;}
.ws5c{word-spacing:32.192873px;}
.ws11{word-spacing:33.225799px;}
.ws9{word-spacing:96.750773px;}
._8{margin-left:-8.091257px;}
._1f{margin-left:-5.870003px;}
._2{margin-left:-4.788058px;}
._3{margin-left:-2.685602px;}
._1{margin-left:-1.560154px;}
._0{width:1.452557px;}
._5{width:2.685602px;}
._9{width:14.761962px;}
._19{width:15.838846px;}
._11{width:17.396388px;}
._b{width:19.010329px;}
._10{width:20.923148px;}
._13{width:22.596865px;}
._12{width:24.210806px;}
._c{width:25.291088px;}
._a{width:26.779469px;}
._16{width:28.635889px;}
._e{width:29.953564px;}
._4{width:31.203072px;}
._1a{width:32.818514px;}
._6{width:35.189886px;}
._f{width:36.289777px;}
._14{width:37.712437px;}
._1c{width:42.962402px;}
._1b{width:44.180156px;}
._18{width:45.208318px;}
._15{width:47.145006px;}
._1e{width:48.479700px;}
._17{width:50.338732px;}
._1d{width:52.301039px;}
._d{width:53.570914px;}
._7{width:96.836850px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs0{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y5{bottom:134.047500px;}
.y4d{bottom:182.224500px;}
.ya6{bottom:186.324000px;}
.y97{bottom:190.162500px;}
.y22{bottom:197.497500px;}
.y4c{bottom:200.157000px;}
.ya5{bottom:204.256500px;}
.y96{bottom:208.095000px;}
.y74{bottom:212.109000px;}
.y21{bottom:215.430000px;}
.y4b{bottom:218.089500px;}
.ya4{bottom:222.189000px;}
.y73{bottom:230.041500px;}
.y20{bottom:233.362500px;}
.y4a{bottom:236.022000px;}
.ya3{bottom:240.121500px;}
.y72{bottom:247.975500px;}
.y1f{bottom:251.295000px;}
.y49{bottom:253.956000px;}
.ya2{bottom:258.054000px;}
.y95{bottom:265.333500px;}
.y71{bottom:265.908000px;}
.y1e{bottom:269.227500px;}
.y48{bottom:271.888500px;}
.ya1{bottom:275.988000px;}
.y94{bottom:283.267500px;}
.y70{bottom:283.840500px;}
.y1d{bottom:287.161500px;}
.y47{bottom:289.821000px;}
.ya0{bottom:293.920500px;}
.y93{bottom:301.200000px;}
.y6f{bottom:301.773000px;}
.y1c{bottom:305.094000px;}
.y46{bottom:307.753500px;}
.y9f{bottom:311.853000px;}
.y92{bottom:319.132500px;}
.y6e{bottom:319.705500px;}
.y45{bottom:325.686000px;}
.yb3{bottom:333.367500px;}
.y91{bottom:337.065000px;}
.y6d{bottom:337.638000px;}
.y44{bottom:343.620000px;}
.y9e{bottom:347.718000px;}
.y1b{bottom:351.108000px;}
.yb2{bottom:351.300000px;}
.y90{bottom:354.997500px;}
.y6c{bottom:355.572000px;}
.y43{bottom:361.552500px;}
.y1a{bottom:369.040500px;}
.yb1{bottom:369.232500px;}
.y8f{bottom:372.931500px;}
.y42{bottom:379.485000px;}
.y19{bottom:386.973000px;}
.y8e{bottom:390.864000px;}
.y41{bottom:397.417500px;}
.y6b{bottom:401.586000px;}
.yb0{bottom:401.964000px;}
.y18{bottom:404.907000px;}
.y8d{bottom:408.796500px;}
.y40{bottom:415.350000px;}
.y6a{bottom:419.518500px;}
.y17{bottom:422.839500px;}
.y8c{bottom:426.729000px;}
.y3f{bottom:433.282500px;}
.y69{bottom:437.451000px;}
.y16{bottom:440.772000px;}
.y8b{bottom:444.661500px;}
.y3e{bottom:451.216500px;}
.y68{bottom:455.383500px;}
.y15{bottom:458.704500px;}
.y8a{bottom:462.594000px;}
.y3d{bottom:469.149000px;}
.y67{bottom:473.317500px;}
.y14{bottom:476.637000px;}
.y89{bottom:480.528000px;}
.y3c{bottom:487.081500px;}
.yaf{bottom:490.689000px;}
.y88{bottom:498.460500px;}
.y3b{bottom:505.014000px;}
.y66{bottom:506.047500px;}
.yae{bottom:508.621500px;}
.y13{bottom:509.368500px;}
.y3a{bottom:522.946500px;}
.yad{bottom:526.554000px;}
.y12{bottom:536.268000px;}
.y39{bottom:540.879000px;}
.yac{bottom:544.488000px;}
.y87{bottom:545.305500px;}
.y65{bottom:555.466500px;}
.y38{bottom:558.813000px;}
.yab{bottom:562.420500px;}
.y86{bottom:563.238000px;}
.y64{bottom:573.399000px;}
.y37{bottom:576.745500px;}
.yaa{bottom:580.353000px;}
.y85{bottom:581.170500px;}
.y11{bottom:585.226500px;}
.y63{bottom:591.333000px;}
.y36{bottom:594.678000px;}
.ya9{bottom:598.285500px;}
.y84{bottom:599.103000px;}
.y10{bottom:603.159000px;}
.y62{bottom:609.265500px;}
.y35{bottom:612.610500px;}
.ya8{bottom:616.218000px;}
.yf{bottom:621.091500px;}
.y61{bottom:627.198000px;}
.y34{bottom:630.543000px;}
.ya7{bottom:634.150500px;}
.ye{bottom:639.024000px;}
.y60{bottom:645.130500px;}
.y33{bottom:648.475500px;}
.y83{bottom:656.343000px;}
.yd{bottom:656.956500px;}
.y5f{bottom:663.063000px;}
.y32{bottom:666.409500px;}
.y82{bottom:674.275500px;}
.y5e{bottom:680.995500px;}
.y9d{bottom:682.546500px;}
.y31{bottom:684.342000px;}
.yc{bottom:689.688000px;}
.y5d{bottom:698.929500px;}
.y9c{bottom:700.479000px;}
.y30{bottom:702.274500px;}
.y5c{bottom:716.862000px;}
.y9b{bottom:718.413000px;}
.y2f{bottom:720.207000px;}
.y81{bottom:721.120500px;}
.y5b{bottom:734.794500px;}
.y2e{bottom:738.139500px;}
.y80{bottom:739.053000px;}
.yb{bottom:750.918000px;}
.y5a{bottom:752.727000px;}
.y2d{bottom:756.073500px;}
.y7f{bottom:756.987000px;}
.y9a{bottom:764.427000px;}
.y59{bottom:770.659500px;}
.y2c{bottom:774.006000px;}
.y7e{bottom:774.919500px;}
.y99{bottom:782.359500px;}
.y58{bottom:788.592000px;}
.y2b{bottom:791.938500px;}
.y7d{bottom:792.852000px;}
.ya{bottom:796.065000px;}
.y57{bottom:806.526000px;}
.y2a{bottom:809.871000px;}
.y7c{bottom:810.784500px;}
.y9{bottom:813.997500px;}
.y56{bottom:824.458500px;}
.y29{bottom:827.803500px;}
.y7b{bottom:828.717000px;}
.y98{bottom:832.572000px;}
.y55{bottom:842.391000px;}
.y28{bottom:845.736000px;}
.y8{bottom:846.874500px;}
.y54{bottom:860.323500px;}
.y27{bottom:863.670000px;}
.y53{bottom:878.256000px;}
.y26{bottom:881.602500px;}
.y4{bottom:881.731500px;}
.y7a{bottom:885.957000px;}
.y7{bottom:890.211000px;}
.y52{bottom:896.188500px;}
.y79{bottom:903.889500px;}
.y51{bottom:914.122500px;}
.y78{bottom:921.822000px;}
.y6{bottom:923.088000px;}
.y50{bottom:932.055000px;}
.y25{bottom:938.841000px;}
.y77{bottom:939.754500px;}
.y3{bottom:945.990000px;}
.y4f{bottom:949.987500px;}
.y24{bottom:956.775000px;}
.y76{bottom:957.688500px;}
.y2{bottom:962.428500px;}
.y4e{bottom:967.920000px;}
.y23{bottom:974.707500px;}
.y75{bottom:975.621000px;}
.y1{bottom:985.852500px;}
.h1{height:37.658880px;}
.h2{height:38.519654px;}
.h3{height:44.831700px;}
.h7{height:49.473619px;}
.h8{height:49.479619px;}
.h5{height:53.798400px;}
.h6{height:64.557900px;}
.h4{height:72.511265px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:200.652000px;}
.xc{left:223.068000px;}
.x5{left:224.449500px;}
.xb{left:236.967000px;}
.x3{left:238.012500px;}
.x2{left:258.747000px;}
.xd{left:278.350500px;}
.x8{left:289.591500px;}
.x7{left:290.592000px;}
.xe{left:340.701000px;}
.x6{left:365.404500px;}
.x9{left:397.222500px;}
.x1{left:427.995000px;}
.x4{left:454.699500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.905696pt;}
.ls2{letter-spacing:17.728479pt;}
.ls1{letter-spacing:17.732349pt;}
.ws48{word-spacing:-14.611813pt;}
.ws13{word-spacing:-14.558679pt;}
.ws53{word-spacing:-14.399278pt;}
.ws4b{word-spacing:-14.293010pt;}
.ws4a{word-spacing:-14.080475pt;}
.ws50{word-spacing:-13.974207pt;}
.wsb{word-spacing:-13.867939pt;}
.ws31{word-spacing:-13.655404pt;}
.ws30{word-spacing:-13.336601pt;}
.ws1b{word-spacing:-13.070931pt;}
.ws24{word-spacing:-12.752128pt;}
.ws8d{word-spacing:-12.698994pt;}
.ws26{word-spacing:-12.592726pt;}
.ws6d{word-spacing:-12.433325pt;}
.ws56{word-spacing:-12.167655pt;}
.ws6f{word-spacing:-11.955120pt;}
.ws15{word-spacing:-11.795718pt;}
.ws8c{word-spacing:-11.689451pt;}
.ws45{word-spacing:-11.583183pt;}
.ws43{word-spacing:-11.476915pt;}
.ws37{word-spacing:-11.423781pt;}
.ws5b{word-spacing:-11.317514pt;}
.ws2f{word-spacing:-11.211246pt;}
.ws3e{word-spacing:-11.158112pt;}
.ws1c{word-spacing:-11.104978pt;}
.ws83{word-spacing:-11.051844pt;}
.ws79{word-spacing:-10.945577pt;}
.ws34{word-spacing:-10.892443pt;}
.ws59{word-spacing:-10.786175pt;}
.ws68{word-spacing:-10.733041pt;}
.ws88{word-spacing:-10.414238pt;}
.ws78{word-spacing:-10.361104pt;}
.ws7a{word-spacing:-10.307970pt;}
.ws28{word-spacing:-10.254836pt;}
.ws5f{word-spacing:-10.148569pt;}
.ws5d{word-spacing:-10.095435pt;}
.ws19{word-spacing:-10.042301pt;}
.ws36{word-spacing:-9.989167pt;}
.ws51{word-spacing:-9.882899pt;}
.ws2c{word-spacing:-9.829765pt;}
.ws89{word-spacing:-9.457828pt;}
.ws2e{word-spacing:-9.139025pt;}
.ws1e{word-spacing:-9.085891pt;}
.ws46{word-spacing:-8.979623pt;}
.ws22{word-spacing:-8.926490pt;}
.ws10{word-spacing:-8.873356pt;}
.ws42{word-spacing:-8.863813pt;}
.ws41{word-spacing:-8.820222pt;}
.ws14{word-spacing:-8.767088pt;}
.ws40{word-spacing:-8.660820pt;}
.ws4e{word-spacing:-8.288883pt;}
.ws3d{word-spacing:-8.182615pt;}
.ws44{word-spacing:-8.076348pt;}
.ws57{word-spacing:-7.970080pt;}
.ws1a{word-spacing:-7.810678pt;}
.ws47{word-spacing:-7.698160pt;}
.ws6e{word-spacing:-7.651277pt;}
.ws82{word-spacing:-7.598143pt;}
.ws27{word-spacing:-7.545009pt;}
.ws23{word-spacing:-7.491875pt;}
.wsf{word-spacing:-7.438741pt;}
.ws2b{word-spacing:-7.385607pt;}
.ws6a{word-spacing:-7.226206pt;}
.ws4c{word-spacing:-7.173072pt;}
.ws4f{word-spacing:-7.119938pt;}
.ws86{word-spacing:-7.066804pt;}
.ws75{word-spacing:-7.013670pt;}
.ws70{word-spacing:-6.801135pt;}
.ws64{word-spacing:-6.535466pt;}
.ws54{word-spacing:-6.429198pt;}
.wse{word-spacing:-6.376064pt;}
.wsc{word-spacing:-6.322930pt;}
.ws21{word-spacing:-6.269796pt;}
.ws18{word-spacing:-6.216662pt;}
.ws5e{word-spacing:-6.163529pt;}
.ws76{word-spacing:-6.110395pt;}
.wsa{word-spacing:-6.057261pt;}
.ws1f{word-spacing:-6.004127pt;}
.ws32{word-spacing:-5.950993pt;}
.ws52{word-spacing:-5.897859pt;}
.ws65{word-spacing:-5.791591pt;}
.ws1d{word-spacing:-5.738458pt;}
.ws67{word-spacing:-5.685324pt;}
.ws3f{word-spacing:-5.632190pt;}
.ws5a{word-spacing:-5.579056pt;}
.ws2d{word-spacing:-5.525922pt;}
.ws3c{word-spacing:-5.207119pt;}
.ws69{word-spacing:-5.153985pt;}
.ws55{word-spacing:-4.728914pt;}
.ws7f{word-spacing:-4.675780pt;}
.ws4d{word-spacing:-4.667822pt;}
.ws71{word-spacing:-4.569513pt;}
.ws25{word-spacing:-4.463245pt;}
.ws66{word-spacing:-4.410111pt;}
.ws80{word-spacing:-4.303843pt;}
.ws8a{word-spacing:-4.250709pt;}
.ws7b{word-spacing:-4.197575pt;}
.ws84{word-spacing:-4.038174pt;}
.wsd{word-spacing:-3.989487pt;}
.ws6b{word-spacing:-3.825638pt;}
.ws17{word-spacing:-3.719371pt;}
.ws6c{word-spacing:-3.613103pt;}
.ws35{word-spacing:-3.559969pt;}
.ws3b{word-spacing:-3.453701pt;}
.ws74{word-spacing:-3.347434pt;}
.ws62{word-spacing:-3.188032pt;}
.ws85{word-spacing:-3.134898pt;}
.ws77{word-spacing:-3.028630pt;}
.ws73{word-spacing:-2.975497pt;}
.ws63{word-spacing:-2.869229pt;}
.ws33{word-spacing:-2.816095pt;}
.ws72{word-spacing:-2.762961pt;}
.ws7e{word-spacing:-2.603559pt;}
.ws61{word-spacing:-2.550426pt;}
.ws20{word-spacing:-2.391024pt;}
.ws29{word-spacing:-2.284756pt;}
.ws38{word-spacing:-2.125355pt;}
.ws81{word-spacing:-1.647150pt;}
.ws60{word-spacing:-1.594016pt;}
.ws39{word-spacing:-1.540882pt;}
.ws8b{word-spacing:-1.328347pt;}
.ws7c{word-spacing:-1.222079pt;}
.ws49{word-spacing:-1.062677pt;}
.ws2a{word-spacing:-1.009543pt;}
.ws16{word-spacing:-0.903276pt;}
.ws3a{word-spacing:-0.850142pt;}
.ws58{word-spacing:-0.797008pt;}
.ws87{word-spacing:-0.690740pt;}
.ws7d{word-spacing:-0.531339pt;}
.ws6{word-spacing:-0.091815pt;}
.ws12{word-spacing:-0.076513pt;}
.ws1{word-spacing:-0.047821pt;}
.ws4{word-spacing:0.000000pt;}
.ws3{word-spacing:16.306893pt;}
.ws7{word-spacing:20.722347pt;}
.ws8{word-spacing:20.734218pt;}
.ws0{word-spacing:21.041152pt;}
.ws2{word-spacing:21.800922pt;}
.ws5{word-spacing:27.636455pt;}
.ws5c{word-spacing:28.615887pt;}
.ws11{word-spacing:29.534044pt;}
.ws9{word-spacing:86.000687pt;}
._8{margin-left:-7.192228pt;}
._1f{margin-left:-5.217780pt;}
._2{margin-left:-4.256051pt;}
._3{margin-left:-2.387202pt;}
._1{margin-left:-1.386803pt;}
._0{width:1.291162pt;}
._5{width:2.387202pt;}
._9{width:13.121744pt;}
._19{width:14.078974pt;}
._11{width:15.463456pt;}
._b{width:16.898070pt;}
._10{width:18.598354pt;}
._13{width:20.086102pt;}
._12{width:21.520717pt;}
._c{width:22.480967pt;}
._a{width:23.803972pt;}
._16{width:25.454124pt;}
._e{width:26.625390pt;}
._4{width:27.736064pt;}
._1a{width:29.172013pt;}
._6{width:31.279899pt;}
._f{width:32.257580pt;}
._14{width:33.522166pt;}
._1c{width:38.188802pt;}
._1b{width:39.271250pt;}
._18{width:40.185171pt;}
._15{width:41.906672pt;}
._1e{width:43.093067pt;}
._17{width:44.745539pt;}
._1d{width:46.489812pt;}
._d{width:47.618590pt;}
._7{width:86.077200pt;}
.fs5{font-size:37.193600pt;}
.fs0{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:119.153333pt;}
.y4d{bottom:161.977333pt;}
.ya6{bottom:165.621333pt;}
.y97{bottom:169.033333pt;}
.y22{bottom:175.553333pt;}
.y4c{bottom:177.917333pt;}
.ya5{bottom:181.561333pt;}
.y96{bottom:184.973333pt;}
.y74{bottom:188.541333pt;}
.y21{bottom:191.493333pt;}
.y4b{bottom:193.857333pt;}
.ya4{bottom:197.501333pt;}
.y73{bottom:204.481333pt;}
.y20{bottom:207.433333pt;}
.y4a{bottom:209.797333pt;}
.ya3{bottom:213.441333pt;}
.y72{bottom:220.422667pt;}
.y1f{bottom:223.373333pt;}
.y49{bottom:225.738667pt;}
.ya2{bottom:229.381333pt;}
.y95{bottom:235.852000pt;}
.y71{bottom:236.362667pt;}
.y1e{bottom:239.313333pt;}
.y48{bottom:241.678667pt;}
.ya1{bottom:245.322667pt;}
.y94{bottom:251.793333pt;}
.y70{bottom:252.302667pt;}
.y1d{bottom:255.254667pt;}
.y47{bottom:257.618667pt;}
.ya0{bottom:261.262667pt;}
.y93{bottom:267.733333pt;}
.y6f{bottom:268.242667pt;}
.y1c{bottom:271.194667pt;}
.y46{bottom:273.558667pt;}
.y9f{bottom:277.202667pt;}
.y92{bottom:283.673333pt;}
.y6e{bottom:284.182667pt;}
.y45{bottom:289.498667pt;}
.yb3{bottom:296.326667pt;}
.y91{bottom:299.613333pt;}
.y6d{bottom:300.122667pt;}
.y44{bottom:305.440000pt;}
.y9e{bottom:309.082667pt;}
.y1b{bottom:312.096000pt;}
.yb2{bottom:312.266667pt;}
.y90{bottom:315.553333pt;}
.y6c{bottom:316.064000pt;}
.y43{bottom:321.380000pt;}
.y1a{bottom:328.036000pt;}
.yb1{bottom:328.206667pt;}
.y8f{bottom:331.494667pt;}
.y42{bottom:337.320000pt;}
.y19{bottom:343.976000pt;}
.y8e{bottom:347.434667pt;}
.y41{bottom:353.260000pt;}
.y6b{bottom:356.965333pt;}
.yb0{bottom:357.301333pt;}
.y18{bottom:359.917333pt;}
.y8d{bottom:363.374667pt;}
.y40{bottom:369.200000pt;}
.y6a{bottom:372.905333pt;}
.y17{bottom:375.857333pt;}
.y8c{bottom:379.314667pt;}
.y3f{bottom:385.140000pt;}
.y69{bottom:388.845333pt;}
.y16{bottom:391.797333pt;}
.y8b{bottom:395.254667pt;}
.y3e{bottom:401.081333pt;}
.y68{bottom:404.785333pt;}
.y15{bottom:407.737333pt;}
.y8a{bottom:411.194667pt;}
.y3d{bottom:417.021333pt;}
.y67{bottom:420.726667pt;}
.y14{bottom:423.677333pt;}
.y89{bottom:427.136000pt;}
.y3c{bottom:432.961333pt;}
.yaf{bottom:436.168000pt;}
.y88{bottom:443.076000pt;}
.y3b{bottom:448.901333pt;}
.y66{bottom:449.820000pt;}
.yae{bottom:452.108000pt;}
.y13{bottom:452.772000pt;}
.y3a{bottom:464.841333pt;}
.yad{bottom:468.048000pt;}
.y12{bottom:476.682667pt;}
.y39{bottom:480.781333pt;}
.yac{bottom:483.989333pt;}
.y87{bottom:484.716000pt;}
.y65{bottom:493.748000pt;}
.y38{bottom:496.722667pt;}
.yab{bottom:499.929333pt;}
.y86{bottom:500.656000pt;}
.y64{bottom:509.688000pt;}
.y37{bottom:512.662667pt;}
.yaa{bottom:515.869333pt;}
.y85{bottom:516.596000pt;}
.y11{bottom:520.201333pt;}
.y63{bottom:525.629333pt;}
.y36{bottom:528.602667pt;}
.ya9{bottom:531.809333pt;}
.y84{bottom:532.536000pt;}
.y10{bottom:536.141333pt;}
.y62{bottom:541.569333pt;}
.y35{bottom:544.542667pt;}
.ya8{bottom:547.749333pt;}
.yf{bottom:552.081333pt;}
.y61{bottom:557.509333pt;}
.y34{bottom:560.482667pt;}
.ya7{bottom:563.689333pt;}
.ye{bottom:568.021333pt;}
.y60{bottom:573.449333pt;}
.y33{bottom:576.422667pt;}
.y83{bottom:583.416000pt;}
.yd{bottom:583.961333pt;}
.y5f{bottom:589.389333pt;}
.y32{bottom:592.364000pt;}
.y82{bottom:599.356000pt;}
.y5e{bottom:605.329333pt;}
.y9d{bottom:606.708000pt;}
.y31{bottom:608.304000pt;}
.yc{bottom:613.056000pt;}
.y5d{bottom:621.270667pt;}
.y9c{bottom:622.648000pt;}
.y30{bottom:624.244000pt;}
.y5c{bottom:637.210667pt;}
.y9b{bottom:638.589333pt;}
.y2f{bottom:640.184000pt;}
.y81{bottom:640.996000pt;}
.y5b{bottom:653.150667pt;}
.y2e{bottom:656.124000pt;}
.y80{bottom:656.936000pt;}
.yb{bottom:667.482667pt;}
.y5a{bottom:669.090667pt;}
.y2d{bottom:672.065333pt;}
.y7f{bottom:672.877333pt;}
.y9a{bottom:679.490667pt;}
.y59{bottom:685.030667pt;}
.y2c{bottom:688.005333pt;}
.y7e{bottom:688.817333pt;}
.y99{bottom:695.430667pt;}
.y58{bottom:700.970667pt;}
.y2b{bottom:703.945333pt;}
.y7d{bottom:704.757333pt;}
.ya{bottom:707.613333pt;}
.y57{bottom:716.912000pt;}
.y2a{bottom:719.885333pt;}
.y7c{bottom:720.697333pt;}
.y9{bottom:723.553333pt;}
.y56{bottom:732.852000pt;}
.y29{bottom:735.825333pt;}
.y7b{bottom:736.637333pt;}
.y98{bottom:740.064000pt;}
.y55{bottom:748.792000pt;}
.y28{bottom:751.765333pt;}
.y8{bottom:752.777333pt;}
.y54{bottom:764.732000pt;}
.y27{bottom:767.706667pt;}
.y53{bottom:780.672000pt;}
.y26{bottom:783.646667pt;}
.y4{bottom:783.761333pt;}
.y7a{bottom:787.517333pt;}
.y7{bottom:791.298667pt;}
.y52{bottom:796.612000pt;}
.y79{bottom:803.457333pt;}
.y51{bottom:812.553333pt;}
.y78{bottom:819.397333pt;}
.y6{bottom:820.522667pt;}
.y50{bottom:828.493333pt;}
.y25{bottom:834.525333pt;}
.y77{bottom:835.337333pt;}
.y3{bottom:840.880000pt;}
.y4f{bottom:844.433333pt;}
.y24{bottom:850.466667pt;}
.y76{bottom:851.278667pt;}
.y2{bottom:855.492000pt;}
.y4e{bottom:860.373333pt;}
.y23{bottom:866.406667pt;}
.y75{bottom:867.218667pt;}
.y1{bottom:876.313333pt;}
.h1{height:33.474560pt;}
.h2{height:34.239693pt;}
.h3{height:39.850400pt;}
.h7{height:43.976550pt;}
.h8{height:43.981884pt;}
.h5{height:47.820800pt;}
.h6{height:57.384800pt;}
.h4{height:64.454458pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:178.357333pt;}
.xc{left:198.282667pt;}
.x5{left:199.510667pt;}
.xb{left:210.637333pt;}
.x3{left:211.566667pt;}
.x2{left:229.997333pt;}
.xd{left:247.422667pt;}
.x8{left:257.414667pt;}
.x7{left:258.304000pt;}
.xe{left:302.845333pt;}
.x6{left:324.804000pt;}
.x9{left:353.086667pt;}
.x1{left:380.440000pt;}
.x4{left:404.177333pt;}
}




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