
    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_f06a3832bf5dab7f068d751f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.211914;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_e58244bc2b7b03208847ba93.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f814246a5e43991b1f46bfe7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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_5ffcd5aa78104ad7734c0b43.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.220215;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_9cc6bcbd00717698657249dc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.776855;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_e1a268f0c6b9fee2d1d8d036.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.774902;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_e7a7d81b3c4c73d171f37830.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.029785;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_c2d0b1fed89f7687cdc8af19.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.776367;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_a438e24105640ed255365229.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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_41d4d81e73f21f05542e87f7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.972656;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_c81c0bd0e3b8bcfb8a36eab7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.982422;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;}
.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);}
.v1{vertical-align:-79.920000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls1f{letter-spacing:-1.074000px;}
.ls25{letter-spacing:-1.056000px;}
.ls4{letter-spacing:-0.936000px;}
.ls24{letter-spacing:-0.774000px;}
.ls17{letter-spacing:-0.738000px;}
.ls15{letter-spacing:-0.553200px;}
.lsc{letter-spacing:-0.381000px;}
.lsf{letter-spacing:-0.368400px;}
.ls9{letter-spacing:-0.351600px;}
.ls20{letter-spacing:-0.334200px;}
.ls2{letter-spacing:-0.301200px;}
.ls23{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.279600px;}
.ls12{letter-spacing:-0.227400px;}
.ls1e{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.210000px;}
.lsa{letter-spacing:-0.178800px;}
.ls6{letter-spacing:-0.134400px;}
.ls5{letter-spacing:-0.120000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.011520px;}
.ls11{letter-spacing:0.048960px;}
.ls18{letter-spacing:0.080640px;}
.ls16{letter-spacing:0.121200px;}
.ls1a{letter-spacing:0.150000px;}
.ls8{letter-spacing:0.166800px;}
.lsd{letter-spacing:0.167040px;}
.ls21{letter-spacing:0.256200px;}
.ls10{letter-spacing:0.368400px;}
.ls1b{letter-spacing:0.368640px;}
.ls1d{letter-spacing:0.385800px;}
.ls1c{letter-spacing:0.420480px;}
.lsb{letter-spacing:3.324000px;}
.ls22{letter-spacing:7.752000px;}
.ls14{letter-spacing:23.345280px;}
.ls19{letter-spacing:59.345280px;}
.ls13{letter-spacing:84.659520px;}
.ls0{letter-spacing:189.059520px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws10{word-spacing:-66.240000px;}
.ws0{word-spacing:-28.810080px;}
.ws2{word-spacing:-28.675680px;}
.ws1{word-spacing:-27.874080px;}
.ws6{word-spacing:-24.624000px;}
.ws8{word-spacing:-24.301320px;}
.wsd{word-spacing:-23.483280px;}
.wse{word-spacing:-23.437680px;}
.ws12{word-spacing:-23.365440px;}
.ws4{word-spacing:-23.316480px;}
.ws7{word-spacing:-23.137680px;}
.wsa{word-spacing:-23.106480px;}
.ws13{word-spacing:-23.100480px;}
.wsc{word-spacing:-23.089080px;}
.wsb{word-spacing:-22.948080px;}
.ws3{word-spacing:-22.654080px;}
.wsf{word-spacing:-22.578480px;}
.ws14{word-spacing:-19.008000px;}
.ws11{word-spacing:-13.685760px;}
.ws9{word-spacing:0.000000px;}
._6d{margin-left:-12.817920px;}
._0{margin-left:-1.447200px;}
._1{width:1.044480px;}
._4{width:2.721120px;}
._8{width:3.811200px;}
._9{width:4.814880px;}
._c{width:6.348960px;}
._10{width:7.490400px;}
._1e{width:8.876160px;}
._35{width:9.920640px;}
._5{width:10.995840px;}
._6{width:12.386880px;}
._7{width:13.678080px;}
._1f{width:15.004800px;}
._e{width:16.626240px;}
._f{width:17.818560px;}
._13{width:19.342080px;}
._a{width:20.468160px;}
._b{width:21.981600px;}
._8c{width:23.112000px;}
._11{width:24.951360px;}
._12{width:26.585280px;}
._d{width:27.810720px;}
._27{width:28.814400px;}
._17{width:30.072960px;}
._15{width:31.199040px;}
._14{width:32.258880px;}
._3f{width:33.583680px;}
._48{width:34.908480px;}
._1d{width:36.024480px;}
._22{width:37.455840px;}
._2c{width:39.081600px;}
._37{width:40.783680px;}
._29{width:41.797440px;}
._2b{width:43.122240px;}
._68{width:44.369280px;}
._18{width:45.374400px;}
._1a{width:47.295360px;}
._2f{width:48.742560px;}
._40{width:49.832640px;}
._16{width:50.994720px;}
._3{width:52.528320px;}
._2{width:53.623200px;}
._2e{width:54.637920px;}
._25{width:56.625120px;}
._4d{width:58.262400px;}
._42{width:59.997600px;}
._51{width:61.195680px;}
._3a{width:62.535840px;}
._24{width:64.385280px;}
._3d{width:66.504960px;}
._3e{width:68.292480px;}
._43{width:69.950400px;}
._5c{width:71.068800px;}
._20{width:72.069120px;}
._53{width:73.327680px;}
._3c{width:74.443680px;}
._44{width:76.439520px;}
._46{width:77.965920px;}
._4c{width:79.080480px;}
._90{width:80.273520px;}
._2d{width:81.862560px;}
._2a{width:83.452320px;}
._19{width:85.449600px;}
._49{width:87.294240px;}
._23{width:88.751520px;}
._26{width:90.804960px;}
._36{width:92.206080px;}
._30{width:94.116960px;}
._34{width:95.343840px;}
._50{width:96.634080px;}
._72{width:98.300160px;}
._5e{width:99.889920px;}
._7c{width:101.072160px;}
._92{width:102.359520px;}
._52{width:103.769280px;}
._32{width:105.320640px;}
._7e{width:107.110080px;}
._67{width:108.376800px;}
._1c{width:109.958400px;}
._1b{width:111.869280px;}
._7f{width:113.194080px;}
._80{width:114.264000px;}
._73{width:116.108640px;}
._66{width:118.427040px;}
._5d{width:119.933280px;}
._76{width:121.805280px;}
._38{width:123.670080px;}
._39{width:124.981920px;}
._87{width:126.650880px;}
._28{width:128.429280px;}
._41{width:129.754080px;}
._47{width:130.824000px;}
._8e{width:132.138000px;}
._7d{width:135.649440px;}
._4e{width:136.727520px;}
._33{width:139.766400px;}
._3b{width:141.718080px;}
._69{width:142.981440px;}
._88{width:144.856800px;}
._7a{width:146.191680px;}
._84{width:148.235040px;}
._70{width:150.487200px;}
._56{width:152.282880px;}
._86{width:155.067840px;}
._57{width:156.912480px;}
._63{width:158.652960px;}
._6f{width:160.603200px;}
._94{width:166.341600px;}
._8f{width:167.454000px;}
._62{width:168.784800px;}
._31{width:173.008800px;}
._58{width:178.241760px;}
._6a{width:180.472320px;}
._74{width:181.743360px;}
._4f{width:183.352320px;}
._61{width:184.677120px;}
._71{width:186.455520px;}
._45{width:189.083520px;}
._89{width:192.218400px;}
._55{width:199.051200px;}
._79{width:202.495680px;}
._60{width:206.271360px;}
._59{width:214.750080px;}
._6c{width:218.846880px;}
._64{width:221.440320px;}
._78{width:223.197120px;}
._75{width:235.483200px;}
._81{width:256.471200px;}
._21{width:260.710560px;}
._6b{width:264.801600px;}
._4a{width:269.936160px;}
._83{width:289.326240px;}
._65{width:292.582080px;}
._77{width:318.339360px;}
._91{width:323.946000px;}
._5f{width:327.083040px;}
._8d{width:334.530000px;}
._4b{width:342.516960px;}
._6e{width:350.664480px;}
._5b{width:364.906080px;}
._85{width:374.047200px;}
._54{width:385.241760px;}
._5a{width:399.152160px;}
._82{width:495.266400px;}
._7b{width:522.724320px;}
._8b{width:560.520000px;}
._8a{width:840.839520px;}
._93{width:1359.301920px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(76,76,76);}
.fs9{font-size:2.880000px;}
.fs4{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y123{bottom:2.700000px;}
.y132{bottom:2.880000px;}
.ya8{bottom:3.600000px;}
.y8b{bottom:3.780000px;}
.y91{bottom:6.480000px;}
.y7f{bottom:7.560000px;}
.y124{bottom:10.980000px;}
.y48{bottom:13.500000px;}
.y9e{bottom:13.680000px;}
.y7d{bottom:17.640000px;}
.y122{bottom:19.080000px;}
.y131{bottom:19.260000px;}
.y7b{bottom:19.980000px;}
.y45{bottom:20.700000px;}
.y102{bottom:23.580000px;}
.y8a{bottom:23.760000px;}
.y90{bottom:26.640000px;}
.y129{bottom:27.360000px;}
.y7e{bottom:27.720000px;}
.y9d{bottom:33.660000px;}
.yff{bottom:33.840000px;}
.y84{bottom:33.885000px;}
.y149{bottom:35.460000px;}
.y130{bottom:35.640000px;}
.y93{bottom:36.540000px;}
.y47{bottom:36.900000px;}
.ya5{bottom:43.740000px;}
.y87{bottom:43.785000px;}
.y108{bottom:43.920000px;}
.y44{bottom:44.280000px;}
.y13f{bottom:44.640000px;}
.y8d{bottom:46.620000px;}
.y147{bottom:51.840000px;}
.y12f{bottom:52.020000px;}
.y156{bottom:52.554000px;}
.y9c{bottom:53.820000px;}
.y82{bottom:53.865000px;}
.y10c{bottom:54.000000px;}
.y92{bottom:56.700000px;}
.y7{bottom:57.600000px;}
.y144{bottom:60.120000px;}
.y128{bottom:60.300000px;}
.y43{bottom:60.660000px;}
.y13e{bottom:61.020000px;}
.ya4{bottom:63.720000px;}
.y101{bottom:63.900000px;}
.y86{bottom:63.945000px;}
.y107{bottom:64.080000px;}
.y8f{bottom:66.600000px;}
.y146{bottom:68.220000px;}
.y12e{bottom:68.400000px;}
.y155{bottom:72.534000px;}
.y9b{bottom:73.800000px;}
.y81{bottom:73.845000px;}
.y103{bottom:73.980000px;}
.y10e{bottom:74.160000px;}
.y10b{bottom:74.205000px;}
.y127{bottom:76.680000px;}
.y13d{bottom:77.445000px;}
.y6{bottom:77.760000px;}
.ya3{bottom:83.880000px;}
.y85{bottom:83.925000px;}
.y42{bottom:84.060000px;}
.y117{bottom:84.240000px;}
.y106{bottom:84.285000px;}
.y14b{bottom:84.600000px;}
.y12d{bottom:84.780000px;}
.y137{bottom:84.825000px;}
.y8e{bottom:86.760000px;}
.y154{bottom:92.694000px;}
.y126{bottom:93.060000px;}
.y13c{bottom:93.825000px;}
.y96{bottom:93.960000px;}
.y83{bottom:94.005000px;}
.y10f{bottom:94.320000px;}
.y112{bottom:94.350000px;}
.y10a{bottom:94.365000px;}
.y41{bottom:100.440000px;}
.y12c{bottom:101.160000px;}
.y136{bottom:101.385000px;}
.ya2{bottom:103.890000px;}
.y89{bottom:104.085000px;}
.y105{bottom:104.265000px;}
.y116{bottom:104.400000px;}
.yaf{bottom:109.296000px;}
.y12a{bottom:109.440000px;}
.yfc{bottom:110.016000px;}
.y13b{bottom:110.385000px;}
.y153{bottom:112.674000px;}
.ycb{bottom:112.716000px;}
.y95{bottom:113.970000px;}
.y111{bottom:114.330000px;}
.y109{bottom:114.345000px;}
.y118{bottom:114.480000px;}
.y148{bottom:117.570000px;}
.y12b{bottom:117.720000px;}
.y135{bottom:117.765000px;}
.y35{bottom:118.296000px;}
.y14c{bottom:121.536000px;}
.y79{bottom:121.716000px;}
.y40{bottom:123.840000px;}
.ya1{bottom:124.050000px;}
.y88{bottom:124.065000px;}
.y13a{bottom:126.765000px;}
.yec{bottom:126.936000px;}
.yae{bottom:127.476000px;}
.y175{bottom:128.016000px;}
.yca{bottom:132.876000px;}
.y9a{bottom:133.950000px;}
.y134{bottom:134.145000px;}
.y114{bottom:134.490000px;}
.y14d{bottom:137.916000px;}
.y34{bottom:138.456000px;}
.yfb{bottom:138.996000px;}
.y3f{bottom:140.220000px;}
.y78{bottom:141.876000px;}
.y139{bottom:143.145000px;}
.ya0{bottom:144.030000px;}
.yad{bottom:145.656000px;}
.yeb{bottom:146.916000px;}
.y174{bottom:147.996000px;}
.y142{bottom:150.525000px;}
.yc9{bottom:152.850000px;}
.y99{bottom:154.110000px;}
.y113{bottom:154.650000px;}
.y33{bottom:158.430000px;}
.y138{bottom:159.525000px;}
.y77{bottom:161.850000px;}
.y3e{bottom:163.800000px;}
.yac{bottom:164.010000px;}
.y9f{bottom:164.190000px;}
.yea{bottom:166.890000px;}
.y141{bottom:166.905000px;}
.yfa{bottom:167.970000px;}
.yc8{bottom:173.010000px;}
.y98{bottom:174.090000px;}
.y32{bottom:178.590000px;}
.y3d{bottom:180.210000px;}
.y76{bottom:182.010000px;}
.yab{bottom:182.190000px;}
.y140{bottom:183.285000px;}
.ya7{bottom:184.170000px;}
.ye9{bottom:187.050000px;}
.y173{bottom:188.130000px;}
.yc7{bottom:192.990000px;}
.y97{bottom:194.250000px;}
.y11f{bottom:195.870000px;}
.yf9{bottom:197.130000px;}
.y36{bottom:198.570000px;}
.y75{bottom:201.990000px;}
.y3c{bottom:203.610000px;}
.ya6{bottom:204.150000px;}
.ye8{bottom:207.030000px;}
.yaa{bottom:207.210000px;}
.y172{bottom:208.110000px;}
.y120{bottom:212.070000px;}
.yc6{bottom:212.970000px;}
.y31{bottom:218.550000px;}
.y3b{bottom:219.990000px;}
.ya9{bottom:220.170000px;}
.y74{bottom:221.970000px;}
.y11e{bottom:224.850000px;}
.yf8{bottom:226.110000px;}
.ye7{bottom:227.190000px;}
.y171{bottom:228.270000px;}
.yc5{bottom:233.130000px;}
.y30{bottom:238.710000px;}
.y73{bottom:242.130000px;}
.y3a{bottom:243.390000px;}
.ye6{bottom:247.170000px;}
.y170{bottom:248.250000px;}
.yc4{bottom:253.110000px;}
.y152{bottom:253.119000px;}
.y11d{bottom:254.010000px;}
.yf7{bottom:255.270000px;}
.y2f{bottom:258.690000px;}
.y39{bottom:259.770000px;}
.y72{bottom:262.110000px;}
.ye5{bottom:267.150000px;}
.y16f{bottom:268.230000px;}
.y151{bottom:273.099000px;}
.yc3{bottom:273.270000px;}
.y2e{bottom:278.850000px;}
.y71{bottom:282.270000px;}
.y11c{bottom:282.990000px;}
.yf6{bottom:284.250000px;}
.ye4{bottom:287.310000px;}
.y16e{bottom:288.390000px;}
.y38{bottom:292.530000px;}
.yc2{bottom:293.250000px;}
.y150{bottom:293.259000px;}
.y196{bottom:297.390000px;}
.y2d{bottom:298.830000px;}
.y70{bottom:302.250000px;}
.ye3{bottom:307.290000px;}
.y16d{bottom:308.370000px;}
.y11b{bottom:311.970000px;}
.yc1{bottom:313.230000px;}
.y14f{bottom:313.239000px;}
.y2c{bottom:318.990000px;}
.y6f{bottom:322.230000px;}
.y195{bottom:326.370000px;}
.ye2{bottom:327.450000px;}
.y16c{bottom:328.530000px;}
.yc0{bottom:333.390000px;}
.y14e{bottom:333.399000px;}
.y2b{bottom:338.970000px;}
.y11a{bottom:341.130000px;}
.y6e{bottom:342.390000px;}
.y194{bottom:346.575000px;}
.ye1{bottom:347.475000px;}
.y16b{bottom:348.555000px;}
.yf5{bottom:352.515000px;}
.ybf{bottom:353.415000px;}
.y2a{bottom:358.995000px;}
.y6d{bottom:362.415000px;}
.y14a{bottom:364.575000px;}
.y193{bottom:366.555000px;}
.ye0{bottom:367.455000px;}
.y16a{bottom:368.715000px;}
.y119{bottom:370.155000px;}
.yf4{bottom:372.495000px;}
.ybe{bottom:373.575000px;}
.y29{bottom:379.155000px;}
.y6c{bottom:382.575000px;}
.y192{bottom:386.715000px;}
.yfd{bottom:387.255000px;}
.ydf{bottom:387.615000px;}
.y115{bottom:387.975000px;}
.yf3{bottom:392.655000px;}
.ybd{bottom:393.555000px;}
.y169{bottom:397.695000px;}
.y28{bottom:399.135000px;}
.y6b{bottom:402.555000px;}
.y191{bottom:406.695000px;}
.yde{bottom:407.595000px;}
.yf2{bottom:412.635000px;}
.ybc{bottom:413.715000px;}
.y168{bottom:417.675000px;}
.y27{bottom:419.295000px;}
.y6a{bottom:422.715000px;}
.y190{bottom:426.675000px;}
.ydd{bottom:427.755000px;}
.yf1{bottom:432.795000px;}
.ybb{bottom:433.695000px;}
.y167{bottom:437.835000px;}
.y26{bottom:439.275000px;}
.y69{bottom:442.695000px;}
.y18f{bottom:446.835000px;}
.ydc{bottom:447.735000px;}
.yf0{bottom:452.775000px;}
.yba{bottom:453.675000px;}
.y166{bottom:457.815000px;}
.y25{bottom:459.255000px;}
.y68{bottom:462.675000px;}
.y18e{bottom:466.815000px;}
.ydb{bottom:467.715000px;}
.yef{bottom:472.755000px;}
.yb9{bottom:473.835000px;}
.y24{bottom:479.415000px;}
.y67{bottom:482.835000px;}
.y165{bottom:486.975000px;}
.yda{bottom:487.875000px;}
.yee{bottom:492.915000px;}
.yb8{bottom:493.815000px;}
.y145{bottom:498.135000px;}
.y23{bottom:499.395000px;}
.y66{bottom:502.815000px;}
.y164{bottom:506.955000px;}
.yd9{bottom:507.855000px;}
.y94{bottom:509.475000px;}
.yed{bottom:512.895000px;}
.yb7{bottom:513.975000px;}
.y110{bottom:518.655000px;}
.y22{bottom:519.735000px;}
.y65{bottom:522.975000px;}
.y163{bottom:526.935000px;}
.yd8{bottom:528.015000px;}
.yb6{bottom:533.955000px;}
.y21{bottom:541.515000px;}
.y64{bottom:542.955000px;}
.y18d{bottom:547.095000px;}
.yd7{bottom:547.995000px;}
.yb5{bottom:553.935000px;}
.y162{bottom:556.095000px;}
.y63{bottom:562.935000px;}
.y20{bottom:563.295000px;}
.y18c{bottom:567.075000px;}
.yd6{bottom:567.975000px;}
.yb4{bottom:574.095000px;}
.y161{bottom:576.075000px;}
.y62{bottom:583.095000px;}
.y1f{bottom:584.175000px;}
.y18b{bottom:587.235000px;}
.yd5{bottom:588.135000px;}
.yb3{bottom:594.075000px;}
.y160{bottom:596.235000px;}
.y61{bottom:603.075000px;}
.y18a{bottom:607.245000px;}
.yd4{bottom:608.145000px;}
.y1e{bottom:608.865000px;}
.yb2{bottom:614.265000px;}
.y15f{bottom:616.245000px;}
.y60{bottom:623.265000px;}
.yd3{bottom:628.305000px;}
.y1d{bottom:628.845000px;}
.yb1{bottom:634.245000px;}
.y189{bottom:636.225000px;}
.y5f{bottom:643.245000px;}
.y15e{bottom:645.225000px;}
.yd2{bottom:648.285000px;}
.y1c{bottom:649.005000px;}
.yb0{bottom:654.225000px;}
.y188{bottom:656.385000px;}
.y5e{bottom:663.225000px;}
.y143{bottom:664.485000px;}
.y15d{bottom:665.385000px;}
.yd1{bottom:668.265000px;}
.y1b{bottom:668.985000px;}
.y187{bottom:676.365000px;}
.y5d{bottom:683.385000px;}
.y15c{bottom:685.365000px;}
.yd0{bottom:688.425000px;}
.y1a{bottom:688.965000px;}
.y10d{bottom:689.505000px;}
.y186{bottom:696.525000px;}
.y5c{bottom:703.365000px;}
.y15b{bottom:705.525000px;}
.ycf{bottom:708.405000px;}
.y19{bottom:709.125000px;}
.y185{bottom:716.505000px;}
.y5b{bottom:723.525000px;}
.y15a{bottom:725.505000px;}
.yce{bottom:728.565000px;}
.y18{bottom:729.105000px;}
.y8c{bottom:730.725000px;}
.y184{bottom:736.485000px;}
.y5a{bottom:743.505000px;}
.ycd{bottom:748.545000px;}
.y17{bottom:749.265000px;}
.y159{bottom:754.485000px;}
.y183{bottom:756.645000px;}
.y59{bottom:763.485000px;}
.ycc{bottom:768.525000px;}
.y16{bottom:769.245000px;}
.y158{bottom:774.645000px;}
.y182{bottom:776.625000px;}
.y58{bottom:783.645000px;}
.y15{bottom:789.225000px;}
.y157{bottom:794.625000px;}
.y181{bottom:796.785000px;}
.y133{bottom:798.045000px;}
.y104{bottom:800.025000px;}
.y57{bottom:803.625000px;}
.y14{bottom:809.385000px;}
.y180{bottom:816.765000px;}
.y56{bottom:823.785000px;}
.y13{bottom:829.365000px;}
.y17f{bottom:836.745000px;}
.y80{bottom:837.285000px;}
.y55{bottom:843.765000px;}
.y12{bottom:849.525000px;}
.y17e{bottom:856.905000px;}
.y54{bottom:863.745000px;}
.y11{bottom:869.550000px;}
.y17d{bottom:876.930000px;}
.y53{bottom:883.950000px;}
.y10{bottom:889.530000px;}
.y46{bottom:891.870000px;}
.y52{bottom:903.930000px;}
.y17c{bottom:906.090000px;}
.yf{bottom:909.690000px;}
.y51{bottom:924.090000px;}
.y17b{bottom:926.070000px;}
.ye{bottom:929.850000px;}
.y100{bottom:930.750000px;}
.y50{bottom:944.070000px;}
.y17a{bottom:946.050000px;}
.yd{bottom:949.830000px;}
.y37{bottom:955.410000px;}
.yc{bottom:962.790000px;}
.y4f{bottom:964.050000px;}
.y179{bottom:975.210000px;}
.y7c{bottom:978.450000px;}
.y4e{bottom:984.210000px;}
.y178{bottom:995.190000px;}
.yb{bottom:1003.470000px;}
.y4d{bottom:1004.190000px;}
.y125{bottom:1013.730000px;}
.y177{bottom:1015.350000px;}
.yfe{bottom:1020.930000px;}
.y4c{bottom:1024.350000px;}
.y7a{bottom:1027.230000px;}
.ya{bottom:1028.850000px;}
.y176{bottom:1035.330000px;}
.y4b{bottom:1044.330000px;}
.y9{bottom:1054.410000px;}
.y4a{bottom:1064.310000px;}
.y8{bottom:1079.970000px;}
.y49{bottom:1084.470000px;}
.y5{bottom:1103.190000px;}
.y4{bottom:1117.770000px;}
.y3{bottom:1132.380000px;}
.y2{bottom:1146.960000px;}
.y121{bottom:1163.880000px;}
.y1{bottom:1179.540000px;}
.h1b{height:2.881406px;}
.h23{height:32.760000px;}
.h6{height:36.017578px;}
.hf{height:36.651094px;}
.h17{height:38.898984px;}
.hd{height:41.027344px;}
.h12{height:48.060000px;}
.h2{height:48.263555px;}
.h10{height:48.780000px;}
.h19{height:48.905156px;}
.h1c{height:49.320000px;}
.h11{height:52.740000px;}
.h3{height:53.302500px;}
.h26{height:54.026367px;}
.hb{height:54.208125px;}
.h1d{height:54.628594px;}
.h24{height:54.738281px;}
.h7{height:58.921875px;}
.h18{height:59.789180px;}
.he{height:64.002656px;}
.h9{height:66.272344px;}
.h8{height:67.145625px;}
.h16{height:72.020391px;}
.h5{height:72.035156px;}
.ha{height:72.984375px;}
.h4{height:85.391719px;}
.h1e{height:89.460000px;}
.h14{height:105.840000px;}
.h20{height:109.800000px;}
.h2a{height:116.496000px;}
.h1f{height:129.816000px;}
.h22{height:129.960000px;}
.h28{height:132.840000px;}
.h13{height:140.436000px;}
.h25{height:149.436000px;}
.h29{height:165.630000px;}
.h21{height:170.130000px;}
.h27{height:214.950000px;}
.h15{height:220.530000px;}
.hc{height:306.030000px;}
.h2b{height:349.770000px;}
.h1a{height:683.715000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:63.540000px;}
.w3{width:107.820000px;}
.w6{width:178.410000px;}
.w5{width:179.130000px;}
.w4{width:186.195000px;}
.wb{width:188.130000px;}
.wa{width:209.241000px;}
.wd{width:211.935000px;}
.w8{width:213.690000px;}
.w9{width:230.430000px;}
.wc{width:243.750000px;}
.w7{width:653.370000px;}
.we{width:779.760000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:5.220000px;}
.x19{left:8.100000px;}
.x28{left:13.680000px;}
.x14{left:19.260000px;}
.x12{left:24.660000px;}
.x13{left:26.100000px;}
.x24{left:30.594000px;}
.x11{left:32.580000px;}
.x1d{left:34.785000px;}
.x29{left:56.700000px;}
.x25{left:59.214000px;}
.x20{left:76.314000px;}
.x22{left:98.490000px;}
.x27{left:105.330000px;}
.x18{left:119.556000px;}
.x7{left:127.656000px;}
.x2a{left:130.890000px;}
.xb{left:133.056000px;}
.xc{left:136.296000px;}
.x3{left:137.556000px;}
.x9{left:140.976000px;}
.x16{left:154.650000px;}
.xd{left:168.690000px;}
.xe{left:180.750000px;}
.x8{left:189.930000px;}
.x1e{left:207.750000px;}
.x1a{left:228.090000px;}
.xa{left:254.235000px;}
.x26{left:308.775000px;}
.x21{left:333.615000px;}
.x2c{left:383.325000px;}
.x2d{left:385.305000px;}
.x1b{left:415.005000px;}
.x6{left:434.085000px;}
.x5{left:456.225000px;}
.xf{left:473.145000px;}
.x17{left:500.145000px;}
.x15{left:526.245000px;}
.x1f{left:553.245000px;}
.x23{left:564.045000px;}
.x2{left:567.645000px;}
.x4{left:588.030000px;}
.x1c{left:594.870000px;}
.x1{left:765.540000px;}
.x10{left:829.440000px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls1f{letter-spacing:-0.954667pt;}
.ls25{letter-spacing:-0.938667pt;}
.ls4{letter-spacing:-0.832000pt;}
.ls24{letter-spacing:-0.688000pt;}
.ls17{letter-spacing:-0.656000pt;}
.ls15{letter-spacing:-0.491733pt;}
.lsc{letter-spacing:-0.338667pt;}
.lsf{letter-spacing:-0.327467pt;}
.ls9{letter-spacing:-0.312533pt;}
.ls20{letter-spacing:-0.297067pt;}
.ls2{letter-spacing:-0.267733pt;}
.ls23{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.248533pt;}
.ls12{letter-spacing:-0.202133pt;}
.ls1e{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.186667pt;}
.lsa{letter-spacing:-0.158933pt;}
.ls6{letter-spacing:-0.119467pt;}
.ls5{letter-spacing:-0.106667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.010240pt;}
.ls11{letter-spacing:0.043520pt;}
.ls18{letter-spacing:0.071680pt;}
.ls16{letter-spacing:0.107733pt;}
.ls1a{letter-spacing:0.133333pt;}
.ls8{letter-spacing:0.148267pt;}
.lsd{letter-spacing:0.148480pt;}
.ls21{letter-spacing:0.227733pt;}
.ls10{letter-spacing:0.327467pt;}
.ls1b{letter-spacing:0.327680pt;}
.ls1d{letter-spacing:0.342933pt;}
.ls1c{letter-spacing:0.373760pt;}
.lsb{letter-spacing:2.954667pt;}
.ls22{letter-spacing:6.890667pt;}
.ls14{letter-spacing:20.751360pt;}
.ls19{letter-spacing:52.751360pt;}
.ls13{letter-spacing:75.252907pt;}
.ls0{letter-spacing:168.052907pt;}
.ws5{word-spacing:-64.000000pt;}
.ws10{word-spacing:-58.880000pt;}
.ws0{word-spacing:-25.608960pt;}
.ws2{word-spacing:-25.489493pt;}
.ws1{word-spacing:-24.776960pt;}
.ws6{word-spacing:-21.888000pt;}
.ws8{word-spacing:-21.601173pt;}
.wsd{word-spacing:-20.874027pt;}
.wse{word-spacing:-20.833493pt;}
.ws12{word-spacing:-20.769280pt;}
.ws4{word-spacing:-20.725760pt;}
.ws7{word-spacing:-20.566827pt;}
.wsa{word-spacing:-20.539093pt;}
.ws13{word-spacing:-20.533760pt;}
.wsc{word-spacing:-20.523627pt;}
.wsb{word-spacing:-20.398293pt;}
.ws3{word-spacing:-20.136960pt;}
.wsf{word-spacing:-20.069760pt;}
.ws14{word-spacing:-16.896000pt;}
.ws11{word-spacing:-12.165120pt;}
.ws9{word-spacing:0.000000pt;}
._6d{margin-left:-11.393707pt;}
._0{margin-left:-1.286400pt;}
._1{width:0.928427pt;}
._4{width:2.418773pt;}
._8{width:3.387733pt;}
._9{width:4.279893pt;}
._c{width:5.643520pt;}
._10{width:6.658133pt;}
._1e{width:7.889920pt;}
._35{width:8.818347pt;}
._5{width:9.774080pt;}
._6{width:11.010560pt;}
._7{width:12.158293pt;}
._1f{width:13.337600pt;}
._e{width:14.778880pt;}
._f{width:15.838720pt;}
._13{width:17.192960pt;}
._a{width:18.193920pt;}
._b{width:19.539200pt;}
._8c{width:20.544000pt;}
._11{width:22.178987pt;}
._12{width:23.631360pt;}
._d{width:24.720640pt;}
._27{width:25.612800pt;}
._17{width:26.731520pt;}
._15{width:27.732480pt;}
._14{width:28.674560pt;}
._3f{width:29.852160pt;}
._48{width:31.029760pt;}
._1d{width:32.021760pt;}
._22{width:33.294080pt;}
._2c{width:34.739200pt;}
._37{width:36.252160pt;}
._29{width:37.153280pt;}
._2b{width:38.330880pt;}
._68{width:39.439360pt;}
._18{width:40.332800pt;}
._1a{width:42.040320pt;}
._2f{width:43.326720pt;}
._40{width:44.295680pt;}
._16{width:45.328640pt;}
._3{width:46.691840pt;}
._2{width:47.665067pt;}
._2e{width:48.567040pt;}
._25{width:50.333440pt;}
._4d{width:51.788800pt;}
._42{width:53.331200pt;}
._51{width:54.396160pt;}
._3a{width:55.587413pt;}
._24{width:57.231360pt;}
._3d{width:59.115520pt;}
._3e{width:60.704427pt;}
._43{width:62.178133pt;}
._5c{width:63.172267pt;}
._20{width:64.061440pt;}
._53{width:65.180160pt;}
._3c{width:66.172160pt;}
._44{width:67.946240pt;}
._46{width:69.303040pt;}
._4c{width:70.293760pt;}
._90{width:71.354240pt;}
._2d{width:72.766720pt;}
._2a{width:74.179840pt;}
._19{width:75.955200pt;}
._49{width:77.594880pt;}
._23{width:78.890240pt;}
._26{width:80.715520pt;}
._36{width:81.960960pt;}
._30{width:83.659520pt;}
._34{width:84.750080pt;}
._50{width:85.896960pt;}
._72{width:87.377920pt;}
._5e{width:88.791040pt;}
._7c{width:89.841920pt;}
._92{width:90.986240pt;}
._52{width:92.239360pt;}
._32{width:93.618347pt;}
._7e{width:95.208960pt;}
._67{width:96.334933pt;}
._1c{width:97.740800pt;}
._1b{width:99.439360pt;}
._7f{width:100.616960pt;}
._80{width:101.568000pt;}
._73{width:103.207680pt;}
._66{width:105.268480pt;}
._5d{width:106.607360pt;}
._76{width:108.271360pt;}
._38{width:109.928960pt;}
._39{width:111.095040pt;}
._87{width:112.578560pt;}
._28{width:114.159360pt;}
._41{width:115.336960pt;}
._47{width:116.288000pt;}
._8e{width:117.456000pt;}
._7d{width:120.577280pt;}
._4e{width:121.535573pt;}
._33{width:124.236800pt;}
._3b{width:125.971627pt;}
._69{width:127.094613pt;}
._88{width:128.761600pt;}
._7a{width:129.948160pt;}
._84{width:131.764480pt;}
._70{width:133.766400pt;}
._56{width:135.362560pt;}
._86{width:137.838080pt;}
._57{width:139.477760pt;}
._63{width:141.024853pt;}
._6f{width:142.758400pt;}
._94{width:147.859200pt;}
._8f{width:148.848000pt;}
._62{width:150.030933pt;}
._31{width:153.785600pt;}
._58{width:158.437120pt;}
._6a{width:160.419840pt;}
._74{width:161.549653pt;}
._4f{width:162.979840pt;}
._61{width:164.157440pt;}
._71{width:165.738240pt;}
._45{width:168.074240pt;}
._89{width:170.860800pt;}
._55{width:176.934400pt;}
._79{width:179.996160pt;}
._60{width:183.352320pt;}
._59{width:190.888960pt;}
._6c{width:194.530560pt;}
._64{width:196.835840pt;}
._78{width:198.397440pt;}
._75{width:209.318400pt;}
._81{width:227.974400pt;}
._21{width:231.742720pt;}
._6b{width:235.379200pt;}
._4a{width:239.943253pt;}
._83{width:257.178880pt;}
._65{width:260.072960pt;}
._77{width:282.968320pt;}
._91{width:287.952000pt;}
._5f{width:290.740480pt;}
._8d{width:297.360000pt;}
._4b{width:304.459520pt;}
._6e{width:311.701760pt;}
._5b{width:324.360960pt;}
._85{width:332.486400pt;}
._54{width:342.437120pt;}
._5a{width:354.801920pt;}
._82{width:440.236800pt;}
._7b{width:464.643840pt;}
._8b{width:498.240000pt;}
._8a{width:747.412907pt;}
._93{width:1208.268373pt;}
.fs9{font-size:2.560000pt;}
.fs4{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y123{bottom:2.400000pt;}
.y132{bottom:2.560000pt;}
.ya8{bottom:3.200000pt;}
.y8b{bottom:3.360000pt;}
.y91{bottom:5.760000pt;}
.y7f{bottom:6.720000pt;}
.y124{bottom:9.760000pt;}
.y48{bottom:12.000000pt;}
.y9e{bottom:12.160000pt;}
.y7d{bottom:15.680000pt;}
.y122{bottom:16.960000pt;}
.y131{bottom:17.120000pt;}
.y7b{bottom:17.760000pt;}
.y45{bottom:18.400000pt;}
.y102{bottom:20.960000pt;}
.y8a{bottom:21.120000pt;}
.y90{bottom:23.680000pt;}
.y129{bottom:24.320000pt;}
.y7e{bottom:24.640000pt;}
.y9d{bottom:29.920000pt;}
.yff{bottom:30.080000pt;}
.y84{bottom:30.120000pt;}
.y149{bottom:31.520000pt;}
.y130{bottom:31.680000pt;}
.y93{bottom:32.480000pt;}
.y47{bottom:32.800000pt;}
.ya5{bottom:38.880000pt;}
.y87{bottom:38.920000pt;}
.y108{bottom:39.040000pt;}
.y44{bottom:39.360000pt;}
.y13f{bottom:39.680000pt;}
.y8d{bottom:41.440000pt;}
.y147{bottom:46.080000pt;}
.y12f{bottom:46.240000pt;}
.y156{bottom:46.714667pt;}
.y9c{bottom:47.840000pt;}
.y82{bottom:47.880000pt;}
.y10c{bottom:48.000000pt;}
.y92{bottom:50.400000pt;}
.y7{bottom:51.200000pt;}
.y144{bottom:53.440000pt;}
.y128{bottom:53.600000pt;}
.y43{bottom:53.920000pt;}
.y13e{bottom:54.240000pt;}
.ya4{bottom:56.640000pt;}
.y101{bottom:56.800000pt;}
.y86{bottom:56.840000pt;}
.y107{bottom:56.960000pt;}
.y8f{bottom:59.200000pt;}
.y146{bottom:60.640000pt;}
.y12e{bottom:60.800000pt;}
.y155{bottom:64.474667pt;}
.y9b{bottom:65.600000pt;}
.y81{bottom:65.640000pt;}
.y103{bottom:65.760000pt;}
.y10e{bottom:65.920000pt;}
.y10b{bottom:65.960000pt;}
.y127{bottom:68.160000pt;}
.y13d{bottom:68.840000pt;}
.y6{bottom:69.120000pt;}
.ya3{bottom:74.560000pt;}
.y85{bottom:74.600000pt;}
.y42{bottom:74.720000pt;}
.y117{bottom:74.880000pt;}
.y106{bottom:74.920000pt;}
.y14b{bottom:75.200000pt;}
.y12d{bottom:75.360000pt;}
.y137{bottom:75.400000pt;}
.y8e{bottom:77.120000pt;}
.y154{bottom:82.394667pt;}
.y126{bottom:82.720000pt;}
.y13c{bottom:83.400000pt;}
.y96{bottom:83.520000pt;}
.y83{bottom:83.560000pt;}
.y10f{bottom:83.840000pt;}
.y112{bottom:83.866667pt;}
.y10a{bottom:83.880000pt;}
.y41{bottom:89.280000pt;}
.y12c{bottom:89.920000pt;}
.y136{bottom:90.120000pt;}
.ya2{bottom:92.346667pt;}
.y89{bottom:92.520000pt;}
.y105{bottom:92.680000pt;}
.y116{bottom:92.800000pt;}
.yaf{bottom:97.152000pt;}
.y12a{bottom:97.280000pt;}
.yfc{bottom:97.792000pt;}
.y13b{bottom:98.120000pt;}
.y153{bottom:100.154667pt;}
.ycb{bottom:100.192000pt;}
.y95{bottom:101.306667pt;}
.y111{bottom:101.626667pt;}
.y109{bottom:101.640000pt;}
.y118{bottom:101.760000pt;}
.y148{bottom:104.506667pt;}
.y12b{bottom:104.640000pt;}
.y135{bottom:104.680000pt;}
.y35{bottom:105.152000pt;}
.y14c{bottom:108.032000pt;}
.y79{bottom:108.192000pt;}
.y40{bottom:110.080000pt;}
.ya1{bottom:110.266667pt;}
.y88{bottom:110.280000pt;}
.y13a{bottom:112.680000pt;}
.yec{bottom:112.832000pt;}
.yae{bottom:113.312000pt;}
.y175{bottom:113.792000pt;}
.yca{bottom:118.112000pt;}
.y9a{bottom:119.066667pt;}
.y134{bottom:119.240000pt;}
.y114{bottom:119.546667pt;}
.y14d{bottom:122.592000pt;}
.y34{bottom:123.072000pt;}
.yfb{bottom:123.552000pt;}
.y3f{bottom:124.640000pt;}
.y78{bottom:126.112000pt;}
.y139{bottom:127.240000pt;}
.ya0{bottom:128.026667pt;}
.yad{bottom:129.472000pt;}
.yeb{bottom:130.592000pt;}
.y174{bottom:131.552000pt;}
.y142{bottom:133.800000pt;}
.yc9{bottom:135.866667pt;}
.y99{bottom:136.986667pt;}
.y113{bottom:137.466667pt;}
.y33{bottom:140.826667pt;}
.y138{bottom:141.800000pt;}
.y77{bottom:143.866667pt;}
.y3e{bottom:145.600000pt;}
.yac{bottom:145.786667pt;}
.y9f{bottom:145.946667pt;}
.yea{bottom:148.346667pt;}
.y141{bottom:148.360000pt;}
.yfa{bottom:149.306667pt;}
.yc8{bottom:153.786667pt;}
.y98{bottom:154.746667pt;}
.y32{bottom:158.746667pt;}
.y3d{bottom:160.186667pt;}
.y76{bottom:161.786667pt;}
.yab{bottom:161.946667pt;}
.y140{bottom:162.920000pt;}
.ya7{bottom:163.706667pt;}
.ye9{bottom:166.266667pt;}
.y173{bottom:167.226667pt;}
.yc7{bottom:171.546667pt;}
.y97{bottom:172.666667pt;}
.y11f{bottom:174.106667pt;}
.yf9{bottom:175.226667pt;}
.y36{bottom:176.506667pt;}
.y75{bottom:179.546667pt;}
.y3c{bottom:180.986667pt;}
.ya6{bottom:181.466667pt;}
.ye8{bottom:184.026667pt;}
.yaa{bottom:184.186667pt;}
.y172{bottom:184.986667pt;}
.y120{bottom:188.506667pt;}
.yc6{bottom:189.306667pt;}
.y31{bottom:194.266667pt;}
.y3b{bottom:195.546667pt;}
.ya9{bottom:195.706667pt;}
.y74{bottom:197.306667pt;}
.y11e{bottom:199.866667pt;}
.yf8{bottom:200.986667pt;}
.ye7{bottom:201.946667pt;}
.y171{bottom:202.906667pt;}
.yc5{bottom:207.226667pt;}
.y30{bottom:212.186667pt;}
.y73{bottom:215.226667pt;}
.y3a{bottom:216.346667pt;}
.ye6{bottom:219.706667pt;}
.y170{bottom:220.666667pt;}
.yc4{bottom:224.986667pt;}
.y152{bottom:224.994667pt;}
.y11d{bottom:225.786667pt;}
.yf7{bottom:226.906667pt;}
.y2f{bottom:229.946667pt;}
.y39{bottom:230.906667pt;}
.y72{bottom:232.986667pt;}
.ye5{bottom:237.466667pt;}
.y16f{bottom:238.426667pt;}
.y151{bottom:242.754667pt;}
.yc3{bottom:242.906667pt;}
.y2e{bottom:247.866667pt;}
.y71{bottom:250.906667pt;}
.y11c{bottom:251.546667pt;}
.yf6{bottom:252.666667pt;}
.ye4{bottom:255.386667pt;}
.y16e{bottom:256.346667pt;}
.y38{bottom:260.026667pt;}
.yc2{bottom:260.666667pt;}
.y150{bottom:260.674667pt;}
.y196{bottom:264.346667pt;}
.y2d{bottom:265.626667pt;}
.y70{bottom:268.666667pt;}
.ye3{bottom:273.146667pt;}
.y16d{bottom:274.106667pt;}
.y11b{bottom:277.306667pt;}
.yc1{bottom:278.426667pt;}
.y14f{bottom:278.434667pt;}
.y2c{bottom:283.546667pt;}
.y6f{bottom:286.426667pt;}
.y195{bottom:290.106667pt;}
.ye2{bottom:291.066667pt;}
.y16c{bottom:292.026667pt;}
.yc0{bottom:296.346667pt;}
.y14e{bottom:296.354667pt;}
.y2b{bottom:301.306667pt;}
.y11a{bottom:303.226667pt;}
.y6e{bottom:304.346667pt;}
.y194{bottom:308.066667pt;}
.ye1{bottom:308.866667pt;}
.y16b{bottom:309.826667pt;}
.yf5{bottom:313.346667pt;}
.ybf{bottom:314.146667pt;}
.y2a{bottom:319.106667pt;}
.y6d{bottom:322.146667pt;}
.y14a{bottom:324.066667pt;}
.y193{bottom:325.826667pt;}
.ye0{bottom:326.626667pt;}
.y16a{bottom:327.746667pt;}
.y119{bottom:329.026667pt;}
.yf4{bottom:331.106667pt;}
.ybe{bottom:332.066667pt;}
.y29{bottom:337.026667pt;}
.y6c{bottom:340.066667pt;}
.y192{bottom:343.746667pt;}
.yfd{bottom:344.226667pt;}
.ydf{bottom:344.546667pt;}
.y115{bottom:344.866667pt;}
.yf3{bottom:349.026667pt;}
.ybd{bottom:349.826667pt;}
.y169{bottom:353.506667pt;}
.y28{bottom:354.786667pt;}
.y6b{bottom:357.826667pt;}
.y191{bottom:361.506667pt;}
.yde{bottom:362.306667pt;}
.yf2{bottom:366.786667pt;}
.ybc{bottom:367.746667pt;}
.y168{bottom:371.266667pt;}
.y27{bottom:372.706667pt;}
.y6a{bottom:375.746667pt;}
.y190{bottom:379.266667pt;}
.ydd{bottom:380.226667pt;}
.yf1{bottom:384.706667pt;}
.ybb{bottom:385.506667pt;}
.y167{bottom:389.186667pt;}
.y26{bottom:390.466667pt;}
.y69{bottom:393.506667pt;}
.y18f{bottom:397.186667pt;}
.ydc{bottom:397.986667pt;}
.yf0{bottom:402.466667pt;}
.yba{bottom:403.266667pt;}
.y166{bottom:406.946667pt;}
.y25{bottom:408.226667pt;}
.y68{bottom:411.266667pt;}
.y18e{bottom:414.946667pt;}
.ydb{bottom:415.746667pt;}
.yef{bottom:420.226667pt;}
.yb9{bottom:421.186667pt;}
.y24{bottom:426.146667pt;}
.y67{bottom:429.186667pt;}
.y165{bottom:432.866667pt;}
.yda{bottom:433.666667pt;}
.yee{bottom:438.146667pt;}
.yb8{bottom:438.946667pt;}
.y145{bottom:442.786667pt;}
.y23{bottom:443.906667pt;}
.y66{bottom:446.946667pt;}
.y164{bottom:450.626667pt;}
.yd9{bottom:451.426667pt;}
.y94{bottom:452.866667pt;}
.yed{bottom:455.906667pt;}
.yb7{bottom:456.866667pt;}
.y110{bottom:461.026667pt;}
.y22{bottom:461.986667pt;}
.y65{bottom:464.866667pt;}
.y163{bottom:468.386667pt;}
.yd8{bottom:469.346667pt;}
.yb6{bottom:474.626667pt;}
.y21{bottom:481.346667pt;}
.y64{bottom:482.626667pt;}
.y18d{bottom:486.306667pt;}
.yd7{bottom:487.106667pt;}
.yb5{bottom:492.386667pt;}
.y162{bottom:494.306667pt;}
.y63{bottom:500.386667pt;}
.y20{bottom:500.706667pt;}
.y18c{bottom:504.066667pt;}
.yd6{bottom:504.866667pt;}
.yb4{bottom:510.306667pt;}
.y161{bottom:512.066667pt;}
.y62{bottom:518.306667pt;}
.y1f{bottom:519.266667pt;}
.y18b{bottom:521.986667pt;}
.yd5{bottom:522.786667pt;}
.yb3{bottom:528.066667pt;}
.y160{bottom:529.986667pt;}
.y61{bottom:536.066667pt;}
.y18a{bottom:539.773333pt;}
.yd4{bottom:540.573333pt;}
.y1e{bottom:541.213333pt;}
.yb2{bottom:546.013333pt;}
.y15f{bottom:547.773333pt;}
.y60{bottom:554.013333pt;}
.yd3{bottom:558.493333pt;}
.y1d{bottom:558.973333pt;}
.yb1{bottom:563.773333pt;}
.y189{bottom:565.533333pt;}
.y5f{bottom:571.773333pt;}
.y15e{bottom:573.533333pt;}
.yd2{bottom:576.253333pt;}
.y1c{bottom:576.893333pt;}
.yb0{bottom:581.533333pt;}
.y188{bottom:583.453333pt;}
.y5e{bottom:589.533333pt;}
.y143{bottom:590.653333pt;}
.y15d{bottom:591.453333pt;}
.yd1{bottom:594.013333pt;}
.y1b{bottom:594.653333pt;}
.y187{bottom:601.213333pt;}
.y5d{bottom:607.453333pt;}
.y15c{bottom:609.213333pt;}
.yd0{bottom:611.933333pt;}
.y1a{bottom:612.413333pt;}
.y10d{bottom:612.893333pt;}
.y186{bottom:619.133333pt;}
.y5c{bottom:625.213333pt;}
.y15b{bottom:627.133333pt;}
.ycf{bottom:629.693333pt;}
.y19{bottom:630.333333pt;}
.y185{bottom:636.893333pt;}
.y5b{bottom:643.133333pt;}
.y15a{bottom:644.893333pt;}
.yce{bottom:647.613333pt;}
.y18{bottom:648.093333pt;}
.y8c{bottom:649.533333pt;}
.y184{bottom:654.653333pt;}
.y5a{bottom:660.893333pt;}
.ycd{bottom:665.373333pt;}
.y17{bottom:666.013333pt;}
.y159{bottom:670.653333pt;}
.y183{bottom:672.573333pt;}
.y59{bottom:678.653333pt;}
.ycc{bottom:683.133333pt;}
.y16{bottom:683.773333pt;}
.y158{bottom:688.573333pt;}
.y182{bottom:690.333333pt;}
.y58{bottom:696.573333pt;}
.y15{bottom:701.533333pt;}
.y157{bottom:706.333333pt;}
.y181{bottom:708.253333pt;}
.y133{bottom:709.373333pt;}
.y104{bottom:711.133333pt;}
.y57{bottom:714.333333pt;}
.y14{bottom:719.453333pt;}
.y180{bottom:726.013333pt;}
.y56{bottom:732.253333pt;}
.y13{bottom:737.213333pt;}
.y17f{bottom:743.773333pt;}
.y80{bottom:744.253333pt;}
.y55{bottom:750.013333pt;}
.y12{bottom:755.133333pt;}
.y17e{bottom:761.693333pt;}
.y54{bottom:767.773333pt;}
.y11{bottom:772.933333pt;}
.y17d{bottom:779.493333pt;}
.y53{bottom:785.733333pt;}
.y10{bottom:790.693333pt;}
.y46{bottom:792.773333pt;}
.y52{bottom:803.493333pt;}
.y17c{bottom:805.413333pt;}
.yf{bottom:808.613333pt;}
.y51{bottom:821.413333pt;}
.y17b{bottom:823.173333pt;}
.ye{bottom:826.533333pt;}
.y100{bottom:827.333333pt;}
.y50{bottom:839.173333pt;}
.y17a{bottom:840.933333pt;}
.yd{bottom:844.293333pt;}
.y37{bottom:849.253333pt;}
.yc{bottom:855.813333pt;}
.y4f{bottom:856.933333pt;}
.y179{bottom:866.853333pt;}
.y7c{bottom:869.733333pt;}
.y4e{bottom:874.853333pt;}
.y178{bottom:884.613333pt;}
.yb{bottom:891.973333pt;}
.y4d{bottom:892.613333pt;}
.y125{bottom:901.093333pt;}
.y177{bottom:902.533333pt;}
.yfe{bottom:907.493333pt;}
.y4c{bottom:910.533333pt;}
.y7a{bottom:913.093333pt;}
.ya{bottom:914.533333pt;}
.y176{bottom:920.293333pt;}
.y4b{bottom:928.293333pt;}
.y9{bottom:937.253333pt;}
.y4a{bottom:946.053333pt;}
.y8{bottom:959.973333pt;}
.y49{bottom:963.973333pt;}
.y5{bottom:980.613333pt;}
.y4{bottom:993.573333pt;}
.y3{bottom:1006.560000pt;}
.y2{bottom:1019.520000pt;}
.y121{bottom:1034.560000pt;}
.y1{bottom:1048.480000pt;}
.h1b{height:2.561250pt;}
.h23{height:29.120000pt;}
.h6{height:32.015625pt;}
.hf{height:32.578750pt;}
.h17{height:34.576875pt;}
.hd{height:36.468750pt;}
.h12{height:42.720000pt;}
.h2{height:42.900937pt;}
.h10{height:43.360000pt;}
.h19{height:43.471250pt;}
.h1c{height:43.840000pt;}
.h11{height:46.880000pt;}
.h3{height:47.380000pt;}
.h26{height:48.023438pt;}
.hb{height:48.185000pt;}
.h1d{height:48.558750pt;}
.h24{height:48.656250pt;}
.h7{height:52.375000pt;}
.h18{height:53.145938pt;}
.he{height:56.891250pt;}
.h9{height:58.908750pt;}
.h8{height:59.685000pt;}
.h16{height:64.018125pt;}
.h5{height:64.031250pt;}
.ha{height:64.875000pt;}
.h4{height:75.903750pt;}
.h1e{height:79.520000pt;}
.h14{height:94.080000pt;}
.h20{height:97.600000pt;}
.h2a{height:103.552000pt;}
.h1f{height:115.392000pt;}
.h22{height:115.520000pt;}
.h28{height:118.080000pt;}
.h13{height:124.832000pt;}
.h25{height:132.832000pt;}
.h29{height:147.226667pt;}
.h21{height:151.226667pt;}
.h27{height:191.066667pt;}
.h15{height:196.026667pt;}
.hc{height:272.026667pt;}
.h2b{height:310.906667pt;}
.h1a{height:607.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:56.480000pt;}
.w3{width:95.840000pt;}
.w6{width:158.586667pt;}
.w5{width:159.226667pt;}
.w4{width:165.506667pt;}
.wb{width:167.226667pt;}
.wa{width:185.992000pt;}
.wd{width:188.386667pt;}
.w8{width:189.946667pt;}
.w9{width:204.826667pt;}
.wc{width:216.666667pt;}
.w7{width:580.773333pt;}
.we{width:693.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:4.640000pt;}
.x19{left:7.200000pt;}
.x28{left:12.160000pt;}
.x14{left:17.120000pt;}
.x12{left:21.920000pt;}
.x13{left:23.200000pt;}
.x24{left:27.194667pt;}
.x11{left:28.960000pt;}
.x1d{left:30.920000pt;}
.x29{left:50.400000pt;}
.x25{left:52.634667pt;}
.x20{left:67.834667pt;}
.x22{left:87.546667pt;}
.x27{left:93.626667pt;}
.x18{left:106.272000pt;}
.x7{left:113.472000pt;}
.x2a{left:116.346667pt;}
.xb{left:118.272000pt;}
.xc{left:121.152000pt;}
.x3{left:122.272000pt;}
.x9{left:125.312000pt;}
.x16{left:137.466667pt;}
.xd{left:149.946667pt;}
.xe{left:160.666667pt;}
.x8{left:168.826667pt;}
.x1e{left:184.666667pt;}
.x1a{left:202.746667pt;}
.xa{left:225.986667pt;}
.x26{left:274.466667pt;}
.x21{left:296.546667pt;}
.x2c{left:340.733333pt;}
.x2d{left:342.493333pt;}
.x1b{left:368.893333pt;}
.x6{left:385.853333pt;}
.x5{left:405.533333pt;}
.xf{left:420.573333pt;}
.x17{left:444.573333pt;}
.x15{left:467.773333pt;}
.x1f{left:491.773333pt;}
.x23{left:501.373333pt;}
.x2{left:504.573333pt;}
.x4{left:522.693333pt;}
.x1c{left:528.773333pt;}
.x1{left:680.480000pt;}
.x10{left:737.280000pt;}
}




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