
    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_79b6077c2c052c52db136687.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_b7995059b7a60c9664687f82.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_0808296c6ef7325309350d44.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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_17f0711d2cc0198c7e2f46cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_e4fea1c736fa97005da81f01.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.592000;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;}
.m5{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.247934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247934,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);}
.m2{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.720000px;}
.ls29{letter-spacing:-6.402000px;}
.ls3e{letter-spacing:-5.856000px;}
.ls40{letter-spacing:-5.712000px;}
.ls37{letter-spacing:-4.428600px;}
.ls35{letter-spacing:-4.092000px;}
.ls2c{letter-spacing:-3.550800px;}
.ls25{letter-spacing:-3.220800px;}
.ls26{letter-spacing:-2.831400px;}
.ls3b{letter-spacing:-2.475000px;}
.ls31{letter-spacing:-2.118600px;}
.ls3c{letter-spacing:-1.968000px;}
.ls32{letter-spacing:-1.848000px;}
.ls68{letter-spacing:-1.782000px;}
.ls66{letter-spacing:-1.584000px;}
.ls8e{letter-spacing:-1.560000px;}
.ls61{letter-spacing:-1.518000px;}
.ls5f{letter-spacing:-1.452000px;}
.ls2f{letter-spacing:-1.386000px;}
.ls43{letter-spacing:-1.368000px;}
.ls22{letter-spacing:-1.320000px;}
.ls67{letter-spacing:-1.254000px;}
.ls2d{letter-spacing:-1.240800px;}
.ls73{letter-spacing:-1.200000px;}
.ls69{letter-spacing:-1.188000px;}
.ls3a{letter-spacing:-1.181400px;}
.ls8d{letter-spacing:-1.170000px;}
.ls90{letter-spacing:-1.140000px;}
.ls28{letter-spacing:-1.128600px;}
.ls8f{letter-spacing:-1.125000px;}
.ls59{letter-spacing:-1.122000px;}
.ls34{letter-spacing:-1.056000px;}
.ls8b{letter-spacing:-1.035000px;}
.ls8c{letter-spacing:-1.020000px;}
.ls30{letter-spacing:-0.990000px;}
.ls6a{letter-spacing:-0.972000px;}
.ls60{letter-spacing:-0.924000px;}
.ls91{letter-spacing:-0.900000px;}
.ls70{letter-spacing:-0.864000px;}
.ls39{letter-spacing:-0.858000px;}
.lsc{letter-spacing:-0.855000px;}
.ls95{letter-spacing:-0.840000px;}
.lsd{letter-spacing:-0.811680px;}
.ls5c{letter-spacing:-0.810000px;}
.ls23{letter-spacing:-0.792000px;}
.ls96{letter-spacing:-0.780000px;}
.lse{letter-spacing:-0.768000px;}
.ls99{letter-spacing:-0.765000px;}
.lsb{letter-spacing:-0.741000px;}
.ls24{letter-spacing:-0.726000px;}
.ls9b{letter-spacing:-0.720000px;}
.ls78{letter-spacing:-0.702000px;}
.lsa{letter-spacing:-0.684000px;}
.ls42{letter-spacing:-0.672000px;}
.ls4f{letter-spacing:-0.660000px;}
.ls3d{letter-spacing:-0.624000px;}
.ls5b{letter-spacing:-0.607500px;}
.ls74{letter-spacing:-0.600000px;}
.ls2b{letter-spacing:-0.594000px;}
.ls41{letter-spacing:-0.576000px;}
.ls5a{letter-spacing:-0.554400px;}
.ls6f{letter-spacing:-0.540000px;}
.ls4c{letter-spacing:-0.528000px;}
.ls9c{letter-spacing:-0.495000px;}
.ls9d{letter-spacing:-0.480000px;}
.ls58{letter-spacing:-0.462000px;}
.ls51{letter-spacing:-0.432000px;}
.ls93{letter-spacing:-0.420000px;}
.ls2a{letter-spacing:-0.402600px;}
.ls27{letter-spacing:-0.396000px;}
.ls98{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.342000px;}
.ls4d{letter-spacing:-0.330000px;}
.ls92{letter-spacing:-0.315000px;}
.ls94{letter-spacing:-0.300000px;}
.ls4a{letter-spacing:-0.264000px;}
.ls2e{letter-spacing:-0.257400px;}
.ls53{letter-spacing:-0.216000px;}
.ls4b{letter-spacing:-0.198000px;}
.ls8a{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.171000px;}
.ls52{letter-spacing:-0.162000px;}
.ls89{letter-spacing:-0.135000px;}
.ls36{letter-spacing:-0.132000px;}
.ls9{letter-spacing:-0.128160px;}
.ls6e{letter-spacing:-0.108000px;}
.ls9e{letter-spacing:-0.090000px;}
.ls33{letter-spacing:-0.085800px;}
.ls38{letter-spacing:-0.066000px;}
.ls71{letter-spacing:-0.060000px;}
.ls8{letter-spacing:-0.057000px;}
.ls54{letter-spacing:-0.054000px;}
.ls3f{letter-spacing:-0.048000px;}
.ls97{letter-spacing:-0.045000px;}
.ls5{letter-spacing:0.000000px;}
.ls72{letter-spacing:0.048000px;}
.ls0{letter-spacing:0.057000px;}
.ls62{letter-spacing:0.060000px;}
.ls1e{letter-spacing:0.066000px;}
.ls1{letter-spacing:0.114000px;}
.ls1d{letter-spacing:0.118800px;}
.ls55{letter-spacing:0.132000px;}
.ls65{letter-spacing:0.162000px;}
.ls87{letter-spacing:0.180000px;}
.ls47{letter-spacing:0.198000px;}
.ls2{letter-spacing:0.228000px;}
.ls45{letter-spacing:0.264000px;}
.ls6c{letter-spacing:0.270000px;}
.ls82{letter-spacing:0.300000px;}
.ls83{letter-spacing:0.315000px;}
.ls6d{letter-spacing:0.324000px;}
.ls44{letter-spacing:0.330000px;}
.ls77{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.342000px;}
.ls76{letter-spacing:0.360000px;}
.ls5e{letter-spacing:0.378000px;}
.ls18{letter-spacing:0.396000px;}
.ls3{letter-spacing:0.399000px;}
.ls57{letter-spacing:0.405000px;}
.ls56{letter-spacing:0.432000px;}
.ls48{letter-spacing:0.462000px;}
.ls50{letter-spacing:0.480000px;}
.ls4e{letter-spacing:0.528000px;}
.ls5d{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.594000px;}
.ls46{letter-spacing:0.660000px;}
.ls7e{letter-spacing:0.672000px;}
.ls75{letter-spacing:0.726000px;}
.ls85{letter-spacing:0.780000px;}
.ls14{letter-spacing:0.785400px;}
.ls11{letter-spacing:0.792000px;}
.ls10{letter-spacing:0.858000px;}
.ls9a{letter-spacing:0.900000px;}
.ls1b{letter-spacing:0.924000px;}
.ls20{letter-spacing:0.937200px;}
.ls7a{letter-spacing:0.972000px;}
.ls63{letter-spacing:0.990000px;}
.lsf{letter-spacing:1.056000px;}
.ls49{letter-spacing:1.122000px;}
.ls19{letter-spacing:1.188000px;}
.ls17{letter-spacing:1.254000px;}
.ls16{letter-spacing:1.320000px;}
.ls7b{letter-spacing:1.386000px;}
.ls88{letter-spacing:1.440000px;}
.ls7f{letter-spacing:1.452000px;}
.ls81{letter-spacing:1.485000px;}
.ls80{letter-spacing:1.500000px;}
.ls15{letter-spacing:1.518000px;}
.ls13{letter-spacing:1.584000px;}
.ls64{letter-spacing:1.650000px;}
.ls7c{letter-spacing:1.782000px;}
.ls7d{letter-spacing:2.112000px;}
.ls12{letter-spacing:2.244000px;}
.ls79{letter-spacing:2.310000px;}
.ls1f{letter-spacing:2.560800px;}
.ls1c{letter-spacing:5.174400px;}
.ls84{letter-spacing:13.200000px;}
.ls86{letter-spacing:13.440000px;}
.ls6b{letter-spacing:24.024000px;}
.ls21{letter-spacing:47.952000px;}
.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;}
}
.wsc9{word-spacing:-18.810000px;}
.ws54{word-spacing:-18.744000px;}
.wsd6{word-spacing:-18.612000px;}
.ws23{word-spacing:-18.018000px;}
.wsdf{word-spacing:-17.556000px;}
.wsd5{word-spacing:-17.490000px;}
.ws90{word-spacing:-17.424000px;}
.ws55{word-spacing:-17.358000px;}
.ws20{word-spacing:-17.292000px;}
.ws56{word-spacing:-17.160000px;}
.ws91{word-spacing:-17.094000px;}
.wsc8{word-spacing:-17.028000px;}
.wsd4{word-spacing:-16.962000px;}
.ws80{word-spacing:-16.896000px;}
.ws17{word-spacing:-16.830000px;}
.wsba{word-spacing:-16.764000px;}
.ws57{word-spacing:-16.698000px;}
.wsbb{word-spacing:-16.632000px;}
.ws7d{word-spacing:-16.566000px;}
.ws2e{word-spacing:-16.500000px;}
.wsf5{word-spacing:-16.440000px;}
.ws6a{word-spacing:-16.434000px;}
.ws29{word-spacing:-16.414200px;}
.ws2b{word-spacing:-16.368000px;}
.ws7f{word-spacing:-16.302000px;}
.ws24{word-spacing:-16.242600px;}
.ws97{word-spacing:-16.236000px;}
.ws95{word-spacing:-16.170000px;}
.ws25{word-spacing:-16.104000px;}
.ws1f{word-spacing:-16.097400px;}
.ws7b{word-spacing:-16.038000px;}
.ws7a{word-spacing:-15.972000px;}
.wsde{word-spacing:-15.906000px;}
.ws58{word-spacing:-15.840000px;}
.wsed{word-spacing:-15.780000px;}
.ws19{word-spacing:-15.774000px;}
.ws18{word-spacing:-15.708000px;}
.ws2d{word-spacing:-15.642000px;}
.ws88{word-spacing:-15.576000px;}
.ws16{word-spacing:-15.510000px;}
.ws26{word-spacing:-15.444000px;}
.wse0{word-spacing:-15.378000px;}
.ws1d{word-spacing:-15.371400px;}
.ws2f{word-spacing:-15.318600px;}
.wsa2{word-spacing:-15.300000px;}
.ws22{word-spacing:-15.259200px;}
.wsa1{word-spacing:-15.240000px;}
.ws1c{word-spacing:-15.180000px;}
.ws87{word-spacing:-15.114000px;}
.ws94{word-spacing:-15.000000px;}
.ws92{word-spacing:-14.940000px;}
.ws7e{word-spacing:-14.916000px;}
.wsaa{word-spacing:-14.700000px;}
.ws28{word-spacing:-14.652000px;}
.wsf0{word-spacing:-14.580000px;}
.ws0{word-spacing:-14.535000px;}
.ws10b{word-spacing:-14.520000px;}
.ws27{word-spacing:-14.381400px;}
.ws108{word-spacing:-14.280000px;}
.wsf6{word-spacing:-14.220000px;}
.wsee{word-spacing:-14.100000px;}
.ws71{word-spacing:-14.040000px;}
.ws30{word-spacing:-14.025000px;}
.wse8{word-spacing:-13.980000px;}
.ws6f{word-spacing:-13.932000px;}
.ws74{word-spacing:-13.878000px;}
.wsec{word-spacing:-13.860000px;}
.ws8a{word-spacing:-13.824000px;}
.ws1b{word-spacing:-13.668600px;}
.ws73{word-spacing:-13.500000px;}
.wsea{word-spacing:-13.440000px;}
.ws1a{word-spacing:-13.279200px;}
.ws3a{word-spacing:-13.167000px;}
.ws21{word-spacing:-12.949200px;}
.wse3{word-spacing:-12.735000px;}
.ws6e{word-spacing:-12.690000px;}
.wsd7{word-spacing:-12.672000px;}
.ws59{word-spacing:-12.480000px;}
.ws2a{word-spacing:-12.408000px;}
.wsbd{word-spacing:-12.336000px;}
.ws31{word-spacing:-12.240000px;}
.ws2c{word-spacing:-12.071400px;}
.ws98{word-spacing:-12.048000px;}
.ws39{word-spacing:-12.000000px;}
.ws35{word-spacing:-11.952000px;}
.wse6{word-spacing:-11.565000px;}
.ws53{word-spacing:-11.550000px;}
.wse5{word-spacing:-11.520000px;}
.wsf4{word-spacing:-11.430000px;}
.ws37{word-spacing:-11.424000px;}
.ws33{word-spacing:-11.376000px;}
.ws38{word-spacing:-11.328000px;}
.wse2{word-spacing:-11.250000px;}
.wsf7{word-spacing:-11.205000px;}
.ws10c{word-spacing:-11.160000px;}
.wse4{word-spacing:-11.115000px;}
.ws6b{word-spacing:-10.995600px;}
.wsf1{word-spacing:-10.935000px;}
.wsf8{word-spacing:-10.890000px;}
.ws109{word-spacing:-10.755000px;}
.ws1{word-spacing:-10.551840px;}
.ws72{word-spacing:-10.530000px;}
.wsfa{word-spacing:-10.485000px;}
.wsf9{word-spacing:-10.440000px;}
.wsf3{word-spacing:-10.395000px;}
.wse7{word-spacing:-10.215000px;}
.wseb{word-spacing:-10.125000px;}
.ws1e{word-spacing:-10.098000px;}
.wse9{word-spacing:-10.080000px;}
.ws32{word-spacing:-10.032000px;}
.ws6d{word-spacing:-9.517500px;}
.ws86{word-spacing:-7.872000px;}
.ws15{word-spacing:-7.536000px;}
.ws36{word-spacing:-6.288000px;}
.ws34{word-spacing:-6.144000px;}
.wsd3{word-spacing:-1.200000px;}
.ws4f{word-spacing:-0.858000px;}
.ws4d{word-spacing:-0.792000px;}
.ws4c{word-spacing:-0.726000px;}
.wsff{word-spacing:-0.720000px;}
.ws9{word-spacing:-0.684000px;}
.ws40{word-spacing:-0.660000px;}
.ws69{word-spacing:-0.648000px;}
.wsd{word-spacing:-0.627000px;}
.ws63{word-spacing:-0.594000px;}
.ws8d{word-spacing:-0.540000px;}
.ws5b{word-spacing:-0.528000px;}
.ws3{word-spacing:-0.513000px;}
.ws68{word-spacing:-0.486000px;}
.ws4b{word-spacing:-0.462000px;}
.ws6{word-spacing:-0.456000px;}
.ws105{word-spacing:-0.420000px;}
.ws7{word-spacing:-0.399000px;}
.ws3f{word-spacing:-0.396000px;}
.ws107{word-spacing:-0.360000px;}
.ws4a{word-spacing:-0.330000px;}
.wsdc{word-spacing:-0.324000px;}
.wsfb{word-spacing:-0.300000px;}
.ws14{word-spacing:-0.285000px;}
.wsdd{word-spacing:-0.270000px;}
.ws64{word-spacing:-0.264000px;}
.ws102{word-spacing:-0.240000px;}
.ws67{word-spacing:-0.216000px;}
.ws62{word-spacing:-0.198000px;}
.ws75{word-spacing:-0.132000px;}
.ws13{word-spacing:-0.114000px;}
.ws78{word-spacing:-0.108000px;}
.ws5f{word-spacing:-0.066000px;}
.wse{word-spacing:-0.057000px;}
.wsc3{word-spacing:-0.054000px;}
.wsb{word-spacing:0.000000px;}
.ws8e{word-spacing:0.054000px;}
.ws11{word-spacing:0.057000px;}
.ws106{word-spacing:0.060000px;}
.ws7c{word-spacing:0.066000px;}
.ws10a{word-spacing:0.120000px;}
.ws47{word-spacing:0.132000px;}
.ws5{word-spacing:0.171000px;}
.ws104{word-spacing:0.180000px;}
.ws48{word-spacing:0.198000px;}
.wsa{word-spacing:0.228000px;}
.ws3c{word-spacing:0.264000px;}
.ws100{word-spacing:0.300000px;}
.wsd2{word-spacing:0.324000px;}
.ws3e{word-spacing:0.330000px;}
.ws101{word-spacing:0.360000px;}
.ws42{word-spacing:0.396000px;}
.wsfe{word-spacing:0.420000px;}
.ws66{word-spacing:0.462000px;}
.wsc2{word-spacing:0.486000px;}
.ws10{word-spacing:0.513000px;}
.ws3d{word-spacing:0.528000px;}
.ws77{word-spacing:0.594000px;}
.ws10d{word-spacing:0.600000px;}
.ws8b{word-spacing:0.648000px;}
.ws4e{word-spacing:0.660000px;}
.wsc7{word-spacing:0.702000px;}
.ws103{word-spacing:0.720000px;}
.ws60{word-spacing:0.726000px;}
.wsc1{word-spacing:0.785400px;}
.ws41{word-spacing:0.792000px;}
.ws61{word-spacing:0.858000px;}
.ws79{word-spacing:0.864000px;}
.ws85{word-spacing:0.918000px;}
.wsbc{word-spacing:0.924000px;}
.ws8f{word-spacing:0.972000px;}
.ws76{word-spacing:0.990000px;}
.wsf{word-spacing:1.026000px;}
.ws43{word-spacing:1.056000px;}
.ws83{word-spacing:1.062600px;}
.ws8c{word-spacing:1.080000px;}
.ws12{word-spacing:1.083000px;}
.ws65{word-spacing:1.122000px;}
.wsc{word-spacing:1.140000px;}
.ws51{word-spacing:1.152000px;}
.ws5c{word-spacing:1.188000px;}
.wsfd{word-spacing:1.200000px;}
.ws8{word-spacing:1.254000px;}
.wsc4{word-spacing:1.296000px;}
.ws44{word-spacing:1.320000px;}
.ws4{word-spacing:1.368000px;}
.ws45{word-spacing:1.386000px;}
.ws46{word-spacing:1.452000px;}
.wsa9{word-spacing:1.500000px;}
.ws49{word-spacing:1.518000px;}
.ws50{word-spacing:1.584000px;}
.ws3b{word-spacing:1.650000px;}
.wsfc{word-spacing:2.040000px;}
.wsef{word-spacing:3.150000px;}
.ws2{word-spacing:3.284640px;}
.wsf2{word-spacing:3.990000px;}
.ws84{word-spacing:4.224000px;}
.ws70{word-spacing:4.440000px;}
.ws99{word-spacing:4.488000px;}
.ws5d{word-spacing:6.600000px;}
.ws5e{word-spacing:6.666000px;}
.ws96{word-spacing:7.524000px;}
.wsc6{word-spacing:7.800000px;}
.wsc5{word-spacing:7.920000px;}
.wsdb{word-spacing:10.380000px;}
.wsda{word-spacing:10.620000px;}
.wse1{word-spacing:11.088000px;}
.ws93{word-spacing:15.000000px;}
.ws9b{word-spacing:19.080000px;}
.ws9d{word-spacing:29.940000px;}
.wsa0{word-spacing:30.660000px;}
.ws9e{word-spacing:33.060000px;}
.ws9c{word-spacing:33.120000px;}
.ws6c{word-spacing:35.712000px;}
.ws81{word-spacing:35.904000px;}
.ws5a{word-spacing:36.018000px;}
.ws82{word-spacing:36.666000px;}
.ws89{word-spacing:37.314000px;}
.ws9f{word-spacing:49.080000px;}
.wsad{word-spacing:50.100000px;}
.wsb6{word-spacing:50.760000px;}
.wsb7{word-spacing:64.620000px;}
.wsaf{word-spacing:64.680000px;}
.wsab{word-spacing:65.520000px;}
.wsb8{word-spacing:80.760000px;}
.wsb3{word-spacing:81.660000px;}
.ws9a{word-spacing:82.500000px;}
.wsa5{word-spacing:84.060000px;}
.wsac{word-spacing:89.040000px;}
.wsb9{word-spacing:94.500000px;}
.wsae{word-spacing:95.100000px;}
.wsc0{word-spacing:99.780000px;}
.wsb5{word-spacing:102.120000px;}
.wsb2{word-spacing:114.060000px;}
.wsb4{word-spacing:122.280000px;}
.wsa6{word-spacing:129.060000px;}
.wsa8{word-spacing:132.720000px;}
.wsb1{word-spacing:140.100000px;}
.wsbf{word-spacing:162.780000px;}
.wsbe{word-spacing:177.780000px;}
.wsa7{word-spacing:180.120000px;}
.wsa4{word-spacing:184.560000px;}
.wsa3{word-spacing:209.220000px;}
.wsd1{word-spacing:221.760000px;}
.wsd9{word-spacing:221.820000px;}
.wscd{word-spacing:230.040000px;}
.wscc{word-spacing:233.460000px;}
.wscf{word-spacing:247.680000px;}
.wscb{word-spacing:263.340000px;}
.wsd0{word-spacing:312.780000px;}
.ws52{word-spacing:351.456000px;}
.wsb0{word-spacing:396.300000px;}
.wsce{word-spacing:645.720000px;}
.wsd8{word-spacing:696.060000px;}
.wsca{word-spacing:730.740000px;}
._a3{margin-left:-11.049000px;}
._4{margin-left:-8.640000px;}
._b{margin-left:-7.524000px;}
._a{margin-left:-6.480000px;}
._5{margin-left:-4.611000px;}
._0{margin-left:-3.078000px;}
._1{margin-left:-1.197000px;}
._2{width:1.197000px;}
._7{width:2.904000px;}
._12{width:12.714000px;}
._a4{width:14.904000px;}
._8{width:16.896000px;}
._11{width:21.480000px;}
._d{width:24.024000px;}
._14{width:26.820000px;}
._10{width:30.000000px;}
._46{width:32.040000px;}
._1b{width:36.180000px;}
._13{width:41.040000px;}
._47{width:42.807000px;}
._30{width:45.387000px;}
._3{width:47.133000px;}
._2c{width:48.447000px;}
._3c{width:49.740000px;}
._f{width:51.540000px;}
._3d{width:52.668000px;}
._45{width:54.480000px;}
._2f{width:56.193000px;}
._1d{width:57.363000px;}
._15{width:59.040000px;}
._6b{width:60.240000px;}
._38{width:63.126000px;}
._2d{width:65.040000px;}
._48{width:68.040000px;}
._32{width:70.680000px;}
._94{width:73.494000px;}
._1c{width:75.600000px;}
._35{width:78.060000px;}
._31{width:79.620000px;}
._3b{width:82.134000px;}
._4e{width:83.220000px;}
._43{width:85.920000px;}
._25{width:87.360000px;}
._1f{width:91.140000px;}
._20{width:92.700000px;}
._42{width:94.020000px;}
._36{width:95.040000px;}
._34{width:96.780000px;}
._39{width:98.280000px;}
._5e{width:99.444000px;}
._37{width:100.644000px;}
._3f{width:103.296000px;}
._21{width:104.400000px;}
._44{width:105.462000px;}
._2e{width:107.640000px;}
._24{width:108.900000px;}
._26{width:111.000000px;}
._27{width:112.020000px;}
._63{width:114.180000px;}
._54{width:116.400000px;}
._28{width:117.480000px;}
._8e{width:120.000000px;}
._22{width:121.320000px;}
._40{width:123.960000px;}
._90{width:125.316000px;}
._6c{width:126.450000px;}
._69{width:127.470000px;}
._5d{width:129.120000px;}
._49{width:131.040000px;}
._33{width:133.140000px;}
._82{width:135.480000px;}
._3a{width:137.700000px;}
._16{width:139.500000px;}
._81{width:140.820000px;}
._88{width:142.098000px;}
._29{width:143.160000px;}
._5f{width:144.900000px;}
._1a{width:146.280000px;}
._4d{width:148.140000px;}
._55{width:150.180000px;}
._3e{width:153.480000px;}
._23{width:154.740000px;}
._19{width:156.477000px;}
._8a{width:157.590000px;}
._67{width:158.760000px;}
._4f{width:160.740000px;}
._5c{width:161.880000px;}
._2b{width:163.560000px;}
._58{width:164.820000px;}
._2a{width:166.320000px;}
._92{width:169.746000px;}
._83{width:170.880000px;}
._50{width:173.160000px;}
._75{width:175.464000px;}
._41{width:178.176000px;}
._56{width:179.820000px;}
._5b{width:181.320000px;}
._51{width:183.600000px;}
._8d{width:185.130000px;}
._1e{width:188.640000px;}
._5a{width:194.400000px;}
._60{width:195.798000px;}
._80{width:197.460000px;}
._74{width:199.380000px;}
._52{width:206.400000px;}
._59{width:208.080000px;}
._57{width:214.020000px;}
._8c{width:215.760000px;}
._85{width:217.617000px;}
._6d{width:219.780000px;}
._7a{width:221.520000px;}
._73{width:222.876000px;}
._53{width:229.380000px;}
._61{width:231.540000px;}
._7e{width:233.640000px;}
._7b{width:235.698000px;}
._4c{width:237.240000px;}
._65{width:240.000000px;}
._7f{width:241.077000px;}
._62{width:246.324000px;}
._98{width:249.600000px;}
._97{width:252.150000px;}
._71{width:253.674000px;}
._96{width:255.600000px;}
._66{width:257.340000px;}
._79{width:260.880000px;}
._87{width:262.800000px;}
._6e{width:265.080000px;}
._68{width:266.820000px;}
._72{width:274.077000px;}
._89{width:276.060000px;}
._a2{width:278.340000px;}
._9a{width:281.784000px;}
._4a{width:284.277000px;}
._95{width:290.046000px;}
._86{width:291.570000px;}
._9c{width:297.180000px;}
._a0{width:312.000000px;}
._93{width:314.304000px;}
._8b{width:321.480000px;}
._4b{width:325.080000px;}
._64{width:326.577000px;}
._84{width:327.840000px;}
._8f{width:328.878000px;}
._6f{width:333.540000px;}
._91{width:336.903000px;}
._c{width:338.253000px;}
._70{width:348.324000px;}
._78{width:349.860000px;}
._76{width:351.900000px;}
._6a{width:355.080000px;}
._9{width:362.685000px;}
._99{width:370.860000px;}
._7c{width:373.620000px;}
._18{width:387.654000px;}
._77{width:395.160000px;}
._9d{width:400.020000px;}
._a1{width:425.160000px;}
._7d{width:433.404000px;}
._9b{width:472.020000px;}
._17{width:473.640000px;}
._9f{width:502.044000px;}
._9e{width:606.780000px;}
._e{width:1089.549000px;}
._6{width:1113.549000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:40.500000px;}
.fs1{font-size:42.720000px;}
.fsa{font-size:45.000000px;}
.fs7{font-size:46.200000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y55{bottom:0.574667px;}
.y4f{bottom:1.396500px;}
.y4d{bottom:3.646500px;}
.y58{bottom:4.396500px;}
.yab{bottom:53.529000px;}
.y23b{bottom:55.005000px;}
.yfc{bottom:55.134000px;}
.y20f{bottom:55.182000px;}
.y13b{bottom:55.198500px;}
.ybc{bottom:55.215000px;}
.y84{bottom:55.341000px;}
.y197{bottom:55.536000px;}
.yfd{bottom:55.755000px;}
.yde{bottom:56.124000px;}
.y1f4{bottom:56.250000px;}
.y4a{bottom:56.535000px;}
.y1d3{bottom:61.905000px;}
.yaa{bottom:67.779000px;}
.yfb{bottom:69.390000px;}
.y83{bottom:69.597000px;}
.y196{bottom:69.792000px;}
.ydd{bottom:70.380000px;}
.y1f{bottom:70.740000px;}
.y23a{bottom:70.755000px;}
.y20e{bottom:72.424500px;}
.y13a{bottom:72.441000px;}
.ybb{bottom:72.457500px;}
.y1f3{bottom:73.492500px;}
.y49{bottom:73.777500px;}
.ya9{bottom:82.035000px;}
.y1d2{bottom:82.155000px;}
.y176{bottom:82.665000px;}
.yfa{bottom:83.646000px;}
.y82{bottom:83.853000px;}
.y195{bottom:84.048000px;}
.y1e{bottom:85.730250px;}
.y239{bottom:86.505000px;}
.y20d{bottom:89.667000px;}
.y139{bottom:89.683500px;}
.yba{bottom:89.700000px;}
.y1f2{bottom:90.735000px;}
.y48{bottom:91.020000px;}
.yf9{bottom:97.902000px;}
.y81{bottom:98.109000px;}
.y194{bottom:98.304000px;}
.y238{bottom:102.255000px;}
.y1d1{bottom:102.405000px;}
.y103{bottom:103.395000px;}
.y175{bottom:106.290000px;}
.y1d{bottom:106.734750px;}
.y20c{bottom:106.909500px;}
.y138{bottom:106.926000px;}
.yb9{bottom:106.942500px;}
.y1f1{bottom:107.977500px;}
.y47{bottom:108.262500px;}
.yf8{bottom:112.158000px;}
.y80{bottom:112.365000px;}
.y193{bottom:112.560000px;}
.y106{bottom:112.858500px;}
.y104{bottom:117.163500px;}
.y237{bottom:118.005000px;}
.y1c{bottom:121.691250px;}
.y1d0{bottom:122.655000px;}
.ya8{bottom:123.930000px;}
.ydc{bottom:124.107000px;}
.y20b{bottom:124.152000px;}
.y137{bottom:124.168500px;}
.yb8{bottom:124.185000px;}
.y1f0{bottom:125.220000px;}
.y46{bottom:125.505000px;}
.yf7{bottom:126.414000px;}
.y102{bottom:126.645000px;}
.y105{bottom:133.423500px;}
.y236{bottom:133.755000px;}
.y174{bottom:134.415000px;}
.y1b{bottom:136.696500px;}
.yf6{bottom:140.670000px;}
.ya7{bottom:141.172500px;}
.ydb{bottom:141.349500px;}
.y20a{bottom:141.394500px;}
.y136{bottom:141.411000px;}
.yb7{bottom:141.427500px;}
.y1ef{bottom:142.462500px;}
.y45{bottom:142.747500px;}
.y1cf{bottom:142.905000px;}
.y14a{bottom:148.656000px;}
.y235{bottom:149.505000px;}
.y101{bottom:149.895000px;}
.y1a{bottom:151.701750px;}
.y15a{bottom:151.878000px;}
.y192{bottom:152.572500px;}
.yf5{bottom:154.926000px;}
.ya6{bottom:158.415000px;}
.yda{bottom:158.592000px;}
.y209{bottom:158.637000px;}
.y135{bottom:158.653500px;}
.y7f{bottom:158.655000px;}
.yb6{bottom:158.670000px;}
.y1ee{bottom:159.705000px;}
.y44{bottom:159.990000px;}
.y173{bottom:162.540000px;}
.y234{bottom:165.255000px;}
.y19{bottom:166.707000px;}
.y184{bottom:166.800000px;}
.y1ce{bottom:167.400000px;}
.yf4{bottom:169.182000px;}
.y191{bottom:169.815000px;}
.y100{bottom:173.145000px;}
.ya5{bottom:175.657500px;}
.yd9{bottom:175.834500px;}
.y208{bottom:175.879500px;}
.y134{bottom:175.896000px;}
.y7e{bottom:175.897500px;}
.yb5{bottom:175.912500px;}
.y149{bottom:176.781000px;}
.y1ed{bottom:176.947500px;}
.y43{bottom:177.232500px;}
.y159{bottom:180.003000px;}
.y233{bottom:181.005000px;}
.y18{bottom:181.712250px;}
.y1cd{bottom:183.150000px;}
.yf3{bottom:183.438000px;}
.y190{bottom:187.057500px;}
.yff{bottom:188.895000px;}
.y172{bottom:190.665000px;}
.ya4{bottom:192.900000px;}
.y207{bottom:193.122000px;}
.y133{bottom:193.138500px;}
.y7d{bottom:193.140000px;}
.yb4{bottom:193.155000px;}
.y1ec{bottom:194.190000px;}
.y42{bottom:194.475000px;}
.y183{bottom:194.925000px;}
.y17{bottom:196.717500px;}
.y232{bottom:196.755000px;}
.yf2{bottom:197.694000px;}
.yd8{bottom:201.706500px;}
.y18f{bottom:204.300000px;}
.y148{bottom:204.906000px;}
.y158{bottom:208.128000px;}
.ya3{bottom:210.142500px;}
.y206{bottom:210.364500px;}
.y132{bottom:210.381000px;}
.y7c{bottom:210.382500px;}
.yb3{bottom:210.397500px;}
.y1eb{bottom:211.432500px;}
.y41{bottom:211.717500px;}
.y16{bottom:211.722750px;}
.yf1{bottom:211.950000px;}
.y231{bottom:212.505000px;}
.y171{bottom:218.790000px;}
.y18e{bottom:221.542500px;}
.yfe{bottom:222.570000px;}
.y182{bottom:223.050000px;}
.y15{bottom:226.728000px;}
.ya2{bottom:227.607000px;}
.y131{bottom:227.623500px;}
.y7b{bottom:227.625000px;}
.yb2{bottom:227.640000px;}
.y230{bottom:228.255000px;}
.y1ea{bottom:228.675000px;}
.y40{bottom:228.960000px;}
.y1c5{bottom:229.342500px;}
.y147{bottom:233.031000px;}
.y157{bottom:236.253000px;}
.y18d{bottom:238.785000px;}
.y14{bottom:241.733250px;}
.y22f{bottom:244.005000px;}
.yd7{bottom:244.837500px;}
.ya1{bottom:244.849500px;}
.y130{bottom:244.866000px;}
.y7a{bottom:244.867500px;}
.yb1{bottom:244.882500px;}
.y1e9{bottom:245.917500px;}
.y3f{bottom:246.202500px;}
.y1c4{bottom:246.585000px;}
.y170{bottom:246.915000px;}
.y181{bottom:251.175000px;}
.y18c{bottom:256.027500px;}
.y13{bottom:256.738500px;}
.y22e{bottom:259.755000px;}
.y146{bottom:261.156000px;}
.yf0{bottom:262.011000px;}
.yd6{bottom:262.080000px;}
.ya0{bottom:262.092000px;}
.y12f{bottom:262.108500px;}
.y79{bottom:262.110000px;}
.yb0{bottom:262.125000px;}
.y1e8{bottom:263.160000px;}
.y3e{bottom:263.445000px;}
.y1c3{bottom:263.827500px;}
.y156{bottom:264.378000px;}
.y11f{bottom:270.570000px;}
.y12{bottom:271.743750px;}
.y18b{bottom:273.270000px;}
.y16f{bottom:275.040000px;}
.y22d{bottom:275.505000px;}
.yef{bottom:279.253500px;}
.y180{bottom:279.300000px;}
.yd5{bottom:279.322500px;}
.y9f{bottom:279.334500px;}
.y12e{bottom:279.351000px;}
.y78{bottom:279.352500px;}
.yaf{bottom:279.367500px;}
.y1e7{bottom:280.402500px;}
.y3d{bottom:280.687500px;}
.y1c2{bottom:281.070000px;}
.y11e{bottom:286.320000px;}
.y145{bottom:289.281000px;}
.y18a{bottom:290.512500px;}
.y22c{bottom:291.255000px;}
.y155{bottom:292.503000px;}
.yee{bottom:296.496000px;}
.yd4{bottom:296.565000px;}
.y205{bottom:296.577000px;}
.y12d{bottom:296.593500px;}
.y77{bottom:296.595000px;}
.yae{bottom:296.610000px;}
.y1e6{bottom:297.645000px;}
.y3c{bottom:297.930000px;}
.y1c1{bottom:298.312500px;}
.y11{bottom:301.740000px;}
.y16e{bottom:303.165000px;}
.y144{bottom:305.031000px;}
.y9e{bottom:305.206500px;}
.y22b{bottom:307.005000px;}
.y17f{bottom:307.425000px;}
.y189{bottom:307.755000px;}
.y154{bottom:308.253000px;}
.y122{bottom:309.279000px;}
.y11d{bottom:309.570000px;}
.yed{bottom:313.738500px;}
.yd3{bottom:313.807500px;}
.y204{bottom:313.819500px;}
.y12c{bottom:313.836000px;}
.y76{bottom:313.837500px;}
.yad{bottom:313.852500px;}
.y1e5{bottom:314.887500px;}
.y1c0{bottom:315.555000px;}
.y22a{bottom:322.755000px;}
.y17e{bottom:323.175000px;}
.y3b{bottom:323.802000px;}
.y188{bottom:324.997500px;}
.y11c{bottom:325.320000px;}
.yec{bottom:330.981000px;}
.yd2{bottom:331.050000px;}
.y203{bottom:331.062000px;}
.y12b{bottom:331.078500px;}
.y75{bottom:331.080000px;}
.yac{bottom:331.095000px;}
.y16d{bottom:331.290000px;}
.y1e4{bottom:332.130000px;}
.y1bf{bottom:332.797500px;}
.y143{bottom:333.156000px;}
.y120{bottom:335.859000px;}
.y153{bottom:336.378000px;}
.y10{bottom:337.725000px;}
.y229{bottom:338.505000px;}
.y11b{bottom:341.070000px;}
.y187{bottom:342.240000px;}
.yeb{bottom:348.223500px;}
.yd1{bottom:348.292500px;}
.y202{bottom:348.304500px;}
.y12a{bottom:348.321000px;}
.y74{bottom:348.322500px;}
.y9d{bottom:348.337500px;}
.y1e3{bottom:349.372500px;}
.y1be{bottom:350.040000px;}
.y16c{bottom:350.790000px;}
.y17d{bottom:351.300000px;}
.y121{bottom:352.119000px;}
.yf{bottom:352.730250px;}
.y228{bottom:354.255000px;}
.y11a{bottom:356.820000px;}
.y186{bottom:359.482500px;}
.y142{bottom:361.281000px;}
.y152{bottom:364.503000px;}
.yd0{bottom:365.535000px;}
.y201{bottom:365.547000px;}
.y129{bottom:365.563500px;}
.y73{bottom:365.565000px;}
.y9c{bottom:365.580000px;}
.y1e2{bottom:366.615000px;}
.y3a{bottom:366.933000px;}
.y1bd{bottom:367.282500px;}
.y227{bottom:370.005000px;}
.y16b{bottom:370.290000px;}
.ye{bottom:373.734750px;}
.yea{bottom:374.095500px;}
.y185{bottom:376.725000px;}
.y17c{bottom:379.425000px;}
.y119{bottom:380.070000px;}
.ycf{bottom:382.777500px;}
.y200{bottom:382.789500px;}
.y128{bottom:382.806000px;}
.y72{bottom:382.807500px;}
.y9b{bottom:382.822500px;}
.y1e1{bottom:383.857500px;}
.y39{bottom:384.175500px;}
.y1bc{bottom:384.525000px;}
.y226{bottom:385.755000px;}
.yd{bottom:388.682250px;}
.y141{bottom:389.406000px;}
.ye9{bottom:391.338000px;}
.y151{bottom:392.628000px;}
.y16a{bottom:394.290000px;}
.y118{bottom:395.820000px;}
.yce{bottom:400.020000px;}
.y1ff{bottom:400.032000px;}
.y127{bottom:400.048500px;}
.y71{bottom:400.050000px;}
.y9a{bottom:400.065000px;}
.y1e0{bottom:401.100000px;}
.y38{bottom:401.418000px;}
.y225{bottom:401.505000px;}
.y1bb{bottom:401.767500px;}
.yc{bottom:403.687500px;}
.y17b{bottom:407.550000px;}
.ye8{bottom:408.580500px;}
.y169{bottom:410.040000px;}
.y1ad{bottom:411.549000px;}
.y117{bottom:411.570000px;}
.y224{bottom:417.255000px;}
.ycd{bottom:417.262500px;}
.y1fe{bottom:417.274500px;}
.y126{bottom:417.291000px;}
.y70{bottom:417.292500px;}
.y99{bottom:417.307500px;}
.y140{bottom:417.531000px;}
.y1df{bottom:418.342500px;}
.y37{bottom:418.660500px;}
.yb{bottom:418.692750px;}
.y1ba{bottom:419.010000px;}
.y150{bottom:420.753000px;}
.y1ac{bottom:425.805000px;}
.ye7{bottom:425.823000px;}
.y116{bottom:427.320000px;}
.y223{bottom:433.005000px;}
.ya{bottom:433.698000px;}
.ycc{bottom:434.505000px;}
.y1fd{bottom:434.517000px;}
.y125{bottom:434.533500px;}
.y6f{bottom:434.535000px;}
.y98{bottom:434.550000px;}
.y1de{bottom:435.585000px;}
.y17a{bottom:435.675000px;}
.y36{bottom:435.903000px;}
.y1b9{bottom:436.252500px;}
.y13f{bottom:437.031000px;}
.y14f{bottom:440.253000px;}
.ye6{bottom:443.065500px;}
.y115{bottom:443.070000px;}
.y1ab{bottom:446.430000px;}
.y9{bottom:448.703250px;}
.y222{bottom:448.755000px;}
.ycb{bottom:451.747500px;}
.y6e{bottom:451.777500px;}
.y97{bottom:451.792500px;}
.y1dd{bottom:452.827500px;}
.y35{bottom:453.145500px;}
.y1b8{bottom:453.495000px;}
.y179{bottom:453.675000px;}
.y13e{bottom:456.531000px;}
.y114{bottom:458.820000px;}
.y14e{bottom:459.753000px;}
.ye5{bottom:460.308000px;}
.y1fc{bottom:460.389000px;}
.y124{bottom:460.405500px;}
.y8{bottom:463.708500px;}
.y221{bottom:464.505000px;}
.y1aa{bottom:466.530000px;}
.yca{bottom:468.990000px;}
.y6d{bottom:469.020000px;}
.y96{bottom:469.035000px;}
.y1dc{bottom:470.070000px;}
.y34{bottom:470.388000px;}
.y1b7{bottom:470.737500px;}
.y178{bottom:471.675000px;}
.ye4{bottom:477.550500px;}
.y123{bottom:477.648000px;}
.y7{bottom:478.713750px;}
.y220{bottom:480.255000px;}
.y14d{bottom:483.753000px;}
.y13d{bottom:484.536000px;}
.y113{bottom:484.785000px;}
.yc9{bottom:486.232500px;}
.y6c{bottom:486.262500px;}
.y95{bottom:486.277500px;}
.y1a9{bottom:486.630000px;}
.y1db{bottom:487.312500px;}
.y33{bottom:487.630500px;}
.y1b6{bottom:487.980000px;}
.y6{bottom:493.719000px;}
.y177{bottom:494.175000px;}
.ye3{bottom:494.793000px;}
.y21f{bottom:496.005000px;}
.y168{bottom:497.835000px;}
.yc8{bottom:503.475000px;}
.y6b{bottom:503.505000px;}
.y94{bottom:503.520000px;}
.y1da{bottom:504.555000px;}
.y32{bottom:504.873000px;}
.y1b5{bottom:505.222500px;}
.y1a8{bottom:506.730000px;}
.y5{bottom:508.724250px;}
.y21e{bottom:511.755000px;}
.ye2{bottom:512.035500px;}
.yc7{bottom:520.717500px;}
.y6a{bottom:520.747500px;}
.y93{bottom:520.762500px;}
.y167{bottom:521.460000px;}
.y1d9{bottom:521.797500px;}
.y31{bottom:522.115500px;}
.y1a7{bottom:522.330000px;}
.y1b4{bottom:522.465000px;}
.y4{bottom:523.729500px;}
.y21d{bottom:527.505000px;}
.y10f{bottom:529.815000px;}
.ye1{bottom:537.907500px;}
.y1a6{bottom:537.930000px;}
.yc6{bottom:537.960000px;}
.y69{bottom:537.990000px;}
.y92{bottom:538.005000px;}
.y3{bottom:538.734750px;}
.y1d8{bottom:539.040000px;}
.y30{bottom:539.358000px;}
.y1b3{bottom:539.707500px;}
.y21c{bottom:543.255000px;}
.y10e{bottom:545.565000px;}
.y166{bottom:549.585000px;}
.y112{bottom:553.539000px;}
.y2{bottom:553.740000px;}
.ye0{bottom:555.150000px;}
.yc5{bottom:555.202500px;}
.y68{bottom:555.232500px;}
.y91{bottom:555.247500px;}
.y1d7{bottom:556.282500px;}
.y2f{bottom:556.600500px;}
.y1b2{bottom:556.950000px;}
.y1a5{bottom:558.030000px;}
.y21b{bottom:559.005000px;}
.y10d{bottom:561.315000px;}
.y13c{bottom:561.585000px;}
.y14c{bottom:562.800000px;}
.y110{bottom:563.409000px;}
.ydf{bottom:572.392500px;}
.yc4{bottom:572.445000px;}
.y67{bottom:572.475000px;}
.y90{bottom:572.490000px;}
.y1d6{bottom:573.525000px;}
.y1a4{bottom:573.630000px;}
.y2e{bottom:573.843000px;}
.y1b1{bottom:574.192500px;}
.y21a{bottom:574.755000px;}
.y165{bottom:577.710000px;}
.y111{bottom:579.669000px;}
.y1{bottom:583.740000px;}
.y10c{bottom:584.565000px;}
.y1a3{bottom:589.230000px;}
.yc3{bottom:589.687500px;}
.y66{bottom:589.717500px;}
.y8f{bottom:589.732500px;}
.y219{bottom:590.505000px;}
.y1d5{bottom:590.767500px;}
.y2d{bottom:591.085500px;}
.y1b0{bottom:591.435000px;}
.y10b{bottom:600.315000px;}
.y164{bottom:605.835000px;}
.y218{bottom:606.255000px;}
.yc2{bottom:606.930000px;}
.y65{bottom:606.960000px;}
.y8e{bottom:606.975000px;}
.y1d4{bottom:608.010000px;}
.y2c{bottom:608.328000px;}
.y1af{bottom:608.677500px;}
.y1a2{bottom:609.330000px;}
.y10a{bottom:616.065000px;}
.y217{bottom:622.005000px;}
.yc1{bottom:624.172500px;}
.y64{bottom:624.202500px;}
.y8d{bottom:624.217500px;}
.y1a1{bottom:624.930000px;}
.y2b{bottom:625.570500px;}
.y1ae{bottom:625.920000px;}
.y14b{bottom:633.000000px;}
.y163{bottom:633.960000px;}
.y216{bottom:637.755000px;}
.y109{bottom:639.315000px;}
.y1a0{bottom:640.530000px;}
.yc0{bottom:641.415000px;}
.y63{bottom:641.445000px;}
.y8c{bottom:641.460000px;}
.y2a{bottom:642.813000px;}
.y215{bottom:653.505000px;}
.y108{bottom:655.065000px;}
.ybf{bottom:658.657500px;}
.y62{bottom:658.687500px;}
.y8b{bottom:658.702500px;}
.y19f{bottom:660.630000px;}
.y162{bottom:662.085000px;}
.y1fb{bottom:662.454000px;}
.y29{bottom:668.685000px;}
.y214{bottom:669.255000px;}
.ybe{bottom:675.900000px;}
.y61{bottom:675.930000px;}
.y8a{bottom:675.945000px;}
.y19e{bottom:676.230000px;}
.y1fa{bottom:676.710000px;}
.y107{bottom:677.580000px;}
.y1cc{bottom:678.204000px;}
.y27{bottom:678.849000px;}
.y213{bottom:685.005000px;}
.y161{bottom:690.210000px;}
.y19d{bottom:691.830000px;}
.y1cb{bottom:692.460000px;}
.y26{bottom:693.105000px;}
.ybd{bottom:693.142500px;}
.y60{bottom:693.172500px;}
.y89{bottom:693.187500px;}
.y1f9{bottom:699.465000px;}
.y212{bottom:700.755000px;}
.y5f{bottom:710.415000px;}
.y88{bottom:710.430000px;}
.y25{bottom:711.105000px;}
.y19c{bottom:711.930000px;}
.y1ca{bottom:715.215000px;}
.y211{bottom:716.505000px;}
.y160{bottom:718.335000px;}
.y241{bottom:719.385000px;}
.y1f8{bottom:719.715000px;}
.y52{bottom:721.500000px;}
.y19b{bottom:727.530000px;}
.y5e{bottom:727.657500px;}
.y87{bottom:727.672500px;}
.y24{bottom:729.105000px;}
.y240{bottom:735.135000px;}
.y1c9{bottom:735.465000px;}
.y51{bottom:736.500000px;}
.y57{bottom:739.500000px;}
.y1f7{bottom:739.965000px;}
.y210{bottom:740.889000px;}
.y19a{bottom:743.130000px;}
.y5d{bottom:744.900000px;}
.y86{bottom:744.915000px;}
.y15f{bottom:746.460000px;}
.y23{bottom:747.105000px;}
.y23f{bottom:750.885000px;}
.y1c8{bottom:755.715000px;}
.y50{bottom:757.500000px;}
.y199{bottom:758.730000px;}
.y1f6{bottom:760.215000px;}
.y56{bottom:762.000000px;}
.y5c{bottom:762.142500px;}
.y85{bottom:762.157500px;}
.y15e{bottom:764.460000px;}
.y22{bottom:765.105000px;}
.y23e{bottom:766.635000px;}
.y4e{bottom:774.000000px;}
.y1c7{bottom:775.965000px;}
.y5b{bottom:779.400000px;}
.y1f5{bottom:780.465000px;}
.y54{bottom:781.333333px;}
.y23d{bottom:782.385000px;}
.y15d{bottom:782.460000px;}
.y198{bottom:782.835000px;}
.y4c{bottom:790.500000px;}
.y53{bottom:795.000000px;}
.y1c6{bottom:796.215000px;}
.y5a{bottom:796.642500px;}
.y23c{bottom:798.135000px;}
.y15c{bottom:804.960000px;}
.y21{bottom:810.105000px;}
.y59{bottom:813.885000px;}
.y15b{bottom:820.710000px;}
.y4b{bottom:821.205000px;}
.y20{bottom:861.105000px;}
.y28{bottom:924.000000px;}
.hd{height:9.333333px;}
.hc{height:12.000000px;}
.ha{height:16.500000px;}
.hf{height:18.000000px;}
.h8{height:47.085938px;}
.he{height:47.109375px;}
.h4{height:51.216000px;}
.hb{height:52.998047px;}
.h7{height:57.618000px;}
.h11{height:58.560000px;}
.h1{height:60.819000px;}
.h3{height:61.014000px;}
.h2{height:61.050000px;}
.h14{height:64.020000px;}
.h17{height:65.040000px;}
.h9{height:70.422000px;}
.h13{height:70.685400px;}
.h12{height:70.895400px;}
.h10{height:71.015400px;}
.h15{height:71.544000px;}
.h6{height:76.824000px;}
.h5{height:102.432000px;}
.h16{height:637.500000px;}
.h0{height:894.000000px;}
.w9{width:171.000000px;}
.w8{width:172.500000px;}
.w5{width:175.500000px;}
.w6{width:177.024793px;}
.w7{width:180.000000px;}
.w3{width:189.000000px;}
.w4{width:195.000000px;}
.w2{width:207.000000px;}
.w1{width:208.500000px;}
.w0{width:637.500000px;}
.wa{width:892.500000px;}
.x9{left:-1.817850px;}
.x0{left:0.000000px;}
.x12{left:1.500000px;}
.x4{left:6.000000px;}
.xa{left:27.057000px;}
.xc{left:34.546800px;}
.x23{left:54.928500px;}
.xe{left:56.274150px;}
.x1{left:76.200000px;}
.x5{left:77.415000px;}
.x27{left:91.200000px;}
.x28{left:92.415000px;}
.x13{left:93.454500px;}
.x6{left:94.641000px;}
.x8{left:97.500000px;}
.x2{left:98.700750px;}
.x14{left:99.916500px;}
.xd{left:111.000000px;}
.x18{left:112.528500px;}
.xb{left:114.000000px;}
.xf{left:127.500000px;}
.x26{left:139.980000px;}
.x25{left:141.195000px;}
.x19{left:144.028500px;}
.x15{left:165.825000px;}
.x1d{left:194.130000px;}
.x1a{left:217.680000px;}
.x1e{left:218.985000px;}
.x16{left:220.620000px;}
.x1b{left:282.810000px;}
.x7{left:296.745000px;}
.x17{left:314.745000px;}
.x1f{left:329.295000px;}
.x10{left:335.987603px;}
.x11{left:337.500000px;}
.x20{left:342.045000px;}
.x21{left:354.060000px;}
.x1c{left:372.885000px;}
.x3{left:436.890000px;}
.x22{left:861.105000px;}
.x24{left:924.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.306667pt;}
.ls29{letter-spacing:-5.690667pt;}
.ls3e{letter-spacing:-5.205333pt;}
.ls40{letter-spacing:-5.077333pt;}
.ls37{letter-spacing:-3.936533pt;}
.ls35{letter-spacing:-3.637333pt;}
.ls2c{letter-spacing:-3.156267pt;}
.ls25{letter-spacing:-2.862933pt;}
.ls26{letter-spacing:-2.516800pt;}
.ls3b{letter-spacing:-2.200000pt;}
.ls31{letter-spacing:-1.883200pt;}
.ls3c{letter-spacing:-1.749333pt;}
.ls32{letter-spacing:-1.642667pt;}
.ls68{letter-spacing:-1.584000pt;}
.ls66{letter-spacing:-1.408000pt;}
.ls8e{letter-spacing:-1.386667pt;}
.ls61{letter-spacing:-1.349333pt;}
.ls5f{letter-spacing:-1.290667pt;}
.ls2f{letter-spacing:-1.232000pt;}
.ls43{letter-spacing:-1.216000pt;}
.ls22{letter-spacing:-1.173333pt;}
.ls67{letter-spacing:-1.114667pt;}
.ls2d{letter-spacing:-1.102933pt;}
.ls73{letter-spacing:-1.066667pt;}
.ls69{letter-spacing:-1.056000pt;}
.ls3a{letter-spacing:-1.050133pt;}
.ls8d{letter-spacing:-1.040000pt;}
.ls90{letter-spacing:-1.013333pt;}
.ls28{letter-spacing:-1.003200pt;}
.ls8f{letter-spacing:-1.000000pt;}
.ls59{letter-spacing:-0.997333pt;}
.ls34{letter-spacing:-0.938667pt;}
.ls8b{letter-spacing:-0.920000pt;}
.ls8c{letter-spacing:-0.906667pt;}
.ls30{letter-spacing:-0.880000pt;}
.ls6a{letter-spacing:-0.864000pt;}
.ls60{letter-spacing:-0.821333pt;}
.ls91{letter-spacing:-0.800000pt;}
.ls70{letter-spacing:-0.768000pt;}
.ls39{letter-spacing:-0.762667pt;}
.lsc{letter-spacing:-0.760000pt;}
.ls95{letter-spacing:-0.746667pt;}
.lsd{letter-spacing:-0.721493pt;}
.ls5c{letter-spacing:-0.720000pt;}
.ls23{letter-spacing:-0.704000pt;}
.ls96{letter-spacing:-0.693333pt;}
.lse{letter-spacing:-0.682667pt;}
.ls99{letter-spacing:-0.680000pt;}
.lsb{letter-spacing:-0.658667pt;}
.ls24{letter-spacing:-0.645333pt;}
.ls9b{letter-spacing:-0.640000pt;}
.ls78{letter-spacing:-0.624000pt;}
.lsa{letter-spacing:-0.608000pt;}
.ls42{letter-spacing:-0.597333pt;}
.ls4f{letter-spacing:-0.586667pt;}
.ls3d{letter-spacing:-0.554667pt;}
.ls5b{letter-spacing:-0.540000pt;}
.ls74{letter-spacing:-0.533333pt;}
.ls2b{letter-spacing:-0.528000pt;}
.ls41{letter-spacing:-0.512000pt;}
.ls5a{letter-spacing:-0.492800pt;}
.ls6f{letter-spacing:-0.480000pt;}
.ls4c{letter-spacing:-0.469333pt;}
.ls9c{letter-spacing:-0.440000pt;}
.ls9d{letter-spacing:-0.426667pt;}
.ls58{letter-spacing:-0.410667pt;}
.ls51{letter-spacing:-0.384000pt;}
.ls93{letter-spacing:-0.373333pt;}
.ls2a{letter-spacing:-0.357867pt;}
.ls27{letter-spacing:-0.352000pt;}
.ls98{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.304000pt;}
.ls4d{letter-spacing:-0.293333pt;}
.ls92{letter-spacing:-0.280000pt;}
.ls94{letter-spacing:-0.266667pt;}
.ls4a{letter-spacing:-0.234667pt;}
.ls2e{letter-spacing:-0.228800pt;}
.ls53{letter-spacing:-0.192000pt;}
.ls4b{letter-spacing:-0.176000pt;}
.ls8a{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.152000pt;}
.ls52{letter-spacing:-0.144000pt;}
.ls89{letter-spacing:-0.120000pt;}
.ls36{letter-spacing:-0.117333pt;}
.ls9{letter-spacing:-0.113920pt;}
.ls6e{letter-spacing:-0.096000pt;}
.ls9e{letter-spacing:-0.080000pt;}
.ls33{letter-spacing:-0.076267pt;}
.ls38{letter-spacing:-0.058667pt;}
.ls71{letter-spacing:-0.053333pt;}
.ls8{letter-spacing:-0.050667pt;}
.ls54{letter-spacing:-0.048000pt;}
.ls3f{letter-spacing:-0.042667pt;}
.ls97{letter-spacing:-0.040000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls72{letter-spacing:0.042667pt;}
.ls0{letter-spacing:0.050667pt;}
.ls62{letter-spacing:0.053333pt;}
.ls1e{letter-spacing:0.058667pt;}
.ls1{letter-spacing:0.101333pt;}
.ls1d{letter-spacing:0.105600pt;}
.ls55{letter-spacing:0.117333pt;}
.ls65{letter-spacing:0.144000pt;}
.ls87{letter-spacing:0.160000pt;}
.ls47{letter-spacing:0.176000pt;}
.ls2{letter-spacing:0.202667pt;}
.ls45{letter-spacing:0.234667pt;}
.ls6c{letter-spacing:0.240000pt;}
.ls82{letter-spacing:0.266667pt;}
.ls83{letter-spacing:0.280000pt;}
.ls6d{letter-spacing:0.288000pt;}
.ls44{letter-spacing:0.293333pt;}
.ls77{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.304000pt;}
.ls76{letter-spacing:0.320000pt;}
.ls5e{letter-spacing:0.336000pt;}
.ls18{letter-spacing:0.352000pt;}
.ls3{letter-spacing:0.354667pt;}
.ls57{letter-spacing:0.360000pt;}
.ls56{letter-spacing:0.384000pt;}
.ls48{letter-spacing:0.410667pt;}
.ls50{letter-spacing:0.426667pt;}
.ls4e{letter-spacing:0.469333pt;}
.ls5d{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.528000pt;}
.ls46{letter-spacing:0.586667pt;}
.ls7e{letter-spacing:0.597333pt;}
.ls75{letter-spacing:0.645333pt;}
.ls85{letter-spacing:0.693333pt;}
.ls14{letter-spacing:0.698133pt;}
.ls11{letter-spacing:0.704000pt;}
.ls10{letter-spacing:0.762667pt;}
.ls9a{letter-spacing:0.800000pt;}
.ls1b{letter-spacing:0.821333pt;}
.ls20{letter-spacing:0.833067pt;}
.ls7a{letter-spacing:0.864000pt;}
.ls63{letter-spacing:0.880000pt;}
.lsf{letter-spacing:0.938667pt;}
.ls49{letter-spacing:0.997333pt;}
.ls19{letter-spacing:1.056000pt;}
.ls17{letter-spacing:1.114667pt;}
.ls16{letter-spacing:1.173333pt;}
.ls7b{letter-spacing:1.232000pt;}
.ls88{letter-spacing:1.280000pt;}
.ls7f{letter-spacing:1.290667pt;}
.ls81{letter-spacing:1.320000pt;}
.ls80{letter-spacing:1.333333pt;}
.ls15{letter-spacing:1.349333pt;}
.ls13{letter-spacing:1.408000pt;}
.ls64{letter-spacing:1.466667pt;}
.ls7c{letter-spacing:1.584000pt;}
.ls7d{letter-spacing:1.877333pt;}
.ls12{letter-spacing:1.994667pt;}
.ls79{letter-spacing:2.053333pt;}
.ls1f{letter-spacing:2.276267pt;}
.ls1c{letter-spacing:4.599467pt;}
.ls84{letter-spacing:11.733333pt;}
.ls86{letter-spacing:11.946667pt;}
.ls6b{letter-spacing:21.354667pt;}
.ls21{letter-spacing:42.624000pt;}
.wsc9{word-spacing:-16.720000pt;}
.ws54{word-spacing:-16.661333pt;}
.wsd6{word-spacing:-16.544000pt;}
.ws23{word-spacing:-16.016000pt;}
.wsdf{word-spacing:-15.605333pt;}
.wsd5{word-spacing:-15.546667pt;}
.ws90{word-spacing:-15.488000pt;}
.ws55{word-spacing:-15.429333pt;}
.ws20{word-spacing:-15.370667pt;}
.ws56{word-spacing:-15.253333pt;}
.ws91{word-spacing:-15.194667pt;}
.wsc8{word-spacing:-15.136000pt;}
.wsd4{word-spacing:-15.077333pt;}
.ws80{word-spacing:-15.018667pt;}
.ws17{word-spacing:-14.960000pt;}
.wsba{word-spacing:-14.901333pt;}
.ws57{word-spacing:-14.842667pt;}
.wsbb{word-spacing:-14.784000pt;}
.ws7d{word-spacing:-14.725333pt;}
.ws2e{word-spacing:-14.666667pt;}
.wsf5{word-spacing:-14.613333pt;}
.ws6a{word-spacing:-14.608000pt;}
.ws29{word-spacing:-14.590400pt;}
.ws2b{word-spacing:-14.549333pt;}
.ws7f{word-spacing:-14.490667pt;}
.ws24{word-spacing:-14.437867pt;}
.ws97{word-spacing:-14.432000pt;}
.ws95{word-spacing:-14.373333pt;}
.ws25{word-spacing:-14.314667pt;}
.ws1f{word-spacing:-14.308800pt;}
.ws7b{word-spacing:-14.256000pt;}
.ws7a{word-spacing:-14.197333pt;}
.wsde{word-spacing:-14.138667pt;}
.ws58{word-spacing:-14.080000pt;}
.wsed{word-spacing:-14.026667pt;}
.ws19{word-spacing:-14.021333pt;}
.ws18{word-spacing:-13.962667pt;}
.ws2d{word-spacing:-13.904000pt;}
.ws88{word-spacing:-13.845333pt;}
.ws16{word-spacing:-13.786667pt;}
.ws26{word-spacing:-13.728000pt;}
.wse0{word-spacing:-13.669333pt;}
.ws1d{word-spacing:-13.663467pt;}
.ws2f{word-spacing:-13.616533pt;}
.wsa2{word-spacing:-13.600000pt;}
.ws22{word-spacing:-13.563733pt;}
.wsa1{word-spacing:-13.546667pt;}
.ws1c{word-spacing:-13.493333pt;}
.ws87{word-spacing:-13.434667pt;}
.ws94{word-spacing:-13.333333pt;}
.ws92{word-spacing:-13.280000pt;}
.ws7e{word-spacing:-13.258667pt;}
.wsaa{word-spacing:-13.066667pt;}
.ws28{word-spacing:-13.024000pt;}
.wsf0{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.920000pt;}
.ws10b{word-spacing:-12.906667pt;}
.ws27{word-spacing:-12.783467pt;}
.ws108{word-spacing:-12.693333pt;}
.wsf6{word-spacing:-12.640000pt;}
.wsee{word-spacing:-12.533333pt;}
.ws71{word-spacing:-12.480000pt;}
.ws30{word-spacing:-12.466667pt;}
.wse8{word-spacing:-12.426667pt;}
.ws6f{word-spacing:-12.384000pt;}
.ws74{word-spacing:-12.336000pt;}
.wsec{word-spacing:-12.320000pt;}
.ws8a{word-spacing:-12.288000pt;}
.ws1b{word-spacing:-12.149867pt;}
.ws73{word-spacing:-12.000000pt;}
.wsea{word-spacing:-11.946667pt;}
.ws1a{word-spacing:-11.803733pt;}
.ws3a{word-spacing:-11.704000pt;}
.ws21{word-spacing:-11.510400pt;}
.wse3{word-spacing:-11.320000pt;}
.ws6e{word-spacing:-11.280000pt;}
.wsd7{word-spacing:-11.264000pt;}
.ws59{word-spacing:-11.093333pt;}
.ws2a{word-spacing:-11.029333pt;}
.wsbd{word-spacing:-10.965333pt;}
.ws31{word-spacing:-10.880000pt;}
.ws2c{word-spacing:-10.730133pt;}
.ws98{word-spacing:-10.709333pt;}
.ws39{word-spacing:-10.666667pt;}
.ws35{word-spacing:-10.624000pt;}
.wse6{word-spacing:-10.280000pt;}
.ws53{word-spacing:-10.266667pt;}
.wse5{word-spacing:-10.240000pt;}
.wsf4{word-spacing:-10.160000pt;}
.ws37{word-spacing:-10.154667pt;}
.ws33{word-spacing:-10.112000pt;}
.ws38{word-spacing:-10.069333pt;}
.wse2{word-spacing:-10.000000pt;}
.wsf7{word-spacing:-9.960000pt;}
.ws10c{word-spacing:-9.920000pt;}
.wse4{word-spacing:-9.880000pt;}
.ws6b{word-spacing:-9.773867pt;}
.wsf1{word-spacing:-9.720000pt;}
.wsf8{word-spacing:-9.680000pt;}
.ws109{word-spacing:-9.560000pt;}
.ws1{word-spacing:-9.379413pt;}
.ws72{word-spacing:-9.360000pt;}
.wsfa{word-spacing:-9.320000pt;}
.wsf9{word-spacing:-9.280000pt;}
.wsf3{word-spacing:-9.240000pt;}
.wse7{word-spacing:-9.080000pt;}
.wseb{word-spacing:-9.000000pt;}
.ws1e{word-spacing:-8.976000pt;}
.wse9{word-spacing:-8.960000pt;}
.ws32{word-spacing:-8.917333pt;}
.ws6d{word-spacing:-8.460000pt;}
.ws86{word-spacing:-6.997333pt;}
.ws15{word-spacing:-6.698667pt;}
.ws36{word-spacing:-5.589333pt;}
.ws34{word-spacing:-5.461333pt;}
.wsd3{word-spacing:-1.066667pt;}
.ws4f{word-spacing:-0.762667pt;}
.ws4d{word-spacing:-0.704000pt;}
.ws4c{word-spacing:-0.645333pt;}
.wsff{word-spacing:-0.640000pt;}
.ws9{word-spacing:-0.608000pt;}
.ws40{word-spacing:-0.586667pt;}
.ws69{word-spacing:-0.576000pt;}
.wsd{word-spacing:-0.557333pt;}
.ws63{word-spacing:-0.528000pt;}
.ws8d{word-spacing:-0.480000pt;}
.ws5b{word-spacing:-0.469333pt;}
.ws3{word-spacing:-0.456000pt;}
.ws68{word-spacing:-0.432000pt;}
.ws4b{word-spacing:-0.410667pt;}
.ws6{word-spacing:-0.405333pt;}
.ws105{word-spacing:-0.373333pt;}
.ws7{word-spacing:-0.354667pt;}
.ws3f{word-spacing:-0.352000pt;}
.ws107{word-spacing:-0.320000pt;}
.ws4a{word-spacing:-0.293333pt;}
.wsdc{word-spacing:-0.288000pt;}
.wsfb{word-spacing:-0.266667pt;}
.ws14{word-spacing:-0.253333pt;}
.wsdd{word-spacing:-0.240000pt;}
.ws64{word-spacing:-0.234667pt;}
.ws102{word-spacing:-0.213333pt;}
.ws67{word-spacing:-0.192000pt;}
.ws62{word-spacing:-0.176000pt;}
.ws75{word-spacing:-0.117333pt;}
.ws13{word-spacing:-0.101333pt;}
.ws78{word-spacing:-0.096000pt;}
.ws5f{word-spacing:-0.058667pt;}
.wse{word-spacing:-0.050667pt;}
.wsc3{word-spacing:-0.048000pt;}
.wsb{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.048000pt;}
.ws11{word-spacing:0.050667pt;}
.ws106{word-spacing:0.053333pt;}
.ws7c{word-spacing:0.058667pt;}
.ws10a{word-spacing:0.106667pt;}
.ws47{word-spacing:0.117333pt;}
.ws5{word-spacing:0.152000pt;}
.ws104{word-spacing:0.160000pt;}
.ws48{word-spacing:0.176000pt;}
.wsa{word-spacing:0.202667pt;}
.ws3c{word-spacing:0.234667pt;}
.ws100{word-spacing:0.266667pt;}
.wsd2{word-spacing:0.288000pt;}
.ws3e{word-spacing:0.293333pt;}
.ws101{word-spacing:0.320000pt;}
.ws42{word-spacing:0.352000pt;}
.wsfe{word-spacing:0.373333pt;}
.ws66{word-spacing:0.410667pt;}
.wsc2{word-spacing:0.432000pt;}
.ws10{word-spacing:0.456000pt;}
.ws3d{word-spacing:0.469333pt;}
.ws77{word-spacing:0.528000pt;}
.ws10d{word-spacing:0.533333pt;}
.ws8b{word-spacing:0.576000pt;}
.ws4e{word-spacing:0.586667pt;}
.wsc7{word-spacing:0.624000pt;}
.ws103{word-spacing:0.640000pt;}
.ws60{word-spacing:0.645333pt;}
.wsc1{word-spacing:0.698133pt;}
.ws41{word-spacing:0.704000pt;}
.ws61{word-spacing:0.762667pt;}
.ws79{word-spacing:0.768000pt;}
.ws85{word-spacing:0.816000pt;}
.wsbc{word-spacing:0.821333pt;}
.ws8f{word-spacing:0.864000pt;}
.ws76{word-spacing:0.880000pt;}
.wsf{word-spacing:0.912000pt;}
.ws43{word-spacing:0.938667pt;}
.ws83{word-spacing:0.944533pt;}
.ws8c{word-spacing:0.960000pt;}
.ws12{word-spacing:0.962667pt;}
.ws65{word-spacing:0.997333pt;}
.wsc{word-spacing:1.013333pt;}
.ws51{word-spacing:1.024000pt;}
.ws5c{word-spacing:1.056000pt;}
.wsfd{word-spacing:1.066667pt;}
.ws8{word-spacing:1.114667pt;}
.wsc4{word-spacing:1.152000pt;}
.ws44{word-spacing:1.173333pt;}
.ws4{word-spacing:1.216000pt;}
.ws45{word-spacing:1.232000pt;}
.ws46{word-spacing:1.290667pt;}
.wsa9{word-spacing:1.333333pt;}
.ws49{word-spacing:1.349333pt;}
.ws50{word-spacing:1.408000pt;}
.ws3b{word-spacing:1.466667pt;}
.wsfc{word-spacing:1.813333pt;}
.wsef{word-spacing:2.800000pt;}
.ws2{word-spacing:2.919680pt;}
.wsf2{word-spacing:3.546667pt;}
.ws84{word-spacing:3.754667pt;}
.ws70{word-spacing:3.946667pt;}
.ws99{word-spacing:3.989333pt;}
.ws5d{word-spacing:5.866667pt;}
.ws5e{word-spacing:5.925333pt;}
.ws96{word-spacing:6.688000pt;}
.wsc6{word-spacing:6.933333pt;}
.wsc5{word-spacing:7.040000pt;}
.wsdb{word-spacing:9.226667pt;}
.wsda{word-spacing:9.440000pt;}
.wse1{word-spacing:9.856000pt;}
.ws93{word-spacing:13.333333pt;}
.ws9b{word-spacing:16.960000pt;}
.ws9d{word-spacing:26.613333pt;}
.wsa0{word-spacing:27.253333pt;}
.ws9e{word-spacing:29.386667pt;}
.ws9c{word-spacing:29.440000pt;}
.ws6c{word-spacing:31.744000pt;}
.ws81{word-spacing:31.914667pt;}
.ws5a{word-spacing:32.016000pt;}
.ws82{word-spacing:32.592000pt;}
.ws89{word-spacing:33.168000pt;}
.ws9f{word-spacing:43.626667pt;}
.wsad{word-spacing:44.533333pt;}
.wsb6{word-spacing:45.120000pt;}
.wsb7{word-spacing:57.440000pt;}
.wsaf{word-spacing:57.493333pt;}
.wsab{word-spacing:58.240000pt;}
.wsb8{word-spacing:71.786667pt;}
.wsb3{word-spacing:72.586667pt;}
.ws9a{word-spacing:73.333333pt;}
.wsa5{word-spacing:74.720000pt;}
.wsac{word-spacing:79.146667pt;}
.wsb9{word-spacing:84.000000pt;}
.wsae{word-spacing:84.533333pt;}
.wsc0{word-spacing:88.693333pt;}
.wsb5{word-spacing:90.773333pt;}
.wsb2{word-spacing:101.386667pt;}
.wsb4{word-spacing:108.693333pt;}
.wsa6{word-spacing:114.720000pt;}
.wsa8{word-spacing:117.973333pt;}
.wsb1{word-spacing:124.533333pt;}
.wsbf{word-spacing:144.693333pt;}
.wsbe{word-spacing:158.026667pt;}
.wsa7{word-spacing:160.106667pt;}
.wsa4{word-spacing:164.053333pt;}
.wsa3{word-spacing:185.973333pt;}
.wsd1{word-spacing:197.120000pt;}
.wsd9{word-spacing:197.173333pt;}
.wscd{word-spacing:204.480000pt;}
.wscc{word-spacing:207.520000pt;}
.wscf{word-spacing:220.160000pt;}
.wscb{word-spacing:234.080000pt;}
.wsd0{word-spacing:278.026667pt;}
.ws52{word-spacing:312.405333pt;}
.wsb0{word-spacing:352.266667pt;}
.wsce{word-spacing:573.973333pt;}
.wsd8{word-spacing:618.720000pt;}
.wsca{word-spacing:649.546667pt;}
._a3{margin-left:-9.821333pt;}
._4{margin-left:-7.680000pt;}
._b{margin-left:-6.688000pt;}
._a{margin-left:-5.760000pt;}
._5{margin-left:-4.098667pt;}
._0{margin-left:-2.736000pt;}
._1{margin-left:-1.064000pt;}
._2{width:1.064000pt;}
._7{width:2.581333pt;}
._12{width:11.301333pt;}
._a4{width:13.248000pt;}
._8{width:15.018667pt;}
._11{width:19.093333pt;}
._d{width:21.354667pt;}
._14{width:23.840000pt;}
._10{width:26.666667pt;}
._46{width:28.480000pt;}
._1b{width:32.160000pt;}
._13{width:36.480000pt;}
._47{width:38.050667pt;}
._30{width:40.344000pt;}
._3{width:41.896000pt;}
._2c{width:43.064000pt;}
._3c{width:44.213333pt;}
._f{width:45.813333pt;}
._3d{width:46.816000pt;}
._45{width:48.426667pt;}
._2f{width:49.949333pt;}
._1d{width:50.989333pt;}
._15{width:52.480000pt;}
._6b{width:53.546667pt;}
._38{width:56.112000pt;}
._2d{width:57.813333pt;}
._48{width:60.480000pt;}
._32{width:62.826667pt;}
._94{width:65.328000pt;}
._1c{width:67.200000pt;}
._35{width:69.386667pt;}
._31{width:70.773333pt;}
._3b{width:73.008000pt;}
._4e{width:73.973333pt;}
._43{width:76.373333pt;}
._25{width:77.653333pt;}
._1f{width:81.013333pt;}
._20{width:82.400000pt;}
._42{width:83.573333pt;}
._36{width:84.480000pt;}
._34{width:86.026667pt;}
._39{width:87.360000pt;}
._5e{width:88.394667pt;}
._37{width:89.461333pt;}
._3f{width:91.818667pt;}
._21{width:92.800000pt;}
._44{width:93.744000pt;}
._2e{width:95.680000pt;}
._24{width:96.800000pt;}
._26{width:98.666667pt;}
._27{width:99.573333pt;}
._63{width:101.493333pt;}
._54{width:103.466667pt;}
._28{width:104.426667pt;}
._8e{width:106.666667pt;}
._22{width:107.840000pt;}
._40{width:110.186667pt;}
._90{width:111.392000pt;}
._6c{width:112.400000pt;}
._69{width:113.306667pt;}
._5d{width:114.773333pt;}
._49{width:116.480000pt;}
._33{width:118.346667pt;}
._82{width:120.426667pt;}
._3a{width:122.400000pt;}
._16{width:124.000000pt;}
._81{width:125.173333pt;}
._88{width:126.309333pt;}
._29{width:127.253333pt;}
._5f{width:128.800000pt;}
._1a{width:130.026667pt;}
._4d{width:131.680000pt;}
._55{width:133.493333pt;}
._3e{width:136.426667pt;}
._23{width:137.546667pt;}
._19{width:139.090667pt;}
._8a{width:140.080000pt;}
._67{width:141.120000pt;}
._4f{width:142.880000pt;}
._5c{width:143.893333pt;}
._2b{width:145.386667pt;}
._58{width:146.506667pt;}
._2a{width:147.840000pt;}
._92{width:150.885333pt;}
._83{width:151.893333pt;}
._50{width:153.920000pt;}
._75{width:155.968000pt;}
._41{width:158.378667pt;}
._56{width:159.840000pt;}
._5b{width:161.173333pt;}
._51{width:163.200000pt;}
._8d{width:164.560000pt;}
._1e{width:167.680000pt;}
._5a{width:172.800000pt;}
._60{width:174.042667pt;}
._80{width:175.520000pt;}
._74{width:177.226667pt;}
._52{width:183.466667pt;}
._59{width:184.960000pt;}
._57{width:190.240000pt;}
._8c{width:191.786667pt;}
._85{width:193.437333pt;}
._6d{width:195.360000pt;}
._7a{width:196.906667pt;}
._73{width:198.112000pt;}
._53{width:203.893333pt;}
._61{width:205.813333pt;}
._7e{width:207.680000pt;}
._7b{width:209.509333pt;}
._4c{width:210.880000pt;}
._65{width:213.333333pt;}
._7f{width:214.290667pt;}
._62{width:218.954667pt;}
._98{width:221.866667pt;}
._97{width:224.133333pt;}
._71{width:225.488000pt;}
._96{width:227.200000pt;}
._66{width:228.746667pt;}
._79{width:231.893333pt;}
._87{width:233.600000pt;}
._6e{width:235.626667pt;}
._68{width:237.173333pt;}
._72{width:243.624000pt;}
._89{width:245.386667pt;}
._a2{width:247.413333pt;}
._9a{width:250.474667pt;}
._4a{width:252.690667pt;}
._95{width:257.818667pt;}
._86{width:259.173333pt;}
._9c{width:264.160000pt;}
._a0{width:277.333333pt;}
._93{width:279.381333pt;}
._8b{width:285.760000pt;}
._4b{width:288.960000pt;}
._64{width:290.290667pt;}
._84{width:291.413333pt;}
._8f{width:292.336000pt;}
._6f{width:296.480000pt;}
._91{width:299.469333pt;}
._c{width:300.669333pt;}
._70{width:309.621333pt;}
._78{width:310.986667pt;}
._76{width:312.800000pt;}
._6a{width:315.626667pt;}
._9{width:322.386667pt;}
._99{width:329.653333pt;}
._7c{width:332.106667pt;}
._18{width:344.581333pt;}
._77{width:351.253333pt;}
._9d{width:355.573333pt;}
._a1{width:377.920000pt;}
._7d{width:385.248000pt;}
._9b{width:419.573333pt;}
._17{width:421.013333pt;}
._9f{width:446.261333pt;}
._9e{width:539.360000pt;}
._e{width:968.488000pt;}
._6{width:989.821333pt;}
.fs8{font-size:36.000000pt;}
.fs1{font-size:37.973333pt;}
.fsa{font-size:40.000000pt;}
.fs7{font-size:41.066667pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:0.510815pt;}
.y4f{bottom:1.241333pt;}
.y4d{bottom:3.241333pt;}
.y58{bottom:3.908000pt;}
.yab{bottom:47.581333pt;}
.y23b{bottom:48.893333pt;}
.yfc{bottom:49.008000pt;}
.y20f{bottom:49.050667pt;}
.y13b{bottom:49.065333pt;}
.ybc{bottom:49.080000pt;}
.y84{bottom:49.192000pt;}
.y197{bottom:49.365333pt;}
.yfd{bottom:49.560000pt;}
.yde{bottom:49.888000pt;}
.y1f4{bottom:50.000000pt;}
.y4a{bottom:50.253333pt;}
.y1d3{bottom:55.026667pt;}
.yaa{bottom:60.248000pt;}
.yfb{bottom:61.680000pt;}
.y83{bottom:61.864000pt;}
.y196{bottom:62.037333pt;}
.ydd{bottom:62.560000pt;}
.y1f{bottom:62.880000pt;}
.y23a{bottom:62.893333pt;}
.y20e{bottom:64.377333pt;}
.y13a{bottom:64.392000pt;}
.ybb{bottom:64.406667pt;}
.y1f3{bottom:65.326667pt;}
.y49{bottom:65.580000pt;}
.ya9{bottom:72.920000pt;}
.y1d2{bottom:73.026667pt;}
.y176{bottom:73.480000pt;}
.yfa{bottom:74.352000pt;}
.y82{bottom:74.536000pt;}
.y195{bottom:74.709333pt;}
.y1e{bottom:76.204667pt;}
.y239{bottom:76.893333pt;}
.y20d{bottom:79.704000pt;}
.y139{bottom:79.718667pt;}
.yba{bottom:79.733333pt;}
.y1f2{bottom:80.653333pt;}
.y48{bottom:80.906667pt;}
.yf9{bottom:87.024000pt;}
.y81{bottom:87.208000pt;}
.y194{bottom:87.381333pt;}
.y238{bottom:90.893333pt;}
.y1d1{bottom:91.026667pt;}
.y103{bottom:91.906667pt;}
.y175{bottom:94.480000pt;}
.y1d{bottom:94.875333pt;}
.y20c{bottom:95.030667pt;}
.y138{bottom:95.045333pt;}
.yb9{bottom:95.060000pt;}
.y1f1{bottom:95.980000pt;}
.y47{bottom:96.233333pt;}
.yf8{bottom:99.696000pt;}
.y80{bottom:99.880000pt;}
.y193{bottom:100.053333pt;}
.y106{bottom:100.318667pt;}
.y104{bottom:104.145333pt;}
.y237{bottom:104.893333pt;}
.y1c{bottom:108.170000pt;}
.y1d0{bottom:109.026667pt;}
.ya8{bottom:110.160000pt;}
.ydc{bottom:110.317333pt;}
.y20b{bottom:110.357333pt;}
.y137{bottom:110.372000pt;}
.yb8{bottom:110.386667pt;}
.y1f0{bottom:111.306667pt;}
.y46{bottom:111.560000pt;}
.yf7{bottom:112.368000pt;}
.y102{bottom:112.573333pt;}
.y105{bottom:118.598667pt;}
.y236{bottom:118.893333pt;}
.y174{bottom:119.480000pt;}
.y1b{bottom:121.508000pt;}
.yf6{bottom:125.040000pt;}
.ya7{bottom:125.486667pt;}
.ydb{bottom:125.644000pt;}
.y20a{bottom:125.684000pt;}
.y136{bottom:125.698667pt;}
.yb7{bottom:125.713333pt;}
.y1ef{bottom:126.633333pt;}
.y45{bottom:126.886667pt;}
.y1cf{bottom:127.026667pt;}
.y14a{bottom:132.138667pt;}
.y235{bottom:132.893333pt;}
.y101{bottom:133.240000pt;}
.y1a{bottom:134.846000pt;}
.y15a{bottom:135.002667pt;}
.y192{bottom:135.620000pt;}
.yf5{bottom:137.712000pt;}
.ya6{bottom:140.813333pt;}
.yda{bottom:140.970667pt;}
.y209{bottom:141.010667pt;}
.y135{bottom:141.025333pt;}
.y7f{bottom:141.026667pt;}
.yb6{bottom:141.040000pt;}
.y1ee{bottom:141.960000pt;}
.y44{bottom:142.213333pt;}
.y173{bottom:144.480000pt;}
.y234{bottom:146.893333pt;}
.y19{bottom:148.184000pt;}
.y184{bottom:148.266667pt;}
.y1ce{bottom:148.800000pt;}
.yf4{bottom:150.384000pt;}
.y191{bottom:150.946667pt;}
.y100{bottom:153.906667pt;}
.ya5{bottom:156.140000pt;}
.yd9{bottom:156.297333pt;}
.y208{bottom:156.337333pt;}
.y134{bottom:156.352000pt;}
.y7e{bottom:156.353333pt;}
.yb5{bottom:156.366667pt;}
.y149{bottom:157.138667pt;}
.y1ed{bottom:157.286667pt;}
.y43{bottom:157.540000pt;}
.y159{bottom:160.002667pt;}
.y233{bottom:160.893333pt;}
.y18{bottom:161.522000pt;}
.y1cd{bottom:162.800000pt;}
.yf3{bottom:163.056000pt;}
.y190{bottom:166.273333pt;}
.yff{bottom:167.906667pt;}
.y172{bottom:169.480000pt;}
.ya4{bottom:171.466667pt;}
.y207{bottom:171.664000pt;}
.y133{bottom:171.678667pt;}
.y7d{bottom:171.680000pt;}
.yb4{bottom:171.693333pt;}
.y1ec{bottom:172.613333pt;}
.y42{bottom:172.866667pt;}
.y183{bottom:173.266667pt;}
.y17{bottom:174.860000pt;}
.y232{bottom:174.893333pt;}
.yf2{bottom:175.728000pt;}
.yd8{bottom:179.294667pt;}
.y18f{bottom:181.600000pt;}
.y148{bottom:182.138667pt;}
.y158{bottom:185.002667pt;}
.ya3{bottom:186.793333pt;}
.y206{bottom:186.990667pt;}
.y132{bottom:187.005333pt;}
.y7c{bottom:187.006667pt;}
.yb3{bottom:187.020000pt;}
.y1eb{bottom:187.940000pt;}
.y41{bottom:188.193333pt;}
.y16{bottom:188.198000pt;}
.yf1{bottom:188.400000pt;}
.y231{bottom:188.893333pt;}
.y171{bottom:194.480000pt;}
.y18e{bottom:196.926667pt;}
.yfe{bottom:197.840000pt;}
.y182{bottom:198.266667pt;}
.y15{bottom:201.536000pt;}
.ya2{bottom:202.317333pt;}
.y131{bottom:202.332000pt;}
.y7b{bottom:202.333333pt;}
.yb2{bottom:202.346667pt;}
.y230{bottom:202.893333pt;}
.y1ea{bottom:203.266667pt;}
.y40{bottom:203.520000pt;}
.y1c5{bottom:203.860000pt;}
.y147{bottom:207.138667pt;}
.y157{bottom:210.002667pt;}
.y18d{bottom:212.253333pt;}
.y14{bottom:214.874000pt;}
.y22f{bottom:216.893333pt;}
.yd7{bottom:217.633333pt;}
.ya1{bottom:217.644000pt;}
.y130{bottom:217.658667pt;}
.y7a{bottom:217.660000pt;}
.yb1{bottom:217.673333pt;}
.y1e9{bottom:218.593333pt;}
.y3f{bottom:218.846667pt;}
.y1c4{bottom:219.186667pt;}
.y170{bottom:219.480000pt;}
.y181{bottom:223.266667pt;}
.y18c{bottom:227.580000pt;}
.y13{bottom:228.212000pt;}
.y22e{bottom:230.893333pt;}
.y146{bottom:232.138667pt;}
.yf0{bottom:232.898667pt;}
.yd6{bottom:232.960000pt;}
.ya0{bottom:232.970667pt;}
.y12f{bottom:232.985333pt;}
.y79{bottom:232.986667pt;}
.yb0{bottom:233.000000pt;}
.y1e8{bottom:233.920000pt;}
.y3e{bottom:234.173333pt;}
.y1c3{bottom:234.513333pt;}
.y156{bottom:235.002667pt;}
.y11f{bottom:240.506667pt;}
.y12{bottom:241.550000pt;}
.y18b{bottom:242.906667pt;}
.y16f{bottom:244.480000pt;}
.y22d{bottom:244.893333pt;}
.yef{bottom:248.225333pt;}
.y180{bottom:248.266667pt;}
.yd5{bottom:248.286667pt;}
.y9f{bottom:248.297333pt;}
.y12e{bottom:248.312000pt;}
.y78{bottom:248.313333pt;}
.yaf{bottom:248.326667pt;}
.y1e7{bottom:249.246667pt;}
.y3d{bottom:249.500000pt;}
.y1c2{bottom:249.840000pt;}
.y11e{bottom:254.506667pt;}
.y145{bottom:257.138667pt;}
.y18a{bottom:258.233333pt;}
.y22c{bottom:258.893333pt;}
.y155{bottom:260.002667pt;}
.yee{bottom:263.552000pt;}
.yd4{bottom:263.613333pt;}
.y205{bottom:263.624000pt;}
.y12d{bottom:263.638667pt;}
.y77{bottom:263.640000pt;}
.yae{bottom:263.653333pt;}
.y1e6{bottom:264.573333pt;}
.y3c{bottom:264.826667pt;}
.y1c1{bottom:265.166667pt;}
.y11{bottom:268.213333pt;}
.y16e{bottom:269.480000pt;}
.y144{bottom:271.138667pt;}
.y9e{bottom:271.294667pt;}
.y22b{bottom:272.893333pt;}
.y17f{bottom:273.266667pt;}
.y189{bottom:273.560000pt;}
.y154{bottom:274.002667pt;}
.y122{bottom:274.914667pt;}
.y11d{bottom:275.173333pt;}
.yed{bottom:278.878667pt;}
.yd3{bottom:278.940000pt;}
.y204{bottom:278.950667pt;}
.y12c{bottom:278.965333pt;}
.y76{bottom:278.966667pt;}
.yad{bottom:278.980000pt;}
.y1e5{bottom:279.900000pt;}
.y1c0{bottom:280.493333pt;}
.y22a{bottom:286.893333pt;}
.y17e{bottom:287.266667pt;}
.y3b{bottom:287.824000pt;}
.y188{bottom:288.886667pt;}
.y11c{bottom:289.173333pt;}
.yec{bottom:294.205333pt;}
.yd2{bottom:294.266667pt;}
.y203{bottom:294.277333pt;}
.y12b{bottom:294.292000pt;}
.y75{bottom:294.293333pt;}
.yac{bottom:294.306667pt;}
.y16d{bottom:294.480000pt;}
.y1e4{bottom:295.226667pt;}
.y1bf{bottom:295.820000pt;}
.y143{bottom:296.138667pt;}
.y120{bottom:298.541333pt;}
.y153{bottom:299.002667pt;}
.y10{bottom:300.200000pt;}
.y229{bottom:300.893333pt;}
.y11b{bottom:303.173333pt;}
.y187{bottom:304.213333pt;}
.yeb{bottom:309.532000pt;}
.yd1{bottom:309.593333pt;}
.y202{bottom:309.604000pt;}
.y12a{bottom:309.618667pt;}
.y74{bottom:309.620000pt;}
.y9d{bottom:309.633333pt;}
.y1e3{bottom:310.553333pt;}
.y1be{bottom:311.146667pt;}
.y16c{bottom:311.813333pt;}
.y17d{bottom:312.266667pt;}
.y121{bottom:312.994667pt;}
.yf{bottom:313.538000pt;}
.y228{bottom:314.893333pt;}
.y11a{bottom:317.173333pt;}
.y186{bottom:319.540000pt;}
.y142{bottom:321.138667pt;}
.y152{bottom:324.002667pt;}
.yd0{bottom:324.920000pt;}
.y201{bottom:324.930667pt;}
.y129{bottom:324.945333pt;}
.y73{bottom:324.946667pt;}
.y9c{bottom:324.960000pt;}
.y1e2{bottom:325.880000pt;}
.y3a{bottom:326.162667pt;}
.y1bd{bottom:326.473333pt;}
.y227{bottom:328.893333pt;}
.y16b{bottom:329.146667pt;}
.ye{bottom:332.208667pt;}
.yea{bottom:332.529333pt;}
.y185{bottom:334.866667pt;}
.y17c{bottom:337.266667pt;}
.y119{bottom:337.840000pt;}
.ycf{bottom:340.246667pt;}
.y200{bottom:340.257333pt;}
.y128{bottom:340.272000pt;}
.y72{bottom:340.273333pt;}
.y9b{bottom:340.286667pt;}
.y1e1{bottom:341.206667pt;}
.y39{bottom:341.489333pt;}
.y1bc{bottom:341.800000pt;}
.y226{bottom:342.893333pt;}
.yd{bottom:345.495333pt;}
.y141{bottom:346.138667pt;}
.ye9{bottom:347.856000pt;}
.y151{bottom:349.002667pt;}
.y16a{bottom:350.480000pt;}
.y118{bottom:351.840000pt;}
.yce{bottom:355.573333pt;}
.y1ff{bottom:355.584000pt;}
.y127{bottom:355.598667pt;}
.y71{bottom:355.600000pt;}
.y9a{bottom:355.613333pt;}
.y1e0{bottom:356.533333pt;}
.y38{bottom:356.816000pt;}
.y225{bottom:356.893333pt;}
.y1bb{bottom:357.126667pt;}
.yc{bottom:358.833333pt;}
.y17b{bottom:362.266667pt;}
.ye8{bottom:363.182667pt;}
.y169{bottom:364.480000pt;}
.y1ad{bottom:365.821333pt;}
.y117{bottom:365.840000pt;}
.y224{bottom:370.893333pt;}
.ycd{bottom:370.900000pt;}
.y1fe{bottom:370.910667pt;}
.y126{bottom:370.925333pt;}
.y70{bottom:370.926667pt;}
.y99{bottom:370.940000pt;}
.y140{bottom:371.138667pt;}
.y1df{bottom:371.860000pt;}
.y37{bottom:372.142667pt;}
.yb{bottom:372.171333pt;}
.y1ba{bottom:372.453333pt;}
.y150{bottom:374.002667pt;}
.y1ac{bottom:378.493333pt;}
.ye7{bottom:378.509333pt;}
.y116{bottom:379.840000pt;}
.y223{bottom:384.893333pt;}
.ya{bottom:385.509333pt;}
.ycc{bottom:386.226667pt;}
.y1fd{bottom:386.237333pt;}
.y125{bottom:386.252000pt;}
.y6f{bottom:386.253333pt;}
.y98{bottom:386.266667pt;}
.y1de{bottom:387.186667pt;}
.y17a{bottom:387.266667pt;}
.y36{bottom:387.469333pt;}
.y1b9{bottom:387.780000pt;}
.y13f{bottom:388.472000pt;}
.y14f{bottom:391.336000pt;}
.ye6{bottom:393.836000pt;}
.y115{bottom:393.840000pt;}
.y1ab{bottom:396.826667pt;}
.y9{bottom:398.847333pt;}
.y222{bottom:398.893333pt;}
.ycb{bottom:401.553333pt;}
.y6e{bottom:401.580000pt;}
.y97{bottom:401.593333pt;}
.y1dd{bottom:402.513333pt;}
.y35{bottom:402.796000pt;}
.y1b8{bottom:403.106667pt;}
.y179{bottom:403.266667pt;}
.y13e{bottom:405.805333pt;}
.y114{bottom:407.840000pt;}
.y14e{bottom:408.669333pt;}
.ye5{bottom:409.162667pt;}
.y1fc{bottom:409.234667pt;}
.y124{bottom:409.249333pt;}
.y8{bottom:412.185333pt;}
.y221{bottom:412.893333pt;}
.y1aa{bottom:414.693333pt;}
.yca{bottom:416.880000pt;}
.y6d{bottom:416.906667pt;}
.y96{bottom:416.920000pt;}
.y1dc{bottom:417.840000pt;}
.y34{bottom:418.122667pt;}
.y1b7{bottom:418.433333pt;}
.y178{bottom:419.266667pt;}
.ye4{bottom:424.489333pt;}
.y123{bottom:424.576000pt;}
.y7{bottom:425.523333pt;}
.y220{bottom:426.893333pt;}
.y14d{bottom:430.002667pt;}
.y13d{bottom:430.698667pt;}
.y113{bottom:430.920000pt;}
.yc9{bottom:432.206667pt;}
.y6c{bottom:432.233333pt;}
.y95{bottom:432.246667pt;}
.y1a9{bottom:432.560000pt;}
.y1db{bottom:433.166667pt;}
.y33{bottom:433.449333pt;}
.y1b6{bottom:433.760000pt;}
.y6{bottom:438.861333pt;}
.y177{bottom:439.266667pt;}
.ye3{bottom:439.816000pt;}
.y21f{bottom:440.893333pt;}
.y168{bottom:442.520000pt;}
.yc8{bottom:447.533333pt;}
.y6b{bottom:447.560000pt;}
.y94{bottom:447.573333pt;}
.y1da{bottom:448.493333pt;}
.y32{bottom:448.776000pt;}
.y1b5{bottom:449.086667pt;}
.y1a8{bottom:450.426667pt;}
.y5{bottom:452.199333pt;}
.y21e{bottom:454.893333pt;}
.ye2{bottom:455.142667pt;}
.yc7{bottom:462.860000pt;}
.y6a{bottom:462.886667pt;}
.y93{bottom:462.900000pt;}
.y167{bottom:463.520000pt;}
.y1d9{bottom:463.820000pt;}
.y31{bottom:464.102667pt;}
.y1a7{bottom:464.293333pt;}
.y1b4{bottom:464.413333pt;}
.y4{bottom:465.537333pt;}
.y21d{bottom:468.893333pt;}
.y10f{bottom:470.946667pt;}
.ye1{bottom:478.140000pt;}
.y1a6{bottom:478.160000pt;}
.yc6{bottom:478.186667pt;}
.y69{bottom:478.213333pt;}
.y92{bottom:478.226667pt;}
.y3{bottom:478.875333pt;}
.y1d8{bottom:479.146667pt;}
.y30{bottom:479.429333pt;}
.y1b3{bottom:479.740000pt;}
.y21c{bottom:482.893333pt;}
.y10e{bottom:484.946667pt;}
.y166{bottom:488.520000pt;}
.y112{bottom:492.034667pt;}
.y2{bottom:492.213333pt;}
.ye0{bottom:493.466667pt;}
.yc5{bottom:493.513333pt;}
.y68{bottom:493.540000pt;}
.y91{bottom:493.553333pt;}
.y1d7{bottom:494.473333pt;}
.y2f{bottom:494.756000pt;}
.y1b2{bottom:495.066667pt;}
.y1a5{bottom:496.026667pt;}
.y21b{bottom:496.893333pt;}
.y10d{bottom:498.946667pt;}
.y13c{bottom:499.186667pt;}
.y14c{bottom:500.266667pt;}
.y110{bottom:500.808000pt;}
.ydf{bottom:508.793333pt;}
.yc4{bottom:508.840000pt;}
.y67{bottom:508.866667pt;}
.y90{bottom:508.880000pt;}
.y1d6{bottom:509.800000pt;}
.y1a4{bottom:509.893333pt;}
.y2e{bottom:510.082667pt;}
.y1b1{bottom:510.393333pt;}
.y21a{bottom:510.893333pt;}
.y165{bottom:513.520000pt;}
.y111{bottom:515.261333pt;}
.y1{bottom:518.880000pt;}
.y10c{bottom:519.613333pt;}
.y1a3{bottom:523.760000pt;}
.yc3{bottom:524.166667pt;}
.y66{bottom:524.193333pt;}
.y8f{bottom:524.206667pt;}
.y219{bottom:524.893333pt;}
.y1d5{bottom:525.126667pt;}
.y2d{bottom:525.409333pt;}
.y1b0{bottom:525.720000pt;}
.y10b{bottom:533.613333pt;}
.y164{bottom:538.520000pt;}
.y218{bottom:538.893333pt;}
.yc2{bottom:539.493333pt;}
.y65{bottom:539.520000pt;}
.y8e{bottom:539.533333pt;}
.y1d4{bottom:540.453333pt;}
.y2c{bottom:540.736000pt;}
.y1af{bottom:541.046667pt;}
.y1a2{bottom:541.626667pt;}
.y10a{bottom:547.613333pt;}
.y217{bottom:552.893333pt;}
.yc1{bottom:554.820000pt;}
.y64{bottom:554.846667pt;}
.y8d{bottom:554.860000pt;}
.y1a1{bottom:555.493333pt;}
.y2b{bottom:556.062667pt;}
.y1ae{bottom:556.373333pt;}
.y14b{bottom:562.666667pt;}
.y163{bottom:563.520000pt;}
.y216{bottom:566.893333pt;}
.y109{bottom:568.280000pt;}
.y1a0{bottom:569.360000pt;}
.yc0{bottom:570.146667pt;}
.y63{bottom:570.173333pt;}
.y8c{bottom:570.186667pt;}
.y2a{bottom:571.389333pt;}
.y215{bottom:580.893333pt;}
.y108{bottom:582.280000pt;}
.ybf{bottom:585.473333pt;}
.y62{bottom:585.500000pt;}
.y8b{bottom:585.513333pt;}
.y19f{bottom:587.226667pt;}
.y162{bottom:588.520000pt;}
.y1fb{bottom:588.848000pt;}
.y29{bottom:594.386667pt;}
.y214{bottom:594.893333pt;}
.ybe{bottom:600.800000pt;}
.y61{bottom:600.826667pt;}
.y8a{bottom:600.840000pt;}
.y19e{bottom:601.093333pt;}
.y1fa{bottom:601.520000pt;}
.y107{bottom:602.293333pt;}
.y1cc{bottom:602.848000pt;}
.y27{bottom:603.421333pt;}
.y213{bottom:608.893333pt;}
.y161{bottom:613.520000pt;}
.y19d{bottom:614.960000pt;}
.y1cb{bottom:615.520000pt;}
.y26{bottom:616.093333pt;}
.ybd{bottom:616.126667pt;}
.y60{bottom:616.153333pt;}
.y89{bottom:616.166667pt;}
.y1f9{bottom:621.746667pt;}
.y212{bottom:622.893333pt;}
.y5f{bottom:631.480000pt;}
.y88{bottom:631.493333pt;}
.y25{bottom:632.093333pt;}
.y19c{bottom:632.826667pt;}
.y1ca{bottom:635.746667pt;}
.y211{bottom:636.893333pt;}
.y160{bottom:638.520000pt;}
.y241{bottom:639.453333pt;}
.y1f8{bottom:639.746667pt;}
.y52{bottom:641.333333pt;}
.y19b{bottom:646.693333pt;}
.y5e{bottom:646.806667pt;}
.y87{bottom:646.820000pt;}
.y24{bottom:648.093333pt;}
.y240{bottom:653.453333pt;}
.y1c9{bottom:653.746667pt;}
.y51{bottom:654.666667pt;}
.y57{bottom:657.333333pt;}
.y1f7{bottom:657.746667pt;}
.y210{bottom:658.568000pt;}
.y19a{bottom:660.560000pt;}
.y5d{bottom:662.133333pt;}
.y86{bottom:662.146667pt;}
.y15f{bottom:663.520000pt;}
.y23{bottom:664.093333pt;}
.y23f{bottom:667.453333pt;}
.y1c8{bottom:671.746667pt;}
.y50{bottom:673.333333pt;}
.y199{bottom:674.426667pt;}
.y1f6{bottom:675.746667pt;}
.y56{bottom:677.333333pt;}
.y5c{bottom:677.460000pt;}
.y85{bottom:677.473333pt;}
.y15e{bottom:679.520000pt;}
.y22{bottom:680.093333pt;}
.y23e{bottom:681.453333pt;}
.y4e{bottom:688.000000pt;}
.y1c7{bottom:689.746667pt;}
.y5b{bottom:692.800000pt;}
.y1f5{bottom:693.746667pt;}
.y54{bottom:694.518519pt;}
.y23d{bottom:695.453333pt;}
.y15d{bottom:695.520000pt;}
.y198{bottom:695.853333pt;}
.y4c{bottom:702.666667pt;}
.y53{bottom:706.666667pt;}
.y1c6{bottom:707.746667pt;}
.y5a{bottom:708.126667pt;}
.y23c{bottom:709.453333pt;}
.y15c{bottom:715.520000pt;}
.y21{bottom:720.093333pt;}
.y59{bottom:723.453333pt;}
.y15b{bottom:729.520000pt;}
.y4b{bottom:729.960000pt;}
.y20{bottom:765.426667pt;}
.y28{bottom:821.333333pt;}
.hd{height:8.296296pt;}
.hc{height:10.666667pt;}
.ha{height:14.666667pt;}
.hf{height:16.000000pt;}
.h8{height:41.854167pt;}
.he{height:41.875000pt;}
.h4{height:45.525333pt;}
.hb{height:47.109375pt;}
.h7{height:51.216000pt;}
.h11{height:52.053333pt;}
.h1{height:54.061333pt;}
.h3{height:54.234667pt;}
.h2{height:54.266667pt;}
.h14{height:56.906667pt;}
.h17{height:57.813333pt;}
.h9{height:62.597333pt;}
.h13{height:62.831467pt;}
.h12{height:63.018133pt;}
.h10{height:63.124800pt;}
.h15{height:63.594667pt;}
.h6{height:68.288000pt;}
.h5{height:91.050667pt;}
.h16{height:566.666667pt;}
.h0{height:794.666667pt;}
.w9{width:152.000000pt;}
.w8{width:153.333333pt;}
.w5{width:156.000000pt;}
.w6{width:157.355372pt;}
.w7{width:160.000000pt;}
.w3{width:168.000000pt;}
.w4{width:173.333333pt;}
.w2{width:184.000000pt;}
.w1{width:185.333333pt;}
.w0{width:566.666667pt;}
.wa{width:793.333333pt;}
.x9{left:-1.615867pt;}
.x0{left:0.000000pt;}
.x12{left:1.333333pt;}
.x4{left:5.333333pt;}
.xa{left:24.050667pt;}
.xc{left:30.708267pt;}
.x23{left:48.825333pt;}
.xe{left:50.021467pt;}
.x1{left:67.733333pt;}
.x5{left:68.813333pt;}
.x27{left:81.066667pt;}
.x28{left:82.146667pt;}
.x13{left:83.070667pt;}
.x6{left:84.125333pt;}
.x8{left:86.666667pt;}
.x2{left:87.734000pt;}
.x14{left:88.814667pt;}
.xd{left:98.666667pt;}
.x18{left:100.025333pt;}
.xb{left:101.333333pt;}
.xf{left:113.333333pt;}
.x26{left:124.426667pt;}
.x25{left:125.506667pt;}
.x19{left:128.025333pt;}
.x15{left:147.400000pt;}
.x1d{left:172.560000pt;}
.x1a{left:193.493333pt;}
.x1e{left:194.653333pt;}
.x16{left:196.106667pt;}
.x1b{left:251.386667pt;}
.x7{left:263.773333pt;}
.x17{left:279.773333pt;}
.x1f{left:292.706667pt;}
.x10{left:298.655647pt;}
.x11{left:300.000000pt;}
.x20{left:304.040000pt;}
.x21{left:314.720000pt;}
.x1c{left:331.453333pt;}
.x3{left:388.346667pt;}
.x22{left:765.426667pt;}
.x24{left:821.333333pt;}
}




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