
    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_2812af2c51707b6d75296a70.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_2e36ac8164f8fdbb2a922dbc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_b7002e449ac2b8f15e48977f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3e65a8b7dd3b94e860cdd921.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_9e01169dae4604a1a61868c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fbe9cf2442c8ca0d676529c1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6eb02b19f37a56ff81b7be9f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b65d85d0d17b9d5520bf6198.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0282df2eaf19b79d7a11b2ae.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_331dd4746d460ff1b40168db.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5169d96576889e96adbaf1cf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c7ee4599c41cc7fb663bc366.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f24fc2965a23f45feb27e035.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.758789;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_9b9d72ae2280e44aef4f7d43.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.104004;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:fff;src:url('chunks/assets/font_7b69ac86bed476226d22d551.woff2')format("woff");}.fff{font-family:fff;line-height:1.088379;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:ff10;src:url('chunks/assets/font_fad235d58775f25393096a02.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.871094;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:ff11;src:url('chunks/assets/font_6647824e7135376e501b5a63.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.024902;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:ff12;src:url('chunks/assets/font_985ee251f4696ce42dba06cc.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5576ba3eaab33b5ec38ee29f.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_696fecb68f38c5d5ad6ba7d8.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_fe348ef1e02f4f393344aa42.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.744000;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;}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.241073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241073,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,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);}
.v4{vertical-align:-82.080000px;}
.v1{vertical-align:-80.640000px;}
.v9{vertical-align:-79.200000px;}
.v5{vertical-align:-76.320000px;}
.v2{vertical-align:-74.160000px;}
.v6{vertical-align:-61.200000px;}
.v7{vertical-align:-56.880000px;}
.v3{vertical-align:-9.360000px;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-2.508000px;}
.ls3f{letter-spacing:-2.502000px;}
.ls9{letter-spacing:-1.782000px;}
.ls26{letter-spacing:-1.728000px;}
.ls2e{letter-spacing:-1.656000px;}
.lse{letter-spacing:-1.440000px;}
.ls40{letter-spacing:-1.368000px;}
.ls4f{letter-spacing:-1.164000px;}
.ls24{letter-spacing:-1.008000px;}
.ls1a{letter-spacing:-0.864000px;}
.ls39{letter-spacing:-0.828000px;}
.ls23{letter-spacing:-0.792000px;}
.ls43{letter-spacing:-0.750000px;}
.ls42{letter-spacing:-0.738000px;}
.lsb{letter-spacing:-0.732000px;}
.ls2c{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.648000px;}
.ls15{letter-spacing:-0.576000px;}
.ls20{letter-spacing:-0.538800px;}
.ls30{letter-spacing:-0.504000px;}
.ls21{letter-spacing:-0.450600px;}
.lsf{letter-spacing:-0.432000px;}
.ls52{letter-spacing:-0.398400px;}
.ls3e{letter-spacing:-0.369600px;}
.ls22{letter-spacing:-0.360000px;}
.ls61{letter-spacing:-0.301086px;}
.ls10{letter-spacing:-0.288000px;}
.ls4e{letter-spacing:-0.278400px;}
.ls38{letter-spacing:-0.252000px;}
.ls7{letter-spacing:-0.242400px;}
.ls14{letter-spacing:-0.216000px;}
.ls50{letter-spacing:-0.198000px;}
.ls49{letter-spacing:-0.181200px;}
.ls5c{letter-spacing:-0.163145px;}
.ls19{letter-spacing:-0.144000px;}
.ls3a{letter-spacing:-0.108000px;}
.ls27{letter-spacing:-0.072000px;}
.ls60{letter-spacing:-0.044847px;}
.ls8{letter-spacing:-0.037440px;}
.lsa{letter-spacing:-0.028080px;}
.ls16{letter-spacing:-0.018720px;}
.ls5d{letter-spacing:-0.006407px;}
.ls0{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.006407px;}
.ls33{letter-spacing:0.018000px;}
.ls5a{letter-spacing:0.019220px;}
.ls58{letter-spacing:0.025627px;}
.ls59{letter-spacing:0.032034px;}
.ls5b{letter-spacing:0.070474px;}
.ls2{letter-spacing:0.072000px;}
.ls55{letter-spacing:0.112172px;}
.ls3{letter-spacing:0.144000px;}
.ls5f{letter-spacing:0.172982px;}
.ls56{letter-spacing:0.179389px;}
.ls2a{letter-spacing:0.180000px;}
.ls54{letter-spacing:0.205800px;}
.lsd{letter-spacing:0.216000px;}
.ls4d{letter-spacing:0.240600px;}
.ls53{letter-spacing:0.259200px;}
.ls6{letter-spacing:0.288000px;}
.ls4c{letter-spacing:0.316800px;}
.ls51{letter-spacing:0.321600px;}
.ls5e{letter-spacing:0.339557px;}
.ls1{letter-spacing:0.350640px;}
.ls1f{letter-spacing:0.360000px;}
.ls3c{letter-spacing:0.374400px;}
.ls2d{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.792000px;}
.ls2f{letter-spacing:0.864000px;}
.ls25{letter-spacing:1.152000px;}
.ls31{letter-spacing:3.600000px;}
.ls1b{letter-spacing:11.921760px;}
.ls3d{letter-spacing:12.666240px;}
.ls18{letter-spacing:13.386240px;}
.ls36{letter-spacing:13.788000px;}
.ls48{letter-spacing:14.688000px;}
.ls37{letter-spacing:15.228000px;}
.ls29{letter-spacing:17.454240px;}
.ls44{letter-spacing:18.105120px;}
.ls4a{letter-spacing:31.104000px;}
.ls2b{letter-spacing:31.386240px;}
.ls5{letter-spacing:38.708640px;}
.ls4{letter-spacing:42.906240px;}
.ls3b{letter-spacing:43.626240px;}
.ls17{letter-spacing:49.824000px;}
.ls46{letter-spacing:50.544000px;}
.ls4b{letter-spacing:52.028640px;}
.ls1c{letter-spacing:54.144000px;}
.ls28{letter-spacing:54.864000px;}
.ls41{letter-spacing:56.304000px;}
.ls47{letter-spacing:62.784000px;}
.ls45{letter-spacing:64.800000px;}
.ls34{letter-spacing:77.328000px;}
.ls32{letter-spacing:125.430240px;}
.ls35{letter-spacing:130.149120px;}
.ls1e{letter-spacing:718.740000px;}
.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;}
}
.ws30{word-spacing:-72.072000px;}
.ws15{word-spacing:-72.000000px;}
.ws34{word-spacing:-51.120000px;}
.ws1{word-spacing:-21.060000px;}
.ws14{word-spacing:-21.041280px;}
.ws4{word-spacing:-21.031920px;}
.ws2{word-spacing:-21.022560px;}
.ws2d{word-spacing:-20.690400px;}
.ws5{word-spacing:-20.328000px;}
.ws31{word-spacing:-20.322000px;}
.ws32{word-spacing:-20.310000px;}
.ws3{word-spacing:-19.278000px;}
.ws1e{word-spacing:-19.152000px;}
.ws24{word-spacing:-18.864000px;}
.wsf{word-spacing:-18.792000px;}
.ws11{word-spacing:-18.720000px;}
.ws2e{word-spacing:-18.558000px;}
.ws6{word-spacing:-18.552000px;}
.ws21{word-spacing:-18.432000px;}
.ws10{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws9{word-spacing:-18.000000px;}
.ws22{word-spacing:-17.928000px;}
.ws16{word-spacing:-17.856000px;}
.ws12{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.568000px;}
.ws25{word-spacing:-17.496000px;}
.ws13{word-spacing:-17.424000px;}
.wsd{word-spacing:-17.352000px;}
.ws20{word-spacing:-17.280000px;}
.ws1c{word-spacing:-17.208000px;}
.ws3e{word-spacing:-17.203914px;}
.ws17{word-spacing:-17.136000px;}
.ws1d{word-spacing:-16.992000px;}
.ws2f{word-spacing:-16.632000px;}
.wse{word-spacing:-16.560000px;}
.ws23{word-spacing:-16.344000px;}
.ws36{word-spacing:-16.317360px;}
.ws1f{word-spacing:-16.272000px;}
.ws3c{word-spacing:-16.259760px;}
.ws3b{word-spacing:-16.241160px;}
.ws3d{word-spacing:-16.206360px;}
.ws35{word-spacing:-16.000560px;}
.ws39{word-spacing:-15.802560px;}
.ws37{word-spacing:-15.722160px;}
.ws3a{word-spacing:-15.602160px;}
.ws28{word-spacing:-15.228000px;}
.ws2a{word-spacing:-15.030000px;}
.ws26{word-spacing:-15.012000px;}
.ws2b{word-spacing:-14.904000px;}
.ws38{word-spacing:-14.836560px;}
.ws27{word-spacing:-14.760000px;}
.ws2c{word-spacing:-14.508000px;}
.ws29{word-spacing:-14.184000px;}
.ws33{word-spacing:-13.229520px;}
.ws18{word-spacing:-12.420000px;}
.ws1b{word-spacing:-11.700000px;}
.ws1a{word-spacing:-11.609400px;}
.ws19{word-spacing:-11.521200px;}
.ws43{word-spacing:-0.858503px;}
.ws3f{word-spacing:-0.336515px;}
.ws44{word-spacing:-0.192202px;}
.ws42{word-spacing:-0.185795px;}
.ws45{word-spacing:-0.179389px;}
.ws41{word-spacing:-0.166575px;}
.ws40{word-spacing:-0.153762px;}
.ws0{word-spacing:0.000000px;}
.ws46{word-spacing:188.768187px;}
._b{margin-left:-9.152160px;}
._7{margin-left:-8.112000px;}
._a{margin-left:-6.950400px;}
._3{margin-left:-5.561280px;}
._2{margin-left:-4.509360px;}
._1{margin-left:-3.245760px;}
._0{margin-left:-1.769040px;}
._4{width:1.208160px;}
._5{width:2.761440px;}
._6{width:3.890640px;}
._9{width:5.945760px;}
._11{width:74.490240px;}
._10{width:75.556800px;}
._f{width:78.721200px;}
._12{width:87.161040px;}
._13{width:135.793680px;}
._8{width:494.790240px;}
._d{width:539.335440px;}
._c{width:745.380000px;}
._e{width:800.970240px;}
.fcb{color:rgb(0,51,205);}
.fc9{color:rgb(21,54,93);}
.fc7{color:rgb(0,109,192);}
.fc3{color:rgb(0,0,255);}
.fca{color:rgb(82,82,82);}
.fc6{color:rgb(13,13,13);}
.fc4{color:rgb(49,49,49);}
.fc2{color:rgb(0,0,0);}
.fc5{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,128);}
.fc8{color:rgb(0,91,197);}
.fc0{color:rgb(0,51,102);}
.fse{font-size:12.240000px;}
.fsb{font-size:33.120000px;}
.fs4{font-size:36.000000px;}
.fsd{font-size:38.880000px;}
.fsf{font-size:41.760000px;}
.fs8{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs10{font-size:51.120000px;}
.fsc{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs13{font-size:64.067400px;}
.fsa{font-size:66.240000px;}
.fs14{font-size:70.020000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs12{font-size:81.572400px;}
.fs5{font-size:84.240000px;}
.fs11{font-size:93.476400px;}
.fs0{font-size:156.240000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y12a{bottom:0.719970px;}
.y4{bottom:4.140000px;}
.y94{bottom:4.860000px;}
.y174{bottom:41.220000px;}
.y3{bottom:41.400000px;}
.y173{bottom:64.440000px;}
.y172{bottom:79.236000px;}
.y171{bottom:98.496000px;}
.y1b4{bottom:111.996000px;}
.y170{bottom:113.436000px;}
.y25a{bottom:114.138000px;}
.y10a{bottom:122.076000px;}
.y16f{bottom:128.556000px;}
.y1b3{bottom:132.696000px;}
.y3d{bottom:133.416000px;}
.y16e{bottom:143.496000px;}
.y1b2{bottom:153.390000px;}
.y3c{bottom:153.930000px;}
.y16d{bottom:158.430000px;}
.ycf{bottom:161.670000px;}
.y109{bottom:161.850000px;}
.y16c{bottom:173.550000px;}
.y3b{bottom:174.630000px;}
.y108{bottom:176.430000px;}
.y1b1{bottom:178.230000px;}
.yce{bottom:182.370000px;}
.y16b{bottom:188.490000px;}
.y107{bottom:189.930000px;}
.y3a{bottom:195.150000px;}
.y1b0{bottom:196.950000px;}
.y16a{bottom:203.430000px;}
.y169{bottom:218.550000px;}
.y39{bottom:219.270000px;}
.y1af{bottom:220.350000px;}
.y24a{bottom:221.790000px;}
.y106{bottom:222.510000px;}
.ycd{bottom:223.230000px;}
.y168{bottom:233.490000px;}
.y38{bottom:235.650000px;}
.y1ae{bottom:238.890000px;}
.ycc{bottom:243.570000px;}
.y167{bottom:248.430000px;}
.y105{bottom:249.510000px;}
.y1ad{bottom:253.830000px;}
.y37{bottom:257.970000px;}
.y104{bottom:263.370000px;}
.y166{bottom:263.550000px;}
.ycb{bottom:264.090000px;}
.y1ac{bottom:268.950000px;}
.y36{bottom:272.910000px;}
.y165{bottom:278.490000px;}
.y1ab{bottom:283.890000px;}
.y35{bottom:288.030000px;}
.y164{bottom:293.430000px;}
.y103{bottom:294.870000px;}
.y210{bottom:295.950000px;}
.y1aa{bottom:298.830000px;}
.y34{bottom:302.970000px;}
.yca{bottom:303.870000px;}
.y163{bottom:308.550000px;}
.y102{bottom:309.810000px;}
.y1a9{bottom:313.950000px;}
.y249{bottom:314.850000px;}
.y33{bottom:317.910000px;}
.yc9{bottom:320.250000px;}
.y162{bottom:323.490000px;}
.y101{bottom:324.030000px;}
.y1a8{bottom:328.890000px;}
.y248{bottom:329.970000px;}
.y32{bottom:333.030000px;}
.yc8{bottom:335.190000px;}
.y20f{bottom:335.730000px;}
.y100{bottom:337.935000px;}
.y161{bottom:338.475000px;}
.y1a7{bottom:343.875000px;}
.y247{bottom:344.955000px;}
.y31{bottom:348.015000px;}
.y20e{bottom:350.175000px;}
.yc7{bottom:350.355000px;}
.y160{bottom:353.595000px;}
.yff{bottom:358.635000px;}
.y1a6{bottom:358.995000px;}
.y246{bottom:359.895000px;}
.y30{bottom:362.955000px;}
.y20d{bottom:363.855000px;}
.yc6{bottom:365.295000px;}
.y15f{bottom:368.535000px;}
.y1a5{bottom:373.935000px;}
.y245{bottom:375.015000px;}
.y2f{bottom:378.075000px;}
.yc5{bottom:380.235000px;}
.y15e{bottom:383.475000px;}
.y6f{bottom:385.275000px;}
.y1a4{bottom:388.875000px;}
.y244{bottom:389.955000px;}
.y2e{bottom:393.015000px;}
.yc4{bottom:395.355000px;}
.y15d{bottom:398.595000px;}
.yfe{bottom:399.315000px;}
.y1a3{bottom:403.995000px;}
.y20c{bottom:404.355000px;}
.y243{bottom:404.895000px;}
.y6e{bottom:405.075000px;}
.y2d{bottom:407.955000px;}
.yc3{bottom:410.295000px;}
.y15c{bottom:413.535000px;}
.y1a2{bottom:418.935000px;}
.y242{bottom:420.015000px;}
.yfd{bottom:420.555000px;}
.y20b{bottom:422.715000px;}
.y2c{bottom:423.075000px;}
.yc2{bottom:425.235000px;}
.y6d{bottom:425.775000px;}
.y15b{bottom:428.475000px;}
.y1{bottom:432.435000px;}
.y1a1{bottom:433.875000px;}
.y241{bottom:434.955000px;}
.y20a{bottom:437.835000px;}
.y2b{bottom:438.015000px;}
.yc1{bottom:440.355000px;}
.yfc{bottom:441.075000px;}
.y15a{bottom:443.595000px;}
.y6c{bottom:446.295000px;}
.y1a0{bottom:448.995000px;}
.y240{bottom:449.895000px;}
.y209{bottom:452.775000px;}
.y2a{bottom:452.955000px;}
.yc0{bottom:455.295000px;}
.y159{bottom:458.535000px;}
.y19f{bottom:463.935000px;}
.y23f{bottom:465.015000px;}
.y6b{bottom:466.995000px;}
.y208{bottom:467.715000px;}
.y29{bottom:468.075000px;}
.ybf{bottom:470.235000px;}
.y158{bottom:473.475000px;}
.y19e{bottom:478.875000px;}
.y23e{bottom:479.955000px;}
.yfb{bottom:481.755000px;}
.y207{bottom:482.835000px;}
.y28{bottom:483.015000px;}
.y92{bottom:485.175000px;}
.ybe{bottom:485.355000px;}
.y6a{bottom:487.515000px;}
.y157{bottom:488.595000px;}
.y19d{bottom:493.995000px;}
.y23d{bottom:494.895000px;}
.y206{bottom:497.775000px;}
.y27{bottom:497.955000px;}
.ybd{bottom:500.295000px;}
.yfa{bottom:503.175000px;}
.y156{bottom:503.535000px;}
.y19c{bottom:508.935000px;}
.y23c{bottom:510.015000px;}
.y205{bottom:512.715000px;}
.y26{bottom:513.075000px;}
.ybc{bottom:515.235000px;}
.y155{bottom:518.475000px;}
.y91{bottom:522.615000px;}
.y1dd{bottom:523.695000px;}
.yf9{bottom:523.875000px;}
.y23b{bottom:524.955000px;}
.y204{bottom:527.835000px;}
.y25{bottom:528.015000px;}
.y69{bottom:528.195000px;}
.y129{bottom:528.375000px;}
.ybb{bottom:530.355000px;}
.y154{bottom:533.595000px;}
.y19b{bottom:538.995000px;}
.y23a{bottom:539.895000px;}
.y90{bottom:540.255000px;}
.y203{bottom:542.775000px;}
.y24{bottom:542.955000px;}
.yf8{bottom:544.575000px;}
.yba{bottom:545.295000px;}
.y1dc{bottom:548.535000px;}
.y68{bottom:549.255000px;}
.y153{bottom:550.155000px;}
.y19a{bottom:553.935000px;}
.y239{bottom:555.015000px;}
.y8f{bottom:555.195000px;}
.y202{bottom:557.715000px;}
.y23{bottom:558.075000px;}
.y258{bottom:559.920340px;}
.y259{bottom:559.920450px;}
.yb9{bottom:560.235000px;}
.yf7{bottom:565.275000px;}
.y199{bottom:568.875000px;}
.y128{bottom:569.055000px;}
.y67{bottom:569.955000px;}
.y8e{bottom:570.315000px;}
.y152{bottom:570.855000px;}
.y22{bottom:573.015000px;}
.y1db{bottom:573.915000px;}
.yb8{bottom:575.355000px;}
.y201{bottom:576.615000px;}
.y257{bottom:579.637082px;}
.y198{bottom:583.995000px;}
.y238{bottom:584.895000px;}
.yf6{bottom:585.975000px;}
.y8d{bottom:586.875000px;}
.y21{bottom:587.955000px;}
.yb7{bottom:590.295000px;}
.y66{bottom:590.475000px;}
.y1da{bottom:593.175000px;}
.y256{bottom:598.088493px;}
.y197{bottom:598.935000px;}
.y200{bottom:599.655000px;}
.y237{bottom:600.015000px;}
.y20{bottom:603.075000px;}
.yb6{bottom:605.265000px;}
.yf5{bottom:606.705000px;}
.y8c{bottom:607.605000px;}
.y1d9{bottom:608.325000px;}
.y151{bottom:610.665000px;}
.y65{bottom:611.205000px;}
.y196{bottom:613.905000px;}
.y236{bottom:614.985000px;}
.y1f{bottom:618.045000px;}
.yb5{bottom:620.385000px;}
.y1ff{bottom:622.725000px;}
.y1d8{bottom:623.265000px;}
.y150{bottom:625.605000px;}
.yf4{bottom:627.405000px;}
.y195{bottom:629.025000px;}
.y235{bottom:629.925000px;}
.y1e{bottom:632.985000px;}
.y255{bottom:634.895215px;}
.yb4{bottom:635.325000px;}
.y64{bottom:636.945000px;}
.y1d7{bottom:638.205000px;}
.y14f{bottom:640.725000px;}
.y194{bottom:643.965000px;}
.y234{bottom:645.045000px;}
.y1fe{bottom:645.765000px;}
.y1d{bottom:648.105000px;}
.y8b{bottom:648.285000px;}
.yb3{bottom:650.265000px;}
.y127{bottom:651.885000px;}
.yf3{bottom:652.785000px;}
.y1d6{bottom:653.325000px;}
.y254{bottom:653.426710px;}
.y14e{bottom:655.665000px;}
.y193{bottom:658.905000px;}
.y233{bottom:659.985000px;}
.y63{bottom:661.245000px;}
.y1c{bottom:662.865000px;}
.yb2{bottom:665.385000px;}
.y1d5{bottom:668.265000px;}
.y8a{bottom:669.165000px;}
.y14d{bottom:670.605000px;}
.y253{bottom:671.878121px;}
.yf2{bottom:672.585000px;}
.y126{bottom:673.305000px;}
.y192{bottom:674.025000px;}
.y232{bottom:674.925000px;}
.y62{bottom:676.185000px;}
.y1b{bottom:679.245000px;}
.yb1{bottom:680.325000px;}
.y1fd{bottom:682.845000px;}
.y1d4{bottom:683.205000px;}
.y14c{bottom:685.725000px;}
.yf1{bottom:687.705000px;}
.y191{bottom:688.965000px;}
.y89{bottom:689.865000px;}
.y231{bottom:690.045000px;}
.y61{bottom:691.305000px;}
.y125{bottom:694.005000px;}
.yb0{bottom:695.265000px;}
.y1fc{bottom:697.785000px;}
.y1d3{bottom:698.325000px;}
.y14b{bottom:700.665000px;}
.yf0{bottom:702.645000px;}
.y190{bottom:703.905000px;}
.y230{bottom:704.985000px;}
.y60{bottom:706.245000px;}
.y252{bottom:708.684843px;}
.y88{bottom:710.205000px;}
.yaf{bottom:710.385000px;}
.y1fb{bottom:712.905000px;}
.y1d2{bottom:713.265000px;}
.y124{bottom:714.705000px;}
.y14a{bottom:715.605000px;}
.yef{bottom:717.585000px;}
.y1a{bottom:718.485000px;}
.y18f{bottom:719.025000px;}
.y22f{bottom:719.925000px;}
.y5f{bottom:721.185000px;}
.yae{bottom:725.325000px;}
.y1fa{bottom:727.845000px;}
.y1d1{bottom:728.205000px;}
.y87{bottom:730.365000px;}
.y149{bottom:730.725000px;}
.y19{bottom:731.985000px;}
.yee{bottom:732.705000px;}
.y18e{bottom:733.965000px;}
.y22e{bottom:735.045000px;}
.y123{bottom:735.405000px;}
.y5e{bottom:736.305000px;}
.yad{bottom:741.525000px;}
.y1f9{bottom:742.785000px;}
.y1d0{bottom:743.325000px;}
.y148{bottom:745.665000px;}
.yed{bottom:747.645000px;}
.y18d{bottom:748.905000px;}
.y22d{bottom:749.985000px;}
.y86{bottom:751.065000px;}
.y5d{bottom:751.245000px;}
.y1f8{bottom:757.905000px;}
.y1cf{bottom:758.265000px;}
.y122{bottom:759.525000px;}
.y147{bottom:760.605000px;}
.yec{bottom:762.585000px;}
.y18c{bottom:764.025000px;}
.y22c{bottom:764.925000px;}
.y5c{bottom:766.185000px;}
.y18{bottom:772.845000px;}
.y85{bottom:773.025000px;}
.y1ce{bottom:773.205000px;}
.y146{bottom:775.725000px;}
.yeb{bottom:777.705000px;}
.y18b{bottom:778.965000px;}
.y22b{bottom:780.045000px;}
.y5b{bottom:781.305000px;}
.y251{bottom:782.570572px;}
.y121{bottom:784.725000px;}
.y1f7{bottom:787.785000px;}
.y1cd{bottom:788.325000px;}
.y145{bottom:790.665000px;}
.yea{bottom:792.645000px;}
.y17{bottom:793.185000px;}
.y84{bottom:793.725000px;}
.y18a{bottom:793.905000px;}
.yac{bottom:794.625000px;}
.y22a{bottom:794.985000px;}
.y5a{bottom:796.245000px;}
.y250{bottom:801.021983px;}
.y120{bottom:802.905000px;}
.y1cc{bottom:803.265000px;}
.y144{bottom:805.605000px;}
.ye9{bottom:807.585000px;}
.y189{bottom:809.025000px;}
.y229{bottom:809.925000px;}
.y59{bottom:811.185000px;}
.yab{bottom:811.905000px;}
.y16{bottom:813.705000px;}
.y83{bottom:814.425000px;}
.y1f6{bottom:817.845000px;}
.y1cb{bottom:818.205000px;}
.y24f{bottom:819.473394px;}
.y11f{bottom:819.645000px;}
.y143{bottom:820.725000px;}
.ye8{bottom:822.705000px;}
.y188{bottom:823.965000px;}
.y228{bottom:825.045000px;}
.y58{bottom:826.305000px;}
.yaa{bottom:827.025000px;}
.y1f5{bottom:832.785000px;}
.y1ca{bottom:833.325000px;}
.y82{bottom:835.125000px;}
.y142{bottom:835.665000px;}
.ye7{bottom:837.645000px;}
.y187{bottom:839.985000px;}
.y15{bottom:840.165000px;}
.y57{bottom:841.245000px;}
.ya9{bottom:841.965000px;}
.y11e{bottom:842.685000px;}
.y1f4{bottom:847.905000px;}
.y1c9{bottom:848.265000px;}
.y141{bottom:850.605000px;}
.ye6{bottom:852.585000px;}
.y227{bottom:854.925000px;}
.y81{bottom:855.105000px;}
.y56{bottom:856.185000px;}
.y24e{bottom:856.376216px;}
.y11d{bottom:857.805000px;}
.ya8{bottom:858.525000px;}
.y186{bottom:860.505000px;}
.y14{bottom:860.865000px;}
.y2{bottom:862.032000px;}
.y1f3{bottom:862.845000px;}
.y1c8{bottom:863.205000px;}
.y140{bottom:865.725000px;}
.ye5{bottom:867.705000px;}
.y226{bottom:870.045000px;}
.y55{bottom:871.305000px;}
.y11c{bottom:872.430000px;}
.y24d{bottom:874.827628px;}
.y80{bottom:876.570000px;}
.y1f2{bottom:877.830000px;}
.y1c7{bottom:878.370000px;}
.ya7{bottom:879.090000px;}
.y13f{bottom:880.710000px;}
.y185{bottom:881.250000px;}
.y13{bottom:881.610000px;}
.ye4{bottom:882.690000px;}
.y225{bottom:885.030000px;}
.y54{bottom:886.290000px;}
.y11b{bottom:887.010000px;}
.y1f1{bottom:892.950000px;}
.y1c6{bottom:893.310000px;}
.y13e{bottom:895.650000px;}
.y7f{bottom:897.270000px;}
.ye3{bottom:897.630000px;}
.ya6{bottom:899.250000px;}
.y224{bottom:899.970000px;}
.y53{bottom:901.230000px;}
.y184{bottom:901.950000px;}
.y12{bottom:902.310000px;}
.y11a{bottom:907.710000px;}
.y1f0{bottom:907.890000px;}
.y1c5{bottom:908.250000px;}
.y13d{bottom:910.770000px;}
.y24c{bottom:911.730450px;}
.ye2{bottom:912.750000px;}
.ya5{bottom:913.650000px;}
.y223{bottom:915.090000px;}
.y52{bottom:916.350000px;}
.y7e{bottom:917.970000px;}
.y183{bottom:922.830000px;}
.y11{bottom:923.010000px;}
.y1c4{bottom:923.370000px;}
.y13c{bottom:925.710000px;}
.ye1{bottom:927.690000px;}
.y119{bottom:928.230000px;}
.y222{bottom:930.030000px;}
.y51{bottom:931.290000px;}
.ya4{bottom:936.330000px;}
.y1ef{bottom:937.950000px;}
.y1c3{bottom:938.310000px;}
.y13b{bottom:940.650000px;}
.ye0{bottom:942.630000px;}
.y10{bottom:943.530000px;}
.y221{bottom:944.970000px;}
.y50{bottom:946.230000px;}
.y118{bottom:948.930000px;}
.y182{bottom:951.270000px;}
.ya3{bottom:951.990000px;}
.y1ee{bottom:952.890000px;}
.y1c2{bottom:953.250000px;}
.y13a{bottom:955.770000px;}
.ydf{bottom:957.750000px;}
.y7d{bottom:959.190000px;}
.y220{bottom:960.090000px;}
.y4f{bottom:961.350000px;}
.ya2{bottom:963.150000px;}
.y1ed{bottom:967.830000px;}
.y1c1{bottom:968.370000px;}
.yf{bottom:969.630000px;}
.y139{bottom:970.710000px;}
.y181{bottom:971.970000px;}
.yde{bottom:972.690000px;}
.y21f{bottom:975.030000px;}
.y4e{bottom:976.290000px;}
.y7c{bottom:978.990000px;}
.y1ec{bottom:982.950000px;}
.y1c0{bottom:983.310000px;}
.ya1{bottom:983.850000px;}
.y138{bottom:985.650000px;}
.ydd{bottom:987.630000px;}
.y117{bottom:989.610000px;}
.y21e{bottom:989.970000px;}
.ye{bottom:990.150000px;}
.y4d{bottom:991.230000px;}
.y180{bottom:992.670000px;}
.y7b{bottom:995.550000px;}
.y1eb{bottom:997.890000px;}
.y1bf{bottom:998.250000px;}
.y137{bottom:1000.770000px;}
.ydc{bottom:1002.750000px;}
.y21d{bottom:1005.090000px;}
.y4c{bottom:1006.350000px;}
.ya0{bottom:1009.410000px;}
.yd{bottom:1010.850000px;}
.y1be{bottom:1012.470000px;}
.y1ea{bottom:1012.830000px;}
.y17f{bottom:1013.370000px;}
.y136{bottom:1015.710000px;}
.y7a{bottom:1016.250000px;}
.ydb{bottom:1017.690000px;}
.y21c{bottom:1020.030000px;}
.y4b{bottom:1021.290000px;}
.y9f{bottom:1023.450000px;}
.y116{bottom:1024.530000px;}
.y1e9{bottom:1027.950000px;}
.y135{bottom:1030.650000px;}
.yc{bottom:1031.370000px;}
.yda{bottom:1032.630000px;}
.y17e{bottom:1033.890000px;}
.y9e{bottom:1035.510000px;}
.y4a{bottom:1036.230000px;}
.y79{bottom:1036.950000px;}
.y21b{bottom:1040.910000px;}
.y115{bottom:1041.090000px;}
.y1e8{bottom:1042.890000px;}
.y1bd{bottom:1044.870000px;}
.y134{bottom:1045.050000px;}
.yd9{bottom:1047.750000px;}
.y49{bottom:1051.350000px;}
.yb{bottom:1052.070000px;}
.y9d{bottom:1056.210000px;}
.y78{bottom:1057.650000px;}
.y1e7{bottom:1057.830000px;}
.y133{bottom:1058.910000px;}
.y17d{bottom:1059.990000px;}
.y1bc{bottom:1061.070000px;}
.y114{bottom:1061.790000px;}
.y21a{bottom:1062.330000px;}
.yd8{bottom:1062.690000px;}
.y48{bottom:1066.290000px;}
.y24b{bottom:1067.520450px;}
.y1e6{bottom:1072.950000px;}
.y9c{bottom:1076.910000px;}
.ya{bottom:1077.270000px;}
.yd7{bottom:1077.630000px;}
.y77{bottom:1078.350000px;}
.y132{bottom:1079.610000px;}
.y47{bottom:1081.230000px;}
.y17c{bottom:1081.770000px;}
.y113{bottom:1082.490000px;}
.y219{bottom:1083.750000px;}
.y1e5{bottom:1087.890000px;}
.y1bb{bottom:1089.870000px;}
.yd6{bottom:1092.750000px;}
.y9{bottom:1094.910000px;}
.y46{bottom:1096.350000px;}
.y9b{bottom:1097.610000px;}
.y76{bottom:1099.050000px;}
.y131{bottom:1100.670000px;}
.y17b{bottom:1101.570000px;}
.y1e4{bottom:1102.830000px;}
.y112{bottom:1103.190000px;}
.y218{bottom:1104.990000px;}
.yd5{bottom:1108.050000px;}
.y45{bottom:1111.290000px;}
.y8{bottom:1111.830000px;}
.y1ba{bottom:1116.690000px;}
.y17a{bottom:1117.770000px;}
.y1e3{bottom:1118.130000px;}
.y9a{bottom:1118.310000px;}
.y75{bottom:1119.750000px;}
.y130{bottom:1121.190000px;}
.y111{bottom:1123.890000px;}
.yd4{bottom:1125.150000px;}
.y44{bottom:1126.230000px;}
.y179{bottom:1138.470000px;}
.y1e2{bottom:1138.650000px;}
.y99{bottom:1139.010000px;}
.y7{bottom:1140.300000px;}
.y74{bottom:1140.480000px;}
.y43{bottom:1141.380000px;}
.y12f{bottom:1141.740000px;}
.y217{bottom:1143.180000px;}
.y110{bottom:1144.620000px;}
.yd3{bottom:1148.580000px;}
.y42{bottom:1156.320000px;}
.y6{bottom:1159.200000px;}
.y98{bottom:1159.740000px;}
.y1b9{bottom:1161.000000px;}
.y73{bottom:1161.180000px;}
.y12e{bottom:1162.260000px;}
.y216{bottom:1162.800000px;}
.y1e1{bottom:1162.980000px;}
.yd2{bottom:1165.500000px;}
.y5{bottom:1166.940000px;}
.y10f{bottom:1169.640000px;}
.y41{bottom:1171.260000px;}
.y178{bottom:1179.900000px;}
.yd1{bottom:1180.440000px;}
.y215{bottom:1181.340000px;}
.y1b8{bottom:1181.880000px;}
.y97{bottom:1184.040000px;}
.y40{bottom:1185.300000px;}
.y72{bottom:1186.560000px;}
.y10e{bottom:1187.460000px;}
.y1e0{bottom:1188.000000px;}
.yd0{bottom:1195.380000px;}
.y214{bottom:1196.280000px;}
.y96{bottom:1198.260000px;}
.y3f{bottom:1198.800000px;}
.y12d{bottom:1202.220000px;}
.y10d{bottom:1202.580000px;}
.y1b7{bottom:1202.940000px;}
.y177{bottom:1204.920000px;}
.y71{bottom:1205.820000px;}
.y93{bottom:1208.160000px;}
.y213{bottom:1212.840000px;}
.y1df{bottom:1213.920000px;}
.y95{bottom:1217.160000px;}
.y10c{bottom:1217.520000px;}
.y70{bottom:1220.760000px;}
.y176{bottom:1220.940000px;}
.y3e{bottom:1224.000000px;}
.y1b6{bottom:1227.960000px;}
.y12c{bottom:1229.760000px;}
.y1de{bottom:1234.440000px;}
.y175{bottom:1235.880000px;}
.y212{bottom:1237.140000px;}
.y12b{bottom:1244.880000px;}
.y1b5{bottom:1246.500000px;}
.y211{bottom:1251.180000px;}
.y10b{bottom:1261.800000px;}
.h1b{height:8.480742px;}
.h5{height:15.120000px;}
.h16{height:22.947891px;}
.h9{height:24.943359px;}
.h19{height:26.938828px;}
.h1e{height:28.934297px;}
.h10{height:31.428633px;}
.h17{height:33.424102px;}
.h1d{height:37.415039px;}
.h11{height:39.410508px;}
.h7{height:41.405977px;}
.h14{height:45.895781px;}
.h15{height:47.344922px;}
.hd{height:49.886719px;}
.h18{height:49.992188px;}
.h6{height:50.312812px;}
.h23{height:50.400000px;}
.h1f{height:53.316562px;}
.hf{height:53.877656px;}
.h1a{height:56.320312px;}
.ha{height:58.367461px;}
.h8{height:58.651172px;}
.h21{height:66.820296px;}
.h22{height:68.720801px;}
.he{height:70.664062px;}
.h12{height:72.562500px;}
.h13{height:75.093750px;}
.h1c{height:82.635820px;}
.hb{height:84.898125px;}
.hc{height:87.859687px;}
.h20{height:97.492964px;}
.h3{height:151.200000px;}
.h2{height:156.316289px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.h4{height:1264.500000px;}
.w3{width:12.780000px;}
.w5{width:19.440000px;}
.w4{width:371.955000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w2{width:892.800000px;}
.w6{width:892.830000px;}
.x0{left:0.000000px;}
.xf{left:1.440000px;}
.x4{left:3.075000px;}
.x2f{left:104.073000px;}
.x17{left:111.096000px;}
.x10{left:112.536000px;}
.x5{left:120.096000px;}
.x1c{left:122.976000px;}
.x7{left:127.656000px;}
.x1d{left:130.896000px;}
.xa{left:135.216000px;}
.x8{left:142.956000px;}
.x13{left:147.096000px;}
.x1b{left:148.896000px;}
.x1a{left:150.150000px;}
.x18{left:151.590000px;}
.x9{left:153.930000px;}
.xb{left:159.150000px;}
.x19{left:169.950000px;}
.xd{left:181.830000px;}
.x1e{left:208.830000px;}
.x11{left:223.770000px;}
.x12{left:253.830000px;}
.x25{left:270.252551px;}
.x24{left:275.570145px;}
.x2d{left:278.997751px;}
.xc{left:295.455000px;}
.x28{left:298.778561px;}
.x20{left:308.250000px;}
.xe{left:313.095000px;}
.x23{left:318.415219px;}
.x2e{left:320.850000px;}
.x22{left:346.492757px;}
.x2c{left:349.007402px;}
.x26{left:353.139750px;}
.x2b{left:365.200438px;}
.x1{left:371.131500px;}
.x29{left:372.392003px;}
.x2{left:393.070500px;}
.x2a{left:395.071863px;}
.x27{left:400.934030px;}
.x21{left:408.510000px;}
.x1f{left:753.990000px;}
.x16{left:768.915000px;}
.x3{left:775.575000px;}
.x14{left:779.550000px;}
.x15{left:785.490000px;}
.x6{left:786.570000px;}
@media print{
.v4{vertical-align:-72.960000pt;}
.v1{vertical-align:-71.680000pt;}
.v9{vertical-align:-70.400000pt;}
.v5{vertical-align:-67.840000pt;}
.v2{vertical-align:-65.920000pt;}
.v6{vertical-align:-54.400000pt;}
.v7{vertical-align:-50.560000pt;}
.v3{vertical-align:-8.320000pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-2.229333pt;}
.ls3f{letter-spacing:-2.224000pt;}
.ls9{letter-spacing:-1.584000pt;}
.ls26{letter-spacing:-1.536000pt;}
.ls2e{letter-spacing:-1.472000pt;}
.lse{letter-spacing:-1.280000pt;}
.ls40{letter-spacing:-1.216000pt;}
.ls4f{letter-spacing:-1.034667pt;}
.ls24{letter-spacing:-0.896000pt;}
.ls1a{letter-spacing:-0.768000pt;}
.ls39{letter-spacing:-0.736000pt;}
.ls23{letter-spacing:-0.704000pt;}
.ls43{letter-spacing:-0.666667pt;}
.ls42{letter-spacing:-0.656000pt;}
.lsb{letter-spacing:-0.650667pt;}
.ls2c{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.576000pt;}
.ls15{letter-spacing:-0.512000pt;}
.ls20{letter-spacing:-0.478933pt;}
.ls30{letter-spacing:-0.448000pt;}
.ls21{letter-spacing:-0.400533pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls52{letter-spacing:-0.354133pt;}
.ls3e{letter-spacing:-0.328533pt;}
.ls22{letter-spacing:-0.320000pt;}
.ls61{letter-spacing:-0.267632pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls4e{letter-spacing:-0.247467pt;}
.ls38{letter-spacing:-0.224000pt;}
.ls7{letter-spacing:-0.215467pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls50{letter-spacing:-0.176000pt;}
.ls49{letter-spacing:-0.161067pt;}
.ls5c{letter-spacing:-0.145018pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls3a{letter-spacing:-0.096000pt;}
.ls27{letter-spacing:-0.064000pt;}
.ls60{letter-spacing:-0.039864pt;}
.ls8{letter-spacing:-0.033280pt;}
.lsa{letter-spacing:-0.024960pt;}
.ls16{letter-spacing:-0.016640pt;}
.ls5d{letter-spacing:-0.005695pt;}
.ls0{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.005695pt;}
.ls33{letter-spacing:0.016000pt;}
.ls5a{letter-spacing:0.017085pt;}
.ls58{letter-spacing:0.022780pt;}
.ls59{letter-spacing:0.028474pt;}
.ls5b{letter-spacing:0.062644pt;}
.ls2{letter-spacing:0.064000pt;}
.ls55{letter-spacing:0.099708pt;}
.ls3{letter-spacing:0.128000pt;}
.ls5f{letter-spacing:0.153762pt;}
.ls56{letter-spacing:0.159457pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls54{letter-spacing:0.182933pt;}
.lsd{letter-spacing:0.192000pt;}
.ls4d{letter-spacing:0.213867pt;}
.ls53{letter-spacing:0.230400pt;}
.ls6{letter-spacing:0.256000pt;}
.ls4c{letter-spacing:0.281600pt;}
.ls51{letter-spacing:0.285867pt;}
.ls5e{letter-spacing:0.301829pt;}
.ls1{letter-spacing:0.311680pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls3c{letter-spacing:0.332800pt;}
.ls2d{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.704000pt;}
.ls2f{letter-spacing:0.768000pt;}
.ls25{letter-spacing:1.024000pt;}
.ls31{letter-spacing:3.200000pt;}
.ls1b{letter-spacing:10.597120pt;}
.ls3d{letter-spacing:11.258880pt;}
.ls18{letter-spacing:11.898880pt;}
.ls36{letter-spacing:12.256000pt;}
.ls48{letter-spacing:13.056000pt;}
.ls37{letter-spacing:13.536000pt;}
.ls29{letter-spacing:15.514880pt;}
.ls44{letter-spacing:16.093440pt;}
.ls4a{letter-spacing:27.648000pt;}
.ls2b{letter-spacing:27.898880pt;}
.ls5{letter-spacing:34.407680pt;}
.ls4{letter-spacing:38.138880pt;}
.ls3b{letter-spacing:38.778880pt;}
.ls17{letter-spacing:44.288000pt;}
.ls46{letter-spacing:44.928000pt;}
.ls4b{letter-spacing:46.247680pt;}
.ls1c{letter-spacing:48.128000pt;}
.ls28{letter-spacing:48.768000pt;}
.ls41{letter-spacing:50.048000pt;}
.ls47{letter-spacing:55.808000pt;}
.ls45{letter-spacing:57.600000pt;}
.ls34{letter-spacing:68.736000pt;}
.ls32{letter-spacing:111.493547pt;}
.ls35{letter-spacing:115.688107pt;}
.ls1e{letter-spacing:638.880000pt;}
.ws30{word-spacing:-64.064000pt;}
.ws15{word-spacing:-64.000000pt;}
.ws34{word-spacing:-45.440000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws14{word-spacing:-18.703360pt;}
.ws4{word-spacing:-18.695040pt;}
.ws2{word-spacing:-18.686720pt;}
.ws2d{word-spacing:-18.391467pt;}
.ws5{word-spacing:-18.069333pt;}
.ws31{word-spacing:-18.064000pt;}
.ws32{word-spacing:-18.053333pt;}
.ws3{word-spacing:-17.136000pt;}
.ws1e{word-spacing:-17.024000pt;}
.ws24{word-spacing:-16.768000pt;}
.wsf{word-spacing:-16.704000pt;}
.ws11{word-spacing:-16.640000pt;}
.ws2e{word-spacing:-16.496000pt;}
.ws6{word-spacing:-16.490667pt;}
.ws21{word-spacing:-16.384000pt;}
.ws10{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws22{word-spacing:-15.936000pt;}
.ws16{word-spacing:-15.872000pt;}
.ws12{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.616000pt;}
.ws25{word-spacing:-15.552000pt;}
.ws13{word-spacing:-15.488000pt;}
.wsd{word-spacing:-15.424000pt;}
.ws20{word-spacing:-15.360000pt;}
.ws1c{word-spacing:-15.296000pt;}
.ws3e{word-spacing:-15.292368pt;}
.ws17{word-spacing:-15.232000pt;}
.ws1d{word-spacing:-15.104000pt;}
.ws2f{word-spacing:-14.784000pt;}
.wse{word-spacing:-14.720000pt;}
.ws23{word-spacing:-14.528000pt;}
.ws36{word-spacing:-14.504320pt;}
.ws1f{word-spacing:-14.464000pt;}
.ws3c{word-spacing:-14.453120pt;}
.ws3b{word-spacing:-14.436587pt;}
.ws3d{word-spacing:-14.405653pt;}
.ws35{word-spacing:-14.222720pt;}
.ws39{word-spacing:-14.046720pt;}
.ws37{word-spacing:-13.975253pt;}
.ws3a{word-spacing:-13.868587pt;}
.ws28{word-spacing:-13.536000pt;}
.ws2a{word-spacing:-13.360000pt;}
.ws26{word-spacing:-13.344000pt;}
.ws2b{word-spacing:-13.248000pt;}
.ws38{word-spacing:-13.188053pt;}
.ws27{word-spacing:-13.120000pt;}
.ws2c{word-spacing:-12.896000pt;}
.ws29{word-spacing:-12.608000pt;}
.ws33{word-spacing:-11.759573pt;}
.ws18{word-spacing:-11.040000pt;}
.ws1b{word-spacing:-10.400000pt;}
.ws1a{word-spacing:-10.319467pt;}
.ws19{word-spacing:-10.241067pt;}
.ws43{word-spacing:-0.763114pt;}
.ws3f{word-spacing:-0.299124pt;}
.ws44{word-spacing:-0.170846pt;}
.ws42{word-spacing:-0.165152pt;}
.ws45{word-spacing:-0.159457pt;}
.ws41{word-spacing:-0.148067pt;}
.ws40{word-spacing:-0.136677pt;}
.ws0{word-spacing:0.000000pt;}
.ws46{word-spacing:167.793944pt;}
._b{margin-left:-8.135253pt;}
._7{margin-left:-7.210667pt;}
._a{margin-left:-6.178133pt;}
._3{margin-left:-4.943360pt;}
._2{margin-left:-4.008320pt;}
._1{margin-left:-2.885120pt;}
._0{margin-left:-1.572480pt;}
._4{width:1.073920pt;}
._5{width:2.454613pt;}
._6{width:3.458347pt;}
._9{width:5.285120pt;}
._11{width:66.213547pt;}
._10{width:67.161600pt;}
._f{width:69.974400pt;}
._12{width:77.476480pt;}
._13{width:120.705493pt;}
._8{width:439.813547pt;}
._d{width:479.409280pt;}
._c{width:662.560000pt;}
._e{width:711.973547pt;}
.fse{font-size:10.880000pt;}
.fsb{font-size:29.440000pt;}
.fs4{font-size:32.000000pt;}
.fsd{font-size:34.560000pt;}
.fsf{font-size:37.120000pt;}
.fs8{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs10{font-size:45.440000pt;}
.fsc{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs13{font-size:56.948800pt;}
.fsa{font-size:58.880000pt;}
.fs14{font-size:62.240000pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs12{font-size:72.508800pt;}
.fs5{font-size:74.880000pt;}
.fs11{font-size:83.090133pt;}
.fs0{font-size:138.880000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y12a{bottom:0.639973pt;}
.y4{bottom:3.680000pt;}
.y94{bottom:4.320000pt;}
.y174{bottom:36.640000pt;}
.y3{bottom:36.800000pt;}
.y173{bottom:57.280000pt;}
.y172{bottom:70.432000pt;}
.y171{bottom:87.552000pt;}
.y1b4{bottom:99.552000pt;}
.y170{bottom:100.832000pt;}
.y25a{bottom:101.456000pt;}
.y10a{bottom:108.512000pt;}
.y16f{bottom:114.272000pt;}
.y1b3{bottom:117.952000pt;}
.y3d{bottom:118.592000pt;}
.y16e{bottom:127.552000pt;}
.y1b2{bottom:136.346667pt;}
.y3c{bottom:136.826667pt;}
.y16d{bottom:140.826667pt;}
.ycf{bottom:143.706667pt;}
.y109{bottom:143.866667pt;}
.y16c{bottom:154.266667pt;}
.y3b{bottom:155.226667pt;}
.y108{bottom:156.826667pt;}
.y1b1{bottom:158.426667pt;}
.yce{bottom:162.106667pt;}
.y16b{bottom:167.546667pt;}
.y107{bottom:168.826667pt;}
.y3a{bottom:173.466667pt;}
.y1b0{bottom:175.066667pt;}
.y16a{bottom:180.826667pt;}
.y169{bottom:194.266667pt;}
.y39{bottom:194.906667pt;}
.y1af{bottom:195.866667pt;}
.y24a{bottom:197.146667pt;}
.y106{bottom:197.786667pt;}
.ycd{bottom:198.426667pt;}
.y168{bottom:207.546667pt;}
.y38{bottom:209.466667pt;}
.y1ae{bottom:212.346667pt;}
.ycc{bottom:216.506667pt;}
.y167{bottom:220.826667pt;}
.y105{bottom:221.786667pt;}
.y1ad{bottom:225.626667pt;}
.y37{bottom:229.306667pt;}
.y104{bottom:234.106667pt;}
.y166{bottom:234.266667pt;}
.ycb{bottom:234.746667pt;}
.y1ac{bottom:239.066667pt;}
.y36{bottom:242.586667pt;}
.y165{bottom:247.546667pt;}
.y1ab{bottom:252.346667pt;}
.y35{bottom:256.026667pt;}
.y164{bottom:260.826667pt;}
.y103{bottom:262.106667pt;}
.y210{bottom:263.066667pt;}
.y1aa{bottom:265.626667pt;}
.y34{bottom:269.306667pt;}
.yca{bottom:270.106667pt;}
.y163{bottom:274.266667pt;}
.y102{bottom:275.386667pt;}
.y1a9{bottom:279.066667pt;}
.y249{bottom:279.866667pt;}
.y33{bottom:282.586667pt;}
.yc9{bottom:284.666667pt;}
.y162{bottom:287.546667pt;}
.y101{bottom:288.026667pt;}
.y1a8{bottom:292.346667pt;}
.y248{bottom:293.306667pt;}
.y32{bottom:296.026667pt;}
.yc8{bottom:297.946667pt;}
.y20f{bottom:298.426667pt;}
.y100{bottom:300.386667pt;}
.y161{bottom:300.866667pt;}
.y1a7{bottom:305.666667pt;}
.y247{bottom:306.626667pt;}
.y31{bottom:309.346667pt;}
.y20e{bottom:311.266667pt;}
.yc7{bottom:311.426667pt;}
.y160{bottom:314.306667pt;}
.yff{bottom:318.786667pt;}
.y1a6{bottom:319.106667pt;}
.y246{bottom:319.906667pt;}
.y30{bottom:322.626667pt;}
.y20d{bottom:323.426667pt;}
.yc6{bottom:324.706667pt;}
.y15f{bottom:327.586667pt;}
.y1a5{bottom:332.386667pt;}
.y245{bottom:333.346667pt;}
.y2f{bottom:336.066667pt;}
.yc5{bottom:337.986667pt;}
.y15e{bottom:340.866667pt;}
.y6f{bottom:342.466667pt;}
.y1a4{bottom:345.666667pt;}
.y244{bottom:346.626667pt;}
.y2e{bottom:349.346667pt;}
.yc4{bottom:351.426667pt;}
.y15d{bottom:354.306667pt;}
.yfe{bottom:354.946667pt;}
.y1a3{bottom:359.106667pt;}
.y20c{bottom:359.426667pt;}
.y243{bottom:359.906667pt;}
.y6e{bottom:360.066667pt;}
.y2d{bottom:362.626667pt;}
.yc3{bottom:364.706667pt;}
.y15c{bottom:367.586667pt;}
.y1a2{bottom:372.386667pt;}
.y242{bottom:373.346667pt;}
.yfd{bottom:373.826667pt;}
.y20b{bottom:375.746667pt;}
.y2c{bottom:376.066667pt;}
.yc2{bottom:377.986667pt;}
.y6d{bottom:378.466667pt;}
.y15b{bottom:380.866667pt;}
.y1{bottom:384.386667pt;}
.y1a1{bottom:385.666667pt;}
.y241{bottom:386.626667pt;}
.y20a{bottom:389.186667pt;}
.y2b{bottom:389.346667pt;}
.yc1{bottom:391.426667pt;}
.yfc{bottom:392.066667pt;}
.y15a{bottom:394.306667pt;}
.y6c{bottom:396.706667pt;}
.y1a0{bottom:399.106667pt;}
.y240{bottom:399.906667pt;}
.y209{bottom:402.466667pt;}
.y2a{bottom:402.626667pt;}
.yc0{bottom:404.706667pt;}
.y159{bottom:407.586667pt;}
.y19f{bottom:412.386667pt;}
.y23f{bottom:413.346667pt;}
.y6b{bottom:415.106667pt;}
.y208{bottom:415.746667pt;}
.y29{bottom:416.066667pt;}
.ybf{bottom:417.986667pt;}
.y158{bottom:420.866667pt;}
.y19e{bottom:425.666667pt;}
.y23e{bottom:426.626667pt;}
.yfb{bottom:428.226667pt;}
.y207{bottom:429.186667pt;}
.y28{bottom:429.346667pt;}
.y92{bottom:431.266667pt;}
.ybe{bottom:431.426667pt;}
.y6a{bottom:433.346667pt;}
.y157{bottom:434.306667pt;}
.y19d{bottom:439.106667pt;}
.y23d{bottom:439.906667pt;}
.y206{bottom:442.466667pt;}
.y27{bottom:442.626667pt;}
.ybd{bottom:444.706667pt;}
.yfa{bottom:447.266667pt;}
.y156{bottom:447.586667pt;}
.y19c{bottom:452.386667pt;}
.y23c{bottom:453.346667pt;}
.y205{bottom:455.746667pt;}
.y26{bottom:456.066667pt;}
.ybc{bottom:457.986667pt;}
.y155{bottom:460.866667pt;}
.y91{bottom:464.546667pt;}
.y1dd{bottom:465.506667pt;}
.yf9{bottom:465.666667pt;}
.y23b{bottom:466.626667pt;}
.y204{bottom:469.186667pt;}
.y25{bottom:469.346667pt;}
.y69{bottom:469.506667pt;}
.y129{bottom:469.666667pt;}
.ybb{bottom:471.426667pt;}
.y154{bottom:474.306667pt;}
.y19b{bottom:479.106667pt;}
.y23a{bottom:479.906667pt;}
.y90{bottom:480.226667pt;}
.y203{bottom:482.466667pt;}
.y24{bottom:482.626667pt;}
.yf8{bottom:484.066667pt;}
.yba{bottom:484.706667pt;}
.y1dc{bottom:487.586667pt;}
.y68{bottom:488.226667pt;}
.y153{bottom:489.026667pt;}
.y19a{bottom:492.386667pt;}
.y239{bottom:493.346667pt;}
.y8f{bottom:493.506667pt;}
.y202{bottom:495.746667pt;}
.y23{bottom:496.066667pt;}
.y258{bottom:497.706969pt;}
.y259{bottom:497.707067pt;}
.yb9{bottom:497.986667pt;}
.yf7{bottom:502.466667pt;}
.y199{bottom:505.666667pt;}
.y128{bottom:505.826667pt;}
.y67{bottom:506.626667pt;}
.y8e{bottom:506.946667pt;}
.y152{bottom:507.426667pt;}
.y22{bottom:509.346667pt;}
.y1db{bottom:510.146667pt;}
.yb8{bottom:511.426667pt;}
.y201{bottom:512.546667pt;}
.y257{bottom:515.232962pt;}
.y198{bottom:519.106667pt;}
.y238{bottom:519.906667pt;}
.yf6{bottom:520.866667pt;}
.y8d{bottom:521.666667pt;}
.y21{bottom:522.626667pt;}
.yb7{bottom:524.706667pt;}
.y66{bottom:524.866667pt;}
.y1da{bottom:527.266667pt;}
.y256{bottom:531.634216pt;}
.y197{bottom:532.386667pt;}
.y200{bottom:533.026667pt;}
.y237{bottom:533.346667pt;}
.y20{bottom:536.066667pt;}
.yb6{bottom:538.013333pt;}
.yf5{bottom:539.293333pt;}
.y8c{bottom:540.093333pt;}
.y1d9{bottom:540.733333pt;}
.y151{bottom:542.813333pt;}
.y65{bottom:543.293333pt;}
.y196{bottom:545.693333pt;}
.y236{bottom:546.653333pt;}
.y1f{bottom:549.373333pt;}
.yb5{bottom:551.453333pt;}
.y1ff{bottom:553.533333pt;}
.y1d8{bottom:554.013333pt;}
.y150{bottom:556.093333pt;}
.yf4{bottom:557.693333pt;}
.y195{bottom:559.133333pt;}
.y235{bottom:559.933333pt;}
.y1e{bottom:562.653333pt;}
.y255{bottom:564.351302pt;}
.yb4{bottom:564.733333pt;}
.y64{bottom:566.173333pt;}
.y1d7{bottom:567.293333pt;}
.y14f{bottom:569.533333pt;}
.y194{bottom:572.413333pt;}
.y234{bottom:573.373333pt;}
.y1fe{bottom:574.013333pt;}
.y1d{bottom:576.093333pt;}
.y8b{bottom:576.253333pt;}
.yb3{bottom:578.013333pt;}
.y127{bottom:579.453333pt;}
.yf3{bottom:580.253333pt;}
.y1d6{bottom:580.733333pt;}
.y254{bottom:580.823742pt;}
.y14e{bottom:582.813333pt;}
.y193{bottom:585.693333pt;}
.y233{bottom:586.653333pt;}
.y63{bottom:587.773333pt;}
.y1c{bottom:589.213333pt;}
.yb2{bottom:591.453333pt;}
.y1d5{bottom:594.013333pt;}
.y8a{bottom:594.813333pt;}
.y14d{bottom:596.093333pt;}
.y253{bottom:597.224997pt;}
.yf2{bottom:597.853333pt;}
.y126{bottom:598.493333pt;}
.y192{bottom:599.133333pt;}
.y232{bottom:599.933333pt;}
.y62{bottom:601.053333pt;}
.y1b{bottom:603.773333pt;}
.yb1{bottom:604.733333pt;}
.y1fd{bottom:606.973333pt;}
.y1d4{bottom:607.293333pt;}
.y14c{bottom:609.533333pt;}
.yf1{bottom:611.293333pt;}
.y191{bottom:612.413333pt;}
.y89{bottom:613.213333pt;}
.y231{bottom:613.373333pt;}
.y61{bottom:614.493333pt;}
.y125{bottom:616.893333pt;}
.yb0{bottom:618.013333pt;}
.y1fc{bottom:620.253333pt;}
.y1d3{bottom:620.733333pt;}
.y14b{bottom:622.813333pt;}
.yf0{bottom:624.573333pt;}
.y190{bottom:625.693333pt;}
.y230{bottom:626.653333pt;}
.y60{bottom:627.773333pt;}
.y252{bottom:629.942082pt;}
.y88{bottom:631.293333pt;}
.yaf{bottom:631.453333pt;}
.y1fb{bottom:633.693333pt;}
.y1d2{bottom:634.013333pt;}
.y124{bottom:635.293333pt;}
.y14a{bottom:636.093333pt;}
.yef{bottom:637.853333pt;}
.y1a{bottom:638.653333pt;}
.y18f{bottom:639.133333pt;}
.y22f{bottom:639.933333pt;}
.y5f{bottom:641.053333pt;}
.yae{bottom:644.733333pt;}
.y1fa{bottom:646.973333pt;}
.y1d1{bottom:647.293333pt;}
.y87{bottom:649.213333pt;}
.y149{bottom:649.533333pt;}
.y19{bottom:650.653333pt;}
.yee{bottom:651.293333pt;}
.y18e{bottom:652.413333pt;}
.y22e{bottom:653.373333pt;}
.y123{bottom:653.693333pt;}
.y5e{bottom:654.493333pt;}
.yad{bottom:659.133333pt;}
.y1f9{bottom:660.253333pt;}
.y1d0{bottom:660.733333pt;}
.y148{bottom:662.813333pt;}
.yed{bottom:664.573333pt;}
.y18d{bottom:665.693333pt;}
.y22d{bottom:666.653333pt;}
.y86{bottom:667.613333pt;}
.y5d{bottom:667.773333pt;}
.y1f8{bottom:673.693333pt;}
.y1cf{bottom:674.013333pt;}
.y122{bottom:675.133333pt;}
.y147{bottom:676.093333pt;}
.yec{bottom:677.853333pt;}
.y18c{bottom:679.133333pt;}
.y22c{bottom:679.933333pt;}
.y5c{bottom:681.053333pt;}
.y18{bottom:686.973333pt;}
.y85{bottom:687.133333pt;}
.y1ce{bottom:687.293333pt;}
.y146{bottom:689.533333pt;}
.yeb{bottom:691.293333pt;}
.y18b{bottom:692.413333pt;}
.y22b{bottom:693.373333pt;}
.y5b{bottom:694.493333pt;}
.y251{bottom:695.618286pt;}
.y121{bottom:697.533333pt;}
.y1f7{bottom:700.253333pt;}
.y1cd{bottom:700.733333pt;}
.y145{bottom:702.813333pt;}
.yea{bottom:704.573333pt;}
.y17{bottom:705.053333pt;}
.y84{bottom:705.533333pt;}
.y18a{bottom:705.693333pt;}
.yac{bottom:706.333333pt;}
.y22a{bottom:706.653333pt;}
.y5a{bottom:707.773333pt;}
.y250{bottom:712.019540pt;}
.y120{bottom:713.693333pt;}
.y1cc{bottom:714.013333pt;}
.y144{bottom:716.093333pt;}
.ye9{bottom:717.853333pt;}
.y189{bottom:719.133333pt;}
.y229{bottom:719.933333pt;}
.y59{bottom:721.053333pt;}
.yab{bottom:721.693333pt;}
.y16{bottom:723.293333pt;}
.y83{bottom:723.933333pt;}
.y1f6{bottom:726.973333pt;}
.y1cb{bottom:727.293333pt;}
.y24f{bottom:728.420795pt;}
.y11f{bottom:728.573333pt;}
.y143{bottom:729.533333pt;}
.ye8{bottom:731.293333pt;}
.y188{bottom:732.413333pt;}
.y228{bottom:733.373333pt;}
.y58{bottom:734.493333pt;}
.yaa{bottom:735.133333pt;}
.y1f5{bottom:740.253333pt;}
.y1ca{bottom:740.733333pt;}
.y82{bottom:742.333333pt;}
.y142{bottom:742.813333pt;}
.ye7{bottom:744.573333pt;}
.y187{bottom:746.653333pt;}
.y15{bottom:746.813333pt;}
.y57{bottom:747.773333pt;}
.ya9{bottom:748.413333pt;}
.y11e{bottom:749.053333pt;}
.y1f4{bottom:753.693333pt;}
.y1c9{bottom:754.013333pt;}
.y141{bottom:756.093333pt;}
.ye6{bottom:757.853333pt;}
.y227{bottom:759.933333pt;}
.y81{bottom:760.093333pt;}
.y56{bottom:761.053333pt;}
.y24e{bottom:761.223303pt;}
.y11d{bottom:762.493333pt;}
.ya8{bottom:763.133333pt;}
.y186{bottom:764.893333pt;}
.y14{bottom:765.213333pt;}
.y2{bottom:766.250667pt;}
.y1f3{bottom:766.973333pt;}
.y1c8{bottom:767.293333pt;}
.y140{bottom:769.533333pt;}
.ye5{bottom:771.293333pt;}
.y226{bottom:773.373333pt;}
.y55{bottom:774.493333pt;}
.y11c{bottom:775.493333pt;}
.y24d{bottom:777.624558pt;}
.y80{bottom:779.173333pt;}
.y1f2{bottom:780.293333pt;}
.y1c7{bottom:780.773333pt;}
.ya7{bottom:781.413333pt;}
.y13f{bottom:782.853333pt;}
.y185{bottom:783.333333pt;}
.y13{bottom:783.653333pt;}
.ye4{bottom:784.613333pt;}
.y225{bottom:786.693333pt;}
.y54{bottom:787.813333pt;}
.y11b{bottom:788.453333pt;}
.y1f1{bottom:793.733333pt;}
.y1c6{bottom:794.053333pt;}
.y13e{bottom:796.133333pt;}
.y7f{bottom:797.573333pt;}
.ye3{bottom:797.893333pt;}
.ya6{bottom:799.333333pt;}
.y224{bottom:799.973333pt;}
.y53{bottom:801.093333pt;}
.y184{bottom:801.733333pt;}
.y12{bottom:802.053333pt;}
.y11a{bottom:806.853333pt;}
.y1f0{bottom:807.013333pt;}
.y1c5{bottom:807.333333pt;}
.y13d{bottom:809.573333pt;}
.y24c{bottom:810.427067pt;}
.ye2{bottom:811.333333pt;}
.ya5{bottom:812.133333pt;}
.y223{bottom:813.413333pt;}
.y52{bottom:814.533333pt;}
.y7e{bottom:815.973333pt;}
.y183{bottom:820.293333pt;}
.y11{bottom:820.453333pt;}
.y1c4{bottom:820.773333pt;}
.y13c{bottom:822.853333pt;}
.ye1{bottom:824.613333pt;}
.y119{bottom:825.093333pt;}
.y222{bottom:826.693333pt;}
.y51{bottom:827.813333pt;}
.ya4{bottom:832.293333pt;}
.y1ef{bottom:833.733333pt;}
.y1c3{bottom:834.053333pt;}
.y13b{bottom:836.133333pt;}
.ye0{bottom:837.893333pt;}
.y10{bottom:838.693333pt;}
.y221{bottom:839.973333pt;}
.y50{bottom:841.093333pt;}
.y118{bottom:843.493333pt;}
.y182{bottom:845.573333pt;}
.ya3{bottom:846.213333pt;}
.y1ee{bottom:847.013333pt;}
.y1c2{bottom:847.333333pt;}
.y13a{bottom:849.573333pt;}
.ydf{bottom:851.333333pt;}
.y7d{bottom:852.613333pt;}
.y220{bottom:853.413333pt;}
.y4f{bottom:854.533333pt;}
.ya2{bottom:856.133333pt;}
.y1ed{bottom:860.293333pt;}
.y1c1{bottom:860.773333pt;}
.yf{bottom:861.893333pt;}
.y139{bottom:862.853333pt;}
.y181{bottom:863.973333pt;}
.yde{bottom:864.613333pt;}
.y21f{bottom:866.693333pt;}
.y4e{bottom:867.813333pt;}
.y7c{bottom:870.213333pt;}
.y1ec{bottom:873.733333pt;}
.y1c0{bottom:874.053333pt;}
.ya1{bottom:874.533333pt;}
.y138{bottom:876.133333pt;}
.ydd{bottom:877.893333pt;}
.y117{bottom:879.653333pt;}
.y21e{bottom:879.973333pt;}
.ye{bottom:880.133333pt;}
.y4d{bottom:881.093333pt;}
.y180{bottom:882.373333pt;}
.y7b{bottom:884.933333pt;}
.y1eb{bottom:887.013333pt;}
.y1bf{bottom:887.333333pt;}
.y137{bottom:889.573333pt;}
.ydc{bottom:891.333333pt;}
.y21d{bottom:893.413333pt;}
.y4c{bottom:894.533333pt;}
.ya0{bottom:897.253333pt;}
.yd{bottom:898.533333pt;}
.y1be{bottom:899.973333pt;}
.y1ea{bottom:900.293333pt;}
.y17f{bottom:900.773333pt;}
.y136{bottom:902.853333pt;}
.y7a{bottom:903.333333pt;}
.ydb{bottom:904.613333pt;}
.y21c{bottom:906.693333pt;}
.y4b{bottom:907.813333pt;}
.y9f{bottom:909.733333pt;}
.y116{bottom:910.693333pt;}
.y1e9{bottom:913.733333pt;}
.y135{bottom:916.133333pt;}
.yc{bottom:916.773333pt;}
.yda{bottom:917.893333pt;}
.y17e{bottom:919.013333pt;}
.y9e{bottom:920.453333pt;}
.y4a{bottom:921.093333pt;}
.y79{bottom:921.733333pt;}
.y21b{bottom:925.253333pt;}
.y115{bottom:925.413333pt;}
.y1e8{bottom:927.013333pt;}
.y1bd{bottom:928.773333pt;}
.y134{bottom:928.933333pt;}
.yd9{bottom:931.333333pt;}
.y49{bottom:934.533333pt;}
.yb{bottom:935.173333pt;}
.y9d{bottom:938.853333pt;}
.y78{bottom:940.133333pt;}
.y1e7{bottom:940.293333pt;}
.y133{bottom:941.253333pt;}
.y17d{bottom:942.213333pt;}
.y1bc{bottom:943.173333pt;}
.y114{bottom:943.813333pt;}
.y21a{bottom:944.293333pt;}
.yd8{bottom:944.613333pt;}
.y48{bottom:947.813333pt;}
.y24b{bottom:948.907067pt;}
.y1e6{bottom:953.733333pt;}
.y9c{bottom:957.253333pt;}
.ya{bottom:957.573333pt;}
.yd7{bottom:957.893333pt;}
.y77{bottom:958.533333pt;}
.y132{bottom:959.653333pt;}
.y47{bottom:961.093333pt;}
.y17c{bottom:961.573333pt;}
.y113{bottom:962.213333pt;}
.y219{bottom:963.333333pt;}
.y1e5{bottom:967.013333pt;}
.y1bb{bottom:968.773333pt;}
.yd6{bottom:971.333333pt;}
.y9{bottom:973.253333pt;}
.y46{bottom:974.533333pt;}
.y9b{bottom:975.653333pt;}
.y76{bottom:976.933333pt;}
.y131{bottom:978.373333pt;}
.y17b{bottom:979.173333pt;}
.y1e4{bottom:980.293333pt;}
.y112{bottom:980.613333pt;}
.y218{bottom:982.213333pt;}
.yd5{bottom:984.933333pt;}
.y45{bottom:987.813333pt;}
.y8{bottom:988.293333pt;}
.y1ba{bottom:992.613333pt;}
.y17a{bottom:993.573333pt;}
.y1e3{bottom:993.893333pt;}
.y9a{bottom:994.053333pt;}
.y75{bottom:995.333333pt;}
.y130{bottom:996.613333pt;}
.y111{bottom:999.013333pt;}
.yd4{bottom:1000.133333pt;}
.y44{bottom:1001.093333pt;}
.y179{bottom:1011.973333pt;}
.y1e2{bottom:1012.133333pt;}
.y99{bottom:1012.453333pt;}
.y7{bottom:1013.600000pt;}
.y74{bottom:1013.760000pt;}
.y43{bottom:1014.560000pt;}
.y12f{bottom:1014.880000pt;}
.y217{bottom:1016.160000pt;}
.y110{bottom:1017.440000pt;}
.yd3{bottom:1020.960000pt;}
.y42{bottom:1027.840000pt;}
.y6{bottom:1030.400000pt;}
.y98{bottom:1030.880000pt;}
.y1b9{bottom:1032.000000pt;}
.y73{bottom:1032.160000pt;}
.y12e{bottom:1033.120000pt;}
.y216{bottom:1033.600000pt;}
.y1e1{bottom:1033.760000pt;}
.yd2{bottom:1036.000000pt;}
.y5{bottom:1037.280000pt;}
.y10f{bottom:1039.680000pt;}
.y41{bottom:1041.120000pt;}
.y178{bottom:1048.800000pt;}
.yd1{bottom:1049.280000pt;}
.y215{bottom:1050.080000pt;}
.y1b8{bottom:1050.560000pt;}
.y97{bottom:1052.480000pt;}
.y40{bottom:1053.600000pt;}
.y72{bottom:1054.720000pt;}
.y10e{bottom:1055.520000pt;}
.y1e0{bottom:1056.000000pt;}
.yd0{bottom:1062.560000pt;}
.y214{bottom:1063.360000pt;}
.y96{bottom:1065.120000pt;}
.y3f{bottom:1065.600000pt;}
.y12d{bottom:1068.640000pt;}
.y10d{bottom:1068.960000pt;}
.y1b7{bottom:1069.280000pt;}
.y177{bottom:1071.040000pt;}
.y71{bottom:1071.840000pt;}
.y93{bottom:1073.920000pt;}
.y213{bottom:1078.080000pt;}
.y1df{bottom:1079.040000pt;}
.y95{bottom:1081.920000pt;}
.y10c{bottom:1082.240000pt;}
.y70{bottom:1085.120000pt;}
.y176{bottom:1085.280000pt;}
.y3e{bottom:1088.000000pt;}
.y1b6{bottom:1091.520000pt;}
.y12c{bottom:1093.120000pt;}
.y1de{bottom:1097.280000pt;}
.y175{bottom:1098.560000pt;}
.y212{bottom:1099.680000pt;}
.y12b{bottom:1106.560000pt;}
.y1b5{bottom:1108.000000pt;}
.y211{bottom:1112.160000pt;}
.y10b{bottom:1121.600000pt;}
.h1b{height:7.538438pt;}
.h5{height:13.440000pt;}
.h16{height:20.398125pt;}
.h9{height:22.171875pt;}
.h19{height:23.945625pt;}
.h1e{height:25.719375pt;}
.h10{height:27.936562pt;}
.h17{height:29.710312pt;}
.h1d{height:33.257812pt;}
.h11{height:35.031562pt;}
.h7{height:36.805312pt;}
.h14{height:40.796250pt;}
.h15{height:42.084375pt;}
.hd{height:44.343750pt;}
.h18{height:44.437500pt;}
.h6{height:44.722500pt;}
.h23{height:44.800000pt;}
.h1f{height:47.392500pt;}
.hf{height:47.891250pt;}
.h1a{height:50.062500pt;}
.ha{height:51.882187pt;}
.h8{height:52.134375pt;}
.h21{height:59.395819pt;}
.h22{height:61.085156pt;}
.he{height:62.812500pt;}
.h12{height:64.500000pt;}
.h13{height:66.750000pt;}
.h1c{height:73.454062pt;}
.hb{height:75.465000pt;}
.hc{height:78.097500pt;}
.h20{height:86.660413pt;}
.h3{height:134.400000pt;}
.h2{height:138.947812pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.h4{height:1124.000000pt;}
.w3{width:11.360000pt;}
.w5{width:17.280000pt;}
.w4{width:330.626667pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w2{width:793.600000pt;}
.w6{width:793.626667pt;}
.x0{left:0.000000pt;}
.xf{left:1.280000pt;}
.x4{left:2.733333pt;}
.x2f{left:92.509333pt;}
.x17{left:98.752000pt;}
.x10{left:100.032000pt;}
.x5{left:106.752000pt;}
.x1c{left:109.312000pt;}
.x7{left:113.472000pt;}
.x1d{left:116.352000pt;}
.xa{left:120.192000pt;}
.x8{left:127.072000pt;}
.x13{left:130.752000pt;}
.x1b{left:132.352000pt;}
.x1a{left:133.466667pt;}
.x18{left:134.746667pt;}
.x9{left:136.826667pt;}
.xb{left:141.466667pt;}
.x19{left:151.066667pt;}
.xd{left:161.626667pt;}
.x1e{left:185.626667pt;}
.x11{left:198.906667pt;}
.x12{left:225.626667pt;}
.x25{left:240.224490pt;}
.x24{left:244.951240pt;}
.x2d{left:247.998001pt;}
.xc{left:262.626667pt;}
.x28{left:265.580943pt;}
.x20{left:274.000000pt;}
.xe{left:278.306667pt;}
.x23{left:283.035750pt;}
.x2e{left:285.200000pt;}
.x22{left:307.993562pt;}
.x2c{left:310.228802pt;}
.x26{left:313.902000pt;}
.x2b{left:324.622611pt;}
.x1{left:329.894667pt;}
.x29{left:331.015114pt;}
.x2{left:349.396000pt;}
.x2a{left:351.174989pt;}
.x27{left:356.385804pt;}
.x21{left:363.120000pt;}
.x1f{left:670.213333pt;}
.x16{left:683.480000pt;}
.x3{left:689.400000pt;}
.x14{left:692.933333pt;}
.x15{left:698.213333pt;}
.x6{left:699.173333pt;}
}




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