
    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_9108177930c78ed09699fd81.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_21502fb27ed67cd4d33a5cbb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.713000;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_f4ce4ffb9553f30f7b94586d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.897000;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_9532bce805890e04cac8cf45.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927000;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_d13a307c615d4aa4878a2381.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.892000;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_2ec0feda9c13b6b734eab9a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.953000;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_091484710bf2e999324c6482.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d703064cdb87bf2f7dda62ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727000;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_10238479682ccd8e59010ff5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.664000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6a838b3a929e1a266b014b1e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.703000;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_94f3ea5defd43c7ae1c74a2f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.429000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a92940b04fe02767ac8259f5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.727000;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:ffd;src:url('chunks/assets/font_07cbf5bb00f52b197dc3875d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740000;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:ffe;src:url('chunks/assets/font_8a251457573c29c67115ddfa.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.950000;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;}
.m7{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);}
.m2{transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-ms-transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-webkit-transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);}
.m1{transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064703,0.241482,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);}
.m3{transform:matrix(0.258422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258422,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v1{vertical-align:-17.823540px;}
.v5{vertical-align:-16.631210px;}
.v3{vertical-align:-8.964840px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.824800px;}
.v4{vertical-align:21.707820px;}
.ls1{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.011719px;}
.ls2{letter-spacing:0.019432px;}
.ls3{letter-spacing:0.023050px;}
.ls1d{letter-spacing:0.025390px;}
.ls8{letter-spacing:0.032705px;}
.ls5{letter-spacing:0.035045px;}
.lsb{letter-spacing:0.037385px;}
.ls1c{letter-spacing:0.047152px;}
.ls16{letter-spacing:0.062542px;}
.ls13{letter-spacing:0.066315px;}
.ls19{letter-spacing:2.998993px;}
.ls1f{letter-spacing:3.003807px;}
.ls20{letter-spacing:3.006055px;}
.ls0{letter-spacing:3.011364px;}
.ls15{letter-spacing:3.552403px;}
.ls11{letter-spacing:3.583917px;}
.ls1a{letter-spacing:8.420382px;}
.ls14{letter-spacing:9.532006px;}
.ls12{letter-spacing:9.687686px;}
.ls1b{letter-spacing:9.693378px;}
.ls18{letter-spacing:14.545972px;}
.ls7{letter-spacing:16.137791px;}
.ls17{letter-spacing:16.245611px;}
.ls4{letter-spacing:16.922572px;}
.ls9{letter-spacing:17.637594px;}
.lsc{letter-spacing:18.014934px;}
.ls6{letter-spacing:20.065734px;}
.ls1e{letter-spacing:20.972572px;}
.lsa{letter-spacing:22.454171px;}
.lsd{letter-spacing:28.978734px;}
.lsf{letter-spacing:32.437427px;}
.lse{letter-spacing:32.541534px;}
.ls10{letter-spacing:255.759777px;}
.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;}
}
.ws59{word-spacing:-20.921550px;}
.wse{word-spacing:-13.449570px;}
.ws4e{word-spacing:-9.971921px;}
.ws7d{word-spacing:-9.720020px;}
.ws92{word-spacing:-9.656619px;}
.ws81{word-spacing:-9.641590px;}
.ws4f{word-spacing:-7.977460px;}
.wsa3{word-spacing:-3.051628px;}
.ws6{word-spacing:-0.065753px;}
.ws77{word-spacing:-0.059776px;}
.ws16{word-spacing:-0.047821px;}
.ws55{word-spacing:0.000000px;}
.ws82{word-spacing:1.792860px;}
.ws7e{word-spacing:1.810510px;}
.ws9b{word-spacing:9.904677px;}
.ws41{word-spacing:9.958595px;}
.ws8d{word-spacing:9.959014px;}
.wsaf{word-spacing:12.112734px;}
.wsac{word-spacing:12.136166px;}
.wsad{word-spacing:12.145044px;}
.wsae{word-spacing:12.187860px;}
.wsb3{word-spacing:12.382533px;}
.wsb2{word-spacing:12.382969px;}
.wsb0{word-spacing:12.810294px;}
.wsb1{word-spacing:12.853046px;}
.ws42{word-spacing:13.844802px;}
.ws43{word-spacing:14.270227px;}
.ws61{word-spacing:14.332035px;}
.ws5f{word-spacing:14.371845px;}
.wsa1{word-spacing:14.426660px;}
.ws5d{word-spacing:14.427317px;}
.ws60{word-spacing:14.433872px;}
.ws84{word-spacing:14.480099px;}
.ws86{word-spacing:14.494027px;}
.ws85{word-spacing:14.494953px;}
.ws27{word-spacing:14.641674px;}
.ws69{word-spacing:14.702346px;}
.wsbb{word-spacing:14.779931px;}
.ws68{word-spacing:14.804146px;}
.ws11{word-spacing:15.384102px;}
.ws33{word-spacing:15.520319px;}
.ws40{word-spacing:15.614047px;}
.ws32{word-spacing:15.674122px;}
.ws13{word-spacing:15.981478px;}
.ws39{word-spacing:16.167452px;}
.ws75{word-spacing:16.262376px;}
.ws45{word-spacing:16.478884px;}
.ws7f{word-spacing:16.642881px;}
.wsba{word-spacing:16.650245px;}
.wsbe{word-spacing:16.671765px;}
.ws83{word-spacing:16.681568px;}
.wsb9{word-spacing:16.682654px;}
.ws9f{word-spacing:16.698544px;}
.ws5b{word-spacing:16.815243px;}
.ws58{word-spacing:16.816840px;}
.ws2e{word-spacing:16.910525px;}
.ws5a{word-spacing:16.918472px;}
.ws4a{word-spacing:16.924513px;}
.ws76{word-spacing:17.186331px;}
.ws49{word-spacing:17.355736px;}
.wsb8{word-spacing:17.384675px;}
.ws19{word-spacing:17.409355px;}
.ws3a{word-spacing:17.463571px;}
.ws36{word-spacing:17.464169px;}
.ws89{word-spacing:17.482612px;}
.ws24{word-spacing:17.536685px;}
.ws1b{word-spacing:17.626281px;}
.ws8a{word-spacing:17.660279px;}
.wsbd{word-spacing:17.944559px;}
.wsbc{word-spacing:17.944846px;}
.ws74{word-spacing:18.166715px;}
.ws1c{word-spacing:18.219258px;}
.wsa8{word-spacing:18.265703px;}
.ws79{word-spacing:18.705773px;}
.ws5c{word-spacing:18.968966px;}
.ws9c{word-spacing:19.024199px;}
.ws3d{word-spacing:19.085170px;}
.ws9d{word-spacing:19.124264px;}
.wsa7{word-spacing:19.191811px;}
.ws12{word-spacing:19.312668px;}
.ws4b{word-spacing:19.340772px;}
.ws3f{word-spacing:19.353803px;}
.ws93{word-spacing:19.447532px;}
.ws3e{word-spacing:19.623332px;}
.ws25{word-spacing:19.886705px;}
.ws1f{word-spacing:20.056169px;}
.ws14{word-spacing:20.069664px;}
.ws44{word-spacing:20.473524px;}
.wsab{word-spacing:20.488468px;}
.ws6f{word-spacing:20.534555px;}
.ws66{word-spacing:20.750226px;}
.ws67{word-spacing:20.750672px;}
.ws5e{word-spacing:20.811497px;}
.ws2c{word-spacing:20.851248px;}
.ws2d{word-spacing:20.852682px;}
.wsd{word-spacing:20.853639px;}
.ws7b{word-spacing:20.858002px;}
.ws8{word-spacing:20.865056px;}
.ws4c{word-spacing:20.865235px;}
.ws87{word-spacing:20.866670px;}
.ws23{word-spacing:20.866849px;}
.ws97{word-spacing:20.878981px;}
.ws7{word-spacing:20.906002px;}
.ws2f{word-spacing:20.906361px;}
.ws50{word-spacing:20.907138px;}
.ws98{word-spacing:20.914610px;}
.ws9{word-spacing:20.919153px;}
.wsc{word-spacing:20.920468px;}
.wsa{word-spacing:20.959561px;}
.ws38{word-spacing:20.973190px;}
.wsb{word-spacing:20.974804px;}
.wsf{word-spacing:21.161930px;}
.ws6b{word-spacing:21.337464px;}
.wsa9{word-spacing:21.344936px;}
.ws57{word-spacing:21.351870px;}
.ws54{word-spacing:21.353006px;}
.ws63{word-spacing:21.452772px;}
.ws29{word-spacing:21.561743px;}
.ws2a{word-spacing:21.668383px;}
.ws94{word-spacing:22.100802px;}
.ws47{word-spacing:22.809385px;}
.ws3{word-spacing:22.860748px;}
.ws5{word-spacing:22.892375px;}
.ws2{word-spacing:22.915849px;}
.wsa5{word-spacing:22.966117px;}
.ws4{word-spacing:22.968846px;}
.ws1a{word-spacing:23.025295px;}
.ws46{word-spacing:23.133071px;}
.ws37{word-spacing:23.511631px;}
.ws96{word-spacing:23.513066px;}
.ws62{word-spacing:23.553235px;}
.ws51{word-spacing:23.660413px;}
.ws7a{word-spacing:23.728139px;}
.ws8c{word-spacing:23.882062px;}
.ws3c{word-spacing:23.997967px;}
.ws6e{word-spacing:24.146749px;}
.ws48{word-spacing:24.212682px;}
.ws1e{word-spacing:24.268154px;}
.ws28{word-spacing:24.268513px;}
.ws99{word-spacing:24.640558px;}
.ws90{word-spacing:24.747198px;}
.ws73{word-spacing:24.861489px;}
.ws1d{word-spacing:24.970580px;}
.ws8f{word-spacing:25.286734px;}
.ws56{word-spacing:25.394510px;}
.ws6d{word-spacing:25.712518px;}
.ws6c{word-spacing:25.718859px;}
.ws78{word-spacing:25.982226px;}
.ws65{word-spacing:26.042421px;}
.wsa6{word-spacing:26.050789px;}
.ws52{word-spacing:26.096159px;}
.ws22{word-spacing:26.096338px;}
.ws64{word-spacing:26.103392px;}
.ws30{word-spacing:26.744548px;}
.ws35{word-spacing:26.791531px;}
.wsaa{word-spacing:26.860812px;}
.ws20{word-spacing:26.913952px;}
.ws53{word-spacing:26.967452px;}
.ws9a{word-spacing:27.237579px;}
.ws31{word-spacing:27.656189px;}
.ws8e{word-spacing:27.778431px;}
.ws34{word-spacing:28.790316px;}
.ws72{word-spacing:29.282092px;}
.ws71{word-spacing:29.289863px;}
.ws70{word-spacing:29.337441px;}
.ws21{word-spacing:29.343721px;}
.ws6a{word-spacing:29.654555px;}
.ws3b{word-spacing:29.721385px;}
.wsb4{word-spacing:29.818859px;}
.ws2b{word-spacing:30.153265px;}
.ws10{word-spacing:31.756103px;}
.ws88{word-spacing:32.677479px;}
.wsa2{word-spacing:32.731337px;}
.ws15{word-spacing:32.731397px;}
.wsb7{word-spacing:32.816545px;}
.wsb5{word-spacing:32.828244px;}
.wsb6{word-spacing:32.871443px;}
.ws95{word-spacing:32.908871px;}
.ws17{word-spacing:33.015392px;}
.ws26{word-spacing:35.332363px;}
.ws18{word-spacing:35.871541px;}
.ws8b{word-spacing:36.324284px;}
.wsa4{word-spacing:44.396652px;}
.ws1{word-spacing:49.992277px;}
.ws0{word-spacing:50.044784px;}
.ws4d{word-spacing:58.152631px;}
.ws80{word-spacing:237.654310px;}
.ws7c{word-spacing:241.835330px;}
.ws91{word-spacing:282.392285px;}
.ws9e{word-spacing:516.579528px;}
.wsa0{word-spacing:524.528290px;}
._1{margin-left:-11.500336px;}
._4{margin-left:-8.508677px;}
._3{margin-left:-5.228741px;}
._6{margin-left:-3.303198px;}
._0{margin-left:-2.069380px;}
._a{margin-left:-1.066360px;}
._8{width:1.023260px;}
._9{width:2.424265px;}
._2{width:3.665293px;}
._7{width:4.761425px;}
._5{width:5.761565px;}
._c{width:9.654747px;}
._11{width:10.782769px;}
._1a{width:13.972833px;}
._13{width:15.778968px;}
._12{width:17.917744px;}
._e{width:19.703626px;}
._14{width:22.592386px;}
._16{width:23.679521px;}
._10{width:24.747241px;}
._b{width:28.080740px;}
._d{width:29.910361px;}
._1b{width:32.878117px;}
._18{width:54.234780px;}
._19{width:55.236352px;}
._f{width:82.956237px;}
._15{width:255.750103px;}
._17{width:311.310762px;}
.fc3{color:transparent;}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs15{font-size:26.538000px;}
.fs18{font-size:26.719920px;}
.fsf{font-size:26.763240px;}
.fs13{font-size:27.745200px;}
.fsd{font-size:27.971100px;}
.fs8{font-size:28.695900px;}
.fs9{font-size:31.455960px;}
.fs16{font-size:32.233800px;}
.fs10{font-size:32.507940px;}
.fs14{font-size:33.172860px;}
.fse{font-size:33.454680px;}
.fs11{font-size:33.517800px;}
.fsb{font-size:33.802560px;}
.fs19{font-size:34.332000px;}
.fs12{font-size:34.681980px;}
.fs17{font-size:34.736040px;}
.fs1a{font-size:34.860180px;}
.fsc{font-size:34.964100px;}
.fs7{font-size:35.870220px;}
.fsa{font-size:41.843100px;}
.fs5{font-size:43.893480px;}
.fs6{font-size:45.441769px;}
.fs4{font-size:47.820660px;}
.fs3{font-size:53.798280px;}
.fs2{font-size:59.775840px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.ya6{bottom:102.761850px;}
.y2b{bottom:102.762000px;}
.yfb{bottom:108.053746px;}
.ya5{bottom:120.703200px;}
.y2a{bottom:120.703350px;}
.yfa{bottom:121.499836px;}
.yf9{bottom:134.945926px;}
.ya4{bottom:138.631200px;}
.y59{bottom:138.631350px;}
.y29{bottom:143.288850px;}
.yf8{bottom:148.392016px;}
.ya3{bottom:156.559200px;}
.y58{bottom:161.190000px;}
.y28{bottom:161.216850px;}
.yf7{bottom:161.851591px;}
.ya2{bottom:174.500550px;}
.yf5{bottom:175.297095px;}
.yf6{bottom:175.297681px;}
.y57{bottom:179.118000px;}
.yf4{bottom:188.743185px;}
.ya1{bottom:199.516050px;}
.yf3{bottom:202.202760px;}
.y27{bottom:208.750500px;}
.yf2{bottom:215.648850px;}
.y56{bottom:226.368000px;}
.yf1{bottom:237.572850px;}
.y4e{bottom:249.994500px;}
.ya0{bottom:252.031350px;}
.y23{bottom:258.816000px;}
.y47{bottom:260.649000px;}
.y48{bottom:268.204500px;}
.y9f{bottom:269.959350px;}
.yf0{bottom:275.265000px;}
.y55{bottom:288.388500px;}
.yef{bottom:293.193000px;}
.y49{bottom:294.927000px;}
.y9e{bottom:295.515000px;}
.yee{bottom:311.134350px;}
.y24{bottom:312.408000px;}
.y8a{bottom:315.369000px;}
.y4a{bottom:320.946000px;}
.y89{bottom:321.285000px;}
.y54{bottom:322.519500px;}
.y4f{bottom:324.621000px;}
.y8b{bottom:325.374000px;}
.y93{bottom:326.682000px;}
.yed{bottom:329.062350px;}
.y25{bottom:335.191500px;}
.y9d{bottom:335.944500px;}
.y26{bottom:343.214745px;}
.y8c{bottom:344.259300px;}
.y94{bottom:344.609400px;}
.y9c{bottom:345.816000px;}
.yec{bottom:346.990350px;}
.y4b{bottom:347.832000px;}
.y9b{bottom:355.636500px;}
.y53{bottom:360.408000px;}
.y8d{bottom:361.996200px;}
.y95{bottom:362.486400px;}
.yeb{bottom:364.931700px;}
.y52{bottom:365.734500px;}
.y9a{bottom:368.512500px;}
.y92{bottom:372.436500px;}
.y4c{bottom:373.497000px;}
.y22{bottom:375.799275px;}
.y51{bottom:377.616000px;}
.y8e{bottom:379.314750px;}
.y96{bottom:379.974900px;}
.yea{bottom:382.860150px;}
.y50{bottom:389.497500px;}
.y21{bottom:393.740625px;}
.y8f{bottom:397.191750px;}
.y97{bottom:397.960800px;}
.y4d{bottom:398.572500px;}
.ye9{bottom:400.788150px;}
.y20{bottom:411.668625px;}
.y90{bottom:415.347600px;}
.y98{bottom:415.633200px;}
.ye8{bottom:423.305700px;}
.y46{bottom:425.560800px;}
.y1f{bottom:429.596625px;}
.y91{bottom:431.828250px;}
.y99{bottom:432.963450px;}
.y45{bottom:443.488800px;}
.y1e{bottom:447.538575px;}
.y88{bottom:457.933500px;}
.y44{bottom:461.416800px;}
.y1d{bottom:465.466575px;}
.ye7{bottom:470.029500px;}
.y7d{bottom:477.819000px;}
.y43{bottom:479.358150px;}
.y1c{bottom:483.408525px;}
.y74{bottom:484.173000px;}
.ye6{bottom:487.970850px;}
.y75{bottom:489.261000px;}
.y42{bottom:497.286150px;}
.y87{bottom:498.468000px;}
.y1b{bottom:501.336975px;}
.y76{bottom:506.166000px;}
.y7e{bottom:506.538000px;}
.y86{bottom:508.423500px;}
.yd2{bottom:513.526500px;}
.y41{bottom:515.214150px;}
.y85{bottom:518.311500px;}
.y77{bottom:523.702500px;}
.y1a{bottom:523.921875px;}
.y7f{bottom:524.496000px;}
.y80{bottom:529.731000px;}
.yc7{bottom:532.519800px;}
.ydd{bottom:532.610400px;}
.y40{bottom:533.155500px;}
.y7c{bottom:533.529000px;}
.y78{bottom:541.122000px;}
.yc9{bottom:541.913400px;}
.yc5{bottom:541.913550px;}
.y82{bottom:541.993500px;}
.ydb{bottom:542.148300px;}
.y3f{bottom:551.083500px;}
.y19{bottom:551.610375px;}
.y83{bottom:559.581000px;}
.y79{bottom:561.154500px;}
.ycb{bottom:567.746250px;}
.yc3{bottom:567.746400px;}
.ydf{bottom:568.378350px;}
.yd9{bottom:568.378500px;}
.y3e{bottom:569.011500px;}
.y18{bottom:569.552325px;}
.y7a{bottom:576.610500px;}
.y84{bottom:577.180500px;}
.y3d{bottom:586.952850px;}
.y17{bottom:587.480325px;}
.ye5{bottom:588.207000px;}
.y7b{bottom:593.794500px;}
.y81{bottom:594.429000px;}
.yd1{bottom:599.326500px;}
.ye4{bottom:599.754000px;}
.ycc{bottom:603.095850px;}
.ye0{bottom:604.271700px;}
.y3c{bottom:604.880850px;}
.y16{bottom:605.408325px;}
.yd0{bottom:610.698000px;}
.ye3{bottom:611.299500px;}
.ybd{bottom:621.327000px;}
.ycf{bottom:622.068000px;}
.yd3{bottom:622.783500px;}
.y3b{bottom:622.808850px;}
.y73{bottom:622.809375px;}
.ye2{bottom:622.845000px;}
.y15{bottom:623.349675px;}
.yce{bottom:633.439500px;}
.ybe{bottom:633.996000px;}
.ye1{bottom:634.392000px;}
.yd4{bottom:635.646000px;}
.yca{bottom:638.383350px;}
.yc2{bottom:638.383500px;}
.yde{bottom:640.102350px;}
.yd8{bottom:640.102500px;}
.y72{bottom:640.750725px;}
.y3a{bottom:640.750800px;}
.y14{bottom:641.277675px;}
.ycd{bottom:644.811000px;}
.ybf{bottom:646.726500px;}
.yd5{bottom:648.573000px;}
.y71{bottom:658.678725px;}
.y39{bottom:658.678800px;}
.y13{bottom:659.205675px;}
.yc0{bottom:659.457000px;}
.yd6{bottom:661.500000px;}
.yc8{bottom:664.154100px;}
.yc4{bottom:664.154250px;}
.yda{bottom:666.269250px;}
.yc1{bottom:672.126000px;}
.yc6{bottom:673.609500px;}
.yd7{bottom:674.364000px;}
.ydc{bottom:675.870300px;}
.y70{bottom:676.620075px;}
.y38{bottom:676.620150px;}
.y12{bottom:677.147025px;}
.y6f{bottom:694.548075px;}
.y37{bottom:694.548150px;}
.y11{bottom:695.075475px;}
.y6e{bottom:712.476075px;}
.y36{bottom:712.476150px;}
.y10{bottom:713.003475px;}
.ybc{bottom:717.822150px;}
.y6d{bottom:730.417425px;}
.y35{bottom:730.417500px;}
.yf{bottom:730.944825px;}
.ybb{bottom:735.763500px;}
.y6c{bottom:748.345425px;}
.y34{bottom:748.345500px;}
.ye{bottom:748.872825px;}
.yba{bottom:753.691500px;}
.y6b{bottom:766.273875px;}
.y33{bottom:766.273950px;}
.yd{bottom:766.814175px;}
.yb9{bottom:771.632850px;}
.y6a{bottom:784.215225px;}
.y32{bottom:784.215300px;}
.yc{bottom:789.399675px;}
.yb8{bottom:789.561300px;}
.y69{bottom:802.143225px;}
.y31{bottom:802.143300px;}
.yb7{bottom:807.489300px;}
.yb{bottom:817.088175px;}
.y68{bottom:820.071225px;}
.y30{bottom:820.071300px;}
.yb6{bottom:825.295350px;}
.ya{bottom:832.032510px;}
.y67{bottom:838.012575px;}
.y2f{bottom:838.012650px;}
.yb5{bottom:843.223800px;}
.y9{bottom:846.976845px;}
.y66{bottom:855.940575px;}
.y2e{bottom:855.940650px;}
.yb4{bottom:861.165150px;}
.y8{bottom:861.921180px;}
.y65{bottom:873.868575px;}
.y2d{bottom:873.868650px;}
.y7{bottom:876.865515px;}
.yb3{bottom:879.093150px;}
.y6{bottom:891.809850px;}
.y2c{bottom:891.810000px;}
.y64{bottom:909.738000px;}
.y63{bottom:927.666000px;}
.yb2{bottom:931.486500px;}
.y5{bottom:944.459850px;}
.y62{bottom:945.607350px;}
.yb1{bottom:956.298000px;}
.y4{bottom:962.955000px;}
.y61{bottom:963.535350px;}
.yb0{bottom:970.920000px;}
.ya7{bottom:978.375000px;}
.y60{bottom:981.476700px;}
.y3{bottom:981.666300px;}
.ya8{bottom:984.339000px;}
.y5f{bottom:999.404700px;}
.ya9{bottom:1003.722000px;}
.y5e{bottom:1017.332700px;}
.yaa{bottom:1023.129000px;}
.y2{bottom:1028.740500px;}
.yaf{bottom:1031.787000px;}
.y5d{bottom:1035.274650px;}
.yab{bottom:1042.512000px;}
.y5c{bottom:1053.202650px;}
.yac{bottom:1061.895000px;}
.y1{bottom:1070.590500px;}
.y5b{bottom:1071.130650px;}
.yad{bottom:1081.302000px;}
.y5a{bottom:1089.072000px;}
.yae{bottom:1100.685000px;}
.hd{height:22.899939px;}
.h19{height:23.756311px;}
.h14{height:23.958352px;}
.h18{height:24.450498px;}
.h13{height:24.658265px;}
.h16{height:24.702619px;}
.h11{height:24.912487px;}
.h1b{height:25.302684px;}
.h17{height:25.560619px;}
.h1a{height:25.600461px;}
.h1c{height:25.691953px;}
.h10{height:25.728487px;}
.h12{height:25.768542px;}
.hb{height:26.436352px;}
.hc{height:26.437612px;}
.h8{height:31.954453px;}
.h15{height:32.900614px;}
.h9{height:33.081608px;}
.h1d{height:33.116239px;}
.h1e{height:33.118583px;}
.h7{height:37.174611px;}
.h6{height:37.604998px;}
.ha{height:40.826899px;}
.h5{height:41.125778px;}
.h4{height:41.451559px;}
.hf{height:42.141967px;}
.he{height:44.831880px;}
.h3{height:45.238339px;}
.h2{height:45.561777px;}
.h1{height:98.701718px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x10{left:73.440776px;}
.xf{left:88.385126px;}
.x3{left:97.078500px;}
.x15{left:120.557850px;}
.x25{left:127.262100px;}
.x24{left:128.681850px;}
.x2c{left:130.010113px;}
.x8{left:133.272531px;}
.x23{left:135.155850px;}
.x2{left:138.037350px;}
.x16{left:139.374000px;}
.x13{left:145.028250px;}
.x14{left:147.095550px;}
.x29{left:164.928000px;}
.x2d{left:166.578000px;}
.x4{left:168.115187px;}
.x2a{left:180.225000px;}
.x12{left:194.089991px;}
.x11{left:203.432126px;}
.x9{left:221.899614px;}
.x1{left:224.721000px;}
.x26{left:242.280000px;}
.x2b{left:243.793500px;}
.xd{left:294.354218px;}
.x5{left:345.181586px;}
.xe{left:364.325126px;}
.x27{left:373.422000px;}
.x28{left:392.914500px;}
.x17{left:467.964000px;}
.x21{left:472.513500px;}
.x3e{left:480.169155px;}
.x22{left:482.908335px;}
.x38{left:489.562500px;}
.x19{left:503.362500px;}
.x1a{left:509.190000px;}
.xa{left:510.827013px;}
.x1b{left:513.505500px;}
.x3a{left:515.395350px;}
.x31{left:517.872000px;}
.x30{left:520.302000px;}
.x2f{left:522.706500px;}
.x40{left:532.021500px;}
.x18{left:538.038000px;}
.x51{left:539.903676px;}
.x52{left:545.074152px;}
.x20{left:550.629000px;}
.x3b{left:553.031250px;}
.x6{left:557.131985px;}
.x1d{left:564.657000px;}
.x33{left:566.266500px;}
.x34{left:568.059000px;}
.x35{left:569.788500px;}
.x36{left:571.581000px;}
.x1f{left:581.043000px;}
.x3c{left:585.908805px;}
.x39{left:588.319350px;}
.x50{left:596.092200px;}
.x2e{left:603.052500px;}
.x3d{left:611.740905px;}
.x37{left:614.089500px;}
.x3f{left:617.920500px;}
.x1e{left:630.054000px;}
.x1c{left:634.768500px;}
.xb{left:645.084035px;}
.x32{left:655.045500px;}
.x4d{left:668.175090px;}
.x47{left:677.713050px;}
.x48{left:703.942500px;}
.x4f{left:716.701500px;}
.xc{left:736.101218px;}
.x4a{left:739.773240px;}
.x49{left:742.158000px;}
.x41{left:753.777000px;}
.x42{left:755.598000px;}
.x43{left:757.417500px;}
.x44{left:759.174000px;}
.x45{left:760.993500px;}
.x4b{left:775.541190px;}
.x7{left:778.923531px;}
.x4e{left:800.140500px;}
.x4c{left:801.771240px;}
.x46{left:804.156000px;}
@media print{
.v1{vertical-align:-15.843147pt;}
.v5{vertical-align:-14.783298pt;}
.v3{vertical-align:-7.968747pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.844267pt;}
.v4{vertical-align:19.295840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.010417pt;}
.ls2{letter-spacing:0.017273pt;}
.ls3{letter-spacing:0.020489pt;}
.ls1d{letter-spacing:0.022569pt;}
.ls8{letter-spacing:0.029071pt;}
.ls5{letter-spacing:0.031151pt;}
.lsb{letter-spacing:0.033231pt;}
.ls1c{letter-spacing:0.041913pt;}
.ls16{letter-spacing:0.055593pt;}
.ls13{letter-spacing:0.058947pt;}
.ls19{letter-spacing:2.665772pt;}
.ls1f{letter-spacing:2.670051pt;}
.ls20{letter-spacing:2.672049pt;}
.ls0{letter-spacing:2.676768pt;}
.ls15{letter-spacing:3.157692pt;}
.ls11{letter-spacing:3.185704pt;}
.ls1a{letter-spacing:7.484784pt;}
.ls14{letter-spacing:8.472894pt;}
.ls12{letter-spacing:8.611276pt;}
.ls1b{letter-spacing:8.616336pt;}
.ls18{letter-spacing:12.929753pt;}
.ls7{letter-spacing:14.344703pt;}
.ls17{letter-spacing:14.440543pt;}
.ls4{letter-spacing:15.042287pt;}
.ls9{letter-spacing:15.677861pt;}
.lsc{letter-spacing:16.013275pt;}
.ls6{letter-spacing:17.836208pt;}
.ls1e{letter-spacing:18.642287pt;}
.lsa{letter-spacing:19.959263pt;}
.lsd{letter-spacing:25.758875pt;}
.lsf{letter-spacing:28.833268pt;}
.lse{letter-spacing:28.925808pt;}
.ls10{letter-spacing:227.342024pt;}
.ws59{word-spacing:-18.596933pt;}
.wse{word-spacing:-11.955173pt;}
.ws4e{word-spacing:-8.863930pt;}
.ws7d{word-spacing:-8.640018pt;}
.ws92{word-spacing:-8.583661pt;}
.ws81{word-spacing:-8.570303pt;}
.ws4f{word-spacing:-7.091076pt;}
.wsa3{word-spacing:-2.712558pt;}
.ws6{word-spacing:-0.058447pt;}
.ws77{word-spacing:-0.053134pt;}
.ws16{word-spacing:-0.042507pt;}
.ws55{word-spacing:0.000000pt;}
.ws82{word-spacing:1.593653pt;}
.ws7e{word-spacing:1.609342pt;}
.ws9b{word-spacing:8.804158pt;}
.ws41{word-spacing:8.852085pt;}
.ws8d{word-spacing:8.852457pt;}
.wsaf{word-spacing:10.766875pt;}
.wsac{word-spacing:10.787703pt;}
.wsad{word-spacing:10.795595pt;}
.wsae{word-spacing:10.833654pt;}
.wsb3{word-spacing:11.006696pt;}
.wsb2{word-spacing:11.007083pt;}
.wsb0{word-spacing:11.386928pt;}
.wsb1{word-spacing:11.424930pt;}
.ws42{word-spacing:12.306491pt;}
.ws43{word-spacing:12.684646pt;}
.ws61{word-spacing:12.739586pt;}
.ws5f{word-spacing:12.774974pt;}
.wsa1{word-spacing:12.823698pt;}
.ws5d{word-spacing:12.824282pt;}
.ws60{word-spacing:12.830109pt;}
.ws84{word-spacing:12.871200pt;}
.ws86{word-spacing:12.883580pt;}
.ws85{word-spacing:12.884402pt;}
.ws27{word-spacing:13.014821pt;}
.ws69{word-spacing:13.068752pt;}
.wsbb{word-spacing:13.137717pt;}
.ws68{word-spacing:13.159241pt;}
.ws11{word-spacing:13.674758pt;}
.ws33{word-spacing:13.795839pt;}
.ws40{word-spacing:13.879153pt;}
.ws32{word-spacing:13.932553pt;}
.ws13{word-spacing:14.205759pt;}
.ws39{word-spacing:14.371068pt;}
.ws75{word-spacing:14.455445pt;}
.ws45{word-spacing:14.647897pt;}
.ws7f{word-spacing:14.793672pt;}
.wsba{word-spacing:14.800218pt;}
.wsbe{word-spacing:14.819346pt;}
.ws83{word-spacing:14.828060pt;}
.wsb9{word-spacing:14.829025pt;}
.ws9f{word-spacing:14.843150pt;}
.ws5b{word-spacing:14.946882pt;}
.ws58{word-spacing:14.948302pt;}
.ws2e{word-spacing:15.031578pt;}
.ws5a{word-spacing:15.038642pt;}
.ws4a{word-spacing:15.044011pt;}
.ws76{word-spacing:15.276739pt;}
.ws49{word-spacing:15.427321pt;}
.wsb8{word-spacing:15.453044pt;}
.ws19{word-spacing:15.474982pt;}
.ws3a{word-spacing:15.523175pt;}
.ws36{word-spacing:15.523706pt;}
.ws89{word-spacing:15.540099pt;}
.ws24{word-spacing:15.588164pt;}
.ws1b{word-spacing:15.667806pt;}
.ws8a{word-spacing:15.698025pt;}
.wsbd{word-spacing:15.950719pt;}
.wsbc{word-spacing:15.950974pt;}
.ws74{word-spacing:16.148191pt;}
.ws1c{word-spacing:16.194896pt;}
.wsa8{word-spacing:16.236181pt;}
.ws79{word-spacing:16.627354pt;}
.ws5c{word-spacing:16.861303pt;}
.ws9c{word-spacing:16.910399pt;}
.ws3d{word-spacing:16.964596pt;}
.ws9d{word-spacing:16.999346pt;}
.wsa7{word-spacing:17.059387pt;}
.ws12{word-spacing:17.166816pt;}
.ws4b{word-spacing:17.191797pt;}
.ws3f{word-spacing:17.203380pt;}
.ws93{word-spacing:17.286695pt;}
.ws3e{word-spacing:17.442962pt;}
.ws25{word-spacing:17.677071pt;}
.ws1f{word-spacing:17.827706pt;}
.ws14{word-spacing:17.839701pt;}
.ws44{word-spacing:18.198688pt;}
.wsab{word-spacing:18.211972pt;}
.ws6f{word-spacing:18.252938pt;}
.ws66{word-spacing:18.444646pt;}
.ws67{word-spacing:18.445042pt;}
.ws5e{word-spacing:18.499108pt;}
.ws2c{word-spacing:18.534442pt;}
.ws2d{word-spacing:18.535718pt;}
.wsd{word-spacing:18.536568pt;}
.ws7b{word-spacing:18.540446pt;}
.ws8{word-spacing:18.546716pt;}
.ws4c{word-spacing:18.546876pt;}
.ws87{word-spacing:18.548151pt;}
.ws23{word-spacing:18.548310pt;}
.ws97{word-spacing:18.559094pt;}
.ws7{word-spacing:18.583113pt;}
.ws2f{word-spacing:18.583432pt;}
.ws50{word-spacing:18.584123pt;}
.ws98{word-spacing:18.590764pt;}
.ws9{word-spacing:18.594803pt;}
.wsc{word-spacing:18.595972pt;}
.wsa{word-spacing:18.630721pt;}
.ws38{word-spacing:18.642836pt;}
.wsb{word-spacing:18.644270pt;}
.wsf{word-spacing:18.810604pt;}
.ws6b{word-spacing:18.966635pt;}
.wsa9{word-spacing:18.973277pt;}
.ws57{word-spacing:18.979440pt;}
.ws54{word-spacing:18.980450pt;}
.ws63{word-spacing:19.069131pt;}
.ws29{word-spacing:19.165994pt;}
.ws2a{word-spacing:19.260785pt;}
.ws94{word-spacing:19.645157pt;}
.ws47{word-spacing:20.275009pt;}
.ws3{word-spacing:20.320665pt;}
.ws5{word-spacing:20.348778pt;}
.ws2{word-spacing:20.369644pt;}
.wsa5{word-spacing:20.414326pt;}
.ws4{word-spacing:20.416752pt;}
.ws1a{word-spacing:20.466929pt;}
.ws46{word-spacing:20.562730pt;}
.ws37{word-spacing:20.899228pt;}
.ws96{word-spacing:20.900503pt;}
.ws62{word-spacing:20.936209pt;}
.ws51{word-spacing:21.031478pt;}
.ws7a{word-spacing:21.091679pt;}
.ws8c{word-spacing:21.228500pt;}
.ws3c{word-spacing:21.331527pt;}
.ws6e{word-spacing:21.463777pt;}
.ws48{word-spacing:21.522384pt;}
.ws1e{word-spacing:21.571693pt;}
.ws28{word-spacing:21.572011pt;}
.ws99{word-spacing:21.902718pt;}
.ws90{word-spacing:21.997509pt;}
.ws73{word-spacing:22.099101pt;}
.ws1d{word-spacing:22.196071pt;}
.ws8f{word-spacing:22.477097pt;}
.ws56{word-spacing:22.572898pt;}
.ws6d{word-spacing:22.855571pt;}
.ws6c{word-spacing:22.861208pt;}
.ws78{word-spacing:23.095312pt;}
.ws65{word-spacing:23.148818pt;}
.wsa6{word-spacing:23.156257pt;}
.ws52{word-spacing:23.196586pt;}
.ws22{word-spacing:23.196745pt;}
.ws64{word-spacing:23.203015pt;}
.ws30{word-spacing:23.772931pt;}
.ws35{word-spacing:23.814695pt;}
.wsaa{word-spacing:23.876277pt;}
.ws20{word-spacing:23.923513pt;}
.ws53{word-spacing:23.971068pt;}
.ws9a{word-spacing:24.211181pt;}
.ws31{word-spacing:24.583279pt;}
.ws8e{word-spacing:24.691938pt;}
.ws34{word-spacing:25.591392pt;}
.ws72{word-spacing:26.028526pt;}
.ws71{word-spacing:26.035434pt;}
.ws70{word-spacing:26.077725pt;}
.ws21{word-spacing:26.083307pt;}
.ws6a{word-spacing:26.359605pt;}
.ws3b{word-spacing:26.419008pt;}
.wsb4{word-spacing:26.505653pt;}
.ws2b{word-spacing:26.802902pt;}
.ws10{word-spacing:28.227647pt;}
.ws88{word-spacing:29.046648pt;}
.wsa2{word-spacing:29.094522pt;}
.ws15{word-spacing:29.094575pt;}
.wsb7{word-spacing:29.170263pt;}
.wsb5{word-spacing:29.180662pt;}
.wsb6{word-spacing:29.219061pt;}
.ws95{word-spacing:29.252330pt;}
.ws17{word-spacing:29.347015pt;}
.ws26{word-spacing:31.406545pt;}
.ws18{word-spacing:31.885815pt;}
.ws8b{word-spacing:32.288252pt;}
.wsa4{word-spacing:39.463691pt;}
.ws1{word-spacing:44.437579pt;}
.ws0{word-spacing:44.484252pt;}
.ws4d{word-spacing:51.691227pt;}
.ws80{word-spacing:211.248275pt;}
.ws7c{word-spacing:214.964738pt;}
.ws91{word-spacing:251.015365pt;}
.ws9e{word-spacing:459.181803pt;}
.wsa0{word-spacing:466.247369pt;}
._1{margin-left:-10.222521pt;}
._4{margin-left:-7.563269pt;}
._3{margin-left:-4.647770pt;}
._6{margin-left:-2.936176pt;}
._0{margin-left:-1.839449pt;}
._a{margin-left:-0.947876pt;}
._8{width:0.909565pt;}
._9{width:2.154902pt;}
._2{width:3.258038pt;}
._7{width:4.232378pt;}
._5{width:5.121392pt;}
._c{width:8.581997pt;}
._11{width:9.584684pt;}
._1a{width:12.420296pt;}
._13{width:14.025749pt;}
._12{width:15.926883pt;}
._e{width:17.514334pt;}
._14{width:20.082121pt;}
._16{width:21.048463pt;}
._10{width:21.997548pt;}
._b{width:24.960658pt;}
._d{width:26.586988pt;}
._1b{width:29.224993pt;}
._18{width:48.208693pt;}
._19{width:49.098980pt;}
._f{width:73.738877pt;}
._15{width:227.333425pt;}
._17{width:276.720677pt;}
.fs15{font-size:23.589333pt;}
.fs18{font-size:23.751040pt;}
.fsf{font-size:23.789547pt;}
.fs13{font-size:24.662400pt;}
.fsd{font-size:24.863200pt;}
.fs8{font-size:25.507467pt;}
.fs9{font-size:27.960853pt;}
.fs16{font-size:28.652267pt;}
.fs10{font-size:28.895947pt;}
.fs14{font-size:29.486987pt;}
.fse{font-size:29.737493pt;}
.fs11{font-size:29.793600pt;}
.fsb{font-size:30.046720pt;}
.fs19{font-size:30.517333pt;}
.fs12{font-size:30.828427pt;}
.fs17{font-size:30.876480pt;}
.fs1a{font-size:30.986827pt;}
.fsc{font-size:31.079200pt;}
.fs7{font-size:31.884640pt;}
.fsa{font-size:37.193867pt;}
.fs5{font-size:39.016427pt;}
.fs6{font-size:40.392684pt;}
.fs4{font-size:42.507253pt;}
.fs3{font-size:47.820693pt;}
.fs2{font-size:53.134080pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:91.343867pt;}
.y2b{bottom:91.344000pt;}
.yfb{bottom:96.047774pt;}
.ya5{bottom:107.291733pt;}
.y2a{bottom:107.291867pt;}
.yfa{bottom:107.999854pt;}
.yf9{bottom:119.951934pt;}
.ya4{bottom:123.227733pt;}
.y59{bottom:123.227867pt;}
.y29{bottom:127.367867pt;}
.yf8{bottom:131.904014pt;}
.ya3{bottom:139.163733pt;}
.y58{bottom:143.280000pt;}
.y28{bottom:143.303867pt;}
.yf7{bottom:143.868081pt;}
.ya2{bottom:155.111600pt;}
.yf5{bottom:155.819640pt;}
.yf6{bottom:155.820161pt;}
.y57{bottom:159.216000pt;}
.yf4{bottom:167.771720pt;}
.ya1{bottom:177.347600pt;}
.yf3{bottom:179.735787pt;}
.y27{bottom:185.556000pt;}
.yf2{bottom:191.687867pt;}
.y56{bottom:201.216000pt;}
.yf1{bottom:211.175867pt;}
.y4e{bottom:222.217333pt;}
.ya0{bottom:224.027867pt;}
.y23{bottom:230.058667pt;}
.y47{bottom:231.688000pt;}
.y48{bottom:238.404000pt;}
.y9f{bottom:239.963867pt;}
.yf0{bottom:244.680000pt;}
.y55{bottom:256.345333pt;}
.yef{bottom:260.616000pt;}
.y49{bottom:262.157333pt;}
.y9e{bottom:262.680000pt;}
.yee{bottom:276.563867pt;}
.y24{bottom:277.696000pt;}
.y8a{bottom:280.328000pt;}
.y4a{bottom:285.285333pt;}
.y89{bottom:285.586667pt;}
.y54{bottom:286.684000pt;}
.y4f{bottom:288.552000pt;}
.y8b{bottom:289.221333pt;}
.y93{bottom:290.384000pt;}
.yed{bottom:292.499867pt;}
.y25{bottom:297.948000pt;}
.y9d{bottom:298.617333pt;}
.y26{bottom:305.079773pt;}
.y8c{bottom:306.008267pt;}
.y94{bottom:306.319467pt;}
.y9c{bottom:307.392000pt;}
.yec{bottom:308.435867pt;}
.y4b{bottom:309.184000pt;}
.y9b{bottom:316.121333pt;}
.y53{bottom:320.362667pt;}
.y8d{bottom:321.774400pt;}
.y95{bottom:322.210133pt;}
.yeb{bottom:324.383733pt;}
.y52{bottom:325.097333pt;}
.y9a{bottom:327.566667pt;}
.y92{bottom:331.054667pt;}
.y4c{bottom:331.997333pt;}
.y22{bottom:334.043800pt;}
.y51{bottom:335.658667pt;}
.y8e{bottom:337.168667pt;}
.y96{bottom:337.755467pt;}
.yea{bottom:340.320133pt;}
.y50{bottom:346.220000pt;}
.y21{bottom:349.991667pt;}
.y8f{bottom:353.059333pt;}
.y97{bottom:353.742933pt;}
.y4d{bottom:354.286667pt;}
.ye9{bottom:356.256133pt;}
.y20{bottom:365.927667pt;}
.y90{bottom:369.197867pt;}
.y98{bottom:369.451733pt;}
.ye8{bottom:376.271733pt;}
.y46{bottom:378.276267pt;}
.y1f{bottom:381.863667pt;}
.y91{bottom:383.847333pt;}
.y99{bottom:384.856400pt;}
.y45{bottom:394.212267pt;}
.y1e{bottom:397.812067pt;}
.y88{bottom:407.052000pt;}
.y44{bottom:410.148267pt;}
.y1d{bottom:413.748067pt;}
.ye7{bottom:417.804000pt;}
.y7d{bottom:424.728000pt;}
.y43{bottom:426.096133pt;}
.y1c{bottom:429.696467pt;}
.y74{bottom:430.376000pt;}
.ye6{bottom:433.751867pt;}
.y75{bottom:434.898667pt;}
.y42{bottom:442.032133pt;}
.y87{bottom:443.082667pt;}
.y1b{bottom:445.632867pt;}
.y76{bottom:449.925333pt;}
.y7e{bottom:450.256000pt;}
.y86{bottom:451.932000pt;}
.yd2{bottom:456.468000pt;}
.y41{bottom:457.968133pt;}
.y85{bottom:460.721333pt;}
.y77{bottom:465.513333pt;}
.y1a{bottom:465.708333pt;}
.y7f{bottom:466.218667pt;}
.y80{bottom:470.872000pt;}
.yc7{bottom:473.350933pt;}
.ydd{bottom:473.431467pt;}
.y40{bottom:473.916000pt;}
.y7c{bottom:474.248000pt;}
.y78{bottom:480.997333pt;}
.yc9{bottom:481.700800pt;}
.yc5{bottom:481.700933pt;}
.y82{bottom:481.772000pt;}
.ydb{bottom:481.909600pt;}
.y3f{bottom:489.852000pt;}
.y19{bottom:490.320333pt;}
.y83{bottom:497.405333pt;}
.y79{bottom:498.804000pt;}
.ycb{bottom:504.663333pt;}
.yc3{bottom:504.663467pt;}
.ydf{bottom:505.225200pt;}
.yd9{bottom:505.225333pt;}
.y3e{bottom:505.788000pt;}
.y18{bottom:506.268733pt;}
.y7a{bottom:512.542667pt;}
.y84{bottom:513.049333pt;}
.y3d{bottom:521.735867pt;}
.y17{bottom:522.204733pt;}
.ye5{bottom:522.850667pt;}
.y7b{bottom:527.817333pt;}
.y81{bottom:528.381333pt;}
.yd1{bottom:532.734667pt;}
.ye4{bottom:533.114667pt;}
.ycc{bottom:536.085200pt;}
.ye0{bottom:537.130400pt;}
.y3c{bottom:537.671867pt;}
.y16{bottom:538.140733pt;}
.yd0{bottom:542.842667pt;}
.ye3{bottom:543.377333pt;}
.ybd{bottom:552.290667pt;}
.ycf{bottom:552.949333pt;}
.yd3{bottom:553.585333pt;}
.y3b{bottom:553.607867pt;}
.y73{bottom:553.608333pt;}
.ye2{bottom:553.640000pt;}
.y15{bottom:554.088600pt;}
.yce{bottom:563.057333pt;}
.ybe{bottom:563.552000pt;}
.ye1{bottom:563.904000pt;}
.yd4{bottom:565.018667pt;}
.yca{bottom:567.451867pt;}
.yc2{bottom:567.452000pt;}
.yde{bottom:568.979867pt;}
.yd8{bottom:568.980000pt;}
.y72{bottom:569.556200pt;}
.y3a{bottom:569.556267pt;}
.y14{bottom:570.024600pt;}
.ycd{bottom:573.165333pt;}
.ybf{bottom:574.868000pt;}
.yd5{bottom:576.509333pt;}
.y71{bottom:585.492200pt;}
.y39{bottom:585.492267pt;}
.y13{bottom:585.960600pt;}
.yc0{bottom:586.184000pt;}
.yd6{bottom:588.000000pt;}
.yc8{bottom:590.359200pt;}
.yc4{bottom:590.359333pt;}
.yda{bottom:592.239333pt;}
.yc1{bottom:597.445333pt;}
.yc6{bottom:598.764000pt;}
.yd7{bottom:599.434667pt;}
.ydc{bottom:600.773600pt;}
.y70{bottom:601.440067pt;}
.y38{bottom:601.440133pt;}
.y12{bottom:601.908467pt;}
.y6f{bottom:617.376067pt;}
.y37{bottom:617.376133pt;}
.y11{bottom:617.844867pt;}
.y6e{bottom:633.312067pt;}
.y36{bottom:633.312133pt;}
.y10{bottom:633.780867pt;}
.ybc{bottom:638.064133pt;}
.y6d{bottom:649.259933pt;}
.y35{bottom:649.260000pt;}
.yf{bottom:649.728733pt;}
.ybb{bottom:654.012000pt;}
.y6c{bottom:665.195933pt;}
.y34{bottom:665.196000pt;}
.ye{bottom:665.664733pt;}
.yba{bottom:669.948000pt;}
.y6b{bottom:681.132333pt;}
.y33{bottom:681.132400pt;}
.yd{bottom:681.612600pt;}
.yb9{bottom:685.895867pt;}
.y6a{bottom:697.080200pt;}
.y32{bottom:697.080267pt;}
.yc{bottom:701.688600pt;}
.yb8{bottom:701.832267pt;}
.y69{bottom:713.016200pt;}
.y31{bottom:713.016267pt;}
.yb7{bottom:717.768267pt;}
.yb{bottom:726.300600pt;}
.y68{bottom:728.952200pt;}
.y30{bottom:728.952267pt;}
.yb6{bottom:733.595867pt;}
.ya{bottom:739.584453pt;}
.y67{bottom:744.900067pt;}
.y2f{bottom:744.900133pt;}
.yb5{bottom:749.532267pt;}
.y9{bottom:752.868307pt;}
.y66{bottom:760.836067pt;}
.y2e{bottom:760.836133pt;}
.yb4{bottom:765.480133pt;}
.y8{bottom:766.152160pt;}
.y65{bottom:776.772067pt;}
.y2d{bottom:776.772133pt;}
.y7{bottom:779.436013pt;}
.yb3{bottom:781.416133pt;}
.y6{bottom:792.719867pt;}
.y2c{bottom:792.720000pt;}
.y64{bottom:808.656000pt;}
.y63{bottom:824.592000pt;}
.yb2{bottom:827.988000pt;}
.y5{bottom:839.519867pt;}
.y62{bottom:840.539867pt;}
.yb1{bottom:850.042667pt;}
.y4{bottom:855.960000pt;}
.y61{bottom:856.475867pt;}
.yb0{bottom:863.040000pt;}
.ya7{bottom:869.666667pt;}
.y60{bottom:872.423733pt;}
.y3{bottom:872.592267pt;}
.ya8{bottom:874.968000pt;}
.y5f{bottom:888.359733pt;}
.ya9{bottom:892.197333pt;}
.y5e{bottom:904.295733pt;}
.yaa{bottom:909.448000pt;}
.y2{bottom:914.436000pt;}
.yaf{bottom:917.144000pt;}
.y5d{bottom:920.244133pt;}
.yab{bottom:926.677333pt;}
.y5c{bottom:936.180133pt;}
.yac{bottom:943.906667pt;}
.y1{bottom:951.636000pt;}
.y5b{bottom:952.116133pt;}
.yad{bottom:961.157333pt;}
.y5a{bottom:968.064000pt;}
.yae{bottom:978.386667pt;}
.hd{height:20.355501pt;}
.h19{height:21.116721pt;}
.h14{height:21.296313pt;}
.h18{height:21.733776pt;}
.h13{height:21.918458pt;}
.h16{height:21.957883pt;}
.h11{height:22.144433pt;}
.h1b{height:22.491275pt;}
.h17{height:22.720550pt;}
.h1a{height:22.755966pt;}
.h1c{height:22.837291pt;}
.h10{height:22.869766pt;}
.h12{height:22.905370pt;}
.hb{height:23.498980pt;}
.hc{height:23.500100pt;}
.h8{height:28.403959pt;}
.h15{height:29.244990pt;}
.h9{height:29.405874pt;}
.h1d{height:29.436657pt;}
.h1e{height:29.438740pt;}
.h7{height:33.044099pt;}
.h6{height:33.426665pt;}
.ha{height:36.290577pt;}
.h5{height:36.556247pt;}
.h4{height:36.845831pt;}
.hf{height:37.459526pt;}
.he{height:39.850560pt;}
.h3{height:40.211857pt;}
.h2{height:40.499357pt;}
.h1{height:87.734861pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x10{left:65.280689pt;}
.xf{left:78.564556pt;}
.x3{left:86.292000pt;}
.x15{left:107.162533pt;}
.x25{left:113.121867pt;}
.x24{left:114.383867pt;}
.x2c{left:115.564545pt;}
.x8{left:118.464472pt;}
.x23{left:120.138533pt;}
.x2{left:122.699867pt;}
.x16{left:123.888000pt;}
.x13{left:128.914000pt;}
.x14{left:130.751600pt;}
.x29{left:146.602667pt;}
.x2d{left:148.069333pt;}
.x4{left:149.435721pt;}
.x2a{left:160.200000pt;}
.x12{left:172.524436pt;}
.x11{left:180.828556pt;}
.x9{left:197.244101pt;}
.x1{left:199.752000pt;}
.x26{left:215.360000pt;}
.x2b{left:216.705333pt;}
.xd{left:261.648193pt;}
.x5{left:306.828076pt;}
.xe{left:323.844556pt;}
.x27{left:331.930667pt;}
.x28{left:349.257333pt;}
.x17{left:415.968000pt;}
.x21{left:420.012000pt;}
.x3e{left:426.817027pt;}
.x22{left:429.251853pt;}
.x38{left:435.166667pt;}
.x19{left:447.433333pt;}
.x1a{left:452.613333pt;}
.xa{left:454.068456pt;}
.x1b{left:456.449333pt;}
.x3a{left:458.129200pt;}
.x31{left:460.330667pt;}
.x30{left:462.490667pt;}
.x2f{left:464.628000pt;}
.x40{left:472.908000pt;}
.x18{left:478.256000pt;}
.x51{left:479.914379pt;}
.x52{left:484.510357pt;}
.x20{left:489.448000pt;}
.x3b{left:491.583333pt;}
.x6{left:495.228431pt;}
.x1d{left:501.917333pt;}
.x33{left:503.348000pt;}
.x34{left:504.941333pt;}
.x35{left:506.478667pt;}
.x36{left:508.072000pt;}
.x1f{left:516.482667pt;}
.x3c{left:520.807827pt;}
.x39{left:522.950533pt;}
.x50{left:529.859733pt;}
.x2e{left:536.046667pt;}
.x3d{left:543.769693pt;}
.x37{left:545.857333pt;}
.x3f{left:549.262667pt;}
.x1e{left:560.048000pt;}
.x1c{left:564.238667pt;}
.xb{left:573.408031pt;}
.x32{left:582.262667pt;}
.x4d{left:593.933413pt;}
.x47{left:602.411600pt;}
.x48{left:625.726667pt;}
.x4f{left:637.068000pt;}
.xc{left:654.312193pt;}
.x4a{left:657.576213pt;}
.x49{left:659.696000pt;}
.x41{left:670.024000pt;}
.x42{left:671.642667pt;}
.x43{left:673.260000pt;}
.x44{left:674.821333pt;}
.x45{left:676.438667pt;}
.x4b{left:689.369947pt;}
.x7{left:692.376472pt;}
.x4e{left:711.236000pt;}
.x4c{left:712.685547pt;}
.x46{left:714.805333pt;}
}




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