
    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_c00000 {
    display:none;
  }
  .loading-indicator_c00000.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00000 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_c00000 { 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_c00000" -> "#page-container .classname_c00000")
 */
.pf_c00000 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00000 { /* 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_c00000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00000 { /* 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_c00000 { /* 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_c00000 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00000 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00000 {overflow:visible;}
  }
}
.c_c00000 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00000 { /* 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_c00000:after { /* webkit #35443 */
  content: '';
}
.t_c00000:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00000 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 */
}
.__c00000 { /* 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_c00000 { /* info for Javascript */
  display:none;
}
.l_c00000 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00000 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00000 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00000: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_c00000 {
    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_c00000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00000.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_c00000 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00000;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.284668;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_c00000;src:url('chunks/assets/font_64acb7da34a59bdf5b97518f.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00000;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00000;src:url('chunks/assets/font_443adc1d83dbfc6a4a52d703.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00000;src:url('chunks/assets/font_cca63e9ebb97a30e0d504932.woff2')format("woff");}.ff5_c00000{font-family:ff5_c00000;line-height:1.239258;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_c00000;src:url('chunks/assets/font_b6509ba18b2b863e7bd847dc.woff2')format("woff");}.ff6_c00000{font-family:ff6_c00000;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00000;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff7_c00000{font-family:ff7_c00000;line-height:1.284180;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_c00000{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_c00000{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);}
.v1_c00000{vertical-align:-81.000000px;}
.v2_c00000{vertical-align:-18.000000px;}
.v0_c00000{vertical-align:0.000000px;}
.ls16_c00000{letter-spacing:-1.942800px;}
.ls12_c00000{letter-spacing:-1.574400px;}
.ls13_c00000{letter-spacing:-1.534800px;}
.lsf_c00000{letter-spacing:-1.412400px;}
.ls9_c00000{letter-spacing:-1.365600px;}
.lsa_c00000{letter-spacing:-1.259400px;}
.lse_c00000{letter-spacing:-1.246200px;}
.ls7_c00000{letter-spacing:-1.206000px;}
.lsb_c00000{letter-spacing:-1.191000px;}
.ls11_c00000{letter-spacing:-1.002600px;}
.lsd_c00000{letter-spacing:-1.001400px;}
.ls8_c00000{letter-spacing:-0.973200px;}
.ls5_c00000{letter-spacing:-0.964200px;}
.ls14_c00000{letter-spacing:-0.939000px;}
.ls6_c00000{letter-spacing:-0.926400px;}
.ls17_c00000{letter-spacing:-0.898800px;}
.ls15_c00000{letter-spacing:-0.792600px;}
.lsc_c00000{letter-spacing:-0.784200px;}
.ls30_c00000{letter-spacing:-0.709200px;}
.ls18_c00000{letter-spacing:-0.687600px;}
.ls22_c00000{letter-spacing:-0.624600px;}
.ls10_c00000{letter-spacing:-0.413400px;}
.ls23_c00000{letter-spacing:-0.043200px;}
.ls4_c00000{letter-spacing:0.000000px;}
.ls1d_c00000{letter-spacing:0.061200px;}
.ls1e_c00000{letter-spacing:0.127800px;}
.ls27_c00000{letter-spacing:0.257400px;}
.ls34_c00000{letter-spacing:0.258600px;}
.ls1f_c00000{letter-spacing:0.367800px;}
.ls2a_c00000{letter-spacing:0.399600px;}
.ls31_c00000{letter-spacing:0.454800px;}
.ls19_c00000{letter-spacing:0.504600px;}
.ls1_c00000{letter-spacing:0.510600px;}
.ls28_c00000{letter-spacing:0.515400px;}
.ls25_c00000{letter-spacing:0.540000px;}
.ls33_c00000{letter-spacing:0.547800px;}
.ls32_c00000{letter-spacing:0.556200px;}
.ls29_c00000{letter-spacing:0.566400px;}
.ls2c_c00000{letter-spacing:0.670200px;}
.ls24_c00000{letter-spacing:0.803400px;}
.ls3_c00000{letter-spacing:1.032000px;}
.ls21_c00000{letter-spacing:1.037400px;}
.ls2f_c00000{letter-spacing:1.163400px;}
.ls26_c00000{letter-spacing:1.361400px;}
.ls20_c00000{letter-spacing:1.398600px;}
.ls2_c00000{letter-spacing:1.910400px;}
.ls2d_c00000{letter-spacing:1.938000px;}
.ls1c_c00000{letter-spacing:3.100960px;}
.ls2e_c00000{letter-spacing:6.244200px;}
.ls1b_c00000{letter-spacing:40.497508px;}
.ls2b_c00000{letter-spacing:55.938000px;}
.ls1a_c00000{letter-spacing:184.499700px;}
.ls0_c00000{letter-spacing:2551.499700px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{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__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1d_c00000{word-spacing:-81.388010px;}
.ws1e_c00000{word-spacing:-31.694210px;}
.ws1_c00000{word-spacing:-24.936640px;}
.ws2_c00000{word-spacing:-21.780040px;}
.ws0_c00000{word-spacing:-18.464100px;}
.ws22_c00000{word-spacing:-2.950200px;}
.ws38_c00000{word-spacing:-2.944800px;}
.ws1b_c00000{word-spacing:-2.488800px;}
.ws37_c00000{word-spacing:-2.406000px;}
.ws1c_c00000{word-spacing:-1.906800px;}
.ws6_c00000{word-spacing:-1.390800px;}
.ws5_c00000{word-spacing:-0.526200px;}
.ws2d_c00000{word-spacing:-0.388200px;}
.ws2f_c00000{word-spacing:-0.387000px;}
.ws1a_c00000{word-spacing:0.000000px;}
.ws19_c00000{word-spacing:0.161400px;}
.ws7_c00000{word-spacing:0.349200px;}
.ws18_c00000{word-spacing:0.372600px;}
.ws4_c00000{word-spacing:0.438000px;}
.ws12_c00000{word-spacing:0.476400px;}
.ws3_c00000{word-spacing:0.562800px;}
.wsd_c00000{word-spacing:0.664800px;}
.ws36_c00000{word-spacing:1.182000px;}
.ws20_c00000{word-spacing:1.549800px;}
.wsa_c00000{word-spacing:1.792800px;}
.ws15_c00000{word-spacing:1.912800px;}
.wsf_c00000{word-spacing:1.975200px;}
.ws30_c00000{word-spacing:2.259000px;}
.ws16_c00000{word-spacing:2.516400px;}
.ws17_c00000{word-spacing:2.541600px;}
.ws13_c00000{word-spacing:2.548200px;}
.wsb_c00000{word-spacing:2.639400px;}
.ws9_c00000{word-spacing:2.697000px;}
.ws32_c00000{word-spacing:3.672600px;}
.wsc_c00000{word-spacing:4.108200px;}
.ws11_c00000{word-spacing:4.387200px;}
.ws2e_c00000{word-spacing:4.488600px;}
.wse_c00000{word-spacing:4.758000px;}
.ws1f_c00000{word-spacing:5.175000px;}
.ws8_c00000{word-spacing:5.179800px;}
.ws10_c00000{word-spacing:5.386200px;}
.ws14_c00000{word-spacing:5.508600px;}
.ws27_c00000{word-spacing:6.049800px;}
.ws35_c00000{word-spacing:19.854000px;}
.ws25_c00000{word-spacing:20.439000px;}
.ws24_c00000{word-spacing:20.509800px;}
.ws29_c00000{word-spacing:32.483400px;}
.ws2a_c00000{word-spacing:35.509800px;}
.ws21_c00000{word-spacing:40.593600px;}
.ws23_c00000{word-spacing:41.246400px;}
.ws31_c00000{word-spacing:41.595000px;}
.ws2c_c00000{word-spacing:51.504600px;}
.ws33_c00000{word-spacing:51.994200px;}
.ws2b_c00000{word-spacing:52.900200px;}
.ws34_c00000{word-spacing:61.302000px;}
.ws28_c00000{word-spacing:104.535000px;}
.ws26_c00000{word-spacing:104.792400px;}
._5_c00000{margin-left:-58.498862px;}
._3_c00000{margin-left:-9.003707px;}
._1_c00000{margin-left:-4.500750px;}
._4_c00000{width:4.500510px;}
._2_c00000{width:9.001350px;}
._0_c00000{width:2042.999700px;}
.fc0_c00000{color:rgb(0,0,0);}
.fs2_c00000{font-size:39.234600px;}
.fs0_c00000{font-size:69.750000px;}
.fs1_c00000{font-size:82.828200px;}
.fs3_c00000{font-size:91.546800px;}
.y0_c00000{bottom:0.000000px;}
.y25_c00000{bottom:1.125000px;}
.y18_c00000{bottom:4.500000px;}
.y2a_c00000{bottom:5.625000px;}
.y1d_c00000{bottom:257.625000px;}
.y1c_c00000{bottom:335.250000px;}
.y23_c00000{bottom:439.875000px;}
.y24_c00000{bottom:459.000000px;}
.y22_c00000{bottom:466.875000px;}
.y21_c00000{bottom:489.375000px;}
.y20_c00000{bottom:513.000000px;}
.y1f_c00000{bottom:536.625000px;}
.y16_c00000{bottom:547.875000px;}
.y1e_c00000{bottom:555.750000px;}
.y15_c00000{bottom:568.125000px;}
.y14_c00000{bottom:587.250000px;}
.y13_c00000{bottom:607.500000px;}
.y3a_c00000{bottom:616.500000px;}
.y12_c00000{bottom:627.750000px;}
.y39_c00000{bottom:640.125000px;}
.y11_c00000{bottom:648.000000px;}
.y1b_c00000{bottom:649.125000px;}
.y38_c00000{bottom:667.125000px;}
.y10_c00000{bottom:668.250000px;}
.yf_c00000{bottom:687.375000px;}
.y37_c00000{bottom:694.125000px;}
.ye_c00000{bottom:708.750000px;}
.y36_c00000{bottom:725.625000px;}
.yd_c00000{bottom:727.875000px;}
.y35_c00000{bottom:747.000000px;}
.yc_c00000{bottom:748.125000px;}
.yb_c00000{bottom:768.375000px;}
.y34_c00000{bottom:779.625000px;}
.ya_c00000{bottom:787.500000px;}
.y33_c00000{bottom:801.000000px;}
.y9_c00000{bottom:808.875000px;}
.y8_c00000{bottom:828.000000px;}
.y7_c00000{bottom:849.375000px;}
.y6_c00000{bottom:868.500000px;}
.y32_c00000{bottom:878.625000px;}
.y5_c00000{bottom:887.625000px;}
.y31_c00000{bottom:902.250000px;}
.y30_c00000{bottom:907.875000px;}
.y4_c00000{bottom:909.000000px;}
.y3_c00000{bottom:928.125000px;}
.y2f_c00000{bottom:933.750000px;}
.y2_c00000{bottom:949.500000px;}
.y2e_c00000{bottom:955.125000px;}
.y2d_c00000{bottom:960.750000px;}
.y2c_c00000{bottom:982.125000px;}
.y2b_c00000{bottom:987.750000px;}
.y1a_c00000{bottom:1001.250000px;}
.y29_c00000{bottom:1009.125000px;}
.y28_c00000{bottom:1014.750000px;}
.y19_c00000{bottom:1024.875000px;}
.y17_c00000{bottom:1039.500000px;}
.y27_c00000{bottom:1040.625000px;}
.y26_c00000{bottom:1072.125000px;}
.y1_c00000{bottom:1093.500000px;}
.h5_c00000{height:9.000000px;}
.h2_c00000{height:22.500000px;}
.hb_c00000{height:25.875000px;}
.ha_c00000{height:27.000000px;}
.h6_c00000{height:36.341815px;}
.h7_c00000{height:40.920462px;}
.h1_c00000{height:68.455811px;}
.h4_c00000{height:72.747070px;}
.h8_c00000{height:77.480452px;}
.h3_c00000{height:86.387224px;}
.h9_c00000{height:95.480452px;}
.h0_c00000{height:1263.000000px;}
.w6_c00000{width:4.500000px;}
.w5_c00000{width:6.750000px;}
.w2_c00000{width:12.375000px;}
.wc_c00000{width:13.500000px;}
.w9_c00000{width:20.250000px;}
.wb_c00000{width:56.250000px;}
.wa_c00000{width:73.125000px;}
.w3_c00000{width:231.750000px;}
.w4_c00000{width:272.250000px;}
.w7_c00000{width:281.250000px;}
.w8_c00000{width:307.125000px;}
.w1_c00000{width:510.750000px;}
.wd_c00000{width:624.375000px;}
.w0_c00000{width:894.000000px;}
.x0_c00000{left:0.000000px;}
.x12_c00000{left:10.125000px;}
.x1_c00000{left:123.750000px;}
.x14_c00000{left:174.375000px;}
.x2_c00000{left:194.625000px;}
.x9_c00000{left:220.500000px;}
.xf_c00000{left:230.625000px;}
.xe_c00000{left:234.000000px;}
.x10_c00000{left:235.125000px;}
.x8_c00000{left:238.500000px;}
.x19_c00000{left:247.500000px;}
.xc_c00000{left:271.125000px;}
.xd_c00000{left:273.375000px;}
.x1a_c00000{left:302.625000px;}
.x5_c00000{left:306.000000px;}
.x7_c00000{left:319.500000px;}
.x6_c00000{left:361.125000px;}
.x4_c00000{left:450.000000px;}
.xa_c00000{left:451.125000px;}
.x17_c00000{left:491.625000px;}
.x16_c00000{left:517.500000px;}
.x3_c00000{left:705.375000px;}
.xb_c00000{left:722.250000px;}
.x18_c00000{left:778.500000px;}
.x15_c00000{left:794.250000px;}
.x11_c00000{left:853.875000px;}
.x13_c00000{left:864.000000px;}
@media print{
.v1_c00000{vertical-align:-72.000000pt;}
.v2_c00000{vertical-align:-16.000000pt;}
.v0_c00000{vertical-align:0.000000pt;}
.ls16_c00000{letter-spacing:-1.726933pt;}
.ls12_c00000{letter-spacing:-1.399467pt;}
.ls13_c00000{letter-spacing:-1.364267pt;}
.lsf_c00000{letter-spacing:-1.255467pt;}
.ls9_c00000{letter-spacing:-1.213867pt;}
.lsa_c00000{letter-spacing:-1.119467pt;}
.lse_c00000{letter-spacing:-1.107733pt;}
.ls7_c00000{letter-spacing:-1.072000pt;}
.lsb_c00000{letter-spacing:-1.058667pt;}
.ls11_c00000{letter-spacing:-0.891200pt;}
.lsd_c00000{letter-spacing:-0.890133pt;}
.ls8_c00000{letter-spacing:-0.865067pt;}
.ls5_c00000{letter-spacing:-0.857067pt;}
.ls14_c00000{letter-spacing:-0.834667pt;}
.ls6_c00000{letter-spacing:-0.823467pt;}
.ls17_c00000{letter-spacing:-0.798933pt;}
.ls15_c00000{letter-spacing:-0.704533pt;}
.lsc_c00000{letter-spacing:-0.697067pt;}
.ls30_c00000{letter-spacing:-0.630400pt;}
.ls18_c00000{letter-spacing:-0.611200pt;}
.ls22_c00000{letter-spacing:-0.555200pt;}
.ls10_c00000{letter-spacing:-0.367467pt;}
.ls23_c00000{letter-spacing:-0.038400pt;}
.ls4_c00000{letter-spacing:0.000000pt;}
.ls1d_c00000{letter-spacing:0.054400pt;}
.ls1e_c00000{letter-spacing:0.113600pt;}
.ls27_c00000{letter-spacing:0.228800pt;}
.ls34_c00000{letter-spacing:0.229867pt;}
.ls1f_c00000{letter-spacing:0.326933pt;}
.ls2a_c00000{letter-spacing:0.355200pt;}
.ls31_c00000{letter-spacing:0.404267pt;}
.ls19_c00000{letter-spacing:0.448533pt;}
.ls1_c00000{letter-spacing:0.453867pt;}
.ls28_c00000{letter-spacing:0.458133pt;}
.ls25_c00000{letter-spacing:0.480000pt;}
.ls33_c00000{letter-spacing:0.486933pt;}
.ls32_c00000{letter-spacing:0.494400pt;}
.ls29_c00000{letter-spacing:0.503467pt;}
.ls2c_c00000{letter-spacing:0.595733pt;}
.ls24_c00000{letter-spacing:0.714133pt;}
.ls3_c00000{letter-spacing:0.917333pt;}
.ls21_c00000{letter-spacing:0.922133pt;}
.ls2f_c00000{letter-spacing:1.034133pt;}
.ls26_c00000{letter-spacing:1.210133pt;}
.ls20_c00000{letter-spacing:1.243200pt;}
.ls2_c00000{letter-spacing:1.698133pt;}
.ls2d_c00000{letter-spacing:1.722667pt;}
.ls1c_c00000{letter-spacing:2.756409pt;}
.ls2e_c00000{letter-spacing:5.550400pt;}
.ls1b_c00000{letter-spacing:35.997785pt;}
.ls2b_c00000{letter-spacing:49.722667pt;}
.ls1a_c00000{letter-spacing:163.999733pt;}
.ls0_c00000{letter-spacing:2267.999733pt;}
.ws1d_c00000{word-spacing:-72.344898pt;}
.ws1e_c00000{word-spacing:-28.172631pt;}
.ws1_c00000{word-spacing:-22.165902pt;}
.ws2_c00000{word-spacing:-19.360035pt;}
.ws0_c00000{word-spacing:-16.412533pt;}
.ws22_c00000{word-spacing:-2.622400pt;}
.ws38_c00000{word-spacing:-2.617600pt;}
.ws1b_c00000{word-spacing:-2.212267pt;}
.ws37_c00000{word-spacing:-2.138667pt;}
.ws1c_c00000{word-spacing:-1.694933pt;}
.ws6_c00000{word-spacing:-1.236267pt;}
.ws5_c00000{word-spacing:-0.467733pt;}
.ws2d_c00000{word-spacing:-0.345067pt;}
.ws2f_c00000{word-spacing:-0.344000pt;}
.ws1a_c00000{word-spacing:0.000000pt;}
.ws19_c00000{word-spacing:0.143467pt;}
.ws7_c00000{word-spacing:0.310400pt;}
.ws18_c00000{word-spacing:0.331200pt;}
.ws4_c00000{word-spacing:0.389333pt;}
.ws12_c00000{word-spacing:0.423467pt;}
.ws3_c00000{word-spacing:0.500267pt;}
.wsd_c00000{word-spacing:0.590933pt;}
.ws36_c00000{word-spacing:1.050667pt;}
.ws20_c00000{word-spacing:1.377600pt;}
.wsa_c00000{word-spacing:1.593600pt;}
.ws15_c00000{word-spacing:1.700267pt;}
.wsf_c00000{word-spacing:1.755733pt;}
.ws30_c00000{word-spacing:2.008000pt;}
.ws16_c00000{word-spacing:2.236800pt;}
.ws17_c00000{word-spacing:2.259200pt;}
.ws13_c00000{word-spacing:2.265067pt;}
.wsb_c00000{word-spacing:2.346133pt;}
.ws9_c00000{word-spacing:2.397333pt;}
.ws32_c00000{word-spacing:3.264533pt;}
.wsc_c00000{word-spacing:3.651733pt;}
.ws11_c00000{word-spacing:3.899733pt;}
.ws2e_c00000{word-spacing:3.989867pt;}
.wse_c00000{word-spacing:4.229333pt;}
.ws1f_c00000{word-spacing:4.600000pt;}
.ws8_c00000{word-spacing:4.604267pt;}
.ws10_c00000{word-spacing:4.787733pt;}
.ws14_c00000{word-spacing:4.896533pt;}
.ws27_c00000{word-spacing:5.377600pt;}
.ws35_c00000{word-spacing:17.648000pt;}
.ws25_c00000{word-spacing:18.168000pt;}
.ws24_c00000{word-spacing:18.230933pt;}
.ws29_c00000{word-spacing:28.874133pt;}
.ws2a_c00000{word-spacing:31.564267pt;}
.ws21_c00000{word-spacing:36.083200pt;}
.ws23_c00000{word-spacing:36.663467pt;}
.ws31_c00000{word-spacing:36.973333pt;}
.ws2c_c00000{word-spacing:45.781867pt;}
.ws33_c00000{word-spacing:46.217067pt;}
.ws2b_c00000{word-spacing:47.022400pt;}
.ws34_c00000{word-spacing:54.490667pt;}
.ws28_c00000{word-spacing:92.920000pt;}
.ws26_c00000{word-spacing:93.148800pt;}
._5_c00000{margin-left:-51.998989pt;}
._3_c00000{margin-left:-8.003295pt;}
._1_c00000{margin-left:-4.000667pt;}
._4_c00000{width:4.000453pt;}
._2_c00000{width:8.001200pt;}
._0_c00000{width:1815.999733pt;}
.fs2_c00000{font-size:34.875200pt;}
.fs0_c00000{font-size:62.000000pt;}
.fs1_c00000{font-size:73.625067pt;}
.fs3_c00000{font-size:81.374933pt;}
.y0_c00000{bottom:0.000000pt;}
.y25_c00000{bottom:1.000000pt;}
.y18_c00000{bottom:4.000000pt;}
.y2a_c00000{bottom:5.000000pt;}
.y1d_c00000{bottom:229.000000pt;}
.y1c_c00000{bottom:298.000000pt;}
.y23_c00000{bottom:391.000000pt;}
.y24_c00000{bottom:408.000000pt;}
.y22_c00000{bottom:415.000000pt;}
.y21_c00000{bottom:435.000000pt;}
.y20_c00000{bottom:456.000000pt;}
.y1f_c00000{bottom:477.000000pt;}
.y16_c00000{bottom:487.000000pt;}
.y1e_c00000{bottom:494.000000pt;}
.y15_c00000{bottom:505.000000pt;}
.y14_c00000{bottom:522.000000pt;}
.y13_c00000{bottom:540.000000pt;}
.y3a_c00000{bottom:548.000000pt;}
.y12_c00000{bottom:558.000000pt;}
.y39_c00000{bottom:569.000000pt;}
.y11_c00000{bottom:576.000000pt;}
.y1b_c00000{bottom:577.000000pt;}
.y38_c00000{bottom:593.000000pt;}
.y10_c00000{bottom:594.000000pt;}
.yf_c00000{bottom:611.000000pt;}
.y37_c00000{bottom:617.000000pt;}
.ye_c00000{bottom:630.000000pt;}
.y36_c00000{bottom:645.000000pt;}
.yd_c00000{bottom:647.000000pt;}
.y35_c00000{bottom:664.000000pt;}
.yc_c00000{bottom:665.000000pt;}
.yb_c00000{bottom:683.000000pt;}
.y34_c00000{bottom:693.000000pt;}
.ya_c00000{bottom:700.000000pt;}
.y33_c00000{bottom:712.000000pt;}
.y9_c00000{bottom:719.000000pt;}
.y8_c00000{bottom:736.000000pt;}
.y7_c00000{bottom:755.000000pt;}
.y6_c00000{bottom:772.000000pt;}
.y32_c00000{bottom:781.000000pt;}
.y5_c00000{bottom:789.000000pt;}
.y31_c00000{bottom:802.000000pt;}
.y30_c00000{bottom:807.000000pt;}
.y4_c00000{bottom:808.000000pt;}
.y3_c00000{bottom:825.000000pt;}
.y2f_c00000{bottom:830.000000pt;}
.y2_c00000{bottom:844.000000pt;}
.y2e_c00000{bottom:849.000000pt;}
.y2d_c00000{bottom:854.000000pt;}
.y2c_c00000{bottom:873.000000pt;}
.y2b_c00000{bottom:878.000000pt;}
.y1a_c00000{bottom:890.000000pt;}
.y29_c00000{bottom:897.000000pt;}
.y28_c00000{bottom:902.000000pt;}
.y19_c00000{bottom:911.000000pt;}
.y17_c00000{bottom:924.000000pt;}
.y27_c00000{bottom:925.000000pt;}
.y26_c00000{bottom:953.000000pt;}
.y1_c00000{bottom:972.000000pt;}
.h5_c00000{height:8.000000pt;}
.h2_c00000{height:20.000000pt;}
.hb_c00000{height:23.000000pt;}
.ha_c00000{height:24.000000pt;}
.h6_c00000{height:32.303835pt;}
.h7_c00000{height:36.373744pt;}
.h1_c00000{height:60.849609pt;}
.h4_c00000{height:64.664062pt;}
.h8_c00000{height:68.871512pt;}
.h3_c00000{height:76.788644pt;}
.h9_c00000{height:84.871512pt;}
.h0_c00000{height:1122.666667pt;}
.w6_c00000{width:4.000000pt;}
.w5_c00000{width:6.000000pt;}
.w2_c00000{width:11.000000pt;}
.wc_c00000{width:12.000000pt;}
.w9_c00000{width:18.000000pt;}
.wb_c00000{width:50.000000pt;}
.wa_c00000{width:65.000000pt;}
.w3_c00000{width:206.000000pt;}
.w4_c00000{width:242.000000pt;}
.w7_c00000{width:250.000000pt;}
.w8_c00000{width:273.000000pt;}
.w1_c00000{width:454.000000pt;}
.wd_c00000{width:555.000000pt;}
.w0_c00000{width:794.666667pt;}
.x0_c00000{left:0.000000pt;}
.x12_c00000{left:9.000000pt;}
.x1_c00000{left:110.000000pt;}
.x14_c00000{left:155.000000pt;}
.x2_c00000{left:173.000000pt;}
.x9_c00000{left:196.000000pt;}
.xf_c00000{left:205.000000pt;}
.xe_c00000{left:208.000000pt;}
.x10_c00000{left:209.000000pt;}
.x8_c00000{left:212.000000pt;}
.x19_c00000{left:220.000000pt;}
.xc_c00000{left:241.000000pt;}
.xd_c00000{left:243.000000pt;}
.x1a_c00000{left:269.000000pt;}
.x5_c00000{left:272.000000pt;}
.x7_c00000{left:284.000000pt;}
.x6_c00000{left:321.000000pt;}
.x4_c00000{left:400.000000pt;}
.xa_c00000{left:401.000000pt;}
.x17_c00000{left:437.000000pt;}
.x16_c00000{left:460.000000pt;}
.x3_c00000{left:627.000000pt;}
.xb_c00000{left:642.000000pt;}
.x18_c00000{left:692.000000pt;}
.x15_c00000{left:706.000000pt;}
.x11_c00000{left:759.000000pt;}
.x13_c00000{left:768.000000pt;}
}





/* 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_c00001 {
    display:none;
  }
  .loading-indicator_c00001.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00001 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_c00001 { 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_c00001" -> "#page-container .classname_c00001")
 */
.pf_c00001 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00001 { /* 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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00001 { /* 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_c00001 { /* 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_c00001 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00001 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00001 {overflow:visible;}
  }
}
.c_c00001 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00001 { /* 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_c00001:after { /* webkit #35443 */
  content: '';
}
.t_c00001:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00001 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 */
}
.__c00001 { /* 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_c00001 { /* info for Javascript */
  display:none;
}
.l_c00001 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00001 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00001 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00001: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_c00001 {
    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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00001.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_c00001 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00001{font-family:sans-serif;visibility:hidden;}
.sc__c00001{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
}
.y0_c00001{bottom:0.000000px;}
.h0_c00001{height:1263.000000px;}
.w0_c00001{width:894.000000px;}
.x0_c00001{left:0.000000px;}
@media print{
.y0_c00001{bottom:0.000000pt;}
.h0_c00001{height:1122.666667pt;}
.w0_c00001{width:794.666667pt;}
.x0_c00001{left:0.000000pt;}
}




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