
    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_d3c26a6f020c309d7ab29023.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_2f67dc6f743ce22ce7c72c2a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926270;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_74f9e70475fb235d0f886ace.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_77862364fec4d2aebfdfe1c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_32a01f04c0a9825fec9e92c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.917480;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_780899677f4c913e2694a0cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_965902c0d699f84e909a0c7f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.808000;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;}
.m2{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-16.471800px;}
.v3{vertical-align:-3.419400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.655400px;}
.ls1a{letter-spacing:-0.480000px;}
.ls6c{letter-spacing:-0.300000px;}
.ls54{letter-spacing:-0.240000px;}
.ls81{letter-spacing:-0.180000px;}
.ls37{letter-spacing:-0.120000px;}
.ls82{letter-spacing:-0.096000px;}
.ls18{letter-spacing:-0.084000px;}
.ls33{letter-spacing:-0.060000px;}
.ls19{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls20{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006000px;}
.ls2a{letter-spacing:0.027600px;}
.ls76{letter-spacing:0.048000px;}
.ls22{letter-spacing:0.060000px;}
.ls2c{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.ls36{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.240000px;}
.ls34{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.300000px;}
.ls35{letter-spacing:0.336000px;}
.ls51{letter-spacing:0.343800px;}
.ls50{letter-spacing:0.344400px;}
.ls1f{letter-spacing:0.359400px;}
.lsb{letter-spacing:0.360000px;}
.ls45{letter-spacing:0.384000px;}
.ls12{letter-spacing:0.420000px;}
.ls52{letter-spacing:0.423600px;}
.ls31{letter-spacing:0.480000px;}
.ls7f{letter-spacing:0.528000px;}
.ls10{letter-spacing:0.540000px;}
.ls7e{letter-spacing:0.576000px;}
.ls4f{letter-spacing:0.598200px;}
.ls1e{letter-spacing:0.600000px;}
.lse{letter-spacing:0.660000px;}
.ls78{letter-spacing:0.672000px;}
.ls3c{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.780000px;}
.ls3f{letter-spacing:0.816000px;}
.ls21{letter-spacing:0.840000px;}
.ls53{letter-spacing:0.900000px;}
.ls16{letter-spacing:0.960000px;}
.ls27{letter-spacing:1.020000px;}
.ls29{letter-spacing:1.080000px;}
.ls7d{letter-spacing:1.104000px;}
.lsf{letter-spacing:1.140000px;}
.ls30{letter-spacing:1.165200px;}
.ls2e{letter-spacing:1.200000px;}
.ls75{letter-spacing:1.248000px;}
.ls17{letter-spacing:1.260000px;}
.ls25{letter-spacing:1.320000px;}
.ls1d{letter-spacing:1.380000px;}
.ls58{letter-spacing:1.440000px;}
.ls77{letter-spacing:1.488000px;}
.ls5{letter-spacing:1.500000px;}
.ls14{letter-spacing:1.560000px;}
.ls7a{letter-spacing:1.584000px;}
.ls3e{letter-spacing:1.620000px;}
.ls3{letter-spacing:1.680000px;}
.ls7c{letter-spacing:1.728000px;}
.ls59{letter-spacing:1.740000px;}
.ls7b{letter-spacing:1.776000px;}
.ls66{letter-spacing:1.800000px;}
.ls70{letter-spacing:1.860000px;}
.ls44{letter-spacing:1.872000px;}
.ls2f{letter-spacing:1.920000px;}
.ls47{letter-spacing:1.968000px;}
.ls56{letter-spacing:1.980000px;}
.ls13{letter-spacing:2.040000px;}
.ls80{letter-spacing:2.064000px;}
.ls57{letter-spacing:2.100000px;}
.ls73{letter-spacing:2.112000px;}
.ls3b{letter-spacing:2.160000px;}
.ls43{letter-spacing:2.208000px;}
.ls9{letter-spacing:2.220000px;}
.ls42{letter-spacing:2.256000px;}
.ls32{letter-spacing:2.280000px;}
.ls46{letter-spacing:2.304000px;}
.ls5e{letter-spacing:2.340000px;}
.ls23{letter-spacing:2.400000px;}
.ls41{letter-spacing:2.448000px;}
.lsd{letter-spacing:2.460000px;}
.ls1b{letter-spacing:2.496000px;}
.ls26{letter-spacing:2.520000px;}
.ls5c{letter-spacing:2.580000px;}
.ls8{letter-spacing:2.640000px;}
.ls71{letter-spacing:2.688000px;}
.ls39{letter-spacing:2.700000px;}
.ls4e{letter-spacing:2.760000px;}
.ls2b{letter-spacing:2.820000px;}
.ls3d{letter-spacing:2.880000px;}
.ls40{letter-spacing:2.928000px;}
.ls3a{letter-spacing:3.000000px;}
.ls24{letter-spacing:3.120000px;}
.ls5d{letter-spacing:3.180000px;}
.ls74{letter-spacing:3.360000px;}
.ls6{letter-spacing:3.420000px;}
.ls72{letter-spacing:3.456000px;}
.ls11{letter-spacing:3.480000px;}
.ls2d{letter-spacing:3.600000px;}
.ls5f{letter-spacing:3.660000px;}
.ls5a{letter-spacing:3.720000px;}
.ls6a{letter-spacing:3.780000px;}
.ls68{letter-spacing:3.840000px;}
.ls55{letter-spacing:3.960000px;}
.ls64{letter-spacing:4.020000px;}
.ls6d{letter-spacing:4.140000px;}
.ls67{letter-spacing:4.200000px;}
.ls4b{letter-spacing:4.260000px;}
.ls4d{letter-spacing:4.440000px;}
.ls4c{letter-spacing:4.680000px;}
.ls61{letter-spacing:4.860000px;}
.ls5b{letter-spacing:5.040000px;}
.ls65{letter-spacing:5.100000px;}
.ls28{letter-spacing:5.160000px;}
.ls7{letter-spacing:5.280000px;}
.ls4{letter-spacing:5.340000px;}
.ls63{letter-spacing:5.520000px;}
.ls6e{letter-spacing:5.580000px;}
.ls49{letter-spacing:5.760000px;}
.ls79{letter-spacing:6.096000px;}
.ls62{letter-spacing:6.120000px;}
.ls4a{letter-spacing:6.180000px;}
.ls60{letter-spacing:6.480000px;}
.ls1c{letter-spacing:6.864000px;}
.ls6f{letter-spacing:7.560000px;}
.ls38{letter-spacing:7.920000px;}
.ls48{letter-spacing:8.040000px;}
.ls69{letter-spacing:9.060000px;}
.ls6b{letter-spacing:9.180000px;}
.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;}
}
.ws36{word-spacing:-62.116583px;}
.ws5f{word-spacing:-24.240000px;}
.ws4e{word-spacing:-23.160000px;}
.ws4f{word-spacing:-22.800000px;}
.ws1e{word-spacing:-21.840000px;}
.ws37{word-spacing:-21.120000px;}
.ws52{word-spacing:-20.520000px;}
.ws4d{word-spacing:-20.340000px;}
.ws1f{word-spacing:-20.280000px;}
.ws51{word-spacing:-19.440000px;}
.ws5{word-spacing:-19.320000px;}
.ws20{word-spacing:-19.200000px;}
.ws8{word-spacing:-19.140000px;}
.ws30{word-spacing:-18.900000px;}
.ws5e{word-spacing:-18.480000px;}
.ws24{word-spacing:-18.000000px;}
.ws35{word-spacing:-17.940000px;}
.ws21{word-spacing:-17.820000px;}
.ws38{word-spacing:-17.700000px;}
.ws23{word-spacing:-17.160000px;}
.ws6{word-spacing:-17.040000px;}
.ws7{word-spacing:-16.980000px;}
.ws4{word-spacing:-16.680000px;}
.ws22{word-spacing:-16.620000px;}
.ws50{word-spacing:-16.380000px;}
.ws1d{word-spacing:-15.840000px;}
.ws4c{word-spacing:-15.012000px;}
.ws60{word-spacing:-14.928000px;}
.ws61{word-spacing:-13.920000px;}
.ws2{word-spacing:-13.488000px;}
.ws1{word-spacing:-13.344000px;}
.ws3{word-spacing:-12.864000px;}
.ws44{word-spacing:-12.240000px;}
.ws3f{word-spacing:-12.096000px;}
.ws42{word-spacing:-11.808000px;}
.ws0{word-spacing:-11.008800px;}
.ws41{word-spacing:-9.456000px;}
.ws43{word-spacing:-9.216000px;}
.ws46{word-spacing:-9.168000px;}
.ws40{word-spacing:-6.816000px;}
.ws45{word-spacing:-6.528000px;}
.ws6e{word-spacing:-6.096000px;}
.ws63{word-spacing:-5.580000px;}
.ws67{word-spacing:-5.160000px;}
.ws5d{word-spacing:-3.840000px;}
.ws2b{word-spacing:-2.520000px;}
.ws25{word-spacing:-2.496000px;}
.ws1b{word-spacing:-2.220000px;}
.ws39{word-spacing:-1.920000px;}
.ws6f{word-spacing:-1.728000px;}
.wsb{word-spacing:-1.188000px;}
.ws69{word-spacing:-1.020000px;}
.ws1a{word-spacing:-0.660000px;}
.ws55{word-spacing:-0.600000px;}
.ws3e{word-spacing:-0.540000px;}
.ws57{word-spacing:-0.480000px;}
.ws47{word-spacing:-0.384000px;}
.ws1c{word-spacing:-0.300000px;}
.ws18{word-spacing:-0.240000px;}
.ws34{word-spacing:-0.180000px;}
.ws62{word-spacing:-0.060000px;}
.ws6c{word-spacing:-0.048000px;}
.ws9{word-spacing:0.000000px;}
.wsa{word-spacing:0.084000px;}
.ws6d{word-spacing:0.096000px;}
.ws33{word-spacing:0.180000px;}
.ws28{word-spacing:0.240000px;}
.ws4a{word-spacing:0.360000px;}
.ws12{word-spacing:0.480000px;}
.ws11{word-spacing:0.528000px;}
.ws2c{word-spacing:0.600000px;}
.ws48{word-spacing:0.660000px;}
.wsc{word-spacing:0.672000px;}
.ws5a{word-spacing:0.780000px;}
.ws6b{word-spacing:1.008000px;}
.ws59{word-spacing:1.320000px;}
.ws27{word-spacing:1.500000px;}
.ws54{word-spacing:1.560000px;}
.ws10{word-spacing:1.680000px;}
.ws15{word-spacing:2.040000px;}
.ws2d{word-spacing:2.100000px;}
.ws14{word-spacing:2.160000px;}
.ws5c{word-spacing:2.280000px;}
.ws4b{word-spacing:2.400000px;}
.ws65{word-spacing:2.460000px;}
.ws26{word-spacing:2.580000px;}
.ws5b{word-spacing:2.700000px;}
.ws6a{word-spacing:2.760000px;}
.ws58{word-spacing:3.060000px;}
.wsf{word-spacing:3.072000px;}
.wsd{word-spacing:3.120000px;}
.ws53{word-spacing:3.540000px;}
.ws2f{word-spacing:3.552000px;}
.ws70{word-spacing:3.792000px;}
.ws19{word-spacing:3.900000px;}
.ws49{word-spacing:3.960000px;}
.ws68{word-spacing:4.200000px;}
.ws64{word-spacing:4.260000px;}
.ws31{word-spacing:4.368000px;}
.ws29{word-spacing:4.380000px;}
.wse{word-spacing:4.416000px;}
.ws32{word-spacing:4.704000px;}
.ws2e{word-spacing:4.740000px;}
.ws3a{word-spacing:4.920000px;}
.ws17{word-spacing:5.040000px;}
.ws56{word-spacing:5.160000px;}
.ws66{word-spacing:5.340000px;}
.ws16{word-spacing:5.460000px;}
.ws13{word-spacing:5.520000px;}
.ws3c{word-spacing:6.300000px;}
.ws3d{word-spacing:7.140000px;}
.ws3b{word-spacing:7.680000px;}
.ws2a{word-spacing:10.620000px;}
._c{margin-left:-2898.126000px;}
._d{margin-left:-2874.309000px;}
._14{margin-left:-9.060000px;}
._e{margin-left:-7.680000px;}
._0{margin-left:-6.216000px;}
._6{margin-left:-4.740000px;}
._4{margin-left:-3.552000px;}
._1{margin-left:-2.371200px;}
._3{margin-left:-1.180200px;}
._2{width:1.188000px;}
._5{width:2.220000px;}
._b{width:3.312000px;}
._a{width:4.320000px;}
._7{width:5.580000px;}
._8{width:6.780000px;}
._9{width:7.824000px;}
._13{width:10.752000px;}
._11{width:33.955200px;}
._f{width:38.448000px;}
._12{width:55.555200px;}
._10{width:62.496000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.fs2{font-size:39.600000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:62.116583px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y67{bottom:82.571100px;}
.y12e{bottom:83.235600px;}
.y34{bottom:83.493900px;}
.yfb{bottom:90.377850px;}
.ydd{bottom:90.563850px;}
.yfa{bottom:90.705600px;}
.y66{bottom:98.315100px;}
.y12d{bottom:101.235600px;}
.ydc{bottom:108.563850px;}
.yf9{bottom:108.705600px;}
.y12c{bottom:119.235600px;}
.ydb{bottom:126.563850px;}
.yf8{bottom:126.705600px;}
.y12b{bottom:137.235600px;}
.yda{bottom:144.563850px;}
.yf7{bottom:144.705600px;}
.ye{bottom:146.475900px;}
.y12a{bottom:155.235600px;}
.ya4{bottom:161.080050px;}
.yf5{bottom:162.377850px;}
.yd9{bottom:162.563850px;}
.yf6{bottom:162.705600px;}
.yf4{bottom:162.709200px;}
.y129{bottom:173.235600px;}
.ya3{bottom:176.080050px;}
.yd8{bottom:180.563850px;}
.ya2{bottom:191.080050px;}
.y128{bottom:191.235600px;}
.yf3{bottom:197.586750px;}
.yd7{bottom:198.563850px;}
.ya1{bottom:206.080050px;}
.y127{bottom:209.235600px;}
.yf2{bottom:213.192750px;}
.yd6{bottom:216.563850px;}
.ya0{bottom:221.080050px;}
.y31{bottom:226.098750px;}
.y22{bottom:226.233750px;}
.yf1{bottom:227.513850px;}
.yd5{bottom:234.563850px;}
.y9f{bottom:236.080050px;}
.y6a{bottom:239.303100px;}
.y30{bottom:244.098750px;}
.y21{bottom:244.233750px;}
.y126{bottom:245.235600px;}
.yf0{bottom:245.513850px;}
.y9e{bottom:251.080050px;}
.yd4{bottom:252.563850px;}
.y2f{bottom:262.098750px;}
.y20{bottom:262.233750px;}
.y9d{bottom:266.080050px;}
.yd3{bottom:270.563850px;}
.y6e{bottom:278.843850px;}
.y2e{bottom:280.098750px;}
.y1f{bottom:280.233750px;}
.y9c{bottom:281.080050px;}
.yef{bottom:281.363850px;}
.yd2{bottom:288.563850px;}
.y9b{bottom:296.080050px;}
.y2d{bottom:298.098750px;}
.y1e{bottom:298.233750px;}
.yee{bottom:299.363850px;}
.y125{bottom:299.370600px;}
.yd1{bottom:306.563850px;}
.y9a{bottom:311.080050px;}
.y71{bottom:311.999100px;}
.y2c{bottom:316.098750px;}
.y1d{bottom:316.233750px;}
.yed{bottom:317.363850px;}
.y124{bottom:317.370600px;}
.yd0{bottom:324.563850px;}
.y99{bottom:326.080050px;}
.y2b{bottom:334.098750px;}
.y1c{bottom:334.233750px;}
.yec{bottom:335.363850px;}
.y123{bottom:335.370600px;}
.y98{bottom:341.080050px;}
.ycf{bottom:342.563850px;}
.y2a{bottom:352.098750px;}
.y1b{bottom:352.233750px;}
.yeb{bottom:353.363850px;}
.y122{bottom:353.370600px;}
.y97{bottom:356.080050px;}
.yce{bottom:360.563850px;}
.y29{bottom:370.098750px;}
.y1a{bottom:370.233750px;}
.y96{bottom:371.080050px;}
.yea{bottom:371.363850px;}
.y121{bottom:371.370600px;}
.y155{bottom:373.938300px;}
.ycd{bottom:378.563850px;}
.y95{bottom:386.080050px;}
.y28{bottom:388.098750px;}
.y19{bottom:388.233750px;}
.y154{bottom:388.938300px;}
.ye9{bottom:389.363850px;}
.y120{bottom:389.370600px;}
.ycc{bottom:396.563850px;}
.y94{bottom:401.080050px;}
.y153{bottom:403.938300px;}
.y27{bottom:406.098750px;}
.y18{bottom:406.233750px;}
.ye8{bottom:407.363850px;}
.y11f{bottom:407.370600px;}
.ycb{bottom:414.563850px;}
.y93{bottom:416.080050px;}
.y152{bottom:418.938300px;}
.y26{bottom:424.098750px;}
.y17{bottom:424.233750px;}
.ye7{bottom:425.363850px;}
.y11e{bottom:425.370600px;}
.y92{bottom:431.080050px;}
.yca{bottom:432.563850px;}
.y151{bottom:433.938300px;}
.y25{bottom:442.098750px;}
.y16{bottom:442.233750px;}
.ye6{bottom:443.363850px;}
.y11d{bottom:443.370600px;}
.y91{bottom:446.080050px;}
.y150{bottom:448.938300px;}
.yc9{bottom:450.563850px;}
.y15{bottom:460.233750px;}
.y90{bottom:461.080050px;}
.ye5{bottom:461.363850px;}
.y11c{bottom:461.370600px;}
.y14f{bottom:463.938300px;}
.yc8{bottom:468.563850px;}
.y8f{bottom:476.080050px;}
.y24{bottom:478.098750px;}
.y14{bottom:478.233750px;}
.y14e{bottom:478.938300px;}
.ye4{bottom:479.363850px;}
.y11b{bottom:479.370600px;}
.yc7{bottom:486.563850px;}
.y8e{bottom:491.080050px;}
.y14d{bottom:493.938300px;}
.y13{bottom:496.233750px;}
.ye3{bottom:497.363850px;}
.y11a{bottom:497.370600px;}
.yc6{bottom:504.563850px;}
.y8d{bottom:506.080050px;}
.y14c{bottom:508.938300px;}
.y12{bottom:514.233750px;}
.ye2{bottom:515.363850px;}
.y119{bottom:515.370600px;}
.y8c{bottom:521.080050px;}
.yc5{bottom:522.563850px;}
.y14b{bottom:523.938300px;}
.y68{bottom:524.183100px;}
.y11{bottom:532.233750px;}
.ye1{bottom:533.363850px;}
.y118{bottom:533.370600px;}
.y8b{bottom:536.080050px;}
.y14a{bottom:538.938300px;}
.yc4{bottom:540.563850px;}
.y69{bottom:549.695100px;}
.y10{bottom:550.233750px;}
.ye0{bottom:551.363850px;}
.y117{bottom:551.370600px;}
.y149{bottom:553.938300px;}
.yc3{bottom:558.563850px;}
.y23{bottom:568.233750px;}
.y148{bottom:568.938300px;}
.ydf{bottom:569.363850px;}
.y116{bottom:569.370600px;}
.y8a{bottom:569.517600px;}
.yc2{bottom:576.563850px;}
.y147{bottom:583.938300px;}
.yf{bottom:586.233750px;}
.yde{bottom:587.363850px;}
.y115{bottom:587.370600px;}
.y89{bottom:587.517600px;}
.yc1{bottom:594.563850px;}
.y146{bottom:598.938300px;}
.y4c{bottom:599.363850px;}
.y65{bottom:605.363850px;}
.y114{bottom:605.370600px;}
.yc0{bottom:612.563850px;}
.y145{bottom:613.938300px;}
.y6d{bottom:616.871850px;}
.y4b{bottom:617.363850px;}
.y64{bottom:623.363850px;}
.y88{bottom:623.367600px;}
.y113{bottom:623.370600px;}
.y144{bottom:628.938300px;}
.ybf{bottom:630.563850px;}
.y4a{bottom:635.363850px;}
.y63{bottom:641.363850px;}
.y87{bottom:641.367600px;}
.y112{bottom:641.370600px;}
.y143{bottom:643.938300px;}
.ybe{bottom:648.563850px;}
.y49{bottom:653.363850px;}
.y142{bottom:658.938300px;}
.y62{bottom:659.363850px;}
.y86{bottom:659.367600px;}
.y111{bottom:659.370600px;}
.ybd{bottom:666.563850px;}
.y70{bottom:670.019100px;}
.y48{bottom:671.363850px;}
.y141{bottom:673.938300px;}
.yd{bottom:677.055900px;}
.y61{bottom:677.363850px;}
.y85{bottom:677.367600px;}
.y110{bottom:677.370600px;}
.ybc{bottom:684.563850px;}
.y140{bottom:688.938300px;}
.y47{bottom:689.363850px;}
.y60{bottom:695.363850px;}
.y84{bottom:695.367600px;}
.y10f{bottom:695.370600px;}
.ybb{bottom:702.563850px;}
.y13f{bottom:703.938300px;}
.y46{bottom:707.363850px;}
.yc{bottom:709.911900px;}
.y5f{bottom:713.363850px;}
.y83{bottom:713.367600px;}
.y10e{bottom:713.370600px;}
.y13e{bottom:718.938300px;}
.yba{bottom:720.563850px;}
.yb{bottom:724.911900px;}
.y45{bottom:725.363850px;}
.y5e{bottom:731.363850px;}
.y82{bottom:731.367600px;}
.y10d{bottom:731.370600px;}
.y13d{bottom:733.938300px;}
.yb9{bottom:738.563850px;}
.ya{bottom:739.911900px;}
.y44{bottom:743.363850px;}
.y13c{bottom:748.938300px;}
.y5d{bottom:749.363850px;}
.y81{bottom:749.367600px;}
.y10c{bottom:749.370600px;}
.y9{bottom:754.911900px;}
.yb8{bottom:756.563850px;}
.y43{bottom:761.363850px;}
.y13b{bottom:763.938300px;}
.y5c{bottom:767.363850px;}
.y80{bottom:767.367600px;}
.y10b{bottom:767.370600px;}
.y8{bottom:769.911900px;}
.yb7{bottom:774.563850px;}
.y13a{bottom:778.938300px;}
.y42{bottom:779.363850px;}
.y5b{bottom:785.363850px;}
.y7f{bottom:785.367600px;}
.y10a{bottom:785.370600px;}
.yb6{bottom:792.563850px;}
.y139{bottom:793.938300px;}
.y41{bottom:797.363850px;}
.y5a{bottom:803.363850px;}
.y7e{bottom:803.367600px;}
.y109{bottom:803.370600px;}
.y138{bottom:808.938300px;}
.yb5{bottom:810.563850px;}
.y40{bottom:815.367600px;}
.y7{bottom:818.751000px;}
.y59{bottom:821.363850px;}
.y7d{bottom:821.367600px;}
.y108{bottom:821.370600px;}
.y137{bottom:823.938300px;}
.yb4{bottom:828.563850px;}
.y3f{bottom:833.367600px;}
.y136{bottom:838.938300px;}
.y58{bottom:839.363850px;}
.y7c{bottom:839.367600px;}
.y107{bottom:839.370600px;}
.yb3{bottom:846.236100px;}
.yb2{bottom:846.563850px;}
.y3e{bottom:851.367600px;}
.y135{bottom:853.938300px;}
.y6{bottom:857.273850px;}
.y57{bottom:857.363850px;}
.y7b{bottom:857.367600px;}
.y106{bottom:857.370600px;}
.yb1{bottom:864.236100px;}
.yb0{bottom:864.563850px;}
.y134{bottom:868.938300px;}
.y3d{bottom:869.367600px;}
.y5{bottom:869.655900px;}
.y56{bottom:875.363850px;}
.y7a{bottom:875.367600px;}
.y105{bottom:875.370600px;}
.yaf{bottom:882.563850px;}
.y133{bottom:883.938300px;}
.y3c{bottom:887.367600px;}
.y4{bottom:890.273850px;}
.y55{bottom:893.363850px;}
.y79{bottom:893.367600px;}
.y104{bottom:893.370600px;}
.y132{bottom:898.938300px;}
.yae{bottom:900.563850px;}
.y3b{bottom:905.367600px;}
.y3{bottom:905.541300px;}
.y54{bottom:911.363850px;}
.y78{bottom:911.367600px;}
.y103{bottom:911.370600px;}
.y131{bottom:913.938300px;}
.yad{bottom:918.563850px;}
.y3a{bottom:923.367600px;}
.y130{bottom:928.938300px;}
.y53{bottom:929.363850px;}
.y77{bottom:929.367600px;}
.y102{bottom:929.370600px;}
.y2{bottom:932.930700px;}
.yab{bottom:936.236100px;}
.yac{bottom:936.563850px;}
.yaa{bottom:936.567600px;}
.y12f{bottom:943.938300px;}
.y52{bottom:947.363850px;}
.y76{bottom:947.367600px;}
.y101{bottom:947.370600px;}
.y6c{bottom:948.095850px;}
.y39{bottom:958.938300px;}
.y1{bottom:959.936700px;}
.y51{bottom:965.363850px;}
.y75{bottom:965.367600px;}
.y100{bottom:965.370600px;}
.ya9{bottom:971.445150px;}
.y38{bottom:973.938300px;}
.y50{bottom:983.363850px;}
.y74{bottom:983.367600px;}
.yff{bottom:983.370600px;}
.ya8{bottom:987.051150px;}
.y37{bottom:988.938300px;}
.y4f{bottom:1001.363850px;}
.y73{bottom:1001.367600px;}
.yfe{bottom:1001.370600px;}
.ya7{bottom:1001.371200px;}
.y36{bottom:1003.938300px;}
.y4e{bottom:1019.363850px;}
.y72{bottom:1019.367600px;}
.yfd{bottom:1019.370600px;}
.ya6{bottom:1019.371200px;}
.y4d{bottom:1037.363850px;}
.y35{bottom:1037.367600px;}
.yfc{bottom:1037.370600px;}
.ya5{bottom:1037.371200px;}
.y6f{bottom:1039.943100px;}
.y33{bottom:1070.769450px;}
.y6b{bottom:1086.066450px;}
.y32{bottom:1086.069450px;}
.h4{height:20.995312px;}
.h9{height:34.945312px;}
.h5{height:34.992188px;}
.h8{height:37.179199px;}
.ha{height:39.366211px;}
.h6{height:43.681641px;}
.h7{height:43.740234px;}
.hb{height:48.699401px;}
.h3{height:51.523955px;}
.h2{height:61.154297px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.x29{left:83.950050px;}
.x27{left:87.320400px;}
.x9{left:96.094500px;}
.x1{left:97.795350px;}
.xd{left:106.295400px;}
.xe{left:110.551200px;}
.x2d{left:116.538300px;}
.x1b{left:120.739350px;}
.x11{left:123.323400px;}
.x2{left:125.427600px;}
.x5{left:131.816400px;}
.x3{left:161.571600px;}
.x19{left:166.679400px;}
.x2a{left:195.649050px;}
.xb{left:211.105350px;}
.x4{left:212.876400px;}
.x28{left:221.795400px;}
.x16{left:258.944850px;}
.x2b{left:289.582050px;}
.x1a{left:300.191400px;}
.x2c{left:306.541650px;}
.x17{left:332.924850px;}
.x12{left:363.983400px;}
.xa{left:455.041500px;}
.xf{left:457.090200px;}
.x13{left:462.623400px;}
.x15{left:478.326000px;}
.x6{left:480.461400px;}
.x1f{left:483.022050px;}
.x1c{left:487.306050px;}
.x10{left:491.110200px;}
.x30{left:508.106400px;}
.x21{left:512.362200px;}
.x8{left:514.466400px;}
.x7{left:549.701400px;}
.x2e{left:579.408300px;}
.x2f{left:596.095350px;}
.x20{left:600.823050px;}
.x1e{left:613.201050px;}
.x1d{left:632.506050px;}
.x14{left:731.312100px;}
.x23{left:737.005500px;}
.x22{left:749.266350px;}
.x18{left:752.571900px;}
.x24{left:768.948600px;}
.x25{left:795.711900px;}
.x26{left:812.210550px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v3{vertical-align:-3.039467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.138133pt;}
.ls1a{letter-spacing:-0.426667pt;}
.ls6c{letter-spacing:-0.266667pt;}
.ls54{letter-spacing:-0.213333pt;}
.ls81{letter-spacing:-0.160000pt;}
.ls37{letter-spacing:-0.106667pt;}
.ls82{letter-spacing:-0.085333pt;}
.ls18{letter-spacing:-0.074667pt;}
.ls33{letter-spacing:-0.053333pt;}
.ls19{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls20{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005333pt;}
.ls2a{letter-spacing:0.024533pt;}
.ls76{letter-spacing:0.042667pt;}
.ls22{letter-spacing:0.053333pt;}
.ls2c{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls36{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.213333pt;}
.ls34{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.266667pt;}
.ls35{letter-spacing:0.298667pt;}
.ls51{letter-spacing:0.305600pt;}
.ls50{letter-spacing:0.306133pt;}
.ls1f{letter-spacing:0.319467pt;}
.lsb{letter-spacing:0.320000pt;}
.ls45{letter-spacing:0.341333pt;}
.ls12{letter-spacing:0.373333pt;}
.ls52{letter-spacing:0.376533pt;}
.ls31{letter-spacing:0.426667pt;}
.ls7f{letter-spacing:0.469333pt;}
.ls10{letter-spacing:0.480000pt;}
.ls7e{letter-spacing:0.512000pt;}
.ls4f{letter-spacing:0.531733pt;}
.ls1e{letter-spacing:0.533333pt;}
.lse{letter-spacing:0.586667pt;}
.ls78{letter-spacing:0.597333pt;}
.ls3c{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.693333pt;}
.ls3f{letter-spacing:0.725333pt;}
.ls21{letter-spacing:0.746667pt;}
.ls53{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.853333pt;}
.ls27{letter-spacing:0.906667pt;}
.ls29{letter-spacing:0.960000pt;}
.ls7d{letter-spacing:0.981333pt;}
.lsf{letter-spacing:1.013333pt;}
.ls30{letter-spacing:1.035733pt;}
.ls2e{letter-spacing:1.066667pt;}
.ls75{letter-spacing:1.109333pt;}
.ls17{letter-spacing:1.120000pt;}
.ls25{letter-spacing:1.173333pt;}
.ls1d{letter-spacing:1.226667pt;}
.ls58{letter-spacing:1.280000pt;}
.ls77{letter-spacing:1.322667pt;}
.ls5{letter-spacing:1.333333pt;}
.ls14{letter-spacing:1.386667pt;}
.ls7a{letter-spacing:1.408000pt;}
.ls3e{letter-spacing:1.440000pt;}
.ls3{letter-spacing:1.493333pt;}
.ls7c{letter-spacing:1.536000pt;}
.ls59{letter-spacing:1.546667pt;}
.ls7b{letter-spacing:1.578667pt;}
.ls66{letter-spacing:1.600000pt;}
.ls70{letter-spacing:1.653333pt;}
.ls44{letter-spacing:1.664000pt;}
.ls2f{letter-spacing:1.706667pt;}
.ls47{letter-spacing:1.749333pt;}
.ls56{letter-spacing:1.760000pt;}
.ls13{letter-spacing:1.813333pt;}
.ls80{letter-spacing:1.834667pt;}
.ls57{letter-spacing:1.866667pt;}
.ls73{letter-spacing:1.877333pt;}
.ls3b{letter-spacing:1.920000pt;}
.ls43{letter-spacing:1.962667pt;}
.ls9{letter-spacing:1.973333pt;}
.ls42{letter-spacing:2.005333pt;}
.ls32{letter-spacing:2.026667pt;}
.ls46{letter-spacing:2.048000pt;}
.ls5e{letter-spacing:2.080000pt;}
.ls23{letter-spacing:2.133333pt;}
.ls41{letter-spacing:2.176000pt;}
.lsd{letter-spacing:2.186667pt;}
.ls1b{letter-spacing:2.218667pt;}
.ls26{letter-spacing:2.240000pt;}
.ls5c{letter-spacing:2.293333pt;}
.ls8{letter-spacing:2.346667pt;}
.ls71{letter-spacing:2.389333pt;}
.ls39{letter-spacing:2.400000pt;}
.ls4e{letter-spacing:2.453333pt;}
.ls2b{letter-spacing:2.506667pt;}
.ls3d{letter-spacing:2.560000pt;}
.ls40{letter-spacing:2.602667pt;}
.ls3a{letter-spacing:2.666667pt;}
.ls24{letter-spacing:2.773333pt;}
.ls5d{letter-spacing:2.826667pt;}
.ls74{letter-spacing:2.986667pt;}
.ls6{letter-spacing:3.040000pt;}
.ls72{letter-spacing:3.072000pt;}
.ls11{letter-spacing:3.093333pt;}
.ls2d{letter-spacing:3.200000pt;}
.ls5f{letter-spacing:3.253333pt;}
.ls5a{letter-spacing:3.306667pt;}
.ls6a{letter-spacing:3.360000pt;}
.ls68{letter-spacing:3.413333pt;}
.ls55{letter-spacing:3.520000pt;}
.ls64{letter-spacing:3.573333pt;}
.ls6d{letter-spacing:3.680000pt;}
.ls67{letter-spacing:3.733333pt;}
.ls4b{letter-spacing:3.786667pt;}
.ls4d{letter-spacing:3.946667pt;}
.ls4c{letter-spacing:4.160000pt;}
.ls61{letter-spacing:4.320000pt;}
.ls5b{letter-spacing:4.480000pt;}
.ls65{letter-spacing:4.533333pt;}
.ls28{letter-spacing:4.586667pt;}
.ls7{letter-spacing:4.693333pt;}
.ls4{letter-spacing:4.746667pt;}
.ls63{letter-spacing:4.906667pt;}
.ls6e{letter-spacing:4.960000pt;}
.ls49{letter-spacing:5.120000pt;}
.ls79{letter-spacing:5.418667pt;}
.ls62{letter-spacing:5.440000pt;}
.ls4a{letter-spacing:5.493333pt;}
.ls60{letter-spacing:5.760000pt;}
.ls1c{letter-spacing:6.101333pt;}
.ls6f{letter-spacing:6.720000pt;}
.ls38{letter-spacing:7.040000pt;}
.ls48{letter-spacing:7.146667pt;}
.ls69{letter-spacing:8.053333pt;}
.ls6b{letter-spacing:8.160000pt;}
.ws36{word-spacing:-55.214741pt;}
.ws5f{word-spacing:-21.546667pt;}
.ws4e{word-spacing:-20.586667pt;}
.ws4f{word-spacing:-20.266667pt;}
.ws1e{word-spacing:-19.413333pt;}
.ws37{word-spacing:-18.773333pt;}
.ws52{word-spacing:-18.240000pt;}
.ws4d{word-spacing:-18.080000pt;}
.ws1f{word-spacing:-18.026667pt;}
.ws51{word-spacing:-17.280000pt;}
.ws5{word-spacing:-17.173333pt;}
.ws20{word-spacing:-17.066667pt;}
.ws8{word-spacing:-17.013333pt;}
.ws30{word-spacing:-16.800000pt;}
.ws5e{word-spacing:-16.426667pt;}
.ws24{word-spacing:-16.000000pt;}
.ws35{word-spacing:-15.946667pt;}
.ws21{word-spacing:-15.840000pt;}
.ws38{word-spacing:-15.733333pt;}
.ws23{word-spacing:-15.253333pt;}
.ws6{word-spacing:-15.146667pt;}
.ws7{word-spacing:-15.093333pt;}
.ws4{word-spacing:-14.826667pt;}
.ws22{word-spacing:-14.773333pt;}
.ws50{word-spacing:-14.560000pt;}
.ws1d{word-spacing:-14.080000pt;}
.ws4c{word-spacing:-13.344000pt;}
.ws60{word-spacing:-13.269333pt;}
.ws61{word-spacing:-12.373333pt;}
.ws2{word-spacing:-11.989333pt;}
.ws1{word-spacing:-11.861333pt;}
.ws3{word-spacing:-11.434667pt;}
.ws44{word-spacing:-10.880000pt;}
.ws3f{word-spacing:-10.752000pt;}
.ws42{word-spacing:-10.496000pt;}
.ws0{word-spacing:-9.785600pt;}
.ws41{word-spacing:-8.405333pt;}
.ws43{word-spacing:-8.192000pt;}
.ws46{word-spacing:-8.149333pt;}
.ws40{word-spacing:-6.058667pt;}
.ws45{word-spacing:-5.802667pt;}
.ws6e{word-spacing:-5.418667pt;}
.ws63{word-spacing:-4.960000pt;}
.ws67{word-spacing:-4.586667pt;}
.ws5d{word-spacing:-3.413333pt;}
.ws2b{word-spacing:-2.240000pt;}
.ws25{word-spacing:-2.218667pt;}
.ws1b{word-spacing:-1.973333pt;}
.ws39{word-spacing:-1.706667pt;}
.ws6f{word-spacing:-1.536000pt;}
.wsb{word-spacing:-1.056000pt;}
.ws69{word-spacing:-0.906667pt;}
.ws1a{word-spacing:-0.586667pt;}
.ws55{word-spacing:-0.533333pt;}
.ws3e{word-spacing:-0.480000pt;}
.ws57{word-spacing:-0.426667pt;}
.ws47{word-spacing:-0.341333pt;}
.ws1c{word-spacing:-0.266667pt;}
.ws18{word-spacing:-0.213333pt;}
.ws34{word-spacing:-0.160000pt;}
.ws62{word-spacing:-0.053333pt;}
.ws6c{word-spacing:-0.042667pt;}
.ws9{word-spacing:0.000000pt;}
.wsa{word-spacing:0.074667pt;}
.ws6d{word-spacing:0.085333pt;}
.ws33{word-spacing:0.160000pt;}
.ws28{word-spacing:0.213333pt;}
.ws4a{word-spacing:0.320000pt;}
.ws12{word-spacing:0.426667pt;}
.ws11{word-spacing:0.469333pt;}
.ws2c{word-spacing:0.533333pt;}
.ws48{word-spacing:0.586667pt;}
.wsc{word-spacing:0.597333pt;}
.ws5a{word-spacing:0.693333pt;}
.ws6b{word-spacing:0.896000pt;}
.ws59{word-spacing:1.173333pt;}
.ws27{word-spacing:1.333333pt;}
.ws54{word-spacing:1.386667pt;}
.ws10{word-spacing:1.493333pt;}
.ws15{word-spacing:1.813333pt;}
.ws2d{word-spacing:1.866667pt;}
.ws14{word-spacing:1.920000pt;}
.ws5c{word-spacing:2.026667pt;}
.ws4b{word-spacing:2.133333pt;}
.ws65{word-spacing:2.186667pt;}
.ws26{word-spacing:2.293333pt;}
.ws5b{word-spacing:2.400000pt;}
.ws6a{word-spacing:2.453333pt;}
.ws58{word-spacing:2.720000pt;}
.wsf{word-spacing:2.730667pt;}
.wsd{word-spacing:2.773333pt;}
.ws53{word-spacing:3.146667pt;}
.ws2f{word-spacing:3.157333pt;}
.ws70{word-spacing:3.370667pt;}
.ws19{word-spacing:3.466667pt;}
.ws49{word-spacing:3.520000pt;}
.ws68{word-spacing:3.733333pt;}
.ws64{word-spacing:3.786667pt;}
.ws31{word-spacing:3.882667pt;}
.ws29{word-spacing:3.893333pt;}
.wse{word-spacing:3.925333pt;}
.ws32{word-spacing:4.181333pt;}
.ws2e{word-spacing:4.213333pt;}
.ws3a{word-spacing:4.373333pt;}
.ws17{word-spacing:4.480000pt;}
.ws56{word-spacing:4.586667pt;}
.ws66{word-spacing:4.746667pt;}
.ws16{word-spacing:4.853333pt;}
.ws13{word-spacing:4.906667pt;}
.ws3c{word-spacing:5.600000pt;}
.ws3d{word-spacing:6.346667pt;}
.ws3b{word-spacing:6.826667pt;}
.ws2a{word-spacing:9.440000pt;}
._c{margin-left:-2576.112000pt;}
._d{margin-left:-2554.941333pt;}
._14{margin-left:-8.053333pt;}
._e{margin-left:-6.826667pt;}
._0{margin-left:-5.525333pt;}
._6{margin-left:-4.213333pt;}
._4{margin-left:-3.157333pt;}
._1{margin-left:-2.107733pt;}
._3{margin-left:-1.049067pt;}
._2{width:1.056000pt;}
._5{width:1.973333pt;}
._b{width:2.944000pt;}
._a{width:3.840000pt;}
._7{width:4.960000pt;}
._8{width:6.026667pt;}
._9{width:6.954667pt;}
._13{width:9.557333pt;}
._11{width:30.182400pt;}
._f{width:34.176000pt;}
._12{width:49.382400pt;}
._10{width:55.552000pt;}
.fs3{font-size:25.600000pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:35.200000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:55.214741pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:73.396533pt;}
.y12e{bottom:73.987200pt;}
.y34{bottom:74.216800pt;}
.yfb{bottom:80.335867pt;}
.ydd{bottom:80.501200pt;}
.yfa{bottom:80.627200pt;}
.y66{bottom:87.391200pt;}
.y12d{bottom:89.987200pt;}
.ydc{bottom:96.501200pt;}
.yf9{bottom:96.627200pt;}
.y12c{bottom:105.987200pt;}
.ydb{bottom:112.501200pt;}
.yf8{bottom:112.627200pt;}
.y12b{bottom:121.987200pt;}
.yda{bottom:128.501200pt;}
.yf7{bottom:128.627200pt;}
.ye{bottom:130.200800pt;}
.y12a{bottom:137.987200pt;}
.ya4{bottom:143.182267pt;}
.yf5{bottom:144.335867pt;}
.yd9{bottom:144.501200pt;}
.yf6{bottom:144.627200pt;}
.yf4{bottom:144.630400pt;}
.y129{bottom:153.987200pt;}
.ya3{bottom:156.515600pt;}
.yd8{bottom:160.501200pt;}
.ya2{bottom:169.848933pt;}
.y128{bottom:169.987200pt;}
.yf3{bottom:175.632667pt;}
.yd7{bottom:176.501200pt;}
.ya1{bottom:183.182267pt;}
.y127{bottom:185.987200pt;}
.yf2{bottom:189.504667pt;}
.yd6{bottom:192.501200pt;}
.ya0{bottom:196.515600pt;}
.y31{bottom:200.976667pt;}
.y22{bottom:201.096667pt;}
.yf1{bottom:202.234533pt;}
.yd5{bottom:208.501200pt;}
.y9f{bottom:209.848933pt;}
.y6a{bottom:212.713867pt;}
.y30{bottom:216.976667pt;}
.y21{bottom:217.096667pt;}
.y126{bottom:217.987200pt;}
.yf0{bottom:218.234533pt;}
.y9e{bottom:223.182267pt;}
.yd4{bottom:224.501200pt;}
.y2f{bottom:232.976667pt;}
.y20{bottom:233.096667pt;}
.y9d{bottom:236.515600pt;}
.yd3{bottom:240.501200pt;}
.y6e{bottom:247.861200pt;}
.y2e{bottom:248.976667pt;}
.y1f{bottom:249.096667pt;}
.y9c{bottom:249.848933pt;}
.yef{bottom:250.101200pt;}
.yd2{bottom:256.501200pt;}
.y9b{bottom:263.182267pt;}
.y2d{bottom:264.976667pt;}
.y1e{bottom:265.096667pt;}
.yee{bottom:266.101200pt;}
.y125{bottom:266.107200pt;}
.yd1{bottom:272.501200pt;}
.y9a{bottom:276.515600pt;}
.y71{bottom:277.332533pt;}
.y2c{bottom:280.976667pt;}
.y1d{bottom:281.096667pt;}
.yed{bottom:282.101200pt;}
.y124{bottom:282.107200pt;}
.yd0{bottom:288.501200pt;}
.y99{bottom:289.848933pt;}
.y2b{bottom:296.976667pt;}
.y1c{bottom:297.096667pt;}
.yec{bottom:298.101200pt;}
.y123{bottom:298.107200pt;}
.y98{bottom:303.182267pt;}
.ycf{bottom:304.501200pt;}
.y2a{bottom:312.976667pt;}
.y1b{bottom:313.096667pt;}
.yeb{bottom:314.101200pt;}
.y122{bottom:314.107200pt;}
.y97{bottom:316.515600pt;}
.yce{bottom:320.501200pt;}
.y29{bottom:328.976667pt;}
.y1a{bottom:329.096667pt;}
.y96{bottom:329.848933pt;}
.yea{bottom:330.101200pt;}
.y121{bottom:330.107200pt;}
.y155{bottom:332.389600pt;}
.ycd{bottom:336.501200pt;}
.y95{bottom:343.182267pt;}
.y28{bottom:344.976667pt;}
.y19{bottom:345.096667pt;}
.y154{bottom:345.722933pt;}
.ye9{bottom:346.101200pt;}
.y120{bottom:346.107200pt;}
.ycc{bottom:352.501200pt;}
.y94{bottom:356.515600pt;}
.y153{bottom:359.056267pt;}
.y27{bottom:360.976667pt;}
.y18{bottom:361.096667pt;}
.ye8{bottom:362.101200pt;}
.y11f{bottom:362.107200pt;}
.ycb{bottom:368.501200pt;}
.y93{bottom:369.848933pt;}
.y152{bottom:372.389600pt;}
.y26{bottom:376.976667pt;}
.y17{bottom:377.096667pt;}
.ye7{bottom:378.101200pt;}
.y11e{bottom:378.107200pt;}
.y92{bottom:383.182267pt;}
.yca{bottom:384.501200pt;}
.y151{bottom:385.722933pt;}
.y25{bottom:392.976667pt;}
.y16{bottom:393.096667pt;}
.ye6{bottom:394.101200pt;}
.y11d{bottom:394.107200pt;}
.y91{bottom:396.515600pt;}
.y150{bottom:399.056267pt;}
.yc9{bottom:400.501200pt;}
.y15{bottom:409.096667pt;}
.y90{bottom:409.848933pt;}
.ye5{bottom:410.101200pt;}
.y11c{bottom:410.107200pt;}
.y14f{bottom:412.389600pt;}
.yc8{bottom:416.501200pt;}
.y8f{bottom:423.182267pt;}
.y24{bottom:424.976667pt;}
.y14{bottom:425.096667pt;}
.y14e{bottom:425.722933pt;}
.ye4{bottom:426.101200pt;}
.y11b{bottom:426.107200pt;}
.yc7{bottom:432.501200pt;}
.y8e{bottom:436.515600pt;}
.y14d{bottom:439.056267pt;}
.y13{bottom:441.096667pt;}
.ye3{bottom:442.101200pt;}
.y11a{bottom:442.107200pt;}
.yc6{bottom:448.501200pt;}
.y8d{bottom:449.848933pt;}
.y14c{bottom:452.389600pt;}
.y12{bottom:457.096667pt;}
.ye2{bottom:458.101200pt;}
.y119{bottom:458.107200pt;}
.y8c{bottom:463.182267pt;}
.yc5{bottom:464.501200pt;}
.y14b{bottom:465.722933pt;}
.y68{bottom:465.940533pt;}
.y11{bottom:473.096667pt;}
.ye1{bottom:474.101200pt;}
.y118{bottom:474.107200pt;}
.y8b{bottom:476.515600pt;}
.y14a{bottom:479.056267pt;}
.yc4{bottom:480.501200pt;}
.y69{bottom:488.617867pt;}
.y10{bottom:489.096667pt;}
.ye0{bottom:490.101200pt;}
.y117{bottom:490.107200pt;}
.y149{bottom:492.389600pt;}
.yc3{bottom:496.501200pt;}
.y23{bottom:505.096667pt;}
.y148{bottom:505.722933pt;}
.ydf{bottom:506.101200pt;}
.y116{bottom:506.107200pt;}
.y8a{bottom:506.237867pt;}
.yc2{bottom:512.501200pt;}
.y147{bottom:519.056267pt;}
.yf{bottom:521.096667pt;}
.yde{bottom:522.101200pt;}
.y115{bottom:522.107200pt;}
.y89{bottom:522.237867pt;}
.yc1{bottom:528.501200pt;}
.y146{bottom:532.389600pt;}
.y4c{bottom:532.767867pt;}
.y65{bottom:538.101200pt;}
.y114{bottom:538.107200pt;}
.yc0{bottom:544.501200pt;}
.y145{bottom:545.722933pt;}
.y6d{bottom:548.330533pt;}
.y4b{bottom:548.767867pt;}
.y64{bottom:554.101200pt;}
.y88{bottom:554.104533pt;}
.y113{bottom:554.107200pt;}
.y144{bottom:559.056267pt;}
.ybf{bottom:560.501200pt;}
.y4a{bottom:564.767867pt;}
.y63{bottom:570.101200pt;}
.y87{bottom:570.104533pt;}
.y112{bottom:570.107200pt;}
.y143{bottom:572.389600pt;}
.ybe{bottom:576.501200pt;}
.y49{bottom:580.767867pt;}
.y142{bottom:585.722933pt;}
.y62{bottom:586.101200pt;}
.y86{bottom:586.104533pt;}
.y111{bottom:586.107200pt;}
.ybd{bottom:592.501200pt;}
.y70{bottom:595.572533pt;}
.y48{bottom:596.767867pt;}
.y141{bottom:599.056267pt;}
.yd{bottom:601.827467pt;}
.y61{bottom:602.101200pt;}
.y85{bottom:602.104533pt;}
.y110{bottom:602.107200pt;}
.ybc{bottom:608.501200pt;}
.y140{bottom:612.389600pt;}
.y47{bottom:612.767867pt;}
.y60{bottom:618.101200pt;}
.y84{bottom:618.104533pt;}
.y10f{bottom:618.107200pt;}
.ybb{bottom:624.501200pt;}
.y13f{bottom:625.722933pt;}
.y46{bottom:628.767867pt;}
.yc{bottom:631.032800pt;}
.y5f{bottom:634.101200pt;}
.y83{bottom:634.104533pt;}
.y10e{bottom:634.107200pt;}
.y13e{bottom:639.056267pt;}
.yba{bottom:640.501200pt;}
.yb{bottom:644.366133pt;}
.y45{bottom:644.767867pt;}
.y5e{bottom:650.101200pt;}
.y82{bottom:650.104533pt;}
.y10d{bottom:650.107200pt;}
.y13d{bottom:652.389600pt;}
.yb9{bottom:656.501200pt;}
.ya{bottom:657.699467pt;}
.y44{bottom:660.767867pt;}
.y13c{bottom:665.722933pt;}
.y5d{bottom:666.101200pt;}
.y81{bottom:666.104533pt;}
.y10c{bottom:666.107200pt;}
.y9{bottom:671.032800pt;}
.yb8{bottom:672.501200pt;}
.y43{bottom:676.767867pt;}
.y13b{bottom:679.056267pt;}
.y5c{bottom:682.101200pt;}
.y80{bottom:682.104533pt;}
.y10b{bottom:682.107200pt;}
.y8{bottom:684.366133pt;}
.yb7{bottom:688.501200pt;}
.y13a{bottom:692.389600pt;}
.y42{bottom:692.767867pt;}
.y5b{bottom:698.101200pt;}
.y7f{bottom:698.104533pt;}
.y10a{bottom:698.107200pt;}
.yb6{bottom:704.501200pt;}
.y139{bottom:705.722933pt;}
.y41{bottom:708.767867pt;}
.y5a{bottom:714.101200pt;}
.y7e{bottom:714.104533pt;}
.y109{bottom:714.107200pt;}
.y138{bottom:719.056267pt;}
.yb5{bottom:720.501200pt;}
.y40{bottom:724.771200pt;}
.y7{bottom:727.778667pt;}
.y59{bottom:730.101200pt;}
.y7d{bottom:730.104533pt;}
.y108{bottom:730.107200pt;}
.y137{bottom:732.389600pt;}
.yb4{bottom:736.501200pt;}
.y3f{bottom:740.771200pt;}
.y136{bottom:745.722933pt;}
.y58{bottom:746.101200pt;}
.y7c{bottom:746.104533pt;}
.y107{bottom:746.107200pt;}
.yb3{bottom:752.209867pt;}
.yb2{bottom:752.501200pt;}
.y3e{bottom:756.771200pt;}
.y135{bottom:759.056267pt;}
.y6{bottom:762.021200pt;}
.y57{bottom:762.101200pt;}
.y7b{bottom:762.104533pt;}
.y106{bottom:762.107200pt;}
.yb1{bottom:768.209867pt;}
.yb0{bottom:768.501200pt;}
.y134{bottom:772.389600pt;}
.y3d{bottom:772.771200pt;}
.y5{bottom:773.027467pt;}
.y56{bottom:778.101200pt;}
.y7a{bottom:778.104533pt;}
.y105{bottom:778.107200pt;}
.yaf{bottom:784.501200pt;}
.y133{bottom:785.722933pt;}
.y3c{bottom:788.771200pt;}
.y4{bottom:791.354533pt;}
.y55{bottom:794.101200pt;}
.y79{bottom:794.104533pt;}
.y104{bottom:794.107200pt;}
.y132{bottom:799.056267pt;}
.yae{bottom:800.501200pt;}
.y3b{bottom:804.771200pt;}
.y3{bottom:804.925600pt;}
.y54{bottom:810.101200pt;}
.y78{bottom:810.104533pt;}
.y103{bottom:810.107200pt;}
.y131{bottom:812.389600pt;}
.yad{bottom:816.501200pt;}
.y3a{bottom:820.771200pt;}
.y130{bottom:825.722933pt;}
.y53{bottom:826.101200pt;}
.y77{bottom:826.104533pt;}
.y102{bottom:826.107200pt;}
.y2{bottom:829.271733pt;}
.yab{bottom:832.209867pt;}
.yac{bottom:832.501200pt;}
.yaa{bottom:832.504533pt;}
.y12f{bottom:839.056267pt;}
.y52{bottom:842.101200pt;}
.y76{bottom:842.104533pt;}
.y101{bottom:842.107200pt;}
.y6c{bottom:842.751867pt;}
.y39{bottom:852.389600pt;}
.y1{bottom:853.277067pt;}
.y51{bottom:858.101200pt;}
.y75{bottom:858.104533pt;}
.y100{bottom:858.107200pt;}
.ya9{bottom:863.506800pt;}
.y38{bottom:865.722933pt;}
.y50{bottom:874.101200pt;}
.y74{bottom:874.104533pt;}
.yff{bottom:874.107200pt;}
.ya8{bottom:877.378800pt;}
.y37{bottom:879.056267pt;}
.y4f{bottom:890.101200pt;}
.y73{bottom:890.104533pt;}
.yfe{bottom:890.107200pt;}
.ya7{bottom:890.107733pt;}
.y36{bottom:892.389600pt;}
.y4e{bottom:906.101200pt;}
.y72{bottom:906.104533pt;}
.yfd{bottom:906.107200pt;}
.ya6{bottom:906.107733pt;}
.y4d{bottom:922.101200pt;}
.y35{bottom:922.104533pt;}
.yfc{bottom:922.107200pt;}
.ya5{bottom:922.107733pt;}
.y6f{bottom:924.393867pt;}
.y33{bottom:951.795067pt;}
.y6b{bottom:965.392400pt;}
.y32{bottom:965.395067pt;}
.h4{height:18.662500pt;}
.h9{height:31.062500pt;}
.h5{height:31.104167pt;}
.h8{height:33.048177pt;}
.ha{height:34.992188pt;}
.h6{height:38.828125pt;}
.h7{height:38.880208pt;}
.hb{height:43.288357pt;}
.h3{height:45.799071pt;}
.h2{height:54.359375pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.x29{left:74.622267pt;}
.x27{left:77.618133pt;}
.x9{left:85.417333pt;}
.x1{left:86.929200pt;}
.xd{left:94.484800pt;}
.xe{left:98.267733pt;}
.x2d{left:103.589600pt;}
.x1b{left:107.323867pt;}
.x11{left:109.620800pt;}
.x2{left:111.491200pt;}
.x5{left:117.170133pt;}
.x3{left:143.619200pt;}
.x19{left:148.159467pt;}
.x2a{left:173.910267pt;}
.xb{left:187.649200pt;}
.x4{left:189.223467pt;}
.x28{left:197.151467pt;}
.x16{left:230.173200pt;}
.x2b{left:257.406267pt;}
.x1a{left:266.836800pt;}
.x2c{left:272.481467pt;}
.x17{left:295.933200pt;}
.x12{left:323.540800pt;}
.xa{left:404.481333pt;}
.xf{left:406.302400pt;}
.x13{left:411.220800pt;}
.x15{left:425.178667pt;}
.x6{left:427.076800pt;}
.x1f{left:429.352933pt;}
.x1c{left:433.160933pt;}
.x10{left:436.542400pt;}
.x30{left:451.650133pt;}
.x21{left:455.433067pt;}
.x8{left:457.303467pt;}
.x7{left:488.623467pt;}
.x2e{left:515.029600pt;}
.x2f{left:529.862533pt;}
.x20{left:534.064933pt;}
.x1e{left:545.067600pt;}
.x1d{left:562.227600pt;}
.x14{left:650.055200pt;}
.x23{left:655.116000pt;}
.x22{left:666.014533pt;}
.x18{left:668.952800pt;}
.x24{left:683.509867pt;}
.x25{left:707.299467pt;}
.x26{left:721.964933pt;}
}




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