
    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_37d3b5f5ab759d3255818801.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_340e415a455ee6af1199a537.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_c4e3d34141cdf0248b427797.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_3eb10a8bca6b33f39427aa2d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_60c014b0a6b06337f0949c8d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_534580233548dd0345875c3f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3bf879d421f6128918acaf70.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5e76aab6eb6be25ef283482f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_36e1e61d8b10e734408d6ad1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_837d4b4fcb142389d0cfc918.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_efd62e7dc3614b9790db3b37.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9af99637888dab73bfe38df5.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_58b870414ae9af775b086b26.woff2')format("woff");}.fff{font-family:fff;line-height:0.706543;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.248668,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248668,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248668,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249276,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249276,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249276,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249281,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249281,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249281,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.249899,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249899,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249899,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.250165,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250165,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250165,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250492,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250492,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250492,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.251595,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251595,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251595,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.me{transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249835,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);}
.mc{transform:matrix(0.250101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250101,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250726,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251339,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-104.400000px;}
.v5{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v3{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls5{letter-spacing:-0.540000px;}
.ls33{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.216000px;}
.ls30{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.008400px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.012960px;}
.ls22{letter-spacing:0.051840px;}
.ls32{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.076200px;}
.ls26{letter-spacing:0.106800px;}
.ls25{letter-spacing:0.135600px;}
.ls3{letter-spacing:0.147000px;}
.ls23{letter-spacing:0.149040px;}
.ls21{letter-spacing:0.166800px;}
.ls8{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.219823px;}
.ls4{letter-spacing:0.257040px;}
.ls28{letter-spacing:0.259800px;}
.ls20{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.466560px;}
.ls31{letter-spacing:0.666000px;}
.ls1f{letter-spacing:0.757553px;}
.lsf{letter-spacing:0.825726px;}
.ls17{letter-spacing:0.827746px;}
.ls15{letter-spacing:0.835445px;}
.ls29{letter-spacing:0.841147px;}
.lsb{letter-spacing:0.843144px;}
.ls9{letter-spacing:0.850168px;}
.ls1e{letter-spacing:0.852247px;}
.ls12{letter-spacing:0.860174px;}
.ls1d{letter-spacing:0.860562px;}
.ls2f{letter-spacing:0.862403px;}
.lse{letter-spacing:0.868664px;}
.ls18{letter-spacing:0.870788px;}
.ls2a{letter-spacing:0.884887px;}
.lsc{letter-spacing:0.886987px;}
.ls2c{letter-spacing:0.887930px;}
.ls34{letter-spacing:0.900000px;}
.ls13{letter-spacing:0.906374px;}
.lsd{letter-spacing:0.908299px;}
.ls19{letter-spacing:0.910520px;}
.ls11{letter-spacing:0.913163px;}
.ls16{letter-spacing:0.918989px;}
.lsa{letter-spacing:0.927458px;}
.ls2d{letter-spacing:0.935621px;}
.ls1c{letter-spacing:0.946618px;}
.ls2e{letter-spacing:0.948644px;}
.ls1a{letter-spacing:0.953563px;}
.ls10{letter-spacing:0.956331px;}
.ls1b{letter-spacing:0.991367px;}
.ls2{letter-spacing:15.300000px;}
.ls1{letter-spacing:152.244000px;}
.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;}
}
.ws13{word-spacing:-17.665920px;}
.ws1f{word-spacing:-15.606000px;}
.ws12{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.199800px;}
.ws15{word-spacing:-15.046800px;}
.ws20{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws1e{word-spacing:-14.886720px;}
.ws21{word-spacing:-14.580000px;}
.ws19{word-spacing:-13.860000px;}
.ws1a{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.284000px;}
.ws4{word-spacing:-12.780000px;}
.ws9{word-spacing:-11.669067px;}
.wsb{word-spacing:-11.644661px;}
.wse{word-spacing:-11.552679px;}
.ws7{word-spacing:-11.524498px;}
.ws11{word-spacing:-11.457985px;}
.wsc{word-spacing:-10.731497px;}
.wsa{word-spacing:-10.712736px;}
.wsf{word-spacing:-10.700432px;}
.ws10{word-spacing:-10.681725px;}
.ws5{word-spacing:-10.674331px;}
.ws6{word-spacing:-10.655669px;}
.ws16{word-spacing:-9.732960px;}
.ws14{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.711600px;}
.ws3{word-spacing:-8.356200px;}
.wsd{word-spacing:-6.840000px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:1.604677px;}
.ws1d{word-spacing:362.997919px;}
.ws1b{word-spacing:363.032415px;}
.ws1c{word-spacing:363.291136px;}
._1d{margin-left:-6.701767px;}
._1e{margin-left:-4.998863px;}
._1c{margin-left:-3.454317px;}
._1b{margin-left:-2.411392px;}
._2{margin-left:-1.340640px;}
._1{width:1.244880px;}
._3{width:3.152400px;}
._6{width:4.698000px;}
._7{width:5.778000px;}
._13{width:7.070400px;}
._15{width:8.334000px;}
._f{width:10.278720px;}
._14{width:11.324880px;}
._9{width:12.609360px;}
._8{width:13.744800px;}
._a{width:16.067520px;}
._16{width:17.488800px;}
._5{width:18.665280px;}
._4{width:19.926000px;}
._e{width:20.934000px;}
._17{width:22.290480px;}
._b{width:23.306400px;}
._c{width:24.561360px;}
._23{width:25.587360px;}
._22{width:26.772480px;}
._10{width:28.505520px;}
._19{width:30.487680px;}
._1a{width:31.971600px;}
._26{width:33.286320px;}
._2b{width:34.362000px;}
._27{width:35.377920px;}
._28{width:36.692640px;}
._18{width:38.485440px;}
._29{width:40.497840px;}
._2f{width:42.416640px;}
._2a{width:43.979760px;}
._12{width:45.150480px;}
._11{width:46.570320px;}
._20{width:48.286080px;}
._21{width:49.712160px;}
._d{width:50.855760px;}
._1f{width:51.882960px;}
._25{width:53.043120px;}
._24{width:54.381600px;}
._2e{width:55.433520px;}
._2d{width:60.656400px;}
._2c{width:62.090640px;}
._31{width:70.457040px;}
._30{width:71.771760px;}
._32{width:2304.600000px;}
._0{width:2331.996000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1f{font-size:27.360000px;}
.fse{font-size:33.120000px;}
.fsb{font-size:38.880000px;}
.fs1e{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs13{font-size:47.148979px;}
.fs12{font-size:47.231551px;}
.fs19{font-size:47.264270px;}
.fs18{font-size:47.347044px;}
.fs14{font-size:47.401486px;}
.fs15{font-size:47.484501px;}
.fs17{font-size:47.703896px;}
.fs16{font-size:47.787441px;}
.fs20{font-size:48.029498px;}
.fs22{font-size:48.048951px;}
.fs21{font-size:48.113613px;}
.fs11{font-size:48.133100px;}
.fs10{font-size:48.143522px;}
.fsf{font-size:48.227837px;}
.fs1a{font-size:49.138066px;}
.fs25{font-size:49.210728px;}
.fs1b{font-size:49.224122px;}
.fs24{font-size:49.243222px;}
.fs1d{font-size:49.279802px;}
.fs23{font-size:49.329462px;}
.fs1c{font-size:49.366107px;}
.fsd{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:63.360000px;}
.fsc{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y16f{bottom:2.520000px;}
.y169{bottom:2.700000px;}
.y262{bottom:2.865000px;}
.y266{bottom:3.225000px;}
.y26b{bottom:3.405000px;}
.y103{bottom:5.504508px;}
.yd5{bottom:5.697512px;}
.y105{bottom:5.736277px;}
.yc1{bottom:5.817694px;}
.y156{bottom:5.894847px;}
.y101{bottom:5.918546px;}
.yd1{bottom:6.089732px;}
.y298{bottom:6.166183px;}
.yd3{bottom:6.234234px;}
.y107{bottom:6.274311px;}
.y152{bottom:6.389670px;}
.yd7{bottom:6.465438px;}
.ycf{bottom:6.564525px;}
.y1d5{bottom:6.605409px;}
.y154{bottom:6.626324px;}
.y1d7{bottom:9.084673px;}
.yf0{bottom:11.529305px;}
.yf2{bottom:12.765596px;}
.yd8{bottom:12.778281px;}
.y25b{bottom:12.995722px;}
.y25c{bottom:13.016919px;}
.y299{bottom:13.345862px;}
.y17a{bottom:13.845000px;}
.y16b{bottom:13.860000px;}
.y177{bottom:14.025000px;}
.y16c{bottom:14.040000px;}
.y178{bottom:14.205000px;}
.y161{bottom:14.220000px;}
.y16e{bottom:14.400000px;}
.y167{bottom:14.580000px;}
.y168{bottom:14.760000px;}
.ybf{bottom:16.736577px;}
.y165{bottom:17.640000px;}
.y261{bottom:18.345000px;}
.y1d6{bottom:20.383399px;}
.yef{bottom:25.982499px;}
.y163{bottom:29.550000px;}
.y164{bottom:29.730000px;}
.y15a{bottom:31.840778px;}
.y158{bottom:31.995680px;}
.y263{bottom:34.005000px;}
.y296{bottom:34.625660px;}
.yb4{bottom:35.559767px;}
.y6{bottom:35.925007px;}
.y1ce{bottom:38.780044px;}
.ye7{bottom:44.675576px;}
.y264{bottom:49.530000px;}
.yb3{bottom:50.146158px;}
.y10d{bottom:51.717541px;}
.y109{bottom:51.841702px;}
.y10f{bottom:51.965864px;}
.y10b{bottom:52.090026px;}
.ybe{bottom:53.834913px;}
.y28b{bottom:53.921932px;}
.yc3{bottom:55.096761px;}
.ydf{bottom:57.420000px;}
.y1bf{bottom:59.183971px;}
.y25a{bottom:59.830792px;}
.y1c0{bottom:60.611832px;}
.y1c1{bottom:61.543046px;}
.y147{bottom:64.090496px;}
.yf5{bottom:64.440155px;}
.yde{bottom:65.129997px;}
.ydc{bottom:65.460288px;}
.yda{bottom:65.793881px;}
.y5{bottom:66.525004px;}
.y9e{bottom:66.780000px;}
.y250{bottom:66.871361px;}
.y216{bottom:67.500000px;}
.y1cd{bottom:69.861888px;}
.y1c3{bottom:72.614142px;}
.y215{bottom:74.340000px;}
.y23d{bottom:76.320000px;}
.ya3{bottom:77.580000px;}
.yf3{bottom:80.018899px;}
.y9d{bottom:81.540000px;}
.y24e{bottom:82.980000px;}
.y17f{bottom:84.420000px;}
.yc4{bottom:87.755066px;}
.y28c{bottom:88.375801px;}
.y284{bottom:89.820000px;}
.yf6{bottom:89.997626px;}
.y289{bottom:90.720000px;}
.ybd{bottom:90.955171px;}
.yb2{bottom:93.332837px;}
.ye8{bottom:93.466386px;}
.y23c{bottom:93.600000px;}
.y17e{bottom:94.500000px;}
.ya2{bottom:94.860000px;}
.y9c{bottom:96.120000px;}
.y145{bottom:96.660000px;}
.y4{bottom:97.125005px;}
.y24d{bottom:100.080000px;}
.y1cc{bottom:100.965254px;}
.y148{bottom:101.396701px;}
.y1c2{bottom:101.602618px;}
.y1ba{bottom:102.844236px;}
.y144{bottom:103.500000px;}
.y87{bottom:105.120000px;}
.y6d{bottom:105.660000px;}
.y251{bottom:105.880398px;}
.y283{bottom:107.100000px;}
.y288{bottom:107.820000px;}
.y135{bottom:108.000000px;}
.y1bb{bottom:108.597068px;}
.y23b{bottom:110.880000px;}
.y9b{bottom:111.420000px;}
.ya1{bottom:112.140000px;}
.y6c{bottom:112.500000px;}
.y214{bottom:113.760000px;}
.y143{bottom:113.940000px;}
.yf7{bottom:115.533575px;}
.y24c{bottom:117.360000px;}
.y9a{bottom:118.260000px;}
.y86{bottom:119.700000px;}
.yc5{bottom:120.412546px;}
.y6b{bottom:122.400000px;}
.y28d{bottom:122.846056px;}
.y272{bottom:122.940000px;}
.y282{bottom:124.380000px;}
.y287{bottom:125.100000px;}
.y134{bottom:125.280000px;}
.y23a{bottom:127.980000px;}
.ybc{bottom:128.070370px;}
.y99{bottom:128.520000px;}
.ya0{bottom:129.240000px;}
.y142{bottom:130.680000px;}
.y213{bottom:131.040000px;}
.y1be{bottom:131.525619px;}
.y1cb{bottom:132.047099px;}
.y85{bottom:134.460000px;}
.y24b{bottom:134.640000px;}
.y1b9{bottom:135.126312px;}
.y6a{bottom:136.980000px;}
.y149{bottom:138.702045px;}
.y23{bottom:139.264499px;}
.y271{bottom:140.220000px;}
.yf8{bottom:141.069525px;}
.y281{bottom:141.480000px;}
.ye9{bottom:142.256360px;}
.y133{bottom:142.380000px;}
.y252{bottom:144.909623px;}
.yb1{bottom:145.042858px;}
.y141{bottom:145.260000px;}
.y1b4{bottom:146.176715px;}
.y9f{bottom:146.520000px;}
.y212{bottom:148.140000px;}
.y84{bottom:149.040000px;}
.y24a{bottom:151.920000px;}
.y69{bottom:152.280000px;}
.yc6{bottom:153.070026px;}
.y28e{bottom:157.324936px;}
.y270{bottom:157.500000px;}
.y280{bottom:158.760000px;}
.y68{bottom:159.120000px;}
.y132{bottom:159.690000px;}
.y140{bottom:160.590000px;}
.y239{bottom:162.570000px;}
.y1ca{bottom:163.145498px;}
.y98{bottom:163.830000px;}
.y83{bottom:164.370000px;}
.ybb{bottom:165.168706px;}
.y1b5{bottom:165.421798px;}
.y211{bottom:165.450000px;}
.yf9{bottom:166.605474px;}
.y13f{bottom:167.430000px;}
.y67{bottom:168.870000px;}
.y249{bottom:169.230000px;}
.y82{bottom:171.210000px;}
.y26f{bottom:171.765000px;}
.y14a{bottom:176.007390px;}
.y27f{bottom:176.070000px;}
.y131{bottom:176.970000px;}
.y13e{bottom:177.690000px;}
.y1b8{bottom:178.127692px;}
.y238{bottom:179.850000px;}
.y97{bottom:181.110000px;}
.y81{bottom:181.470000px;}
.y210{bottom:182.730000px;}
.y253{bottom:183.913613px;}
.y66{bottom:184.170000px;}
.y1ad{bottom:185.453075px;}
.y19d{bottom:185.563992px;}
.y1b2{bottom:185.577236px;}
.y1ab{bottom:185.643456px;}
.y1b0{bottom:185.660011px;}
.y192{bottom:185.663322px;}
.y1a9{bottom:185.684843px;}
.y187{bottom:185.688154px;}
.yc7{bottom:185.727506px;}
.y18d{bottom:185.746096px;}
.y1bd{bottom:185.767783px;}
.y181{bottom:185.828871px;}
.y1a1{bottom:185.891780px;}
.y18b{bottom:185.911646px;}
.y1b7{bottom:185.949722px;}
.y198{bottom:185.953033px;}
.y1a4{bottom:185.991109px;}
.y19b{bottom:186.032496px;}
.y183{bottom:186.035807px;}
.y195{bottom:186.060640px;}
.y190{bottom:186.118582px;}
.y189{bottom:186.226189px;}
.y19f{bottom:186.242744px;}
.y185{bottom:186.308963px;}
.y248{bottom:186.330000px;}
.yaf{bottom:188.818726px;}
.yad{bottom:189.096964px;}
.ya7{bottom:189.243671px;}
.ya9{bottom:189.268965px;}
.ya5{bottom:189.327985px;}
.yab{bottom:189.476379px;}
.y65{bottom:191.010000px;}
.yea{bottom:191.021271px;}
.y28f{bottom:191.795191px;}
.yfa{bottom:192.141424px;}
.y27e{bottom:193.350000px;}
.y26e{bottom:193.725000px;}
.y1c9{bottom:194.227343px;}
.y130{bottom:194.250000px;}
.y1a{bottom:196.933500px;}
.y237{bottom:197.130000px;}
.y96{bottom:198.390000px;}
.y20f{bottom:200.010000px;}
.y64{bottom:200.910000px;}
.yba{bottom:202.292336px;}
.y247{bottom:203.610000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y27d{bottom:210.630000px;}
.y286{bottom:211.350000px;}
.y12f{bottom:211.530000px;}
.y14b{bottom:213.312734px;}
.y236{bottom:214.230000px;}
.y63{bottom:215.490000px;}
.y95{bottom:215.670000px;}
.y26d{bottom:215.685000px;}
.y20e{bottom:217.290000px;}
.yfb{bottom:217.693928px;}
.yc8{bottom:218.384986px;}
.y246{bottom:220.890000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y80{bottom:222.690000px;}
.y254{bottom:222.942837px;}
.y1c8{bottom:225.334020px;}
.y290{bottom:226.248198px;}
.y27c{bottom:227.730000px;}
.y12e{bottom:228.630000px;}
.y62{bottom:230.790000px;}
.y235{bottom:231.510000px;}
.y93{bottom:232.770000px;}
.y20d{bottom:234.570000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y61{bottom:237.630000px;}
.y26c{bottom:237.645000px;}
.y244{bottom:238.170000px;}
.yb9{bottom:239.407535px;}
.y94{bottom:239.610000px;}
.yeb{bottom:239.811245px;}
.y7f{bottom:239.970000px;}
.yfc{bottom:243.229878px;}
.y245{bottom:245.010000px;}
.y12d{bottom:245.910000px;}
.y60{bottom:247.350000px;}
.y234{bottom:248.790000px;}
.y92{bottom:250.050000px;}
.y14c{bottom:250.635290px;}
.yc9{bottom:251.042466px;}
.y20c{bottom:251.670000px;}
.y243{bottom:255.450000px;}
.y1c7{bottom:256.415864px;}
.y7e{bottom:257.250000px;}
.y26a{bottom:259.605000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y291{bottom:260.727077px;}
.y255{bottom:261.972062px;}
.y5f{bottom:262.110000px;}
.y27b{bottom:262.290000px;}
.y12c{bottom:263.190000px;}
.y233{bottom:266.070000px;}
.y91{bottom:267.330000px;}
.yfd{bottom:268.765828px;}
.y20b{bottom:268.950000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y242{bottom:272.730000px;}
.y7d{bottom:274.530000px;}
.yb8{bottom:276.505871px;}
.y5e{bottom:277.410000px;}
.y27a{bottom:279.570000px;}
.y12b{bottom:280.470000px;}
.y269{bottom:281.745000px;}
.y232{bottom:283.350000px;}
.yca{bottom:283.675174px;}
.y5d{bottom:284.250000px;}
.y90{bottom:284.610000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y20a{bottom:286.230000px;}
.ye5{bottom:287.310000px;}
.y1c6{bottom:287.497709px;}
.y14d{bottom:287.940635px;}
.yec{bottom:288.584510px;}
.y241{bottom:289.830000px;}
.y7b{bottom:291.810000px;}
.y5c{bottom:293.970000px;}
.yfe{bottom:294.301777px;}
.y292{bottom:295.197333px;}
.y279{bottom:296.850000px;}
.y12a{bottom:297.750000px;}
.y7c{bottom:298.650000px;}
.y231{bottom:300.630000px;}
.y256{bottom:300.984463px;}
.y8f{bottom:301.530000px;}
.y209{bottom:303.510000px;}
.y268{bottom:303.705000px;}
.ye4{bottom:304.230000px;}
.y240{bottom:306.750000px;}
.y17d{bottom:307.290000px;}
.y7a{bottom:308.910000px;}
.y5b{bottom:309.270000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y1d3{bottom:313.447366px;}
.yb7{bottom:313.629501px;}
.y278{bottom:314.130000px;}
.y285{bottom:314.850000px;}
.y129{bottom:315.030000px;}
.y8e{bottom:315.570000px;}
.y5a{bottom:316.110000px;}
.ycb{bottom:316.332654px;}
.y230{bottom:317.730000px;}
.yc2{bottom:317.952060px;}
.ye3{bottom:318.090000px;}
.y1c5{bottom:318.596108px;}
.yff{bottom:319.862559px;}
.yf4{bottom:320.733105px;}
.y208{bottom:320.790000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y24f{bottom:323.323226px;}
.y17c{bottom:324.570000px;}
.y100{bottom:325.078769px;}
.y14e{bottom:325.245979px;}
.y267{bottom:325.665000px;}
.y59{bottom:326.190000px;}
.y1d2{bottom:327.767363px;}
.y1d0{bottom:327.850138px;}
.y102{bottom:328.182980px;}
.y293{bottom:329.676212px;}
.y277{bottom:331.230000px;}
.y128{bottom:332.130000px;}
.y22f{bottom:335.010000px;}
.yed{bottom:337.374484px;}
.y207{bottom:337.890000px;}
.y17b{bottom:338.805000px;}
.y257{bottom:340.013688px;}
.yd2{bottom:341.485428px;}
.y79{bottom:343.470000px;}
.y265{bottom:347.625000px;}
.yd0{bottom:347.678376px;}
.y11{bottom:348.133500px;}
.y276{bottom:348.510000px;}
.ycc{bottom:348.990134px;}
.y127{bottom:349.410000px;}
.y1c4{bottom:349.677953px;}
.yb6{bottom:350.727837px;}
.y22e{bottom:352.290000px;}
.yce{bottom:353.252029px;}
.y206{bottom:355.170000px;}
.y58{bottom:360.750000px;}
.y179{bottom:362.385000px;}
.y14f{bottom:362.551324px;}
.y294{bottom:364.129219px;}
.y275{bottom:365.790000px;}
.y126{bottom:366.690000px;}
.ydd{bottom:368.115105px;}
.y22d{bottom:369.570000px;}
.y260{bottom:369.585000px;}
.y205{bottom:372.450000px;}
.y57{bottom:378.030000px;}
.y258{bottom:379.017678px;}
.ycd{bottom:381.647614px;}
.y125{bottom:383.970000px;}
.y176{bottom:385.965000px;}
.yee{bottom:386.139395px;}
.y10{bottom:386.785499px;}
.y22c{bottom:386.850000px;}
.yb5{bottom:387.843036px;}
.y204{bottom:389.730000px;}
.ydb{bottom:393.506192px;}
.y56{bottom:395.310000px;}
.y295{bottom:398.599475px;}
.y150{bottom:399.856668px;}
.y124{bottom:401.250000px;}
.y22b{bottom:404.130000px;}
.y2bd{bottom:406.155000px;}
.y203{bottom:407.055000px;}
.yf{bottom:408.044999px;}
.y175{bottom:409.755000px;}
.y55{bottom:412.455000px;}
.y106{bottom:417.576186px;}
.y274{bottom:418.035000px;}
.y123{bottom:418.575000px;}
.yd9{bottom:418.893977px;}
.y259{bottom:420.472518px;}
.y22a{bottom:421.275000px;}
.y2bc{bottom:423.435000px;}
.y202{bottom:424.335000px;}
.y53{bottom:429.735000px;}
.y273{bottom:431.895000px;}
.y174{bottom:433.335000px;}
.yd4{bottom:434.376347px;}
.y28a{bottom:434.641863px;}
.y122{bottom:435.675000px;}
.y25f{bottom:436.035000px;}
.y54{bottom:436.575000px;}
.y229{bottom:438.555000px;}
.y2bb{bottom:440.715000px;}
.y201{bottom:441.435000px;}
.y104{bottom:444.270979px;}
.y51{bottom:447.015000px;}
.y121{bottom:452.955000px;}
.y52{bottom:453.855000px;}
.y228{bottom:455.655000px;}
.y173{bottom:456.915000px;}
.y2ba{bottom:457.815000px;}
.y200{bottom:458.715000px;}
.y4f{bottom:464.295000px;}
.y120{bottom:470.235000px;}
.y50{bottom:471.135000px;}
.y25e{bottom:473.115000px;}
.y227{bottom:473.475000px;}
.y2b9{bottom:475.095000px;}
.y1fe{bottom:475.995000px;}
.y172{bottom:480.495000px;}
.yd6{bottom:480.823458px;}
.y78{bottom:481.395000px;}
.y4e{bottom:481.575000px;}
.y1ff{bottom:482.835000px;}
.ye{bottom:484.864502px;}
.y11f{bottom:487.515000px;}
.y226{bottom:490.755000px;}
.y2b8{bottom:492.375000px;}
.y25d{bottom:492.915000px;}
.y1fd{bottom:493.275000px;}
.y4d{bottom:498.855000px;}
.y77{bottom:499.575000px;}
.yd{bottom:502.864502px;}
.y171{bottom:504.255000px;}
.y11e{bottom:504.795000px;}
.y225{bottom:507.855000px;}
.y2b7{bottom:509.655000px;}
.y1fc{bottom:510.555000px;}
.y13d{bottom:511.635000px;}
.y4c{bottom:515.955000px;}
.y76{bottom:516.855000px;}
.yc{bottom:520.864502px;}
.y11d{bottom:521.895000px;}
.y224{bottom:525.135000px;}
.y2b6{bottom:526.935000px;}
.y170{bottom:527.835000px;}
.y4b{bottom:533.235000px;}
.y75{bottom:534.135000px;}
.yb{bottom:538.864499px;}
.y11c{bottom:539.175000px;}
.y223{bottom:542.415000px;}
.y2b5{bottom:544.215000px;}
.y1fb{bottom:544.935000px;}
.y4a{bottom:550.515000px;}
.y74{bottom:551.415000px;}
.y16d{bottom:551.955000px;}
.y11b{bottom:556.455000px;}
.ya{bottom:556.864499px;}
.y222{bottom:559.695000px;}
.y2b4{bottom:561.315000px;}
.y1fa{bottom:562.215000px;}
.y48{bottom:567.795000px;}
.y73{bottom:568.695000px;}
.y11a{bottom:573.735000px;}
.y49{bottom:574.635000px;}
.y16a{bottom:576.075000px;}
.y221{bottom:576.975000px;}
.y2b3{bottom:578.595000px;}
.y1f9{bottom:579.495000px;}
.y47{bottom:585.075000px;}
.y72{bottom:585.795000px;}
.y297{bottom:587.930751px;}
.y119{bottom:591.015000px;}
.y220{bottom:594.075000px;}
.y2b2{bottom:595.875000px;}
.y1f8{bottom:596.775000px;}
.y166{bottom:599.655000px;}
.y45{bottom:602.175000px;}
.y10e{bottom:602.577311px;}
.y71{bottom:603.075000px;}
.y118{bottom:608.295000px;}
.y13c{bottom:608.655000px;}
.y46{bottom:609.015000px;}
.y21f{bottom:611.355000px;}
.y2b1{bottom:613.155000px;}
.y1f7{bottom:614.055000px;}
.y10c{bottom:618.718349px;}
.y44{bottom:619.455000px;}
.y70{bottom:620.355000px;}
.y162{bottom:623.955000px;}
.y117{bottom:625.395000px;}
.y13b{bottom:626.295000px;}
.y21e{bottom:628.635000px;}
.y2b0{bottom:630.435000px;}
.y1f6{bottom:631.335000px;}
.y10a{bottom:634.238578px;}
.y43{bottom:636.735000px;}
.y6f{bottom:637.635000px;}
.y116{bottom:642.675000px;}
.y13a{bottom:643.575000px;}
.y9{bottom:645.510000px;}
.y21d{bottom:645.915000px;}
.y2af{bottom:647.715000px;}
.y1f5{bottom:648.435000px;}
.y108{bottom:650.379616px;}
.y42{bottom:654.045000px;}
.y6e{bottom:654.945000px;}
.y115{bottom:659.985000px;}
.y139{bottom:660.885000px;}
.y160{bottom:663.225000px;}
.y2ae{bottom:664.845000px;}
.y1f4{bottom:665.745000px;}
.y8{bottom:666.771000px;}
.y41{bottom:671.685000px;}
.y114{bottom:677.265000px;}
.y138{bottom:678.165000px;}
.y21c{bottom:680.505000px;}
.y2ad{bottom:682.125000px;}
.y1f3{bottom:683.025000px;}
.y40{bottom:687.165000px;}
.y15f{bottom:691.125000px;}
.y113{bottom:694.545000px;}
.y136{bottom:695.445000px;}
.y21b{bottom:697.605000px;}
.y2ac{bottom:699.405000px;}
.y1f2{bottom:700.305000px;}
.y137{bottom:702.285000px;}
.y3f{bottom:702.645000px;}
.y15e{bottom:710.925000px;}
.y112{bottom:712.545000px;}
.y21a{bottom:714.885000px;}
.y2ab{bottom:716.685000px;}
.y1f1{bottom:717.585000px;}
.y3e{bottom:718.305000px;}
.y8d{bottom:721.005000px;}
.ye2{bottom:724.785000px;}
.y7{bottom:726.298500px;}
.y15d{bottom:728.565000px;}
.y111{bottom:729.465000px;}
.y219{bottom:733.065000px;}
.y3d{bottom:733.785000px;}
.y23f{bottom:733.965000px;}
.y1f0{bottom:734.685000px;}
.y8c{bottom:737.925000px;}
.ye1{bottom:741.705000px;}
.y110{bottom:743.325000px;}
.y15c{bottom:745.485000px;}
.y146{bottom:746.006349px;}
.y3c{bottom:749.265000px;}
.y218{bottom:750.345000px;}
.y23e{bottom:751.065000px;}
.y2aa{bottom:751.245000px;}
.y8b{bottom:751.785000px;}
.y1ef{bottom:751.965000px;}
.y151{bottom:752.460733px;}
.y3{bottom:752.599495px;}
.yb0{bottom:754.429205px;}
.ye0{bottom:755.565000px;}
.ye6{bottom:758.156155px;}
.y15b{bottom:759.345000px;}
.y1b3{bottom:761.883105px;}
.y3b{bottom:764.745000px;}
.y1bc{bottom:766.849578px;}
.y217{bottom:768.345000px;}
.y1ee{bottom:769.245000px;}
.yae{bottom:769.605965px;}
.y1aa{bottom:771.816216px;}
.y3a{bottom:780.405000px;}
.y2a9{bottom:785.625000px;}
.y1ed{bottom:786.525000px;}
.y39{bottom:795.885000px;}
.y1af{bottom:796.027773px;}
.y1b1{bottom:797.269391px;}
.yc0{bottom:798.694433px;}
.y1ac{bottom:799.752628px;}
.y1cf{bottom:802.235865px;}
.y2a8{bottom:802.905000px;}
.y1ec{bottom:803.805000px;}
.y1a3{bottom:807.202338px;}
.y38{bottom:811.365000px;}
.yac{bottom:811.973951px;}
.y1b6{bottom:815.272857px;}
.y1d1{bottom:816.514475px;}
.y2a7{bottom:820.185000px;}
.y1a7{bottom:820.239330px;}
.y1eb{bottom:821.085000px;}
.y37{bottom:826.845000px;}
.y19a{bottom:827.068230px;}
.y1a5{bottom:831.413894px;}
.y1a0{bottom:833.276322px;}
.yaa{bottom:835.371197px;}
.y1a8{bottom:835.759558px;}
.y2a6{bottom:837.465000px;}
.y1ea{bottom:838.185000px;}
.y36{bottom:842.505000px;}
.y19c{bottom:846.930812px;}
.y193{bottom:847.551621px;}
.y197{bottom:850.034858px;}
.y1a2{bottom:851.897285px;}
.y1ae{bottom:854.380522px;}
.y2a5{bottom:854.565000px;}
.y1e9{bottom:855.465000px;}
.y35{bottom:857.985000px;}
.ya8{bottom:860.029787px;}
.y194{bottom:862.451041px;}
.yf1{bottom:866.551938px;}
.y18f{bottom:867.417514px;}
.y199{bottom:869.279941px;}
.y18a{bottom:869.900751px;}
.y2a4{bottom:871.845000px;}
.y1e8{bottom:872.745000px;}
.y34{bottom:873.465000px;}
.y1a6{bottom:873.625605px;}
.y2{bottom:879.369000px;}
.y19e{bottom:881.075315px;}
.y18c{bottom:884.179361px;}
.ya6{bottom:886.588823px;}
.y191{bottom:887.283407px;}
.y33{bottom:888.945000px;}
.y2a3{bottom:889.125000px;}
.y1e7{bottom:890.025000px;}
.y196{bottom:890.387452px;}
.y1d4{bottom:895.974735px;}
.y18e{bottom:900.320399px;}
.y186{bottom:900.941208px;}
.y180{bottom:903.424444px;}
.y32{bottom:904.650000px;}
.y2a2{bottom:906.450000px;}
.y155{bottom:906.712954px;}
.y1e6{bottom:907.350000px;}
.y188{bottom:910.253345px;}
.y182{bottom:910.874154px;}
.y184{bottom:914.599009px;}
.y31{bottom:920.130000px;}
.y2a1{bottom:923.730000px;}
.y1e5{bottom:924.630000px;}
.ya4{bottom:926.427377px;}
.y153{bottom:929.302696px;}
.y30{bottom:935.610000px;}
.y2a0{bottom:941.010000px;}
.y1e4{bottom:941.730000px;}
.y2f{bottom:951.090000px;}
.y29f{bottom:958.110000px;}
.y1e3{bottom:959.010000px;}
.y1{bottom:966.726000px;}
.y2e{bottom:966.750000px;}
.y29e{bottom:975.390000px;}
.y1e2{bottom:976.290000px;}
.y2d{bottom:982.230000px;}
.y29d{bottom:992.670000px;}
.y1e1{bottom:993.570000px;}
.y2c{bottom:998.610000px;}
.y29c{bottom:1009.950000px;}
.y1e0{bottom:1010.850000px;}
.y2b{bottom:1021.650000px;}
.y29b{bottom:1027.230000px;}
.y1df{bottom:1027.950000px;}
.y29a{bottom:1044.330000px;}
.y1de{bottom:1045.230000px;}
.y2a{bottom:1045.770000px;}
.y1dd{bottom:1062.510000px;}
.y29{bottom:1070.430000px;}
.y159{bottom:1077.104147px;}
.y1dc{bottom:1079.790000px;}
.y1db{bottom:1097.070000px;}
.y157{bottom:1099.048467px;}
.y1da{bottom:1114.350000px;}
.y28{bottom:1124.070000px;}
.y1d9{bottom:1131.450000px;}
.y27{bottom:1141.380000px;}
.y1d8{bottom:1148.760000px;}
.y8a{bottom:1165.680000px;}
.y26{bottom:1166.400000px;}
.y89{bottom:1181.160000px;}
.y25{bottom:1181.880000px;}
.y88{bottom:1196.640000px;}
.y24{bottom:1197.540000px;}
.h28{height:19.817434px;}
.h71{height:21.045000px;}
.h66{height:21.107511px;}
.h70{height:21.225000px;}
.h50{height:23.565000px;}
.h52{height:23.745000px;}
.h4a{height:23.760000px;}
.h53{height:23.781000px;}
.h51{height:24.105000px;}
.h4f{height:24.285000px;}
.h2a{height:25.391087px;}
.h30{height:26.010382px;}
.h6c{height:26.496133px;}
.h77{height:27.165700px;}
.h2c{height:31.584036px;}
.h7{height:32.130000px;}
.h27{height:32.230747px;}
.h65{height:32.282076px;}
.h26{height:32.287193px;}
.h3a{height:32.309559px;}
.h39{height:32.366143px;}
.h29{height:32.403359px;}
.h2b{height:32.460108px;}
.h35{height:32.610085px;}
.h34{height:32.667196px;}
.h68{height:32.832665px;}
.h69{height:32.890165px;}
.h22{height:32.910611px;}
.h1d{height:32.968248px;}
.h41{height:33.590475px;}
.h42{height:33.649302px;}
.h74{height:33.662359px;}
.h45{height:33.687365px;}
.h73{height:33.721312px;}
.h44{height:33.746362px;}
.h31{height:34.293612px;}
.h56{height:34.317368px;}
.h55{height:34.377468px;}
.h2e{height:34.416997px;}
.h6b{height:34.887105px;}
.h6d{height:34.934054px;}
.h24{height:34.948203px;}
.h1c{height:34.955770px;}
.h1b{height:35.016989px;}
.h76{height:35.730641px;}
.h47{height:35.780794px;}
.h78{height:35.816851px;}
.h36{height:37.595014px;}
.h11{height:38.158594px;}
.h4d{height:39.270000px;}
.h4b{height:40.985156px;}
.h13{height:41.522695px;}
.h4e{height:42.086250px;}
.h49{height:43.888641px;}
.h4c{height:44.852344px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h17{height:50.146523px;}
.h15{height:50.171484px;}
.h14{height:50.326875px;}
.he{height:52.971680px;}
.h9{height:52.998047px;}
.h6f{height:54.421875px;}
.h2{height:55.080000px;}
.h16{height:56.265469px;}
.h3c{height:57.114441px;}
.h43{height:58.087907px;}
.ha{height:58.651172px;}
.h3b{height:60.218487px;}
.h18{height:60.226875px;}
.h6e{height:62.121000px;}
.h20{height:63.235800px;}
.h3f{height:63.322533px;}
.h12{height:65.518594px;}
.hf{height:66.082500px;}
.h5e{height:72.013861px;}
.h5f{height:73.255479px;}
.h60{height:74.497098px;}
.h32{height:76.792557px;}
.h5{height:78.030000px;}
.hd{height:81.101250px;}
.hc{height:84.898125px;}
.h62{height:85.671662px;}
.hb{height:96.508125px;}
.h46{height:105.203653px;}
.h1f{height:106.236144px;}
.h61{height:114.228883px;}
.h5b{height:115.470501px;}
.h2f{height:118.285310px;}
.h4{height:119.055004px;}
.h5c{height:121.057783px;}
.h64{height:127.886684px;}
.h5d{height:144.027722px;}
.h3d{height:145.269340px;}
.h5a{height:147.752577px;}
.h48{height:150.383136px;}
.h75{height:153.938968px;}
.h1e{height:158.089500px;}
.h57{height:158.927141px;}
.h58{height:178.172225px;}
.h59{height:190.588408px;}
.h3e{height:198.038118px;}
.h54{height:198.658927px;}
.h1a{height:202.354560px;}
.h2d{height:211.798827px;}
.h37{height:221.810585px;}
.h6a{height:268.746492px;}
.h23{height:323.767296px;}
.h63{height:338.961794px;}
.h25{height:396.348682px;}
.h38{height:397.317853px;}
.h33{height:401.013487px;}
.h67{height:403.750598px;}
.h21{height:404.709120px;}
.h40{height:413.069558px;}
.h72{height:413.953528px;}
.h0{height:1262.833500px;}
.h19{height:1262.877990px;}
.h10{height:1262.878500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:14.320064px;}
.w11{width:14.942675px;}
.w1d{width:16.810509px;}
.w26{width:18.123920px;}
.we{width:18.933475px;}
.w12{width:26.149681px;}
.w3b{width:34.243630px;}
.w1b{width:37.356687px;}
.w19{width:37.979299px;}
.w1a{width:38.601910px;}
.w1c{width:39.847133px;}
.w24{width:40.131538px;}
.w25{width:40.778821px;}
.w31{width:43.401000px;}
.w3a{width:43.582802px;}
.w35{width:43.725000px;}
.w33{width:43.740000px;}
.w37{width:43.761000px;}
.w39{width:46.065000px;}
.w40{width:49.808917px;}
.w3e{width:56.657643px;}
.w3f{width:62.883757px;}
.w8{width:63.111582px;}
.w7{width:63.742698px;}
.w6{width:65.004930px;}
.w9{width:68.160509px;}
.w18{width:68.487260px;}
.w3d{width:72.845541px;}
.w34{width:73.476000px;}
.w15{width:76.581209px;}
.w42{width:77.203821px;}
.w36{width:78.645000px;}
.w45{width:79.071655px;}
.w38{width:79.185000px;}
.w30{width:84.225000px;}
.w46{width:84.675158px;}
.w32{width:91.080000px;}
.w44{width:95.882165px;}
.w47{width:97.749999px;}
.w43{width:98.372610px;}
.w16{width:103.976113px;}
.wa{width:105.396343px;}
.wb{width:111.707501px;}
.w2d{width:117.216000px;}
.w21{width:120.786623px;}
.w4a{width:121.354500px;}
.w13{width:122.031846px;}
.w2e{width:122.421000px;}
.w4e{width:123.321000px;}
.w48{width:123.698702px;}
.w41{width:123.899680px;}
.w2f{width:125.265000px;}
.w51{width:126.689615px;}
.w27{width:126.867442px;}
.w2b{width:127.641000px;}
.w4c{width:131.580000px;}
.w4b{width:131.601000px;}
.w4f{width:131.925000px;}
.w2c{width:134.820000px;}
.wc{width:136.952134px;}
.w4d{width:139.716000px;}
.w22{width:141.955412px;}
.w28{width:147.580493px;}
.w2a{width:154.108500px;}
.w29{width:163.115282px;}
.w17{width:184.915603px;}
.w52{width:186.802545px;}
.w1f{width:198.613055px;}
.w20{width:199.235667px;}
.w1e{width:204.839170px;}
.w49{width:224.677234px;}
.w14{width:243.441080px;}
.w3c{width:608.914006px;}
.wf{width:609.536617px;}
.wd{width:617.862392px;}
.w50{width:632.801700px;}
.w23{width:633.689926px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.978125px;}
.w4{width:892.978500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:7.169476px;}
.x39{left:11.435297px;}
.x34{left:13.043060px;}
.x5e{left:14.195541px;}
.x2f{left:15.315077px;}
.xb1{left:17.460000px;}
.xb0{left:19.245000px;}
.xb4{left:20.505000px;}
.x5f{left:22.314395px;}
.x6a{left:24.323354px;}
.xa5{left:25.734607px;}
.x68{left:27.087749px;}
.x37{left:29.802335px;}
.x87{left:32.105230px;}
.xb2{left:33.480000px;}
.xb7{left:34.560000px;}
.x36{left:35.883174px;}
.xa4{left:37.875530px;}
.xb6{left:41.220000px;}
.xac{left:45.251005px;}
.xb9{left:46.495951px;}
.xb5{left:48.045000px;}
.xab{left:51.393865px;}
.x94{left:55.801500px;}
.xa9{left:56.973099px;}
.x30{left:58.315102px;}
.xba{left:62.439882px;}
.x5{left:63.900000px;}
.x1c{left:68.760000px;}
.x9b{left:73.620000px;}
.xf{left:82.978500px;}
.x10{left:87.840000px;}
.x6{left:98.100000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xe{left:117.036000px;}
.x15{left:118.834500px;}
.x16{left:123.696000px;}
.x86{left:131.073914px;}
.x91{left:135.604894px;}
.x31{left:138.980579px;}
.x82{left:140.076000px;}
.xa3{left:141.892834px;}
.x26{left:142.956000px;}
.x23{left:144.216000px;}
.x19{left:145.654500px;}
.xad{left:148.447316px;}
.x1a{left:150.510000px;}
.x57{left:152.477229px;}
.x66{left:155.590286px;}
.xb8{left:174.090000px;}
.xaf{left:177.525000px;}
.x88{left:179.620129px;}
.x27{left:192.988125px;}
.x93{left:196.770000px;}
.x28{left:197.850000px;}
.x65{left:200.418311px;}
.x4{left:203.484001px;}
.x7f{left:204.776592px;}
.x38{left:207.889649px;}
.x95{left:209.925000px;}
.x6b{left:218.474044px;}
.x3a{left:222.209712px;}
.x5b{left:226.470000px;}
.x3b{left:236.529776px;}
.x6c{left:239.020222px;}
.x9f{left:240.265445px;}
.xa0{left:241.510668px;}
.xb{left:242.850000px;}
.x64{left:245.246336px;}
.x3c{left:250.227228px;}
.x6d{left:260.189011px;}
.x17{left:264.808500px;}
.x18{left:269.670000px;}
.x3d{left:278.867355px;}
.x1b{left:279.930000px;}
.x5a{left:283.710000px;}
.x9{left:289.110000px;}
.x3e{left:293.187419px;}
.x6e{left:301.281368px;}
.x3f{left:306.884871px;}
.x13{left:310.213500px;}
.x14{left:315.075000px;}
.x40{left:321.204934px;}
.x6f{left:322.450157px;}
.x58{left:327.431049px;}
.x63{left:334.902386px;}
.xa{left:336.315000px;}
.x96{left:337.575000px;}
.x70{left:342.996335px;}
.x9c{left:347.354615px;}
.x41{left:349.845061px;}
.x2e{left:357.977770px;}
.x71{left:363.542513px;}
.x8{left:364.935000px;}
.xae{left:368.075623px;}
.x2d{left:370.600087px;}
.xc{left:373.215000px;}
.xd{left:375.195000px;}
.x42{left:377.862577px;}
.x62{left:379.730411px;}
.xbb{left:380.832855px;}
.x72{left:384.711303px;}
.xaa{left:389.235000px;}
.x2c{left:392.689141px;}
.x29{left:393.951372px;}
.x2b{left:395.213604px;}
.x73{left:405.257481px;}
.x43{left:406.502704px;}
.x44{left:420.822768px;}
.x11{left:424.693500px;}
.x74{left:426.426271px;}
.x12{left:429.555000px;}
.x45{left:435.142831px;}
.x89{left:436.591427px;}
.x7{left:441.255000px;}
.xa6{left:443.236780px;}
.x24{left:446.655000px;}
.x46{left:449.462895px;}
.x3{left:454.959000px;}
.xa1{left:457.556844px;}
.x1d{left:463.575000px;}
.x21{left:468.435000px;}
.x85{left:473.295000px;}
.x47{left:478.103022px;}
.x8a{left:479.312096px;}
.x75{left:489.310028px;}
.x48{left:492.423085px;}
.x59{left:494.290920px;}
.x80{left:502.384868px;}
.x49{left:506.120537px;}
.x92{left:508.439825px;}
.x76{left:509.856206px;}
.x61{left:514.214486px;}
.x5c{left:515.231735px;}
.x4a{left:520.440601px;}
.x8b{left:522.032765px;}
.x77{left:530.402384px;}
.x4b{left:534.760664px;}
.x83{left:539.925000px;}
.x98{left:545.880000px;}
.x4c{left:549.080728px;}
.x78{left:551.571174px;}
.x35{left:552.837467px;}
.xa7{left:557.174677px;}
.x60{left:559.042511px;}
.x9d{left:560.287734px;}
.x4d{left:562.778180px;}
.x8c{left:565.400717px;}
.x32{left:567.583498px;}
.x79{left:572.117352px;}
.x4e{left:577.098243px;}
.x69{left:579.261097px;}
.xb3{left:581.520000px;}
.x5d{left:588.305250px;}
.x97{left:589.620000px;}
.x4f{left:591.418307px;}
.x7a{left:592.663530px;}
.x50{left:605.738370px;}
.x8d{left:608.121387px;}
.x7b{left:613.832319px;}
.x51{left:619.435823px;}
.xa8{left:626.907160px;}
.x52{left:633.755886px;}
.x53{left:648.075950px;}
.x8e{left:650.842056px;}
.x7c{left:654.924676px;}
.x54{left:662.396013px;}
.x99{left:668.280000px;}
.x9e{left:671.112574px;}
.xa2{left:672.980408px;}
.x55{left:676.716077px;}
.x20{left:679.605000px;}
.x8f{left:693.562725px;}
.x7d{left:696.639643px;}
.x84{left:705.930000px;}
.x67{left:712.827541px;}
.x56{left:726.524993px;}
.x7e{left:735.864165px;}
.x33{left:737.909497px;}
.x90{left:746.639920px;}
.x25{left:755.430000px;}
.x22{left:759.570000px;}
.x81{left:767.490000px;}
.x1e{left:775.228500px;}
.x1f{left:780.090000px;}
.x9a{left:791.250000px;}
@media print{
.v1{vertical-align:-92.800000pt;}
.v5{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v3{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls33{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.192000pt;}
.ls30{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.007467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.011520pt;}
.ls22{letter-spacing:0.046080pt;}
.ls32{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.067733pt;}
.ls26{letter-spacing:0.094933pt;}
.ls25{letter-spacing:0.120533pt;}
.ls3{letter-spacing:0.130667pt;}
.ls23{letter-spacing:0.132480pt;}
.ls21{letter-spacing:0.148267pt;}
.ls8{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.195399pt;}
.ls4{letter-spacing:0.228480pt;}
.ls28{letter-spacing:0.230933pt;}
.ls20{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.414720pt;}
.ls31{letter-spacing:0.592000pt;}
.ls1f{letter-spacing:0.673380pt;}
.lsf{letter-spacing:0.733979pt;}
.ls17{letter-spacing:0.735774pt;}
.ls15{letter-spacing:0.742618pt;}
.ls29{letter-spacing:0.747686pt;}
.lsb{letter-spacing:0.749461pt;}
.ls9{letter-spacing:0.755705pt;}
.ls1e{letter-spacing:0.757553pt;}
.ls12{letter-spacing:0.764599pt;}
.ls1d{letter-spacing:0.764944pt;}
.ls2f{letter-spacing:0.766581pt;}
.lse{letter-spacing:0.772146pt;}
.ls18{letter-spacing:0.774034pt;}
.ls2a{letter-spacing:0.786566pt;}
.lsc{letter-spacing:0.788433pt;}
.ls2c{letter-spacing:0.789271pt;}
.ls34{letter-spacing:0.800000pt;}
.ls13{letter-spacing:0.805666pt;}
.lsd{letter-spacing:0.807377pt;}
.ls19{letter-spacing:0.809351pt;}
.ls11{letter-spacing:0.811701pt;}
.ls16{letter-spacing:0.816879pt;}
.lsa{letter-spacing:0.824407pt;}
.ls2d{letter-spacing:0.831663pt;}
.ls1c{letter-spacing:0.841438pt;}
.ls2e{letter-spacing:0.843239pt;}
.ls1a{letter-spacing:0.847611pt;}
.ls10{letter-spacing:0.850072pt;}
.ls1b{letter-spacing:0.881215pt;}
.ls2{letter-spacing:13.600000pt;}
.ls1{letter-spacing:135.328000pt;}
.ws13{word-spacing:-15.703040pt;}
.ws1f{word-spacing:-13.872000pt;}
.ws12{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.374933pt;}
.ws20{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws1e{word-spacing:-13.232640pt;}
.ws21{word-spacing:-12.960000pt;}
.ws19{word-spacing:-12.320000pt;}
.ws1a{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.808000pt;}
.ws4{word-spacing:-11.360000pt;}
.ws9{word-spacing:-10.372504pt;}
.wsb{word-spacing:-10.350809pt;}
.wse{word-spacing:-10.269048pt;}
.ws7{word-spacing:-10.243999pt;}
.ws11{word-spacing:-10.184875pt;}
.wsc{word-spacing:-9.539109pt;}
.wsa{word-spacing:-9.522432pt;}
.wsf{word-spacing:-9.511495pt;}
.ws10{word-spacing:-9.494867pt;}
.ws5{word-spacing:-9.488294pt;}
.ws6{word-spacing:-9.471706pt;}
.ws16{word-spacing:-8.651520pt;}
.ws14{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.632533pt;}
.ws3{word-spacing:-7.427733pt;}
.wsd{word-spacing:-6.080000pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:1.426380pt;}
.ws1d{word-spacing:322.664817pt;}
.ws1b{word-spacing:322.695480pt;}
.ws1c{word-spacing:322.925454pt;}
._1d{margin-left:-5.957127pt;}
._1e{margin-left:-4.443434pt;}
._1c{margin-left:-3.070504pt;}
._1b{margin-left:-2.143459pt;}
._2{margin-left:-1.191680pt;}
._1{width:1.106560pt;}
._3{width:2.802133pt;}
._6{width:4.176000pt;}
._7{width:5.136000pt;}
._13{width:6.284800pt;}
._15{width:7.408000pt;}
._f{width:9.136640pt;}
._14{width:10.066560pt;}
._9{width:11.208320pt;}
._8{width:12.217600pt;}
._a{width:14.282240pt;}
._16{width:15.545600pt;}
._5{width:16.591360pt;}
._4{width:17.712000pt;}
._e{width:18.608000pt;}
._17{width:19.813760pt;}
._b{width:20.716800pt;}
._c{width:21.832320pt;}
._23{width:22.744320pt;}
._22{width:23.797760pt;}
._10{width:25.338240pt;}
._19{width:27.100160pt;}
._1a{width:28.419200pt;}
._26{width:29.587840pt;}
._2b{width:30.544000pt;}
._27{width:31.447040pt;}
._28{width:32.615680pt;}
._18{width:34.209280pt;}
._29{width:35.998080pt;}
._2f{width:37.703680pt;}
._2a{width:39.093120pt;}
._12{width:40.133760pt;}
._11{width:41.395840pt;}
._20{width:42.920960pt;}
._21{width:44.188587pt;}
._d{width:45.205120pt;}
._1f{width:46.118187pt;}
._25{width:47.149440pt;}
._24{width:48.339200pt;}
._2e{width:49.274240pt;}
._2d{width:53.916800pt;}
._2c{width:55.191680pt;}
._31{width:62.628480pt;}
._30{width:63.797120pt;}
._32{width:2048.533333pt;}
._0{width:2072.885333pt;}
.fs1f{font-size:24.320000pt;}
.fse{font-size:29.440000pt;}
.fsb{font-size:34.560000pt;}
.fs1e{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs13{font-size:41.910203pt;}
.fs12{font-size:41.983601pt;}
.fs19{font-size:42.012684pt;}
.fs18{font-size:42.086262pt;}
.fs14{font-size:42.134654pt;}
.fs15{font-size:42.208445pt;}
.fs17{font-size:42.403463pt;}
.fs16{font-size:42.477725pt;}
.fs20{font-size:42.692887pt;}
.fs22{font-size:42.710179pt;}
.fs21{font-size:42.767656pt;}
.fs11{font-size:42.784978pt;}
.fs10{font-size:42.794242pt;}
.fsf{font-size:42.869188pt;}
.fs1a{font-size:43.678281pt;}
.fs25{font-size:43.742869pt;}
.fs1b{font-size:43.754775pt;}
.fs24{font-size:43.771753pt;}
.fs1d{font-size:43.804269pt;}
.fs23{font-size:43.848411pt;}
.fs1c{font-size:43.880984pt;}
.fsd{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:56.320000pt;}
.fsc{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y16f{bottom:2.240000pt;}
.y169{bottom:2.400000pt;}
.y262{bottom:2.546667pt;}
.y266{bottom:2.866667pt;}
.y26b{bottom:3.026667pt;}
.y103{bottom:4.892896pt;}
.yd5{bottom:5.064455pt;}
.y105{bottom:5.098912pt;}
.yc1{bottom:5.171283pt;}
.y156{bottom:5.239864pt;}
.y101{bottom:5.260930pt;}
.yd1{bottom:5.413095pt;}
.y298{bottom:5.481051pt;}
.yd3{bottom:5.541542pt;}
.y107{bottom:5.577165pt;}
.y152{bottom:5.679706pt;}
.yd7{bottom:5.747056pt;}
.ycf{bottom:5.835133pt;}
.y1d5{bottom:5.871475pt;}
.y154{bottom:5.890066pt;}
.y1d7{bottom:8.075265pt;}
.yf0{bottom:10.248271pt;}
.yf2{bottom:11.347196pt;}
.yd8{bottom:11.358472pt;}
.y25b{bottom:11.551753pt;}
.y25c{bottom:11.570595pt;}
.y299{bottom:11.862988pt;}
.y17a{bottom:12.306667pt;}
.y16b{bottom:12.320000pt;}
.y177{bottom:12.466667pt;}
.y16c{bottom:12.480000pt;}
.y178{bottom:12.626667pt;}
.y161{bottom:12.640000pt;}
.y16e{bottom:12.800000pt;}
.y167{bottom:12.960000pt;}
.y168{bottom:13.120000pt;}
.ybf{bottom:14.876957pt;}
.y165{bottom:15.680000pt;}
.y261{bottom:16.306667pt;}
.y1d6{bottom:18.118577pt;}
.yef{bottom:23.095555pt;}
.y163{bottom:26.266667pt;}
.y164{bottom:26.426667pt;}
.y15a{bottom:28.302914pt;}
.y158{bottom:28.440604pt;}
.y263{bottom:30.226667pt;}
.y296{bottom:30.778365pt;}
.yb4{bottom:31.608682pt;}
.y6{bottom:31.933340pt;}
.y1ce{bottom:34.471150pt;}
.ye7{bottom:39.711623pt;}
.y264{bottom:44.026667pt;}
.yb3{bottom:44.574363pt;}
.y10d{bottom:45.971147pt;}
.y109{bottom:46.081513pt;}
.y10f{bottom:46.191879pt;}
.y10b{bottom:46.302245pt;}
.ybe{bottom:47.853256pt;}
.y28b{bottom:47.930606pt;}
.yc3{bottom:48.974898pt;}
.ydf{bottom:51.040000pt;}
.y1bf{bottom:52.607974pt;}
.y25a{bottom:53.182926pt;}
.y1c0{bottom:53.877184pt;}
.y1c1{bottom:54.704929pt;}
.y147{bottom:56.969330pt;}
.yf5{bottom:57.280138pt;}
.yde{bottom:57.893331pt;}
.ydc{bottom:58.186922pt;}
.yda{bottom:58.483450pt;}
.y5{bottom:59.133337pt;}
.y9e{bottom:59.360000pt;}
.y250{bottom:59.441210pt;}
.y216{bottom:60.000000pt;}
.y1cd{bottom:62.099456pt;}
.y1c3{bottom:64.545904pt;}
.y215{bottom:66.080000pt;}
.y23d{bottom:67.840000pt;}
.ya3{bottom:68.960000pt;}
.yf3{bottom:71.127911pt;}
.y9d{bottom:72.480000pt;}
.y24e{bottom:73.760000pt;}
.y17f{bottom:75.040000pt;}
.yc4{bottom:78.004503pt;}
.y28c{bottom:78.556268pt;}
.y284{bottom:79.840000pt;}
.yf6{bottom:79.997890pt;}
.y289{bottom:80.640000pt;}
.ybd{bottom:80.849041pt;}
.yb2{bottom:82.962522pt;}
.ye8{bottom:83.081232pt;}
.y23c{bottom:83.200000pt;}
.y17e{bottom:84.000000pt;}
.ya2{bottom:84.320000pt;}
.y9c{bottom:85.440000pt;}
.y145{bottom:85.920000pt;}
.y4{bottom:86.333337pt;}
.y24d{bottom:88.960000pt;}
.y1cc{bottom:89.746893pt;}
.y148{bottom:90.130401pt;}
.y1c2{bottom:90.313438pt;}
.y1ba{bottom:91.417099pt;}
.y144{bottom:92.000000pt;}
.y87{bottom:93.440000pt;}
.y6d{bottom:93.920000pt;}
.y251{bottom:94.115909pt;}
.y283{bottom:95.200000pt;}
.y288{bottom:95.840000pt;}
.y135{bottom:96.000000pt;}
.y1bb{bottom:96.530727pt;}
.y23b{bottom:98.560000pt;}
.y9b{bottom:99.040000pt;}
.ya1{bottom:99.680000pt;}
.y6c{bottom:100.000000pt;}
.y214{bottom:101.120000pt;}
.y143{bottom:101.280000pt;}
.yf7{bottom:102.696511pt;}
.y24c{bottom:104.320000pt;}
.y9a{bottom:105.120000pt;}
.y86{bottom:106.400000pt;}
.yc5{bottom:107.033374pt;}
.y6b{bottom:108.800000pt;}
.y28d{bottom:109.196495pt;}
.y272{bottom:109.280000pt;}
.y282{bottom:110.560000pt;}
.y287{bottom:111.200000pt;}
.y134{bottom:111.360000pt;}
.y23a{bottom:113.760000pt;}
.ybc{bottom:113.840329pt;}
.y99{bottom:114.240000pt;}
.ya0{bottom:114.880000pt;}
.y142{bottom:116.160000pt;}
.y213{bottom:116.480000pt;}
.y1be{bottom:116.911661pt;}
.y1cb{bottom:117.375199pt;}
.y85{bottom:119.520000pt;}
.y24b{bottom:119.680000pt;}
.y1b9{bottom:120.112277pt;}
.y6a{bottom:121.760000pt;}
.y149{bottom:123.290707pt;}
.y23{bottom:123.790666pt;}
.y271{bottom:124.640000pt;}
.yf8{bottom:125.395133pt;}
.y281{bottom:125.760000pt;}
.ye9{bottom:126.450098pt;}
.y133{bottom:126.560000pt;}
.y252{bottom:128.808553pt;}
.yb1{bottom:128.926985pt;}
.y141{bottom:129.120000pt;}
.y1b4{bottom:129.934858pt;}
.y9f{bottom:130.240000pt;}
.y212{bottom:131.680000pt;}
.y84{bottom:132.480000pt;}
.y24a{bottom:135.040000pt;}
.y69{bottom:135.360000pt;}
.yc6{bottom:136.062245pt;}
.y28e{bottom:139.844387pt;}
.y270{bottom:140.000000pt;}
.y280{bottom:141.120000pt;}
.y68{bottom:141.440000pt;}
.y132{bottom:141.946667pt;}
.y140{bottom:142.746667pt;}
.y239{bottom:144.506667pt;}
.y1ca{bottom:145.018221pt;}
.y98{bottom:145.626667pt;}
.y83{bottom:146.106667pt;}
.ybb{bottom:146.816627pt;}
.y1b5{bottom:147.041599pt;}
.y211{bottom:147.066667pt;}
.yf9{bottom:148.093755pt;}
.y13f{bottom:148.826667pt;}
.y67{bottom:150.106667pt;}
.y249{bottom:150.426667pt;}
.y82{bottom:152.186667pt;}
.y26f{bottom:152.680000pt;}
.y14a{bottom:156.451013pt;}
.y27f{bottom:156.506667pt;}
.y131{bottom:157.306667pt;}
.y13e{bottom:157.946667pt;}
.y1b8{bottom:158.335726pt;}
.y238{bottom:159.866667pt;}
.y97{bottom:160.986667pt;}
.y81{bottom:161.306667pt;}
.y210{bottom:162.426667pt;}
.y253{bottom:163.478767pt;}
.y66{bottom:163.706667pt;}
.y1ad{bottom:164.847177pt;}
.y19d{bottom:164.945771pt;}
.y1b2{bottom:164.957543pt;}
.y1ab{bottom:165.016405pt;}
.y1b0{bottom:165.031121pt;}
.y192{bottom:165.034064pt;}
.y1a9{bottom:165.053194pt;}
.y187{bottom:165.056137pt;}
.yc7{bottom:165.091116pt;}
.y18d{bottom:165.107641pt;}
.y1bd{bottom:165.126919pt;}
.y181{bottom:165.181219pt;}
.y1a1{bottom:165.237138pt;}
.y18b{bottom:165.254796pt;}
.y1b7{bottom:165.288642pt;}
.y198{bottom:165.291585pt;}
.y1a4{bottom:165.325430pt;}
.y19b{bottom:165.362219pt;}
.y183{bottom:165.365162pt;}
.y195{bottom:165.387235pt;}
.y190{bottom:165.438740pt;}
.y189{bottom:165.534390pt;}
.y19f{bottom:165.549106pt;}
.y185{bottom:165.607968pt;}
.y248{bottom:165.626667pt;}
.yaf{bottom:167.838868pt;}
.yad{bottom:168.086190pt;}
.ya7{bottom:168.216596pt;}
.ya9{bottom:168.239080pt;}
.ya5{bottom:168.291542pt;}
.yab{bottom:168.423448pt;}
.y65{bottom:169.786667pt;}
.yea{bottom:169.796685pt;}
.y28f{bottom:170.484614pt;}
.yfa{bottom:170.792377pt;}
.y27e{bottom:171.866667pt;}
.y26e{bottom:172.200000pt;}
.y1c9{bottom:172.646527pt;}
.y130{bottom:172.666667pt;}
.y1a{bottom:175.052000pt;}
.y237{bottom:175.226667pt;}
.y96{bottom:176.346667pt;}
.y20f{bottom:177.786667pt;}
.y64{bottom:178.586667pt;}
.yba{bottom:179.815410pt;}
.y247{bottom:180.986667pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y27d{bottom:187.226667pt;}
.y286{bottom:187.866667pt;}
.y12f{bottom:188.026667pt;}
.y14b{bottom:189.611319pt;}
.y236{bottom:190.426667pt;}
.y63{bottom:191.546667pt;}
.y95{bottom:191.706667pt;}
.y26d{bottom:191.720000pt;}
.y20e{bottom:193.146667pt;}
.yfb{bottom:193.505714pt;}
.yc8{bottom:194.119987pt;}
.y246{bottom:196.346667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y80{bottom:197.946667pt;}
.y254{bottom:198.171411pt;}
.y1c8{bottom:200.296906pt;}
.y290{bottom:201.109510pt;}
.y27c{bottom:202.426667pt;}
.y12e{bottom:203.226667pt;}
.y62{bottom:205.146667pt;}
.y235{bottom:205.786667pt;}
.y93{bottom:206.906667pt;}
.y20d{bottom:208.506667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y61{bottom:211.226667pt;}
.y26c{bottom:211.240000pt;}
.y244{bottom:211.706667pt;}
.yb9{bottom:212.806698pt;}
.y94{bottom:212.986667pt;}
.yeb{bottom:213.165551pt;}
.y7f{bottom:213.306667pt;}
.yfc{bottom:216.204336pt;}
.y245{bottom:217.786667pt;}
.y12d{bottom:218.586667pt;}
.y60{bottom:219.866667pt;}
.y234{bottom:221.146667pt;}
.y92{bottom:222.266667pt;}
.y14c{bottom:222.786924pt;}
.yc9{bottom:223.148858pt;}
.y20c{bottom:223.706667pt;}
.y243{bottom:227.066667pt;}
.y1c7{bottom:227.925213pt;}
.y7e{bottom:228.666667pt;}
.y26a{bottom:230.760000pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y291{bottom:231.757402pt;}
.y255{bottom:232.864055pt;}
.y5f{bottom:232.986667pt;}
.y27b{bottom:233.146667pt;}
.y12c{bottom:233.946667pt;}
.y233{bottom:236.506667pt;}
.y91{bottom:237.626667pt;}
.yfd{bottom:238.902958pt;}
.y20b{bottom:239.066667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y242{bottom:242.426667pt;}
.y7d{bottom:244.026667pt;}
.yb8{bottom:245.782996pt;}
.y5e{bottom:246.586667pt;}
.y27a{bottom:248.506667pt;}
.y12b{bottom:249.306667pt;}
.y269{bottom:250.440000pt;}
.y232{bottom:251.866667pt;}
.yca{bottom:252.155710pt;}
.y5d{bottom:252.666667pt;}
.y90{bottom:252.986667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y20a{bottom:254.426667pt;}
.ye5{bottom:255.386667pt;}
.y1c6{bottom:255.553519pt;}
.y14d{bottom:255.947231pt;}
.yec{bottom:256.519565pt;}
.y241{bottom:257.626667pt;}
.y7b{bottom:259.386667pt;}
.y5c{bottom:261.306667pt;}
.yfe{bottom:261.601580pt;}
.y292{bottom:262.397629pt;}
.y279{bottom:263.866667pt;}
.y12a{bottom:264.666667pt;}
.y7c{bottom:265.466667pt;}
.y231{bottom:267.226667pt;}
.y256{bottom:267.541745pt;}
.y8f{bottom:268.026667pt;}
.y209{bottom:269.786667pt;}
.y268{bottom:269.960000pt;}
.ye4{bottom:270.426667pt;}
.y240{bottom:272.666667pt;}
.y17d{bottom:273.146667pt;}
.y7a{bottom:274.586667pt;}
.y5b{bottom:274.906667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y1d3{bottom:278.619880pt;}
.yb7{bottom:278.781779pt;}
.y278{bottom:279.226667pt;}
.y285{bottom:279.866667pt;}
.y129{bottom:280.026667pt;}
.y8e{bottom:280.506667pt;}
.y5a{bottom:280.986667pt;}
.ycb{bottom:281.184581pt;}
.y230{bottom:282.426667pt;}
.yc2{bottom:282.624053pt;}
.ye3{bottom:282.746667pt;}
.y1c5{bottom:283.196541pt;}
.yff{bottom:284.322275pt;}
.yf4{bottom:285.096093pt;}
.y208{bottom:285.146667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y24f{bottom:287.398423pt;}
.y17c{bottom:288.506667pt;}
.y100{bottom:288.958905pt;}
.y14e{bottom:289.107537pt;}
.y267{bottom:289.480000pt;}
.y59{bottom:289.946667pt;}
.y1d2{bottom:291.348767pt;}
.y1d0{bottom:291.422345pt;}
.y102{bottom:291.718204pt;}
.y293{bottom:293.045522pt;}
.y277{bottom:294.426667pt;}
.y128{bottom:295.226667pt;}
.y22f{bottom:297.786667pt;}
.yed{bottom:299.888431pt;}
.y207{bottom:300.346667pt;}
.y17b{bottom:301.160000pt;}
.y257{bottom:302.234389pt;}
.yd2{bottom:303.542603pt;}
.y79{bottom:305.306667pt;}
.y265{bottom:309.000000pt;}
.yd0{bottom:309.047445pt;}
.y11{bottom:309.452000pt;}
.y276{bottom:309.786667pt;}
.ycc{bottom:310.213452pt;}
.y127{bottom:310.586667pt;}
.y1c4{bottom:310.824847pt;}
.yb6{bottom:311.758077pt;}
.y22e{bottom:313.146667pt;}
.yce{bottom:314.001804pt;}
.y206{bottom:315.706667pt;}
.y58{bottom:320.666667pt;}
.y179{bottom:322.120000pt;}
.y14f{bottom:322.267843pt;}
.y294{bottom:323.670417pt;}
.y275{bottom:325.146667pt;}
.y126{bottom:325.946667pt;}
.ydd{bottom:327.213427pt;}
.y22d{bottom:328.506667pt;}
.y260{bottom:328.520000pt;}
.y205{bottom:331.066667pt;}
.y57{bottom:336.026667pt;}
.y258{bottom:336.904603pt;}
.ycd{bottom:339.242323pt;}
.y125{bottom:341.306667pt;}
.y176{bottom:343.080000pt;}
.yee{bottom:343.235018pt;}
.y10{bottom:343.809333pt;}
.y22c{bottom:343.866667pt;}
.yb5{bottom:344.749365pt;}
.y204{bottom:346.426667pt;}
.ydb{bottom:349.783282pt;}
.y56{bottom:351.386667pt;}
.y295{bottom:354.310644pt;}
.y150{bottom:355.428149pt;}
.y124{bottom:356.666667pt;}
.y22b{bottom:359.226667pt;}
.y2bd{bottom:361.026667pt;}
.y203{bottom:361.826667pt;}
.yf{bottom:362.706666pt;}
.y175{bottom:364.226667pt;}
.y55{bottom:366.626667pt;}
.y106{bottom:371.178832pt;}
.y274{bottom:371.586667pt;}
.y123{bottom:372.066667pt;}
.yd9{bottom:372.350202pt;}
.y259{bottom:373.753349pt;}
.y22a{bottom:374.466667pt;}
.y2bc{bottom:376.386667pt;}
.y202{bottom:377.186667pt;}
.y53{bottom:381.986667pt;}
.y273{bottom:383.906667pt;}
.y174{bottom:385.186667pt;}
.yd4{bottom:386.112309pt;}
.y28a{bottom:386.348322pt;}
.y122{bottom:387.266667pt;}
.y25f{bottom:387.586667pt;}
.y54{bottom:388.066667pt;}
.y229{bottom:389.826667pt;}
.y2bb{bottom:391.746667pt;}
.y201{bottom:392.386667pt;}
.y104{bottom:394.907537pt;}
.y51{bottom:397.346667pt;}
.y121{bottom:402.626667pt;}
.y52{bottom:403.426667pt;}
.y228{bottom:405.026667pt;}
.y173{bottom:406.146667pt;}
.y2ba{bottom:406.946667pt;}
.y200{bottom:407.746667pt;}
.y4f{bottom:412.706667pt;}
.y120{bottom:417.986667pt;}
.y50{bottom:418.786667pt;}
.y25e{bottom:420.546667pt;}
.y227{bottom:420.866667pt;}
.y2b9{bottom:422.306667pt;}
.y1fe{bottom:423.106667pt;}
.y172{bottom:427.106667pt;}
.yd6{bottom:427.398630pt;}
.y78{bottom:427.906667pt;}
.y4e{bottom:428.066667pt;}
.y1ff{bottom:429.186667pt;}
.ye{bottom:430.990669pt;}
.y11f{bottom:433.346667pt;}
.y226{bottom:436.226667pt;}
.y2b8{bottom:437.666667pt;}
.y25d{bottom:438.146667pt;}
.y1fd{bottom:438.466667pt;}
.y4d{bottom:443.426667pt;}
.y77{bottom:444.066667pt;}
.yd{bottom:446.990669pt;}
.y171{bottom:448.226667pt;}
.y11e{bottom:448.706667pt;}
.y225{bottom:451.426667pt;}
.y2b7{bottom:453.026667pt;}
.y1fc{bottom:453.826667pt;}
.y13d{bottom:454.786667pt;}
.y4c{bottom:458.626667pt;}
.y76{bottom:459.426667pt;}
.yc{bottom:462.990669pt;}
.y11d{bottom:463.906667pt;}
.y224{bottom:466.786667pt;}
.y2b6{bottom:468.386667pt;}
.y170{bottom:469.186667pt;}
.y4b{bottom:473.986667pt;}
.y75{bottom:474.786667pt;}
.yb{bottom:478.990666pt;}
.y11c{bottom:479.266667pt;}
.y223{bottom:482.146667pt;}
.y2b5{bottom:483.746667pt;}
.y1fb{bottom:484.386667pt;}
.y4a{bottom:489.346667pt;}
.y74{bottom:490.146667pt;}
.y16d{bottom:490.626667pt;}
.y11b{bottom:494.626667pt;}
.ya{bottom:494.990666pt;}
.y222{bottom:497.506667pt;}
.y2b4{bottom:498.946667pt;}
.y1fa{bottom:499.746667pt;}
.y48{bottom:504.706667pt;}
.y73{bottom:505.506667pt;}
.y11a{bottom:509.986667pt;}
.y49{bottom:510.786667pt;}
.y16a{bottom:512.066667pt;}
.y221{bottom:512.866667pt;}
.y2b3{bottom:514.306667pt;}
.y1f9{bottom:515.106667pt;}
.y47{bottom:520.066667pt;}
.y72{bottom:520.706667pt;}
.y297{bottom:522.605112pt;}
.y119{bottom:525.346667pt;}
.y220{bottom:528.066667pt;}
.y2b2{bottom:529.666667pt;}
.y1f8{bottom:530.466667pt;}
.y166{bottom:533.026667pt;}
.y45{bottom:535.266667pt;}
.y10e{bottom:535.624277pt;}
.y71{bottom:536.066667pt;}
.y118{bottom:540.706667pt;}
.y13c{bottom:541.026667pt;}
.y46{bottom:541.346667pt;}
.y21f{bottom:543.426667pt;}
.y2b1{bottom:545.026667pt;}
.y1f7{bottom:545.826667pt;}
.y10c{bottom:549.971866pt;}
.y44{bottom:550.626667pt;}
.y70{bottom:551.426667pt;}
.y162{bottom:554.626667pt;}
.y117{bottom:555.906667pt;}
.y13b{bottom:556.706667pt;}
.y21e{bottom:558.786667pt;}
.y2b0{bottom:560.386667pt;}
.y1f6{bottom:561.186667pt;}
.y10a{bottom:563.767625pt;}
.y43{bottom:565.986667pt;}
.y6f{bottom:566.786667pt;}
.y116{bottom:571.266667pt;}
.y13a{bottom:572.066667pt;}
.y9{bottom:573.786667pt;}
.y21d{bottom:574.146667pt;}
.y2af{bottom:575.746667pt;}
.y1f5{bottom:576.386667pt;}
.y108{bottom:578.115214pt;}
.y42{bottom:581.373333pt;}
.y6e{bottom:582.173333pt;}
.y115{bottom:586.653333pt;}
.y139{bottom:587.453333pt;}
.y160{bottom:589.533333pt;}
.y2ae{bottom:590.973333pt;}
.y1f4{bottom:591.773333pt;}
.y8{bottom:592.685334pt;}
.y41{bottom:597.053333pt;}
.y114{bottom:602.013333pt;}
.y138{bottom:602.813333pt;}
.y21c{bottom:604.893333pt;}
.y2ad{bottom:606.333333pt;}
.y1f3{bottom:607.133333pt;}
.y40{bottom:610.813333pt;}
.y15f{bottom:614.333333pt;}
.y113{bottom:617.373333pt;}
.y136{bottom:618.173333pt;}
.y21b{bottom:620.093333pt;}
.y2ac{bottom:621.693333pt;}
.y1f2{bottom:622.493333pt;}
.y137{bottom:624.253333pt;}
.y3f{bottom:624.573333pt;}
.y15e{bottom:631.933333pt;}
.y112{bottom:633.373333pt;}
.y21a{bottom:635.453333pt;}
.y2ab{bottom:637.053333pt;}
.y1f1{bottom:637.853333pt;}
.y3e{bottom:638.493333pt;}
.y8d{bottom:640.893333pt;}
.ye2{bottom:644.253333pt;}
.y7{bottom:645.598667pt;}
.y15d{bottom:647.613333pt;}
.y111{bottom:648.413333pt;}
.y219{bottom:651.613333pt;}
.y3d{bottom:652.253333pt;}
.y23f{bottom:652.413333pt;}
.y1f0{bottom:653.053333pt;}
.y8c{bottom:655.933333pt;}
.ye1{bottom:659.293333pt;}
.y110{bottom:660.733333pt;}
.y15c{bottom:662.653333pt;}
.y146{bottom:663.116755pt;}
.y3c{bottom:666.013333pt;}
.y218{bottom:666.973333pt;}
.y23e{bottom:667.613333pt;}
.y2aa{bottom:667.773333pt;}
.y8b{bottom:668.253333pt;}
.y1ef{bottom:668.413333pt;}
.y151{bottom:668.853985pt;}
.y3{bottom:668.977329pt;}
.yb0{bottom:670.603737pt;}
.ye0{bottom:671.613333pt;}
.ye6{bottom:673.916582pt;}
.y15b{bottom:674.973333pt;}
.y1b3{bottom:677.229426pt;}
.y3b{bottom:679.773333pt;}
.y1bc{bottom:681.644069pt;}
.y217{bottom:682.973333pt;}
.y1ee{bottom:683.773333pt;}
.yae{bottom:684.094191pt;}
.y1aa{bottom:686.058859pt;}
.y3a{bottom:693.693333pt;}
.y2a9{bottom:698.333333pt;}
.y1ed{bottom:699.133333pt;}
.y39{bottom:707.453333pt;}
.y1af{bottom:707.580243pt;}
.y1b1{bottom:708.683903pt;}
.yc0{bottom:709.950607pt;}
.y1ac{bottom:710.891225pt;}
.y1cf{bottom:713.098546pt;}
.y2a8{bottom:713.693333pt;}
.y1ec{bottom:714.493333pt;}
.y1a3{bottom:717.513189pt;}
.y38{bottom:721.213333pt;}
.yac{bottom:721.754623pt;}
.y1b6{bottom:724.686984pt;}
.y1d1{bottom:725.790644pt;}
.y2a7{bottom:729.053333pt;}
.y1a7{bottom:729.101627pt;}
.y1eb{bottom:729.853333pt;}
.y37{bottom:734.973333pt;}
.y19a{bottom:735.171760pt;}
.y1a5{bottom:739.034573pt;}
.y1a0{bottom:740.690064pt;}
.yaa{bottom:742.552175pt;}
.y1a8{bottom:742.897385pt;}
.y2a6{bottom:744.413333pt;}
.y1ea{bottom:745.053333pt;}
.y36{bottom:748.893333pt;}
.y19c{bottom:752.827389pt;}
.y193{bottom:753.379219pt;}
.y197{bottom:755.586540pt;}
.y1a2{bottom:757.242031pt;}
.y1ae{bottom:759.449353pt;}
.y2a5{bottom:759.613333pt;}
.y1e9{bottom:760.413333pt;}
.y35{bottom:762.653333pt;}
.ya8{bottom:764.470921pt;}
.y194{bottom:766.623147pt;}
.yf1{bottom:770.268389pt;}
.y18f{bottom:771.037790pt;}
.y199{bottom:772.693281pt;}
.y18a{bottom:773.245112pt;}
.y2a4{bottom:774.973333pt;}
.y1e8{bottom:775.773333pt;}
.y34{bottom:776.413333pt;}
.y1a6{bottom:776.556094pt;}
.y2{bottom:781.661334pt;}
.y19e{bottom:783.178058pt;}
.y18c{bottom:785.937210pt;}
.ya6{bottom:788.078953pt;}
.y191{bottom:788.696361pt;}
.y33{bottom:790.173333pt;}
.y2a3{bottom:790.333333pt;}
.y1e7{bottom:791.133333pt;}
.y196{bottom:791.455513pt;}
.y1d4{bottom:796.421986pt;}
.y18e{bottom:800.284799pt;}
.y186{bottom:800.836629pt;}
.y180{bottom:803.043951pt;}
.y32{bottom:804.133333pt;}
.y2a2{bottom:805.733333pt;}
.y155{bottom:805.967070pt;}
.y1e6{bottom:806.533333pt;}
.y188{bottom:809.114084pt;}
.y182{bottom:809.665915pt;}
.y184{bottom:812.976897pt;}
.y31{bottom:817.893333pt;}
.y2a1{bottom:821.093333pt;}
.y1e5{bottom:821.893333pt;}
.ya4{bottom:823.491001pt;}
.y153{bottom:826.046841pt;}
.y30{bottom:831.653333pt;}
.y2a0{bottom:836.453333pt;}
.y1e4{bottom:837.093333pt;}
.y2f{bottom:845.413333pt;}
.y29f{bottom:851.653333pt;}
.y1e3{bottom:852.453333pt;}
.y1{bottom:859.312000pt;}
.y2e{bottom:859.333333pt;}
.y29e{bottom:867.013333pt;}
.y1e2{bottom:867.813333pt;}
.y2d{bottom:873.093333pt;}
.y29d{bottom:882.373333pt;}
.y1e1{bottom:883.173333pt;}
.y2c{bottom:887.653333pt;}
.y29c{bottom:897.733333pt;}
.y1e0{bottom:898.533333pt;}
.y2b{bottom:908.133333pt;}
.y29b{bottom:913.093333pt;}
.y1df{bottom:913.733333pt;}
.y29a{bottom:928.293333pt;}
.y1de{bottom:929.093333pt;}
.y2a{bottom:929.573333pt;}
.y1dd{bottom:944.453333pt;}
.y29{bottom:951.493333pt;}
.y159{bottom:957.425908pt;}
.y1dc{bottom:959.813333pt;}
.y1db{bottom:975.173333pt;}
.y157{bottom:976.931971pt;}
.y1da{bottom:990.533333pt;}
.y28{bottom:999.173333pt;}
.y1d9{bottom:1005.733333pt;}
.y27{bottom:1014.560000pt;}
.y1d8{bottom:1021.120000pt;}
.y8a{bottom:1036.160000pt;}
.y26{bottom:1036.800000pt;}
.y89{bottom:1049.920000pt;}
.y25{bottom:1050.560000pt;}
.y88{bottom:1063.680000pt;}
.y24{bottom:1064.480000pt;}
.h28{height:17.615497pt;}
.h71{height:18.706667pt;}
.h66{height:18.762232pt;}
.h70{height:18.866667pt;}
.h50{height:20.946667pt;}
.h52{height:21.106667pt;}
.h4a{height:21.120000pt;}
.h53{height:21.138667pt;}
.h51{height:21.426667pt;}
.h4f{height:21.586667pt;}
.h2a{height:22.569855pt;}
.h30{height:23.120340pt;}
.h6c{height:23.552118pt;}
.h77{height:24.147289pt;}
.h2c{height:28.074698pt;}
.h7{height:28.560000pt;}
.h27{height:28.649553pt;}
.h65{height:28.695178pt;}
.h26{height:28.699727pt;}
.h3a{height:28.719608pt;}
.h39{height:28.769905pt;}
.h29{height:28.802986pt;}
.h2b{height:28.853429pt;}
.h35{height:28.986742pt;}
.h34{height:29.037507pt;}
.h68{height:29.184591pt;}
.h69{height:29.235702pt;}
.h22{height:29.253876pt;}
.h1d{height:29.305109pt;}
.h41{height:29.858200pt;}
.h42{height:29.910491pt;}
.h74{height:29.922097pt;}
.h45{height:29.944324pt;}
.h73{height:29.974500pt;}
.h44{height:29.996766pt;}
.h31{height:30.483210pt;}
.h56{height:30.504327pt;}
.h55{height:30.557749pt;}
.h2e{height:30.592886pt;}
.h6b{height:31.010760pt;}
.h6d{height:31.052492pt;}
.h24{height:31.065069pt;}
.h1c{height:31.071796pt;}
.h1b{height:31.126212pt;}
.h76{height:31.760570pt;}
.h47{height:31.805150pt;}
.h78{height:31.837201pt;}
.h36{height:33.417791pt;}
.h11{height:33.918750pt;}
.h4d{height:34.906667pt;}
.h4b{height:36.431250pt;}
.h13{height:36.909063pt;}
.h4e{height:37.410000pt;}
.h49{height:39.012125pt;}
.h4c{height:39.868750pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h17{height:44.574687pt;}
.h15{height:44.596875pt;}
.h14{height:44.735000pt;}
.he{height:47.085938pt;}
.h9{height:47.109375pt;}
.h6f{height:48.375000pt;}
.h2{height:48.960000pt;}
.h16{height:50.013750pt;}
.h3c{height:50.768392pt;}
.h43{height:51.633695pt;}
.ha{height:52.134375pt;}
.h3b{height:53.527544pt;}
.h18{height:53.535000pt;}
.h6e{height:55.218667pt;}
.h20{height:56.209600pt;}
.h3f{height:56.286696pt;}
.h12{height:58.238750pt;}
.hf{height:58.740000pt;}
.h5e{height:64.012321pt;}
.h5f{height:65.115982pt;}
.h60{height:66.219642pt;}
.h32{height:68.260051pt;}
.h5{height:69.360000pt;}
.hd{height:72.090000pt;}
.hc{height:75.465000pt;}
.h62{height:76.152589pt;}
.hb{height:85.785000pt;}
.h46{height:93.514358pt;}
.h1f{height:94.432128pt;}
.h61{height:101.536785pt;}
.h5b{height:102.640445pt;}
.h2f{height:105.142497pt;}
.h4{height:105.826671pt;}
.h5c{height:107.606919pt;}
.h64{height:113.677053pt;}
.h5d{height:128.024642pt;}
.h3d{height:129.128302pt;}
.h5a{height:131.335624pt;}
.h48{height:133.673899pt;}
.h75{height:136.834639pt;}
.h1e{height:140.524000pt;}
.h57{height:141.268570pt;}
.h58{height:158.375311pt;}
.h59{height:169.411918pt;}
.h3e{height:176.033882pt;}
.h54{height:176.585713pt;}
.h1a{height:179.870720pt;}
.h2d{height:188.265624pt;}
.h37{height:197.164964pt;}
.h6a{height:238.885771pt;}
.h23{height:287.793152pt;}
.h63{height:301.299372pt;}
.h25{height:352.309939pt;}
.h38{height:353.171425pt;}
.h33{height:356.456433pt;}
.h67{height:358.889421pt;}
.h21{height:359.741440pt;}
.h40{height:367.172941pt;}
.h72{height:367.958692pt;}
.h0{height:1122.518667pt;}
.h19{height:1122.558213pt;}
.h10{height:1122.558667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:12.728945pt;}
.w11{width:13.282378pt;}
.w1d{width:14.942675pt;}
.w26{width:16.110151pt;}
.we{width:16.829755pt;}
.w12{width:23.244161pt;}
.w3b{width:30.438782pt;}
.w1b{width:33.205944pt;}
.w19{width:33.759377pt;}
.w1a{width:34.312809pt;}
.w1c{width:35.419674pt;}
.w24{width:35.672478pt;}
.w25{width:36.247840pt;}
.w31{width:38.578667pt;}
.w3a{width:38.740268pt;}
.w35{width:38.866667pt;}
.w33{width:38.880000pt;}
.w37{width:38.898667pt;}
.w39{width:40.946667pt;}
.w40{width:44.274593pt;}
.w3e{width:50.362349pt;}
.w3f{width:55.896673pt;}
.w8{width:56.099184pt;}
.w7{width:56.660176pt;}
.w6{width:57.782160pt;}
.w9{width:60.587119pt;}
.w18{width:60.877565pt;}
.w3d{width:64.751592pt;}
.w34{width:65.312000pt;}
.w15{width:68.072186pt;}
.w42{width:68.625618pt;}
.w36{width:69.906667pt;}
.w45{width:70.285916pt;}
.w38{width:70.386667pt;}
.w30{width:74.866667pt;}
.w46{width:75.266807pt;}
.w32{width:80.960000pt;}
.w44{width:85.228591pt;}
.w47{width:86.888888pt;}
.w43{width:87.442320pt;}
.w16{width:92.423212pt;}
.wa{width:93.685638pt;}
.wb{width:99.295556pt;}
.w2d{width:104.192000pt;}
.w21{width:107.365887pt;}
.w4a{width:107.870667pt;}
.w13{width:108.472752pt;}
.w2e{width:108.818667pt;}
.w4e{width:109.618667pt;}
.w48{width:109.954401pt;}
.w41{width:110.133049pt;}
.w2f{width:111.346667pt;}
.w51{width:112.612991pt;}
.w27{width:112.771059pt;}
.w2b{width:113.458667pt;}
.w4c{width:116.960000pt;}
.w4b{width:116.978667pt;}
.w4f{width:117.266667pt;}
.w2c{width:119.840000pt;}
.wc{width:121.735230pt;}
.w4d{width:124.192000pt;}
.w22{width:126.182589pt;}
.w28{width:131.182661pt;}
.w2a{width:136.985333pt;}
.w29{width:144.991362pt;}
.w17{width:164.369425pt;}
.w52{width:166.046707pt;}
.w1f{width:176.544938pt;}
.w20{width:177.098370pt;}
.w1e{width:182.079262pt;}
.w49{width:199.713096pt;}
.w14{width:216.392071pt;}
.w3c{width:541.256894pt;}
.wf{width:541.810326pt;}
.wd{width:549.211015pt;}
.w50{width:562.490400pt;}
.w23{width:563.279934pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.758333pt;}
.w4{width:793.758667pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:6.372867pt;}
.x39{left:10.164709pt;}
.x34{left:11.593831pt;}
.x5e{left:12.618259pt;}
.x2f{left:13.613402pt;}
.xb1{left:15.520000pt;}
.xb0{left:17.106667pt;}
.xb4{left:18.226667pt;}
.x5f{left:19.835017pt;}
.x6a{left:21.620759pt;}
.xa5{left:22.875206pt;}
.x68{left:24.077999pt;}
.x37{left:26.490965pt;}
.x87{left:28.537982pt;}
.xb2{left:29.760000pt;}
.xb7{left:30.720000pt;}
.x36{left:31.896154pt;}
.xa4{left:33.667138pt;}
.xb6{left:36.640000pt;}
.xac{left:40.223115pt;}
.xb9{left:41.329734pt;}
.xb5{left:42.706667pt;}
.xab{left:45.683436pt;}
.x94{left:49.601333pt;}
.xa9{left:50.642755pt;}
.x30{left:51.835646pt;}
.xba{left:55.502117pt;}
.x5{left:56.800000pt;}
.x1c{left:61.120000pt;}
.x9b{left:65.440000pt;}
.xf{left:73.758667pt;}
.x10{left:78.080000pt;}
.x6{left:87.200000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xe{left:104.032000pt;}
.x15{left:105.630667pt;}
.x16{left:109.952000pt;}
.x86{left:116.510146pt;}
.x91{left:120.537684pt;}
.x31{left:123.538293pt;}
.x82{left:124.512000pt;}
.xa3{left:126.126964pt;}
.x26{left:127.072000pt;}
.x23{left:128.192000pt;}
.x19{left:129.470667pt;}
.xad{left:131.953170pt;}
.x1a{left:133.786667pt;}
.x57{left:135.535315pt;}
.x66{left:138.302477pt;}
.xb8{left:154.746667pt;}
.xaf{left:157.800000pt;}
.x88{left:159.662337pt;}
.x27{left:171.545000pt;}
.x93{left:174.906667pt;}
.x28{left:175.866667pt;}
.x65{left:178.149610pt;}
.x4{left:180.874667pt;}
.x7f{left:182.023637pt;}
.x38{left:184.790799pt;}
.x95{left:186.600000pt;}
.x6b{left:194.199150pt;}
.x3a{left:197.519744pt;}
.x5b{left:201.306667pt;}
.x3b{left:210.248690pt;}
.x6c{left:212.462419pt;}
.x9f{left:213.569284pt;}
.xa0{left:214.676149pt;}
.xb{left:215.866667pt;}
.x64{left:217.996743pt;}
.x3c{left:222.424203pt;}
.x6d{left:231.279121pt;}
.x17{left:235.385333pt;}
.x18{left:239.706667pt;}
.x3d{left:247.882093pt;}
.x1b{left:248.826667pt;}
.x5a{left:252.186667pt;}
.x9{left:256.986667pt;}
.x3e{left:260.611039pt;}
.x6e{left:267.805660pt;}
.x3f{left:272.786552pt;}
.x13{left:275.745333pt;}
.x14{left:280.066667pt;}
.x40{left:285.515497pt;}
.x6f{left:286.622362pt;}
.x58{left:291.049821pt;}
.x63{left:297.691010pt;}
.xa{left:298.946667pt;}
.x96{left:300.066667pt;}
.x70{left:304.885631pt;}
.x9c{left:308.759658pt;}
.x41{left:310.973388pt;}
.x2e{left:318.202462pt;}
.x71{left:323.148901pt;}
.x8{left:324.386667pt;}
.xae{left:327.178332pt;}
.x2d{left:329.422299pt;}
.xc{left:331.746667pt;}
.xd{left:333.506667pt;}
.x42{left:335.877846pt;}
.x62{left:337.538143pt;}
.xbb{left:338.518093pt;}
.x72{left:341.965603pt;}
.xaa{left:345.986667pt;}
.x2c{left:349.057014pt;}
.x29{left:350.178998pt;}
.x2b{left:351.300981pt;}
.x73{left:360.228872pt;}
.x43{left:361.335737pt;}
.x44{left:374.064682pt;}
.x11{left:377.505333pt;}
.x74{left:379.045574pt;}
.x12{left:381.826667pt;}
.x45{left:386.793628pt;}
.x89{left:388.081268pt;}
.x7{left:392.226667pt;}
.xa6{left:393.988249pt;}
.x24{left:397.026667pt;}
.x46{left:399.522573pt;}
.x3{left:404.408000pt;}
.xa1{left:406.717194pt;}
.x1d{left:412.066667pt;}
.x21{left:416.386667pt;}
.x85{left:420.706667pt;}
.x47{left:424.980464pt;}
.x8a{left:426.055197pt;}
.x75{left:434.942247pt;}
.x48{left:437.709409pt;}
.x59{left:439.369706pt;}
.x80{left:446.564328pt;}
.x49{left:449.884922pt;}
.x92{left:451.946511pt;}
.x76{left:453.205516pt;}
.x61{left:457.079543pt;}
.x5c{left:457.983765pt;}
.x4a{left:462.613867pt;}
.x8b{left:464.029125pt;}
.x77{left:471.468786pt;}
.x4b{left:475.342813pt;}
.x83{left:479.933333pt;}
.x98{left:485.226667pt;}
.x4c{left:488.071758pt;}
.x78{left:490.285488pt;}
.x35{left:491.411082pt;}
.xa7{left:495.266379pt;}
.x60{left:496.926677pt;}
.x9d{left:498.033541pt;}
.x4d{left:500.247271pt;}
.x8c{left:502.578415pt;}
.x32{left:504.518665pt;}
.x79{left:508.548757pt;}
.x4e{left:512.976216pt;}
.x69{left:514.898753pt;}
.xb3{left:516.906667pt;}
.x5d{left:522.938000pt;}
.x97{left:524.106667pt;}
.x4f{left:525.705162pt;}
.x7a{left:526.812027pt;}
.x50{left:538.434107pt;}
.x8d{left:540.552344pt;}
.x7b{left:545.628728pt;}
.x51{left:550.609620pt;}
.xa8{left:557.250809pt;}
.x52{left:563.338565pt;}
.x53{left:576.067511pt;}
.x8e{left:578.526272pt;}
.x7c{left:582.155267pt;}
.x54{left:588.796456pt;}
.x99{left:594.026667pt;}
.x9e{left:596.544510pt;}
.xa2{left:598.204807pt;}
.x55{left:601.525402pt;}
.x20{left:604.093333pt;}
.x8f{left:616.500200pt;}
.x7d{left:619.235239pt;}
.x84{left:627.493333pt;}
.x67{left:633.624481pt;}
.x56{left:645.799994pt;}
.x7e{left:654.101480pt;}
.x33{left:655.919553pt;}
.x90{left:663.679929pt;}
.x25{left:671.493333pt;}
.x22{left:675.173333pt;}
.x81{left:682.213333pt;}
.x1e{left:689.092000pt;}
.x1f{left:693.413333pt;}
.x9a{left:703.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; }
  