
    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_d1a4ef3a91afa1463ee74c24.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_666c2a8d9db87bbcf2378297.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.657000;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_ecfe0f950f9ce61255816f18.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_7049b28612267ddd12450649.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a3424ee6547e3445f02d0a2a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_729b7fbdbf55cfa8b1f5ba37.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9ff52bde43877cb1293883c5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.665000;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_8cdb54c32e07f074cddffd7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.724000;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_4429c69bf063d066a4af8c11.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.049000;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_bc689d516f64cff022d3f816.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_81a8ff6cd41e9c6240c3b092.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.399000;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_008cb887d7638552acb8f25a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_94725be8914e4723656976d8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cd659b5c26bf50ae187e5f3a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.389000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8652e4d3867f71e3133ed6ae.woff2')format("woff");}.fff{font-family:fff;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f08d58ec3e072416bb17e0b5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.674000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ab50dae0067ed8161d74f70d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_564390089afa2e26458cbb0b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_bb06e4c5c91632bc648d0282.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_f5afb17345cff7f3078f5f6a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a7528e7b2637928a92fa7018.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.840000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vf{vertical-align:-22.854000px;}
.vc{vertical-align:-19.350000px;}
.v8{vertical-align:-10.668000px;}
.v2{vertical-align:-8.964000px;}
.vd{vertical-align:-7.290000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:16.872000px;}
.va{vertical-align:18.906000px;}
.v3{vertical-align:21.690000px;}
.vb{vertical-align:23.754000px;}
.v7{vertical-align:27.030000px;}
.v9{vertical-align:34.458000px;}
.v5{vertical-align:44.280000px;}
.v1{vertical-align:49.452000px;}
.v6{vertical-align:68.034000px;}
.v4{vertical-align:92.292000px;}
.ls1e{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.000985px;}
.ls1{letter-spacing:0.000993px;}
.ls3f{letter-spacing:0.001057px;}
.ls36{letter-spacing:0.001560px;}
.lsd{letter-spacing:0.002682px;}
.ls55{letter-spacing:0.003705px;}
.ls41{letter-spacing:0.003739px;}
.ls39{letter-spacing:0.004528px;}
.ls43{letter-spacing:0.004783px;}
.ls38{letter-spacing:0.005100px;}
.ls47{letter-spacing:0.007329px;}
.ls1f{letter-spacing:0.008092px;}
.ls31{letter-spacing:0.009963px;}
.ls33{letter-spacing:0.018131px;}
.ls49{letter-spacing:0.020602px;}
.ls12{letter-spacing:0.027658px;}
.ls23{letter-spacing:0.029314px;}
.ls52{letter-spacing:0.268019px;}
.ls4e{letter-spacing:0.458182px;}
.ls3a{letter-spacing:1.713332px;}
.ls3e{letter-spacing:2.356366px;}
.ls37{letter-spacing:2.984289px;}
.ls3{letter-spacing:2.984525px;}
.ls1a{letter-spacing:2.984915px;}
.ls7{letter-spacing:2.985089px;}
.ls3d{letter-spacing:2.987468px;}
.ls4c{letter-spacing:2.987971px;}
.ls29{letter-spacing:2.990915px;}
.ls11{letter-spacing:3.010912px;}
.ls16{letter-spacing:3.665458px;}
.ls4d{letter-spacing:7.069097px;}
.lsf{letter-spacing:7.171062px;}
.ls15{letter-spacing:7.178700px;}
.lse{letter-spacing:13.255568px;}
.ls4{letter-spacing:13.270183px;}
.ls10{letter-spacing:14.530921px;}
.ls19{letter-spacing:14.596376px;}
.ls13{letter-spacing:15.054558px;}
.ls4b{letter-spacing:15.578195px;}
.lsa{letter-spacing:16.494559px;}
.ls2{letter-spacing:16.617617px;}
.ls17{letter-spacing:17.528915px;}
.ls18{letter-spacing:17.534915px;}
.lsc{letter-spacing:18.162996px;}
.ls35{letter-spacing:18.179412px;}
.lsb{letter-spacing:18.196379px;}
.ls4a{letter-spacing:18.560915px;}
.ls59{letter-spacing:19.374562px;}
.ls8{letter-spacing:19.592525px;}
.ls21{letter-spacing:20.029108px;}
.ls0{letter-spacing:20.801909px;}
.ls27{letter-spacing:21.076381px;}
.ls2f{letter-spacing:21.164915px;}
.ls20{letter-spacing:21.167971px;}
.ls34{letter-spacing:21.170915px;}
.ls53{letter-spacing:21.173971px;}
.ls2d{letter-spacing:21.207290px;}
.ls14{letter-spacing:21.711176px;}
.ls54{letter-spacing:21.716915px;}
.ls9{letter-spacing:21.796382px;}
.ls58{letter-spacing:22.334915px;}
.ls5{letter-spacing:22.654952px;}
.ls57{letter-spacing:22.778201px;}
.ls44{letter-spacing:23.956384px;}
.ls48{letter-spacing:24.021838px;}
.ls50{letter-spacing:24.152747px;}
.ls40{letter-spacing:24.800915px;}
.ls46{letter-spacing:24.806915px;}
.ls51{letter-spacing:24.807293px;}
.ls2c{letter-spacing:24.872748px;}
.ls56{letter-spacing:29.061842px;}
.ls4f{letter-spacing:29.127297px;}
.ls2b{letter-spacing:32.727300px;}
.ls6{letter-spacing:33.534112px;}
.ls1c{letter-spacing:93.221412px;}
.ls25{letter-spacing:123.560616px;}
.ls28{letter-spacing:141.566096px;}
.ls3b{letter-spacing:157.418313px;}
.ls22{letter-spacing:218.246032px;}
.ls3c{letter-spacing:229.778915px;}
.ls1b{letter-spacing:517.939062px;}
.ls24{letter-spacing:931.286706px;}
.ls42{letter-spacing:961.598915px;}
.ls32{letter-spacing:1006.448915px;}
.ls2e{letter-spacing:1033.571971px;}
.ls1d{letter-spacing:1036.766915px;}
.ls30{letter-spacing:1051.121971px;}
.ls26{letter-spacing:1069.018886px;}
.ls2a{letter-spacing:1084.606884px;}
.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;}
}
.ws6a{word-spacing:-65.454600px;}
.ws33{word-spacing:-51.820407px;}
.ws23{word-spacing:-42.637126px;}
.ws9{word-spacing:-38.937826px;}
.ws2c{word-spacing:-32.714209px;}
.wsb{word-spacing:-29.875845px;}
.ws2f{word-spacing:-22.608019px;}
.ws54{word-spacing:-20.906199px;}
.ws4e{word-spacing:-20.775290px;}
.ws24{word-spacing:-18.183288px;}
.wsf{word-spacing:-16.605662px;}
.ws5e{word-spacing:-14.111859px;}
.ws2d{word-spacing:-3.652367px;}
.ws19{word-spacing:-3.456003px;}
.ws4c{word-spacing:-2.801457px;}
.ws18{word-spacing:-2.212365px;}
.ws1f{word-spacing:-1.688729px;}
.ws5{word-spacing:-1.670481px;}
.ws78{word-spacing:-1.662547px;}
.ws20{word-spacing:-1.623274px;}
.ws79{word-spacing:-1.492365px;}
.ws65{word-spacing:-0.746182px;}
.ws87{word-spacing:-0.248727px;}
.ws84{word-spacing:-0.065455px;}
.ws27{word-spacing:0.000000px;}
.ws12{word-spacing:0.011955px;}
.ws25{word-spacing:0.013091px;}
.ws85{word-spacing:0.078546px;}
.ws10{word-spacing:0.191282px;}
.ws6f{word-spacing:0.536728px;}
.ws6e{word-spacing:0.628364px;}
.ws46{word-spacing:0.890183px;}
.ws50{word-spacing:1.125819px;}
.ws4f{word-spacing:1.191274px;}
.ws75{word-spacing:1.584001px;}
.ws66{word-spacing:1.911274px;}
.ws6d{word-spacing:2.002911px;}
.ws7a{word-spacing:2.238547px;}
.wse{word-spacing:2.402979px;}
.ws30{word-spacing:2.696730px;}
.ws31{word-spacing:2.762184px;}
.ws55{word-spacing:2.827639px;}
.ws22{word-spacing:2.893093px;}
.ws7b{word-spacing:2.958548px;}
.ws61{word-spacing:3.181094px;}
.ws8{word-spacing:3.299613px;}
.ws21{word-spacing:3.312003px;}
.ws29{word-spacing:3.547639px;}
.ws1a{word-spacing:3.613094px;}
.ws1b{word-spacing:3.678549px;}
.ws82{word-spacing:3.940367px;}
.ws28{word-spacing:4.097458px;}
.ws2e{word-spacing:4.162913px;}
.ws74{word-spacing:4.202185px;}
.ws2b{word-spacing:4.228367px;}
.ws3{word-spacing:4.256023px;}
.ws4a{word-spacing:4.267640px;}
.ws7d{word-spacing:4.333095px;}
.ws16{word-spacing:4.483200px;}
.ws57{word-spacing:4.529458px;}
.ws13{word-spacing:4.554901px;}
.ws73{word-spacing:4.817459px;}
.ws7c{word-spacing:4.987641px;}
.ws5a{word-spacing:5.118550px;}
.ws59{word-spacing:5.184004px;}
.ws56{word-spacing:5.210186px;}
.ws64{word-spacing:5.379825px;}
.ws7{word-spacing:5.391759px;}
.ws0{word-spacing:5.412522px;}
.ws2a{word-spacing:5.511277px;}
.ws51{word-spacing:5.576732px;}
.ws5d{word-spacing:5.642187px;}
.ws4{word-spacing:5.810188px;}
.ws58{word-spacing:5.930187px;}
.wsa{word-spacing:6.061399px;}
.ws69{word-spacing:6.100369px;}
.ws6b{word-spacing:6.165823px;}
.ws77{word-spacing:6.231278px;}
.ws6{word-spacing:6.467720px;}
.ws4d{word-spacing:6.558551px;}
.ws60{word-spacing:6.624006px;}
.ws1e{word-spacing:6.885824px;}
.ws68{word-spacing:7.042915px;}
.ws26{word-spacing:7.060046px;}
.ws5f{word-spacing:7.566552px;}
.ws6c{word-spacing:7.632006px;}
.ws89{word-spacing:7.671279px;}
.ws1d{word-spacing:7.959279px;}
.ws49{word-spacing:8.391280px;}
.ws14{word-spacing:8.619642px;}
.ws11{word-spacing:8.798968px;}
.ws63{word-spacing:9.700372px;}
.ws70{word-spacing:10.685971px;}
.ws32{word-spacing:10.878555px;}
.ws67{word-spacing:10.944009px;}
.ws5c{word-spacing:11.009464px;}
.ws5b{word-spacing:11.074918px;}
.ws62{word-spacing:11.166555px;}
.ws4b{word-spacing:11.336737px;}
.ws2{word-spacing:11.369319px;}
.ws48{word-spacing:11.729464px;}
.ws53{word-spacing:11.794919px;}
.wsc{word-spacing:11.847524px;}
.ws71{word-spacing:13.365829px;}
.ws72{word-spacing:13.431284px;}
.ws47{word-spacing:13.522920px;}
.ws17{word-spacing:13.562193px;}
.ws52{word-spacing:13.588375px;}
.wsd{word-spacing:14.178772px;}
.ws1c{word-spacing:14.544012px;}
.ws7e{word-spacing:16.507650px;}
.ws39{word-spacing:18.345254px;}
.ws88{word-spacing:19.767289px;}
.ws86{word-spacing:20.029108px;}
.ws1{word-spacing:23.312640px;}
.ws8b{word-spacing:23.367292px;}
.ws83{word-spacing:23.694565px;}
.ws7f{word-spacing:24.664568px;}
.ws81{word-spacing:24.668903px;}
.ws80{word-spacing:24.669563px;}
.ws76{word-spacing:25.920022px;}
.ws8a{word-spacing:27.098204px;}
.ws37{word-spacing:53.554954px;}
.ws3a{word-spacing:61.933143px;}
.ws15{word-spacing:69.937725px;}
.ws38{word-spacing:80.849522px;}
.ws35{word-spacing:112.856821px;}
.ws3d{word-spacing:136.682296px;}
.ws36{word-spacing:163.125954px;}
.ws3e{word-spacing:164.304137px;}
.ws43{word-spacing:164.369592px;}
.ws34{word-spacing:170.915052px;}
.ws45{word-spacing:184.136881px;}
.ws3b{word-spacing:190.027795px;}
.ws3f{word-spacing:212.282359px;}
.ws44{word-spacing:220.136911px;}
.ws41{word-spacing:220.333275px;}
.ws3c{word-spacing:224.522369px;}
.ws42{word-spacing:329.380638px;}
.ws40{word-spacing:329.446093px;}
._49{margin-left:-33.093889px;}
._15{margin-left:-14.530921px;}
._b{margin-left:-13.294722px;}
._0{margin-left:-8.056807px;}
._2{margin-left:-5.810227px;}
._7{margin-left:-3.889714px;}
._1{margin-left:-2.685602px;}
._4{margin-left:-1.673717px;}
._6{width:1.673717px;}
._3{width:2.685602px;}
._16{width:4.609925px;}
._12{width:17.607287px;}
._48{width:19.700081px;}
._8{width:20.861684px;}
._d{width:22.368068px;}
._c{width:23.488211px;}
._13{width:25.594712px;}
._a{width:26.600142px;}
._42{width:27.818205px;}
._5{width:29.469371px;}
._43{width:30.829117px;}
._40{width:31.943598px;}
._9{width:32.996131px;}
._3e{width:34.823811px;}
._10{width:36.132903px;}
._47{width:37.576832px;}
._3f{width:38.618214px;}
._11{width:39.732695px;}
._44{width:41.301853px;}
._e{width:42.620003px;}
._3d{width:45.504249px;}
._41{width:53.216554px;}
._46{width:68.373520px;}
._38{width:71.672787px;}
._f{width:80.697600px;}
._2e{width:84.567343px;}
._2d{width:95.498261px;}
._45{width:96.836850px;}
._25{width:99.032810px;}
._23{width:141.578300px;}
._1a{width:156.567403px;}
._2a{width:160.391873px;}
._24{width:168.807413px;}
._1e{width:172.939981px;}
._31{width:182.487425px;}
._27{width:186.283792px;}
._3b{width:188.901976px;}
._36{width:190.472886px;}
._2b{width:195.512890px;}
._19{width:196.813055px;}
._2c{width:203.891079px;}
._18{width:206.707591px;}
._35{width:207.868577px;}
._34{width:221.956549px;}
._33{width:223.265641px;}
._32{width:225.971399px;}
._1b{width:241.396565px;}
._3a{width:242.967475px;}
._1c{width:250.952936px;}
._26{width:256.632254px;}
._30{width:264.502039px;}
._1f{width:274.058410px;}
._20{width:283.680236px;}
._28{width:290.814788px;}
._29{width:302.596616px;}
._1d{width:326.313301px;}
._21{width:330.807548px;}
._3c{width:333.983455px;}
._2f{width:347.563926px;}
._22{width:351.360293px;}
._17{width:363.432042px;}
._39{width:503.271170px;}
._37{width:613.571420px;}
._14{width:1047.531019px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y24{bottom:63.168000px;}
.yda{bottom:108.000000px;}
.y9d{bottom:112.083000px;}
.y23{bottom:117.355500px;}
.ybb{bottom:127.464000px;}
.yd9{bottom:128.323500px;}
.y22{bottom:128.580000px;}
.y45{bottom:130.921500px;}
.y9c{bottom:145.857000px;}
.yd8{bottom:148.647000px;}
.y21{bottom:155.508000px;}
.y69{bottom:156.670500px;}
.yba{bottom:161.238000px;}
.y44{bottom:167.683500px;}
.yd7{bottom:168.972000px;}
.y68{bottom:176.994000px;}
.y9b{bottom:179.629500px;}
.y20{bottom:189.124500px;}
.yd6{bottom:189.295500px;}
.y43{bottom:192.490500px;}
.yf5{bottom:194.904000px;}
.yb9{bottom:195.012000px;}
.y67{bottom:197.319000px;}
.y1f{bottom:200.349000px;}
.yd5{bottom:209.619000px;}
.y9a{bottom:213.403500px;}
.yb8{bottom:215.335500px;}
.y66{bottom:217.642500px;}
.yf4{bottom:228.676500px;}
.y42{bottom:229.252500px;}
.yd4{bottom:229.942500px;}
.y99{bottom:233.727000px;}
.y65{bottom:237.966000px;}
.y1e{bottom:246.177000px;}
.yf3{bottom:249.000000px;}
.yb7{bottom:249.108000px;}
.yd3{bottom:250.266000px;}
.y8a{bottom:252.991500px;}
.y64{bottom:258.289500px;}
.y98{bottom:264.619500px;}
.y41{bottom:266.014500px;}
.y1d{bottom:266.500500px;}
.yb6{bottom:269.433000px;}
.yd2{bottom:270.591000px;}
.y89{bottom:273.315000px;}
.y63{bottom:278.613000px;}
.yf2{bottom:282.774000px;}
.yd1{bottom:290.914500px;}
.y62{bottom:298.936500px;}
.y1c{bottom:300.274500px;}
.y40{bottom:302.776500px;}
.yf1{bottom:303.097500px;}
.yb5{bottom:303.205500px;}
.y97{bottom:308.437500px;}
.y61{bottom:319.261500px;}
.y81{bottom:319.761000px;}
.y1b{bottom:320.598000px;}
.yb4{bottom:323.529000px;}
.y96{bottom:328.762500px;}
.yd0{bottom:328.888500px;}
.y3f{bottom:333.667500px;}
.yf0{bottom:336.871500px;}
.y1a{bottom:340.921500px;}
.y60{bottom:347.800500px;}
.y95{bottom:349.086000px;}
.ycf{bottom:349.212000px;}
.y80{bottom:353.533500px;}
.yef{bottom:357.195000px;}
.yb3{bottom:361.786500px;}
.y5f{bottom:368.124000px;}
.y94{bottom:369.409500px;}
.y3e{bottom:377.487000px;}
.y19{bottom:379.177500px;}
.yce{bottom:382.891500px;}
.y7f{bottom:387.307500px;}
.y93{bottom:389.733000px;}
.yee{bottom:390.967500px;}
.yb2{bottom:392.677500px;}
.y5e{bottom:392.916000px;}
.y3d{bottom:397.810500px;}
.y18{bottom:399.502500px;}
.y92{bottom:410.056500px;}
.yed{bottom:411.292500px;}
.y85{bottom:413.838000px;}
.ycd{bottom:416.571000px;}
.y17{bottom:419.826000px;}
.y7e{bottom:421.080000px;}
.yb1{bottom:429.804000px;}
.y91{bottom:430.381500px;}
.y3c{bottom:431.584500px;}
.y84{bottom:434.161500px;}
.y16{bottom:440.149500px;}
.yec{bottom:447.820500px;}
.ycc{bottom:450.250500px;}
.y90{bottom:450.705000px;}
.y83{bottom:454.485000px;}
.y7d{bottom:454.854000px;}
.y15{bottom:460.473000px;}
.y3b{bottom:465.358500px;}
.y5d{bottom:468.394500px;}
.y8f{bottom:471.028500px;}
.y82{bottom:474.810000px;}
.yb0{bottom:481.362000px;}
.ycb{bottom:483.930000px;}
.y7c{bottom:485.746500px;}
.y5c{bottom:487.131000px;}
.y14{bottom:491.365500px;}
.y3a{bottom:499.131000px;}
.yeb{bottom:499.378500px;}
.yaf{bottom:501.685500px;}
.y8e{bottom:501.921000px;}
.y5b{bottom:507.454500px;}
.yea{bottom:519.702000px;}
.yca{bottom:521.904000px;}
.yae{bottom:522.010500px;}
.y5a{bottom:527.779500px;}
.y13{bottom:528.490500px;}
.y7b{bottom:529.564500px;}
.y39{bottom:532.905000px;}
.y8d{bottom:539.046000px;}
.ye9{bottom:540.025500px;}
.yc9{bottom:542.227500px;}
.yad{bottom:542.334000px;}
.y59{bottom:548.103000px;}
.y7a{bottom:549.889500px;}
.yac{bottom:562.657500px;}
.y38{bottom:566.677500px;}
.y58{bottom:568.426500px;}
.y79{bottom:570.213000px;}
.ye8{bottom:576.555000px;}
.yc8{bottom:578.757000px;}
.y12{bottom:580.050000px;}
.yab{bottom:582.981000px;}
.y8c{bottom:587.059500px;}
.y57{bottom:588.750000px;}
.y78{bottom:590.536500px;}
.y37{bottom:597.570000px;}
.y11{bottom:597.982500px;}
.yaa{bottom:603.304500px;}
.y8b{bottom:607.384500px;}
.y56{bottom:609.073500px;}
.y77{bottom:610.860000px;}
.y10{bottom:615.915000px;}
.ya9{bottom:623.628000px;}
.ye7{bottom:628.113000px;}
.y55{bottom:629.398500px;}
.yc7{bottom:630.270000px;}
.yf{bottom:633.847500px;}
.y36{bottom:634.696500px;}
.y76{bottom:641.752500px;}
.y54{bottom:649.722000px;}
.ye{bottom:651.780000px;}
.ya8{bottom:654.520500px;}
.ye6{bottom:661.885500px;}
.yc6{bottom:663.949500px;}
.yd{bottom:669.712500px;}
.y53{bottom:678.261000px;}
.y75{bottom:685.572000px;}
.y35{bottom:686.254500px;}
.y88{bottom:686.803500px;}
.yc{bottom:687.646500px;}
.ye5{bottom:695.659500px;}
.yc5{bottom:697.629000px;}
.ya7{bottom:698.340000px;}
.y52{bottom:698.584500px;}
.yb{bottom:705.579000px;}
.y87{bottom:707.127000px;}
.y34{bottom:712.917000px;}
.y74{bottom:719.344500px;}
.y51{bottom:723.376500px;}
.ya{bottom:723.511500px;}
.y33{bottom:724.141500px;}
.y86{bottom:727.452000px;}
.ye4{bottom:729.432000px;}
.yc4{bottom:731.308500px;}
.ya6{bottom:732.112500px;}
.y9{bottom:741.444000px;}
.y32{bottom:747.888000px;}
.y73{bottom:753.118500px;}
.y8{bottom:759.376500px;}
.yc3{bottom:764.988000px;}
.ya5{bottom:765.886500px;}
.ye3{bottom:765.961500px;}
.y50{bottom:772.293000px;}
.y31{bottom:774.550500px;}
.y7{bottom:777.310500px;}
.y30{bottom:785.775000px;}
.y72{bottom:786.891000px;}
.y6{bottom:795.243000px;}
.ya4{bottom:799.660500px;}
.yc2{bottom:802.962000px;}
.y4f{bottom:803.185500px;}
.y2f{bottom:812.703000px;}
.ye2{bottom:817.519500px;}
.y71{bottom:820.665000px;}
.y5{bottom:822.516000px;}
.ya3{bottom:833.433000px;}
.yc1{bottom:833.854500px;}
.ye1{bottom:837.843000px;}
.y2e{bottom:839.365500px;}
.y4e{bottom:840.310500px;}
.y2d{bottom:850.590000px;}
.ye0{bottom:858.166500px;}
.ya2{bottom:867.207000px;}
.y70{bottom:869.146500px;}
.y2c{bottom:877.518000px;}
.yc0{bottom:877.629000px;}
.y4{bottom:882.927000px;}
.y6f{bottom:889.470000px;}
.y4d{bottom:891.868500px;}
.ydf{bottom:891.940500px;}
.y2b{bottom:897.841500px;}
.ybf{bottom:897.952500px;}
.ya1{bottom:900.979500px;}
.y6e{bottom:909.793500px;}
.y2a{bottom:918.165000px;}
.y3{bottom:919.614000px;}
.y4c{bottom:925.642500px;}
.yde{bottom:925.713000px;}
.y6d{bottom:930.117000px;}
.ybe{bottom:931.632000px;}
.ya0{bottom:934.753500px;}
.y29{bottom:949.057500px;}
.y6c{bottom:950.440500px;}
.y4b{bottom:959.416500px;}
.ydd{bottom:959.487000px;}
.y2{bottom:965.080500px;}
.ybd{bottom:965.311500px;}
.y9f{bottom:968.526000px;}
.y6b{bottom:978.981000px;}
.y4a{bottom:985.723500px;}
.y49{bottom:989.698500px;}
.y28{bottom:992.877000px;}
.ydc{bottom:993.259500px;}
.y47{bottom:996.484500px;}
.y1{bottom:997.957500px;}
.ybc{bottom:998.991000px;}
.y9e{bottom:999.418500px;}
.y6a{bottom:1003.771500px;}
.y48{bottom:1004.547000px;}
.y27{bottom:1022.914500px;}
.ydb{bottom:1027.033500px;}
.y46{bottom:1032.669000px;}
.y26{bottom:1043.238000px;}
.y25{bottom:1063.561500px;}
.h14{height:16.677504px;}
.h13{height:23.814758px;}
.h16{height:40.058215px;}
.h12{height:40.320624px;}
.h11{height:40.722624px;}
.h3{height:42.141798px;}
.h4{height:44.831700px;}
.hf{height:46.145493px;}
.h9{height:49.090950px;}
.h6{height:51.147331px;}
.h2{height:51.287808px;}
.h8{height:53.798400px;}
.h15{height:59.613450px;}
.h10{height:59.619450px;}
.he{height:62.889450px;}
.h7{height:64.557900px;}
.h1{height:72.511265px;}
.h5{height:91.593798px;}
.hb{height:93.370950px;}
.hd{height:93.988950px;}
.ha{height:103.899450px;}
.hc{height:139.808184px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:108.000000px;}
.x25{left:116.182500px;}
.xa{left:127.999500px;}
.x2{left:131.374500px;}
.x9{left:133.404000px;}
.x26{left:141.636000px;}
.x7{left:148.909500px;}
.x1e{left:150.684000px;}
.x6{left:171.325500px;}
.x21{left:185.736000px;}
.x1{left:191.038500px;}
.x1d{left:203.772000px;}
.x24{left:259.749000px;}
.x22{left:269.703000px;}
.x20{left:296.158500px;}
.xb{left:299.302500px;}
.x1a{left:312.793500px;}
.x3{left:314.047500px;}
.x23{left:319.954500px;}
.x1b{left:332.418000px;}
.x1c{left:339.676500px;}
.x12{left:359.937000px;}
.x19{left:380.728500px;}
.xc{left:384.703500px;}
.x18{left:386.554500px;}
.x4{left:390.838500px;}
.x14{left:394.369500px;}
.x16{left:397.812000px;}
.x13{left:411.190500px;}
.x5{left:426.123000px;}
.x17{left:429.753000px;}
.x11{left:431.712000px;}
.x15{left:434.010000px;}
.xd{left:437.122500px;}
.x27{left:450.817500px;}
.x10{left:454.909500px;}
.xe{left:471.466500px;}
.xf{left:476.749500px;}
.x1f{left:487.609500px;}
@media print{
.vf{vertical-align:-20.314667pt;}
.vc{vertical-align:-17.200000pt;}
.v8{vertical-align:-9.482667pt;}
.v2{vertical-align:-7.968000pt;}
.vd{vertical-align:-6.480000pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:14.997333pt;}
.va{vertical-align:16.805333pt;}
.v3{vertical-align:19.280000pt;}
.vb{vertical-align:21.114667pt;}
.v7{vertical-align:24.026667pt;}
.v9{vertical-align:30.629333pt;}
.v5{vertical-align:39.360000pt;}
.v1{vertical-align:43.957333pt;}
.v6{vertical-align:60.474667pt;}
.v4{vertical-align:82.037333pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.000876pt;}
.ls1{letter-spacing:0.000882pt;}
.ls3f{letter-spacing:0.000939pt;}
.ls36{letter-spacing:0.001387pt;}
.lsd{letter-spacing:0.002384pt;}
.ls55{letter-spacing:0.003293pt;}
.ls41{letter-spacing:0.003323pt;}
.ls39{letter-spacing:0.004025pt;}
.ls43{letter-spacing:0.004252pt;}
.ls38{letter-spacing:0.004533pt;}
.ls47{letter-spacing:0.006515pt;}
.ls1f{letter-spacing:0.007193pt;}
.ls31{letter-spacing:0.008856pt;}
.ls33{letter-spacing:0.016116pt;}
.ls49{letter-spacing:0.018313pt;}
.ls12{letter-spacing:0.024585pt;}
.ls23{letter-spacing:0.026057pt;}
.ls52{letter-spacing:0.238239pt;}
.ls4e{letter-spacing:0.407273pt;}
.ls3a{letter-spacing:1.522961pt;}
.ls3e{letter-spacing:2.094547pt;}
.ls37{letter-spacing:2.652701pt;}
.ls3{letter-spacing:2.652911pt;}
.ls1a{letter-spacing:2.653258pt;}
.ls7{letter-spacing:2.653413pt;}
.ls3d{letter-spacing:2.655527pt;}
.ls4c{letter-spacing:2.655975pt;}
.ls29{letter-spacing:2.658591pt;}
.ls11{letter-spacing:2.676366pt;}
.ls16{letter-spacing:3.258185pt;}
.ls4d{letter-spacing:6.283642pt;}
.lsf{letter-spacing:6.374277pt;}
.ls15{letter-spacing:6.381067pt;}
.lse{letter-spacing:11.782727pt;}
.ls4{letter-spacing:11.795718pt;}
.ls10{letter-spacing:12.916374pt;}
.ls19{letter-spacing:12.974556pt;}
.ls13{letter-spacing:13.381829pt;}
.ls4b{letter-spacing:13.847284pt;}
.lsa{letter-spacing:14.661830pt;}
.ls2{letter-spacing:14.771215pt;}
.ls17{letter-spacing:15.581258pt;}
.ls18{letter-spacing:15.586591pt;}
.lsc{letter-spacing:16.144885pt;}
.ls35{letter-spacing:16.159477pt;}
.lsb{letter-spacing:16.174559pt;}
.ls4a{letter-spacing:16.498591pt;}
.ls59{letter-spacing:17.221833pt;}
.ls8{letter-spacing:17.415578pt;}
.ls21{letter-spacing:17.803651pt;}
.ls0{letter-spacing:18.490586pt;}
.ls27{letter-spacing:18.734561pt;}
.ls2f{letter-spacing:18.813258pt;}
.ls20{letter-spacing:18.815975pt;}
.ls34{letter-spacing:18.818591pt;}
.ls53{letter-spacing:18.821308pt;}
.ls2d{letter-spacing:18.850925pt;}
.ls14{letter-spacing:19.298823pt;}
.ls54{letter-spacing:19.303925pt;}
.ls9{letter-spacing:19.374562pt;}
.ls58{letter-spacing:19.853258pt;}
.ls5{letter-spacing:20.137735pt;}
.ls57{letter-spacing:20.247290pt;}
.ls44{letter-spacing:21.294563pt;}
.ls48{letter-spacing:21.352745pt;}
.ls50{letter-spacing:21.469109pt;}
.ls40{letter-spacing:22.045258pt;}
.ls46{letter-spacing:22.050591pt;}
.ls51{letter-spacing:22.050927pt;}
.ls2c{letter-spacing:22.109109pt;}
.ls56{letter-spacing:25.832749pt;}
.ls4f{letter-spacing:25.890931pt;}
.ls2b{letter-spacing:29.090933pt;}
.ls6{letter-spacing:29.808099pt;}
.ls1c{letter-spacing:82.863477pt;}
.ls25{letter-spacing:109.831659pt;}
.ls28{letter-spacing:125.836530pt;}
.ls3b{letter-spacing:139.927389pt;}
.ls22{letter-spacing:193.996473pt;}
.ls3c{letter-spacing:204.247925pt;}
.ls1b{letter-spacing:460.390277pt;}
.ls24{letter-spacing:827.810405pt;}
.ls42{letter-spacing:854.754591pt;}
.ls32{letter-spacing:894.621258pt;}
.ls2e{letter-spacing:918.730641pt;}
.ls1d{letter-spacing:921.570591pt;}
.ls30{letter-spacing:934.330641pt;}
.ls26{letter-spacing:950.239009pt;}
.ls2a{letter-spacing:964.095008pt;}
.ws6a{word-spacing:-58.181867pt;}
.ws33{word-spacing:-46.062584pt;}
.ws23{word-spacing:-37.899668pt;}
.ws9{word-spacing:-34.611401pt;}
.ws2c{word-spacing:-29.079297pt;}
.wsb{word-spacing:-26.556307pt;}
.ws2f{word-spacing:-20.096017pt;}
.ws54{word-spacing:-18.583288pt;}
.ws4e{word-spacing:-18.466924pt;}
.ws24{word-spacing:-16.162923pt;}
.wsf{word-spacing:-14.760588pt;}
.ws5e{word-spacing:-12.543875pt;}
.ws2d{word-spacing:-3.246548pt;}
.ws19{word-spacing:-3.072003pt;}
.ws4c{word-spacing:-2.490184pt;}
.ws18{word-spacing:-1.966547pt;}
.ws1f{word-spacing:-1.501092pt;}
.ws5{word-spacing:-1.484872pt;}
.ws78{word-spacing:-1.477819pt;}
.ws20{word-spacing:-1.442910pt;}
.ws79{word-spacing:-1.326547pt;}
.ws65{word-spacing:-0.663273pt;}
.ws87{word-spacing:-0.221091pt;}
.ws84{word-spacing:-0.058182pt;}
.ws27{word-spacing:0.000000pt;}
.ws12{word-spacing:0.010627pt;}
.ws25{word-spacing:0.011636pt;}
.ws85{word-spacing:0.069818pt;}
.ws10{word-spacing:0.170028pt;}
.ws6f{word-spacing:0.477091pt;}
.ws6e{word-spacing:0.558546pt;}
.ws46{word-spacing:0.791273pt;}
.ws50{word-spacing:1.000728pt;}
.ws4f{word-spacing:1.058910pt;}
.ws75{word-spacing:1.408001pt;}
.ws66{word-spacing:1.698911pt;}
.ws6d{word-spacing:1.780365pt;}
.ws7a{word-spacing:1.989820pt;}
.wse{word-spacing:2.135981pt;}
.ws30{word-spacing:2.397093pt;}
.ws31{word-spacing:2.455275pt;}
.ws55{word-spacing:2.513457pt;}
.ws22{word-spacing:2.571639pt;}
.ws7b{word-spacing:2.629820pt;}
.ws61{word-spacing:2.827639pt;}
.ws8{word-spacing:2.932989pt;}
.ws21{word-spacing:2.944002pt;}
.ws29{word-spacing:3.153457pt;}
.ws1a{word-spacing:3.211639pt;}
.ws1b{word-spacing:3.269821pt;}
.ws82{word-spacing:3.502548pt;}
.ws28{word-spacing:3.642185pt;}
.ws2e{word-spacing:3.700367pt;}
.ws74{word-spacing:3.735276pt;}
.ws2b{word-spacing:3.758549pt;}
.ws3{word-spacing:3.783131pt;}
.ws4a{word-spacing:3.793458pt;}
.ws7d{word-spacing:3.851640pt;}
.ws16{word-spacing:3.985067pt;}
.ws57{word-spacing:4.026185pt;}
.ws13{word-spacing:4.048801pt;}
.ws73{word-spacing:4.282185pt;}
.ws7c{word-spacing:4.433458pt;}
.ws5a{word-spacing:4.549822pt;}
.ws59{word-spacing:4.608004pt;}
.ws56{word-spacing:4.631277pt;}
.ws64{word-spacing:4.782067pt;}
.ws7{word-spacing:4.792675pt;}
.ws0{word-spacing:4.811130pt;}
.ws2a{word-spacing:4.898913pt;}
.ws51{word-spacing:4.957095pt;}
.ws5d{word-spacing:5.015277pt;}
.ws4{word-spacing:5.164612pt;}
.ws58{word-spacing:5.271277pt;}
.wsa{word-spacing:5.387910pt;}
.ws69{word-spacing:5.422550pt;}
.ws6b{word-spacing:5.480732pt;}
.ws77{word-spacing:5.538914pt;}
.ws6{word-spacing:5.749084pt;}
.ws4d{word-spacing:5.829823pt;}
.ws60{word-spacing:5.888005pt;}
.ws1e{word-spacing:6.120732pt;}
.ws68{word-spacing:6.260369pt;}
.ws26{word-spacing:6.275596pt;}
.ws5f{word-spacing:6.725824pt;}
.ws6c{word-spacing:6.784006pt;}
.ws89{word-spacing:6.818915pt;}
.ws1d{word-spacing:7.074915pt;}
.ws49{word-spacing:7.458915pt;}
.ws14{word-spacing:7.661904pt;}
.ws11{word-spacing:7.821305pt;}
.ws63{word-spacing:8.622553pt;}
.ws70{word-spacing:9.498641pt;}
.ws32{word-spacing:9.669826pt;}
.ws67{word-spacing:9.728008pt;}
.ws5c{word-spacing:9.786190pt;}
.ws5b{word-spacing:9.844372pt;}
.ws62{word-spacing:9.925826pt;}
.ws4b{word-spacing:10.077099pt;}
.ws2{word-spacing:10.106061pt;}
.ws48{word-spacing:10.426191pt;}
.ws53{word-spacing:10.484372pt;}
.wsc{word-spacing:10.531132pt;}
.ws71{word-spacing:11.880737pt;}
.ws72{word-spacing:11.938919pt;}
.ws47{word-spacing:12.020374pt;}
.ws17{word-spacing:12.055283pt;}
.ws52{word-spacing:12.078556pt;}
.wsd{word-spacing:12.603353pt;}
.ws1c{word-spacing:12.928011pt;}
.ws7e{word-spacing:14.673467pt;}
.ws39{word-spacing:16.306893pt;}
.ws88{word-spacing:17.570924pt;}
.ws86{word-spacing:17.803651pt;}
.ws1{word-spacing:20.722347pt;}
.ws8b{word-spacing:20.770926pt;}
.ws83{word-spacing:21.061836pt;}
.ws7f{word-spacing:21.924061pt;}
.ws81{word-spacing:21.927914pt;}
.ws80{word-spacing:21.928501pt;}
.ws76{word-spacing:23.040019pt;}
.ws8a{word-spacing:24.087293pt;}
.ws37{word-spacing:47.604403pt;}
.ws3a{word-spacing:55.051682pt;}
.ws15{word-spacing:62.166867pt;}
.ws38{word-spacing:71.866242pt;}
.ws35{word-spacing:100.317175pt;}
.ws3d{word-spacing:121.495374pt;}
.ws36{word-spacing:145.000848pt;}
.ws3e{word-spacing:146.048122pt;}
.ws43{word-spacing:146.106304pt;}
.ws34{word-spacing:151.924490pt;}
.ws45{word-spacing:163.677227pt;}
.ws3b{word-spacing:168.913595pt;}
.ws3f{word-spacing:188.695430pt;}
.ws44{word-spacing:195.677254pt;}
.ws41{word-spacing:195.851800pt;}
.ws3c{word-spacing:199.575439pt;}
.ws42{word-spacing:292.782789pt;}
.ws40{word-spacing:292.840971pt;}
._49{margin-left:-29.416790pt;}
._15{margin-left:-12.916374pt;}
._b{margin-left:-11.817531pt;}
._0{margin-left:-7.161606pt;}
._2{margin-left:-5.164646pt;}
._7{margin-left:-3.457523pt;}
._1{margin-left:-2.387202pt;}
._4{margin-left:-1.487748pt;}
._6{width:1.487748pt;}
._3{width:2.387202pt;}
._16{width:4.097711pt;}
._12{width:15.650922pt;}
._48{width:17.511183pt;}
._8{width:18.543719pt;}
._d{width:19.882727pt;}
._c{width:20.878410pt;}
._13{width:22.750855pt;}
._a{width:23.644571pt;}
._42{width:24.727293pt;}
._5{width:26.194996pt;}
._43{width:27.403659pt;}
._40{width:28.394309pt;}
._9{width:29.329894pt;}
._3e{width:30.954499pt;}
._10{width:32.118136pt;}
._47{width:33.401628pt;}
._3f{width:34.327301pt;}
._11{width:35.317951pt;}
._44{width:36.712758pt;}
._e{width:37.884447pt;}
._3d{width:40.448221pt;}
._41{width:47.303603pt;}
._46{width:60.776462pt;}
._38{width:63.709144pt;}
._f{width:71.731200pt;}
._2e{width:75.170972pt;}
._2d{width:84.887343pt;}
._45{width:86.077200pt;}
._25{width:88.029164pt;}
._23{width:125.847378pt;}
._1a{width:139.171025pt;}
._2a{width:142.570554pt;}
._24{width:150.051034pt;}
._1e{width:153.724427pt;}
._31{width:162.211044pt;}
._27{width:165.585593pt;}
._3b{width:167.912867pt;}
._36{width:169.309232pt;}
._2b{width:173.789236pt;}
._19{width:174.944937pt;}
._2c{width:181.236515pt;}
._18{width:183.740081pt;}
._35{width:184.772069pt;}
._34{width:197.294710pt;}
._33{width:198.458347pt;}
._32{width:200.863466pt;}
._1b{width:214.574724pt;}
._3a{width:215.971089pt;}
._1c{width:223.069277pt;}
._26{width:228.117559pt;}
._30{width:235.112923pt;}
._1f{width:243.607476pt;}
._20{width:252.160210pt;}
._28{width:258.502034pt;}
._29{width:268.974770pt;}
._1d{width:290.056267pt;}
._21{width:294.051154pt;}
._3c{width:296.874182pt;}
._2f{width:308.945712pt;}
._22{width:312.320260pt;}
._17{width:323.050704pt;}
._39{width:447.352151pt;}
._37{width:545.396818pt;}
._14{width:931.138684pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:56.149333pt;}
.yda{bottom:96.000000pt;}
.y9d{bottom:99.629333pt;}
.y23{bottom:104.316000pt;}
.ybb{bottom:113.301333pt;}
.yd9{bottom:114.065333pt;}
.y22{bottom:114.293333pt;}
.y45{bottom:116.374667pt;}
.y9c{bottom:129.650667pt;}
.yd8{bottom:132.130667pt;}
.y21{bottom:138.229333pt;}
.y69{bottom:139.262667pt;}
.yba{bottom:143.322667pt;}
.y44{bottom:149.052000pt;}
.yd7{bottom:150.197333pt;}
.y68{bottom:157.328000pt;}
.y9b{bottom:159.670667pt;}
.y20{bottom:168.110667pt;}
.yd6{bottom:168.262667pt;}
.y43{bottom:171.102667pt;}
.yf5{bottom:173.248000pt;}
.yb9{bottom:173.344000pt;}
.y67{bottom:175.394667pt;}
.y1f{bottom:178.088000pt;}
.yd5{bottom:186.328000pt;}
.y9a{bottom:189.692000pt;}
.yb8{bottom:191.409333pt;}
.y66{bottom:193.460000pt;}
.yf4{bottom:203.268000pt;}
.y42{bottom:203.780000pt;}
.yd4{bottom:204.393333pt;}
.y99{bottom:207.757333pt;}
.y65{bottom:211.525333pt;}
.y1e{bottom:218.824000pt;}
.yf3{bottom:221.333333pt;}
.yb7{bottom:221.429333pt;}
.yd3{bottom:222.458667pt;}
.y8a{bottom:224.881333pt;}
.y64{bottom:229.590667pt;}
.y98{bottom:235.217333pt;}
.y41{bottom:236.457333pt;}
.y1d{bottom:236.889333pt;}
.yb6{bottom:239.496000pt;}
.yd2{bottom:240.525333pt;}
.y89{bottom:242.946667pt;}
.y63{bottom:247.656000pt;}
.yf2{bottom:251.354667pt;}
.yd1{bottom:258.590667pt;}
.y62{bottom:265.721333pt;}
.y1c{bottom:266.910667pt;}
.y40{bottom:269.134667pt;}
.yf1{bottom:269.420000pt;}
.yb5{bottom:269.516000pt;}
.y97{bottom:274.166667pt;}
.y61{bottom:283.788000pt;}
.y81{bottom:284.232000pt;}
.y1b{bottom:284.976000pt;}
.yb4{bottom:287.581333pt;}
.y96{bottom:292.233333pt;}
.yd0{bottom:292.345333pt;}
.y3f{bottom:296.593333pt;}
.yf0{bottom:299.441333pt;}
.y1a{bottom:303.041333pt;}
.y60{bottom:309.156000pt;}
.y95{bottom:310.298667pt;}
.ycf{bottom:310.410667pt;}
.y80{bottom:314.252000pt;}
.yef{bottom:317.506667pt;}
.yb3{bottom:321.588000pt;}
.y5f{bottom:327.221333pt;}
.y94{bottom:328.364000pt;}
.y3e{bottom:335.544000pt;}
.y19{bottom:337.046667pt;}
.yce{bottom:340.348000pt;}
.y7f{bottom:344.273333pt;}
.y93{bottom:346.429333pt;}
.yee{bottom:347.526667pt;}
.yb2{bottom:349.046667pt;}
.y5e{bottom:349.258667pt;}
.y3d{bottom:353.609333pt;}
.y18{bottom:355.113333pt;}
.y92{bottom:364.494667pt;}
.yed{bottom:365.593333pt;}
.y85{bottom:367.856000pt;}
.ycd{bottom:370.285333pt;}
.y17{bottom:373.178667pt;}
.y7e{bottom:374.293333pt;}
.yb1{bottom:382.048000pt;}
.y91{bottom:382.561333pt;}
.y3c{bottom:383.630667pt;}
.y84{bottom:385.921333pt;}
.y16{bottom:391.244000pt;}
.yec{bottom:398.062667pt;}
.ycc{bottom:400.222667pt;}
.y90{bottom:400.626667pt;}
.y83{bottom:403.986667pt;}
.y7d{bottom:404.314667pt;}
.y15{bottom:409.309333pt;}
.y3b{bottom:413.652000pt;}
.y5d{bottom:416.350667pt;}
.y8f{bottom:418.692000pt;}
.y82{bottom:422.053333pt;}
.yb0{bottom:427.877333pt;}
.ycb{bottom:430.160000pt;}
.y7c{bottom:431.774667pt;}
.y5c{bottom:433.005333pt;}
.y14{bottom:436.769333pt;}
.y3a{bottom:443.672000pt;}
.yeb{bottom:443.892000pt;}
.yaf{bottom:445.942667pt;}
.y8e{bottom:446.152000pt;}
.y5b{bottom:451.070667pt;}
.yea{bottom:461.957333pt;}
.yca{bottom:463.914667pt;}
.yae{bottom:464.009333pt;}
.y5a{bottom:469.137333pt;}
.y13{bottom:469.769333pt;}
.y7b{bottom:470.724000pt;}
.y39{bottom:473.693333pt;}
.y8d{bottom:479.152000pt;}
.ye9{bottom:480.022667pt;}
.yc9{bottom:481.980000pt;}
.yad{bottom:482.074667pt;}
.y59{bottom:487.202667pt;}
.y7a{bottom:488.790667pt;}
.yac{bottom:500.140000pt;}
.y38{bottom:503.713333pt;}
.y58{bottom:505.268000pt;}
.y79{bottom:506.856000pt;}
.ye8{bottom:512.493333pt;}
.yc8{bottom:514.450667pt;}
.y12{bottom:515.600000pt;}
.yab{bottom:518.205333pt;}
.y8c{bottom:521.830667pt;}
.y57{bottom:523.333333pt;}
.y78{bottom:524.921333pt;}
.y37{bottom:531.173333pt;}
.y11{bottom:531.540000pt;}
.yaa{bottom:536.270667pt;}
.y8b{bottom:539.897333pt;}
.y56{bottom:541.398667pt;}
.y77{bottom:542.986667pt;}
.y10{bottom:547.480000pt;}
.ya9{bottom:554.336000pt;}
.ye7{bottom:558.322667pt;}
.y55{bottom:559.465333pt;}
.yc7{bottom:560.240000pt;}
.yf{bottom:563.420000pt;}
.y36{bottom:564.174667pt;}
.y76{bottom:570.446667pt;}
.y54{bottom:577.530667pt;}
.ye{bottom:579.360000pt;}
.ya8{bottom:581.796000pt;}
.ye6{bottom:588.342667pt;}
.yc6{bottom:590.177333pt;}
.yd{bottom:595.300000pt;}
.y53{bottom:602.898667pt;}
.y75{bottom:609.397333pt;}
.y35{bottom:610.004000pt;}
.y88{bottom:610.492000pt;}
.yc{bottom:611.241333pt;}
.ye5{bottom:618.364000pt;}
.yc5{bottom:620.114667pt;}
.ya7{bottom:620.746667pt;}
.y52{bottom:620.964000pt;}
.yb{bottom:627.181333pt;}
.y87{bottom:628.557333pt;}
.y34{bottom:633.704000pt;}
.y74{bottom:639.417333pt;}
.y51{bottom:643.001333pt;}
.ya{bottom:643.121333pt;}
.y33{bottom:643.681333pt;}
.y86{bottom:646.624000pt;}
.ye4{bottom:648.384000pt;}
.yc4{bottom:650.052000pt;}
.ya6{bottom:650.766667pt;}
.y9{bottom:659.061333pt;}
.y32{bottom:664.789333pt;}
.y73{bottom:669.438667pt;}
.y8{bottom:675.001333pt;}
.yc3{bottom:679.989333pt;}
.ya5{bottom:680.788000pt;}
.ye3{bottom:680.854667pt;}
.y50{bottom:686.482667pt;}
.y31{bottom:688.489333pt;}
.y7{bottom:690.942667pt;}
.y30{bottom:698.466667pt;}
.y72{bottom:699.458667pt;}
.y6{bottom:706.882667pt;}
.ya4{bottom:710.809333pt;}
.yc2{bottom:713.744000pt;}
.y4f{bottom:713.942667pt;}
.y2f{bottom:722.402667pt;}
.ye2{bottom:726.684000pt;}
.y71{bottom:729.480000pt;}
.y5{bottom:731.125333pt;}
.ya3{bottom:740.829333pt;}
.yc1{bottom:741.204000pt;}
.ye1{bottom:744.749333pt;}
.y2e{bottom:746.102667pt;}
.y4e{bottom:746.942667pt;}
.y2d{bottom:756.080000pt;}
.ye0{bottom:762.814667pt;}
.ya2{bottom:770.850667pt;}
.y70{bottom:772.574667pt;}
.y2c{bottom:780.016000pt;}
.yc0{bottom:780.114667pt;}
.y4{bottom:784.824000pt;}
.y6f{bottom:790.640000pt;}
.y4d{bottom:792.772000pt;}
.ydf{bottom:792.836000pt;}
.y2b{bottom:798.081333pt;}
.ybf{bottom:798.180000pt;}
.ya1{bottom:800.870667pt;}
.y6e{bottom:808.705333pt;}
.y2a{bottom:816.146667pt;}
.y3{bottom:817.434667pt;}
.y4c{bottom:822.793333pt;}
.yde{bottom:822.856000pt;}
.y6d{bottom:826.770667pt;}
.ybe{bottom:828.117333pt;}
.ya0{bottom:830.892000pt;}
.y29{bottom:843.606667pt;}
.y6c{bottom:844.836000pt;}
.y4b{bottom:852.814667pt;}
.ydd{bottom:852.877333pt;}
.y2{bottom:857.849333pt;}
.ybd{bottom:858.054667pt;}
.y9f{bottom:860.912000pt;}
.y6b{bottom:870.205333pt;}
.y4a{bottom:876.198667pt;}
.y49{bottom:879.732000pt;}
.y28{bottom:882.557333pt;}
.ydc{bottom:882.897333pt;}
.y47{bottom:885.764000pt;}
.y1{bottom:887.073333pt;}
.ybc{bottom:887.992000pt;}
.y9e{bottom:888.372000pt;}
.y6a{bottom:892.241333pt;}
.y48{bottom:892.930667pt;}
.y27{bottom:909.257333pt;}
.ydb{bottom:912.918667pt;}
.y46{bottom:917.928000pt;}
.y26{bottom:927.322667pt;}
.y25{bottom:945.388000pt;}
.h14{height:14.824448pt;}
.h13{height:21.168674pt;}
.h16{height:35.607302pt;}
.h12{height:35.840555pt;}
.h11{height:36.197888pt;}
.h3{height:37.459376pt;}
.h4{height:39.850400pt;}
.hf{height:41.018216pt;}
.h9{height:43.636400pt;}
.h6{height:45.464294pt;}
.h2{height:45.589163pt;}
.h8{height:47.820800pt;}
.h15{height:52.989733pt;}
.h10{height:52.995067pt;}
.he{height:55.901733pt;}
.h7{height:57.384800pt;}
.h1{height:64.454458pt;}
.h5{height:81.416709pt;}
.hb{height:82.996400pt;}
.hd{height:83.545733pt;}
.ha{height:92.355067pt;}
.hc{height:124.273941pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:96.000000pt;}
.x25{left:103.273333pt;}
.xa{left:113.777333pt;}
.x2{left:116.777333pt;}
.x9{left:118.581333pt;}
.x26{left:125.898667pt;}
.x7{left:132.364000pt;}
.x1e{left:133.941333pt;}
.x6{left:152.289333pt;}
.x21{left:165.098667pt;}
.x1{left:169.812000pt;}
.x1d{left:181.130667pt;}
.x24{left:230.888000pt;}
.x22{left:239.736000pt;}
.x20{left:263.252000pt;}
.xb{left:266.046667pt;}
.x1a{left:278.038667pt;}
.x3{left:279.153333pt;}
.x23{left:284.404000pt;}
.x1b{left:295.482667pt;}
.x1c{left:301.934667pt;}
.x12{left:319.944000pt;}
.x19{left:338.425333pt;}
.xc{left:341.958667pt;}
.x18{left:343.604000pt;}
.x4{left:347.412000pt;}
.x14{left:350.550667pt;}
.x16{left:353.610667pt;}
.x13{left:365.502667pt;}
.x5{left:378.776000pt;}
.x17{left:382.002667pt;}
.x11{left:383.744000pt;}
.x15{left:385.786667pt;}
.xd{left:388.553333pt;}
.x27{left:400.726667pt;}
.x10{left:404.364000pt;}
.xe{left:419.081333pt;}
.xf{left:423.777333pt;}
.x1f{left:433.430667pt;}
}




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