
    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_efcf1c8208659dd4458c4de0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.148000;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_970068746dcc4f9831d1afb9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_d9954acbca2b6a43d81ee550.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.187000;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_92c6124e5886fa0138c32449.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.200900;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_47e0cbbf79ee331a20d2841b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.193000;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_93c67d655e74f5560819f6bd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.165000;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_faf8721581dfdb13c75f5720.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.165000;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_64c4dbeaa9a6251804d971bd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.193000;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;}
.m10{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.247742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247742,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.247964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247964,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.247966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247966,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248002,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248048,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248142,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248414,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248448,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248453,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248637,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248843,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.248913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248913,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248973,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249098,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249152,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249329,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249429,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249479,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249502,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250289,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250776,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250891,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250980,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.251184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251184,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251186,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251282,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251289,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251307,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251353,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251516,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252127,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252211,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.981000px;}
.v1{vertical-align:21.967200px;}
.ls1f{letter-spacing:-5.400000px;}
.ls28{letter-spacing:-3.510000px;}
.ls18{letter-spacing:-3.432000px;}
.ls11{letter-spacing:-3.300000px;}
.lse{letter-spacing:-2.904000px;}
.ls17{letter-spacing:-1.620000px;}
.lsc{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.462000px;}
.ls23{letter-spacing:-0.399000px;}
.ls14{letter-spacing:-0.396000px;}
.ls1b{letter-spacing:-0.342000px;}
.ls8{letter-spacing:-0.330000px;}
.ls20{letter-spacing:-0.285000px;}
.lsf{letter-spacing:-0.270000px;}
.ls12{letter-spacing:-0.264000px;}
.ls22{letter-spacing:-0.228000px;}
.lsd{letter-spacing:-0.198000px;}
.ls25{letter-spacing:-0.171000px;}
.lsa{letter-spacing:-0.132000px;}
.ls26{letter-spacing:-0.114000px;}
.ls13{letter-spacing:-0.066000px;}
.ls21{letter-spacing:-0.057000px;}
.ls6{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.057000px;}
.ls4{letter-spacing:0.066000px;}
.ls29{letter-spacing:0.099693px;}
.ls1a{letter-spacing:0.132000px;}
.ls1e{letter-spacing:0.171000px;}
.ls15{letter-spacing:0.198000px;}
.ls27{letter-spacing:0.228000px;}
.ls3{letter-spacing:0.264000px;}
.ls2a{letter-spacing:0.270000px;}
.ls1d{letter-spacing:0.285000px;}
.ls16{letter-spacing:0.330000px;}
.ls0{letter-spacing:0.342000px;}
.ls10{letter-spacing:0.396000px;}
.ls2{letter-spacing:0.594000px;}
.ls7{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.720000px;}
.lsb{letter-spacing:1.080000px;}
.ls5{letter-spacing:1.350000px;}
.ls19{letter-spacing:1.890000px;}
.ls1c{letter-spacing:4.275000px;}
.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;}
}
.ws83{word-spacing:-14.688000px;}
.wsd9{word-spacing:-14.148000px;}
.ws1b{word-spacing:-14.124000px;}
.ws3{word-spacing:-13.926000px;}
.ws34{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.860000px;}
.ws6c{word-spacing:-13.794000px;}
.ws27{word-spacing:-13.728000px;}
.ws88{word-spacing:-13.662000px;}
.ws1{word-spacing:-13.530000px;}
.ws18{word-spacing:-13.464000px;}
.ws75{word-spacing:-13.398000px;}
.ws72{word-spacing:-13.332000px;}
.ws73{word-spacing:-13.068000px;}
.ws4{word-spacing:-12.870000px;}
.ws74{word-spacing:-12.804000px;}
.ws87{word-spacing:-12.798000px;}
.ws4a{word-spacing:-12.738000px;}
.ws8f{word-spacing:-12.312000px;}
.ws26{word-spacing:-12.258000px;}
.wsae{word-spacing:-12.255000px;}
.wsc2{word-spacing:-12.198000px;}
.ws94{word-spacing:-12.141000px;}
.wsac{word-spacing:-12.027000px;}
.ws8d{word-spacing:-11.970000px;}
.wsad{word-spacing:-11.913000px;}
.wsab{word-spacing:-11.856000px;}
.ws91{word-spacing:-11.742000px;}
.ws33{word-spacing:-11.685000px;}
.wsb0{word-spacing:-11.628000px;}
.ws92{word-spacing:-11.571000px;}
.ws90{word-spacing:-11.400000px;}
.ws93{word-spacing:-11.286000px;}
.ws65{word-spacing:-11.178000px;}
.wsaf{word-spacing:-11.172000px;}
.ws8e{word-spacing:-11.115000px;}
.wsc6{word-spacing:-10.830000px;}
.ws2{word-spacing:-8.080380px;}
.wsc5{word-spacing:-6.978510px;}
.ws85{word-spacing:-6.812355px;}
.wsc3{word-spacing:-6.579738px;}
.wsc4{word-spacing:-6.480045px;}
.ws37{word-spacing:-3.102000px;}
.ws97{word-spacing:-2.850000px;}
.ws12{word-spacing:-2.838000px;}
.ws11{word-spacing:-2.772000px;}
.ws1a{word-spacing:-2.706000px;}
.ws59{word-spacing:-2.574000px;}
.wsa7{word-spacing:-2.565000px;}
.ws51{word-spacing:-2.508000px;}
.wsa8{word-spacing:-2.451000px;}
.ws60{word-spacing:-2.442000px;}
.ws8{word-spacing:-2.394000px;}
.ws38{word-spacing:-2.376000px;}
.ws48{word-spacing:-2.310000px;}
.wsa9{word-spacing:-2.280000px;}
.ws7e{word-spacing:-2.244000px;}
.ws9d{word-spacing:-2.223000px;}
.ws9{word-spacing:-2.166000px;}
.wsc7{word-spacing:-1.995000px;}
.ws50{word-spacing:-1.980000px;}
.ws2d{word-spacing:-1.914000px;}
.ws86{word-spacing:-1.848000px;}
.wsc8{word-spacing:-1.824000px;}
.ws40{word-spacing:-1.782000px;}
.ws13{word-spacing:-1.716000px;}
.ws41{word-spacing:-1.650000px;}
.wsd5{word-spacing:-1.596000px;}
.ws4c{word-spacing:-1.584000px;}
.wsc{word-spacing:-1.539000px;}
.ws5d{word-spacing:-1.518000px;}
.wsba{word-spacing:-1.482000px;}
.ws89{word-spacing:-1.452000px;}
.ws3f{word-spacing:-1.386000px;}
.wse{word-spacing:-1.368000px;}
.ws24{word-spacing:-1.350000px;}
.ws2f{word-spacing:-1.320000px;}
.ws2e{word-spacing:-1.254000px;}
.wscc{word-spacing:-1.140000px;}
.ws66{word-spacing:-1.122000px;}
.wsb7{word-spacing:-1.083000px;}
.ws57{word-spacing:-1.056000px;}
.wsb8{word-spacing:-1.026000px;}
.ws1f{word-spacing:-0.990000px;}
.ws20{word-spacing:-0.924000px;}
.wsbe{word-spacing:-0.912000px;}
.ws14{word-spacing:-0.858000px;}
.wsbf{word-spacing:-0.855000px;}
.ws2c{word-spacing:-0.792000px;}
.ws95{word-spacing:-0.726000px;}
.ws10{word-spacing:-0.720000px;}
.wsb5{word-spacing:-0.684000px;}
.ws7b{word-spacing:-0.660000px;}
.wsb6{word-spacing:-0.627000px;}
.ws5a{word-spacing:-0.594000px;}
.ws9b{word-spacing:-0.570000px;}
.ws53{word-spacing:-0.528000px;}
.wsa{word-spacing:-0.513000px;}
.ws45{word-spacing:-0.462000px;}
.wsd4{word-spacing:-0.456000px;}
.wsd3{word-spacing:-0.399000px;}
.ws8b{word-spacing:-0.396000px;}
.wsd8{word-spacing:-0.342000px;}
.ws1e{word-spacing:-0.330000px;}
.wsa3{word-spacing:-0.285000px;}
.ws43{word-spacing:-0.264000px;}
.ws98{word-spacing:-0.228000px;}
.ws16{word-spacing:-0.198000px;}
.ws7{word-spacing:-0.171000px;}
.ws1c{word-spacing:-0.132000px;}
.wsd{word-spacing:-0.114000px;}
.ws5e{word-spacing:-0.066000px;}
.wsbb{word-spacing:-0.057000px;}
.ws5{word-spacing:0.000000px;}
.wscb{word-spacing:0.057000px;}
.ws52{word-spacing:0.066000px;}
.wsd6{word-spacing:0.114000px;}
.wscf{word-spacing:0.171000px;}
.ws6a{word-spacing:0.198000px;}
.ws99{word-spacing:0.228000px;}
.ws3b{word-spacing:0.264000px;}
.ws9a{word-spacing:0.285000px;}
.ws15{word-spacing:0.330000px;}
.wsca{word-spacing:0.342000px;}
.wsc9{word-spacing:0.399000px;}
.ws68{word-spacing:0.462000px;}
.ws64{word-spacing:0.660000px;}
.ws2b{word-spacing:0.726000px;}
.wsa0{word-spacing:0.741000px;}
.ws9f{word-spacing:0.798000px;}
.wsd0{word-spacing:0.855000px;}
.ws6f{word-spacing:0.858000px;}
.wsb4{word-spacing:0.912000px;}
.ws29{word-spacing:0.924000px;}
.wsb3{word-spacing:0.969000px;}
.ws58{word-spacing:0.990000px;}
.ws96{word-spacing:1.026000px;}
.ws7d{word-spacing:1.056000px;}
.ws9c{word-spacing:1.083000px;}
.ws70{word-spacing:1.122000px;}
.ws28{word-spacing:1.188000px;}
.wsb2{word-spacing:1.197000px;}
.ws5c{word-spacing:1.254000px;}
.wsb1{word-spacing:1.311000px;}
.ws3e{word-spacing:1.320000px;}
.wsb{word-spacing:1.368000px;}
.ws77{word-spacing:1.386000px;}
.wsc0{word-spacing:1.425000px;}
.ws79{word-spacing:1.452000px;}
.wsd7{word-spacing:1.482000px;}
.ws22{word-spacing:1.518000px;}
.ws23{word-spacing:1.584000px;}
.wsb9{word-spacing:1.596000px;}
.ws8a{word-spacing:1.650000px;}
.wsa5{word-spacing:1.653000px;}
.ws4f{word-spacing:1.716000px;}
.wsa4{word-spacing:1.767000px;}
.ws63{word-spacing:1.782000px;}
.wsa1{word-spacing:1.824000px;}
.ws42{word-spacing:1.848000px;}
.wsbd{word-spacing:1.881000px;}
.wsa2{word-spacing:1.938000px;}
.ws62{word-spacing:1.980000px;}
.wsbc{word-spacing:2.052000px;}
.ws2a{word-spacing:2.112000px;}
.wsd2{word-spacing:2.166000px;}
.ws1d{word-spacing:2.178000px;}
.ws39{word-spacing:2.244000px;}
.ws21{word-spacing:2.310000px;}
.wsd1{word-spacing:2.337000px;}
.ws61{word-spacing:2.376000px;}
.ws78{word-spacing:2.442000px;}
.ws4e{word-spacing:2.508000px;}
.ws6{word-spacing:2.565000px;}
.ws76{word-spacing:2.574000px;}
.ws49{word-spacing:2.640000px;}
.ws6b{word-spacing:2.706000px;}
.ws82{word-spacing:2.772000px;}
.ws5f{word-spacing:2.838000px;}
.ws30{word-spacing:2.904000px;}
.ws9e{word-spacing:3.021000px;}
.ws4b{word-spacing:3.036000px;}
.ws31{word-spacing:3.102000px;}
.ws67{word-spacing:3.168000px;}
.ws7a{word-spacing:3.234000px;}
.ws36{word-spacing:3.300000px;}
.wsce{word-spacing:3.306000px;}
.ws3d{word-spacing:3.366000px;}
.ws3a{word-spacing:3.432000px;}
.ws3c{word-spacing:3.498000px;}
.ws5b{word-spacing:3.564000px;}
.wscd{word-spacing:3.591000px;}
.ws7c{word-spacing:3.630000px;}
.wsaa{word-spacing:3.648000px;}
.ws81{word-spacing:3.696000px;}
.ws80{word-spacing:3.762000px;}
.ws56{word-spacing:3.828000px;}
.wsf{word-spacing:3.933000px;}
.ws47{word-spacing:3.960000px;}
.wsa6{word-spacing:3.990000px;}
.ws55{word-spacing:4.026000px;}
.ws35{word-spacing:4.092000px;}
.ws69{word-spacing:4.224000px;}
.ws6e{word-spacing:4.290000px;}
.ws4d{word-spacing:4.422000px;}
.ws44{word-spacing:4.488000px;}
.ws17{word-spacing:4.554000px;}
.ws71{word-spacing:4.620000px;}
.ws19{word-spacing:5.148000px;}
.wsda{word-spacing:1873.370400px;}
.ws25{word-spacing:1880.660400px;}
.ws46{word-spacing:1883.522400px;}
.ws54{word-spacing:1884.710400px;}
.ws6d{word-spacing:1884.926400px;}
.ws7f{word-spacing:1885.736400px;}
.ws32{word-spacing:1890.650400px;}
.ws84{word-spacing:1890.866400px;}
.wsc1{word-spacing:1899.506400px;}
.ws8c{word-spacing:1903.988400px;}
._11{margin-left:-2620.296000px;}
._e{margin-left:-2618.676000px;}
._16{margin-left:-2617.596000px;}
._17{margin-left:-18.063600px;}
._b{margin-left:-16.697400px;}
._14{margin-left:-15.283200px;}
._c{margin-left:-14.205000px;}
._10{margin-left:-12.619200px;}
._13{margin-left:-11.421000px;}
._15{margin-left:-10.044000px;}
._d{margin-left:-8.916000px;}
._4{margin-left:-7.410000px;}
._6{margin-left:-5.415000px;}
._0{margin-left:-3.570000px;}
._1{margin-left:-2.040000px;}
._2{margin-left:-1.020000px;}
._3{width:1.020000px;}
._a{width:2.172000px;}
._7{width:3.825000px;}
._5{width:4.980000px;}
._12{width:6.534211px;}
._8{width:11.120400px;}
._f{width:13.920000px;}
._9{width:19.407000px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:33.231000px;}
.fs6{font-size:38.478000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:89.716500px;}
.ya5{bottom:89.722050px;}
.yad{bottom:89.724750px;}
.y87{bottom:89.727600px;}
.ycb{bottom:89.878350px;}
.y29{bottom:90.795000px;}
.y42{bottom:91.648200px;}
.y5c{bottom:92.141550px;}
.y99{bottom:92.493600px;}
.yac{bottom:93.769200px;}
.yca{bottom:107.876100px;}
.y28{bottom:108.792750px;}
.y41{bottom:109.645950px;}
.y38{bottom:109.700700px;}
.y53{bottom:109.700850px;}
.ya4{bottom:109.703550px;}
.y25{bottom:109.706250px;}
.y86{bottom:109.709100px;}
.yf9{bottom:109.718100px;}
.y5b{bottom:110.139300px;}
.y98{bottom:110.493600px;}
.yab{bottom:111.769200px;}
.yc9{bottom:125.873850px;}
.y40{bottom:127.643700px;}
.y8f{bottom:129.685050px;}
.y24{bottom:129.687750px;}
.y85{bottom:129.690600px;}
.yf8{bottom:129.696600px;}
.yaa{bottom:129.769200px;}
.yc8{bottom:143.871600px;}
.y3f{bottom:145.641450px;}
.ya9{bottom:147.769200px;}
.y23{bottom:149.669250px;}
.y84{bottom:149.672100px;}
.yf7{bottom:149.675100px;}
.yc7{bottom:161.876100px;}
.y3e{bottom:163.639200px;}
.y37{bottom:169.653450px;}
.y22{bottom:169.653600px;}
.yc6{bottom:179.873850px;}
.y36{bottom:189.637800px;}
.y21{bottom:189.640500px;}
.yf6{bottom:189.643500px;}
.yc5{bottom:197.871600px;}
.y20{bottom:209.622000px;}
.ya3{bottom:209.627550px;}
.y83{bottom:209.633100px;}
.yc4{bottom:215.871600px;}
.ybc{bottom:228.830100px;}
.y35{bottom:229.606200px;}
.y1f{bottom:229.606350px;}
.ya2{bottom:229.609050px;}
.ye6{bottom:229.612050px;}
.y82{bottom:229.614600px;}
.yc3{bottom:233.873850px;}
.ybb{bottom:246.827850px;}
.y1e{bottom:249.590550px;}
.y81{bottom:249.596100px;}
.ye5{bottom:249.596400px;}
.y34{bottom:249.598800px;}
.yf5{bottom:249.607800px;}
.yc2{bottom:251.871600px;}
.yba{bottom:264.825600px;}
.y52{bottom:269.574900px;}
.y1d{bottom:269.577600px;}
.y33{bottom:269.580300px;}
.yf4{bottom:269.586300px;}
.yb9{bottom:282.825600px;}
.ya8{bottom:289.548150px;}
.y1c{bottom:289.559100px;}
.y32{bottom:289.561800px;}
.yf3{bottom:289.564800px;}
.yb8{bottom:300.842700px;}
.ya7{bottom:307.545900px;}
.y1b{bottom:309.543300px;}
.y51{bottom:309.546150px;}
.y80{bottom:309.548850px;}
.yb7{bottom:318.840450px;}
.ya6{bottom:325.543650px;}
.y31{bottom:329.527500px;}
.y1a{bottom:329.527650px;}
.y7f{bottom:329.530350px;}
.ye4{bottom:329.533350px;}
.yd6{bottom:329.556450px;}
.yb6{bottom:336.838200px;}
.y105{bottom:348.767550px;}
.y19{bottom:349.511850px;}
.ya1{bottom:349.514550px;}
.ye3{bottom:349.517550px;}
.yd5{bottom:349.534950px;}
.yb5{bottom:354.835950px;}
.y104{bottom:366.765300px;}
.y30{bottom:369.496050px;}
.y8e{bottom:369.498900px;}
.yf2{bottom:369.501900px;}
.y18{bottom:369.504450px;}
.yd4{bottom:369.513450px;}
.yb4{bottom:372.833700px;}
.y55{bottom:382.692750px;}
.y7e{bottom:389.480400px;}
.y17{bottom:389.485950px;}
.yd3{bottom:389.491950px;}
.yb3{bottom:390.831450px;}
.y54{bottom:400.690500px;}
.y8d{bottom:409.464600px;}
.y16{bottom:409.467450px;}
.yd2{bottom:409.470450px;}
.y2f{bottom:429.448800px;}
.y15{bottom:429.448950px;}
.y14{bottom:449.433150px;}
.y7d{bottom:449.438700px;}
.y2e{bottom:449.444100px;}
.ye2{bottom:449.444700px;}
.y8c{bottom:449.449650px;}
.y10a{bottom:456.898200px;}
.y13{bottom:469.417350px;}
.y7c{bottom:469.420200px;}
.ye1{bottom:469.423200px;}
.y2d{bottom:469.425600px;}
.yd1{bottom:469.428900px;}
.y8b{bottom:469.431150px;}
.y109{bottom:474.895950px;}
.y7b{bottom:489.401700px;}
.y2c{bottom:489.407100px;}
.yd0{bottom:489.407400px;}
.y8a{bottom:489.412650px;}
.y12{bottom:509.385900px;}
.y2b{bottom:509.388600px;}
.y89{bottom:509.394150px;}
.y2a{bottom:529.370100px;}
.ycf{bottom:529.375950px;}
.y7a{bottom:529.378350px;}
.ya0{bottom:549.354450px;}
.y79{bottom:549.359850px;}
.yf1{bottom:549.360150px;}
.y96{bottom:553.137000px;}
.y3d{bottom:562.040700px;}
.yce{bottom:569.338650px;}
.y78{bottom:569.341350px;}
.y9f{bottom:569.344200px;}
.y95{bottom:571.134750px;}
.y3a{bottom:572.539800px;}
.y3c{bottom:580.038450px;}
.y94{bottom:589.132500px;}
.y77{bottom:589.322850px;}
.y9e{bottom:589.325700px;}
.y39{bottom:590.537550px;}
.y3b{bottom:598.038450px;}
.y93{bottom:607.130250px;}
.y11{bottom:608.539200px;}
.y76{bottom:609.307200px;}
.y6c{bottom:609.309900px;}
.ycd{bottom:609.312900px;}
.yf0{bottom:609.324450px;}
.y92{bottom:625.128000px;}
.y10{bottom:626.539200px;}
.y6b{bottom:629.291400px;}
.yef{bottom:629.302950px;}
.y91{bottom:643.125750px;}
.yf{bottom:644.539200px;}
.y6a{bottom:649.275600px;}
.y9d{bottom:649.281150px;}
.yee{bottom:649.281450px;}
.y108{bottom:660.710100px;}
.y103{bottom:661.048350px;}
.y90{bottom:661.123500px;}
.y75{bottom:669.259950px;}
.y9c{bottom:669.262650px;}
.y69{bottom:669.265350px;}
.y107{bottom:678.707850px;}
.y102{bottom:679.046100px;}
.y74{bottom:689.244150px;}
.y68{bottom:689.246850px;}
.yb2{bottom:694.014450px;}
.y106{bottom:696.707850px;}
.y101{bottom:697.043850px;}
.ye{bottom:705.072450px;}
.y67{bottom:709.228350px;}
.ye0{bottom:709.234200px;}
.yed{bottom:709.263000px;}
.ycc{bottom:711.212700px;}
.yb1{bottom:712.012200px;}
.y100{bottom:715.041600px;}
.yd{bottom:723.070200px;}
.y66{bottom:729.212700px;}
.y97{bottom:729.215400px;}
.y9b{bottom:729.218250px;}
.yec{bottom:729.241500px;}
.yb0{bottom:730.009950px;}
.yff{bottom:733.039350px;}
.yc{bottom:741.067950px;}
.yaf{bottom:748.007700px;}
.y73{bottom:749.196900px;}
.y9a{bottom:749.199750px;}
.yc1{bottom:749.205150px;}
.y65{bottom:749.208000px;}
.yeb{bottom:749.220000px;}
.yb{bottom:759.065700px;}
.yae{bottom:766.005450px;}
.y72{bottom:769.181250px;}
.y50{bottom:769.183950px;}
.yc0{bottom:769.186650px;}
.y64{bottom:769.189500px;}
.yea{bottom:769.198500px;}
.ya{bottom:777.063450px;}
.y4f{bottom:789.165450px;}
.y71{bottom:789.168150px;}
.y63{bottom:789.171000px;}
.ye9{bottom:789.177000px;}
.y9{bottom:795.061200px;}
.y4e{bottom:809.149650px;}
.y62{bottom:809.152500px;}
.y5a{bottom:809.155200px;}
.ye8{bottom:809.155500px;}
.y8{bottom:813.058950px;}
.y4d{bottom:829.134000px;}
.y59{bottom:829.136700px;}
.y61{bottom:829.142100px;}
.ydf{bottom:829.156950px;}
.y7{bottom:831.058950px;}
.y6{bottom:849.061200px;}
.y4c{bottom:849.118200px;}
.y60{bottom:849.123600px;}
.yde{bottom:849.135450px;}
.y5{bottom:867.058950px;}
.y4b{bottom:869.102400px;}
.y5f{bottom:869.105100px;}
.y70{bottom:869.107950px;}
.ydd{bottom:869.113950px;}
.yfe{bottom:869.131200px;}
.y4{bottom:885.058950px;}
.y58{bottom:889.086600px;}
.y4a{bottom:889.089450px;}
.ydc{bottom:889.092450px;}
.yfd{bottom:889.109700px;}
.y57{bottom:909.070950px;}
.y49{bottom:909.073650px;}
.y6f{bottom:909.081900px;}
.yfc{bottom:909.088200px;}
.y48{bottom:929.055150px;}
.y88{bottom:929.057850px;}
.ydb{bottom:929.060850px;}
.y6e{bottom:929.063400px;}
.yfb{bottom:929.066700px;}
.y47{bottom:949.039350px;}
.y6d{bottom:949.044900px;}
.yfa{bottom:949.045200px;}
.ybf{bottom:949.047600px;}
.yda{bottom:949.062450px;}
.y3{bottom:954.082650px;}
.y46{bottom:969.023700px;}
.y56{bottom:969.026400px;}
.ybe{bottom:969.029100px;}
.ye7{bottom:969.029400px;}
.yd9{bottom:969.040950px;}
.y45{bottom:989.007900px;}
.ybd{bottom:989.010600px;}
.y5e{bottom:989.013450px;}
.yd8{bottom:989.019450px;}
.y2{bottom:997.585350px;}
.y44{bottom:1008.992100px;}
.y5d{bottom:1008.994950px;}
.yd7{bottom:1008.997950px;}
.y1{bottom:1026.094350px;}
.y43{bottom:1028.976450px;}
.y27{bottom:1082.225850px;}
.h9{height:50.868000px;}
.hd{height:51.390600px;}
.hc{height:51.391200px;}
.h5{height:51.414000px;}
.ha{height:52.611000px;}
.h4{height:55.560000px;}
.h7{height:59.532000px;}
.hb{height:60.906600px;}
.h8{height:60.918000px;}
.h6{height:66.672000px;}
.h3{height:73.476000px;}
.h2{height:94.452000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x10{left:67.684500px;}
.x3{left:72.283500px;}
.x7{left:76.188300px;}
.x6{left:80.030400px;}
.x1{left:81.037950px;}
.x15{left:88.944450px;}
.x4{left:94.163250px;}
.xd{left:97.662600px;}
.x16{left:101.556900px;}
.x8{left:102.795450px;}
.xc{left:105.377700px;}
.x2{left:106.695450px;}
.x11{left:359.329650px;}
.x12{left:380.596350px;}
.x9{left:452.874000px;}
.xe{left:462.794250px;}
.xa{left:473.978250px;}
.xf{left:483.898500px;}
.x13{left:506.751600px;}
.x14{left:527.613600px;}
.x18{left:716.393700px;}
.x17{left:719.026500px;}
.xb{left:720.241200px;}
.x5{left:723.751350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.872000pt;}
.v1{vertical-align:19.526400pt;}
.ls1f{letter-spacing:-4.800000pt;}
.ls28{letter-spacing:-3.120000pt;}
.ls18{letter-spacing:-3.050667pt;}
.ls11{letter-spacing:-2.933333pt;}
.lse{letter-spacing:-2.581333pt;}
.ls17{letter-spacing:-1.440000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.410667pt;}
.ls23{letter-spacing:-0.354667pt;}
.ls14{letter-spacing:-0.352000pt;}
.ls1b{letter-spacing:-0.304000pt;}
.ls8{letter-spacing:-0.293333pt;}
.ls20{letter-spacing:-0.253333pt;}
.lsf{letter-spacing:-0.240000pt;}
.ls12{letter-spacing:-0.234667pt;}
.ls22{letter-spacing:-0.202667pt;}
.lsd{letter-spacing:-0.176000pt;}
.ls25{letter-spacing:-0.152000pt;}
.lsa{letter-spacing:-0.117333pt;}
.ls26{letter-spacing:-0.101333pt;}
.ls13{letter-spacing:-0.058667pt;}
.ls21{letter-spacing:-0.050667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.050667pt;}
.ls4{letter-spacing:0.058667pt;}
.ls29{letter-spacing:0.088616pt;}
.ls1a{letter-spacing:0.117333pt;}
.ls1e{letter-spacing:0.152000pt;}
.ls15{letter-spacing:0.176000pt;}
.ls27{letter-spacing:0.202667pt;}
.ls3{letter-spacing:0.234667pt;}
.ls2a{letter-spacing:0.240000pt;}
.ls1d{letter-spacing:0.253333pt;}
.ls16{letter-spacing:0.293333pt;}
.ls0{letter-spacing:0.304000pt;}
.ls10{letter-spacing:0.352000pt;}
.ls2{letter-spacing:0.528000pt;}
.ls7{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.960000pt;}
.ls5{letter-spacing:1.200000pt;}
.ls19{letter-spacing:1.680000pt;}
.ls1c{letter-spacing:3.800000pt;}
.ws83{word-spacing:-13.056000pt;}
.wsd9{word-spacing:-12.576000pt;}
.ws1b{word-spacing:-12.554667pt;}
.ws3{word-spacing:-12.378667pt;}
.ws34{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws6c{word-spacing:-12.261333pt;}
.ws27{word-spacing:-12.202667pt;}
.ws88{word-spacing:-12.144000pt;}
.ws1{word-spacing:-12.026667pt;}
.ws18{word-spacing:-11.968000pt;}
.ws75{word-spacing:-11.909333pt;}
.ws72{word-spacing:-11.850667pt;}
.ws73{word-spacing:-11.616000pt;}
.ws4{word-spacing:-11.440000pt;}
.ws74{word-spacing:-11.381333pt;}
.ws87{word-spacing:-11.376000pt;}
.ws4a{word-spacing:-11.322667pt;}
.ws8f{word-spacing:-10.944000pt;}
.ws26{word-spacing:-10.896000pt;}
.wsae{word-spacing:-10.893333pt;}
.wsc2{word-spacing:-10.842667pt;}
.ws94{word-spacing:-10.792000pt;}
.wsac{word-spacing:-10.690667pt;}
.ws8d{word-spacing:-10.640000pt;}
.wsad{word-spacing:-10.589333pt;}
.wsab{word-spacing:-10.538667pt;}
.ws91{word-spacing:-10.437333pt;}
.ws33{word-spacing:-10.386667pt;}
.wsb0{word-spacing:-10.336000pt;}
.ws92{word-spacing:-10.285333pt;}
.ws90{word-spacing:-10.133333pt;}
.ws93{word-spacing:-10.032000pt;}
.ws65{word-spacing:-9.936000pt;}
.wsaf{word-spacing:-9.930667pt;}
.ws8e{word-spacing:-9.880000pt;}
.wsc6{word-spacing:-9.626667pt;}
.ws2{word-spacing:-7.182560pt;}
.wsc5{word-spacing:-6.203120pt;}
.ws85{word-spacing:-6.055427pt;}
.wsc3{word-spacing:-5.848656pt;}
.wsc4{word-spacing:-5.760040pt;}
.ws37{word-spacing:-2.757333pt;}
.ws97{word-spacing:-2.533333pt;}
.ws12{word-spacing:-2.522667pt;}
.ws11{word-spacing:-2.464000pt;}
.ws1a{word-spacing:-2.405333pt;}
.ws59{word-spacing:-2.288000pt;}
.wsa7{word-spacing:-2.280000pt;}
.ws51{word-spacing:-2.229333pt;}
.wsa8{word-spacing:-2.178667pt;}
.ws60{word-spacing:-2.170667pt;}
.ws8{word-spacing:-2.128000pt;}
.ws38{word-spacing:-2.112000pt;}
.ws48{word-spacing:-2.053333pt;}
.wsa9{word-spacing:-2.026667pt;}
.ws7e{word-spacing:-1.994667pt;}
.ws9d{word-spacing:-1.976000pt;}
.ws9{word-spacing:-1.925333pt;}
.wsc7{word-spacing:-1.773333pt;}
.ws50{word-spacing:-1.760000pt;}
.ws2d{word-spacing:-1.701333pt;}
.ws86{word-spacing:-1.642667pt;}
.wsc8{word-spacing:-1.621333pt;}
.ws40{word-spacing:-1.584000pt;}
.ws13{word-spacing:-1.525333pt;}
.ws41{word-spacing:-1.466667pt;}
.wsd5{word-spacing:-1.418667pt;}
.ws4c{word-spacing:-1.408000pt;}
.wsc{word-spacing:-1.368000pt;}
.ws5d{word-spacing:-1.349333pt;}
.wsba{word-spacing:-1.317333pt;}
.ws89{word-spacing:-1.290667pt;}
.ws3f{word-spacing:-1.232000pt;}
.wse{word-spacing:-1.216000pt;}
.ws24{word-spacing:-1.200000pt;}
.ws2f{word-spacing:-1.173333pt;}
.ws2e{word-spacing:-1.114667pt;}
.wscc{word-spacing:-1.013333pt;}
.ws66{word-spacing:-0.997333pt;}
.wsb7{word-spacing:-0.962667pt;}
.ws57{word-spacing:-0.938667pt;}
.wsb8{word-spacing:-0.912000pt;}
.ws1f{word-spacing:-0.880000pt;}
.ws20{word-spacing:-0.821333pt;}
.wsbe{word-spacing:-0.810667pt;}
.ws14{word-spacing:-0.762667pt;}
.wsbf{word-spacing:-0.760000pt;}
.ws2c{word-spacing:-0.704000pt;}
.ws95{word-spacing:-0.645333pt;}
.ws10{word-spacing:-0.640000pt;}
.wsb5{word-spacing:-0.608000pt;}
.ws7b{word-spacing:-0.586667pt;}
.wsb6{word-spacing:-0.557333pt;}
.ws5a{word-spacing:-0.528000pt;}
.ws9b{word-spacing:-0.506667pt;}
.ws53{word-spacing:-0.469333pt;}
.wsa{word-spacing:-0.456000pt;}
.ws45{word-spacing:-0.410667pt;}
.wsd4{word-spacing:-0.405333pt;}
.wsd3{word-spacing:-0.354667pt;}
.ws8b{word-spacing:-0.352000pt;}
.wsd8{word-spacing:-0.304000pt;}
.ws1e{word-spacing:-0.293333pt;}
.wsa3{word-spacing:-0.253333pt;}
.ws43{word-spacing:-0.234667pt;}
.ws98{word-spacing:-0.202667pt;}
.ws16{word-spacing:-0.176000pt;}
.ws7{word-spacing:-0.152000pt;}
.ws1c{word-spacing:-0.117333pt;}
.wsd{word-spacing:-0.101333pt;}
.ws5e{word-spacing:-0.058667pt;}
.wsbb{word-spacing:-0.050667pt;}
.ws5{word-spacing:0.000000pt;}
.wscb{word-spacing:0.050667pt;}
.ws52{word-spacing:0.058667pt;}
.wsd6{word-spacing:0.101333pt;}
.wscf{word-spacing:0.152000pt;}
.ws6a{word-spacing:0.176000pt;}
.ws99{word-spacing:0.202667pt;}
.ws3b{word-spacing:0.234667pt;}
.ws9a{word-spacing:0.253333pt;}
.ws15{word-spacing:0.293333pt;}
.wsca{word-spacing:0.304000pt;}
.wsc9{word-spacing:0.354667pt;}
.ws68{word-spacing:0.410667pt;}
.ws64{word-spacing:0.586667pt;}
.ws2b{word-spacing:0.645333pt;}
.wsa0{word-spacing:0.658667pt;}
.ws9f{word-spacing:0.709333pt;}
.wsd0{word-spacing:0.760000pt;}
.ws6f{word-spacing:0.762667pt;}
.wsb4{word-spacing:0.810667pt;}
.ws29{word-spacing:0.821333pt;}
.wsb3{word-spacing:0.861333pt;}
.ws58{word-spacing:0.880000pt;}
.ws96{word-spacing:0.912000pt;}
.ws7d{word-spacing:0.938667pt;}
.ws9c{word-spacing:0.962667pt;}
.ws70{word-spacing:0.997333pt;}
.ws28{word-spacing:1.056000pt;}
.wsb2{word-spacing:1.064000pt;}
.ws5c{word-spacing:1.114667pt;}
.wsb1{word-spacing:1.165333pt;}
.ws3e{word-spacing:1.173333pt;}
.wsb{word-spacing:1.216000pt;}
.ws77{word-spacing:1.232000pt;}
.wsc0{word-spacing:1.266667pt;}
.ws79{word-spacing:1.290667pt;}
.wsd7{word-spacing:1.317333pt;}
.ws22{word-spacing:1.349333pt;}
.ws23{word-spacing:1.408000pt;}
.wsb9{word-spacing:1.418667pt;}
.ws8a{word-spacing:1.466667pt;}
.wsa5{word-spacing:1.469333pt;}
.ws4f{word-spacing:1.525333pt;}
.wsa4{word-spacing:1.570667pt;}
.ws63{word-spacing:1.584000pt;}
.wsa1{word-spacing:1.621333pt;}
.ws42{word-spacing:1.642667pt;}
.wsbd{word-spacing:1.672000pt;}
.wsa2{word-spacing:1.722667pt;}
.ws62{word-spacing:1.760000pt;}
.wsbc{word-spacing:1.824000pt;}
.ws2a{word-spacing:1.877333pt;}
.wsd2{word-spacing:1.925333pt;}
.ws1d{word-spacing:1.936000pt;}
.ws39{word-spacing:1.994667pt;}
.ws21{word-spacing:2.053333pt;}
.wsd1{word-spacing:2.077333pt;}
.ws61{word-spacing:2.112000pt;}
.ws78{word-spacing:2.170667pt;}
.ws4e{word-spacing:2.229333pt;}
.ws6{word-spacing:2.280000pt;}
.ws76{word-spacing:2.288000pt;}
.ws49{word-spacing:2.346667pt;}
.ws6b{word-spacing:2.405333pt;}
.ws82{word-spacing:2.464000pt;}
.ws5f{word-spacing:2.522667pt;}
.ws30{word-spacing:2.581333pt;}
.ws9e{word-spacing:2.685333pt;}
.ws4b{word-spacing:2.698667pt;}
.ws31{word-spacing:2.757333pt;}
.ws67{word-spacing:2.816000pt;}
.ws7a{word-spacing:2.874667pt;}
.ws36{word-spacing:2.933333pt;}
.wsce{word-spacing:2.938667pt;}
.ws3d{word-spacing:2.992000pt;}
.ws3a{word-spacing:3.050667pt;}
.ws3c{word-spacing:3.109333pt;}
.ws5b{word-spacing:3.168000pt;}
.wscd{word-spacing:3.192000pt;}
.ws7c{word-spacing:3.226667pt;}
.wsaa{word-spacing:3.242667pt;}
.ws81{word-spacing:3.285333pt;}
.ws80{word-spacing:3.344000pt;}
.ws56{word-spacing:3.402667pt;}
.wsf{word-spacing:3.496000pt;}
.ws47{word-spacing:3.520000pt;}
.wsa6{word-spacing:3.546667pt;}
.ws55{word-spacing:3.578667pt;}
.ws35{word-spacing:3.637333pt;}
.ws69{word-spacing:3.754667pt;}
.ws6e{word-spacing:3.813333pt;}
.ws4d{word-spacing:3.930667pt;}
.ws44{word-spacing:3.989333pt;}
.ws17{word-spacing:4.048000pt;}
.ws71{word-spacing:4.106667pt;}
.ws19{word-spacing:4.576000pt;}
.wsda{word-spacing:1665.218133pt;}
.ws25{word-spacing:1671.698133pt;}
.ws46{word-spacing:1674.242133pt;}
.ws54{word-spacing:1675.298133pt;}
.ws6d{word-spacing:1675.490133pt;}
.ws7f{word-spacing:1676.210133pt;}
.ws32{word-spacing:1680.578133pt;}
.ws84{word-spacing:1680.770133pt;}
.wsc1{word-spacing:1688.450133pt;}
.ws8c{word-spacing:1692.434133pt;}
._11{margin-left:-2329.152000pt;}
._e{margin-left:-2327.712000pt;}
._16{margin-left:-2326.752000pt;}
._17{margin-left:-16.056533pt;}
._b{margin-left:-14.842133pt;}
._14{margin-left:-13.585067pt;}
._c{margin-left:-12.626667pt;}
._10{margin-left:-11.217067pt;}
._13{margin-left:-10.152000pt;}
._15{margin-left:-8.928000pt;}
._d{margin-left:-7.925333pt;}
._4{margin-left:-6.586667pt;}
._6{margin-left:-4.813333pt;}
._0{margin-left:-3.173333pt;}
._1{margin-left:-1.813333pt;}
._2{margin-left:-0.906667pt;}
._3{width:0.906667pt;}
._a{width:1.930667pt;}
._7{width:3.400000pt;}
._5{width:4.426667pt;}
._12{width:5.808188pt;}
._8{width:9.884800pt;}
._f{width:12.373333pt;}
._9{width:17.250667pt;}
.fs8{font-size:29.538667pt;}
.fs6{font-size:34.202667pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:79.748000pt;}
.ya5{bottom:79.752933pt;}
.yad{bottom:79.755333pt;}
.y87{bottom:79.757867pt;}
.ycb{bottom:79.891867pt;}
.y29{bottom:80.706667pt;}
.y42{bottom:81.465067pt;}
.y5c{bottom:81.903600pt;}
.y99{bottom:82.216533pt;}
.yac{bottom:83.350400pt;}
.yca{bottom:95.889867pt;}
.y28{bottom:96.704667pt;}
.y41{bottom:97.463067pt;}
.y38{bottom:97.511733pt;}
.y53{bottom:97.511867pt;}
.ya4{bottom:97.514267pt;}
.y25{bottom:97.516667pt;}
.y86{bottom:97.519200pt;}
.yf9{bottom:97.527200pt;}
.y5b{bottom:97.901600pt;}
.y98{bottom:98.216533pt;}
.yab{bottom:99.350400pt;}
.yc9{bottom:111.887867pt;}
.y40{bottom:113.461067pt;}
.y8f{bottom:115.275600pt;}
.y24{bottom:115.278000pt;}
.y85{bottom:115.280533pt;}
.yf8{bottom:115.285867pt;}
.yaa{bottom:115.350400pt;}
.yc8{bottom:127.885867pt;}
.y3f{bottom:129.459067pt;}
.ya9{bottom:131.350400pt;}
.y23{bottom:133.039333pt;}
.y84{bottom:133.041867pt;}
.yf7{bottom:133.044533pt;}
.yc7{bottom:143.889867pt;}
.y3e{bottom:145.457067pt;}
.y37{bottom:150.803067pt;}
.y22{bottom:150.803200pt;}
.yc6{bottom:159.887867pt;}
.y36{bottom:168.566933pt;}
.y21{bottom:168.569333pt;}
.yf6{bottom:168.572000pt;}
.yc5{bottom:175.885867pt;}
.y20{bottom:186.330667pt;}
.ya3{bottom:186.335600pt;}
.y83{bottom:186.340533pt;}
.yc4{bottom:191.885867pt;}
.ybc{bottom:203.404533pt;}
.y35{bottom:204.094400pt;}
.y1f{bottom:204.094533pt;}
.ya2{bottom:204.096933pt;}
.ye6{bottom:204.099600pt;}
.y82{bottom:204.101867pt;}
.yc3{bottom:207.887867pt;}
.ybb{bottom:219.402533pt;}
.y1e{bottom:221.858267pt;}
.y81{bottom:221.863200pt;}
.ye5{bottom:221.863467pt;}
.y34{bottom:221.865600pt;}
.yf5{bottom:221.873600pt;}
.yc2{bottom:223.885867pt;}
.yba{bottom:235.400533pt;}
.y52{bottom:239.622133pt;}
.y1d{bottom:239.624533pt;}
.y33{bottom:239.626933pt;}
.yf4{bottom:239.632267pt;}
.yb9{bottom:251.400533pt;}
.ya8{bottom:257.376133pt;}
.y1c{bottom:257.385867pt;}
.y32{bottom:257.388267pt;}
.yf3{bottom:257.390933pt;}
.yb8{bottom:267.415733pt;}
.ya7{bottom:273.374133pt;}
.y1b{bottom:275.149600pt;}
.y51{bottom:275.152133pt;}
.y80{bottom:275.154533pt;}
.yb7{bottom:283.413733pt;}
.ya6{bottom:289.372133pt;}
.y31{bottom:292.913333pt;}
.y1a{bottom:292.913467pt;}
.y7f{bottom:292.915867pt;}
.ye4{bottom:292.918533pt;}
.yd6{bottom:292.939067pt;}
.yb6{bottom:299.411733pt;}
.y105{bottom:310.015600pt;}
.y19{bottom:310.677200pt;}
.ya1{bottom:310.679600pt;}
.ye3{bottom:310.682267pt;}
.yd5{bottom:310.697733pt;}
.yb5{bottom:315.409733pt;}
.y104{bottom:326.013600pt;}
.y30{bottom:328.440933pt;}
.y8e{bottom:328.443467pt;}
.yf2{bottom:328.446133pt;}
.y18{bottom:328.448400pt;}
.yd4{bottom:328.456400pt;}
.yb4{bottom:331.407733pt;}
.y55{bottom:340.171333pt;}
.y7e{bottom:346.204800pt;}
.y17{bottom:346.209733pt;}
.yd3{bottom:346.215067pt;}
.yb3{bottom:347.405733pt;}
.y54{bottom:356.169333pt;}
.y8d{bottom:363.968533pt;}
.y16{bottom:363.971067pt;}
.yd2{bottom:363.973733pt;}
.y2f{bottom:381.732267pt;}
.y15{bottom:381.732400pt;}
.y14{bottom:399.496133pt;}
.y7d{bottom:399.501067pt;}
.y2e{bottom:399.505867pt;}
.ye2{bottom:399.506400pt;}
.y8c{bottom:399.510800pt;}
.y10a{bottom:406.131733pt;}
.y13{bottom:417.259867pt;}
.y7c{bottom:417.262400pt;}
.ye1{bottom:417.265067pt;}
.y2d{bottom:417.267200pt;}
.yd1{bottom:417.270133pt;}
.y8b{bottom:417.272133pt;}
.y109{bottom:422.129733pt;}
.y7b{bottom:435.023733pt;}
.y2c{bottom:435.028533pt;}
.yd0{bottom:435.028800pt;}
.y8a{bottom:435.033467pt;}
.y12{bottom:452.787467pt;}
.y2b{bottom:452.789867pt;}
.y89{bottom:452.794800pt;}
.y2a{bottom:470.551200pt;}
.ycf{bottom:470.556400pt;}
.y7a{bottom:470.558533pt;}
.ya0{bottom:488.315067pt;}
.y79{bottom:488.319867pt;}
.yf1{bottom:488.320133pt;}
.y96{bottom:491.677333pt;}
.y3d{bottom:499.591733pt;}
.yce{bottom:506.078800pt;}
.y78{bottom:506.081200pt;}
.y9f{bottom:506.083733pt;}
.y95{bottom:507.675333pt;}
.y3a{bottom:508.924267pt;}
.y3c{bottom:515.589733pt;}
.y94{bottom:523.673333pt;}
.y77{bottom:523.842533pt;}
.y9e{bottom:523.845067pt;}
.y39{bottom:524.922267pt;}
.y3b{bottom:531.589733pt;}
.y93{bottom:539.671333pt;}
.y11{bottom:540.923733pt;}
.y76{bottom:541.606400pt;}
.y6c{bottom:541.608800pt;}
.ycd{bottom:541.611467pt;}
.yf0{bottom:541.621733pt;}
.y92{bottom:555.669333pt;}
.y10{bottom:556.923733pt;}
.y6b{bottom:559.370133pt;}
.yef{bottom:559.380400pt;}
.y91{bottom:571.667333pt;}
.yf{bottom:572.923733pt;}
.y6a{bottom:577.133867pt;}
.y9d{bottom:577.138800pt;}
.yee{bottom:577.139067pt;}
.y108{bottom:587.297867pt;}
.y103{bottom:587.598533pt;}
.y90{bottom:587.665333pt;}
.y75{bottom:594.897733pt;}
.y9c{bottom:594.900133pt;}
.y69{bottom:594.902533pt;}
.y107{bottom:603.295867pt;}
.y102{bottom:603.596533pt;}
.y74{bottom:612.661467pt;}
.y68{bottom:612.663867pt;}
.yb2{bottom:616.901733pt;}
.y106{bottom:619.295867pt;}
.y101{bottom:619.594533pt;}
.ye{bottom:626.731067pt;}
.y67{bottom:630.425200pt;}
.ye0{bottom:630.430400pt;}
.yed{bottom:630.456000pt;}
.ycc{bottom:632.189067pt;}
.yb1{bottom:632.899733pt;}
.y100{bottom:635.592533pt;}
.yd{bottom:642.729067pt;}
.y66{bottom:648.189067pt;}
.y97{bottom:648.191467pt;}
.y9b{bottom:648.194000pt;}
.yec{bottom:648.214667pt;}
.yb0{bottom:648.897733pt;}
.yff{bottom:651.590533pt;}
.yc{bottom:658.727067pt;}
.yaf{bottom:664.895733pt;}
.y73{bottom:665.952800pt;}
.y9a{bottom:665.955333pt;}
.yc1{bottom:665.960133pt;}
.y65{bottom:665.962667pt;}
.yeb{bottom:665.973333pt;}
.yb{bottom:674.725067pt;}
.yae{bottom:680.893733pt;}
.y72{bottom:683.716667pt;}
.y50{bottom:683.719067pt;}
.yc0{bottom:683.721467pt;}
.y64{bottom:683.724000pt;}
.yea{bottom:683.732000pt;}
.ya{bottom:690.723067pt;}
.y4f{bottom:701.480400pt;}
.y71{bottom:701.482800pt;}
.y63{bottom:701.485333pt;}
.ye9{bottom:701.490667pt;}
.y9{bottom:706.721067pt;}
.y4e{bottom:719.244133pt;}
.y62{bottom:719.246667pt;}
.y5a{bottom:719.249067pt;}
.ye8{bottom:719.249333pt;}
.y8{bottom:722.719067pt;}
.y4d{bottom:737.008000pt;}
.y59{bottom:737.010400pt;}
.y61{bottom:737.015200pt;}
.ydf{bottom:737.028400pt;}
.y7{bottom:738.719067pt;}
.y6{bottom:754.721067pt;}
.y4c{bottom:754.771733pt;}
.y60{bottom:754.776533pt;}
.yde{bottom:754.787067pt;}
.y5{bottom:770.719067pt;}
.y4b{bottom:772.535467pt;}
.y5f{bottom:772.537867pt;}
.y70{bottom:772.540400pt;}
.ydd{bottom:772.545733pt;}
.yfe{bottom:772.561067pt;}
.y4{bottom:786.719067pt;}
.y58{bottom:790.299200pt;}
.y4a{bottom:790.301733pt;}
.ydc{bottom:790.304400pt;}
.yfd{bottom:790.319733pt;}
.y57{bottom:808.063067pt;}
.y49{bottom:808.065467pt;}
.y6f{bottom:808.072800pt;}
.yfc{bottom:808.078400pt;}
.y48{bottom:825.826800pt;}
.y88{bottom:825.829200pt;}
.ydb{bottom:825.831867pt;}
.y6e{bottom:825.834133pt;}
.yfb{bottom:825.837067pt;}
.y47{bottom:843.590533pt;}
.y6d{bottom:843.595467pt;}
.yfa{bottom:843.595733pt;}
.ybf{bottom:843.597867pt;}
.yda{bottom:843.611067pt;}
.y3{bottom:848.073467pt;}
.y46{bottom:861.354400pt;}
.y56{bottom:861.356800pt;}
.ybe{bottom:861.359200pt;}
.ye7{bottom:861.359467pt;}
.yd9{bottom:861.369733pt;}
.y45{bottom:879.118133pt;}
.ybd{bottom:879.120533pt;}
.y5e{bottom:879.123067pt;}
.yd8{bottom:879.128400pt;}
.y2{bottom:886.742533pt;}
.y44{bottom:896.881867pt;}
.y5d{bottom:896.884400pt;}
.yd7{bottom:896.887067pt;}
.y1{bottom:912.083867pt;}
.y43{bottom:914.645733pt;}
.y27{bottom:961.978533pt;}
.h9{height:45.216000pt;}
.hd{height:45.680533pt;}
.hc{height:45.681067pt;}
.h5{height:45.701333pt;}
.ha{height:46.765333pt;}
.h4{height:49.386667pt;}
.h7{height:52.917333pt;}
.hb{height:54.139200pt;}
.h8{height:54.149333pt;}
.h6{height:59.264000pt;}
.h3{height:65.312000pt;}
.h2{height:83.957333pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x10{left:60.164000pt;}
.x3{left:64.252000pt;}
.x7{left:67.722933pt;}
.x6{left:71.138133pt;}
.x1{left:72.033733pt;}
.x15{left:79.061733pt;}
.x4{left:83.700667pt;}
.xd{left:86.811200pt;}
.x16{left:90.272800pt;}
.x8{left:91.373733pt;}
.xc{left:93.669067pt;}
.x2{left:94.840400pt;}
.x11{left:319.404133pt;}
.x12{left:338.307867pt;}
.x9{left:402.554667pt;}
.xe{left:411.372667pt;}
.xa{left:421.314000pt;}
.xf{left:430.132000pt;}
.x13{left:450.445867pt;}
.x14{left:468.989867pt;}
.x18{left:636.794400pt;}
.x17{left:639.134667pt;}
.xb{left:640.214400pt;}
.x5{left:643.334533pt;}
}




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