
    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_2c14773a6dba42cccdd1c8e8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_28b153fc0fdb4a4c6aff09ea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.142090;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_080abbbff7c6d3fcd20fed1f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_99418a13ac5e4daa77322659.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_329527c4a080e8ecc3aab10a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239258;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_a4afa133fc9c39578b8e3221.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_695364ab3b7100479d8276ce.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239258;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_000d480cde3f6460cfed7ba7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_d289a628845ccff7a09966e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.731445;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_ba6184ff9410b386c47d5064.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m12{transform:matrix(0.155917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155917,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160770,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.164979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164979,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.181316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181316,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181319,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.181320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181320,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187920,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.187922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187922,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.187923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187923,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.187927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187927,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.257586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257586,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.258343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258343,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.259269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259269,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.260010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260010,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.296941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296941,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.300413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300413,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-62.812134px;}
.v2{vertical-align:-57.188784px;}
.vb{vertical-align:-52.447452px;}
.v7{vertical-align:-45.651306px;}
.vc{vertical-align:-43.930392px;}
.v5{vertical-align:-27.359988px;}
.v8{vertical-align:-14.275272px;}
.vd{vertical-align:-12.402096px;}
.ve{vertical-align:-4.482696px;}
.v3{vertical-align:-2.538390px;}
.v1{vertical-align:-1.045170px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:3.599988px;}
.v4{vertical-align:27.359988px;}
.va{vertical-align:41.091336px;}
.v6{vertical-align:49.151232px;}
.ls1a{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.016605px;}
.ls4a{letter-spacing:0.031901px;}
.ls80{letter-spacing:0.049818px;}
.ls2f{letter-spacing:0.049914px;}
.ls2b{letter-spacing:0.049956px;}
.lsb{letter-spacing:0.050004px;}
.ls44{letter-spacing:0.050010px;}
.ls6d{letter-spacing:0.149081px;}
.ls21{letter-spacing:0.149171px;}
.ls5e{letter-spacing:0.149261px;}
.ls6a{letter-spacing:0.202248px;}
.ls74{letter-spacing:0.202428px;}
.ls5c{letter-spacing:0.202434px;}
.ls1e{letter-spacing:0.239040px;}
.ls40{letter-spacing:0.258268px;}
.ls22{letter-spacing:0.258364px;}
.ls62{letter-spacing:0.258454px;}
.ls0{letter-spacing:0.281934px;}
.ls1{letter-spacing:0.284316px;}
.ls86{letter-spacing:0.324000px;}
.ls17{letter-spacing:0.358560px;}
.ls27{letter-spacing:0.368887px;}
.ls2e{letter-spacing:0.368977px;}
.ls6b{letter-spacing:0.448010px;}
.ls1f{letter-spacing:0.448016px;}
.ls5f{letter-spacing:0.456961px;}
.ls75{letter-spacing:0.456967px;}
.ls6{letter-spacing:0.464630px;}
.ls73{letter-spacing:0.494671px;}
.ls72{letter-spacing:0.494761px;}
.ls52{letter-spacing:0.494851px;}
.ls57{letter-spacing:0.494857px;}
.ls14{letter-spacing:0.610728px;}
.ls4c{letter-spacing:0.736519px;}
.ls84{letter-spacing:0.736573px;}
.lsd{letter-spacing:0.978182px;}
.ls60{letter-spacing:0.978188px;}
.ls8{letter-spacing:0.978278px;}
.ls38{letter-spacing:0.978320px;}
.ls10{letter-spacing:0.978368px;}
.lsf{letter-spacing:0.978548px;}
.ls47{letter-spacing:1.698282px;}
.ls69{letter-spacing:1.698462px;}
.ls5b{letter-spacing:1.698468px;}
.ls66{letter-spacing:11.001609px;}
.ls54{letter-spacing:11.001615px;}
.ls5d{letter-spacing:11.090627px;}
.ls5a{letter-spacing:11.090633px;}
.ls68{letter-spacing:11.090717px;}
.ls53{letter-spacing:11.090723px;}
.ls59{letter-spacing:11.090813px;}
.ls51{letter-spacing:11.168116px;}
.ls58{letter-spacing:11.247197px;}
.ls23{letter-spacing:11.654621px;}
.ls67{letter-spacing:11.967063px;}
.ls56{letter-spacing:11.967111px;}
.ls55{letter-spacing:11.967117px;}
.ls20{letter-spacing:12.129907px;}
.ls6c{letter-spacing:12.129913px;}
.ls50{letter-spacing:12.596967px;}
.ls85{letter-spacing:12.812548px;}
.ls4e{letter-spacing:13.316881px;}
.ls7{letter-spacing:13.532559px;}
.ls4d{letter-spacing:13.604724px;}
.ls4f{letter-spacing:13.658144px;}
.ls26{letter-spacing:14.047911px;}
.ls3e{letter-spacing:14.048001px;}
.ls46{letter-spacing:14.534464px;}
.ls29{letter-spacing:14.534470px;}
.ls15{letter-spacing:15.035607px;}
.ls2d{letter-spacing:15.168766px;}
.ls7c{letter-spacing:15.168772px;}
.ls39{letter-spacing:15.254384px;}
.ls76{letter-spacing:15.297525px;}
.ls3c{letter-spacing:15.297705px;}
.ls18{letter-spacing:15.299649px;}
.ls81{letter-spacing:15.410298px;}
.ls41{letter-spacing:15.487650px;}
.ls42{letter-spacing:15.487830px;}
.ls45{letter-spacing:15.974292px;}
.ls30{letter-spacing:15.974340px;}
.ls43{letter-spacing:16.017625px;}
.ls11{letter-spacing:16.694212px;}
.ls82{letter-spacing:16.738062px;}
.ls13{letter-spacing:16.916301px;}
.ls31{letter-spacing:17.195440px;}
.ls19{letter-spacing:17.790162px;}
.ls12{letter-spacing:18.177553px;}
.ls28{letter-spacing:18.256969px;}
.ls83{letter-spacing:19.010247px;}
.ls7d{letter-spacing:20.293969px;}
.ls4b{letter-spacing:20.780528px;}
.ls79{letter-spacing:21.013932px;}
.ls7a{letter-spacing:21.236062px;}
.ls3f{letter-spacing:21.247335px;}
.ls78{letter-spacing:22.497135px;}
.ls7e{letter-spacing:23.173812px;}
.ls3a{letter-spacing:23.296458px;}
.ls25{letter-spacing:23.296602px;}
.ls4{letter-spacing:24.331644px;}
.ls77{letter-spacing:24.613689px;}
.ls5{letter-spacing:25.771568px;}
.ls3d{letter-spacing:26.687772px;}
.ls24{letter-spacing:28.933312px;}
.ls2a{letter-spacing:29.776064px;}
.ls9{letter-spacing:30.373236px;}
.ls65{letter-spacing:32.754978px;}
.ls71{letter-spacing:32.755164px;}
.ls70{letter-spacing:33.252983px;}
.ls64{letter-spacing:33.252989px;}
.lse{letter-spacing:33.253175px;}
.ls6e{letter-spacing:33.972903px;}
.ls61{letter-spacing:33.973083px;}
.lsc{letter-spacing:34.016230px;}
.ls63{letter-spacing:34.736138px;}
.ls6f{letter-spacing:34.736144px;}
.ls89{letter-spacing:34.915407px;}
.ls48{letter-spacing:35.412732px;}
.ls2{letter-spacing:35.846716px;}
.ls49{letter-spacing:36.355107px;}
.ls3b{letter-spacing:37.806112px;}
.ls8a{letter-spacing:38.155407px;}
.lsa{letter-spacing:40.674544px;}
.ls7b{letter-spacing:42.125783px;}
.ls7f{letter-spacing:43.332160px;}
.ls87{letter-spacing:44.334249px;}
.ls88{letter-spacing:44.994578px;}
.ls2c{letter-spacing:54.045729px;}
.ls16{letter-spacing:215.953748px;}
.ls35{letter-spacing:230.348303px;}
.ls36{letter-spacing:245.385163px;}
.ls32{letter-spacing:357.631653px;}
.ls37{letter-spacing:403.660269px;}
.ls34{letter-spacing:407.589116px;}
.ls1d{letter-spacing:437.024773px;}
.ls1b{letter-spacing:438.626050px;}
.ls1c{letter-spacing:442.329003px;}
.ls33{letter-spacing:535.757343px;}
.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:-59.760000px;}
.ws62{word-spacing:-54.000000px;}
.wsa0{word-spacing:-48.240000px;}
.ws1a{word-spacing:-45.071867px;}
.ws1{word-spacing:-36.000000px;}
.wsa9{word-spacing:-32.283372px;}
.ws83{word-spacing:-28.903914px;}
.ws1d{word-spacing:-15.298560px;}
.wsa{word-spacing:-14.940000px;}
.ws1f{word-spacing:-14.688000px;}
.ws2b{word-spacing:-14.608512px;}
.ws22{word-spacing:-14.530752px;}
.ws99{word-spacing:-14.357376px;}
.ws17{word-spacing:-14.334336px;}
.wsab{word-spacing:-13.824000px;}
.ws3{word-spacing:-13.500000px;}
.ws9{word-spacing:-12.060000px;}
.ws28{word-spacing:-9.720000px;}
.ws95{word-spacing:-8.300358px;}
.ws31{word-spacing:-8.160750px;}
.ws40{word-spacing:-6.357999px;}
.ws1e{word-spacing:-5.081521px;}
.ws64{word-spacing:-4.736653px;}
.ws29{word-spacing:-2.218521px;}
.wsa5{word-spacing:-0.361709px;}
.ws89{word-spacing:-0.218250px;}
.ws8e{word-spacing:-0.218244px;}
.ws7c{word-spacing:-0.218064px;}
.wsac{word-spacing:-0.191844px;}
.wsa7{word-spacing:-0.177007px;}
.ws87{word-spacing:-0.173696px;}
.ws75{word-spacing:-0.173600px;}
.ws7a{word-spacing:-0.173510px;}
.wsb{word-spacing:-0.059760px;}
.ws7f{word-spacing:-0.058787px;}
.ws3c{word-spacing:-0.054252px;}
.ws4{word-spacing:-0.054000px;}
.ws7e{word-spacing:-0.049828px;}
.ws8f{word-spacing:-0.049822px;}
.ws74{word-spacing:-0.048240px;}
.ws79{word-spacing:-0.046138px;}
.ws73{word-spacing:-0.046096px;}
.ws78{word-spacing:-0.043339px;}
.ws77{word-spacing:-0.043250px;}
.ws84{word-spacing:-0.043202px;}
.ws8c{word-spacing:-0.043160px;}
.ws86{word-spacing:-0.043154px;}
.ws6c{word-spacing:-0.008878px;}
.ws2f{word-spacing:0.000000px;}
.ws10{word-spacing:0.004569px;}
.ws27{word-spacing:0.157644px;}
.ws0{word-spacing:0.251642px;}
.ws4e{word-spacing:0.346695px;}
.ws3d{word-spacing:0.356765px;}
.ws2{word-spacing:0.357711px;}
.ws76{word-spacing:0.385731px;}
.ws85{word-spacing:0.385737px;}
.ws26{word-spacing:0.492868px;}
.ws4f{word-spacing:0.524500px;}
.ws91{word-spacing:0.524548px;}
.ws30{word-spacing:0.524826px;}
.ws3a{word-spacing:0.603510px;}
.ws6{word-spacing:0.622320px;}
.wsaa{word-spacing:0.634137px;}
.ws5e{word-spacing:1.002335px;}
.wsa4{word-spacing:1.075839px;}
.ws14{word-spacing:1.355264px;}
.ws3f{word-spacing:1.964383px;}
.ws11{word-spacing:2.097428px;}
.wsa1{word-spacing:2.684592px;}
.ws1b{word-spacing:3.497578px;}
.wse{word-spacing:4.569188px;}
.wsa2{word-spacing:4.915207px;}
.ws5f{word-spacing:5.268358px;}
.ws5d{word-spacing:5.573889px;}
.ws9b{word-spacing:6.346602px;}
.ws8d{word-spacing:7.003962px;}
.ws7b{word-spacing:7.003968px;}
.ws88{word-spacing:7.004148px;}
.wsa3{word-spacing:7.523664px;}
.ws93{word-spacing:7.557087px;}
.ws9c{word-spacing:9.163711px;}
.ws7{word-spacing:9.215252px;}
.ws2d{word-spacing:9.349448px;}
.ws24{word-spacing:9.939034px;}
.ws92{word-spacing:10.603725px;}
.ws61{word-spacing:12.043553px;}
.ws5{word-spacing:12.886924px;}
.ws7d{word-spacing:14.825790px;}
.ws3b{word-spacing:14.923396px;}
.ws3e{word-spacing:14.986692px;}
.wsc{word-spacing:16.425869px;}
.ws82{word-spacing:16.808198px;}
.ws8b{word-spacing:16.808384px;}
.ws39{word-spacing:17.216142px;}
.ws90{word-spacing:17.815158px;}
.ws81{word-spacing:17.815164px;}
.ws80{word-spacing:18.522973px;}
.ws8a{word-spacing:18.523153px;}
.wsf{word-spacing:19.962982px;}
.ws60{word-spacing:22.122724px;}
.ws23{word-spacing:23.539818px;}
.ws71{word-spacing:23.963337px;}
.ws2e{word-spacing:24.320003px;}
.wsd{word-spacing:27.174992px;}
.ws9e{word-spacing:29.155587px;}
.ws53{word-spacing:29.203200px;}
.ws69{word-spacing:31.159976px;}
.ws70{word-spacing:31.265934px;}
.ws65{word-spacing:33.987560px;}
.ws9d{word-spacing:34.964731px;}
.ws6a{word-spacing:35.910317px;}
.ws37{word-spacing:37.276577px;}
.ws72{word-spacing:37.648945px;}
.ws12{word-spacing:37.833390px;}
.ws6f{word-spacing:38.402871px;}
.wsa6{word-spacing:39.539070px;}
.ws9f{word-spacing:39.550829px;}
.ws35{word-spacing:46.739981px;}
.ws8{word-spacing:57.972510px;}
.ws5b{word-spacing:64.108800px;}
.wsa8{word-spacing:65.579447px;}
.ws21{word-spacing:68.784039px;}
.ws49{word-spacing:76.485962px;}
.ws41{word-spacing:78.008463px;}
.ws18{word-spacing:79.508755px;}
.ws25{word-spacing:92.241214px;}
.ws47{word-spacing:100.585064px;}
.ws19{word-spacing:109.399652px;}
.ws4a{word-spacing:112.462479px;}
.ws16{word-spacing:113.134643px;}
.ws68{word-spacing:125.484321px;}
.ws50{word-spacing:134.674045px;}
.ws20{word-spacing:135.247104px;}
.ws44{word-spacing:136.415907px;}
.ws43{word-spacing:136.416079px;}
.ws67{word-spacing:138.551616px;}
.ws97{word-spacing:143.114324px;}
.ws4c{word-spacing:143.792538px;}
.ws66{word-spacing:144.206784px;}
.ws6e{word-spacing:148.863395px;}
.ws94{word-spacing:149.539250px;}
.ws1c{word-spacing:162.551370px;}
.ws5a{word-spacing:199.065600px;}
.ws6b{word-spacing:202.398463px;}
.ws57{word-spacing:207.993600px;}
.ws15{word-spacing:216.571464px;}
.ws5c{word-spacing:220.665600px;}
.ws2a{word-spacing:229.651287px;}
.ws48{word-spacing:235.482661px;}
.ws34{word-spacing:235.954856px;}
.ws4b{word-spacing:237.548298px;}
.ws63{word-spacing:238.838339px;}
.ws46{word-spacing:250.383222px;}
.ws42{word-spacing:262.965644px;}
.ws54{word-spacing:266.688000px;}
.ws59{word-spacing:278.208000px;}
.ws52{word-spacing:284.914800px;}
.ws98{word-spacing:287.327350px;}
.ws51{word-spacing:295.171200px;}
.ws36{word-spacing:297.340554px;}
.ws55{word-spacing:363.849777px;}
.ws2c{word-spacing:389.255266px;}
.ws38{word-spacing:421.235962px;}
.ws4d{word-spacing:429.767332px;}
.ws9a{word-spacing:445.538092px;}
.ws96{word-spacing:567.231211px;}
.ws58{word-spacing:572.947200px;}
.ws32{word-spacing:590.398312px;}
.ws33{word-spacing:590.398530px;}
.ws45{word-spacing:615.906901px;}
.ws56{word-spacing:654.969600px;}
.ws6d{word-spacing:810.508694px;}
._54{margin-left:-330.022846px;}
._4d{margin-left:-310.642247px;}
._27{margin-left:-268.401418px;}
._51{margin-left:-220.052566px;}
._4c{margin-left:-142.832162px;}
._24{margin-left:-133.300127px;}
._23{margin-left:-131.685856px;}
._5b{margin-left:-28.828921px;}
._47{margin-left:-23.085663px;}
._46{margin-left:-3.859200px;}
._48{margin-left:-2.846160px;}
._0{margin-left:-1.487568px;}
._2{width:1.195200px;}
._c{width:3.132000px;}
._d{width:4.489968px;}
._22{width:5.934046px;}
._15{width:7.100599px;}
._10{width:8.154000px;}
._11{width:9.180000px;}
._a{width:10.237169px;}
._b{width:12.186486px;}
._12{width:13.467179px;}
._1{width:15.347131px;}
._3{width:16.742798px;}
._6{width:18.414000px;}
._14{width:20.258640px;}
._21{width:21.513600px;}
._f{width:22.643014px;}
._7{width:24.376368px;}
._8{width:25.551264px;}
._18{width:26.832240px;}
._13{width:28.022475px;}
._16{width:29.843276px;}
._5{width:30.932644px;}
._4{width:32.129681px;}
._e{width:33.988368px;}
._1b{width:35.373630px;}
._1f{width:36.573120px;}
._9{width:38.435788px;}
._30{width:39.535850px;}
._1a{width:40.797709px;}
._1c{width:41.959879px;}
._1d{width:43.212699px;}
._58{width:44.784807px;}
._17{width:46.061172px;}
._3b{width:47.232000px;}
._45{width:48.666160px;}
._1e{width:49.748726px;}
._20{width:52.304345px;}
._2e{width:54.262973px;}
._55{width:55.391551px;}
._44{width:58.048426px;}
._19{width:61.810143px;}
._28{width:65.737122px;}
._5a{width:89.067208px;}
._59{width:96.396920px;}
._2a{width:113.165497px;}
._31{width:118.015966px;}
._4b{width:121.416457px;}
._29{width:127.056895px;}
._3c{width:130.694400px;}
._25{width:146.909535px;}
._52{width:161.455046px;}
._2f{width:168.840968px;}
._56{width:173.585438px;}
._26{width:180.579104px;}
._50{width:188.090888px;}
._2c{width:195.520325px;}
._4f{width:209.299189px;}
._33{width:211.576341px;}
._32{width:220.769931px;}
._43{width:228.729600px;}
._35{width:232.613720px;}
._4a{width:238.829972px;}
._4e{width:250.300858px;}
._57{width:254.833593px;}
._42{width:265.593600px;}
._3d{width:269.280000px;}
._41{width:277.344000px;}
._40{width:289.075959px;}
._36{width:291.587382px;}
._49{width:293.575529px;}
._3a{width:303.496200px;}
._53{width:307.087732px;}
._38{width:309.869391px;}
._2b{width:329.208717px;}
._34{width:358.578441px;}
._3f{width:361.958400px;}
._39{width:374.125500px;}
._3e{width:384.019200px;}
._37{width:435.693992px;}
._2d{width:653.415972px;}
.fc3{color:rgb(9,88,245);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs23{font-size:28.903914px;}
.fs21{font-size:31.272696px;}
.fs25{font-size:32.283372px;}
.fs1d{font-size:32.693940px;}
.fs7{font-size:33.148152px;}
.fs17{font-size:33.172128px;}
.fs24{font-size:33.201432px;}
.fs19{font-size:33.300000px;}
.fs13{font-size:33.359940px;}
.fsb{font-size:33.602364px;}
.fsf{font-size:33.782184px;}
.fsd{font-size:38.880000px;}
.fs26{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs22{font-size:54.093312px;}
.fs1e{font-size:56.551680px;}
.fs8{font-size:57.337344px;}
.fs16{font-size:57.378816px;}
.fs1b{font-size:57.429504px;}
.fs1a{font-size:57.600000px;}
.fs14{font-size:57.703680px;}
.fsc{font-size:58.123008px;}
.fs10{font-size:58.434048px;}
.fsa{font-size:58.752000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs20{font-size:70.856604px;}
.fs1c{font-size:74.076810px;}
.fs15{font-size:75.160272px;}
.fs18{font-size:75.450000px;}
.fs11{font-size:75.585810px;}
.fs5{font-size:77.793636px;}
.fse{font-size:79.281612px;}
.fs9{font-size:79.713000px;}
.fs1f{font-size:85.366008px;}
.fs6{font-size:85.558068px;}
.fs12{font-size:88.509030px;}
.fs0{font-size:144.000000px;}
.y1ec{bottom:-1113.482821px;}
.y1ba{bottom:-1106.102824px;}
.y1eb{bottom:-940.682826px;}
.y1e0{bottom:-860.402820px;}
.y1af{bottom:-853.022845px;}
.y1df{bottom:-687.602847px;}
.y1be{bottom:-550.622836px;}
.y1b2{bottom:-550.262851px;}
.y1b1{bottom:-549.362842px;}
.y1f0{bottom:-548.282839px;}
.y1ef{bottom:-380.702838px;}
.y1b0{bottom:-374.042835px;}
.y1c3{bottom:-301.502856px;}
.y1f4{bottom:-299.162860px;}
.y1b5{bottom:-297.002856px;}
.y1b4{bottom:-296.102802px;}
.y1b3{bottom:-134.102893px;}
.y1f3{bottom:-126.542835px;}
.y0{bottom:0.000000px;}
.y1e6{bottom:0.899997px;}
.y27d{bottom:0.899998px;}
.y1ea{bottom:0.900043px;}
.y1ee{bottom:2.160003px;}
.y1c2{bottom:2.339985px;}
.y1e2{bottom:2.339987px;}
.y1bd{bottom:2.340000px;}
.y1b9{bottom:2.340004px;}
.y1ad{bottom:2.340012px;}
.y12c{bottom:3.239994px;}
.y264{bottom:3.239995px;}
.y123{bottom:3.240003px;}
.y140{bottom:3.240005px;}
.y119{bottom:3.240012px;}
.y210{bottom:3.320764px;}
.y1e8{bottom:3.419955px;}
.y136{bottom:3.419989px;}
.y1b7{bottom:3.420004px;}
.y1e4{bottom:3.420007px;}
.y1c0{bottom:3.420013px;}
.y8f{bottom:3.598599px;}
.ye0{bottom:3.704997px;}
.y8{bottom:3.779979px;}
.y6{bottom:3.780009px;}
.y1f8{bottom:3.959988px;}
.y1f6{bottom:3.959990px;}
.y1f2{bottom:3.960003px;}
.yd1{bottom:3.990290px;}
.y6d{bottom:4.228968px;}
.y27b{bottom:4.319987px;}
.y280{bottom:5.040008px;}
.y116{bottom:5.400000px;}
.y120{bottom:5.579994px;}
.y260{bottom:5.759978px;}
.y7b{bottom:5.810331px;}
.y11f{bottom:5.940001px;}
.y268{bottom:6.119957px;}
.y261{bottom:6.119963px;}
.y270{bottom:6.119972px;}
.y26e{bottom:6.119988px;}
.y276{bottom:6.120003px;}
.y26c{bottom:6.120009px;}
.y279{bottom:6.120012px;}
.y115{bottom:6.120017px;}
.y26a{bottom:6.120024px;}
.y274{bottom:6.120025px;}
.y272{bottom:6.120040px;}
.y128{bottom:6.162360px;}
.y11e{bottom:6.300010px;}
.y4{bottom:6.840006px;}
.ydf{bottom:7.305000px;}
.y130{bottom:7.396371px;}
.y139{bottom:7.396374px;}
.y142{bottom:7.505214px;}
.y63{bottom:7.562242px;}
.yd6{bottom:7.567504px;}
.ycc{bottom:7.949991px;}
.y56{bottom:8.168516px;}
.y143{bottom:8.209575px;}
.y132{bottom:8.427278px;}
.y13c{bottom:8.427282px;}
.y55{bottom:8.616483px;}
.ydb{bottom:8.617500px;}
.y64{bottom:8.747986px;}
.y146{bottom:9.195644px;}
.y5d{bottom:9.773709px;}
.y6b{bottom:9.867266px;}
.y265{bottom:10.259985px;}
.y126{bottom:10.259993px;}
.y11c{bottom:10.260000px;}
.y12e{bottom:10.260006px;}
.y6c{bottom:10.510561px;}
.ydc{bottom:10.530001px;}
.y11b{bottom:10.619987px;}
.y125{bottom:10.620000px;}
.y93{bottom:10.924191px;}
.y266{bottom:10.979957px;}
.y124{bottom:10.980009px;}
.y11a{bottom:10.980017px;}
.y12d{bottom:11.159993px;}
.y137{bottom:11.340011px;}
.y77{bottom:12.353685px;}
.y8a{bottom:12.727322px;}
.y5c{bottom:12.872037px;}
.y129{bottom:12.959997px;}
.y133{bottom:12.960011px;}
.y89{bottom:13.478696px;}
.y13d{bottom:14.039992px;}
.y13b{bottom:14.760008px;}
.y145{bottom:15.253047px;}
.yd0{bottom:15.794711px;}
.y6a{bottom:16.375910px;}
.y190{bottom:16.724343px;}
.y1a1{bottom:16.724359px;}
.y131{bottom:16.895448px;}
.y13a{bottom:16.895451px;}
.y7a{bottom:17.223158px;}
.yd8{bottom:17.242500px;}
.y144{bottom:17.295657px;}
.y250{bottom:17.344726px;}
.y211{bottom:18.127039px;}
.y1d0{bottom:18.391906px;}
.y17f{bottom:18.571869px;}
.y16e{bottom:18.571875px;}
.y118{bottom:18.719978px;}
.y122{bottom:18.719991px;}
.y13f{bottom:18.719993px;}
.y263{bottom:18.720007px;}
.y12b{bottom:18.899998px;}
.yc7{bottom:18.932589px;}
.y1d5{bottom:18.947724px;}
.y17a{bottom:19.127732px;}
.y18b{bottom:19.503564px;}
.y19c{bottom:19.503580px;}
.y58{bottom:19.554013px;}
.y169{bottom:19.683600px;}
.y135{bottom:19.980002px;}
.y1a2{bottom:20.059421px;}
.y191{bottom:20.615289px;}
.yde{bottom:21.104995px;}
.yda{bottom:21.779991px;}
.y251{bottom:22.847573px;}
.y1a3{bottom:23.394492px;}
.y16f{bottom:23.574500px;}
.y27f{bottom:23.579985px;}
.y20f{bottom:23.623316px;}
.y7d{bottom:23.842603px;}
.y5b{bottom:24.070905px;}
.y192{bottom:24.506189px;}
.y8e{bottom:24.560970px;}
.y180{bottom:26.353715px;}
.y75{bottom:26.581679px;}
.y212{bottom:27.212733px;}
.y1a4{bottom:27.285404px;}
.y79{bottom:27.761002px;}
.y1d1{bottom:27.841248px;}
.ybe{bottom:27.935335px;}
.y16a{bottom:28.021215px;}
.y193{bottom:28.397088px;}
.y170{bottom:28.577124px;}
.ycf{bottom:28.943949px;}
.y1d6{bottom:28.952926px;}
.yc1{bottom:28.981302px;}
.ybc{bottom:29.056010px;}
.y17b{bottom:29.132934px;}
.y78{bottom:29.510966px;}
.ycb{bottom:30.101976px;}
.y7c{bottom:30.157693px;}
.y91{bottom:30.233579px;}
.y1c4{bottom:30.244665px;}
.y5f{bottom:30.566250px;}
.y1a5{bottom:30.620475px;}
.yd9{bottom:30.854995px;}
.y18c{bottom:31.176309px;}
.y19d{bottom:31.732166px;}
.y194{bottom:32.287987px;}
.y54{bottom:33.253965px;}
.y181{bottom:33.579696px;}
.y1a6{bottom:33.955534px;}
.y171{bottom:34.135564px;}
.y5a{bottom:34.411191px;}
.ydd{bottom:34.904991px;}
.y76{bottom:36.054320px;}
.y59{bottom:36.128354px;}
.y195{bottom:36.178934px;}
.y16b{bottom:36.358923px;}
.y1d2{bottom:36.734772px;}
.y5e{bottom:36.762951px;}
.yd7{bottom:37.305000px;}
.yc4{bottom:38.693788px;}
.y172{bottom:39.138097px;}
.y17c{bottom:39.138138px;}
.y8d{bottom:39.324765px;}
.y1d7{bottom:39.513993px;}
.yc9{bottom:39.627695px;}
.y182{bottom:40.805679px;}
.y1c5{bottom:41.361547px;}
.ybb{bottom:42.167895px;}
.y57{bottom:42.549039px;}
.y18d{bottom:42.849054px;}
.y92{bottom:43.081448px;}
.yc6{bottom:43.213839px;}
.y19e{bottom:43.404899px;}
.y173{bottom:44.140722px;}
.y196{bottom:44.516595px;}
.y88{bottom:44.884671px;}
.y16c{bottom:45.252447px;}
.y1d3{bottom:45.628296px;}
.y87{bottom:45.636044px;}
.y90{bottom:46.687893px;}
.y252{bottom:46.693284px;}
.y183{bottom:48.587478px;}
.y17d{bottom:49.143341px;}
.y1c8{bottom:49.143346px;}
.y1d8{bottom:49.519196px;}
.y174{bottom:51.366705px;}
.y1c6{bottom:52.478430px;}
.y8c{bottom:53.149410px;}
.yc0{bottom:53.486673px;}
.y16d{bottom:53.590063px;}
.yca{bottom:53.673464px;}
.y18e{bottom:54.521798px;}
.y19f{bottom:55.077632px;}
.y1d4{bottom:55.077637px;}
.y184{bottom:55.813461px;}
.y8b{bottom:56.718320px;}
.y1c9{bottom:59.148504px;}
.y17e{bottom:59.704407px;}
.yc3{bottom:59.911868px;}
.y1d9{bottom:60.080216px;}
.yce{bottom:61.518183px;}
.yc8{bottom:62.078508px;}
.y185{bottom:63.595307px;}
.y1c7{bottom:63.595313px;}
.yc5{bottom:64.656061px;}
.y18f{bottom:66.194543px;}
.y1a0{bottom:66.750377px;}
.y1ca{bottom:67.486212px;}
.y1da{bottom:67.862061px;}
.y253{bottom:70.172142px;}
.ybd{bottom:73.658808px;}
.y1a7{bottom:74.532198px;}
.ycd{bottom:74.667399px;}
.ybf{bottom:74.704752px;}
.y197{bottom:75.643884px;}
.y175{bottom:84.161535px;}
.yc2{bottom:84.417261px;}
.y167{bottom:89.817176px;}
.y20d{bottom:91.260029px;}
.y186{bottom:91.943421px;}
.y1cb{bottom:93.610876px;}
.y254{bottom:93.651002px;}
.y1db{bottom:95.654266px;}
.y14c{bottom:99.177177px;}
.y24e{bottom:102.600026px;}
.ye5{bottom:104.940021px;}
.y1a8{bottom:105.659487px;}
.y198{bottom:106.771173px;}
.y166{bottom:107.097175px;}
.y20c{bottom:108.360032px;}
.y176{bottom:116.400549px;}
.y24d{bottom:116.460023px;}
.y255{bottom:117.496689px;}
.y110{bottom:118.980022px;}
.y187{bottom:119.735627px;}
.y1cc{bottom:119.735633px;}
.y14b{bottom:122.937173px;}
.ye4{bottom:123.480022px;}
.y1dc{bottom:124.002381px;}
.y165{bottom:124.197179px;}
.y38{bottom:124.380020px;}
.y80{bottom:124.740029px;}
.y20b{bottom:126.900021px;}
.y24c{bottom:130.140026px;}
.y10f{bottom:136.260029px;}
.y1a9{bottom:136.786799px;}
.y199{bottom:137.898462px;}
.y19b{bottom:138.060025px;}
.ye3{bottom:140.580024px;}
.y256{bottom:140.975571px;}
.y164{bottom:141.477172px;}
.y37{bottom:141.660027px;}
.y7f{bottom:142.020024px;}
.y24b{bottom:144.000023px;}
.y20a{bottom:144.180027px;}
.y1cd{bottom:145.860297px;}
.y1b8{bottom:146.877174px;}
.y188{bottom:148.083648px;}
.y177{bottom:149.195379px;}
.y1dd{bottom:152.350402px;}
.y10e{bottom:153.540024px;}
.y1ed{bottom:154.437173px;}
.y74{bottom:155.340025px;}
.ye2{bottom:157.860020px;}
.y163{bottom:158.577176px;}
.y36{bottom:158.940021px;}
.y209{bottom:161.280030px;}
.y257{bottom:164.454407px;}
.y1aa{bottom:168.469928px;}
.y19a{bottom:169.025796px;}
.y10d{bottom:170.640026px;}
.yd5{bottom:171.360024px;}
.y24a{bottom:171.540024px;}
.y1ce{bottom:171.984961px;}
.y189{bottom:175.875947px;}
.y35{bottom:176.220029px;}
.y7e{bottom:176.580024px;}
.y162{bottom:177.117175px;}
.y208{bottom:178.560024px;}
.y1de{bottom:180.142701px;}
.y178{bottom:181.990210px;}
.y249{bottom:185.400021px;}
.y258{bottom:187.933289px;}
.y10c{bottom:189.180027px;}
.y34{bottom:193.500023px;}
.y161{bottom:194.397171px;}
.y207{bottom:196.920021px;}
.ye1{bottom:198.540024px;}
.y248{bottom:199.260018px;}
.y73{bottom:205.560013px;}
.y10b{bottom:206.460022px;}
.y33{bottom:210.600014px;}
.y259{bottom:211.412126px;}
.y160{bottom:211.677177px;}
.y247{bottom:212.940033px;}
.y206{bottom:214.020035px;}
.y72{bottom:222.840019px;}
.y111{bottom:225.360022px;}
.yd4{bottom:225.540024px;}
.y246{bottom:226.800018px;}
.y32{bottom:227.880020px;}
.y15f{bottom:228.957161px;}
.y205{bottom:232.560013px;}
.y113{bottom:237.420008px;}
.y13e{bottom:237.420022px;}
.y141{bottom:239.760022px;}
.y71{bottom:239.940033px;}
.y245{bottom:240.660027px;}
.yd3{bottom:244.080024px;}
.y31{bottom:245.160027px;}
.y15e{bottom:246.057174px;}
.y204{bottom:249.660027px;}
.y112{bottom:251.459985px;}
.y244{bottom:254.340019px;}
.y70{bottom:257.220017px;}
.yba{bottom:257.400022px;}
.y30{bottom:262.440033px;}
.y15d{bottom:263.337182px;}
.y243{bottom:268.200027px;}
.y134{bottom:269.100023px;}
.y138{bottom:272.520022px;}
.y6f{bottom:274.320030px;}
.y203{bottom:276.480011px;}
.y2f{bottom:279.720017px;}
.y15c{bottom:280.617165px;}
.y242{bottom:282.960022px;}
.y69{bottom:288.900022px;}
.y27c{bottom:294.480021px;}
.y24f{bottom:296.100021px;}
.y241{bottom:296.640015px;}
.y2e{bottom:297.000023px;}
.y15b{bottom:297.897171px;}
.y6e{bottom:301.140015px;}
.y25e{bottom:302.399951px;}
.y12a{bottom:302.940021px;}
.y12f{bottom:305.280021px;}
.y240{bottom:310.500023px;}
.yd2{bottom:311.580024px;}
.y2d{bottom:314.100014px;}
.y15a{bottom:315.177177px;}
.y25d{bottom:316.260027px;}
.y1b6{bottom:318.597170px;}
.y68{bottom:319.500023px;}
.y23f{bottom:324.360031px;}
.y25c{bottom:330.659989px;}
.y2c{bottom:331.380020px;}
.y159{bottom:332.457161px;}
.y121{bottom:334.800021px;}
.y67{bottom:336.600014px;}
.y23e{bottom:338.040024px;}
.y127{bottom:340.020021px;}
.y2b{bottom:348.480011px;}
.y25b{bottom:348.659989px;}
.y158{bottom:349.557174px;}
.y23d{bottom:351.900009px;}
.yb9{bottom:354.420021px;}
.y66{bottom:355.140015px;}
.y23c{bottom:365.760018px;}
.y11d{bottom:366.480020px;}
.y157{bottom:366.837157px;}
.y2a{bottom:367.020012px;}
.yb8{bottom:371.520012px;}
.y65{bottom:372.420021px;}
.y14a{bottom:374.937173px;}
.y23b{bottom:379.440011px;}
.y156{bottom:384.117187px;}
.y29{bottom:384.300018px;}
.y62{bottom:385.740020px;}
.y117{bottom:388.620019px;}
.yb7{bottom:390.060013px;}
.y18a{bottom:390.060019px;}
.y23a{bottom:393.300018px;}
.y61{bottom:396.360031px;}
.y1ac{bottom:399.957168px;}
.y155{bottom:401.397171px;}
.y28{bottom:401.580001px;}
.y239{bottom:407.160003px;}
.y1e1{bottom:407.337168px;}
.yb6{bottom:407.339997px;}
.y53{bottom:410.220019px;}
.y27{bottom:418.860031px;}
.y114{bottom:420.480019px;}
.y238{bottom:420.839997px;}
.y154{bottom:424.437148px;}
.yb5{bottom:424.620025px;}
.y237{bottom:434.700027px;}
.y26{bottom:435.960023px;}
.y60{bottom:440.460023px;}
.yb4{bottom:441.720016px;}
.y236{bottom:448.560013px;}
.y25{bottom:453.240006px;}
.y153{bottom:459.177154px;}
.yb3{bottom:460.080001px;}
.y235{bottom:462.240006px;}
.y52{bottom:466.740006px;}
.y27e{bottom:469.080018px;}
.y24{bottom:470.339997px;}
.y234{bottom:476.100036px;}
.yb2{bottom:478.620025px;}
.y51{bottom:485.100036px;}
.y23{bottom:488.880019px;}
.y233{bottom:489.960023px;}
.yb1{bottom:495.900009px;}
.y27a{bottom:501.840016px;}
.y50{bottom:503.460023px;}
.y22{bottom:506.160003px;}
.y10a{bottom:512.460023px;}
.yb0{bottom:513.180039px;}
.y232{bottom:514.259994px;}
.y4f{bottom:520.740006px;}
.y21{bottom:523.440033px;}
.yaf{bottom:530.280030px;}
.y109{bottom:531.000000px;}
.y202{bottom:531.540024px;}
.y4e{bottom:538.020035px;}
.y20{bottom:540.720016px;}
.y108{bottom:548.280030px;}
.yae{bottom:548.820007px;}
.y231{bottom:549.540024px;}
.y4d{bottom:555.300018px;}
.y1f{bottom:557.820007px;}
.y107{bottom:565.560013px;}
.yad{bottom:565.919999px;}
.y230{bottom:566.820007px;}
.y1ab{bottom:571.677163px;}
.y1e{bottom:575.100036px;}
.y4c{bottom:578.339997px;}
.y106{bottom:582.660003px;}
.yac{bottom:583.200027px;}
.y22f{bottom:584.100036px;}
.y1d{bottom:592.380019px;}
.y152{bottom:594.717178px;}
.y105{bottom:599.940033px;}
.yab{bottom:600.300018px;}
.y201{bottom:600.480010px;}
.y22e{bottom:601.380019px;}
.y1c{bottom:609.660003px;}
.y151{bottom:611.997162px;}
.y4b{bottom:613.800018px;}
.y104{bottom:617.040024px;}
.y200{bottom:617.759994px;}
.yaa{bottom:618.660003px;}
.y1b{bottom:626.940033px;}
.y150{bottom:629.097153px;}
.y4a{bottom:631.080001px;}
.y1ff{bottom:635.040024px;}
.y103{bottom:635.400009px;}
.ya9{bottom:637.200027px;}
.y1a{bottom:644.220016px;}
.y22d{bottom:644.759994px;}
.y49{bottom:648.360031px;}
.y1fe{bottom:652.320007px;}
.y149{bottom:653.037139px;}
.y102{bottom:653.759994px;}
.ya8{bottom:654.300018px;}
.y14f{bottom:660.417160px;}
.y19{bottom:661.320007px;}
.y48{bottom:665.460023px;}
.y1fd{bottom:669.419999px;}
.y101{bottom:672.300018px;}
.ya7{bottom:672.839997px;}
.y148{bottom:676.977172px;}
.y22c{bottom:679.860031px;}
.y47{bottom:682.740006px;}
.y14e{bottom:684.177154px;}
.y18{bottom:684.540024px;}
.y25a{bottom:688.500014px;}
.ya6{bottom:690.120025px;}
.y100{bottom:690.660003px;}
.y179{bottom:691.920013px;}
.y1cf{bottom:695.700012px;}
.y278{bottom:696.420012px;}
.y22b{bottom:698.400009px;}
.y46{bottom:700.020035px;}
.ya5{bottom:707.400009px;}
.yff{bottom:707.759994px;}
.y1f1{bottom:708.117160px;}
.y1f7{bottom:708.477160px;}
.y1bc{bottom:712.077160px;}
.y1e5{bottom:712.437160px;}
.y22a{bottom:715.679993px;}
.y45{bottom:717.120025px;}
.y277{bottom:718.380012px;}
.y17{bottom:719.099991px;}
.ya4{bottom:724.679993px;}
.yfe{bottom:726.300018px;}
.y229{bottom:732.960023px;}
.y16{bottom:734.040024px;}
.y44{bottom:735.660003px;}
.y275{bottom:740.520012px;}
.ya3{bottom:741.780030px;}
.yfd{bottom:743.580001px;}
.y15{bottom:749.160003px;}
.y228{bottom:750.240006px;}
.y43{bottom:752.759994px;}
.ya2{bottom:759.060013px;}
.yfc{bottom:760.860031px;}
.y273{bottom:762.480010px;}
.y14{bottom:764.099991px;}
.y227{bottom:767.519990px;}
.y42{bottom:771.300018px;}
.ya1{bottom:776.160003px;}
.yfb{bottom:778.140015px;}
.y13{bottom:779.039977px;}
.y271{bottom:784.620011px;}
.y226{bottom:784.620025px;}
.y41{bottom:788.580048px;}
.y12{bottom:794.160003px;}
.yfa{bottom:795.240051px;}
.ya0{bottom:800.640015px;}
.y225{bottom:803.160003px;}
.y40{bottom:805.679993px;}
.y26f{bottom:806.580011px;}
.y11{bottom:809.100036px;}
.yf9{bottom:813.780030px;}
.y224{bottom:820.260040px;}
.y3f{bottom:822.960022px;}
.y10{bottom:824.039977px;}
.y26d{bottom:828.720009px;}
.yf8{bottom:830.879975px;}
.y9f{bottom:837.179993px;}
.yf{bottom:839.160003px;}
.y3e{bottom:840.240051px;}
.y223{bottom:843.480010px;}
.yf7{bottom:848.160003px;}
.y26b{bottom:850.680009px;}
.ye{bottom:854.100036px;}
.y9e{bottom:854.280030px;}
.y3d{bottom:857.519990px;}
.yf6{bottom:865.260040px;}
.yd{bottom:869.039977px;}
.y9d{bottom:871.559967px;}
.y269{bottom:872.820009px;}
.y3c{bottom:874.620025px;}
.y1bb{bottom:878.577158px;}
.y222{bottom:878.760040px;}
.yf5{bottom:883.620025px;}
.yc{bottom:884.160003px;}
.y1e3{bottom:885.237157px;}
.y9c{bottom:888.839997px;}
.y3b{bottom:893.160003px;}
.y267{bottom:894.780008px;}
.y221{bottom:895.859985px;}
.yb{bottom:899.100036px;}
.yf4{bottom:902.160003px;}
.y9b{bottom:906.120025px;}
.y3a{bottom:910.440033px;}
.ya{bottom:914.039977px;}
.y220{bottom:914.399964px;}
.y262{bottom:916.920008px;}
.yf3{bottom:919.440033px;}
.y9a{bottom:923.399964px;}
.y39{bottom:927.719970px;}
.y147{bottom:928.977172px;}
.y9{bottom:929.160003px;}
.y21f{bottom:931.679993px;}
.y14d{bottom:932.397125px;}
.yf2{bottom:936.719970px;}
.y99{bottom:940.679993px;}
.y168{bottom:943.920008px;}
.y25f{bottom:948.600007px;}
.y21e{bottom:948.960022px;}
.yf1{bottom:954.000000px;}
.y1f5{bottom:957.237154px;}
.y98{bottom:957.780030px;}
.y1c1{bottom:961.197155px;}
.y1f9{bottom:961.737154px;}
.y1e9{bottom:965.697155px;}
.y21d{bottom:966.059967px;}
.yf0{bottom:971.280030px;}
.y97{bottom:975.059967px;}
.y21c{bottom:984.600036px;}
.yef{bottom:988.379975px;}
.y96{bottom:992.339997px;}
.y21b{bottom:1001.879975px;}
.yee{bottom:1005.660003px;}
.y7{bottom:1009.080006px;}
.y95{bottom:1009.620025px;}
.y21a{bottom:1018.980010px;}
.y86{bottom:1022.940006px;}
.yed{bottom:1024.019990px;}
.y5{bottom:1026.360006px;}
.y219{bottom:1036.260040px;}
.yec{bottom:1041.300018px;}
.y3{bottom:1043.640005px;}
.y218{bottom:1053.539977px;}
.yeb{bottom:1058.580048px;}
.y1fc{bottom:1059.660003px;}
.y94{bottom:1060.559967px;}
.y217{bottom:1070.820007px;}
.yea{bottom:1075.679993px;}
.y1fb{bottom:1076.940033px;}
.y216{bottom:1088.100036px;}
.y2{bottom:1092.960022px;}
.y85{bottom:1094.039977px;}
.ye9{bottom:1094.219970px;}
.y215{bottom:1105.379975px;}
.ye8{bottom:1111.500000px;}
.y84{bottom:1112.580048px;}
.y214{bottom:1122.480010px;}
.y1e7{bottom:1125.177152px;}
.ye7{bottom:1128.780030px;}
.y83{bottom:1129.859985px;}
.y1bf{bottom:1132.737151px;}
.y20e{bottom:1137.060003px;}
.y1{bottom:1137.239960px;}
.ye6{bottom:1145.879975px;}
.y82{bottom:1147.140015px;}
.y213{bottom:1159.739960px;}
.y1fa{bottom:1163.160003px;}
.y81{bottom:1164.420044px;}
.y1ae{bottom:1262.700000px;}
.h64{height:-1098.362827px;}
.h5e{height:-1090.982827px;}
.h63{height:-926.822830px;}
.h62{height:-845.282832px;}
.h54{height:-837.902833px;}
.h61{height:-673.742836px;}
.h5f{height:-537.122839px;}
.h58{height:-536.762839px;}
.h66{height:-533.162839px;}
.h56{height:-532.802839px;}
.h65{height:-366.662844px;}
.h55{height:-360.182844px;}
.h60{height:-288.002845px;}
.h68{height:-284.042845px;}
.h5c{height:-283.502845px;}
.h5b{height:-279.542845px;}
.h5a{height:-120.062848px;}
.h67{height:-112.502848px;}
.h5{height:17.279999px;}
.h7{height:17.280000px;}
.h5d{height:17.459998px;}
.h53{height:17.460000px;}
.h3d{height:20.520000px;}
.h50{height:20.774688px;}
.h37{height:21.239998px;}
.h72{height:21.240000px;}
.h71{height:21.419999px;}
.h3b{height:21.420000px;}
.h6f{height:23.203674px;}
.hf{height:24.660000px;}
.h40{height:26.100000px;}
.h12{height:26.820000px;}
.h4b{height:28.966945px;}
.h45{height:30.283400px;}
.h49{height:30.692441px;}
.h2b{height:30.726331px;}
.h23{height:30.900296px;}
.h3c{height:30.959999px;}
.h3a{height:30.960000px;}
.h3f{height:31.140000px;}
.h42{height:32.087314px;}
.hc{height:32.533098px;}
.h29{height:32.540432px;}
.h6a{height:32.585390px;}
.h30{height:32.682129px;}
.h21{height:32.724668px;}
.h20{height:32.740957px;}
.h13{height:32.978883px;}
.h44{height:33.119999px;}
.h19{height:33.155366px;}
.h73{height:35.279999px;}
.h69{height:40.859998px;}
.h3{height:41.219998px;}
.h2d{height:43.034112px;}
.h17{height:46.439999px;}
.h36{height:47.344922px;}
.h74{height:48.616875px;}
.h39{height:50.018555px;}
.h4c{height:50.104987px;}
.h2e{height:50.579998px;}
.h6d{height:50.944910px;}
.h46{height:52.382098px;}
.h9{height:52.739999px;}
.h38{height:52.971680px;}
.h35{height:52.998047px;}
.h4a{height:53.089628px;}
.he{height:53.109835px;}
.h2c{height:53.148249px;}
.h6c{height:53.195200px;}
.h33{height:53.353125px;}
.h24{height:53.449161px;}
.h15{height:53.837571px;}
.h1c{height:54.125678px;}
.h8{height:54.421875px;}
.h4e{height:55.353867px;}
.h43{height:55.502381px;}
.hd{height:56.245471px;}
.h2a{height:56.286153px;}
.h28{height:56.314170px;}
.h6b{height:56.335876px;}
.h3e{height:56.363918px;}
.h32{height:56.503125px;}
.h31{height:56.531250px;}
.h22{height:56.604831px;}
.h14{height:57.016173px;}
.h1a{height:57.321290px;}
.h11{height:57.633188px;}
.h59{height:58.621992px;}
.h6{height:58.651172px;}
.h52{height:60.226875px;}
.h57{height:61.356094px;}
.h4{height:65.010938px;}
.h16{height:65.499597px;}
.h48{height:65.632313px;}
.h1d{height:67.499998px;}
.h41{height:68.615092px;}
.h27{height:69.618670px;}
.h2f{height:69.887036px;}
.h1e{height:70.012833px;}
.ha{height:72.057875px;}
.h18{height:73.436142px;}
.h10{height:73.835723px;}
.h47{height:79.071932px;}
.hb{height:79.249832px;}
.h1f{height:81.983218px;}
.h25{height:93.419999px;}
.h1b{height:103.276910px;}
.h26{height:110.710006px;}
.h2{height:141.328125px;}
.h6e{height:231.479996px;}
.h51{height:233.639996px;}
.h4f{height:233.819996px;}
.h34{height:263.699994px;}
.h70{height:360.899991px;}
.h4d{height:1262.877148px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2e{width:-730.596150px;}
.w1e{width:-730.442913px;}
.w2d{width:-725.916150px;}
.w1c{width:-725.762913px;}
.w3d{width:-563.742578px;}
.w1d{width:-563.582918px;}
.w3b{width:-558.882578px;}
.w1b{width:-558.722918px;}
.w3a{width:-485.622579px;}
.w1a{width:-485.462919px;}
.w39{width:-372.582582px;}
.w19{width:-372.422921px;}
.w41{width:-372.042582px;}
.w1f{width:-371.882921px;}
.w46{width:-345.582583px;}
.w23{width:-345.422922px;}
.w44{width:-340.902584px;}
.w21{width:-340.742922px;}
.w38{width:-191.862587px;}
.w29{width:-191.856162px;}
.w40{width:-191.322586px;}
.w30{width:-191.316162px;}
.w45{width:-178.722586px;}
.w34{width:-178.716162px;}
.w43{width:-174.042586px;}
.w33{width:-174.036162px;}
.w37{width:-93.582588px;}
.w28{width:-93.576165px;}
.w42{width:-93.222588px;}
.w32{width:-93.216165px;}
.w3f{width:-92.862588px;}
.w2f{width:-92.856165px;}
.w11{width:26.100000px;}
.wd{width:32.220000px;}
.we{width:35.459998px;}
.wf{width:38.520000px;}
.w4d{width:39.059999px;}
.w4e{width:39.060000px;}
.w50{width:45.179999px;}
.w4f{width:45.899998px;}
.w2b{width:51.636165px;}
.w31{width:51.636167px;}
.w3c{width:51.642590px;}
.w17{width:51.659999px;}
.w20{width:51.660000px;}
.w2c{width:51.816165px;}
.w2a{width:51.816167px;}
.w3e{width:51.822590px;}
.w18{width:51.839999px;}
.w22{width:51.840000px;}
.w5{width:56.339999px;}
.w4c{width:64.259998px;}
.w4b{width:84.959997px;}
.w12{width:108.179997px;}
.wc{width:110.699997px;}
.w13{width:119.339997px;}
.w26{width:123.839997px;}
.w25{width:128.159997px;}
.w52{width:147.779997px;}
.w14{width:149.579997px;}
.w7{width:158.039997px;}
.w10{width:165.239996px;}
.w4a{width:165.239997px;}
.w6{width:169.199995px;}
.w27{width:177.299996px;}
.w4{width:178.199995px;}
.w36{width:197.099996px;}
.w16{width:246.239994px;}
.w35{width:247.500015px;}
.w8{width:260.279994px;}
.w47{width:262.619994px;}
.w51{width:284.759994px;}
.w9{width:314.459992px;}
.w15{width:322.917063px;}
.w24{width:322.919993px;}
.wa{width:361.259992px;}
.w48{width:374.039991px;}
.wb{width:393.659991px;}
.w49{width:399.599991px;}
.w3{width:679.859985px;}
.w2{width:892.979981px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.xb8{left:-521.117394px;}
.xb9{left:-517.337399px;}
.xbc{left:-501.497403px;}
.xba{left:-500.417402px;}
.xbb{left:-484.937402px;}
.xa1{left:-216.685534px;}
.x9f{left:-213.347521px;}
.xaf{left:-210.426085px;}
.xa0{left:-209.341917px;}
.x92{left:-198.383833px;}
.x93{left:-194.603827px;}
.x96{left:-178.763830px;}
.x94{left:-177.683829px;}
.x9e{left:-175.294233px;}
.xab{left:-167.950617px;}
.x95{left:-162.203829px;}
.xc0{left:-161.117406px;}
.xbf{left:-155.897390px;}
.xa6{left:-149.056570px;}
.xc7{left:-147.077931px;}
.xc5{left:-144.407522px;}
.x9d{left:-141.914164px;}
.xc6{left:-139.734303px;}
.xaa{left:-126.559329px;}
.xa5{left:-119.361636px;}
.xc1{left:-114.317388px;}
.xca{left:-110.359838px;}
.x9c{left:-108.534082px;}
.xc4{left:-106.354223px;}
.xa4{left:-89.006823px;}
.xa9{left:-85.835641px;}
.xae{left:-84.387621px;}
.x9b{left:-75.821626px;}
.xbe{left:-71.117406px;}
.xc3{left:-68.300969px;}
.xbd{left:-61.577427px;}
.xa3{left:-59.311899px;}
.xa8{left:-45.111955px;}
.x9a{left:-42.441546px;}
.xc9{left:-37.591298px;}
.xc2{left:-26.242055px;}
.x98{left:-24.416299px;}
.xa2{left:-8.500590px;}
.xa7{left:-3.720668px;}
.x0{left:0.000000px;}
.x4e{left:1.737606px;}
.x16{left:3.307824px;}
.x67{left:6.181169px;}
.x59{left:7.740011px;}
.x89{left:10.800000px;}
.x5b{left:12.240012px;}
.x23{left:13.280158px;}
.x5e{left:14.399989px;}
.x44{left:15.865096px;}
.xac{left:17.894910px;}
.xde{left:19.080012px;}
.x61{left:20.519994px;}
.xd8{left:21.599991px;}
.x37{left:23.835414px;}
.x1f{left:26.026296px;}
.x60{left:27.539984px;}
.x82{left:28.706858px;}
.x42{left:30.068130px;}
.x1b{left:32.852485px;}
.x6a{left:34.740011px;}
.x1e{left:36.556279px;}
.xad{left:37.691519px;}
.xd7{left:41.040004px;}
.x64{left:43.019994px;}
.x11{left:44.805702px;}
.x62{left:45.900014px;}
.x15{left:46.948264px;}
.x5{left:48.959999px;}
.xc8{left:51.867304px;}
.x2c{left:54.450918px;}
.x27{left:57.088693px;}
.x4f{left:58.796259px;}
.x21{left:59.911537px;}
.x10{left:61.795783px;}
.x4b{left:62.931544px;}
.x6e{left:64.471511px;}
.x1a{left:66.644738px;}
.x99{left:67.712690px;}
.x6d{left:68.783874px;}
.xf{left:70.403617px;}
.x22{left:71.682609px;}
.x32{left:72.739194px;}
.x18{left:75.252525px;}
.x7{left:76.500000px;}
.x81{left:78.109377px;}
.x29{left:80.679174px;}
.xda{left:81.899999px;}
.x13{left:85.627006px;}
.x6{left:87.119997px;}
.x51{left:90.156779px;}
.x8{left:93.780000px;}
.x41{left:96.021610px;}
.xa{left:97.739994px;}
.x66{left:99.581482px;}
.x26{left:100.884271px;}
.x6c{left:103.104522px;}
.x79{left:104.145830px;}
.x3e{left:107.013843px;}
.x14{left:108.556114px;}
.x69{left:111.091900px;}
.x3{left:119.339997px;}
.x3b{left:120.574725px;}
.x6f{left:124.199994px;}
.x17{left:125.771736px;}
.x28{left:127.259997px;}
.x30{left:128.281377px;}
.x33{left:132.194913px;}
.x19{left:133.214287px;}
.x12{left:134.680230px;}
.x2d{left:137.162108px;}
.xb7{left:139.528698px;}
.x3f{left:140.557185px;}
.x25{left:141.742609px;}
.x70{left:143.819996px;}
.x35{left:145.214971px;}
.xcb{left:146.879997px;}
.xb5{left:150.877941px;}
.x4{left:153.719992px;}
.x2a{left:155.149357px;}
.x7c{left:157.053171px;}
.x50{left:160.161318px;}
.x88{left:161.672373px;}
.xcd{left:165.385579px;}
.x97{left:166.836149px;}
.x4c{left:169.303233px;}
.x55{left:171.179991px;}
.xd2{left:172.259998px;}
.x91{left:174.062925px;}
.x1{left:177.119991px;}
.x2e{left:178.179036px;}
.x56{left:179.820004px;}
.xd3{left:180.899990px;}
.x49{left:185.734935px;}
.x31{left:186.758718px;}
.xb4{left:188.931194px;}
.x34{left:190.672277px;}
.x8a{left:191.882925px;}
.x40{left:193.516392px;}
.x2f{left:195.639447px;}
.x4a{left:201.902232px;}
.x9{left:203.759994px;}
.xb0{left:205.621257px;}
.x39{left:208.134937px;}
.x52{left:209.900385px;}
.x3c{left:212.554507px;}
.x45{left:213.687724px;}
.x46{left:216.256352px;}
.x57{left:217.619977px;}
.xd4{left:218.699985px;}
.x76{left:221.643695px;}
.x38{left:224.566638px;}
.xdb{left:226.619995px;}
.xd5{left:227.880000px;}
.x3a{left:228.986210px;}
.x2b{left:233.344915px;}
.x48{left:237.372051px;}
.xb1{left:240.336543px;}
.x80{left:242.339326px;}
.x87{left:245.478052px;}
.x77{left:252.353365px;}
.xd6{left:254.699985px;}
.x7d{left:261.032175px;}
.x83{left:263.954904px;}
.xdc{left:266.399994px;}
.xb6{left:267.708202px;}
.x3d{left:270.990947px;}
.x4d{left:272.728549px;}
.xb2{left:275.051784px;}
.x47{left:277.525844px;}
.x43{left:282.738674px;}
.x84{left:283.751512px;}
.x7e{left:303.091067px;}
.x7a{left:306.187699px;}
.xb3{left:309.767116px;}
.x2{left:313.379997px;}
.x85{left:322.684885px;}
.x7f{left:324.454324px;}
.x7b{left:340.501825px;}
.x86{left:341.821603px;}
.x78{left:345.149958px;}
.xd9{left:352.799992px;}
.x8b{left:372.602921px;}
.xdd{left:392.579991px;}
.x36{left:431.279984px;}
.x53{left:437.759994px;}
.x54{left:460.439990px;}
.x58{left:464.759989px;}
.xb{left:468.179993px;}
.x74{left:484.199982px;}
.x8c{left:485.642919px;}
.xc{left:489.419998px;}
.xd1{left:495.179993px;}
.x1d{left:508.679988px;}
.xcc{left:517.679988px;}
.x75{left:531.000000px;}
.x73{left:536.400009px;}
.x8d{left:558.902918px;}
.xe{left:559.979988px;}
.x8f{left:563.762917px;}
.x20{left:564.839997px;}
.xd{left:568.619980px;}
.x24{left:570.059988px;}
.x72{left:574.199982px;}
.x5a{left:576.179987px;}
.x71{left:583.740006px;}
.xce{left:594.900009px;}
.xcf{left:596.339997px;}
.x5c{left:609.299987px;}
.xd0{left:613.799973px;}
.x5d{left:645.479985px;}
.x5f{left:684.719985px;}
.x6b{left:692.639985px;}
.x68{left:700.559985px;}
.x65{left:706.139983px;}
.x8e{left:725.942913px;}
.x90{left:730.622913px;}
.x63{left:747.179984px;}
.x1c{left:822.960022px;}
@media print{
.v9{vertical-align:-55.833008pt;}
.v2{vertical-align:-50.834475pt;}
.vb{vertical-align:-46.619957pt;}
.v7{vertical-align:-40.578939pt;}
.vc{vertical-align:-39.049237pt;}
.v5{vertical-align:-24.319989pt;}
.v8{vertical-align:-12.689131pt;}
.vd{vertical-align:-11.024085pt;}
.ve{vertical-align:-3.984619pt;}
.v3{vertical-align:-2.256347pt;}
.v1{vertical-align:-0.929040pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:3.199989pt;}
.v4{vertical-align:24.319989pt;}
.va{vertical-align:36.525632pt;}
.v6{vertical-align:43.689984pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.014760pt;}
.ls4a{letter-spacing:0.028356pt;}
.ls80{letter-spacing:0.044283pt;}
.ls2f{letter-spacing:0.044368pt;}
.ls2b{letter-spacing:0.044406pt;}
.lsb{letter-spacing:0.044448pt;}
.ls44{letter-spacing:0.044454pt;}
.ls6d{letter-spacing:0.132516pt;}
.ls21{letter-spacing:0.132596pt;}
.ls5e{letter-spacing:0.132676pt;}
.ls6a{letter-spacing:0.179776pt;}
.ls74{letter-spacing:0.179936pt;}
.ls5c{letter-spacing:0.179941pt;}
.ls1e{letter-spacing:0.212480pt;}
.ls40{letter-spacing:0.229571pt;}
.ls22{letter-spacing:0.229657pt;}
.ls62{letter-spacing:0.229737pt;}
.ls0{letter-spacing:0.250608pt;}
.ls1{letter-spacing:0.252725pt;}
.ls86{letter-spacing:0.288000pt;}
.ls17{letter-spacing:0.318720pt;}
.ls27{letter-spacing:0.327900pt;}
.ls2e{letter-spacing:0.327980pt;}
.ls6b{letter-spacing:0.398231pt;}
.ls1f{letter-spacing:0.398236pt;}
.ls5f{letter-spacing:0.406188pt;}
.ls75{letter-spacing:0.406193pt;}
.ls6{letter-spacing:0.413004pt;}
.ls73{letter-spacing:0.439707pt;}
.ls72{letter-spacing:0.439787pt;}
.ls52{letter-spacing:0.439867pt;}
.ls57{letter-spacing:0.439873pt;}
.ls14{letter-spacing:0.542869pt;}
.ls4c{letter-spacing:0.654684pt;}
.ls84{letter-spacing:0.654732pt;}
.lsd{letter-spacing:0.869495pt;}
.ls60{letter-spacing:0.869500pt;}
.ls8{letter-spacing:0.869580pt;}
.ls38{letter-spacing:0.869618pt;}
.ls10{letter-spacing:0.869660pt;}
.lsf{letter-spacing:0.869820pt;}
.ls47{letter-spacing:1.509584pt;}
.ls69{letter-spacing:1.509744pt;}
.ls5b{letter-spacing:1.509749pt;}
.ls66{letter-spacing:9.779208pt;}
.ls54{letter-spacing:9.779213pt;}
.ls5d{letter-spacing:9.858335pt;}
.ls5a{letter-spacing:9.858340pt;}
.ls68{letter-spacing:9.858415pt;}
.ls53{letter-spacing:9.858420pt;}
.ls59{letter-spacing:9.858500pt;}
.ls51{letter-spacing:9.927215pt;}
.ls58{letter-spacing:9.997508pt;}
.ls23{letter-spacing:10.359663pt;}
.ls67{letter-spacing:10.637390pt;}
.ls56{letter-spacing:10.637432pt;}
.ls55{letter-spacing:10.637438pt;}
.ls20{letter-spacing:10.782139pt;}
.ls6c{letter-spacing:10.782145pt;}
.ls50{letter-spacing:11.197304pt;}
.ls85{letter-spacing:11.388932pt;}
.ls4e{letter-spacing:11.837228pt;}
.ls7{letter-spacing:12.028941pt;}
.ls4d{letter-spacing:12.093088pt;}
.ls4f{letter-spacing:12.140572pt;}
.ls26{letter-spacing:12.487032pt;}
.ls3e{letter-spacing:12.487112pt;}
.ls46{letter-spacing:12.919523pt;}
.ls29{letter-spacing:12.919529pt;}
.ls15{letter-spacing:13.364984pt;}
.ls2d{letter-spacing:13.483348pt;}
.ls7c{letter-spacing:13.483353pt;}
.ls39{letter-spacing:13.559452pt;}
.ls76{letter-spacing:13.597800pt;}
.ls3c{letter-spacing:13.597960pt;}
.ls18{letter-spacing:13.599688pt;}
.ls81{letter-spacing:13.698043pt;}
.ls41{letter-spacing:13.766800pt;}
.ls42{letter-spacing:13.766960pt;}
.ls45{letter-spacing:14.199371pt;}
.ls30{letter-spacing:14.199414pt;}
.ls43{letter-spacing:14.237889pt;}
.ls11{letter-spacing:14.839300pt;}
.ls82{letter-spacing:14.878277pt;}
.ls13{letter-spacing:15.036712pt;}
.ls31{letter-spacing:15.284835pt;}
.ls19{letter-spacing:15.813477pt;}
.ls12{letter-spacing:16.157825pt;}
.ls28{letter-spacing:16.228417pt;}
.ls83{letter-spacing:16.897998pt;}
.ls7d{letter-spacing:18.039084pt;}
.ls4b{letter-spacing:18.471581pt;}
.ls79{letter-spacing:18.679050pt;}
.ls7a{letter-spacing:18.876500pt;}
.ls3f{letter-spacing:18.886520pt;}
.ls78{letter-spacing:19.997453pt;}
.ls7e{letter-spacing:20.598944pt;}
.ls3a{letter-spacing:20.707963pt;}
.ls25{letter-spacing:20.708091pt;}
.ls4{letter-spacing:21.628128pt;}
.ls77{letter-spacing:21.878834pt;}
.ls5{letter-spacing:22.908060pt;}
.ls3d{letter-spacing:23.722464pt;}
.ls24{letter-spacing:25.718499pt;}
.ls2a{letter-spacing:26.467612pt;}
.ls9{letter-spacing:26.998432pt;}
.ls65{letter-spacing:29.115536pt;}
.ls71{letter-spacing:29.115701pt;}
.ls70{letter-spacing:29.558207pt;}
.ls64{letter-spacing:29.558213pt;}
.lse{letter-spacing:29.558378pt;}
.ls6e{letter-spacing:30.198136pt;}
.ls61{letter-spacing:30.198296pt;}
.lsc{letter-spacing:30.236649pt;}
.ls63{letter-spacing:30.876567pt;}
.ls6f{letter-spacing:30.876572pt;}
.ls89{letter-spacing:31.035917pt;}
.ls48{letter-spacing:31.477984pt;}
.ls2{letter-spacing:31.863747pt;}
.ls49{letter-spacing:32.315650pt;}
.ls3b{letter-spacing:33.605433pt;}
.ls8a{letter-spacing:33.915917pt;}
.lsa{letter-spacing:36.155150pt;}
.ls7b{letter-spacing:37.445141pt;}
.ls7f{letter-spacing:38.517476pt;}
.ls87{letter-spacing:39.408221pt;}
.ls88{letter-spacing:39.995180pt;}
.ls2c{letter-spacing:48.040648pt;}
.ls16{letter-spacing:191.958887pt;}
.ls35{letter-spacing:204.754047pt;}
.ls36{letter-spacing:218.120145pt;}
.ls32{letter-spacing:317.894802pt;}
.ls37{letter-spacing:358.809128pt;}
.ls34{letter-spacing:362.301436pt;}
.ls1d{letter-spacing:388.466465pt;}
.ls1b{letter-spacing:389.889822pt;}
.ls1c{letter-spacing:393.181336pt;}
.ls33{letter-spacing:476.228750pt;}
.ws13{word-spacing:-53.120000pt;}
.ws62{word-spacing:-48.000000pt;}
.wsa0{word-spacing:-42.880000pt;}
.ws1a{word-spacing:-40.063882pt;}
.ws1{word-spacing:-32.000000pt;}
.wsa9{word-spacing:-28.696331pt;}
.ws83{word-spacing:-25.692368pt;}
.ws1d{word-spacing:-13.598720pt;}
.wsa{word-spacing:-13.280000pt;}
.ws1f{word-spacing:-13.056000pt;}
.ws2b{word-spacing:-12.985344pt;}
.ws22{word-spacing:-12.916224pt;}
.ws99{word-spacing:-12.762112pt;}
.ws17{word-spacing:-12.741632pt;}
.wsab{word-spacing:-12.288000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws9{word-spacing:-10.720000pt;}
.ws28{word-spacing:-8.640000pt;}
.ws95{word-spacing:-7.378096pt;}
.ws31{word-spacing:-7.254000pt;}
.ws40{word-spacing:-5.651555pt;}
.ws1e{word-spacing:-4.516907pt;}
.ws64{word-spacing:-4.210358pt;}
.ws29{word-spacing:-1.972019pt;}
.wsa5{word-spacing:-0.321519pt;}
.ws89{word-spacing:-0.194000pt;}
.ws8e{word-spacing:-0.193995pt;}
.ws7c{word-spacing:-0.193835pt;}
.wsac{word-spacing:-0.170528pt;}
.wsa7{word-spacing:-0.157339pt;}
.ws87{word-spacing:-0.154397pt;}
.ws75{word-spacing:-0.154311pt;}
.ws7a{word-spacing:-0.154231pt;}
.wsb{word-spacing:-0.053120pt;}
.ws7f{word-spacing:-0.052255pt;}
.ws3c{word-spacing:-0.048224pt;}
.ws4{word-spacing:-0.048000pt;}
.ws7e{word-spacing:-0.044292pt;}
.ws8f{word-spacing:-0.044287pt;}
.ws74{word-spacing:-0.042880pt;}
.ws79{word-spacing:-0.041012pt;}
.ws73{word-spacing:-0.040974pt;}
.ws78{word-spacing:-0.038524pt;}
.ws77{word-spacing:-0.038444pt;}
.ws84{word-spacing:-0.038401pt;}
.ws8c{word-spacing:-0.038364pt;}
.ws86{word-spacing:-0.038359pt;}
.ws6c{word-spacing:-0.007892pt;}
.ws2f{word-spacing:0.000000pt;}
.ws10{word-spacing:0.004061pt;}
.ws27{word-spacing:0.140128pt;}
.ws0{word-spacing:0.223682pt;}
.ws4e{word-spacing:0.308173pt;}
.ws3d{word-spacing:0.317125pt;}
.ws2{word-spacing:0.317965pt;}
.ws76{word-spacing:0.342872pt;}
.ws85{word-spacing:0.342877pt;}
.ws26{word-spacing:0.438105pt;}
.ws4f{word-spacing:0.466222pt;}
.ws91{word-spacing:0.466265pt;}
.ws30{word-spacing:0.466512pt;}
.ws3a{word-spacing:0.536453pt;}
.ws6{word-spacing:0.553173pt;}
.wsaa{word-spacing:0.563677pt;}
.ws5e{word-spacing:0.890964pt;}
.wsa4{word-spacing:0.956301pt;}
.ws14{word-spacing:1.204679pt;}
.ws3f{word-spacing:1.746118pt;}
.ws11{word-spacing:1.864381pt;}
.wsa1{word-spacing:2.386304pt;}
.ws1b{word-spacing:3.108958pt;}
.wse{word-spacing:4.061501pt;}
.wsa2{word-spacing:4.369073pt;}
.ws5f{word-spacing:4.682985pt;}
.ws5d{word-spacing:4.954568pt;}
.ws9b{word-spacing:5.641424pt;}
.ws8d{word-spacing:6.225744pt;}
.ws7b{word-spacing:6.225749pt;}
.ws88{word-spacing:6.225909pt;}
.wsa3{word-spacing:6.687701pt;}
.ws93{word-spacing:6.717410pt;}
.ws9c{word-spacing:8.145521pt;}
.ws7{word-spacing:8.191335pt;}
.ws2d{word-spacing:8.310620pt;}
.ws24{word-spacing:8.834697pt;}
.ws92{word-spacing:9.425533pt;}
.ws61{word-spacing:10.705381pt;}
.ws5{word-spacing:11.455043pt;}
.ws7d{word-spacing:13.178480pt;}
.ws3b{word-spacing:13.265241pt;}
.ws3e{word-spacing:13.321504pt;}
.wsc{word-spacing:14.600772pt;}
.ws82{word-spacing:14.940620pt;}
.ws8b{word-spacing:14.940786pt;}
.ws39{word-spacing:15.303238pt;}
.ws90{word-spacing:15.835696pt;}
.ws81{word-spacing:15.835701pt;}
.ws80{word-spacing:16.464865pt;}
.ws8a{word-spacing:16.465025pt;}
.wsf{word-spacing:17.744873pt;}
.ws60{word-spacing:19.664644pt;}
.ws23{word-spacing:20.924283pt;}
.ws71{word-spacing:21.300744pt;}
.ws2e{word-spacing:21.617780pt;}
.wsd{word-spacing:24.155548pt;}
.ws9e{word-spacing:25.916077pt;}
.ws53{word-spacing:25.958400pt;}
.ws69{word-spacing:27.697756pt;}
.ws70{word-spacing:27.791942pt;}
.ws65{word-spacing:30.211164pt;}
.ws9d{word-spacing:31.079760pt;}
.ws6a{word-spacing:31.920282pt;}
.ws37{word-spacing:33.134735pt;}
.ws72{word-spacing:33.465729pt;}
.ws12{word-spacing:33.629680pt;}
.ws6f{word-spacing:34.135885pt;}
.wsa6{word-spacing:35.145840pt;}
.ws9f{word-spacing:35.156293pt;}
.ws35{word-spacing:41.546650pt;}
.ws8{word-spacing:51.531120pt;}
.ws5b{word-spacing:56.985600pt;}
.wsa8{word-spacing:58.292841pt;}
.ws21{word-spacing:61.141368pt;}
.ws49{word-spacing:67.987522pt;}
.ws41{word-spacing:69.340856pt;}
.ws18{word-spacing:70.674449pt;}
.ws25{word-spacing:81.992190pt;}
.ws47{word-spacing:89.408946pt;}
.ws19{word-spacing:97.244135pt;}
.ws4a{word-spacing:99.966648pt;}
.ws16{word-spacing:100.564127pt;}
.ws68{word-spacing:111.541619pt;}
.ws50{word-spacing:119.710262pt;}
.ws20{word-spacing:120.219648pt;}
.ws44{word-spacing:121.258584pt;}
.ws43{word-spacing:121.258737pt;}
.ws67{word-spacing:123.156992pt;}
.ws97{word-spacing:127.212732pt;}
.ws4c{word-spacing:127.815589pt;}
.ws66{word-spacing:128.183808pt;}
.ws6e{word-spacing:132.323018pt;}
.ws94{word-spacing:132.923778pt;}
.ws1c{word-spacing:144.490107pt;}
.ws5a{word-spacing:176.947200pt;}
.ws6b{word-spacing:179.909745pt;}
.ws57{word-spacing:184.883200pt;}
.ws15{word-spacing:192.507968pt;}
.ws5c{word-spacing:196.147200pt;}
.ws2a{word-spacing:204.134477pt;}
.ws48{word-spacing:209.317921pt;}
.ws34{word-spacing:209.737649pt;}
.ws4b{word-spacing:211.154043pt;}
.ws63{word-spacing:212.300746pt;}
.ws46{word-spacing:222.562864pt;}
.ws42{word-spacing:233.747239pt;}
.ws54{word-spacing:237.056000pt;}
.ws59{word-spacing:247.296000pt;}
.ws52{word-spacing:253.257600pt;}
.ws98{word-spacing:255.402089pt;}
.ws51{word-spacing:262.374400pt;}
.ws36{word-spacing:264.302715pt;}
.ws55{word-spacing:323.422024pt;}
.ws2c{word-spacing:346.004681pt;}
.ws38{word-spacing:374.431967pt;}
.ws4d{word-spacing:382.015406pt;}
.ws9a{word-spacing:396.033860pt;}
.ws96{word-spacing:504.205521pt;}
.ws58{word-spacing:509.286400pt;}
.ws32{word-spacing:524.798500pt;}
.ws33{word-spacing:524.798693pt;}
.ws45{word-spacing:547.472801pt;}
.ws56{word-spacing:582.195200pt;}
.ws6d{word-spacing:720.452172pt;}
._54{margin-left:-293.353641pt;}
._4d{margin-left:-276.126442pt;}
._27{margin-left:-238.579038pt;}
._51{margin-left:-195.602281pt;}
._4c{margin-left:-126.961922pt;}
._24{margin-left:-118.489002pt;}
._23{margin-left:-117.054094pt;}
._5b{margin-left:-25.625708pt;}
._47{margin-left:-20.520589pt;}
._46{margin-left:-3.430400pt;}
._48{margin-left:-2.529920pt;}
._0{margin-left:-1.322283pt;}
._2{width:1.062400pt;}
._c{width:2.784000pt;}
._d{width:3.991083pt;}
._22{width:5.274707pt;}
._15{width:6.311643pt;}
._10{width:7.248000pt;}
._11{width:8.160000pt;}
._a{width:9.099706pt;}
._b{width:10.832432pt;}
._12{width:11.970826pt;}
._1{width:13.641895pt;}
._3{width:14.882487pt;}
._6{width:16.368000pt;}
._14{width:18.007680pt;}
._21{width:19.123200pt;}
._f{width:20.127123pt;}
._7{width:21.667883pt;}
._8{width:22.712234pt;}
._18{width:23.850880pt;}
._13{width:24.908867pt;}
._16{width:26.527356pt;}
._5{width:27.495684pt;}
._4{width:28.559716pt;}
._e{width:30.211883pt;}
._1b{width:31.443227pt;}
._1f{width:32.509440pt;}
._9{width:34.165145pt;}
._30{width:35.142977pt;}
._1a{width:36.264630pt;}
._1c{width:37.297670pt;}
._1d{width:38.411288pt;}
._58{width:39.808717pt;}
._17{width:40.943264pt;}
._3b{width:41.984000pt;}
._45{width:43.258809pt;}
._1e{width:44.221090pt;}
._20{width:46.492751pt;}
._2e{width:48.233753pt;}
._55{width:49.236935pt;}
._44{width:51.598601pt;}
._19{width:54.942349pt;}
._28{width:58.432997pt;}
._5a{width:79.170851pt;}
._59{width:85.686151pt;}
._2a{width:100.591553pt;}
._31{width:104.903081pt;}
._4b{width:107.925740pt;}
._29{width:112.939463pt;}
._3c{width:116.172800pt;}
._25{width:130.586254pt;}
._52{width:143.515597pt;}
._2f{width:150.080860pt;}
._56{width:154.298167pt;}
._26{width:160.514759pt;}
._50{width:167.191900pt;}
._2c{width:173.795844pt;}
._4f{width:186.043723pt;}
._33{width:188.067858pt;}
._32{width:196.239939pt;}
._43{width:203.315200pt;}
._35{width:206.767751pt;}
._4a{width:212.293309pt;}
._4e{width:222.489652pt;}
._57{width:226.518749pt;}
._42{width:236.083200pt;}
._3d{width:239.360000pt;}
._41{width:246.528000pt;}
._40{width:256.956408pt;}
._36{width:259.188784pt;}
._49{width:260.956026pt;}
._3a{width:269.774400pt;}
._53{width:272.966873pt;}
._38{width:275.439459pt;}
._2b{width:292.629971pt;}
._34{width:318.736392pt;}
._3f{width:321.740800pt;}
._39{width:332.556000pt;}
._3e{width:341.350400pt;}
._37{width:387.283548pt;}
._2d{width:580.814197pt;}
.fs23{font-size:25.692368pt;}
.fs21{font-size:27.797952pt;}
.fs25{font-size:28.696331pt;}
.fs1d{font-size:29.061280pt;}
.fs7{font-size:29.465024pt;}
.fs17{font-size:29.486336pt;}
.fs24{font-size:29.512384pt;}
.fs19{font-size:29.600000pt;}
.fs13{font-size:29.653280pt;}
.fsb{font-size:29.868768pt;}
.fsf{font-size:30.028608pt;}
.fsd{font-size:34.560000pt;}
.fs26{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs22{font-size:48.082944pt;}
.fs1e{font-size:50.268160pt;}
.fs8{font-size:50.966528pt;}
.fs16{font-size:51.003392pt;}
.fs1b{font-size:51.048448pt;}
.fs1a{font-size:51.200000pt;}
.fs14{font-size:51.292160pt;}
.fsc{font-size:51.664896pt;}
.fs10{font-size:51.941376pt;}
.fsa{font-size:52.224000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs20{font-size:62.983648pt;}
.fs1c{font-size:65.846053pt;}
.fs15{font-size:66.809131pt;}
.fs18{font-size:67.066667pt;}
.fs11{font-size:67.187387pt;}
.fs5{font-size:69.149899pt;}
.fse{font-size:70.472544pt;}
.fs9{font-size:70.856000pt;}
.fs1f{font-size:75.880896pt;}
.fs6{font-size:76.051616pt;}
.fs12{font-size:78.674693pt;}
.fs0{font-size:128.000000pt;}
.y1ec{bottom:-989.762508pt;}
.y1ba{bottom:-983.202511pt;}
.y1eb{bottom:-836.162512pt;}
.y1e0{bottom:-764.802507pt;}
.y1af{bottom:-758.242529pt;}
.y1df{bottom:-611.202531pt;}
.y1be{bottom:-489.442521pt;}
.y1b2{bottom:-489.122535pt;}
.y1b1{bottom:-488.322527pt;}
.y1f0{bottom:-487.362524pt;}
.y1ef{bottom:-338.402523pt;}
.y1b0{bottom:-332.482520pt;}
.y1c3{bottom:-268.002539pt;}
.y1f4{bottom:-265.922543pt;}
.y1b5{bottom:-264.002539pt;}
.y1b4{bottom:-263.202491pt;}
.y1b3{bottom:-119.202572pt;}
.y1f3{bottom:-112.482520pt;}
.y0{bottom:0.000000pt;}
.y1e6{bottom:0.799997pt;}
.y27d{bottom:0.799999pt;}
.y1ea{bottom:0.800039pt;}
.y1ee{bottom:1.920003pt;}
.y1c2{bottom:2.079987pt;}
.y1e2{bottom:2.079988pt;}
.y1bd{bottom:2.080000pt;}
.y1b9{bottom:2.080004pt;}
.y1ad{bottom:2.080011pt;}
.y12c{bottom:2.879995pt;}
.y264{bottom:2.879996pt;}
.y123{bottom:2.880003pt;}
.y140{bottom:2.880004pt;}
.y119{bottom:2.880011pt;}
.y210{bottom:2.951791pt;}
.y1e8{bottom:3.039960pt;}
.y136{bottom:3.039991pt;}
.y1b7{bottom:3.040004pt;}
.y1e4{bottom:3.040007pt;}
.y1c0{bottom:3.040012pt;}
.y8f{bottom:3.198755pt;}
.ye0{bottom:3.293331pt;}
.y8{bottom:3.359981pt;}
.y6{bottom:3.360008pt;}
.y1f8{bottom:3.519989pt;}
.y1f6{bottom:3.519991pt;}
.y1f2{bottom:3.520003pt;}
.yd1{bottom:3.546924pt;}
.y6d{bottom:3.759083pt;}
.y27b{bottom:3.839988pt;}
.y280{bottom:4.480007pt;}
.y116{bottom:4.800000pt;}
.y120{bottom:4.959995pt;}
.y260{bottom:5.119980pt;}
.y7b{bottom:5.164739pt;}
.y11f{bottom:5.280001pt;}
.y268{bottom:5.439961pt;}
.y261{bottom:5.439967pt;}
.y270{bottom:5.439975pt;}
.y26e{bottom:5.439989pt;}
.y276{bottom:5.440003pt;}
.y26c{bottom:5.440008pt;}
.y279{bottom:5.440011pt;}
.y115{bottom:5.440015pt;}
.y26a{bottom:5.440021pt;}
.y274{bottom:5.440023pt;}
.y272{bottom:5.440036pt;}
.y128{bottom:5.477653pt;}
.y11e{bottom:5.600009pt;}
.y4{bottom:6.080005pt;}
.ydf{bottom:6.493333pt;}
.y130{bottom:6.574552pt;}
.y139{bottom:6.574555pt;}
.y142{bottom:6.671301pt;}
.y63{bottom:6.721993pt;}
.yd6{bottom:6.726671pt;}
.ycc{bottom:7.066659pt;}
.y56{bottom:7.260903pt;}
.y143{bottom:7.297400pt;}
.y132{bottom:7.490913pt;}
.y13c{bottom:7.490917pt;}
.y55{bottom:7.659096pt;}
.ydb{bottom:7.660000pt;}
.y64{bottom:7.775988pt;}
.y146{bottom:8.173905pt;}
.y5d{bottom:8.687741pt;}
.y6b{bottom:8.770903pt;}
.y265{bottom:9.119987pt;}
.y126{bottom:9.119993pt;}
.y11c{bottom:9.120000pt;}
.y12e{bottom:9.120005pt;}
.y6c{bottom:9.342721pt;}
.ydc{bottom:9.360001pt;}
.y11b{bottom:9.439988pt;}
.y125{bottom:9.440000pt;}
.y93{bottom:9.710392pt;}
.y266{bottom:9.759961pt;}
.y124{bottom:9.760008pt;}
.y11a{bottom:9.760015pt;}
.y12d{bottom:9.919993pt;}
.y137{bottom:10.080009pt;}
.y77{bottom:10.981053pt;}
.y8a{bottom:11.313175pt;}
.y5c{bottom:11.441811pt;}
.y129{bottom:11.519997pt;}
.y133{bottom:11.520009pt;}
.y89{bottom:11.981063pt;}
.y13d{bottom:12.479993pt;}
.y13b{bottom:13.120007pt;}
.y145{bottom:13.558264pt;}
.yd0{bottom:14.039743pt;}
.y6a{bottom:14.556364pt;}
.y190{bottom:14.866083pt;}
.y1a1{bottom:14.866097pt;}
.y131{bottom:15.018176pt;}
.y13a{bottom:15.018179pt;}
.y7a{bottom:15.309473pt;}
.yd8{bottom:15.326667pt;}
.y144{bottom:15.373917pt;}
.y250{bottom:15.417535pt;}
.y211{bottom:16.112924pt;}
.y1d0{bottom:16.348361pt;}
.y17f{bottom:16.508328pt;}
.y16e{bottom:16.508333pt;}
.y118{bottom:16.639980pt;}
.y122{bottom:16.639992pt;}
.y13f{bottom:16.639993pt;}
.y263{bottom:16.640007pt;}
.y12b{bottom:16.799999pt;}
.yc7{bottom:16.828968pt;}
.y1d5{bottom:16.842421pt;}
.y17a{bottom:17.002428pt;}
.y18b{bottom:17.336501pt;}
.y19c{bottom:17.336516pt;}
.y58{bottom:17.381345pt;}
.y169{bottom:17.496533pt;}
.y135{bottom:17.760001pt;}
.y1a2{bottom:17.830596pt;}
.y191{bottom:18.324701pt;}
.yde{bottom:18.759996pt;}
.yda{bottom:19.359992pt;}
.y251{bottom:20.308953pt;}
.y1a3{bottom:20.795104pt;}
.y16f{bottom:20.955111pt;}
.y27f{bottom:20.959987pt;}
.y20f{bottom:20.998503pt;}
.y7d{bottom:21.193425pt;}
.y5b{bottom:21.396360pt;}
.y192{bottom:21.783279pt;}
.y8e{bottom:21.831973pt;}
.y180{bottom:23.425524pt;}
.y75{bottom:23.628159pt;}
.y212{bottom:24.189096pt;}
.y1a4{bottom:24.253692pt;}
.y79{bottom:24.676447pt;}
.y1d1{bottom:24.747776pt;}
.ybe{bottom:24.831409pt;}
.y16a{bottom:24.907747pt;}
.y193{bottom:25.241856pt;}
.y170{bottom:25.401888pt;}
.ycf{bottom:25.727955pt;}
.y1d6{bottom:25.735935pt;}
.yc1{bottom:25.761157pt;}
.ybc{bottom:25.827564pt;}
.y17b{bottom:25.895941pt;}
.y78{bottom:26.231969pt;}
.ycb{bottom:26.757312pt;}
.y7c{bottom:26.806839pt;}
.y91{bottom:26.874292pt;}
.y1c4{bottom:26.884147pt;}
.y5f{bottom:27.170000pt;}
.y1a5{bottom:27.218200pt;}
.yd9{bottom:27.426663pt;}
.y18c{bottom:27.712275pt;}
.y19d{bottom:28.206369pt;}
.y194{bottom:28.700433pt;}
.y54{bottom:29.559080pt;}
.y181{bottom:29.848619pt;}
.y1a6{bottom:30.182697pt;}
.y171{bottom:30.342724pt;}
.y5a{bottom:30.587725pt;}
.ydd{bottom:31.026659pt;}
.y76{bottom:32.048284pt;}
.y59{bottom:32.114092pt;}
.y195{bottom:32.159052pt;}
.y16b{bottom:32.319043pt;}
.y1d2{bottom:32.653131pt;}
.y5e{bottom:32.678179pt;}
.yd7{bottom:33.160000pt;}
.yc4{bottom:34.394479pt;}
.y172{bottom:34.789420pt;}
.y17c{bottom:34.789456pt;}
.y8d{bottom:34.955347pt;}
.y1d7{bottom:35.123549pt;}
.yc9{bottom:35.224617pt;}
.y182{bottom:36.271715pt;}
.y1c5{bottom:36.765820pt;}
.ybb{bottom:37.482573pt;}
.y57{bottom:37.821368pt;}
.y18d{bottom:38.088048pt;}
.y92{bottom:38.294620pt;}
.yc6{bottom:38.412301pt;}
.y19e{bottom:38.582132pt;}
.y173{bottom:39.236197pt;}
.y196{bottom:39.570307pt;}
.y88{bottom:39.897485pt;}
.y16c{bottom:40.224397pt;}
.y1d3{bottom:40.558485pt;}
.y87{bottom:40.565372pt;}
.y90{bottom:41.500349pt;}
.y252{bottom:41.505141pt;}
.y183{bottom:43.188869pt;}
.y17d{bottom:43.682969pt;}
.y1c8{bottom:43.682975pt;}
.y1d8{bottom:44.017063pt;}
.y174{bottom:45.659293pt;}
.y1c6{bottom:46.647493pt;}
.y8c{bottom:47.243920pt;}
.yc0{bottom:47.543709pt;}
.y16d{bottom:47.635612pt;}
.yca{bottom:47.709745pt;}
.y18e{bottom:48.463820pt;}
.y19f{bottom:48.957895pt;}
.y1d4{bottom:48.957900pt;}
.y184{bottom:49.611965pt;}
.y8b{bottom:50.416284pt;}
.y1c9{bottom:52.576448pt;}
.y17e{bottom:53.070584pt;}
.yc3{bottom:53.254993pt;}
.y1d9{bottom:53.404636pt;}
.yce{bottom:54.682829pt;}
.yc8{bottom:55.180896pt;}
.y185{bottom:56.529161pt;}
.y1c7{bottom:56.529167pt;}
.yc5{bottom:57.472055pt;}
.y18f{bottom:58.839593pt;}
.y1a0{bottom:59.333668pt;}
.y1ca{bottom:59.987744pt;}
.y1da{bottom:60.321832pt;}
.y253{bottom:62.375237pt;}
.ybd{bottom:65.474496pt;}
.y1a7{bottom:66.250843pt;}
.ycd{bottom:66.371021pt;}
.ybf{bottom:66.404224pt;}
.y197{bottom:67.239008pt;}
.y175{bottom:74.810253pt;}
.yc2{bottom:75.037565pt;}
.y167{bottom:79.837489pt;}
.y20d{bottom:81.120025pt;}
.y186{bottom:81.727485pt;}
.y1cb{bottom:83.209668pt;}
.y254{bottom:83.245335pt;}
.y1db{bottom:85.026015pt;}
.y14c{bottom:88.157491pt;}
.y24e{bottom:91.200023pt;}
.ye5{bottom:93.280019pt;}
.y1a8{bottom:93.919544pt;}
.y198{bottom:94.907709pt;}
.y166{bottom:95.197489pt;}
.y20c{bottom:96.320028pt;}
.y176{bottom:103.467155pt;}
.y24d{bottom:103.520020pt;}
.y255{bottom:104.441501pt;}
.y110{bottom:105.760020pt;}
.y187{bottom:106.431668pt;}
.y1cc{bottom:106.431673pt;}
.y14b{bottom:109.277487pt;}
.ye4{bottom:109.760020pt;}
.y1dc{bottom:110.224339pt;}
.y165{bottom:110.397492pt;}
.y38{bottom:110.560017pt;}
.y80{bottom:110.880025pt;}
.y20b{bottom:112.800019pt;}
.y24c{bottom:115.680023pt;}
.y10f{bottom:121.120025pt;}
.y1a9{bottom:121.588265pt;}
.y199{bottom:122.576411pt;}
.y19b{bottom:122.720023pt;}
.ye3{bottom:124.960021pt;}
.y256{bottom:125.311619pt;}
.y164{bottom:125.757487pt;}
.y37{bottom:125.920024pt;}
.y7f{bottom:126.240021pt;}
.y24b{bottom:128.000020pt;}
.y20a{bottom:128.160024pt;}
.y1cd{bottom:129.653597pt;}
.y1b8{bottom:130.557488pt;}
.y188{bottom:131.629909pt;}
.y177{bottom:132.618115pt;}
.y1dd{bottom:135.422580pt;}
.y10e{bottom:136.480021pt;}
.y1ed{bottom:137.277487pt;}
.y74{bottom:138.080023pt;}
.ye2{bottom:140.320017pt;}
.y163{bottom:140.957489pt;}
.y36{bottom:141.280019pt;}
.y209{bottom:143.360027pt;}
.y257{bottom:146.181695pt;}
.y1aa{bottom:149.751047pt;}
.y19a{bottom:150.245152pt;}
.y10d{bottom:151.680023pt;}
.yd5{bottom:152.320021pt;}
.y24a{bottom:152.480021pt;}
.y1ce{bottom:152.875521pt;}
.y189{bottom:156.334175pt;}
.y35{bottom:156.640025pt;}
.y7e{bottom:156.960021pt;}
.y162{bottom:157.437489pt;}
.y208{bottom:158.720021pt;}
.y1de{bottom:160.126845pt;}
.y178{bottom:161.769076pt;}
.y249{bottom:164.800019pt;}
.y258{bottom:167.051812pt;}
.y10c{bottom:168.160024pt;}
.y34{bottom:172.000020pt;}
.y161{bottom:172.797485pt;}
.y207{bottom:175.040019pt;}
.ye1{bottom:176.480021pt;}
.y248{bottom:177.120016pt;}
.y73{bottom:182.720012pt;}
.y10b{bottom:183.520020pt;}
.y33{bottom:187.200012pt;}
.y259{bottom:187.921889pt;}
.y160{bottom:188.157491pt;}
.y247{bottom:189.280029pt;}
.y206{bottom:190.240031pt;}
.y72{bottom:198.080017pt;}
.y111{bottom:200.320020pt;}
.yd4{bottom:200.480021pt;}
.y246{bottom:201.600016pt;}
.y32{bottom:202.560017pt;}
.y15f{bottom:203.517476pt;}
.y205{bottom:206.720012pt;}
.y113{bottom:211.040007pt;}
.y13e{bottom:211.040020pt;}
.y141{bottom:213.120020pt;}
.y71{bottom:213.280029pt;}
.y245{bottom:213.920024pt;}
.yd3{bottom:216.960021pt;}
.y31{bottom:217.920024pt;}
.y15e{bottom:218.717488pt;}
.y204{bottom:221.920024pt;}
.y112{bottom:223.519987pt;}
.y244{bottom:226.080017pt;}
.y70{bottom:228.640015pt;}
.yba{bottom:228.800020pt;}
.y30{bottom:233.280029pt;}
.y15d{bottom:234.077495pt;}
.y243{bottom:238.400024pt;}
.y134{bottom:239.200020pt;}
.y138{bottom:242.240020pt;}
.y6f{bottom:243.840027pt;}
.y203{bottom:245.760009pt;}
.y2f{bottom:248.640015pt;}
.y15c{bottom:249.437480pt;}
.y242{bottom:251.520020pt;}
.y69{bottom:256.800020pt;}
.y27c{bottom:261.760019pt;}
.y24f{bottom:263.200019pt;}
.y241{bottom:263.680013pt;}
.y2e{bottom:264.000020pt;}
.y15b{bottom:264.797485pt;}
.y6e{bottom:267.680013pt;}
.y25e{bottom:268.799956pt;}
.y12a{bottom:269.280019pt;}
.y12f{bottom:271.360019pt;}
.y240{bottom:276.000020pt;}
.yd2{bottom:276.960021pt;}
.y2d{bottom:279.200012pt;}
.y15a{bottom:280.157491pt;}
.y25d{bottom:281.120024pt;}
.y1b6{bottom:283.197484pt;}
.y68{bottom:284.000020pt;}
.y23f{bottom:288.320028pt;}
.y25c{bottom:293.919991pt;}
.y2c{bottom:294.560017pt;}
.y159{bottom:295.517476pt;}
.y121{bottom:297.600019pt;}
.y67{bottom:299.200012pt;}
.y23e{bottom:300.480021pt;}
.y127{bottom:302.240019pt;}
.y2b{bottom:309.760009pt;}
.y25b{bottom:309.919991pt;}
.y158{bottom:310.717488pt;}
.y23d{bottom:312.800008pt;}
.yb9{bottom:315.040019pt;}
.y66{bottom:315.680013pt;}
.y23c{bottom:325.120016pt;}
.y11d{bottom:325.760017pt;}
.y157{bottom:326.077473pt;}
.y2a{bottom:326.240011pt;}
.yb8{bottom:330.240011pt;}
.y65{bottom:331.040019pt;}
.y14a{bottom:333.277487pt;}
.y23b{bottom:337.280009pt;}
.y156{bottom:341.437500pt;}
.y29{bottom:341.600016pt;}
.y62{bottom:342.880017pt;}
.y117{bottom:345.440017pt;}
.yb7{bottom:346.720012pt;}
.y18a{bottom:346.720017pt;}
.y23a{bottom:349.600016pt;}
.y61{bottom:352.320028pt;}
.y1ac{bottom:355.517483pt;}
.y155{bottom:356.797485pt;}
.y28{bottom:356.960001pt;}
.y239{bottom:361.920003pt;}
.y1e1{bottom:362.077483pt;}
.yb6{bottom:362.079997pt;}
.y53{bottom:364.640017pt;}
.y27{bottom:372.320028pt;}
.y114{bottom:373.760017pt;}
.y238{bottom:374.079997pt;}
.y154{bottom:377.277465pt;}
.yb5{bottom:377.440023pt;}
.y237{bottom:386.400024pt;}
.y26{bottom:387.520020pt;}
.y60{bottom:391.520020pt;}
.yb4{bottom:392.640015pt;}
.y236{bottom:398.720012pt;}
.y25{bottom:402.880005pt;}
.y153{bottom:408.157471pt;}
.yb3{bottom:408.960001pt;}
.y235{bottom:410.880005pt;}
.y52{bottom:414.880005pt;}
.y27e{bottom:416.960016pt;}
.y24{bottom:418.079997pt;}
.y234{bottom:423.200032pt;}
.yb2{bottom:425.440023pt;}
.y51{bottom:431.200032pt;}
.y23{bottom:434.560017pt;}
.y233{bottom:435.520020pt;}
.yb1{bottom:440.800008pt;}
.y27a{bottom:446.080015pt;}
.y50{bottom:447.520020pt;}
.y22{bottom:449.920003pt;}
.y10a{bottom:455.520020pt;}
.yb0{bottom:456.160035pt;}
.y232{bottom:457.119995pt;}
.y4f{bottom:462.880005pt;}
.y21{bottom:465.280029pt;}
.yaf{bottom:471.360027pt;}
.y109{bottom:472.000000pt;}
.y202{bottom:472.480021pt;}
.y4e{bottom:478.240031pt;}
.y20{bottom:480.640015pt;}
.y108{bottom:487.360027pt;}
.yae{bottom:487.840007pt;}
.y231{bottom:488.480021pt;}
.y4d{bottom:493.600016pt;}
.y1f{bottom:495.840007pt;}
.y107{bottom:502.720012pt;}
.yad{bottom:503.039999pt;}
.y230{bottom:503.840007pt;}
.y1ab{bottom:508.157479pt;}
.y1e{bottom:511.200032pt;}
.y4c{bottom:514.079997pt;}
.y106{bottom:517.920003pt;}
.yac{bottom:518.400024pt;}
.y22f{bottom:519.200032pt;}
.y1d{bottom:526.560017pt;}
.y152{bottom:528.637492pt;}
.y105{bottom:533.280029pt;}
.yab{bottom:533.600016pt;}
.y201{bottom:533.760009pt;}
.y22e{bottom:534.560017pt;}
.y1c{bottom:541.920003pt;}
.y151{bottom:543.997477pt;}
.y4b{bottom:545.600016pt;}
.y104{bottom:548.480021pt;}
.y200{bottom:549.119995pt;}
.yaa{bottom:549.920003pt;}
.y1b{bottom:557.280029pt;}
.y150{bottom:559.197469pt;}
.y4a{bottom:560.960001pt;}
.y1ff{bottom:564.480021pt;}
.y103{bottom:564.800008pt;}
.ya9{bottom:566.400024pt;}
.y1a{bottom:572.640015pt;}
.y22d{bottom:573.119995pt;}
.y49{bottom:576.320028pt;}
.y1fe{bottom:579.840007pt;}
.y149{bottom:580.477457pt;}
.y102{bottom:581.119995pt;}
.ya8{bottom:581.600016pt;}
.y14f{bottom:587.037476pt;}
.y19{bottom:587.840007pt;}
.y48{bottom:591.520020pt;}
.y1fd{bottom:595.039999pt;}
.y101{bottom:597.600016pt;}
.ya7{bottom:598.079997pt;}
.y148{bottom:601.757487pt;}
.y22c{bottom:604.320028pt;}
.y47{bottom:606.880005pt;}
.y14e{bottom:608.157471pt;}
.y18{bottom:608.480021pt;}
.y25a{bottom:612.000012pt;}
.ya6{bottom:613.440023pt;}
.y100{bottom:613.920003pt;}
.y179{bottom:615.040012pt;}
.y1cf{bottom:618.400011pt;}
.y278{bottom:619.040011pt;}
.y22b{bottom:620.800008pt;}
.y46{bottom:622.240031pt;}
.ya5{bottom:628.800008pt;}
.yff{bottom:629.119995pt;}
.y1f1{bottom:629.437476pt;}
.y1f7{bottom:629.757476pt;}
.y1bc{bottom:632.957476pt;}
.y1e5{bottom:633.277476pt;}
.y22a{bottom:636.159993pt;}
.y45{bottom:637.440023pt;}
.y277{bottom:638.560011pt;}
.y17{bottom:639.199992pt;}
.ya4{bottom:644.159993pt;}
.yfe{bottom:645.600016pt;}
.y229{bottom:651.520020pt;}
.y16{bottom:652.480021pt;}
.y44{bottom:653.920003pt;}
.y275{bottom:658.240011pt;}
.ya3{bottom:659.360027pt;}
.yfd{bottom:660.960001pt;}
.y15{bottom:665.920003pt;}
.y228{bottom:666.880005pt;}
.y43{bottom:669.119995pt;}
.ya2{bottom:674.720012pt;}
.yfc{bottom:676.320028pt;}
.y273{bottom:677.760009pt;}
.y14{bottom:679.199992pt;}
.y227{bottom:682.239991pt;}
.y42{bottom:685.600016pt;}
.ya1{bottom:689.920003pt;}
.yfb{bottom:691.680013pt;}
.y13{bottom:692.479980pt;}
.y271{bottom:697.440009pt;}
.y226{bottom:697.440023pt;}
.y41{bottom:700.960043pt;}
.y12{bottom:705.920003pt;}
.yfa{bottom:706.880045pt;}
.ya0{bottom:711.680013pt;}
.y225{bottom:713.920003pt;}
.y40{bottom:716.159993pt;}
.y26f{bottom:716.960009pt;}
.y11{bottom:719.200032pt;}
.yf9{bottom:723.360027pt;}
.y224{bottom:729.120036pt;}
.y3f{bottom:731.520020pt;}
.y10{bottom:732.479980pt;}
.y26d{bottom:736.640008pt;}
.yf8{bottom:738.559977pt;}
.y9f{bottom:744.159993pt;}
.yf{bottom:745.920003pt;}
.y3e{bottom:746.880045pt;}
.y223{bottom:749.760009pt;}
.yf7{bottom:753.920003pt;}
.y26b{bottom:756.160008pt;}
.ye{bottom:759.200032pt;}
.y9e{bottom:759.360027pt;}
.y3d{bottom:762.239991pt;}
.yf6{bottom:769.120036pt;}
.yd{bottom:772.479980pt;}
.y9d{bottom:774.719971pt;}
.y269{bottom:775.840008pt;}
.y3c{bottom:777.440023pt;}
.y1bb{bottom:780.957473pt;}
.y222{bottom:781.120036pt;}
.yf5{bottom:785.440023pt;}
.yc{bottom:785.920003pt;}
.y1e3{bottom:786.877473pt;}
.y9c{bottom:790.079997pt;}
.y3b{bottom:793.920003pt;}
.y267{bottom:795.360007pt;}
.y221{bottom:796.319987pt;}
.yb{bottom:799.200032pt;}
.yf4{bottom:801.920003pt;}
.y9b{bottom:805.440023pt;}
.y3a{bottom:809.280029pt;}
.ya{bottom:812.479980pt;}
.y220{bottom:812.799968pt;}
.y262{bottom:815.040007pt;}
.yf3{bottom:817.280029pt;}
.y9a{bottom:820.799968pt;}
.y39{bottom:824.639973pt;}
.y147{bottom:825.757487pt;}
.y9{bottom:825.920003pt;}
.y21f{bottom:828.159993pt;}
.y14d{bottom:828.797444pt;}
.yf2{bottom:832.639973pt;}
.y99{bottom:836.159993pt;}
.y168{bottom:839.040007pt;}
.y25f{bottom:843.200007pt;}
.y21e{bottom:843.520020pt;}
.yf1{bottom:848.000000pt;}
.y1f5{bottom:850.877471pt;}
.y98{bottom:851.360027pt;}
.y1c1{bottom:854.397471pt;}
.y1f9{bottom:854.877471pt;}
.y1e9{bottom:858.397471pt;}
.y21d{bottom:858.719971pt;}
.yf0{bottom:863.360027pt;}
.y97{bottom:866.719971pt;}
.y21c{bottom:875.200032pt;}
.yef{bottom:878.559977pt;}
.y96{bottom:882.079997pt;}
.y21b{bottom:890.559977pt;}
.yee{bottom:893.920003pt;}
.y7{bottom:896.960005pt;}
.y95{bottom:897.440023pt;}
.y21a{bottom:905.760009pt;}
.y86{bottom:909.280005pt;}
.yed{bottom:910.239991pt;}
.y5{bottom:912.320005pt;}
.y219{bottom:921.120036pt;}
.yec{bottom:925.600016pt;}
.y3{bottom:927.680004pt;}
.y218{bottom:936.479980pt;}
.yeb{bottom:940.960043pt;}
.y1fc{bottom:941.920003pt;}
.y94{bottom:942.719971pt;}
.y217{bottom:951.840007pt;}
.yea{bottom:956.159993pt;}
.y1fb{bottom:957.280029pt;}
.y216{bottom:967.200032pt;}
.y2{bottom:971.520020pt;}
.y85{bottom:972.479980pt;}
.ye9{bottom:972.639973pt;}
.y215{bottom:982.559977pt;}
.ye8{bottom:988.000000pt;}
.y84{bottom:988.960043pt;}
.y214{bottom:997.760009pt;}
.y1e7{bottom:1000.157468pt;}
.ye7{bottom:1003.360027pt;}
.y83{bottom:1004.319987pt;}
.y1bf{bottom:1006.877468pt;}
.y20e{bottom:1010.720003pt;}
.y1{bottom:1010.879964pt;}
.ye6{bottom:1018.559977pt;}
.y82{bottom:1019.680013pt;}
.y213{bottom:1030.879964pt;}
.y1fa{bottom:1033.920003pt;}
.y81{bottom:1035.040039pt;}
.y1ae{bottom:1122.400000pt;}
.h64{height:-976.322513pt;}
.h5e{height:-969.762513pt;}
.h63{height:-823.842516pt;}
.h62{height:-751.362517pt;}
.h54{height:-744.802519pt;}
.h61{height:-598.882521pt;}
.h5f{height:-477.442524pt;}
.h58{height:-477.122524pt;}
.h66{height:-473.922524pt;}
.h56{height:-473.602524pt;}
.h65{height:-325.922528pt;}
.h55{height:-320.162528pt;}
.h60{height:-256.002529pt;}
.h68{height:-252.482529pt;}
.h5c{height:-252.002529pt;}
.h5b{height:-248.482529pt;}
.h5a{height:-106.722532pt;}
.h67{height:-100.002532pt;}
.h5{height:15.359999pt;}
.h7{height:15.360000pt;}
.h5d{height:15.519999pt;}
.h53{height:15.520000pt;}
.h3d{height:18.240000pt;}
.h50{height:18.466390pt;}
.h37{height:18.879999pt;}
.h72{height:18.880000pt;}
.h71{height:19.039999pt;}
.h3b{height:19.040000pt;}
.h6f{height:20.625488pt;}
.hf{height:21.920000pt;}
.h40{height:23.200000pt;}
.h12{height:23.840000pt;}
.h4b{height:25.748396pt;}
.h45{height:26.918578pt;}
.h49{height:27.282170pt;}
.h2b{height:27.312295pt;}
.h23{height:27.466930pt;}
.h3c{height:27.519999pt;}
.h3a{height:27.520000pt;}
.h3f{height:27.680000pt;}
.h42{height:28.522057pt;}
.hc{height:28.918310pt;}
.h29{height:28.924829pt;}
.h6a{height:28.964791pt;}
.h30{height:29.050781pt;}
.h21{height:29.088594pt;}
.h20{height:29.103073pt;}
.h13{height:29.314562pt;}
.h44{height:29.439999pt;}
.h19{height:29.471437pt;}
.h73{height:31.359999pt;}
.h69{height:36.319999pt;}
.h3{height:36.639999pt;}
.h2d{height:38.252544pt;}
.h17{height:41.279999pt;}
.h36{height:42.084375pt;}
.h74{height:43.215000pt;}
.h39{height:44.460938pt;}
.h4c{height:44.537766pt;}
.h2e{height:44.959999pt;}
.h6d{height:45.284364pt;}
.h46{height:46.561865pt;}
.h9{height:46.879999pt;}
.h38{height:47.085938pt;}
.h35{height:47.109375pt;}
.h4a{height:47.190780pt;}
.he{height:47.208742pt;}
.h2c{height:47.242888pt;}
.h6c{height:47.284622pt;}
.h33{height:47.425000pt;}
.h24{height:47.510365pt;}
.h15{height:47.855619pt;}
.h1c{height:48.111714pt;}
.h8{height:48.375000pt;}
.h4e{height:49.203438pt;}
.h43{height:49.335450pt;}
.hd{height:49.995974pt;}
.h2a{height:50.032136pt;}
.h28{height:50.057040pt;}
.h6b{height:50.076334pt;}
.h3e{height:50.101260pt;}
.h32{height:50.225000pt;}
.h31{height:50.250000pt;}
.h22{height:50.315405pt;}
.h14{height:50.681043pt;}
.h1a{height:50.952258pt;}
.h11{height:51.229500pt;}
.h59{height:52.108438pt;}
.h6{height:52.134375pt;}
.h52{height:53.535000pt;}
.h57{height:54.538750pt;}
.h4{height:57.787500pt;}
.h16{height:58.221864pt;}
.h48{height:58.339834pt;}
.h1d{height:59.999999pt;}
.h41{height:60.991193pt;}
.h27{height:61.883262pt;}
.h2f{height:62.121810pt;}
.h1e{height:62.233629pt;}
.ha{height:64.051444pt;}
.h18{height:65.276570pt;}
.h10{height:65.631754pt;}
.h47{height:70.286162pt;}
.hb{height:70.444295pt;}
.h1f{height:72.873971pt;}
.h25{height:83.039999pt;}
.h1b{height:91.801698pt;}
.h26{height:98.408894pt;}
.h2{height:125.625000pt;}
.h6e{height:205.759996pt;}
.h51{height:207.679996pt;}
.h4f{height:207.839996pt;}
.h34{height:234.399995pt;}
.h70{height:320.799992pt;}
.h4d{height:1122.557465pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2e{width:-649.418800pt;}
.w1e{width:-649.282589pt;}
.w2d{width:-645.258800pt;}
.w1c{width:-645.122589pt;}
.w3d{width:-501.104513pt;}
.w1d{width:-500.962593pt;}
.w3b{width:-496.784513pt;}
.w1b{width:-496.642593pt;}
.w3a{width:-431.664515pt;}
.w1a{width:-431.522595pt;}
.w39{width:-331.184517pt;}
.w19{width:-331.042596pt;}
.w41{width:-330.704517pt;}
.w1f{width:-330.562596pt;}
.w46{width:-307.184519pt;}
.w23{width:-307.042597pt;}
.w44{width:-303.024519pt;}
.w21{width:-302.882597pt;}
.w38{width:-170.544521pt;}
.w29{width:-170.538811pt;}
.w40{width:-170.064521pt;}
.w30{width:-170.058811pt;}
.w45{width:-158.864521pt;}
.w34{width:-158.858811pt;}
.w43{width:-154.704521pt;}
.w33{width:-154.698811pt;}
.w37{width:-83.184523pt;}
.w28{width:-83.178813pt;}
.w42{width:-82.864523pt;}
.w32{width:-82.858813pt;}
.w3f{width:-82.544523pt;}
.w2f{width:-82.538813pt;}
.w11{width:23.200000pt;}
.wd{width:28.640000pt;}
.we{width:31.519999pt;}
.wf{width:34.240000pt;}
.w4d{width:34.719999pt;}
.w4e{width:34.720000pt;}
.w50{width:40.159999pt;}
.w4f{width:40.799999pt;}
.w2b{width:45.898813pt;}
.w31{width:45.898815pt;}
.w3c{width:45.904524pt;}
.w17{width:45.919999pt;}
.w20{width:45.920000pt;}
.w2c{width:46.058813pt;}
.w2a{width:46.058815pt;}
.w3e{width:46.064524pt;}
.w18{width:46.079999pt;}
.w22{width:46.080000pt;}
.w5{width:50.079999pt;}
.w4c{width:57.119999pt;}
.w4b{width:75.519997pt;}
.w12{width:96.159997pt;}
.wc{width:98.399997pt;}
.w13{width:106.079997pt;}
.w26{width:110.079997pt;}
.w25{width:113.919997pt;}
.w52{width:131.359997pt;}
.w14{width:132.959997pt;}
.w7{width:140.479997pt;}
.w10{width:146.879996pt;}
.w4a{width:146.879997pt;}
.w6{width:150.399996pt;}
.w27{width:157.599996pt;}
.w4{width:158.399996pt;}
.w36{width:175.199996pt;}
.w16{width:218.879995pt;}
.w35{width:220.000013pt;}
.w8{width:231.359995pt;}
.w47{width:233.439995pt;}
.w51{width:253.119995pt;}
.w9{width:279.519993pt;}
.w15{width:287.037389pt;}
.w24{width:287.039993pt;}
.wa{width:321.119993pt;}
.w48{width:332.479992pt;}
.wb{width:349.919992pt;}
.w49{width:355.199992pt;}
.w3{width:604.319987pt;}
.w2{width:793.759983pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.xb8{left:-463.215461pt;}
.xb9{left:-459.855465pt;}
.xbc{left:-445.775469pt;}
.xba{left:-444.815468pt;}
.xbb{left:-431.055468pt;}
.xa1{left:-192.609364pt;}
.x9f{left:-189.642241pt;}
.xaf{left:-187.045409pt;}
.xa0{left:-186.081704pt;}
.x92{left:-176.341185pt;}
.x93{left:-172.981180pt;}
.x96{left:-158.901183pt;}
.x94{left:-157.941181pt;}
.x9e{left:-155.817096pt;}
.xab{left:-149.289437pt;}
.x95{left:-144.181181pt;}
.xc0{left:-143.215472pt;}
.xbf{left:-138.575457pt;}
.xa6{left:-132.494729pt;}
.xc7{left:-130.735939pt;}
.xc5{left:-128.362241pt;}
.x9d{left:-126.145924pt;}
.xc6{left:-124.208269pt;}
.xaa{left:-112.497181pt;}
.xa5{left:-106.099232pt;}
.xc1{left:-101.615456pt;}
.xca{left:-98.097633pt;}
.x9c{left:-96.474740pt;}
.xc4{left:-94.537087pt;}
.xa4{left:-79.117176pt;}
.xa9{left:-76.298348pt;}
.xae{left:-75.011219pt;}
.x9b{left:-67.397001pt;}
.xbe{left:-63.215472pt;}
.xc3{left:-60.711972pt;}
.xbd{left:-54.735491pt;}
.xa3{left:-52.721688pt;}
.xa8{left:-40.099516pt;}
.x9a{left:-37.725819pt;}
.xc9{left:-33.414487pt;}
.xc2{left:-23.326271pt;}
.x98{left:-21.703377pt;}
.xa2{left:-7.556080pt;}
.xa7{left:-3.307260pt;}
.x0{left:0.000000pt;}
.x4e{left:1.544539pt;}
.x16{left:2.940288pt;}
.x67{left:5.494372pt;}
.x59{left:6.880009pt;}
.x89{left:9.600000pt;}
.x5b{left:10.880011pt;}
.x23{left:11.804585pt;}
.x5e{left:12.799991pt;}
.x44{left:14.102308pt;}
.xac{left:15.906587pt;}
.xde{left:16.960011pt;}
.x61{left:18.239995pt;}
.xd8{left:19.199992pt;}
.x37{left:21.187035pt;}
.x1f{left:23.134485pt;}
.x60{left:24.479985pt;}
.x82{left:25.517207pt;}
.x42{left:26.727227pt;}
.x1b{left:29.202209pt;}
.x6a{left:30.880009pt;}
.x1e{left:32.494471pt;}
.xad{left:33.503572pt;}
.xd7{left:36.480004pt;}
.x64{left:38.239995pt;}
.x11{left:39.827291pt;}
.x62{left:40.800012pt;}
.x15{left:41.731791pt;}
.x5{left:43.519999pt;}
.xc8{left:46.104271pt;}
.x2c{left:48.400816pt;}
.x27{left:50.745505pt;}
.x4f{left:52.263341pt;}
.x21{left:53.254700pt;}
.x10{left:54.929585pt;}
.x4b{left:55.939151pt;}
.x6e{left:57.308009pt;}
.x1a{left:59.239767pt;}
.x99{left:60.189057pt;}
.x6d{left:61.141221pt;}
.xf{left:62.580993pt;}
.x22{left:63.717875pt;}
.x32{left:64.657061pt;}
.x18{left:66.891133pt;}
.x7{left:68.000000pt;}
.x81{left:69.430557pt;}
.x29{left:71.714821pt;}
.xda{left:72.799999pt;}
.x13{left:76.112895pt;}
.x6{left:77.439997pt;}
.x51{left:80.139359pt;}
.x8{left:83.360000pt;}
.x41{left:85.352543pt;}
.xa{left:86.879995pt;}
.x66{left:88.516873pt;}
.x26{left:89.674908pt;}
.x6c{left:91.648464pt;}
.x79{left:92.574071pt;}
.x3e{left:95.123416pt;}
.x14{left:96.494324pt;}
.x69{left:98.748356pt;}
.x3{left:106.079997pt;}
.x3b{left:107.177533pt;}
.x6f{left:110.399995pt;}
.x17{left:111.797099pt;}
.x28{left:113.119997pt;}
.x30{left:114.027891pt;}
.x33{left:117.506589pt;}
.x19{left:118.412700pt;}
.x12{left:119.715760pt;}
.x2d{left:121.921873pt;}
.xb7{left:124.025509pt;}
.x3f{left:124.939720pt;}
.x25{left:125.993431pt;}
.x70{left:127.839996pt;}
.x35{left:129.079975pt;}
.xcb{left:130.559997pt;}
.xb5{left:134.113725pt;}
.x4{left:136.639993pt;}
.x2a{left:137.910540pt;}
.x7c{left:139.602819pt;}
.x50{left:142.365616pt;}
.x88{left:143.708776pt;}
.xcd{left:147.009404pt;}
.x97{left:148.298799pt;}
.x4c{left:150.491763pt;}
.x55{left:152.159992pt;}
.xd2{left:153.119999pt;}
.x91{left:154.722600pt;}
.x1{left:157.439992pt;}
.x2e{left:158.381365pt;}
.x56{left:159.840004pt;}
.xd3{left:160.799991pt;}
.x49{left:165.097720pt;}
.x31{left:166.007749pt;}
.xb4{left:167.938839pt;}
.x34{left:169.486468pt;}
.x8a{left:170.562600pt;}
.x40{left:172.014571pt;}
.x2f{left:173.901731pt;}
.x4a{left:179.468651pt;}
.x9{left:181.119995pt;}
.xb0{left:182.774451pt;}
.x39{left:185.008833pt;}
.x52{left:186.578120pt;}
.x3c{left:188.937340pt;}
.x45{left:189.944644pt;}
.x46{left:192.227868pt;}
.x57{left:193.439980pt;}
.xd4{left:194.399987pt;}
.x76{left:197.016617pt;}
.x38{left:199.614789pt;}
.xdb{left:201.439996pt;}
.xd5{left:202.560000pt;}
.x3a{left:203.543297pt;}
.x2b{left:207.417703pt;}
.x48{left:210.997379pt;}
.xb1{left:213.632483pt;}
.x80{left:215.412735pt;}
.x87{left:218.202713pt;}
.x77{left:224.314103pt;}
.xd6{left:226.399987pt;}
.x7d{left:232.028600pt;}
.x83{left:234.626581pt;}
.xdc{left:236.799995pt;}
.xb6{left:237.962847pt;}
.x3d{left:240.880841pt;}
.x4d{left:242.425377pt;}
.xb2{left:244.490475pt;}
.x47{left:246.689639pt;}
.x43{left:251.323265pt;}
.x84{left:252.223567pt;}
.x7e{left:269.414281pt;}
.x7a{left:272.166844pt;}
.xb3{left:275.348548pt;}
.x2{left:278.559997pt;}
.x85{left:286.831009pt;}
.x7f{left:288.403844pt;}
.x7b{left:302.668289pt;}
.x86{left:303.841425pt;}
.x78{left:306.799963pt;}
.xd9{left:313.599993pt;}
.x8b{left:331.202596pt;}
.xdd{left:348.959992pt;}
.x36{left:383.359985pt;}
.x53{left:389.119995pt;}
.x54{left:409.279991pt;}
.x58{left:413.119991pt;}
.xb{left:416.159993pt;}
.x74{left:430.399984pt;}
.x8c{left:431.682595pt;}
.xc{left:435.039999pt;}
.xd1{left:440.159993pt;}
.x1d{left:452.159989pt;}
.xcc{left:460.159989pt;}
.x75{left:472.000000pt;}
.x73{left:476.800008pt;}
.x8d{left:496.802593pt;}
.xe{left:497.759989pt;}
.x8f{left:501.122593pt;}
.x20{left:502.079997pt;}
.xd{left:505.439983pt;}
.x24{left:506.719989pt;}
.x72{left:510.399984pt;}
.x5a{left:512.159988pt;}
.x71{left:518.880005pt;}
.xce{left:528.800008pt;}
.xcf{left:530.079997pt;}
.x5c{left:541.599988pt;}
.xd0{left:545.599976pt;}
.x5d{left:573.759987pt;}
.x5f{left:608.639987pt;}
.x6b{left:615.679987pt;}
.x68{left:622.719987pt;}
.x65{left:627.679985pt;}
.x8e{left:645.282589pt;}
.x90{left:649.442589pt;}
.x63{left:664.159985pt;}
.x1c{left:731.520020pt;}
}




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