
    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_ceed9cbcbdb1765a81049c9a.woff')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_951da0de3fdcba70b797d665.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_7875b563812afdd643e27091.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_7fa2b62b10ffdfe652fbc9e2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.032715;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_dd8ab756d6747055c8037cf6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.026855;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_01ea7f8400d92df4533d2bb4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_f610a931429222e8f5cfca85.woff')format("woff");}.ff7{font-family:ff7;line-height:0.991000;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_023df7feb77498dc88f363ce.woff')format("woff");}.ff8{font-family:ff8;line-height:0.984048;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_7a7d504254bcb8a3b6308018.woff')format("woff");}.ff9{font-family:ff9;line-height:0.710938;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_f14a7d31131dde73bde57f7c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_742ef8e68a0bf97a8d7364e1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_8984881e9bc041597878c6b7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.902832;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_1a2270565b5f2ab4074740a0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.984000;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_856f6019cc20637a308c0729.woff')format("woff");}.ffe{font-family:ffe;line-height:0.973633;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_fb6723e087216b6a0628fc6d.woff')format("woff");}.fff{font-family:fff;line-height:0.771585;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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.244997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244997,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);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.982000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:30.000000px;}
.ls13{letter-spacing:-6.240000px;}
.ls20{letter-spacing:-2.280000px;}
.ls19{letter-spacing:-1.122000px;}
.ls6{letter-spacing:-1.026000px;}
.lsf{letter-spacing:-0.960000px;}
.ls11{letter-spacing:-0.912000px;}
.ls1a{letter-spacing:-0.858000px;}
.ls15{letter-spacing:-0.768000px;}
.ls5{letter-spacing:-0.691200px;}
.ls16{letter-spacing:-0.672000px;}
.ls17{letter-spacing:-0.624000px;}
.lse{letter-spacing:-0.594000px;}
.ls18{letter-spacing:-0.576000px;}
.ls10{letter-spacing:-0.336000px;}
.ls12{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.264000px;}
.ls1b{letter-spacing:-0.198000px;}
.ls14{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.132000px;}
.ls1d{letter-spacing:-0.066000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.025800px;}
.ls1f{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.330000px;}
.ls7{letter-spacing:0.396000px;}
.ls8{letter-spacing:0.726000px;}
.lsb{letter-spacing:0.792000px;}
.ls9{letter-spacing:0.924000px;}
.lsd{letter-spacing:1.122000px;}
.lsc{letter-spacing:1.320000px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.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;}
}
.ws28{word-spacing:-17.928000px;}
.ws9c{word-spacing:-17.622000px;}
.ws9b{word-spacing:-17.292000px;}
.ws4f{word-spacing:-16.896000px;}
.wsc8{word-spacing:-16.500000px;}
.ws10f{word-spacing:-16.434000px;}
.ws10e{word-spacing:-16.368000px;}
.wse7{word-spacing:-15.378000px;}
.ws2{word-spacing:-14.940000px;}
.ws13d{word-spacing:-13.716000px;}
.ws120{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.474000px;}
.ws5{word-spacing:-12.150000px;}
.wsae{word-spacing:-12.000000px;}
.ws4{word-spacing:-11.772000px;}
.wsaf{word-spacing:-11.664000px;}
.ws0{word-spacing:-10.896000px;}
.ws1{word-spacing:-9.417600px;}
.ws127{word-spacing:-7.870500px;}
.wsfd{word-spacing:-4.356000px;}
.ws16f{word-spacing:-4.104000px;}
.ws11d{word-spacing:-3.894000px;}
.wsf2{word-spacing:-3.762000px;}
.ws113{word-spacing:-3.696000px;}
.wsfe{word-spacing:-3.630000px;}
.ws16b{word-spacing:-3.456000px;}
.ws10a{word-spacing:-3.366000px;}
.ws154{word-spacing:-3.348000px;}
.ws11c{word-spacing:-3.300000px;}
.ws44{word-spacing:-3.234000px;}
.ws101{word-spacing:-3.168000px;}
.wsf3{word-spacing:-3.102000px;}
.ws94{word-spacing:-3.036000px;}
.wsb1{word-spacing:-2.970000px;}
.ws37{word-spacing:-2.904000px;}
.wscd{word-spacing:-2.838000px;}
.wsfa{word-spacing:-2.772000px;}
.ws87{word-spacing:-2.706000px;}
.wsfb{word-spacing:-2.640000px;}
.wsd5{word-spacing:-2.592000px;}
.wsa3{word-spacing:-2.574000px;}
.ws15b{word-spacing:-2.538000px;}
.wsf1{word-spacing:-2.508000px;}
.ws48{word-spacing:-2.442000px;}
.ws14{word-spacing:-2.430000px;}
.ws49{word-spacing:-2.376000px;}
.ws160{word-spacing:-2.322000px;}
.ws5f{word-spacing:-2.310000px;}
.ws1a{word-spacing:-2.268000px;}
.ws40{word-spacing:-2.244000px;}
.wsb0{word-spacing:-2.178000px;}
.wsc{word-spacing:-2.160000px;}
.wsd9{word-spacing:-2.112000px;}
.ws16c{word-spacing:-2.052000px;}
.wsb6{word-spacing:-2.046000px;}
.ws24{word-spacing:-1.998000px;}
.ws90{word-spacing:-1.980000px;}
.ws15c{word-spacing:-1.944000px;}
.ws7d{word-spacing:-1.914000px;}
.wsb8{word-spacing:-1.848000px;}
.ws21{word-spacing:-1.836000px;}
.ws7b{word-spacing:-1.782000px;}
.ws175{word-spacing:-1.728000px;}
.ws3e{word-spacing:-1.716000px;}
.ws177{word-spacing:-1.674000px;}
.ws3b{word-spacing:-1.650000px;}
.ws144{word-spacing:-1.620000px;}
.ws45{word-spacing:-1.584000px;}
.ws78{word-spacing:-1.518000px;}
.ws22{word-spacing:-1.458000px;}
.ws98{word-spacing:-1.452000px;}
.ws1b{word-spacing:-1.404000px;}
.ws10b{word-spacing:-1.386000px;}
.wse0{word-spacing:-1.320000px;}
.wse6{word-spacing:-1.296000px;}
.ws66{word-spacing:-1.254000px;}
.ws52{word-spacing:-1.188000px;}
.ws170{word-spacing:-1.134000px;}
.ws56{word-spacing:-1.122000px;}
.ws132{word-spacing:-1.080000px;}
.ws35{word-spacing:-1.056000px;}
.ws141{word-spacing:-1.026000px;}
.ws2a{word-spacing:-0.990000px;}
.ws1e{word-spacing:-0.972000px;}
.ws54{word-spacing:-0.924000px;}
.wsd0{word-spacing:-0.918000px;}
.wsd{word-spacing:-0.864000px;}
.wse9{word-spacing:-0.858000px;}
.ws86{word-spacing:-0.792000px;}
.ws143{word-spacing:-0.756000px;}
.wsdf{word-spacing:-0.726000px;}
.ws51{word-spacing:-0.660000px;}
.ws14b{word-spacing:-0.648000px;}
.ws43{word-spacing:-0.594000px;}
.ws161{word-spacing:-0.540000px;}
.ws2b{word-spacing:-0.528000px;}
.ws138{word-spacing:-0.486000px;}
.wsd8{word-spacing:-0.480000px;}
.wse4{word-spacing:-0.462000px;}
.wsb{word-spacing:-0.432000px;}
.ws58{word-spacing:-0.396000px;}
.wsd7{word-spacing:-0.384000px;}
.ws18{word-spacing:-0.378000px;}
.wsba{word-spacing:-0.336000px;}
.ws4d{word-spacing:-0.330000px;}
.wsd6{word-spacing:-0.270000px;}
.ws31{word-spacing:-0.264000px;}
.ws9{word-spacing:-0.216000px;}
.ws4e{word-spacing:-0.198000px;}
.ws155{word-spacing:-0.162000px;}
.ws7e{word-spacing:-0.132000px;}
.ws6{word-spacing:-0.111318px;}
.wsa1{word-spacing:-0.066000px;}
.ws23{word-spacing:-0.054000px;}
.wsbc{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws2c{word-spacing:0.066000px;}
.ws20{word-spacing:0.108000px;}
.ws32{word-spacing:0.132000px;}
.ws36{word-spacing:0.198000px;}
.ws125{word-spacing:0.216000px;}
.ws77{word-spacing:0.264000px;}
.wsee{word-spacing:0.270000px;}
.wsa8{word-spacing:0.330000px;}
.wsbb{word-spacing:0.336000px;}
.wsb4{word-spacing:0.396000px;}
.wscc{word-spacing:0.462000px;}
.ws167{word-spacing:0.486000px;}
.ws6b{word-spacing:0.528000px;}
.ws134{word-spacing:0.540000px;}
.ws13{word-spacing:0.594000px;}
.wsf7{word-spacing:0.648000px;}
.ws57{word-spacing:0.660000px;}
.wsa{word-spacing:0.691200px;}
.ws178{word-spacing:0.702000px;}
.ws30{word-spacing:0.726000px;}
.ws14d{word-spacing:0.756000px;}
.ws61{word-spacing:0.792000px;}
.ws13e{word-spacing:0.810000px;}
.wsc3{word-spacing:0.858000px;}
.ws15{word-spacing:0.864000px;}
.ws150{word-spacing:0.918000px;}
.ws99{word-spacing:0.924000px;}
.ws135{word-spacing:0.972000px;}
.wsf8{word-spacing:0.990000px;}
.ws19{word-spacing:1.026000px;}
.ws81{word-spacing:1.056000px;}
.ws1d{word-spacing:1.080000px;}
.ws41{word-spacing:1.122000px;}
.ws55{word-spacing:1.188000px;}
.ws42{word-spacing:1.254000px;}
.ws17{word-spacing:1.296000px;}
.ws9a{word-spacing:1.320000px;}
.ws146{word-spacing:1.350000px;}
.ws2d{word-spacing:1.386000px;}
.ws14f{word-spacing:1.404000px;}
.ws3d{word-spacing:1.452000px;}
.ws139{word-spacing:1.458000px;}
.ws62{word-spacing:1.518000px;}
.ws128{word-spacing:1.566000px;}
.wsa7{word-spacing:1.584000px;}
.wsf{word-spacing:1.620000px;}
.ws108{word-spacing:1.650000px;}
.ws14c{word-spacing:1.674000px;}
.ws72{word-spacing:1.716000px;}
.ws5a{word-spacing:1.782000px;}
.ws7c{word-spacing:1.848000px;}
.ws15a{word-spacing:1.890000px;}
.wsf0{word-spacing:1.914000px;}
.ws1f{word-spacing:1.944000px;}
.ws75{word-spacing:1.980000px;}
.ws172{word-spacing:1.998000px;}
.wsab{word-spacing:2.046000px;}
.ws136{word-spacing:2.052000px;}
.wseb{word-spacing:2.112000px;}
.ws16{word-spacing:2.160000px;}
.ws8f{word-spacing:2.178000px;}
.ws96{word-spacing:2.244000px;}
.ws176{word-spacing:2.280000px;}
.ws2f{word-spacing:2.310000px;}
.ws10{word-spacing:2.376000px;}
.wse{word-spacing:2.430000px;}
.ws50{word-spacing:2.442000px;}
.ws122{word-spacing:2.484000px;}
.wscb{word-spacing:2.508000px;}
.ws168{word-spacing:2.538000px;}
.wsda{word-spacing:2.574000px;}
.ws126{word-spacing:2.592000px;}
.ws80{word-spacing:2.640000px;}
.ws16d{word-spacing:2.700000px;}
.wsdc{word-spacing:2.706000px;}
.ws53{word-spacing:2.772000px;}
.ws121{word-spacing:2.808000px;}
.ws7f{word-spacing:2.838000px;}
.wsa6{word-spacing:2.904000px;}
.ws166{word-spacing:2.916000px;}
.ws46{word-spacing:2.970000px;}
.ws6e{word-spacing:3.036000px;}
.ws11{word-spacing:3.078000px;}
.wse2{word-spacing:3.102000px;}
.ws6d{word-spacing:3.168000px;}
.ws2e{word-spacing:3.234000px;}
.ws137{word-spacing:3.294000px;}
.wsef{word-spacing:3.300000px;}
.ws16e{word-spacing:3.348000px;}
.ws79{word-spacing:3.366000px;}
.ws1c{word-spacing:3.402000px;}
.ws73{word-spacing:3.432000px;}
.ws149{word-spacing:3.456000px;}
.ws106{word-spacing:3.498000px;}
.ws153{word-spacing:3.510000px;}
.ws84{word-spacing:3.564000px;}
.ws162{word-spacing:3.618000px;}
.ws88{word-spacing:3.630000px;}
.ws124{word-spacing:3.672000px;}
.ws4a{word-spacing:3.696000px;}
.ws27{word-spacing:3.726000px;}
.ws103{word-spacing:3.762000px;}
.wsea{word-spacing:3.828000px;}
.ws25{word-spacing:3.834000px;}
.ws39{word-spacing:3.894000px;}
.wsb7{word-spacing:3.960000px;}
.ws169{word-spacing:3.996000px;}
.ws8a{word-spacing:4.026000px;}
.ws34{word-spacing:4.092000px;}
.ws26{word-spacing:4.140000px;}
.ws3a{word-spacing:4.158000px;}
.wsec{word-spacing:4.212000px;}
.ws117{word-spacing:4.224000px;}
.wsed{word-spacing:4.266000px;}
.ws92{word-spacing:4.290000px;}
.ws156{word-spacing:4.320000px;}
.ws83{word-spacing:4.356000px;}
.ws173{word-spacing:4.374000px;}
.ws5d{word-spacing:4.422000px;}
.ws12{word-spacing:4.428000px;}
.ws38{word-spacing:4.488000px;}
.wsb5{word-spacing:4.554000px;}
.ws13b{word-spacing:4.590000px;}
.wse3{word-spacing:4.620000px;}
.ws59{word-spacing:4.686000px;}
.ws12c{word-spacing:4.698000px;}
.ws63{word-spacing:4.752000px;}
.ws33{word-spacing:4.818000px;}
.ws3f{word-spacing:4.884000px;}
.ws13c{word-spacing:4.914000px;}
.ws118{word-spacing:4.950000px;}
.ws8e{word-spacing:5.016000px;}
.ws157{word-spacing:5.022000px;}
.wsc6{word-spacing:5.082000px;}
.ws12a{word-spacing:5.130000px;}
.ws11a{word-spacing:5.148000px;}
.ws10c{word-spacing:5.214000px;}
.ws131{word-spacing:5.238000px;}
.ws102{word-spacing:5.280000px;}
.ws163{word-spacing:5.292000px;}
.ws89{word-spacing:5.346000px;}
.ws142{word-spacing:5.400000px;}
.wsb3{word-spacing:5.412000px;}
.ws3c{word-spacing:5.478000px;}
.ws82{word-spacing:5.544000px;}
.ws129{word-spacing:5.562000px;}
.wsf4{word-spacing:5.610000px;}
.ws15d{word-spacing:5.670000px;}
.ws11b{word-spacing:5.676000px;}
.ws105{word-spacing:5.742000px;}
.ws12b{word-spacing:5.778000px;}
.wsde{word-spacing:5.808000px;}
.wsc4{word-spacing:5.874000px;}
.ws100{word-spacing:5.940000px;}
.ws123{word-spacing:5.994000px;}
.ws8c{word-spacing:6.006000px;}
.ws4c{word-spacing:6.072000px;}
.ws104{word-spacing:6.138000px;}
.ws148{word-spacing:6.156000px;}
.ws119{word-spacing:6.204000px;}
.ws93{word-spacing:6.270000px;}
.ws159{word-spacing:6.318000px;}
.wsc9{word-spacing:6.336000px;}
.wsb9{word-spacing:6.402000px;}
.ws133{word-spacing:6.426000px;}
.ws112{word-spacing:6.468000px;}
.wsdb{word-spacing:6.534000px;}
.ws7a{word-spacing:6.600000px;}
.ws12d{word-spacing:6.642000px;}
.ws97{word-spacing:6.666000px;}
.ws114{word-spacing:6.732000px;}
.ws68{word-spacing:6.798000px;}
.ws110{word-spacing:6.864000px;}
.wsf9{word-spacing:6.930000px;}
.wsd4{word-spacing:6.996000px;}
.ws70{word-spacing:7.062000px;}
.ws9d{word-spacing:7.128000px;}
.ws29{word-spacing:7.194000px;}
.ws5c{word-spacing:7.260000px;}
.ws6a{word-spacing:7.326000px;}
.ws47{word-spacing:7.392000px;}
.wsc7{word-spacing:7.458000px;}
.ws5b{word-spacing:7.524000px;}
.wsc5{word-spacing:7.590000px;}
.wsa0{word-spacing:7.656000px;}
.ws174{word-spacing:7.668000px;}
.wsa9{word-spacing:7.722000px;}
.ws12e{word-spacing:7.776000px;}
.ws71{word-spacing:7.788000px;}
.ws14a{word-spacing:7.830000px;}
.ws64{word-spacing:7.854000px;}
.wsfc{word-spacing:7.920000px;}
.ws164{word-spacing:7.992000px;}
.ws6c{word-spacing:8.052000px;}
.wsa2{word-spacing:8.118000px;}
.ws111{word-spacing:8.184000px;}
.ws14e{word-spacing:8.208000px;}
.ws11e{word-spacing:8.250000px;}
.ws9e{word-spacing:8.316000px;}
.ws60{word-spacing:8.448000px;}
.wsf5{word-spacing:8.514000px;}
.wsff{word-spacing:8.580000px;}
.ws95{word-spacing:8.646000px;}
.ws8d{word-spacing:8.712000px;}
.ws8b{word-spacing:8.778000px;}
.wsf6{word-spacing:8.844000px;}
.ws130{word-spacing:8.910000px;}
.ws145{word-spacing:8.964000px;}
.wse1{word-spacing:8.976000px;}
.wsca{word-spacing:9.042000px;}
.ws165{word-spacing:9.072000px;}
.wsb2{word-spacing:9.108000px;}
.ws115{word-spacing:9.174000px;}
.ws69{word-spacing:9.306000px;}
.ws85{word-spacing:9.372000px;}
.ws16a{word-spacing:9.396000px;}
.ws5e{word-spacing:9.438000px;}
.ws76{word-spacing:9.504000px;}
.wscf{word-spacing:9.570000px;}
.ws9f{word-spacing:9.636000px;}
.wsa5{word-spacing:9.702000px;}
.ws4b{word-spacing:9.768000px;}
.ws6f{word-spacing:9.834000px;}
.ws15f{word-spacing:9.936000px;}
.ws151{word-spacing:9.990000px;}
.ws107{word-spacing:10.230000px;}
.wsad{word-spacing:10.296000px;}
.ws147{word-spacing:10.314000px;}
.wsac{word-spacing:10.362000px;}
.ws10d{word-spacing:10.494000px;}
.wsaa{word-spacing:10.758000px;}
.wse5{word-spacing:10.824000px;}
.ws74{word-spacing:11.220000px;}
.ws65{word-spacing:11.418000px;}
.ws91{word-spacing:11.550000px;}
.ws67{word-spacing:11.616000px;}
.ws11f{word-spacing:12.606000px;}
.ws140{word-spacing:13.230000px;}
.ws152{word-spacing:13.446000px;}
.ws158{word-spacing:13.824000px;}
.wsa4{word-spacing:14.322000px;}
.ws109{word-spacing:14.388000px;}
.ws171{word-spacing:14.688000px;}
.ws116{word-spacing:14.784000px;}
.wsce{word-spacing:16.170000px;}
.ws13f{word-spacing:16.308000px;}
.ws15e{word-spacing:19.926000px;}
.ws8{word-spacing:21.780000px;}
.ws13a{word-spacing:25.650000px;}
.ws12f{word-spacing:37.800000px;}
.wsd2{word-spacing:46.469400px;}
.wsd3{word-spacing:88.541400px;}
.wse8{word-spacing:163.974600px;}
.wsdd{word-spacing:230.253000px;}
.wsbd{word-spacing:388.508400px;}
.wsd1{word-spacing:434.712600px;}
.wsc1{word-spacing:514.699800px;}
.wsc0{word-spacing:516.236400px;}
.wsbf{word-spacing:526.699800px;}
.wsbe{word-spacing:528.236400px;}
.wsc2{word-spacing:573.154200px;}
._3{margin-left:-16.799400px;}
._72{margin-left:-12.208800px;}
._9{margin-left:-10.384200px;}
._8{margin-left:-9.093600px;}
._5{margin-left:-7.392600px;}
._16{margin-left:-6.340200px;}
._7{margin-left:-5.289000px;}
._6{margin-left:-4.035600px;}
._2{margin-left:-2.407200px;}
._0{margin-left:-1.315800px;}
._1{width:1.887000px;}
._74{width:2.902200px;}
._a{width:4.720800px;}
._33{width:6.240000px;}
._73{width:7.523400px;}
._b{width:11.985600px;}
._75{width:29.479800px;}
._4{width:36.624000px;}
._11{width:42.795600px;}
._41{width:50.789400px;}
._38{width:57.605400px;}
._3b{width:59.769000px;}
._c{width:71.325600px;}
._47{width:74.150400px;}
._37{width:75.716400px;}
._42{width:76.746600px;}
._17{width:83.616600px;}
._34{width:87.766800px;}
._40{width:101.796600px;}
._39{width:107.785200px;}
._14{width:118.436400px;}
._10{width:132.584400px;}
._44{width:183.198600px;}
._f{width:187.302600px;}
._12{width:189.391200px;}
._45{width:200.213400px;}
._13{width:207.198600px;}
._15{width:228.894000px;}
._3c{width:239.346000px;}
._4f{width:241.677000px;}
._6f{width:281.905200px;}
._35{width:287.721000px;}
._3a{width:298.990200px;}
._3e{width:306.430200px;}
._3f{width:316.197000px;}
._43{width:332.734200px;}
._6a{width:342.630600px;}
._4d{width:345.145200px;}
._26{width:348.388800px;}
._36{width:381.598200px;}
._61{width:386.361600px;}
._60{width:417.149400px;}
._63{width:421.490400px;}
._3d{width:427.294200px;}
._29{width:431.133000px;}
._2a{width:455.176200px;}
._5d{width:459.220800px;}
._5e{width:465.106200px;}
._6e{width:469.258200px;}
._27{width:479.925000px;}
._1b{width:491.925000px;}
._1c{width:503.617200px;}
._66{width:510.178800px;}
._5f{width:521.698800px;}
._68{width:541.003800px;}
._70{width:542.874000px;}
._32{width:548.155800px;}
._21{width:551.897400px;}
._52{width:563.152200px;}
._19{width:564.753600px;}
._64{width:572.251800px;}
._67{width:574.755000px;}
._58{width:594.284400px;}
._69{width:595.954800px;}
._56{width:603.356400px;}
._62{width:609.066000px;}
._65{width:614.502600px;}
._46{width:626.163600px;}
._4b{width:633.780600px;}
._5b{width:639.845400px;}
._6d{width:643.430400px;}
._50{width:645.205800px;}
._71{width:648.466800px;}
._6b{width:658.786200px;}
._5c{width:670.285800px;}
._4a{width:692.108400px;}
._55{width:704.569200px;}
._6c{width:706.410000px;}
._48{width:707.547000px;}
._57{width:711.692400px;}
._2d{width:717.777000px;}
._54{width:729.769200px;}
._4e{width:753.589800px;}
._49{width:757.698000px;}
._30{width:761.034000px;}
._2f{width:769.617000px;}
._51{width:778.069800px;}
._53{width:781.689600px;}
._59{width:788.283000px;}
._5a{width:797.689200px;}
._20{width:807.585000px;}
._d{width:815.448600px;}
._e{width:819.051000px;}
._28{width:827.560200px;}
._24{width:841.873200px;}
._1d{width:847.473000px;}
._4c{width:853.366200px;}
._2e{width:856.504200px;}
._2c{width:862.410000px;}
._23{width:881.620800px;}
._1e{width:887.505000px;}
._31{width:893.025000px;}
._1f{width:901.617000px;}
._22{width:910.504200px;}
._2b{width:913.904400px;}
._25{width:932.452800px;}
._1a{width:937.404000px;}
._18{width:999.729000px;}
.fc3{color:rgb(67,33,78);}
.fc1{color:rgb(59,28,68);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:22.096800px;}
.fsb{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.fs9{font-size:111.318000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:1.204950px;}
.y40{bottom:45.774196px;}
.y1{bottom:68.124750px;}
.y42{bottom:71.212050px;}
.y43{bottom:75.036150px;}
.ya7{bottom:113.078700px;}
.y74{bottom:113.078850px;}
.ye{bottom:117.875550px;}
.y2f{bottom:127.027950px;}
.yd{bottom:132.275550px;}
.ya6{bottom:134.078700px;}
.y73{bottom:134.078850px;}
.yc{bottom:146.675550px;}
.y2e{bottom:146.827950px;}
.ya5{bottom:155.078700px;}
.y72{bottom:155.078850px;}
.yb{bottom:161.075550px;}
.ya4{bottom:176.078700px;}
.y71{bottom:176.078850px;}
.y140{bottom:181.529250px;}
.y2d{bottom:187.887750px;}
.y128{bottom:189.513600px;}
.ya3{bottom:197.078700px;}
.y70{bottom:197.078850px;}
.y3b{bottom:199.392600px;}
.y2c{bottom:207.687900px;}
.y3a{bottom:217.392600px;}
.ya2{bottom:218.078700px;}
.y6f{bottom:218.078850px;}
.y127{bottom:221.811000px;}
.y2b{bottom:227.487900px;}
.y137{bottom:232.441050px;}
.y39{bottom:235.392600px;}
.ya1{bottom:239.078700px;}
.y6e{bottom:239.078850px;}
.y2a{bottom:247.287900px;}
.y38{bottom:253.392600px;}
.y12f{bottom:253.441050px;}
.ya0{bottom:260.078700px;}
.y6d{bottom:260.078850px;}
.y29{bottom:267.087900px;}
.y37{bottom:271.392600px;}
.yc2{bottom:274.440900px;}
.y9f{bottom:281.078700px;}
.y6c{bottom:281.078850px;}
.y125{bottom:282.563550px;}
.y28{bottom:286.887750px;}
.y36{bottom:289.392600px;}
.yf4{bottom:290.902650px;}
.y9e{bottom:302.078700px;}
.y6b{bottom:302.078850px;}
.y124{bottom:303.169050px;}
.y27{bottom:306.687900px;}
.yf1{bottom:307.252350px;}
.y35{bottom:307.392600px;}
.yf3{bottom:310.702650px;}
.y9d{bottom:323.078700px;}
.y6a{bottom:323.078850px;}
.y123{bottom:323.774400px;}
.y34{bottom:325.392600px;}
.y26{bottom:326.487900px;}
.yd9{bottom:327.507150px;}
.y13f{bottom:328.529250px;}
.yf0{bottom:328.708200px;}
.y134{bottom:337.441050px;}
.y9c{bottom:344.078700px;}
.y69{bottom:344.078850px;}
.y122{bottom:344.379750px;}
.y25{bottom:346.287900px;}
.yd8{bottom:348.963000px;}
.yef{bottom:350.164050px;}
.yf5{bottom:358.441050px;}
.y33{bottom:360.400500px;}
.y121{bottom:364.985250px;}
.y9b{bottom:365.078700px;}
.y68{bottom:365.078850px;}
.y24{bottom:366.087900px;}
.yd7{bottom:370.418850px;}
.yee{bottom:371.619750px;}
.y32{bottom:378.400500px;}
.y12d{bottom:378.874200px;}
.y120{bottom:385.590600px;}
.y23{bottom:385.887750px;}
.y9a{bottom:386.078700px;}
.y67{bottom:386.078850px;}
.yd6{bottom:391.874700px;}
.yed{bottom:393.075600px;}
.y31{bottom:396.400500px;}
.y12c{bottom:398.674200px;}
.y22{bottom:405.687900px;}
.y11f{bottom:406.195950px;}
.y99{bottom:407.078700px;}
.y66{bottom:407.078850px;}
.y10e{bottom:410.028750px;}
.yd5{bottom:413.330400px;}
.y30{bottom:414.400500px;}
.yec{bottom:414.531300px;}
.y132{bottom:421.441050px;}
.y21{bottom:425.487900px;}
.y11e{bottom:426.801450px;}
.y98{bottom:428.078700px;}
.y65{bottom:428.078850px;}
.y10d{bottom:431.484450px;}
.yd4{bottom:434.786250px;}
.yeb{bottom:435.987150px;}
.y20{bottom:445.287900px;}
.y11d{bottom:447.406800px;}
.y97{bottom:449.078700px;}
.y64{bottom:449.078850px;}
.y10c{bottom:452.940300px;}
.yd3{bottom:456.241950px;}
.yea{bottom:457.443000px;}
.y1f{bottom:465.087900px;}
.y11c{bottom:468.012150px;}
.y96{bottom:470.078700px;}
.y63{bottom:470.078850px;}
.y10b{bottom:474.396150px;}
.yd2{bottom:477.697800px;}
.ye9{bottom:478.898700px;}
.y1e{bottom:484.887750px;}
.y11b{bottom:488.617650px;}
.y95{bottom:491.078700px;}
.y62{bottom:491.078850px;}
.ye8{bottom:493.898700px;}
.y10a{bottom:495.851850px;}
.yd1{bottom:499.153500px;}
.y1d{bottom:504.687900px;}
.y11a{bottom:509.223000px;}
.y94{bottom:512.078700px;}
.y61{bottom:512.078850px;}
.ye7{bottom:515.354550px;}
.y109{bottom:517.307700px;}
.yd0{bottom:520.609350px;}
.y1c{bottom:524.487900px;}
.y119{bottom:529.828350px;}
.ye6{bottom:530.354550px;}
.y93{bottom:533.078700px;}
.y60{bottom:533.078850px;}
.y13e{bottom:538.529250px;}
.y108{bottom:538.763550px;}
.ycf{bottom:542.065200px;}
.y1b{bottom:544.287900px;}
.y118{bottom:550.433850px;}
.ye5{bottom:551.810400px;}
.y92{bottom:554.078700px;}
.y5f{bottom:554.078850px;}
.y107{bottom:560.219400px;}
.yce{bottom:563.521050px;}
.y1a{bottom:564.087900px;}
.y117{bottom:571.039200px;}
.ye3{bottom:573.566100px;}
.y91{bottom:575.078700px;}
.y5e{bottom:575.078850px;}
.ye2{bottom:581.066100px;}
.y106{bottom:581.675100px;}
.y19{bottom:583.887750px;}
.ycd{bottom:584.976750px;}
.ye4{bottom:588.566100px;}
.y116{bottom:591.644550px;}
.y90{bottom:596.078700px;}
.y5d{bottom:596.078850px;}
.y105{bottom:603.130950px;}
.y18{bottom:603.687900px;}
.ycc{bottom:606.432600px;}
.yda{bottom:610.441050px;}
.y115{bottom:612.250050px;}
.y8f{bottom:617.078700px;}
.y5c{bottom:617.078850px;}
.ye1{bottom:619.598400px;}
.y17{bottom:623.487900px;}
.y104{bottom:624.586650px;}
.ycb{bottom:627.888300px;}
.y136{bottom:631.441050px;}
.y114{bottom:633.155400px;}
.y8e{bottom:638.078700px;}
.y5b{bottom:638.078850px;}
.ye0{bottom:639.398400px;}
.y113{bottom:640.655400px;}
.y16{bottom:643.287900px;}
.y103{bottom:646.042500px;}
.yca{bottom:649.344150px;}
.y8d{bottom:659.078700px;}
.y5a{bottom:659.078850px;}
.y15{bottom:663.087900px;}
.y13d{bottom:664.529250px;}
.y102{bottom:667.498200px;}
.y126{bottom:670.125000px;}
.yc9{bottom:670.800000px;}
.yaa{bottom:672.513600px;}
.y112{bottom:678.337200px;}
.y8c{bottom:680.078700px;}
.y59{bottom:680.078850px;}
.y14{bottom:682.887750px;}
.y144{bottom:683.078850px;}
.y101{bottom:688.954050px;}
.yc8{bottom:692.255700px;}
.ydf{bottom:694.197750px;}
.y12e{bottom:694.441050px;}
.y111{bottom:698.137200px;}
.y8b{bottom:701.078700px;}
.y58{bottom:701.078850px;}
.y13{bottom:702.687900px;}
.ya9{bottom:704.811000px;}
.y100{bottom:710.409900px;}
.yac{bottom:711.380850px;}
.yc7{bottom:713.711550px;}
.yde{bottom:713.997750px;}
.y8a{bottom:722.078700px;}
.y57{bottom:722.078850px;}
.y12{bottom:722.487900px;}
.y12b{bottom:724.935150px;}
.y13c{bottom:727.529250px;}
.yff{bottom:731.865600px;}
.yc6{bottom:735.167250px;}
.y11{bottom:742.287900px;}
.y89{bottom:743.078700px;}
.y56{bottom:743.078850px;}
.y12a{bottom:744.735150px;}
.yfe{bottom:753.321450px;}
.yc5{bottom:756.923100px;}
.y110{bottom:759.003600px;}
.y88{bottom:764.078700px;}
.y55{bottom:764.078850px;}
.yc1{bottom:764.516100px;}
.y129{bottom:764.535150px;}
.y10{bottom:773.385300px;}
.yfd{bottom:774.777300px;}
.y10f{bottom:778.803600px;}
.yc0{bottom:779.516100px;}
.y87{bottom:785.078700px;}
.y54{bottom:785.078850px;}
.yc4{bottom:787.955250px;}
.y13b{bottom:790.529250px;}
.ybf{bottom:794.516100px;}
.yfc{bottom:796.233000px;}
.y86{bottom:806.078700px;}
.y53{bottom:806.078850px;}
.yc3{bottom:807.755250px;}
.ybe{bottom:815.971800px;}
.yfb{bottom:817.688850px;}
.y133{bottom:820.441050px;}
.y85{bottom:827.078700px;}
.y52{bottom:827.078850px;}
.ybd{bottom:830.971800px;}
.ydd{bottom:831.607650px;}
.yfa{bottom:839.144550px;}
.y131{bottom:841.441050px;}
.ybc{bottom:845.971800px;}
.y84{bottom:848.078700px;}
.y51{bottom:848.078850px;}
.ydc{bottom:851.407650px;}
.ya{bottom:852.666900px;}
.y13a{bottom:853.936950px;}
.yf9{bottom:860.600400px;}
.ybb{bottom:860.971800px;}
.y83{bottom:869.078700px;}
.y50{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.ydb{bottom:871.207650px;}
.yf8{bottom:882.356250px;}
.yba{bottom:882.427650px;}
.y139{bottom:883.440900px;}
.y8{bottom:888.666900px;}
.y82{bottom:890.078700px;}
.y4f{bottom:890.078850px;}
.yb9{bottom:897.427650px;}
.y7{bottom:906.666900px;}
.y81{bottom:911.078700px;}
.y4e{bottom:911.078850px;}
.yf7{bottom:913.388400px;}
.yb8{bottom:918.883500px;}
.y143{bottom:924.513600px;}
.y6{bottom:924.666900px;}
.y80{bottom:932.078700px;}
.y4d{bottom:932.078850px;}
.yf6{bottom:933.188400px;}
.yb7{bottom:933.883500px;}
.y142{bottom:945.513600px;}
.y7f{bottom:953.078700px;}
.y4c{bottom:953.078850px;}
.yb6{bottom:955.339200px;}
.y5{bottom:959.674650px;}
.y135{bottom:967.441050px;}
.yb5{bottom:970.339200px;}
.y7e{bottom:974.078700px;}
.y4b{bottom:974.078850px;}
.y141{bottom:977.811000px;}
.y4{bottom:979.474800px;}
.yb4{bottom:985.339200px;}
.yf2{bottom:988.441050px;}
.y7d{bottom:995.078700px;}
.y4a{bottom:995.078850px;}
.yb3{bottom:1006.795050px;}
.y7c{bottom:1016.078700px;}
.y49{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.yb2{bottom:1021.795050px;}
.y130{bottom:1030.441050px;}
.yb1{bottom:1036.795050px;}
.y7b{bottom:1037.078700px;}
.y48{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.yb0{bottom:1051.795050px;}
.y7a{bottom:1058.078700px;}
.y47{bottom:1058.078850px;}
.yaf{bottom:1073.250750px;}
.y79{bottom:1079.078700px;}
.y46{bottom:1079.078850px;}
.yae{bottom:1080.750750px;}
.y78{bottom:1100.078700px;}
.y76{bottom:1100.078850px;}
.yf{bottom:1109.815500px;}
.yab{bottom:1110.569850px;}
.ya8{bottom:1110.747000px;}
.y45{bottom:1110.885900px;}
.y138{bottom:1111.570800px;}
.yad{bottom:1119.282900px;}
.y77{bottom:1121.078700px;}
.y75{bottom:1121.078850px;}
.y3e{bottom:1135.732500px;}
.y41{bottom:1152.015600px;}
.y3d{bottom:1155.615300px;}
.y3c{bottom:1175.115300px;}
.y44{bottom:1178.691750px;}
.he{height:16.788389px;}
.h16{height:34.320000px;}
.h7{height:34.446094px;}
.h15{height:34.656000px;}
.h2{height:38.039062px;}
.h10{height:38.273438px;}
.h6{height:38.531250px;}
.ha{height:38.988000px;}
.h19{height:40.712004px;}
.h8{height:41.053711px;}
.hc{height:42.793945px;}
.h1a{height:42.900000px;}
.hb{height:43.057617px;}
.h9{height:45.615234px;}
.h12{height:47.652000px;}
.h13{height:50.176758px;}
.h18{height:50.242494px;}
.hd{height:50.566500px;}
.h4{height:50.836500px;}
.h5{height:50.837100px;}
.h11{height:54.738281px;}
.h14{height:64.320000px;}
.h3{height:77.545898px;}
.hf{height:80.825130px;}
.h17{height:94.320000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:185.884500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.068950px;}
.xd{left:108.286950px;}
.xa{left:111.091350px;}
.x11{left:112.251900px;}
.xf{left:113.940300px;}
.x5{left:119.576400px;}
.x6{left:121.047600px;}
.x7{left:123.420750px;}
.x1f{left:140.029650px;}
.x18{left:183.359700px;}
.x10{left:185.285850px;}
.x12{left:198.335400px;}
.x19{left:202.082550px;}
.x13{left:265.322850px;}
.x1b{left:276.171600px;}
.x4{left:300.189000px;}
.x20{left:309.031200px;}
.xc{left:317.196900px;}
.xe{left:334.204800px;}
.x1c{left:373.744800px;}
.x1d{left:380.308500px;}
.x3{left:396.050700px;}
.x1e{left:444.755850px;}
.x9{left:655.307550px;}
.x8{left:692.321250px;}
.x21{left:719.464350px;}
.x14{left:728.787450px;}
.x15{left:739.824750px;}
.x17{left:742.110750px;}
.x16{left:748.620600px;}
.x1a{left:806.560800px;}
.x1{left:813.069600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.984000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:26.666667pt;}
.ls13{letter-spacing:-5.546667pt;}
.ls20{letter-spacing:-2.026667pt;}
.ls19{letter-spacing:-0.997333pt;}
.ls6{letter-spacing:-0.912000pt;}
.lsf{letter-spacing:-0.853333pt;}
.ls11{letter-spacing:-0.810667pt;}
.ls1a{letter-spacing:-0.762667pt;}
.ls15{letter-spacing:-0.682667pt;}
.ls5{letter-spacing:-0.614400pt;}
.ls16{letter-spacing:-0.597333pt;}
.ls17{letter-spacing:-0.554667pt;}
.lse{letter-spacing:-0.528000pt;}
.ls18{letter-spacing:-0.512000pt;}
.ls10{letter-spacing:-0.298667pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.234667pt;}
.ls1b{letter-spacing:-0.176000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.117333pt;}
.ls1d{letter-spacing:-0.058667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.022933pt;}
.ls1f{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.293333pt;}
.ls7{letter-spacing:0.352000pt;}
.ls8{letter-spacing:0.645333pt;}
.lsb{letter-spacing:0.704000pt;}
.ls9{letter-spacing:0.821333pt;}
.lsd{letter-spacing:0.997333pt;}
.lsc{letter-spacing:1.173333pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ws28{word-spacing:-15.936000pt;}
.ws9c{word-spacing:-15.664000pt;}
.ws9b{word-spacing:-15.370667pt;}
.ws4f{word-spacing:-15.018667pt;}
.wsc8{word-spacing:-14.666667pt;}
.ws10f{word-spacing:-14.608000pt;}
.ws10e{word-spacing:-14.549333pt;}
.wse7{word-spacing:-13.669333pt;}
.ws2{word-spacing:-13.280000pt;}
.ws13d{word-spacing:-12.192000pt;}
.ws120{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.088000pt;}
.ws5{word-spacing:-10.800000pt;}
.wsae{word-spacing:-10.666667pt;}
.ws4{word-spacing:-10.464000pt;}
.wsaf{word-spacing:-10.368000pt;}
.ws0{word-spacing:-9.685333pt;}
.ws1{word-spacing:-8.371200pt;}
.ws127{word-spacing:-6.996000pt;}
.wsfd{word-spacing:-3.872000pt;}
.ws16f{word-spacing:-3.648000pt;}
.ws11d{word-spacing:-3.461333pt;}
.wsf2{word-spacing:-3.344000pt;}
.ws113{word-spacing:-3.285333pt;}
.wsfe{word-spacing:-3.226667pt;}
.ws16b{word-spacing:-3.072000pt;}
.ws10a{word-spacing:-2.992000pt;}
.ws154{word-spacing:-2.976000pt;}
.ws11c{word-spacing:-2.933333pt;}
.ws44{word-spacing:-2.874667pt;}
.ws101{word-spacing:-2.816000pt;}
.wsf3{word-spacing:-2.757333pt;}
.ws94{word-spacing:-2.698667pt;}
.wsb1{word-spacing:-2.640000pt;}
.ws37{word-spacing:-2.581333pt;}
.wscd{word-spacing:-2.522667pt;}
.wsfa{word-spacing:-2.464000pt;}
.ws87{word-spacing:-2.405333pt;}
.wsfb{word-spacing:-2.346667pt;}
.wsd5{word-spacing:-2.304000pt;}
.wsa3{word-spacing:-2.288000pt;}
.ws15b{word-spacing:-2.256000pt;}
.wsf1{word-spacing:-2.229333pt;}
.ws48{word-spacing:-2.170667pt;}
.ws14{word-spacing:-2.160000pt;}
.ws49{word-spacing:-2.112000pt;}
.ws160{word-spacing:-2.064000pt;}
.ws5f{word-spacing:-2.053333pt;}
.ws1a{word-spacing:-2.016000pt;}
.ws40{word-spacing:-1.994667pt;}
.wsb0{word-spacing:-1.936000pt;}
.wsc{word-spacing:-1.920000pt;}
.wsd9{word-spacing:-1.877333pt;}
.ws16c{word-spacing:-1.824000pt;}
.wsb6{word-spacing:-1.818667pt;}
.ws24{word-spacing:-1.776000pt;}
.ws90{word-spacing:-1.760000pt;}
.ws15c{word-spacing:-1.728000pt;}
.ws7d{word-spacing:-1.701333pt;}
.wsb8{word-spacing:-1.642667pt;}
.ws21{word-spacing:-1.632000pt;}
.ws7b{word-spacing:-1.584000pt;}
.ws175{word-spacing:-1.536000pt;}
.ws3e{word-spacing:-1.525333pt;}
.ws177{word-spacing:-1.488000pt;}
.ws3b{word-spacing:-1.466667pt;}
.ws144{word-spacing:-1.440000pt;}
.ws45{word-spacing:-1.408000pt;}
.ws78{word-spacing:-1.349333pt;}
.ws22{word-spacing:-1.296000pt;}
.ws98{word-spacing:-1.290667pt;}
.ws1b{word-spacing:-1.248000pt;}
.ws10b{word-spacing:-1.232000pt;}
.wse0{word-spacing:-1.173333pt;}
.wse6{word-spacing:-1.152000pt;}
.ws66{word-spacing:-1.114667pt;}
.ws52{word-spacing:-1.056000pt;}
.ws170{word-spacing:-1.008000pt;}
.ws56{word-spacing:-0.997333pt;}
.ws132{word-spacing:-0.960000pt;}
.ws35{word-spacing:-0.938667pt;}
.ws141{word-spacing:-0.912000pt;}
.ws2a{word-spacing:-0.880000pt;}
.ws1e{word-spacing:-0.864000pt;}
.ws54{word-spacing:-0.821333pt;}
.wsd0{word-spacing:-0.816000pt;}
.wsd{word-spacing:-0.768000pt;}
.wse9{word-spacing:-0.762667pt;}
.ws86{word-spacing:-0.704000pt;}
.ws143{word-spacing:-0.672000pt;}
.wsdf{word-spacing:-0.645333pt;}
.ws51{word-spacing:-0.586667pt;}
.ws14b{word-spacing:-0.576000pt;}
.ws43{word-spacing:-0.528000pt;}
.ws161{word-spacing:-0.480000pt;}
.ws2b{word-spacing:-0.469333pt;}
.ws138{word-spacing:-0.432000pt;}
.wsd8{word-spacing:-0.426667pt;}
.wse4{word-spacing:-0.410667pt;}
.wsb{word-spacing:-0.384000pt;}
.ws58{word-spacing:-0.352000pt;}
.wsd7{word-spacing:-0.341333pt;}
.ws18{word-spacing:-0.336000pt;}
.wsba{word-spacing:-0.298667pt;}
.ws4d{word-spacing:-0.293333pt;}
.wsd6{word-spacing:-0.240000pt;}
.ws31{word-spacing:-0.234667pt;}
.ws9{word-spacing:-0.192000pt;}
.ws4e{word-spacing:-0.176000pt;}
.ws155{word-spacing:-0.144000pt;}
.ws7e{word-spacing:-0.117333pt;}
.ws6{word-spacing:-0.098949pt;}
.wsa1{word-spacing:-0.058667pt;}
.ws23{word-spacing:-0.048000pt;}
.wsbc{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.058667pt;}
.ws20{word-spacing:0.096000pt;}
.ws32{word-spacing:0.117333pt;}
.ws36{word-spacing:0.176000pt;}
.ws125{word-spacing:0.192000pt;}
.ws77{word-spacing:0.234667pt;}
.wsee{word-spacing:0.240000pt;}
.wsa8{word-spacing:0.293333pt;}
.wsbb{word-spacing:0.298667pt;}
.wsb4{word-spacing:0.352000pt;}
.wscc{word-spacing:0.410667pt;}
.ws167{word-spacing:0.432000pt;}
.ws6b{word-spacing:0.469333pt;}
.ws134{word-spacing:0.480000pt;}
.ws13{word-spacing:0.528000pt;}
.wsf7{word-spacing:0.576000pt;}
.ws57{word-spacing:0.586667pt;}
.wsa{word-spacing:0.614400pt;}
.ws178{word-spacing:0.624000pt;}
.ws30{word-spacing:0.645333pt;}
.ws14d{word-spacing:0.672000pt;}
.ws61{word-spacing:0.704000pt;}
.ws13e{word-spacing:0.720000pt;}
.wsc3{word-spacing:0.762667pt;}
.ws15{word-spacing:0.768000pt;}
.ws150{word-spacing:0.816000pt;}
.ws99{word-spacing:0.821333pt;}
.ws135{word-spacing:0.864000pt;}
.wsf8{word-spacing:0.880000pt;}
.ws19{word-spacing:0.912000pt;}
.ws81{word-spacing:0.938667pt;}
.ws1d{word-spacing:0.960000pt;}
.ws41{word-spacing:0.997333pt;}
.ws55{word-spacing:1.056000pt;}
.ws42{word-spacing:1.114667pt;}
.ws17{word-spacing:1.152000pt;}
.ws9a{word-spacing:1.173333pt;}
.ws146{word-spacing:1.200000pt;}
.ws2d{word-spacing:1.232000pt;}
.ws14f{word-spacing:1.248000pt;}
.ws3d{word-spacing:1.290667pt;}
.ws139{word-spacing:1.296000pt;}
.ws62{word-spacing:1.349333pt;}
.ws128{word-spacing:1.392000pt;}
.wsa7{word-spacing:1.408000pt;}
.wsf{word-spacing:1.440000pt;}
.ws108{word-spacing:1.466667pt;}
.ws14c{word-spacing:1.488000pt;}
.ws72{word-spacing:1.525333pt;}
.ws5a{word-spacing:1.584000pt;}
.ws7c{word-spacing:1.642667pt;}
.ws15a{word-spacing:1.680000pt;}
.wsf0{word-spacing:1.701333pt;}
.ws1f{word-spacing:1.728000pt;}
.ws75{word-spacing:1.760000pt;}
.ws172{word-spacing:1.776000pt;}
.wsab{word-spacing:1.818667pt;}
.ws136{word-spacing:1.824000pt;}
.wseb{word-spacing:1.877333pt;}
.ws16{word-spacing:1.920000pt;}
.ws8f{word-spacing:1.936000pt;}
.ws96{word-spacing:1.994667pt;}
.ws176{word-spacing:2.026667pt;}
.ws2f{word-spacing:2.053333pt;}
.ws10{word-spacing:2.112000pt;}
.wse{word-spacing:2.160000pt;}
.ws50{word-spacing:2.170667pt;}
.ws122{word-spacing:2.208000pt;}
.wscb{word-spacing:2.229333pt;}
.ws168{word-spacing:2.256000pt;}
.wsda{word-spacing:2.288000pt;}
.ws126{word-spacing:2.304000pt;}
.ws80{word-spacing:2.346667pt;}
.ws16d{word-spacing:2.400000pt;}
.wsdc{word-spacing:2.405333pt;}
.ws53{word-spacing:2.464000pt;}
.ws121{word-spacing:2.496000pt;}
.ws7f{word-spacing:2.522667pt;}
.wsa6{word-spacing:2.581333pt;}
.ws166{word-spacing:2.592000pt;}
.ws46{word-spacing:2.640000pt;}
.ws6e{word-spacing:2.698667pt;}
.ws11{word-spacing:2.736000pt;}
.wse2{word-spacing:2.757333pt;}
.ws6d{word-spacing:2.816000pt;}
.ws2e{word-spacing:2.874667pt;}
.ws137{word-spacing:2.928000pt;}
.wsef{word-spacing:2.933333pt;}
.ws16e{word-spacing:2.976000pt;}
.ws79{word-spacing:2.992000pt;}
.ws1c{word-spacing:3.024000pt;}
.ws73{word-spacing:3.050667pt;}
.ws149{word-spacing:3.072000pt;}
.ws106{word-spacing:3.109333pt;}
.ws153{word-spacing:3.120000pt;}
.ws84{word-spacing:3.168000pt;}
.ws162{word-spacing:3.216000pt;}
.ws88{word-spacing:3.226667pt;}
.ws124{word-spacing:3.264000pt;}
.ws4a{word-spacing:3.285333pt;}
.ws27{word-spacing:3.312000pt;}
.ws103{word-spacing:3.344000pt;}
.wsea{word-spacing:3.402667pt;}
.ws25{word-spacing:3.408000pt;}
.ws39{word-spacing:3.461333pt;}
.wsb7{word-spacing:3.520000pt;}
.ws169{word-spacing:3.552000pt;}
.ws8a{word-spacing:3.578667pt;}
.ws34{word-spacing:3.637333pt;}
.ws26{word-spacing:3.680000pt;}
.ws3a{word-spacing:3.696000pt;}
.wsec{word-spacing:3.744000pt;}
.ws117{word-spacing:3.754667pt;}
.wsed{word-spacing:3.792000pt;}
.ws92{word-spacing:3.813333pt;}
.ws156{word-spacing:3.840000pt;}
.ws83{word-spacing:3.872000pt;}
.ws173{word-spacing:3.888000pt;}
.ws5d{word-spacing:3.930667pt;}
.ws12{word-spacing:3.936000pt;}
.ws38{word-spacing:3.989333pt;}
.wsb5{word-spacing:4.048000pt;}
.ws13b{word-spacing:4.080000pt;}
.wse3{word-spacing:4.106667pt;}
.ws59{word-spacing:4.165333pt;}
.ws12c{word-spacing:4.176000pt;}
.ws63{word-spacing:4.224000pt;}
.ws33{word-spacing:4.282667pt;}
.ws3f{word-spacing:4.341333pt;}
.ws13c{word-spacing:4.368000pt;}
.ws118{word-spacing:4.400000pt;}
.ws8e{word-spacing:4.458667pt;}
.ws157{word-spacing:4.464000pt;}
.wsc6{word-spacing:4.517333pt;}
.ws12a{word-spacing:4.560000pt;}
.ws11a{word-spacing:4.576000pt;}
.ws10c{word-spacing:4.634667pt;}
.ws131{word-spacing:4.656000pt;}
.ws102{word-spacing:4.693333pt;}
.ws163{word-spacing:4.704000pt;}
.ws89{word-spacing:4.752000pt;}
.ws142{word-spacing:4.800000pt;}
.wsb3{word-spacing:4.810667pt;}
.ws3c{word-spacing:4.869333pt;}
.ws82{word-spacing:4.928000pt;}
.ws129{word-spacing:4.944000pt;}
.wsf4{word-spacing:4.986667pt;}
.ws15d{word-spacing:5.040000pt;}
.ws11b{word-spacing:5.045333pt;}
.ws105{word-spacing:5.104000pt;}
.ws12b{word-spacing:5.136000pt;}
.wsde{word-spacing:5.162667pt;}
.wsc4{word-spacing:5.221333pt;}
.ws100{word-spacing:5.280000pt;}
.ws123{word-spacing:5.328000pt;}
.ws8c{word-spacing:5.338667pt;}
.ws4c{word-spacing:5.397333pt;}
.ws104{word-spacing:5.456000pt;}
.ws148{word-spacing:5.472000pt;}
.ws119{word-spacing:5.514667pt;}
.ws93{word-spacing:5.573333pt;}
.ws159{word-spacing:5.616000pt;}
.wsc9{word-spacing:5.632000pt;}
.wsb9{word-spacing:5.690667pt;}
.ws133{word-spacing:5.712000pt;}
.ws112{word-spacing:5.749333pt;}
.wsdb{word-spacing:5.808000pt;}
.ws7a{word-spacing:5.866667pt;}
.ws12d{word-spacing:5.904000pt;}
.ws97{word-spacing:5.925333pt;}
.ws114{word-spacing:5.984000pt;}
.ws68{word-spacing:6.042667pt;}
.ws110{word-spacing:6.101333pt;}
.wsf9{word-spacing:6.160000pt;}
.wsd4{word-spacing:6.218667pt;}
.ws70{word-spacing:6.277333pt;}
.ws9d{word-spacing:6.336000pt;}
.ws29{word-spacing:6.394667pt;}
.ws5c{word-spacing:6.453333pt;}
.ws6a{word-spacing:6.512000pt;}
.ws47{word-spacing:6.570667pt;}
.wsc7{word-spacing:6.629333pt;}
.ws5b{word-spacing:6.688000pt;}
.wsc5{word-spacing:6.746667pt;}
.wsa0{word-spacing:6.805333pt;}
.ws174{word-spacing:6.816000pt;}
.wsa9{word-spacing:6.864000pt;}
.ws12e{word-spacing:6.912000pt;}
.ws71{word-spacing:6.922667pt;}
.ws14a{word-spacing:6.960000pt;}
.ws64{word-spacing:6.981333pt;}
.wsfc{word-spacing:7.040000pt;}
.ws164{word-spacing:7.104000pt;}
.ws6c{word-spacing:7.157333pt;}
.wsa2{word-spacing:7.216000pt;}
.ws111{word-spacing:7.274667pt;}
.ws14e{word-spacing:7.296000pt;}
.ws11e{word-spacing:7.333333pt;}
.ws9e{word-spacing:7.392000pt;}
.ws60{word-spacing:7.509333pt;}
.wsf5{word-spacing:7.568000pt;}
.wsff{word-spacing:7.626667pt;}
.ws95{word-spacing:7.685333pt;}
.ws8d{word-spacing:7.744000pt;}
.ws8b{word-spacing:7.802667pt;}
.wsf6{word-spacing:7.861333pt;}
.ws130{word-spacing:7.920000pt;}
.ws145{word-spacing:7.968000pt;}
.wse1{word-spacing:7.978667pt;}
.wsca{word-spacing:8.037333pt;}
.ws165{word-spacing:8.064000pt;}
.wsb2{word-spacing:8.096000pt;}
.ws115{word-spacing:8.154667pt;}
.ws69{word-spacing:8.272000pt;}
.ws85{word-spacing:8.330667pt;}
.ws16a{word-spacing:8.352000pt;}
.ws5e{word-spacing:8.389333pt;}
.ws76{word-spacing:8.448000pt;}
.wscf{word-spacing:8.506667pt;}
.ws9f{word-spacing:8.565333pt;}
.wsa5{word-spacing:8.624000pt;}
.ws4b{word-spacing:8.682667pt;}
.ws6f{word-spacing:8.741333pt;}
.ws15f{word-spacing:8.832000pt;}
.ws151{word-spacing:8.880000pt;}
.ws107{word-spacing:9.093333pt;}
.wsad{word-spacing:9.152000pt;}
.ws147{word-spacing:9.168000pt;}
.wsac{word-spacing:9.210667pt;}
.ws10d{word-spacing:9.328000pt;}
.wsaa{word-spacing:9.562667pt;}
.wse5{word-spacing:9.621333pt;}
.ws74{word-spacing:9.973333pt;}
.ws65{word-spacing:10.149333pt;}
.ws91{word-spacing:10.266667pt;}
.ws67{word-spacing:10.325333pt;}
.ws11f{word-spacing:11.205333pt;}
.ws140{word-spacing:11.760000pt;}
.ws152{word-spacing:11.952000pt;}
.ws158{word-spacing:12.288000pt;}
.wsa4{word-spacing:12.730667pt;}
.ws109{word-spacing:12.789333pt;}
.ws171{word-spacing:13.056000pt;}
.ws116{word-spacing:13.141333pt;}
.wsce{word-spacing:14.373333pt;}
.ws13f{word-spacing:14.496000pt;}
.ws15e{word-spacing:17.712000pt;}
.ws8{word-spacing:19.360000pt;}
.ws13a{word-spacing:22.800000pt;}
.ws12f{word-spacing:33.600000pt;}
.wsd2{word-spacing:41.306133pt;}
.wsd3{word-spacing:78.703467pt;}
.wse8{word-spacing:145.755200pt;}
.wsdd{word-spacing:204.669333pt;}
.wsbd{word-spacing:345.340800pt;}
.wsd1{word-spacing:386.411200pt;}
.wsc1{word-spacing:457.510933pt;}
.wsc0{word-spacing:458.876800pt;}
.wsbf{word-spacing:468.177600pt;}
.wsbe{word-spacing:469.543467pt;}
.wsc2{word-spacing:509.470400pt;}
._3{margin-left:-14.932800pt;}
._72{margin-left:-10.852267pt;}
._9{margin-left:-9.230400pt;}
._8{margin-left:-8.083200pt;}
._5{margin-left:-6.571200pt;}
._16{margin-left:-5.635733pt;}
._7{margin-left:-4.701333pt;}
._6{margin-left:-3.587200pt;}
._2{margin-left:-2.139733pt;}
._0{margin-left:-1.169600pt;}
._1{width:1.677333pt;}
._74{width:2.579733pt;}
._a{width:4.196267pt;}
._33{width:5.546667pt;}
._73{width:6.687467pt;}
._b{width:10.653867pt;}
._75{width:26.204267pt;}
._4{width:32.554667pt;}
._11{width:38.040533pt;}
._41{width:45.146133pt;}
._38{width:51.204800pt;}
._3b{width:53.128000pt;}
._c{width:63.400533pt;}
._47{width:65.911467pt;}
._37{width:67.303467pt;}
._42{width:68.219200pt;}
._17{width:74.325867pt;}
._34{width:78.014933pt;}
._40{width:90.485867pt;}
._39{width:95.809067pt;}
._14{width:105.276800pt;}
._10{width:117.852800pt;}
._44{width:162.843200pt;}
._f{width:166.491200pt;}
._12{width:168.347733pt;}
._45{width:177.967467pt;}
._13{width:184.176533pt;}
._15{width:203.461333pt;}
._3c{width:212.752000pt;}
._4f{width:214.824000pt;}
._6f{width:250.582400pt;}
._35{width:255.752000pt;}
._3a{width:265.769067pt;}
._3e{width:272.382400pt;}
._3f{width:281.064000pt;}
._43{width:295.763733pt;}
._6a{width:304.560533pt;}
._4d{width:306.795733pt;}
._26{width:309.678933pt;}
._36{width:339.198400pt;}
._61{width:343.432533pt;}
._60{width:370.799467pt;}
._63{width:374.658133pt;}
._3d{width:379.817067pt;}
._29{width:383.229333pt;}
._2a{width:404.601067pt;}
._5d{width:408.196267pt;}
._5e{width:413.427733pt;}
._6e{width:417.118400pt;}
._27{width:426.600000pt;}
._1b{width:437.266667pt;}
._1c{width:447.659733pt;}
._66{width:453.492267pt;}
._5f{width:463.732267pt;}
._68{width:480.892267pt;}
._70{width:482.554667pt;}
._32{width:487.249600pt;}
._21{width:490.575467pt;}
._52{width:500.579733pt;}
._19{width:502.003200pt;}
._64{width:508.668267pt;}
._67{width:510.893333pt;}
._58{width:528.252800pt;}
._69{width:529.737600pt;}
._56{width:536.316800pt;}
._62{width:541.392000pt;}
._65{width:546.224533pt;}
._46{width:556.589867pt;}
._4b{width:563.360533pt;}
._5b{width:568.751467pt;}
._6d{width:571.938133pt;}
._50{width:573.516267pt;}
._71{width:576.414933pt;}
._6b{width:585.587733pt;}
._5c{width:595.809600pt;}
._4a{width:615.207467pt;}
._55{width:626.283733pt;}
._6c{width:627.920000pt;}
._48{width:628.930667pt;}
._57{width:632.615467pt;}
._2d{width:638.024000pt;}
._54{width:648.683733pt;}
._4e{width:669.857600pt;}
._49{width:673.509333pt;}
._30{width:676.474667pt;}
._2f{width:684.104000pt;}
._51{width:691.617600pt;}
._53{width:694.835200pt;}
._59{width:700.696000pt;}
._5a{width:709.057067pt;}
._20{width:717.853333pt;}
._d{width:724.843200pt;}
._e{width:728.045333pt;}
._28{width:735.609067pt;}
._24{width:748.331733pt;}
._1d{width:753.309333pt;}
._4c{width:758.547733pt;}
._2e{width:761.337067pt;}
._2c{width:766.586667pt;}
._23{width:783.662933pt;}
._1e{width:788.893333pt;}
._31{width:793.800000pt;}
._1f{width:801.437333pt;}
._22{width:809.337067pt;}
._2b{width:812.359467pt;}
._25{width:828.846933pt;}
._1a{width:833.248000pt;}
._18{width:888.648000pt;}
.fs8{font-size:19.641600pt;}
.fsb{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.fs9{font-size:98.949333pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:1.071067pt;}
.y40{bottom:40.688174pt;}
.y1{bottom:60.555333pt;}
.y42{bottom:63.299600pt;}
.y43{bottom:66.698800pt;}
.ya7{bottom:100.514400pt;}
.y74{bottom:100.514533pt;}
.ye{bottom:104.778267pt;}
.y2f{bottom:112.913733pt;}
.yd{bottom:117.578267pt;}
.ya6{bottom:119.181067pt;}
.y73{bottom:119.181200pt;}
.yc{bottom:130.378267pt;}
.y2e{bottom:130.513733pt;}
.ya5{bottom:137.847733pt;}
.y72{bottom:137.847867pt;}
.yb{bottom:143.178267pt;}
.ya4{bottom:156.514400pt;}
.y71{bottom:156.514533pt;}
.y140{bottom:161.359333pt;}
.y2d{bottom:167.011333pt;}
.y128{bottom:168.456533pt;}
.ya3{bottom:175.181067pt;}
.y70{bottom:175.181200pt;}
.y3b{bottom:177.237867pt;}
.y2c{bottom:184.611467pt;}
.y3a{bottom:193.237867pt;}
.ya2{bottom:193.847733pt;}
.y6f{bottom:193.847867pt;}
.y127{bottom:197.165333pt;}
.y2b{bottom:202.211467pt;}
.y137{bottom:206.614267pt;}
.y39{bottom:209.237867pt;}
.ya1{bottom:212.514400pt;}
.y6e{bottom:212.514533pt;}
.y2a{bottom:219.811467pt;}
.y38{bottom:225.237867pt;}
.y12f{bottom:225.280933pt;}
.ya0{bottom:231.181067pt;}
.y6d{bottom:231.181200pt;}
.y29{bottom:237.411467pt;}
.y37{bottom:241.237867pt;}
.yc2{bottom:243.947467pt;}
.y9f{bottom:249.847733pt;}
.y6c{bottom:249.847867pt;}
.y125{bottom:251.167600pt;}
.y28{bottom:255.011333pt;}
.y36{bottom:257.237867pt;}
.yf4{bottom:258.580133pt;}
.y9e{bottom:268.514400pt;}
.y6b{bottom:268.514533pt;}
.y124{bottom:269.483600pt;}
.y27{bottom:272.611467pt;}
.yf1{bottom:273.113200pt;}
.y35{bottom:273.237867pt;}
.yf3{bottom:276.180133pt;}
.y9d{bottom:287.181067pt;}
.y6a{bottom:287.181200pt;}
.y123{bottom:287.799467pt;}
.y34{bottom:289.237867pt;}
.y26{bottom:290.211467pt;}
.yd9{bottom:291.117467pt;}
.y13f{bottom:292.026000pt;}
.yf0{bottom:292.185067pt;}
.y134{bottom:299.947600pt;}
.y9c{bottom:305.847733pt;}
.y69{bottom:305.847867pt;}
.y122{bottom:306.115333pt;}
.y25{bottom:307.811467pt;}
.yd8{bottom:310.189333pt;}
.yef{bottom:311.256933pt;}
.yf5{bottom:318.614267pt;}
.y33{bottom:320.356000pt;}
.y121{bottom:324.431333pt;}
.y9b{bottom:324.514400pt;}
.y68{bottom:324.514533pt;}
.y24{bottom:325.411467pt;}
.yd7{bottom:329.261200pt;}
.yee{bottom:330.328667pt;}
.y32{bottom:336.356000pt;}
.y12d{bottom:336.777067pt;}
.y120{bottom:342.747200pt;}
.y23{bottom:343.011333pt;}
.y9a{bottom:343.181067pt;}
.y67{bottom:343.181200pt;}
.yd6{bottom:348.333067pt;}
.yed{bottom:349.400533pt;}
.y31{bottom:352.356000pt;}
.y12c{bottom:354.377067pt;}
.y22{bottom:360.611467pt;}
.y11f{bottom:361.063067pt;}
.y99{bottom:361.847733pt;}
.y66{bottom:361.847867pt;}
.y10e{bottom:364.470000pt;}
.yd5{bottom:367.404800pt;}
.y30{bottom:368.356000pt;}
.yec{bottom:368.472267pt;}
.y132{bottom:374.614267pt;}
.y21{bottom:378.211467pt;}
.y11e{bottom:379.379067pt;}
.y98{bottom:380.514400pt;}
.y65{bottom:380.514533pt;}
.y10d{bottom:383.541733pt;}
.yd4{bottom:386.476667pt;}
.yeb{bottom:387.544133pt;}
.y20{bottom:395.811467pt;}
.y11d{bottom:397.694933pt;}
.y97{bottom:399.181067pt;}
.y64{bottom:399.181200pt;}
.y10c{bottom:402.613600pt;}
.yd3{bottom:405.548400pt;}
.yea{bottom:406.616000pt;}
.y1f{bottom:413.411467pt;}
.y11c{bottom:416.010800pt;}
.y96{bottom:417.847733pt;}
.y63{bottom:417.847867pt;}
.y10b{bottom:421.685467pt;}
.yd2{bottom:424.620267pt;}
.ye9{bottom:425.687733pt;}
.y1e{bottom:431.011333pt;}
.y11b{bottom:434.326800pt;}
.y95{bottom:436.514400pt;}
.y62{bottom:436.514533pt;}
.ye8{bottom:439.021067pt;}
.y10a{bottom:440.757200pt;}
.yd1{bottom:443.692000pt;}
.y1d{bottom:448.611467pt;}
.y11a{bottom:452.642667pt;}
.y94{bottom:455.181067pt;}
.y61{bottom:455.181200pt;}
.ye7{bottom:458.092933pt;}
.y109{bottom:459.829067pt;}
.yd0{bottom:462.763867pt;}
.y1c{bottom:466.211467pt;}
.y119{bottom:470.958533pt;}
.ye6{bottom:471.426267pt;}
.y93{bottom:473.847733pt;}
.y60{bottom:473.847867pt;}
.y13e{bottom:478.692667pt;}
.y108{bottom:478.900933pt;}
.ycf{bottom:481.835733pt;}
.y1b{bottom:483.811467pt;}
.y118{bottom:489.274533pt;}
.ye5{bottom:490.498133pt;}
.y92{bottom:492.514400pt;}
.y5f{bottom:492.514533pt;}
.y107{bottom:497.972800pt;}
.yce{bottom:500.907600pt;}
.y1a{bottom:501.411467pt;}
.y117{bottom:507.590400pt;}
.ye3{bottom:509.836533pt;}
.y91{bottom:511.181067pt;}
.y5e{bottom:511.181200pt;}
.ye2{bottom:516.503200pt;}
.y106{bottom:517.044533pt;}
.y19{bottom:519.011333pt;}
.ycd{bottom:519.979333pt;}
.ye4{bottom:523.169867pt;}
.y116{bottom:525.906267pt;}
.y90{bottom:529.847733pt;}
.y5d{bottom:529.847867pt;}
.y105{bottom:536.116400pt;}
.y18{bottom:536.611467pt;}
.ycc{bottom:539.051200pt;}
.yda{bottom:542.614267pt;}
.y115{bottom:544.222267pt;}
.y8f{bottom:548.514400pt;}
.y5c{bottom:548.514533pt;}
.ye1{bottom:550.754133pt;}
.y17{bottom:554.211467pt;}
.y104{bottom:555.188133pt;}
.ycb{bottom:558.122933pt;}
.y136{bottom:561.280933pt;}
.y114{bottom:562.804800pt;}
.y8e{bottom:567.181067pt;}
.y5b{bottom:567.181200pt;}
.ye0{bottom:568.354133pt;}
.y113{bottom:569.471467pt;}
.y16{bottom:571.811467pt;}
.y103{bottom:574.260000pt;}
.yca{bottom:577.194800pt;}
.y8d{bottom:585.847733pt;}
.y5a{bottom:585.847867pt;}
.y15{bottom:589.411467pt;}
.y13d{bottom:590.692667pt;}
.y102{bottom:593.331733pt;}
.y126{bottom:595.666667pt;}
.yc9{bottom:596.266667pt;}
.yaa{bottom:597.789867pt;}
.y112{bottom:602.966400pt;}
.y8c{bottom:604.514400pt;}
.y59{bottom:604.514533pt;}
.y14{bottom:607.011333pt;}
.y144{bottom:607.181200pt;}
.y101{bottom:612.403600pt;}
.yc8{bottom:615.338400pt;}
.ydf{bottom:617.064667pt;}
.y12e{bottom:617.280933pt;}
.y111{bottom:620.566400pt;}
.y8b{bottom:623.181067pt;}
.y58{bottom:623.181200pt;}
.y13{bottom:624.611467pt;}
.ya9{bottom:626.498667pt;}
.y100{bottom:631.475467pt;}
.yac{bottom:632.338533pt;}
.yc7{bottom:634.410267pt;}
.yde{bottom:634.664667pt;}
.y8a{bottom:641.847733pt;}
.y57{bottom:641.847867pt;}
.y12{bottom:642.211467pt;}
.y12b{bottom:644.386800pt;}
.y13c{bottom:646.692667pt;}
.yff{bottom:650.547200pt;}
.yc6{bottom:653.482000pt;}
.y11{bottom:659.811467pt;}
.y89{bottom:660.514400pt;}
.y56{bottom:660.514533pt;}
.y12a{bottom:661.986800pt;}
.yfe{bottom:669.619067pt;}
.yc5{bottom:672.820533pt;}
.y110{bottom:674.669867pt;}
.y88{bottom:679.181067pt;}
.y55{bottom:679.181200pt;}
.yc1{bottom:679.569867pt;}
.y129{bottom:679.586800pt;}
.y10{bottom:687.453600pt;}
.yfd{bottom:688.690933pt;}
.y10f{bottom:692.269867pt;}
.yc0{bottom:692.903200pt;}
.y87{bottom:697.847733pt;}
.y54{bottom:697.847867pt;}
.yc4{bottom:700.404667pt;}
.y13b{bottom:702.692667pt;}
.ybf{bottom:706.236533pt;}
.yfc{bottom:707.762667pt;}
.y86{bottom:716.514400pt;}
.y53{bottom:716.514533pt;}
.yc3{bottom:718.004667pt;}
.ybe{bottom:725.308267pt;}
.yfb{bottom:726.834533pt;}
.y133{bottom:729.280933pt;}
.y85{bottom:735.181067pt;}
.y52{bottom:735.181200pt;}
.ybd{bottom:738.641600pt;}
.ydd{bottom:739.206800pt;}
.yfa{bottom:745.906267pt;}
.y131{bottom:747.947600pt;}
.ybc{bottom:751.974933pt;}
.y84{bottom:753.847733pt;}
.y51{bottom:753.847867pt;}
.ydc{bottom:756.806800pt;}
.ya{bottom:757.926133pt;}
.y13a{bottom:759.055067pt;}
.yf9{bottom:764.978133pt;}
.ybb{bottom:765.308267pt;}
.y83{bottom:772.514400pt;}
.y50{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.ydb{bottom:774.406800pt;}
.yf8{bottom:784.316667pt;}
.yba{bottom:784.380133pt;}
.y139{bottom:785.280800pt;}
.y8{bottom:789.926133pt;}
.y82{bottom:791.181067pt;}
.y4f{bottom:791.181200pt;}
.yb9{bottom:797.713467pt;}
.y7{bottom:805.926133pt;}
.y81{bottom:809.847733pt;}
.y4e{bottom:809.847867pt;}
.yf7{bottom:811.900800pt;}
.yb8{bottom:816.785333pt;}
.y143{bottom:821.789867pt;}
.y6{bottom:821.926133pt;}
.y80{bottom:828.514400pt;}
.y4d{bottom:828.514533pt;}
.yf6{bottom:829.500800pt;}
.yb7{bottom:830.118667pt;}
.y142{bottom:840.456533pt;}
.y7f{bottom:847.181067pt;}
.y4c{bottom:847.181200pt;}
.yb6{bottom:849.190400pt;}
.y5{bottom:853.044133pt;}
.y135{bottom:859.947600pt;}
.yb5{bottom:862.523733pt;}
.y7e{bottom:865.847733pt;}
.y4b{bottom:865.847867pt;}
.y141{bottom:869.165333pt;}
.y4{bottom:870.644267pt;}
.yb4{bottom:875.857067pt;}
.yf2{bottom:878.614267pt;}
.y7d{bottom:884.514400pt;}
.y4a{bottom:884.514533pt;}
.yb3{bottom:894.928933pt;}
.y7c{bottom:903.181067pt;}
.y49{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.yb2{bottom:908.262267pt;}
.y130{bottom:915.947600pt;}
.yb1{bottom:921.595600pt;}
.y7b{bottom:921.847733pt;}
.y48{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.yb0{bottom:934.928933pt;}
.y7a{bottom:940.514400pt;}
.y47{bottom:940.514533pt;}
.yaf{bottom:954.000667pt;}
.y79{bottom:959.181067pt;}
.y46{bottom:959.181200pt;}
.yae{bottom:960.667333pt;}
.y78{bottom:977.847733pt;}
.y76{bottom:977.847867pt;}
.yf{bottom:986.502667pt;}
.yab{bottom:987.173200pt;}
.ya8{bottom:987.330667pt;}
.y45{bottom:987.454133pt;}
.y138{bottom:988.062933pt;}
.yad{bottom:994.918133pt;}
.y77{bottom:996.514400pt;}
.y75{bottom:996.514533pt;}
.y3e{bottom:1009.540000pt;}
.y41{bottom:1024.013867pt;}
.y3d{bottom:1027.213600pt;}
.y3c{bottom:1044.546933pt;}
.y44{bottom:1047.726000pt;}
.he{height:14.923012pt;}
.h16{height:30.506667pt;}
.h7{height:30.618750pt;}
.h15{height:30.805333pt;}
.h2{height:33.812500pt;}
.h10{height:34.020833pt;}
.h6{height:34.250000pt;}
.ha{height:34.656000pt;}
.h19{height:36.188448pt;}
.h8{height:36.492188pt;}
.hc{height:38.039062pt;}
.h1a{height:38.133333pt;}
.hb{height:38.273438pt;}
.h9{height:40.546875pt;}
.h12{height:42.357333pt;}
.h13{height:44.601562pt;}
.h18{height:44.659994pt;}
.hd{height:44.948000pt;}
.h4{height:45.188000pt;}
.h5{height:45.188533pt;}
.h11{height:48.656250pt;}
.h14{height:57.173333pt;}
.h3{height:68.929688pt;}
.hf{height:71.844560pt;}
.h17{height:83.840000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:165.230667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.172400pt;}
.xd{left:96.255067pt;}
.xa{left:98.747867pt;}
.x11{left:99.779467pt;}
.xf{left:101.280267pt;}
.x5{left:106.290133pt;}
.x6{left:107.597867pt;}
.x7{left:109.707333pt;}
.x1f{left:124.470800pt;}
.x18{left:162.986400pt;}
.x10{left:164.698533pt;}
.x12{left:176.298133pt;}
.x19{left:179.628933pt;}
.x13{left:235.842533pt;}
.x1b{left:245.485867pt;}
.x4{left:266.834667pt;}
.x20{left:274.694400pt;}
.xc{left:281.952800pt;}
.xe{left:297.070933pt;}
.x1c{left:332.217600pt;}
.x1d{left:338.052000pt;}
.x3{left:352.045067pt;}
.x1e{left:395.338533pt;}
.x9{left:582.495600pt;}
.x8{left:615.396667pt;}
.x21{left:639.523867pt;}
.x14{left:647.811067pt;}
.x15{left:657.622000pt;}
.x17{left:659.654000pt;}
.x16{left:665.440533pt;}
.x1a{left:716.942933pt;}
.x1{left:722.728533pt;}
}




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