
    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_06b31010bdbee3ac3f9d59fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_b2881025818dae4ce2049935.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_1126a8ad76c47003b8706c8c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008301;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_30d01897a1feb7f809f27277.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_341531c105900d0b39c437f7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ae4bc7262dae48b51b59860b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_7da47f1ae1c935c0b3c34866.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_fd27b253fb687b2f9fa73a5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_fddfe79660406cdb10138417.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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_da9176acbcf8f158a9fc6b31.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-1.080000px;}
.ls19{letter-spacing:-0.774000px;}
.ls11{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.513600px;}
.lsc{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.262200px;}
.lse{letter-spacing:-0.259800px;}
.ls1d{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.109200px;}
.ls1b{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.109200px;}
.ls1c{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.206400px;}
.ls1a{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.439920px;}
.lsf{letter-spacing:0.460080px;}
.ls10{letter-spacing:0.640080px;}
.ls22{letter-spacing:3.780000px;}
.ls2{letter-spacing:8.820000px;}
.ls17{letter-spacing:13.860000px;}
.ls20{letter-spacing:16.506720px;}
.ls3{letter-spacing:18.180000px;}
.ls15{letter-spacing:21.780000px;}
.ls23{letter-spacing:22.500000px;}
.ls18{letter-spacing:22.620000px;}
.ls14{letter-spacing:23.220000px;}
.ls1f{letter-spacing:26.100000px;}
.ls16{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;}
}
.wsf{word-spacing:-59.760000px;}
.ws4{word-spacing:-16.669200px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.450800px;}
.ws3{word-spacing:-16.297800px;}
.ws6{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.146400px;}
.ws14{word-spacing:-15.093600px;}
.wse{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.833200px;}
.ws15{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.426400px;}
.ws11{word-spacing:-14.166000px;}
.ws10{word-spacing:-13.860000px;}
.ws1{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.wsd{word-spacing:0.000000px;}
._19{margin-left:-6.963120px;}
._18{margin-left:-5.244720px;}
._9{margin-left:-3.501360px;}
._8{margin-left:-2.010960px;}
._0{margin-left:-1.010880px;}
._1{width:1.803840px;}
._b{width:3.005280px;}
._1f{width:4.088880px;}
._f{width:5.247840px;}
._23{width:6.280560px;}
._d{width:7.312800px;}
._c{width:9.023760px;}
._7{width:10.897200px;}
._28{width:11.945760px;}
._5{width:12.960000px;}
._e{width:16.738560px;}
._17{width:17.739120px;}
._16{width:18.861600px;}
._24{width:19.889040px;}
._14{width:21.052320px;}
._15{width:22.664160px;}
._1a{width:23.952960px;}
._1b{width:25.088160px;}
._1c{width:26.832240px;}
._25{width:28.905840px;}
._20{width:31.093200px;}
._1d{width:32.617920px;}
._1e{width:34.053360px;}
._11{width:35.968080px;}
._10{width:37.049280px;}
._21{width:41.455920px;}
._22{width:42.570000px;}
._2a{width:45.501600px;}
._2d{width:48.447120px;}
._29{width:51.333840px;}
._2b{width:52.658880px;}
._27{width:54.968160px;}
._4{width:57.204000px;}
._2c{width:59.572800px;}
._26{width:63.812640px;}
._2f{width:65.853360px;}
._2e{width:68.074560px;}
._3{width:87.120000px;}
._12{width:91.523040px;}
._13{width:181.993440px;}
._6{width:199.416000px;}
._2{width:233.273760px;}
._a{width:1023.402960px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y84{bottom:-27.540000px;}
.y93{bottom:-27.180000px;}
.y92{bottom:-12.780000px;}
.y83{bottom:-10.440000px;}
.y8a{bottom:-9.765000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.440000px;}
.y8c{bottom:5.580000px;}
.y80{bottom:5.760000px;}
.y22{bottom:5.940000px;}
.y89{bottom:7.380000px;}
.y13{bottom:7.560000px;}
.y82{bottom:8.100000px;}
.y8e{bottom:9.360000px;}
.y6{bottom:13.860000px;}
.y91{bottom:23.070000px;}
.y21{bottom:25.740000px;}
.y88{bottom:27.180000px;}
.y90{bottom:41.970000px;}
.y5{bottom:45.000000px;}
.y20{bottom:45.540000px;}
.y87{bottom:47.160000px;}
.y9{bottom:60.480000px;}
.y1f{bottom:65.340000px;}
.y4{bottom:76.320000px;}
.y1e{bottom:85.140000px;}
.y49{bottom:85.680000px;}
.y38{bottom:88.020000px;}
.yc1{bottom:91.260000px;}
.y7e{bottom:94.680000px;}
.y1d{bottom:105.120000px;}
.y48{bottom:105.480000px;}
.ye6{bottom:105.660000px;}
.y3{bottom:107.670000px;}
.y37{bottom:107.820000px;}
.y7d{bottom:114.660000px;}
.yc0{bottom:120.060000px;}
.y1c{bottom:124.920000px;}
.y47{bottom:125.280000px;}
.ye5{bottom:125.460000px;}
.y36{bottom:127.620000px;}
.y7c{bottom:134.460000px;}
.ybf{bottom:139.860000px;}
.y2{bottom:140.430000px;}
.y1b{bottom:144.720000px;}
.y46{bottom:145.260000px;}
.y35{bottom:147.420000px;}
.y7b{bottom:154.260000px;}
.ybe{bottom:159.840000px;}
.y1a{bottom:164.550000px;}
.y45{bottom:165.060000px;}
.y34{bottom:167.220000px;}
.y7a{bottom:174.060000px;}
.y19{bottom:184.350000px;}
.ye4{bottom:184.860000px;}
.y33{bottom:187.200000px;}
.ybd{bottom:188.640000px;}
.y8f{bottom:192.600000px;}
.y44{bottom:193.860000px;}
.y18{bottom:204.330000px;}
.ye3{bottom:204.840000px;}
.ybc{bottom:208.440000px;}
.y32{bottom:211.350000px;}
.y43{bottom:213.690000px;}
.y79{bottom:213.870000px;}
.y17{bottom:224.130000px;}
.ye2{bottom:224.670000px;}
.ybb{bottom:228.270000px;}
.y42{bottom:233.490000px;}
.y78{bottom:233.670000px;}
.y31{bottom:242.490000px;}
.y16{bottom:243.930000px;}
.ye1{bottom:244.470000px;}
.y41{bottom:253.470000px;}
.yba{bottom:257.070000px;}
.y30{bottom:262.470000px;}
.y15{bottom:263.730000px;}
.ye0{bottom:264.270000px;}
.y40{bottom:273.270000px;}
.yb9{bottom:277.050000px;}
.y2f{bottom:282.270000px;}
.ydf{bottom:284.070000px;}
.y3f{bottom:293.070000px;}
.yb8{bottom:296.850000px;}
.y2e{bottom:302.070000px;}
.yde{bottom:304.050000px;}
.y3e{bottom:312.870000px;}
.y77{bottom:313.050000px;}
.yb7{bottom:316.650000px;}
.y2d{bottom:321.870000px;}
.ydd{bottom:323.850000px;}
.y3d{bottom:332.670000px;}
.y76{bottom:332.850000px;}
.yb6{bottom:336.450000px;}
.y2c{bottom:341.670000px;}
.ydc{bottom:343.650000px;}
.y3c{bottom:352.650000px;}
.yb5{bottom:356.250000px;}
.y2b{bottom:361.650000px;}
.ydb{bottom:363.450000px;}
.y3b{bottom:372.450000px;}
.yb4{bottom:376.230000px;}
.y2a{bottom:381.450000px;}
.yda{bottom:383.250000px;}
.y3a{bottom:392.250000px;}
.yb3{bottom:396.030000px;}
.y8b{bottom:396.750000px;}
.y8d{bottom:399.810000px;}
.y29{bottom:401.250000px;}
.yd9{bottom:403.230000px;}
.y39{bottom:412.050000px;}
.y75{bottom:412.230000px;}
.yb2{bottom:415.830000px;}
.y28{bottom:421.050000px;}
.yd8{bottom:423.030000px;}
.y74{bottom:432.030000px;}
.yb1{bottom:435.630000px;}
.y27{bottom:440.850000px;}
.yd7{bottom:442.830000px;}
.y86{bottom:447.555000px;}
.y73{bottom:451.875000px;}
.yb0{bottom:455.475000px;}
.y26{bottom:460.875000px;}
.yd6{bottom:462.675000px;}
.y72{bottom:471.675000px;}
.yaf{bottom:475.455000px;}
.y25{bottom:480.675000px;}
.yd5{bottom:482.475000px;}
.y71{bottom:491.475000px;}
.yae{bottom:495.255000px;}
.y24{bottom:500.475000px;}
.yd4{bottom:502.455000px;}
.y70{bottom:511.455000px;}
.yad{bottom:515.055000px;}
.y23{bottom:520.275000px;}
.yd3{bottom:522.255000px;}
.y6f{bottom:531.255000px;}
.y14{bottom:535.035000px;}
.yd2{bottom:542.055000px;}
.yac{bottom:543.855000px;}
.y6e{bottom:551.055000px;}
.yd1{bottom:561.855000px;}
.yab{bottom:563.655000px;}
.y6d{bottom:570.855000px;}
.yd0{bottom:581.655000px;}
.yaa{bottom:583.635000px;}
.y6c{bottom:590.655000px;}
.ycf{bottom:601.635000px;}
.ya9{bottom:603.435000px;}
.y6b{bottom:610.635000px;}
.yce{bottom:621.435000px;}
.ya8{bottom:623.235000px;}
.y6a{bottom:630.435000px;}
.ycd{bottom:641.235000px;}
.ya7{bottom:643.035000px;}
.y69{bottom:650.235000px;}
.ycc{bottom:661.035000px;}
.ya6{bottom:662.835000px;}
.y68{bottom:670.035000px;}
.ycb{bottom:680.835000px;}
.ya5{bottom:682.845000px;}
.y67{bottom:689.865000px;}
.yca{bottom:700.845000px;}
.ya4{bottom:702.645000px;}
.y66{bottom:709.845000px;}
.y85{bottom:713.625000px;}
.yc9{bottom:720.645000px;}
.y65{bottom:729.645000px;}
.ya3{bottom:731.445000px;}
.yc8{bottom:740.445000px;}
.y64{bottom:749.445000px;}
.ya2{bottom:751.245000px;}
.yc7{bottom:760.245000px;}
.y81{bottom:764.745000px;}
.y63{bottom:769.245000px;}
.y7f{bottom:770.685000px;}
.ya1{bottom:771.045000px;}
.yc6{bottom:780.045000px;}
.y62{bottom:789.045000px;}
.ya0{bottom:791.025000px;}
.yc5{bottom:800.025000px;}
.y61{bottom:809.025000px;}
.y9f{bottom:810.825000px;}
.y12{bottom:813.525000px;}
.yc4{bottom:819.825000px;}
.y60{bottom:828.825000px;}
.y9e{bottom:830.625000px;}
.yc3{bottom:839.625000px;}
.y11{bottom:846.285000px;}
.y5f{bottom:848.625000px;}
.y9d{bottom:850.425000px;}
.yc2{bottom:859.425000px;}
.y5e{bottom:868.425000px;}
.y10{bottom:871.305000px;}
.y9c{bottom:879.225000px;}
.y5d{bottom:888.225000px;}
.yf{bottom:891.105000px;}
.y9b{bottom:899.205000px;}
.ye{bottom:906.225000px;}
.y5c{bottom:908.205000px;}
.y9a{bottom:919.050000px;}
.y5b{bottom:928.050000px;}
.yd{bottom:928.230000px;}
.y99{bottom:938.850000px;}
.y5a{bottom:947.850000px;}
.yc{bottom:949.470000px;}
.y98{bottom:958.650000px;}
.y59{bottom:967.650000px;}
.yb{bottom:972.870000px;}
.y97{bottom:978.450000px;}
.y58{bottom:987.450000px;}
.y96{bottom:998.430000px;}
.ya{bottom:1004.550000px;}
.y57{bottom:1007.430000px;}
.y95{bottom:1018.230000px;}
.y56{bottom:1027.230000px;}
.y8{bottom:1030.650000px;}
.y94{bottom:1038.030000px;}
.y1{bottom:1046.670000px;}
.y55{bottom:1047.030000px;}
.y50{bottom:1066.830000px;}
.y54{bottom:1077.630000px;}
.y4f{bottom:1086.630000px;}
.y53{bottom:1097.610000px;}
.y4e{bottom:1106.610000px;}
.y52{bottom:1117.410000px;}
.y4d{bottom:1126.410000px;}
.y51{bottom:1137.210000px;}
.y4c{bottom:1146.210000px;}
.y4b{bottom:1166.040000px;}
.y4a{bottom:1192.860000px;}
.h11{height:22.140000px;}
.h10{height:22.320000px;}
.hc{height:26.100000px;}
.h17{height:29.464453px;}
.h15{height:29.700000px;}
.h14{height:34.036523px;}
.ha{height:34.855313px;}
.h12{height:38.100586px;}
.h8{height:42.164648px;}
.he{height:48.496641px;}
.h4{height:48.774375px;}
.hf{height:51.706406px;}
.h9{height:53.224453px;}
.hb{height:53.573906px;}
.h16{height:56.016000px;}
.h5{height:59.383125px;}
.h13{height:61.200000px;}
.h3{height:62.028281px;}
.h7{height:67.565039px;}
.h6{height:74.039062px;}
.h2{height:162.390000px;}
.hd{height:277.770000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:21.060000px;}
.wc{width:24.840000px;}
.wb{width:27.756000px;}
.we{width:29.196000px;}
.w4{width:144.576000px;}
.w8{width:237.810000px;}
.w9{width:402.765000px;}
.wa{width:402.915000px;}
.w7{width:542.310000px;}
.wd{width:598.650000px;}
.w2{width:619.890000px;}
.w6{width:780.120000px;}
.w1{width:893.250000px;}
.w5{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.xc{left:10.830000px;}
.x9{left:21.636000px;}
.xf{left:46.440000px;}
.x1{left:54.000000px;}
.x6{left:56.700000px;}
.x14{left:75.239987px;}
.xd{left:91.476000px;}
.x15{left:102.275987px;}
.x5{left:136.290000px;}
.xe{left:144.756000px;}
.x11{left:153.030000px;}
.xb{left:399.855000px;}
.xa{left:464.325000px;}
.x8{left:473.684987px;}
.x12{left:494.924987px;}
.x13{left:521.924987px;}
.x10{left:543.885000px;}
.x7{left:599.010000px;}
.x3{left:673.890000px;}
.x4{left:694.950000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-0.960000pt;}
.ls19{letter-spacing:-0.688000pt;}
.ls11{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.456533pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.233067pt;}
.lse{letter-spacing:-0.230933pt;}
.ls1d{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls1b{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.097067pt;}
.ls1c{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.183467pt;}
.ls1a{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.391040pt;}
.lsf{letter-spacing:0.408960pt;}
.ls10{letter-spacing:0.568960pt;}
.ls22{letter-spacing:3.360000pt;}
.ls2{letter-spacing:7.840000pt;}
.ls17{letter-spacing:12.320000pt;}
.ls20{letter-spacing:14.672640pt;}
.ls3{letter-spacing:16.160000pt;}
.ls15{letter-spacing:19.360000pt;}
.ls23{letter-spacing:20.000000pt;}
.ls18{letter-spacing:20.106667pt;}
.ls14{letter-spacing:20.640000pt;}
.ls1f{letter-spacing:23.200000pt;}
.ls16{letter-spacing:40.912640pt;}
.wsf{word-spacing:-53.120000pt;}
.ws4{word-spacing:-14.817067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.622933pt;}
.ws3{word-spacing:-14.486933pt;}
.ws6{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.463467pt;}
.ws14{word-spacing:-13.416533pt;}
.wse{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws13{word-spacing:-13.185067pt;}
.ws15{word-spacing:-13.096533pt;}
.wsc{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.823467pt;}
.ws11{word-spacing:-12.592000pt;}
.ws10{word-spacing:-12.320000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.wsd{word-spacing:0.000000pt;}
._19{margin-left:-6.189440pt;}
._18{margin-left:-4.661973pt;}
._9{margin-left:-3.112320pt;}
._8{margin-left:-1.787520pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.603413pt;}
._b{width:2.671360pt;}
._1f{width:3.634560pt;}
._f{width:4.664747pt;}
._23{width:5.582720pt;}
._d{width:6.500267pt;}
._c{width:8.021120pt;}
._7{width:9.686400pt;}
._28{width:10.618453pt;}
._5{width:11.520000pt;}
._e{width:14.878720pt;}
._17{width:15.768107pt;}
._16{width:16.765867pt;}
._24{width:17.679147pt;}
._14{width:18.713173pt;}
._15{width:20.145920pt;}
._1a{width:21.291520pt;}
._1b{width:22.300587pt;}
._1c{width:23.850880pt;}
._25{width:25.694080pt;}
._20{width:27.638400pt;}
._1d{width:28.993707pt;}
._1e{width:30.269653pt;}
._11{width:31.971627pt;}
._10{width:32.932693pt;}
._21{width:36.849707pt;}
._22{width:37.840000pt;}
._2a{width:40.445867pt;}
._2d{width:43.064107pt;}
._29{width:45.630080pt;}
._2b{width:46.807893pt;}
._27{width:48.860587pt;}
._4{width:50.848000pt;}
._2c{width:52.953600pt;}
._26{width:56.722347pt;}
._2f{width:58.536320pt;}
._2e{width:60.510720pt;}
._3{width:77.440000pt;}
._12{width:81.353813pt;}
._13{width:161.771947pt;}
._6{width:177.258667pt;}
._2{width:207.354453pt;}
._a{width:909.691520pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y84{bottom:-24.480000pt;}
.y93{bottom:-24.160000pt;}
.y92{bottom:-11.360000pt;}
.y83{bottom:-9.280000pt;}
.y8a{bottom:-8.680000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.280000pt;}
.y8c{bottom:4.960000pt;}
.y80{bottom:5.120000pt;}
.y22{bottom:5.280000pt;}
.y89{bottom:6.560000pt;}
.y13{bottom:6.720000pt;}
.y82{bottom:7.200000pt;}
.y8e{bottom:8.320000pt;}
.y6{bottom:12.320000pt;}
.y91{bottom:20.506667pt;}
.y21{bottom:22.880000pt;}
.y88{bottom:24.160000pt;}
.y90{bottom:37.306667pt;}
.y5{bottom:40.000000pt;}
.y20{bottom:40.480000pt;}
.y87{bottom:41.920000pt;}
.y9{bottom:53.760000pt;}
.y1f{bottom:58.080000pt;}
.y4{bottom:67.840000pt;}
.y1e{bottom:75.680000pt;}
.y49{bottom:76.160000pt;}
.y38{bottom:78.240000pt;}
.yc1{bottom:81.120000pt;}
.y7e{bottom:84.160000pt;}
.y1d{bottom:93.440000pt;}
.y48{bottom:93.760000pt;}
.ye6{bottom:93.920000pt;}
.y3{bottom:95.706667pt;}
.y37{bottom:95.840000pt;}
.y7d{bottom:101.920000pt;}
.yc0{bottom:106.720000pt;}
.y1c{bottom:111.040000pt;}
.y47{bottom:111.360000pt;}
.ye5{bottom:111.520000pt;}
.y36{bottom:113.440000pt;}
.y7c{bottom:119.520000pt;}
.ybf{bottom:124.320000pt;}
.y2{bottom:124.826667pt;}
.y1b{bottom:128.640000pt;}
.y46{bottom:129.120000pt;}
.y35{bottom:131.040000pt;}
.y7b{bottom:137.120000pt;}
.ybe{bottom:142.080000pt;}
.y1a{bottom:146.266667pt;}
.y45{bottom:146.720000pt;}
.y34{bottom:148.640000pt;}
.y7a{bottom:154.720000pt;}
.y19{bottom:163.866667pt;}
.ye4{bottom:164.320000pt;}
.y33{bottom:166.400000pt;}
.ybd{bottom:167.680000pt;}
.y8f{bottom:171.200000pt;}
.y44{bottom:172.320000pt;}
.y18{bottom:181.626667pt;}
.ye3{bottom:182.080000pt;}
.ybc{bottom:185.280000pt;}
.y32{bottom:187.866667pt;}
.y43{bottom:189.946667pt;}
.y79{bottom:190.106667pt;}
.y17{bottom:199.226667pt;}
.ye2{bottom:199.706667pt;}
.ybb{bottom:202.906667pt;}
.y42{bottom:207.546667pt;}
.y78{bottom:207.706667pt;}
.y31{bottom:215.546667pt;}
.y16{bottom:216.826667pt;}
.ye1{bottom:217.306667pt;}
.y41{bottom:225.306667pt;}
.yba{bottom:228.506667pt;}
.y30{bottom:233.306667pt;}
.y15{bottom:234.426667pt;}
.ye0{bottom:234.906667pt;}
.y40{bottom:242.906667pt;}
.yb9{bottom:246.266667pt;}
.y2f{bottom:250.906667pt;}
.ydf{bottom:252.506667pt;}
.y3f{bottom:260.506667pt;}
.yb8{bottom:263.866667pt;}
.y2e{bottom:268.506667pt;}
.yde{bottom:270.266667pt;}
.y3e{bottom:278.106667pt;}
.y77{bottom:278.266667pt;}
.yb7{bottom:281.466667pt;}
.y2d{bottom:286.106667pt;}
.ydd{bottom:287.866667pt;}
.y3d{bottom:295.706667pt;}
.y76{bottom:295.866667pt;}
.yb6{bottom:299.066667pt;}
.y2c{bottom:303.706667pt;}
.ydc{bottom:305.466667pt;}
.y3c{bottom:313.466667pt;}
.yb5{bottom:316.666667pt;}
.y2b{bottom:321.466667pt;}
.ydb{bottom:323.066667pt;}
.y3b{bottom:331.066667pt;}
.yb4{bottom:334.426667pt;}
.y2a{bottom:339.066667pt;}
.yda{bottom:340.666667pt;}
.y3a{bottom:348.666667pt;}
.yb3{bottom:352.026667pt;}
.y8b{bottom:352.666667pt;}
.y8d{bottom:355.386667pt;}
.y29{bottom:356.666667pt;}
.yd9{bottom:358.426667pt;}
.y39{bottom:366.266667pt;}
.y75{bottom:366.426667pt;}
.yb2{bottom:369.626667pt;}
.y28{bottom:374.266667pt;}
.yd8{bottom:376.026667pt;}
.y74{bottom:384.026667pt;}
.yb1{bottom:387.226667pt;}
.y27{bottom:391.866667pt;}
.yd7{bottom:393.626667pt;}
.y86{bottom:397.826667pt;}
.y73{bottom:401.666667pt;}
.yb0{bottom:404.866667pt;}
.y26{bottom:409.666667pt;}
.yd6{bottom:411.266667pt;}
.y72{bottom:419.266667pt;}
.yaf{bottom:422.626667pt;}
.y25{bottom:427.266667pt;}
.yd5{bottom:428.866667pt;}
.y71{bottom:436.866667pt;}
.yae{bottom:440.226667pt;}
.y24{bottom:444.866667pt;}
.yd4{bottom:446.626667pt;}
.y70{bottom:454.626667pt;}
.yad{bottom:457.826667pt;}
.y23{bottom:462.466667pt;}
.yd3{bottom:464.226667pt;}
.y6f{bottom:472.226667pt;}
.y14{bottom:475.586667pt;}
.yd2{bottom:481.826667pt;}
.yac{bottom:483.426667pt;}
.y6e{bottom:489.826667pt;}
.yd1{bottom:499.426667pt;}
.yab{bottom:501.026667pt;}
.y6d{bottom:507.426667pt;}
.yd0{bottom:517.026667pt;}
.yaa{bottom:518.786667pt;}
.y6c{bottom:525.026667pt;}
.ycf{bottom:534.786667pt;}
.ya9{bottom:536.386667pt;}
.y6b{bottom:542.786667pt;}
.yce{bottom:552.386667pt;}
.ya8{bottom:553.986667pt;}
.y6a{bottom:560.386667pt;}
.ycd{bottom:569.986667pt;}
.ya7{bottom:571.586667pt;}
.y69{bottom:577.986667pt;}
.ycc{bottom:587.586667pt;}
.ya6{bottom:589.186667pt;}
.y68{bottom:595.586667pt;}
.ycb{bottom:605.186667pt;}
.ya5{bottom:606.973333pt;}
.y67{bottom:613.213333pt;}
.yca{bottom:622.973333pt;}
.ya4{bottom:624.573333pt;}
.y66{bottom:630.973333pt;}
.y85{bottom:634.333333pt;}
.yc9{bottom:640.573333pt;}
.y65{bottom:648.573333pt;}
.ya3{bottom:650.173333pt;}
.yc8{bottom:658.173333pt;}
.y64{bottom:666.173333pt;}
.ya2{bottom:667.773333pt;}
.yc7{bottom:675.773333pt;}
.y81{bottom:679.773333pt;}
.y63{bottom:683.773333pt;}
.y7f{bottom:685.053333pt;}
.ya1{bottom:685.373333pt;}
.yc6{bottom:693.373333pt;}
.y62{bottom:701.373333pt;}
.ya0{bottom:703.133333pt;}
.yc5{bottom:711.133333pt;}
.y61{bottom:719.133333pt;}
.y9f{bottom:720.733333pt;}
.y12{bottom:723.133333pt;}
.yc4{bottom:728.733333pt;}
.y60{bottom:736.733333pt;}
.y9e{bottom:738.333333pt;}
.yc3{bottom:746.333333pt;}
.y11{bottom:752.253333pt;}
.y5f{bottom:754.333333pt;}
.y9d{bottom:755.933333pt;}
.yc2{bottom:763.933333pt;}
.y5e{bottom:771.933333pt;}
.y10{bottom:774.493333pt;}
.y9c{bottom:781.533333pt;}
.y5d{bottom:789.533333pt;}
.yf{bottom:792.093333pt;}
.y9b{bottom:799.293333pt;}
.ye{bottom:805.533333pt;}
.y5c{bottom:807.293333pt;}
.y9a{bottom:816.933333pt;}
.y5b{bottom:824.933333pt;}
.yd{bottom:825.093333pt;}
.y99{bottom:834.533333pt;}
.y5a{bottom:842.533333pt;}
.yc{bottom:843.973333pt;}
.y98{bottom:852.133333pt;}
.y59{bottom:860.133333pt;}
.yb{bottom:864.773333pt;}
.y97{bottom:869.733333pt;}
.y58{bottom:877.733333pt;}
.y96{bottom:887.493333pt;}
.ya{bottom:892.933333pt;}
.y57{bottom:895.493333pt;}
.y95{bottom:905.093333pt;}
.y56{bottom:913.093333pt;}
.y8{bottom:916.133333pt;}
.y94{bottom:922.693333pt;}
.y1{bottom:930.373333pt;}
.y55{bottom:930.693333pt;}
.y50{bottom:948.293333pt;}
.y54{bottom:957.893333pt;}
.y4f{bottom:965.893333pt;}
.y53{bottom:975.653333pt;}
.y4e{bottom:983.653333pt;}
.y52{bottom:993.253333pt;}
.y4d{bottom:1001.253333pt;}
.y51{bottom:1010.853333pt;}
.y4c{bottom:1018.853333pt;}
.y4b{bottom:1036.480000pt;}
.y4a{bottom:1060.320000pt;}
.h11{height:19.680000pt;}
.h10{height:19.840000pt;}
.hc{height:23.200000pt;}
.h17{height:26.190625pt;}
.h15{height:26.400000pt;}
.h14{height:30.254687pt;}
.ha{height:30.982500pt;}
.h12{height:33.867188pt;}
.h8{height:37.479688pt;}
.he{height:43.108125pt;}
.h4{height:43.355000pt;}
.hf{height:45.961250pt;}
.h9{height:47.310625pt;}
.hb{height:47.621250pt;}
.h16{height:49.792000pt;}
.h5{height:52.785000pt;}
.h13{height:54.400000pt;}
.h3{height:55.136250pt;}
.h7{height:60.057813pt;}
.h6{height:65.812500pt;}
.h2{height:144.346667pt;}
.hd{height:246.906667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:18.720000pt;}
.wc{width:22.080000pt;}
.wb{width:24.672000pt;}
.we{width:25.952000pt;}
.w4{width:128.512000pt;}
.w8{width:211.386667pt;}
.w9{width:358.013333pt;}
.wa{width:358.146667pt;}
.w7{width:482.053333pt;}
.wd{width:532.133333pt;}
.w2{width:551.013333pt;}
.w6{width:693.440000pt;}
.w1{width:794.000000pt;}
.w5{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.xc{left:9.626667pt;}
.x9{left:19.232000pt;}
.xf{left:41.280000pt;}
.x1{left:48.000000pt;}
.x6{left:50.400000pt;}
.x14{left:66.879988pt;}
.xd{left:81.312000pt;}
.x15{left:90.911988pt;}
.x5{left:121.146667pt;}
.xe{left:128.672000pt;}
.x11{left:136.026667pt;}
.xb{left:355.426667pt;}
.xa{left:412.733333pt;}
.x8{left:421.053321pt;}
.x12{left:439.933321pt;}
.x13{left:463.933321pt;}
.x10{left:483.453333pt;}
.x7{left:532.453333pt;}
.x3{left:599.013333pt;}
.x4{left:617.733333pt;}
}




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