
    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_56d50eb69098f4152b576d84.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c7ae06af86e6e37a30f5f6f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3e783b8c0e997588e9a37cfa.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;}
.m1{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,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);}
.v2{vertical-align:-68.425200px;}
.v3{vertical-align:-20.648160px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v8{vertical-align:51.094800px;}
.v6{vertical-align:60.477120px;}
.v1{vertical-align:67.680000px;}
.v5{vertical-align:69.142320px;}
.v7{vertical-align:72.010800px;}
.ls60{letter-spacing:-1.075680px;}
.ls29{letter-spacing:-1.015920px;}
.ls61{letter-spacing:-0.956160px;}
.ls27{letter-spacing:-0.836640px;}
.ls26{letter-spacing:-0.776880px;}
.ls36{letter-spacing:-0.657360px;}
.ls37{letter-spacing:-0.358560px;}
.ls11{letter-spacing:-0.336960px;}
.ls15{letter-spacing:-0.298800px;}
.lse{letter-spacing:-0.240480px;}
.ls25{letter-spacing:-0.239040px;}
.lsc{letter-spacing:-0.192960px;}
.ls13{letter-spacing:-0.144000px;}
.ls24{letter-spacing:-0.132480px;}
.lsd{letter-spacing:-0.119520px;}
.ls64{letter-spacing:-0.108000px;}
.ls10{letter-spacing:-0.084240px;}
.ls12{letter-spacing:-0.072000px;}
.ls2a{letter-spacing:-0.059760px;}
.lsb{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.023760px;}
.ls3f{letter-spacing:0.043920px;}
.ls3c{letter-spacing:0.045360px;}
.ls5f{letter-spacing:0.048240px;}
.ls17{letter-spacing:0.059760px;}
.ls3b{letter-spacing:0.094320px;}
.ls0{letter-spacing:0.096480px;}
.ls35{letter-spacing:0.119520px;}
.ls2b{letter-spacing:0.179280px;}
.ls5{letter-spacing:0.239040px;}
.ls16{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.288000px;}
.ls57{letter-spacing:0.289440px;}
.ls1e{letter-spacing:0.298800px;}
.ls1f{letter-spacing:0.358560px;}
.lsf{letter-spacing:0.385920px;}
.ls8{letter-spacing:0.418320px;}
.ls6{letter-spacing:0.478080px;}
.ls44{letter-spacing:0.537840px;}
.ls39{letter-spacing:0.544320px;}
.ls38{letter-spacing:0.597600px;}
.ls1{letter-spacing:0.622800px;}
.ls28{letter-spacing:0.657360px;}
.ls58{letter-spacing:0.666720px;}
.ls3{letter-spacing:0.673920px;}
.ls42{letter-spacing:0.699840px;}
.ls3e{letter-spacing:0.702720px;}
.ls7{letter-spacing:0.717120px;}
.ls5e{letter-spacing:0.776880px;}
.ls3d{letter-spacing:0.780480px;}
.ls33{letter-spacing:0.836640px;}
.ls2f{letter-spacing:0.896400px;}
.ls22{letter-spacing:0.956160px;}
.ls4b{letter-spacing:1.015920px;}
.ls59{letter-spacing:1.075680px;}
.ls5d{letter-spacing:1.080000px;}
.ls46{letter-spacing:1.374480px;}
.ls54{letter-spacing:1.434240px;}
.ls45{letter-spacing:1.553760px;}
.ls5c{letter-spacing:1.800000px;}
.ls2e{letter-spacing:2.091600px;}
.ls55{letter-spacing:2.270880px;}
.ls30{letter-spacing:2.868480px;}
.ls21{letter-spacing:3.525840px;}
.ls4a{letter-spacing:3.585600px;}
.ls47{letter-spacing:4.242960px;}
.ls49{letter-spacing:4.422240px;}
.ls1d{letter-spacing:4.960080px;}
.ls48{letter-spacing:5.079600px;}
.ls3a{letter-spacing:5.677200px;}
.ls51{letter-spacing:6.454080px;}
.ls50{letter-spacing:6.513840px;}
.ls4f{letter-spacing:7.171200px;}
.ls4e{letter-spacing:7.230960px;}
.ls1b{letter-spacing:8.605440px;}
.ls53{letter-spacing:8.665200px;}
.ls52{letter-spacing:9.561600px;}
.ls32{letter-spacing:10.039680px;}
.ls19{letter-spacing:10.756800px;}
.ls23{letter-spacing:12.908160px;}
.ls2d{letter-spacing:13.625280px;}
.ls40{letter-spacing:15.059520px;}
.ls20{letter-spacing:16.434000px;}
.ls43{letter-spacing:18.645120px;}
.ls2c{letter-spacing:19.481760px;}
.lsa{letter-spacing:20.079360px;}
.ls1a{letter-spacing:21.573360px;}
.ls31{letter-spacing:25.876080px;}
.ls9{letter-spacing:27.310320px;}
.ls34{letter-spacing:28.744560px;}
.ls4d{letter-spacing:43.863840px;}
.ls4c{letter-spacing:44.580960px;}
.ls5a{letter-spacing:168.403680px;}
.ls1c{letter-spacing:280.878480px;}
.ls18{letter-spacing:310.986720px;}
.ls5b{letter-spacing:328.261680px;}
.ls62{letter-spacing:358.500240px;}
.ls56{letter-spacing:396.686880px;}
.ls2{letter-spacing:545.742720px;}
.ls4{letter-spacing:928.224000px;}
.ls63{letter-spacing:1111.655520px;}
.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;}
}
.ws0{word-spacing:-33.186240px;}
.ws3{word-spacing:-23.334480px;}
.ws4{word-spacing:-23.081760px;}
.ws6{word-spacing:-20.016000px;}
.ws5{word-spacing:-19.944000px;}
.ws7{word-spacing:-19.872000px;}
.ws1c{word-spacing:-18.282240px;}
.ws5e{word-spacing:-17.688960px;}
.ws57{word-spacing:-17.390160px;}
.ws4a{word-spacing:-17.210880px;}
.ws56{word-spacing:-17.091360px;}
.ws4b{word-spacing:-17.031600px;}
.ws53{word-spacing:-16.971840px;}
.ws5d{word-spacing:-16.912080px;}
.ws64{word-spacing:-16.873200px;}
.wsa{word-spacing:-16.852320px;}
.ws3b{word-spacing:-16.792560px;}
.ws1e{word-spacing:-16.673040px;}
.ws8{word-spacing:-16.613280px;}
.ws22{word-spacing:-16.553520px;}
.ws9{word-spacing:-16.493760px;}
.ws1d{word-spacing:-16.374240px;}
.ws1f{word-spacing:-16.314480px;}
.ws3c{word-spacing:-16.254720px;}
.ws20{word-spacing:-15.836400px;}
.ws21{word-spacing:-15.776640px;}
.ws5c{word-spacing:-15.657120px;}
.ws5b{word-spacing:-15.537600px;}
.ws1{word-spacing:-13.796640px;}
.ws59{word-spacing:-13.700160px;}
.ws58{word-spacing:-13.458960px;}
.ws5a{word-spacing:-13.410720px;}
.ws2{word-spacing:-13.217760px;}
.ws4d{word-spacing:-11.508480px;}
.ws4c{word-spacing:-10.808640px;}
.ws62{word-spacing:-1.374480px;}
.ws3f{word-spacing:-1.015920px;}
.ws10{word-spacing:-0.864000px;}
.ws37{word-spacing:-0.657360px;}
.ws4e{word-spacing:-0.597600px;}
.ws5f{word-spacing:-0.530640px;}
.ws32{word-spacing:-0.298800px;}
.ws60{word-spacing:-0.289440px;}
.wsd{word-spacing:-0.241200px;}
.ws24{word-spacing:-0.239040px;}
.ws55{word-spacing:-0.119520px;}
.ws61{word-spacing:-0.059760px;}
.wsb{word-spacing:0.000000px;}
.ws15{word-spacing:0.059760px;}
.wse{word-spacing:0.119520px;}
.ws63{word-spacing:0.192960px;}
.ws66{word-spacing:0.216000px;}
.ws30{word-spacing:0.239040px;}
.ws25{word-spacing:0.298800px;}
.ws65{word-spacing:0.358560px;}
.wsf{word-spacing:0.421200px;}
.wsc{word-spacing:0.482400px;}
.ws1b{word-spacing:0.776880px;}
.ws54{word-spacing:0.956160px;}
.ws39{word-spacing:1.015920px;}
.ws3d{word-spacing:1.314720px;}
.ws35{word-spacing:1.494000px;}
.ws19{word-spacing:2.211120px;}
.ws38{word-spacing:2.808720px;}
.ws18{word-spacing:2.988000px;}
.ws51{word-spacing:3.167280px;}
.ws2f{word-spacing:3.705120px;}
.ws49{word-spacing:3.884400px;}
.ws31{word-spacing:4.422240px;}
.ws2e{word-spacing:5.139360px;}
.ws3e{word-spacing:5.856480px;}
.ws50{word-spacing:7.290720px;}
.ws2c{word-spacing:8.007840px;}
.ws2a{word-spacing:8.724960px;}
.ws36{word-spacing:9.442080px;}
.ws48{word-spacing:10.159200px;}
.ws1a{word-spacing:10.876320px;}
.ws40{word-spacing:11.593440px;}
.ws29{word-spacing:12.310560px;}
.ws45{word-spacing:12.489840px;}
.ws2b{word-spacing:13.027680px;}
.ws28{word-spacing:13.147200px;}
.ws3a{word-spacing:13.744800px;}
.ws16{word-spacing:14.461920px;}
.ws17{word-spacing:15.179040px;}
.ws44{word-spacing:15.896160px;}
.ws33{word-spacing:16.613280px;}
.ws34{word-spacing:17.330400px;}
.ws26{word-spacing:18.107280px;}
.ws4f{word-spacing:18.824400px;}
.ws2d{word-spacing:19.541520px;}
.ws41{word-spacing:20.975760px;}
.ws27{word-spacing:21.692880px;}
.ws12{word-spacing:22.410000px;}
.ws11{word-spacing:23.306400px;}
.ws52{word-spacing:25.278480px;}
.ws43{word-spacing:30.298320px;}
.ws23{word-spacing:34.660800px;}
.ws42{word-spacing:35.377920px;}
.ws14{word-spacing:36.095040px;}
.ws13{word-spacing:41.832000px;}
.ws47{word-spacing:51.214320px;}
.ws46{word-spacing:52.110720px;}
._a{margin-left:-3.582720px;}
._13{margin-left:-2.227680px;}
._1{margin-left:-1.211760px;}
._0{width:1.013040px;}
._2{width:2.040480px;}
._7{width:3.369600px;}
._9{width:4.442400px;}
._c{width:5.452560px;}
._11{width:6.761520px;}
._12{width:8.682480px;}
._10{width:11.966400px;}
._8{width:14.769360px;}
._5{width:17.781840px;}
._6{width:21.954960px;}
._3{width:25.756560px;}
._4{width:39.081600px;}
._d{width:49.122720px;}
._b{width:70.755840px;}
._f{width:77.568480px;}
._e{width:847.396800px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:18.000000px;}
.fs8{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yf6{bottom:2.880000px;}
.y12c{bottom:3.240000px;}
.yf9{bottom:3.420000px;}
.ydf{bottom:3.600000px;}
.y7{bottom:6.660000px;}
.y61{bottom:12.420000px;}
.y5c{bottom:12.600000px;}
.y12b{bottom:20.520000px;}
.yde{bottom:20.700000px;}
.y143{bottom:20.880000px;}
.y13a{bottom:22.320000px;}
.y3b{bottom:29.700000px;}
.y6{bottom:37.980000px;}
.y4{bottom:45.900000px;}
.y34{bottom:46.980000px;}
.y37{bottom:47.160000px;}
.y127{bottom:55.980000px;}
.y3{bottom:62.640000px;}
.y3f{bottom:64.440000px;}
.y151{bottom:72.360000px;}
.y62{bottom:84.060000px;}
.y140{bottom:86.932260px;}
.y14b{bottom:89.640000px;}
.y94{bottom:89.859780px;}
.y131{bottom:91.080000px;}
.y2c{bottom:98.820000px;}
.y13f{bottom:102.598200px;}
.y60{bottom:103.140000px;}
.y156{bottom:106.920000px;}
.y93{bottom:107.145360px;}
.y13e{bottom:119.699280px;}
.y92{bottom:129.107160px;}
.y5d{bottom:130.140000px;}
.y13d{bottom:136.438560px;}
.y5f{bottom:142.554420px;}
.yfd{bottom:150.120000px;}
.y13c{bottom:151.200000px;}
.y5e{bottom:159.840000px;}
.y91{bottom:164.201220px;}
.y139{bottom:167.580000px;}
.y13b{bottom:172.620000px;}
.y90{bottom:181.486800px;}
.y138{bottom:185.400000px;}
.y5b{bottom:191.700000px;}
.y137{bottom:204.480000px;}
.y8f{bottom:207.586980px;}
.y136{bottom:220.680000px;}
.y8e{bottom:224.872560px;}
.y5a{bottom:231.074640px;}
.y130{bottom:239.760000px;}
.y8d{bottom:242.158140px;}
.y59{bottom:257.354100px;}
.y8c{bottom:259.443720px;}
.y135{bottom:275.040000px;}
.y8b{bottom:276.729300px;}
.y58{bottom:283.633560px;}
.y12f{bottom:290.155320px;}
.y133{bottom:296.454420px;}
.y107{bottom:298.800000px;}
.y57{bottom:300.739860px;}
.y8a{bottom:302.829480px;}
.y134{bottom:310.320000px;}
.y12e{bottom:311.400000px;}
.y132{bottom:313.740000px;}
.y56{bottom:318.204720px;}
.y89{bottom:320.115060px;}
.y12d{bottom:326.340000px;}
.y55{bottom:335.490300px;}
.y12a{bottom:345.600000px;}
.y28{bottom:346.640400px;}
.y54{bottom:352.596600px;}
.y88{bottom:363.680100px;}
.y27{bottom:363.925980px;}
.yda{bottom:377.064180px;}
.y53{bottom:378.876060px;}
.y126{bottom:380.700000px;}
.y87{bottom:389.959560px;}
.y26{bottom:390.205440px;}
.y52{bottom:396.161640px;}
.yd9{bottom:403.343640px;}
.y86{bottom:407.245140px;}
.y129{bottom:415.980000px;}
.y25{bottom:416.484900px;}
.y128{bottom:419.400000px;}
.y51{bottom:422.261820px;}
.y85{bottom:424.351440px;}
.yd8{bottom:429.443820px;}
.y122{bottom:437.400720px;}
.y50{bottom:439.547400px;}
.y84{bottom:441.637020px;}
.y24{bottom:442.764360px;}
.y124{bottom:446.394600px;}
.yd7{bottom:451.226340px;}
.y125{bottom:451.260000px;}
.y121{bottom:452.340720px;}
.y83{bottom:458.922600px;}
.y4f{bottom:465.826860px;}
.y120{bottom:467.460000px;}
.y123{bottom:467.818560px;}
.yd6{bottom:468.511920px;}
.y23{bottom:468.864540px;}
.y82{bottom:480.884400px;}
.y4e{bottom:483.112440px;}
.yd5{bottom:485.797500px;}
.y11d{bottom:486.540000px;}
.y11f{bottom:492.835860px;}
.y22{bottom:495.144000px;}
.y11c{bottom:495.720720px;}
.yd4{bottom:507.580020px;}
.y4d{bottom:509.391900px;}
.y11e{bottom:510.480000px;}
.y11b{bottom:510.840000px;}
.y81{bottom:515.978460px;}
.y21{bottom:521.423460px;}
.yd3{bottom:524.865600px;}
.y4c{bottom:526.498200px;}
.y106{bottom:529.920000px;}
.y80{bottom:533.264040px;}
.y119{bottom:537.291360px;}
.y11a{bottom:537.300000px;}
.yb3{bottom:537.818040px;}
.yd2{bottom:541.971900px;}
.y20{bottom:547.702920px;}
.y4b{bottom:548.460000px;}
.y7f{bottom:550.370340px;}
.y118{bottom:552.233700px;}
.yd1{bottom:563.754420px;}
.yb2{bottom:563.918220px;}
.y117{bottom:567.356940px;}
.y1f{bottom:573.982380px;}
.y7e{bottom:576.649800px;}
.yd0{bottom:581.040000px;}
.y116{bottom:582.299280px;}
.y4a{bottom:584.100000px;}
.yb1{bottom:590.197680px;}
.y7d{bottom:593.935380px;}
.y1e{bottom:600.261840px;}
.y114{bottom:601.682400px;}
.y115{bottom:601.740000px;}
.ycf{bottom:602.717760px;}
.y7c{bottom:611.220960px;}
.yb0{bottom:616.477140px;}
.yce{bottom:620.003340px;}
.y113{bottom:621.657180px;}
.y1d{bottom:626.362020px;}
.y7b{bottom:628.506540px;}
.y49{bottom:629.633700px;}
.yaf{bottom:633.762720px;}
.ycd{bottom:637.109640px;}
.y112{bottom:638.942760px;}
.y48{bottom:646.740000px;}
.y1c{bottom:652.641480px;}
.y7a{bottom:654.786000px;}
.y111{bottom:656.228340px;}
.ycc{bottom:659.071440px;}
.yae{bottom:660.042180px;}
.y47{bottom:664.560000px;}
.y110{bottom:673.513920px;}
.ycb{bottom:676.177740px;}
.y79{bottom:676.568520px;}
.yad{bottom:677.148480px;}
.y1b{bottom:678.920940px;}
.y10f{bottom:690.799500px;}
.y164{bottom:697.680000px;}
.yca{bottom:697.960260px;}
.yac{bottom:703.427940px;}
.y1a{bottom:705.200400px;}
.y44{bottom:706.680000px;}
.y10e{bottom:707.905800px;}
.y78{bottom:711.662580px;}
.yc9{bottom:715.245840px;}
.y46{bottom:719.093700px;}
.yab{bottom:720.713520px;}
.y10d{bottom:725.191380px;}
.y77{bottom:728.948160px;}
.y19{bottom:731.479860px;}
.y45{bottom:736.200000px;}
.yc8{bottom:737.028360px;}
.y10c{bottom:742.476960px;}
.y163{bottom:743.220000px;}
.y76{bottom:746.233740px;}
.yaa{bottom:746.992980px;}
.y3e{bottom:750.060000px;}
.yc7{bottom:754.134660px;}
.y18{bottom:757.580040px;}
.y155{bottom:757.800000px;}
.y10b{bottom:759.762540px;}
.y43{bottom:762.463260px;}
.y75{bottom:763.519320px;}
.ya9{bottom:764.278560px;}
.y161{bottom:764.623260px;}
.yc6{bottom:771.420240px;}
.y10a{bottom:777.048120px;}
.y102{bottom:777.427920px;}
.y15b{bottom:778.476960px;}
.y42{bottom:779.748840px;}
.ya8{bottom:781.564140px;}
.y160{bottom:781.908840px;}
.y17{bottom:784.038780px;}
.y74{bottom:789.619500px;}
.y105{bottom:792.009360px;}
.yc5{bottom:793.202760px;}
.y109{bottom:794.154420px;}
.y101{bottom:794.160720px;}
.y15a{bottom:795.762540px;}
.y41{bottom:797.034420px;}
.y15f{bottom:799.194420px;}
.ya7{bottom:803.346660px;}
.y73{bottom:806.905080px;}
.y104{bottom:807.128640px;}
.y100{bottom:809.280000px;}
.y16{bottom:810.318240px;}
.yc4{bottom:810.488340px;}
.y108{bottom:811.440000px;}
.y159{bottom:813.048120px;}
.y40{bottom:814.320000px;}
.y15e{bottom:816.480000px;}
.yff{bottom:824.220000px;}
.y103{bottom:824.234940px;}
.y3a{bottom:828.180000px;}
.y72{bottom:828.866880px;}
.y158{bottom:830.154420px;}
.y162{bottom:830.160000px;}
.y15{bottom:832.100760px;}
.yc3{bottom:832.270860px;}
.y15d{bottom:833.215500px;}
.ya6{bottom:838.617300px;}
.y3d{bottom:840.593700px;}
.y3c{bottom:840.780000px;}
.yf5{bottom:843.300000px;}
.y157{bottom:847.440000px;}
.y15c{bottom:848.700000px;}
.y14{bottom:849.386340px;}
.yc2{bottom:849.556440px;}
.ya5{bottom:856.617300px;}
.yf4{bottom:860.047020px;}
.y71{bottom:863.960940px;}
.yc1{bottom:866.662740px;}
.y13{bottom:866.671920px;}
.y36{bottom:871.560000px;}
.yf3{bottom:873.723060px;}
.ya4{bottom:874.562040px;}
.y150{bottom:879.300000px;}
.y70{bottom:881.246520px;}
.y39{bottom:883.974420px;}
.yf2{bottom:887.580000px;}
.y12{bottom:888.275160px;}
.yc0{bottom:888.445260px;}
.ya3{bottom:892.564740px;}
.y6f{bottom:898.532100px;}
.y154{bottom:899.988840px;}
.y38{bottom:901.260000px;}
.y11{bottom:905.560740px;}
.ybf{bottom:905.730840px;}
.yf1{bottom:905.940000px;}
.yf0{bottom:905.950080px;}
.ya2{bottom:910.567440px;}
.y6e{bottom:915.638400px;}
.y153{bottom:917.274420px;}
.yef{bottom:919.626120px;}
.y10{bottom:927.343260px;}
.ybe{bottom:927.513360px;}
.ya1{bottom:928.570140px;}
.y33{bottom:932.400000px;}
.yee{bottom:933.483060px;}
.y152{bottom:934.560000px;}
.y6d{bottom:937.600200px;}
.yf{bottom:944.628840px;}
.ybd{bottom:944.798940px;}
.y35{bottom:944.808120px;}
.ya0{bottom:946.572840px;}
.yed{bottom:947.340000px;}
.ye{bottom:961.914420px;}
.yec{bottom:965.520000px;}
.yeb{bottom:965.526120px;}
.y14a{bottom:966.420000px;}
.ybc{bottom:970.899120px;}
.y6c{bottom:972.694260px;}
.y9f{bottom:973.390140px;}
.yfe{bottom:976.140000px;}
.yd{bottom:979.200000px;}
.yea{bottom:979.383060px;}
.y14f{bottom:986.923260px;}
.y2b{bottom:993.060000px;}
.ye9{bottom:993.240000px;}
.y6b{bottom:994.656060px;}
.y9e{bottom:995.172660px;}
.ybb{bottom:997.178580px;}
.y14e{bottom:1004.208840px;}
.y32{bottom:1005.457680px;}
.yfc{bottom:1008.000000px;}
.ye8{bottom:1011.420000px;}
.ye7{bottom:1011.426120px;}
.y9d{bottom:1012.458240px;}
.yba{bottom:1014.464160px;}
.y14d{bottom:1021.494420px;}
.y31{bottom:1022.743260px;}
.ye6{bottom:1025.283060px;}
.yc{bottom:1026.540000px;}
.yfb{bottom:1028.700000px;}
.y6a{bottom:1029.750120px;}
.y9c{bottom:1034.240760px;}
.y14c{bottom:1038.780000px;}
.ye5{bottom:1039.140000px;}
.y30{bottom:1040.028840px;}
.yb9{bottom:1040.743620px;}
.yfa{bottom:1043.280000px;}
.y69{bottom:1047.035700px;}
.y9b{bottom:1051.526340px;}
.y2f{bottom:1057.314420px;}
.ye4{bottom:1057.847400px;}
.yb8{bottom:1058.029200px;}
.ye2{bottom:1062.000720px;}
.y68{bottom:1064.142000px;}
.y9a{bottom:1068.632640px;}
.y146{bottom:1070.640000px;}
.y2e{bottom:1074.600000px;}
.ye3{bottom:1074.774420px;}
.ye1{bottom:1076.940720px;}
.yf8{bottom:1078.560000px;}
.yb7{bottom:1084.308660px;}
.yb{bottom:1088.640000px;}
.y99{bottom:1090.415160px;}
.y67{bottom:1090.421460px;}
.y149{bottom:1091.142540px;}
.y145{bottom:1091.154420px;}
.y2d{bottom:1091.880000px;}
.ye0{bottom:1092.060000px;}
.y148{bottom:1095.654420px;}
.yf7{bottom:1099.260000px;}
.yb6{bottom:1101.414960px;}
.y98{bottom:1107.700740px;}
.y66{bottom:1107.707040px;}
.y144{bottom:1108.440000px;}
.y147{bottom:1112.940000px;}
.ydd{bottom:1113.840000px;}
.y2a{bottom:1118.160000px;}
.y65{bottom:1124.992620px;}
.y5{bottom:1126.080000px;}
.y142{bottom:1127.520000px;}
.y97{bottom:1129.483260px;}
.ya{bottom:1130.226120px;}
.y29{bottom:1135.800000px;}
.y64{bottom:1142.278200px;}
.y9{bottom:1144.083060px;}
.yb5{bottom:1144.980000px;}
.y96{bottom:1146.768840px;}
.ydc{bottom:1151.820000px;}
.y8{bottom:1157.940000px;}
.yb4{bottom:1162.800000px;}
.y95{bottom:1164.054420px;}
.y63{bottom:1164.240000px;}
.ydb{bottom:1165.682880px;}
.y141{bottom:1165.863960px;}
.y2{bottom:1201.320000px;}
.y1{bottom:1216.260000px;}
.h2{height:18.773438px;}
.h10{height:26.280000px;}
.h13{height:34.378500px;}
.h1e{height:34.380000px;}
.h16{height:34.560000px;}
.h20{height:36.180000px;}
.h1b{height:42.660000px;}
.hd{height:43.380000px;}
.h4{height:50.312812px;}
.h5{height:51.840000px;}
.h21{height:56.160000px;}
.h19{height:56.320312px;}
.hb{height:60.660000px;}
.hc{height:60.840000px;}
.h3{height:62.327813px;}
.h12{height:62.338613px;}
.h11{height:62.559652px;}
.h9{height:69.086250px;}
.h1d{height:69.840000px;}
.h8{height:75.093750px;}
.hf{height:78.120000px;}
.h24{height:86.220000px;}
.h7{height:87.859687px;}
.h23{height:103.498500px;}
.h1f{height:104.940000px;}
.ha{height:112.500000px;}
.h22{height:113.422612px;}
.h25{height:120.780000px;}
.h1a{height:122.804933px;}
.h6{height:125.406562px;}
.he{height:130.007812px;}
.h14{height:131.470132px;}
.h1c{height:134.338613px;}
.h17{height:163.978500px;}
.h15{height:269.818500px;}
.h18{height:312.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:84.240000px;}
.w7{width:105.480000px;}
.w10{width:125.100000px;}
.wd{width:145.620000px;}
.we{width:148.140000px;}
.w9{width:157.320000px;}
.wa{width:157.680000px;}
.w11{width:158.760000px;}
.w3{width:162.000000px;}
.w5{width:186.480000px;}
.wc{width:188.280000px;}
.wb{width:244.440000px;}
.wf{width:328.860000px;}
.w8{width:337.500000px;}
.w4{width:567.000000px;}
.w2{width:600.121500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:5.220000px;}
.x10{left:8.100000px;}
.x14{left:10.260000px;}
.xb{left:16.560000px;}
.x12{left:18.720000px;}
.x19{left:29.340000px;}
.x18{left:35.280000px;}
.x1b{left:36.720000px;}
.x3f{left:40.680000px;}
.x1c{left:45.720000px;}
.x3d{left:48.960000px;}
.x3a{left:54.000000px;}
.x22{left:81.540000px;}
.x1{left:89.280000px;}
.x13{left:93.960000px;}
.xa{left:97.740000px;}
.x1f{left:99.923580px;}
.x7{left:102.420000px;}
.x11{left:105.840000px;}
.x8{left:121.304160px;}
.x1d{left:124.919100px;}
.x21{left:129.677760px;}
.x20{left:131.739480px;}
.x1e{left:151.691580px;}
.x9{left:153.171180px;}
.xc{left:177.480000px;}
.x2a{left:209.520000px;}
.x5{left:212.220000px;}
.x2d{left:227.880000px;}
.x30{left:235.620000px;}
.x23{left:239.580000px;}
.x26{left:247.315320px;}
.xd{left:251.280000px;}
.xf{left:259.380000px;}
.x15{left:281.160000px;}
.x6{left:311.580000px;}
.x16{left:366.120000px;}
.x2e{left:376.740000px;}
.x31{left:384.452280px;}
.x24{left:397.980000px;}
.x2{left:404.820000px;}
.xe{left:442.440000px;}
.x27{left:454.500000px;}
.x2c{left:460.620000px;}
.x17{left:472.500000px;}
.x1a{left:482.580000px;}
.x32{left:536.220000px;}
.x34{left:564.839460px;}
.x33{left:568.440000px;}
.x35{left:573.116220px;}
.x3b{left:576.900000px;}
.x3c{left:581.382000px;}
.x28{left:591.660000px;}
.x29{left:606.780000px;}
.x36{left:621.360000px;}
.x25{left:643.140000px;}
.x2b{left:650.880000px;}
.x37{left:653.580000px;}
.x38{left:658.256220px;}
.x3e{left:662.040000px;}
.x4{left:694.620000px;}
.x2f{left:706.320000px;}
.x39{left:714.060000px;}
@media print{
.v2{vertical-align:-60.822400pt;}
.v3{vertical-align:-18.353920pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v8{vertical-align:45.417600pt;}
.v6{vertical-align:53.757440pt;}
.v1{vertical-align:60.160000pt;}
.v5{vertical-align:61.459840pt;}
.v7{vertical-align:64.009600pt;}
.ls60{letter-spacing:-0.956160pt;}
.ls29{letter-spacing:-0.903040pt;}
.ls61{letter-spacing:-0.849920pt;}
.ls27{letter-spacing:-0.743680pt;}
.ls26{letter-spacing:-0.690560pt;}
.ls36{letter-spacing:-0.584320pt;}
.ls37{letter-spacing:-0.318720pt;}
.ls11{letter-spacing:-0.299520pt;}
.ls15{letter-spacing:-0.265600pt;}
.lse{letter-spacing:-0.213760pt;}
.ls25{letter-spacing:-0.212480pt;}
.lsc{letter-spacing:-0.171520pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls24{letter-spacing:-0.117760pt;}
.lsd{letter-spacing:-0.106240pt;}
.ls64{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:-0.074880pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls2a{letter-spacing:-0.053120pt;}
.lsb{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.021120pt;}
.ls3f{letter-spacing:0.039040pt;}
.ls3c{letter-spacing:0.040320pt;}
.ls5f{letter-spacing:0.042880pt;}
.ls17{letter-spacing:0.053120pt;}
.ls3b{letter-spacing:0.083840pt;}
.ls0{letter-spacing:0.085760pt;}
.ls35{letter-spacing:0.106240pt;}
.ls2b{letter-spacing:0.159360pt;}
.ls5{letter-spacing:0.212480pt;}
.ls16{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.256000pt;}
.ls57{letter-spacing:0.257280pt;}
.ls1e{letter-spacing:0.265600pt;}
.ls1f{letter-spacing:0.318720pt;}
.lsf{letter-spacing:0.343040pt;}
.ls8{letter-spacing:0.371840pt;}
.ls6{letter-spacing:0.424960pt;}
.ls44{letter-spacing:0.478080pt;}
.ls39{letter-spacing:0.483840pt;}
.ls38{letter-spacing:0.531200pt;}
.ls1{letter-spacing:0.553600pt;}
.ls28{letter-spacing:0.584320pt;}
.ls58{letter-spacing:0.592640pt;}
.ls3{letter-spacing:0.599040pt;}
.ls42{letter-spacing:0.622080pt;}
.ls3e{letter-spacing:0.624640pt;}
.ls7{letter-spacing:0.637440pt;}
.ls5e{letter-spacing:0.690560pt;}
.ls3d{letter-spacing:0.693760pt;}
.ls33{letter-spacing:0.743680pt;}
.ls2f{letter-spacing:0.796800pt;}
.ls22{letter-spacing:0.849920pt;}
.ls4b{letter-spacing:0.903040pt;}
.ls59{letter-spacing:0.956160pt;}
.ls5d{letter-spacing:0.960000pt;}
.ls46{letter-spacing:1.221760pt;}
.ls54{letter-spacing:1.274880pt;}
.ls45{letter-spacing:1.381120pt;}
.ls5c{letter-spacing:1.600000pt;}
.ls2e{letter-spacing:1.859200pt;}
.ls55{letter-spacing:2.018560pt;}
.ls30{letter-spacing:2.549760pt;}
.ls21{letter-spacing:3.134080pt;}
.ls4a{letter-spacing:3.187200pt;}
.ls47{letter-spacing:3.771520pt;}
.ls49{letter-spacing:3.930880pt;}
.ls1d{letter-spacing:4.408960pt;}
.ls48{letter-spacing:4.515200pt;}
.ls3a{letter-spacing:5.046400pt;}
.ls51{letter-spacing:5.736960pt;}
.ls50{letter-spacing:5.790080pt;}
.ls4f{letter-spacing:6.374400pt;}
.ls4e{letter-spacing:6.427520pt;}
.ls1b{letter-spacing:7.649280pt;}
.ls53{letter-spacing:7.702400pt;}
.ls52{letter-spacing:8.499200pt;}
.ls32{letter-spacing:8.924160pt;}
.ls19{letter-spacing:9.561600pt;}
.ls23{letter-spacing:11.473920pt;}
.ls2d{letter-spacing:12.111360pt;}
.ls40{letter-spacing:13.386240pt;}
.ls20{letter-spacing:14.608000pt;}
.ls43{letter-spacing:16.573440pt;}
.ls2c{letter-spacing:17.317120pt;}
.lsa{letter-spacing:17.848320pt;}
.ls1a{letter-spacing:19.176320pt;}
.ls31{letter-spacing:23.000960pt;}
.ls9{letter-spacing:24.275840pt;}
.ls34{letter-spacing:25.550720pt;}
.ls4d{letter-spacing:38.990080pt;}
.ls4c{letter-spacing:39.627520pt;}
.ls5a{letter-spacing:149.692160pt;}
.ls1c{letter-spacing:249.669760pt;}
.ls18{letter-spacing:276.432640pt;}
.ls5b{letter-spacing:291.788160pt;}
.ls62{letter-spacing:318.666880pt;}
.ls56{letter-spacing:352.610560pt;}
.ls2{letter-spacing:485.104640pt;}
.ls4{letter-spacing:825.088000pt;}
.ls63{letter-spacing:988.138240pt;}
.ws0{word-spacing:-29.498880pt;}
.ws3{word-spacing:-20.741760pt;}
.ws4{word-spacing:-20.517120pt;}
.ws6{word-spacing:-17.792000pt;}
.ws5{word-spacing:-17.728000pt;}
.ws7{word-spacing:-17.664000pt;}
.ws1c{word-spacing:-16.250880pt;}
.ws5e{word-spacing:-15.723520pt;}
.ws57{word-spacing:-15.457920pt;}
.ws4a{word-spacing:-15.298560pt;}
.ws56{word-spacing:-15.192320pt;}
.ws4b{word-spacing:-15.139200pt;}
.ws53{word-spacing:-15.086080pt;}
.ws5d{word-spacing:-15.032960pt;}
.ws64{word-spacing:-14.998400pt;}
.wsa{word-spacing:-14.979840pt;}
.ws3b{word-spacing:-14.926720pt;}
.ws1e{word-spacing:-14.820480pt;}
.ws8{word-spacing:-14.767360pt;}
.ws22{word-spacing:-14.714240pt;}
.ws9{word-spacing:-14.661120pt;}
.ws1d{word-spacing:-14.554880pt;}
.ws1f{word-spacing:-14.501760pt;}
.ws3c{word-spacing:-14.448640pt;}
.ws20{word-spacing:-14.076800pt;}
.ws21{word-spacing:-14.023680pt;}
.ws5c{word-spacing:-13.917440pt;}
.ws5b{word-spacing:-13.811200pt;}
.ws1{word-spacing:-12.263680pt;}
.ws59{word-spacing:-12.177920pt;}
.ws58{word-spacing:-11.963520pt;}
.ws5a{word-spacing:-11.920640pt;}
.ws2{word-spacing:-11.749120pt;}
.ws4d{word-spacing:-10.229760pt;}
.ws4c{word-spacing:-9.607680pt;}
.ws62{word-spacing:-1.221760pt;}
.ws3f{word-spacing:-0.903040pt;}
.ws10{word-spacing:-0.768000pt;}
.ws37{word-spacing:-0.584320pt;}
.ws4e{word-spacing:-0.531200pt;}
.ws5f{word-spacing:-0.471680pt;}
.ws32{word-spacing:-0.265600pt;}
.ws60{word-spacing:-0.257280pt;}
.wsd{word-spacing:-0.214400pt;}
.ws24{word-spacing:-0.212480pt;}
.ws55{word-spacing:-0.106240pt;}
.ws61{word-spacing:-0.053120pt;}
.wsb{word-spacing:0.000000pt;}
.ws15{word-spacing:0.053120pt;}
.wse{word-spacing:0.106240pt;}
.ws63{word-spacing:0.171520pt;}
.ws66{word-spacing:0.192000pt;}
.ws30{word-spacing:0.212480pt;}
.ws25{word-spacing:0.265600pt;}
.ws65{word-spacing:0.318720pt;}
.wsf{word-spacing:0.374400pt;}
.wsc{word-spacing:0.428800pt;}
.ws1b{word-spacing:0.690560pt;}
.ws54{word-spacing:0.849920pt;}
.ws39{word-spacing:0.903040pt;}
.ws3d{word-spacing:1.168640pt;}
.ws35{word-spacing:1.328000pt;}
.ws19{word-spacing:1.965440pt;}
.ws38{word-spacing:2.496640pt;}
.ws18{word-spacing:2.656000pt;}
.ws51{word-spacing:2.815360pt;}
.ws2f{word-spacing:3.293440pt;}
.ws49{word-spacing:3.452800pt;}
.ws31{word-spacing:3.930880pt;}
.ws2e{word-spacing:4.568320pt;}
.ws3e{word-spacing:5.205760pt;}
.ws50{word-spacing:6.480640pt;}
.ws2c{word-spacing:7.118080pt;}
.ws2a{word-spacing:7.755520pt;}
.ws36{word-spacing:8.392960pt;}
.ws48{word-spacing:9.030400pt;}
.ws1a{word-spacing:9.667840pt;}
.ws40{word-spacing:10.305280pt;}
.ws29{word-spacing:10.942720pt;}
.ws45{word-spacing:11.102080pt;}
.ws2b{word-spacing:11.580160pt;}
.ws28{word-spacing:11.686400pt;}
.ws3a{word-spacing:12.217600pt;}
.ws16{word-spacing:12.855040pt;}
.ws17{word-spacing:13.492480pt;}
.ws44{word-spacing:14.129920pt;}
.ws33{word-spacing:14.767360pt;}
.ws34{word-spacing:15.404800pt;}
.ws26{word-spacing:16.095360pt;}
.ws4f{word-spacing:16.732800pt;}
.ws2d{word-spacing:17.370240pt;}
.ws41{word-spacing:18.645120pt;}
.ws27{word-spacing:19.282560pt;}
.ws12{word-spacing:19.920000pt;}
.ws11{word-spacing:20.716800pt;}
.ws52{word-spacing:22.469760pt;}
.ws43{word-spacing:26.931840pt;}
.ws23{word-spacing:30.809600pt;}
.ws42{word-spacing:31.447040pt;}
.ws14{word-spacing:32.084480pt;}
.ws13{word-spacing:37.184000pt;}
.ws47{word-spacing:45.523840pt;}
.ws46{word-spacing:46.320640pt;}
._a{margin-left:-3.184640pt;}
._13{margin-left:-1.980160pt;}
._1{margin-left:-1.077120pt;}
._0{width:0.900480pt;}
._2{width:1.813760pt;}
._7{width:2.995200pt;}
._9{width:3.948800pt;}
._c{width:4.846720pt;}
._11{width:6.010240pt;}
._12{width:7.717760pt;}
._10{width:10.636800pt;}
._8{width:13.128320pt;}
._5{width:15.806080pt;}
._6{width:19.515520pt;}
._3{width:22.894720pt;}
._4{width:34.739200pt;}
._d{width:43.664640pt;}
._b{width:62.894080pt;}
._f{width:68.949760pt;}
._e{width:753.241600pt;}
.fs0{font-size:16.000000pt;}
.fs8{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yf6{bottom:2.560000pt;}
.y12c{bottom:2.880000pt;}
.yf9{bottom:3.040000pt;}
.ydf{bottom:3.200000pt;}
.y7{bottom:5.920000pt;}
.y61{bottom:11.040000pt;}
.y5c{bottom:11.200000pt;}
.y12b{bottom:18.240000pt;}
.yde{bottom:18.400000pt;}
.y143{bottom:18.560000pt;}
.y13a{bottom:19.840000pt;}
.y3b{bottom:26.400000pt;}
.y6{bottom:33.760000pt;}
.y4{bottom:40.800000pt;}
.y34{bottom:41.760000pt;}
.y37{bottom:41.920000pt;}
.y127{bottom:49.760000pt;}
.y3{bottom:55.680000pt;}
.y3f{bottom:57.280000pt;}
.y151{bottom:64.320000pt;}
.y62{bottom:74.720000pt;}
.y140{bottom:77.273120pt;}
.y14b{bottom:79.680000pt;}
.y94{bottom:79.875360pt;}
.y131{bottom:80.960000pt;}
.y2c{bottom:87.840000pt;}
.y13f{bottom:91.198400pt;}
.y60{bottom:91.680000pt;}
.y156{bottom:95.040000pt;}
.y93{bottom:95.240320pt;}
.y13e{bottom:106.399360pt;}
.y92{bottom:114.761920pt;}
.y5d{bottom:115.680000pt;}
.y13d{bottom:121.278720pt;}
.y5f{bottom:126.715040pt;}
.yfd{bottom:133.440000pt;}
.y13c{bottom:134.400000pt;}
.y5e{bottom:142.080000pt;}
.y91{bottom:145.956640pt;}
.y139{bottom:148.960000pt;}
.y13b{bottom:153.440000pt;}
.y90{bottom:161.321600pt;}
.y138{bottom:164.800000pt;}
.y5b{bottom:170.400000pt;}
.y137{bottom:181.760000pt;}
.y8f{bottom:184.521760pt;}
.y136{bottom:196.160000pt;}
.y8e{bottom:199.886720pt;}
.y5a{bottom:205.399680pt;}
.y130{bottom:213.120000pt;}
.y8d{bottom:215.251680pt;}
.y59{bottom:228.759200pt;}
.y8c{bottom:230.616640pt;}
.y135{bottom:244.480000pt;}
.y8b{bottom:245.981600pt;}
.y58{bottom:252.118720pt;}
.y12f{bottom:257.915840pt;}
.y133{bottom:263.515040pt;}
.y107{bottom:265.600000pt;}
.y57{bottom:267.324320pt;}
.y8a{bottom:269.181760pt;}
.y134{bottom:275.840000pt;}
.y12e{bottom:276.800000pt;}
.y132{bottom:278.880000pt;}
.y56{bottom:282.848640pt;}
.y89{bottom:284.546720pt;}
.y12d{bottom:290.080000pt;}
.y55{bottom:298.213600pt;}
.y12a{bottom:307.200000pt;}
.y28{bottom:308.124800pt;}
.y54{bottom:313.419200pt;}
.y88{bottom:323.271200pt;}
.y27{bottom:323.489760pt;}
.yda{bottom:335.168160pt;}
.y53{bottom:336.778720pt;}
.y126{bottom:338.400000pt;}
.y87{bottom:346.630720pt;}
.y26{bottom:346.849280pt;}
.y52{bottom:352.143680pt;}
.yd9{bottom:358.527680pt;}
.y86{bottom:361.995680pt;}
.y129{bottom:369.760000pt;}
.y25{bottom:370.208800pt;}
.y128{bottom:372.800000pt;}
.y51{bottom:375.343840pt;}
.y85{bottom:377.201280pt;}
.yd8{bottom:381.727840pt;}
.y122{bottom:388.800640pt;}
.y50{bottom:390.708800pt;}
.y84{bottom:392.566240pt;}
.y24{bottom:393.568320pt;}
.y124{bottom:396.795200pt;}
.yd7{bottom:401.090080pt;}
.y125{bottom:401.120000pt;}
.y121{bottom:402.080640pt;}
.y83{bottom:407.931200pt;}
.y4f{bottom:414.068320pt;}
.y120{bottom:415.520000pt;}
.y123{bottom:415.838720pt;}
.yd6{bottom:416.455040pt;}
.y23{bottom:416.768480pt;}
.y82{bottom:427.452800pt;}
.y4e{bottom:429.433280pt;}
.yd5{bottom:431.820000pt;}
.y11d{bottom:432.480000pt;}
.y11f{bottom:438.076320pt;}
.y22{bottom:440.128000pt;}
.y11c{bottom:440.640640pt;}
.yd4{bottom:451.182240pt;}
.y4d{bottom:452.792800pt;}
.y11e{bottom:453.760000pt;}
.y11b{bottom:454.080000pt;}
.y81{bottom:458.647520pt;}
.y21{bottom:463.487520pt;}
.yd3{bottom:466.547200pt;}
.y4c{bottom:467.998400pt;}
.y106{bottom:471.040000pt;}
.y80{bottom:474.012480pt;}
.y119{bottom:477.592320pt;}
.y11a{bottom:477.600000pt;}
.yb3{bottom:478.060480pt;}
.yd2{bottom:481.752800pt;}
.y20{bottom:486.847040pt;}
.y4b{bottom:487.520000pt;}
.y7f{bottom:489.218080pt;}
.y118{bottom:490.874400pt;}
.yd1{bottom:501.115040pt;}
.yb2{bottom:501.260640pt;}
.y117{bottom:504.317280pt;}
.y1f{bottom:510.206560pt;}
.y7e{bottom:512.577600pt;}
.yd0{bottom:516.480000pt;}
.y116{bottom:517.599360pt;}
.y4a{bottom:519.200000pt;}
.yb1{bottom:524.620160pt;}
.y7d{bottom:527.942560pt;}
.y1e{bottom:533.566080pt;}
.y114{bottom:534.828800pt;}
.y115{bottom:534.880000pt;}
.ycf{bottom:535.749120pt;}
.y7c{bottom:543.307520pt;}
.yb0{bottom:547.979680pt;}
.yce{bottom:551.114080pt;}
.y113{bottom:552.584160pt;}
.y1d{bottom:556.766240pt;}
.y7b{bottom:558.672480pt;}
.y49{bottom:559.674400pt;}
.yaf{bottom:563.344640pt;}
.ycd{bottom:566.319680pt;}
.y112{bottom:567.949120pt;}
.y48{bottom:574.880000pt;}
.y1c{bottom:580.125760pt;}
.y7a{bottom:582.032000pt;}
.y111{bottom:583.314080pt;}
.ycc{bottom:585.841280pt;}
.yae{bottom:586.704160pt;}
.y47{bottom:590.720000pt;}
.y110{bottom:598.679040pt;}
.ycb{bottom:601.046880pt;}
.y79{bottom:601.394240pt;}
.yad{bottom:601.909760pt;}
.y1b{bottom:603.485280pt;}
.y10f{bottom:614.044000pt;}
.y164{bottom:620.160000pt;}
.yca{bottom:620.409120pt;}
.yac{bottom:625.269280pt;}
.y1a{bottom:626.844800pt;}
.y44{bottom:628.160000pt;}
.y10e{bottom:629.249600pt;}
.y78{bottom:632.588960pt;}
.yc9{bottom:635.774080pt;}
.y46{bottom:639.194400pt;}
.yab{bottom:640.634240pt;}
.y10d{bottom:644.614560pt;}
.y77{bottom:647.953920pt;}
.y19{bottom:650.204320pt;}
.y45{bottom:654.400000pt;}
.yc8{bottom:655.136320pt;}
.y10c{bottom:659.979520pt;}
.y163{bottom:660.640000pt;}
.y76{bottom:663.318880pt;}
.yaa{bottom:663.993760pt;}
.y3e{bottom:666.720000pt;}
.yc7{bottom:670.341920pt;}
.y18{bottom:673.404480pt;}
.y155{bottom:673.600000pt;}
.y10b{bottom:675.344480pt;}
.y43{bottom:677.745120pt;}
.y75{bottom:678.683840pt;}
.ya9{bottom:679.358720pt;}
.y161{bottom:679.665120pt;}
.yc6{bottom:685.706880pt;}
.y10a{bottom:690.709440pt;}
.y102{bottom:691.047040pt;}
.y15b{bottom:691.979520pt;}
.y42{bottom:693.110080pt;}
.ya8{bottom:694.723680pt;}
.y160{bottom:695.030080pt;}
.y17{bottom:696.923360pt;}
.y74{bottom:701.884000pt;}
.y105{bottom:704.008320pt;}
.yc5{bottom:705.069120pt;}
.y109{bottom:705.915040pt;}
.y101{bottom:705.920640pt;}
.y15a{bottom:707.344480pt;}
.y41{bottom:708.475040pt;}
.y15f{bottom:710.395040pt;}
.ya7{bottom:714.085920pt;}
.y73{bottom:717.248960pt;}
.y104{bottom:717.447680pt;}
.y100{bottom:719.360000pt;}
.y16{bottom:720.282880pt;}
.yc4{bottom:720.434080pt;}
.y108{bottom:721.280000pt;}
.y159{bottom:722.709440pt;}
.y40{bottom:723.840000pt;}
.y15e{bottom:725.760000pt;}
.yff{bottom:732.640000pt;}
.y103{bottom:732.653280pt;}
.y3a{bottom:736.160000pt;}
.y72{bottom:736.770560pt;}
.y158{bottom:737.915040pt;}
.y162{bottom:737.920000pt;}
.y15{bottom:739.645120pt;}
.yc3{bottom:739.796320pt;}
.y15d{bottom:740.636000pt;}
.ya6{bottom:745.437600pt;}
.y3d{bottom:747.194400pt;}
.y3c{bottom:747.360000pt;}
.yf5{bottom:749.600000pt;}
.y157{bottom:753.280000pt;}
.y15c{bottom:754.400000pt;}
.y14{bottom:755.010080pt;}
.yc2{bottom:755.161280pt;}
.ya5{bottom:761.437600pt;}
.yf4{bottom:764.486240pt;}
.y71{bottom:767.965280pt;}
.yc1{bottom:770.366880pt;}
.y13{bottom:770.375040pt;}
.y36{bottom:774.720000pt;}
.yf3{bottom:776.642720pt;}
.ya4{bottom:777.388480pt;}
.y150{bottom:781.600000pt;}
.y70{bottom:783.330240pt;}
.y39{bottom:785.755040pt;}
.yf2{bottom:788.960000pt;}
.y12{bottom:789.577920pt;}
.yc0{bottom:789.729120pt;}
.ya3{bottom:793.390880pt;}
.y6f{bottom:798.695200pt;}
.y154{bottom:799.990080pt;}
.y38{bottom:801.120000pt;}
.y11{bottom:804.942880pt;}
.ybf{bottom:805.094080pt;}
.yf1{bottom:805.280000pt;}
.yf0{bottom:805.288960pt;}
.ya2{bottom:809.393280pt;}
.y6e{bottom:813.900800pt;}
.y153{bottom:815.355040pt;}
.yef{bottom:817.445440pt;}
.y10{bottom:824.305120pt;}
.ybe{bottom:824.456320pt;}
.ya1{bottom:825.395680pt;}
.y33{bottom:828.800000pt;}
.yee{bottom:829.762720pt;}
.y152{bottom:830.720000pt;}
.y6d{bottom:833.422400pt;}
.yf{bottom:839.670080pt;}
.ybd{bottom:839.821280pt;}
.y35{bottom:839.829440pt;}
.ya0{bottom:841.398080pt;}
.yed{bottom:842.080000pt;}
.ye{bottom:855.035040pt;}
.yec{bottom:858.240000pt;}
.yeb{bottom:858.245440pt;}
.y14a{bottom:859.040000pt;}
.ybc{bottom:863.021440pt;}
.y6c{bottom:864.617120pt;}
.y9f{bottom:865.235680pt;}
.yfe{bottom:867.680000pt;}
.yd{bottom:870.400000pt;}
.yea{bottom:870.562720pt;}
.y14f{bottom:877.265120pt;}
.y2b{bottom:882.720000pt;}
.ye9{bottom:882.880000pt;}
.y6b{bottom:884.138720pt;}
.y9e{bottom:884.597920pt;}
.ybb{bottom:886.380960pt;}
.y14e{bottom:892.630080pt;}
.y32{bottom:893.740160pt;}
.yfc{bottom:896.000000pt;}
.ye8{bottom:899.040000pt;}
.ye7{bottom:899.045440pt;}
.y9d{bottom:899.962880pt;}
.yba{bottom:901.745920pt;}
.y14d{bottom:907.995040pt;}
.y31{bottom:909.105120pt;}
.ye6{bottom:911.362720pt;}
.yc{bottom:912.480000pt;}
.yfb{bottom:914.400000pt;}
.y6a{bottom:915.333440pt;}
.y9c{bottom:919.325120pt;}
.y14c{bottom:923.360000pt;}
.ye5{bottom:923.680000pt;}
.y30{bottom:924.470080pt;}
.yb9{bottom:925.105440pt;}
.yfa{bottom:927.360000pt;}
.y69{bottom:930.698400pt;}
.y9b{bottom:934.690080pt;}
.y2f{bottom:939.835040pt;}
.ye4{bottom:940.308800pt;}
.yb8{bottom:940.470400pt;}
.ye2{bottom:944.000640pt;}
.y68{bottom:945.904000pt;}
.y9a{bottom:949.895680pt;}
.y146{bottom:951.680000pt;}
.y2e{bottom:955.200000pt;}
.ye3{bottom:955.355040pt;}
.ye1{bottom:957.280640pt;}
.yf8{bottom:958.720000pt;}
.yb7{bottom:963.829920pt;}
.yb{bottom:967.680000pt;}
.y99{bottom:969.257920pt;}
.y67{bottom:969.263520pt;}
.y149{bottom:969.904480pt;}
.y145{bottom:969.915040pt;}
.y2d{bottom:970.560000pt;}
.ye0{bottom:970.720000pt;}
.y148{bottom:973.915040pt;}
.yf7{bottom:977.120000pt;}
.yb6{bottom:979.035520pt;}
.y98{bottom:984.622880pt;}
.y66{bottom:984.628480pt;}
.y144{bottom:985.280000pt;}
.y147{bottom:989.280000pt;}
.ydd{bottom:990.080000pt;}
.y2a{bottom:993.920000pt;}
.y65{bottom:999.993440pt;}
.y5{bottom:1000.960000pt;}
.y142{bottom:1002.240000pt;}
.y97{bottom:1003.985120pt;}
.ya{bottom:1004.645440pt;}
.y29{bottom:1009.600000pt;}
.y64{bottom:1015.358400pt;}
.y9{bottom:1016.962720pt;}
.yb5{bottom:1017.760000pt;}
.y96{bottom:1019.350080pt;}
.ydc{bottom:1023.840000pt;}
.y8{bottom:1029.280000pt;}
.yb4{bottom:1033.600000pt;}
.y95{bottom:1034.715040pt;}
.y63{bottom:1034.880000pt;}
.ydb{bottom:1036.162560pt;}
.y141{bottom:1036.323520pt;}
.y2{bottom:1067.840000pt;}
.y1{bottom:1081.120000pt;}
.h2{height:16.687500pt;}
.h10{height:23.360000pt;}
.h13{height:30.558667pt;}
.h1e{height:30.560000pt;}
.h16{height:30.720000pt;}
.h20{height:32.160000pt;}
.h1b{height:37.920000pt;}
.hd{height:38.560000pt;}
.h4{height:44.722500pt;}
.h5{height:46.080000pt;}
.h21{height:49.920000pt;}
.h19{height:50.062500pt;}
.hb{height:53.920000pt;}
.hc{height:54.080000pt;}
.h3{height:55.402500pt;}
.h12{height:55.412100pt;}
.h11{height:55.608580pt;}
.h9{height:61.410000pt;}
.h1d{height:62.080000pt;}
.h8{height:66.750000pt;}
.hf{height:69.440000pt;}
.h24{height:76.640000pt;}
.h7{height:78.097500pt;}
.h23{height:91.998667pt;}
.h1f{height:93.280000pt;}
.ha{height:100.000000pt;}
.h22{height:100.820100pt;}
.h25{height:107.360000pt;}
.h1a{height:109.159940pt;}
.h6{height:111.472500pt;}
.he{height:115.562500pt;}
.h14{height:116.862340pt;}
.h1c{height:119.412100pt;}
.h17{height:145.758667pt;}
.h15{height:239.838667pt;}
.h18{height:277.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:74.880000pt;}
.w7{width:93.760000pt;}
.w10{width:111.200000pt;}
.wd{width:129.440000pt;}
.we{width:131.680000pt;}
.w9{width:139.840000pt;}
.wa{width:140.160000pt;}
.w11{width:141.120000pt;}
.w3{width:144.000000pt;}
.w5{width:165.760000pt;}
.wc{width:167.360000pt;}
.wb{width:217.280000pt;}
.wf{width:292.320000pt;}
.w8{width:300.000000pt;}
.w4{width:504.000000pt;}
.w2{width:533.441333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:4.640000pt;}
.x10{left:7.200000pt;}
.x14{left:9.120000pt;}
.xb{left:14.720000pt;}
.x12{left:16.640000pt;}
.x19{left:26.080000pt;}
.x18{left:31.360000pt;}
.x1b{left:32.640000pt;}
.x3f{left:36.160000pt;}
.x1c{left:40.640000pt;}
.x3d{left:43.520000pt;}
.x3a{left:48.000000pt;}
.x22{left:72.480000pt;}
.x1{left:79.360000pt;}
.x13{left:83.520000pt;}
.xa{left:86.880000pt;}
.x1f{left:88.820960pt;}
.x7{left:91.040000pt;}
.x11{left:94.080000pt;}
.x8{left:107.825920pt;}
.x1d{left:111.039200pt;}
.x21{left:115.269120pt;}
.x20{left:117.101760pt;}
.x1e{left:134.836960pt;}
.x9{left:136.152160pt;}
.xc{left:157.760000pt;}
.x2a{left:186.240000pt;}
.x5{left:188.640000pt;}
.x2d{left:202.560000pt;}
.x30{left:209.440000pt;}
.x23{left:212.960000pt;}
.x26{left:219.835840pt;}
.xd{left:223.360000pt;}
.xf{left:230.560000pt;}
.x15{left:249.920000pt;}
.x6{left:276.960000pt;}
.x16{left:325.440000pt;}
.x2e{left:334.880000pt;}
.x31{left:341.735360pt;}
.x24{left:353.760000pt;}
.x2{left:359.840000pt;}
.xe{left:393.280000pt;}
.x27{left:404.000000pt;}
.x2c{left:409.440000pt;}
.x17{left:420.000000pt;}
.x1a{left:428.960000pt;}
.x32{left:476.640000pt;}
.x34{left:502.079520pt;}
.x33{left:505.280000pt;}
.x35{left:509.436640pt;}
.x3b{left:512.800000pt;}
.x3c{left:516.784000pt;}
.x28{left:525.920000pt;}
.x29{left:539.360000pt;}
.x36{left:552.320000pt;}
.x25{left:571.680000pt;}
.x2b{left:578.560000pt;}
.x37{left:580.960000pt;}
.x38{left:585.116640pt;}
.x3e{left:588.480000pt;}
.x4{left:617.440000pt;}
.x2f{left:627.840000pt;}
.x39{left:634.720000pt;}
}




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