
    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_4498e370b5ed206d2ebf91c1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_95a95770311b57bd5fd6f94b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.108000;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_05469cf682475bb86752ea90.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.732000;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_7ab8de61a1dbc982c4c1ab23.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.108000;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_6c48414504d9c13cf135b072.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.025000;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_48ff8a3d8c945a986aa95843.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_35181af31472327f4cb720ef.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_42ef0c8dad9ed1232c4f663e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999000;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_1347a546644219366de07f90.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_117c2ca26a6db2eed0fbcfc7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_66d7ea23e469cc83951e4a54.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.635000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_340e55d29247f55b6ff372ff.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c339b43c71a345891d3e4c25.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_bf3fb1c80b7cbfc309ecaa99.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.085000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_07bc1e0cae3b59782ab9bb58.woff2')format("woff");}.fff{font-family:fff;line-height:2.693000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_78d5d0cfe9c0946b4a04442f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d9039116ff26e1b8e72e229f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_3cfddc85451b565981fc5fdc.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ab04a6096acc9d2765f5b5b2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.701000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c21f45abc402d47f71a7b4ce.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_1b74536b5f3279fb3a30698e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.716000;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:ff16;src:url('chunks/assets/font_b89f516d96dddc0c7774862a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_df2409bfc8e086bfb0b1e76f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.844000;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:ff18;src:url('chunks/assets/font_d4251913f4b1d61da4262164.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.905000;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:ff19;src:url('chunks/assets/font_d4251913f4b1d61da4262164.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.905000;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:ff1a;src:url('chunks/assets/font_c0af02404beb2dc71f30c8ef.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.844000;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:ff1b;src:url('chunks/assets/font_c9f22742b5ee51f0a77f9abb.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.715000;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:ff1c;src:url('chunks/assets/font_d4251913f4b1d61da4262164.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.905000;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:ff1d;src:url('chunks/assets/font_213862c1204020ccf5f4d183.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.701000;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:ff1e;src:url('chunks/assets/font_3a5722f60861a7031ccab48e.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.844000;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:ff1f;src:url('chunks/assets/font_e5188fad6a03c6cd08ec70fe.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.497000;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:ff20;src:url('chunks/assets/font_25045ea207180f9b93885d4f.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.052000;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:ff21;src:url('chunks/assets/font_617e546f554a6a8f74a16d10.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.726000;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:ff22;src:url('chunks/assets/font_b3b051e95e63cb38db1fa6f9.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_9ca1ba51b614b0f6a570daa3.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.905000;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:ff24;src:url('chunks/assets/font_9ca1ba51b614b0f6a570daa3.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.905000;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:ff25;src:url('chunks/assets/font_9ca1ba51b614b0f6a570daa3.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.905000;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:ff26;src:url('chunks/assets/font_302c0a752eac35866e598eae.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.702000;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:ff27;src:url('chunks/assets/font_6ba846c750a4efce4e04df10.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.901000;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:ff28;src:url('chunks/assets/font_8b772f1e17f78db5cab481e9.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.701000;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:ff29;src:url('chunks/assets/font_c133ec7299c01b080642aa64.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.685000;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:ff2a;src:url('chunks/assets/font_707c18c19530b9ab6fbf78dd.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.444000;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:ff2b;src:url('chunks/assets/font_209318889a5e8196cc2180e5.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.704200;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v19{vertical-align:-112.973920px;}
.v32{vertical-align:-48.413966px;}
.v31{vertical-align:-38.273973px;}
.v24{vertical-align:-35.867975px;}
.v2{vertical-align:-21.689985px;}
.v2d{vertical-align:-18.035987px;}
.v22{vertical-align:-14.945989px;}
.vc{vertical-align:-12.551991px;}
.v17{vertical-align:-10.793992px;}
.v3{vertical-align:-8.963994px;}
.v8{vertical-align:-5.975996px;}
.v0{vertical-align:0.000000px;}
.v25{vertical-align:2.987998px;}
.v33{vertical-align:5.807996px;}
.v13{vertical-align:6.971995px;}
.v20{vertical-align:9.065994px;}
.v34{vertical-align:10.793992px;}
.va{vertical-align:14.777990px;}
.v12{vertical-align:15.935989px;}
.v16{vertical-align:17.267988px;}
.v2c{vertical-align:20.086276px;}
.v9{vertical-align:21.689985px;}
.v1c{vertical-align:23.315984px;}
.v7{vertical-align:24.677983px;}
.v1{vertical-align:26.027982px;}
.v2a{vertical-align:27.887980px;}
.v21{vertical-align:30.053979px;}
.v6{vertical-align:32.039977px;}
.v1e{vertical-align:33.767976px;}
.v35{vertical-align:35.471975px;}
.v4{vertical-align:40.439971px;}
.v14{vertical-align:41.507971px;}
.v1d{vertical-align:44.561969px;}
.v2f{vertical-align:48.419966px;}
.v2e{vertical-align:53.963962px;}
.v27{vertical-align:63.569955px;}
.v5{vertical-align:65.687954px;}
.v23{vertical-align:68.741951px;}
.v36{vertical-align:71.423950px;}
.v15{vertical-align:72.479949px;}
.ve{vertical-align:81.443943px;}
.v10{vertical-align:84.287941px;}
.v28{vertical-align:86.675939px;}
.v30{vertical-align:89.357937px;}
.vf{vertical-align:103.133927px;}
.v1f{vertical-align:107.597924px;}
.v29{vertical-align:112.901920px;}
.v11{vertical-align:120.149915px;}
.vd{vertical-align:125.531911px;}
.v18{vertical-align:138.083903px;}
.v2b{vertical-align:140.477901px;}
.v1a{vertical-align:156.011890px;}
.v26{vertical-align:175.499876px;}
.vb{vertical-align:184.463870px;}
.v1b{vertical-align:225.365841px;}
.ls4{letter-spacing:0.000000px;}
.ls79{letter-spacing:0.000062px;}
.ls6{letter-spacing:0.000065px;}
.ls135{letter-spacing:0.000300px;}
.ls179{letter-spacing:0.000544px;}
.lsbf{letter-spacing:0.000751px;}
.ls13a{letter-spacing:0.000767px;}
.ls170{letter-spacing:0.000843px;}
.ls58{letter-spacing:0.001120px;}
.ls71{letter-spacing:0.001123px;}
.ls8f{letter-spacing:0.001409px;}
.ls3f{letter-spacing:0.001866px;}
.ls130{letter-spacing:0.002023px;}
.lsba{letter-spacing:0.002172px;}
.ls17e{letter-spacing:0.002186px;}
.lsca{letter-spacing:0.002338px;}
.ls104{letter-spacing:0.002583px;}
.ls9f{letter-spacing:0.002685px;}
.lsd3{letter-spacing:0.002727px;}
.ls14f{letter-spacing:0.002783px;}
.lsc2{letter-spacing:0.002793px;}
.lsff{letter-spacing:0.002823px;}
.ls180{letter-spacing:0.003031px;}
.lse9{letter-spacing:0.003181px;}
.ls102{letter-spacing:0.003361px;}
.lsc5{letter-spacing:0.003547px;}
.ls5e{letter-spacing:0.003944px;}
.ls138{letter-spacing:0.003962px;}
.lsb5{letter-spacing:0.004181px;}
.ls172{letter-spacing:0.004188px;}
.ls54{letter-spacing:0.004379px;}
.lsf2{letter-spacing:0.004438px;}
.ls5a{letter-spacing:0.004893px;}
.lscd{letter-spacing:0.005024px;}
.lseb{letter-spacing:0.005154px;}
.ls14d{letter-spacing:0.005514px;}
.lsbc{letter-spacing:0.005615px;}
.ls6c{letter-spacing:0.005875px;}
.ls161{letter-spacing:0.005920px;}
.ls6a{letter-spacing:0.006414px;}
.ls16d{letter-spacing:0.006843px;}
.ls4e{letter-spacing:0.006889px;}
.lsa1{letter-spacing:0.007261px;}
.ls7f{letter-spacing:0.007837px;}
.ls155{letter-spacing:0.008135px;}
.ls169{letter-spacing:0.008420px;}
.lsc0{letter-spacing:0.009945px;}
.ls33{letter-spacing:0.010607px;}
.ls69{letter-spacing:0.010614px;}
.ls132{letter-spacing:0.011168px;}
.ls68{letter-spacing:0.012414px;}
.ls6d{letter-spacing:0.013014px;}
.ls148{letter-spacing:0.013476px;}
.ls62{letter-spacing:0.015276px;}
.ls46{letter-spacing:0.015440px;}
.ls159{letter-spacing:0.016243px;}
.ls186{letter-spacing:0.016251px;}
.lsc8{letter-spacing:0.016396px;}
.ls167{letter-spacing:0.016898px;}
.lsc4{letter-spacing:0.017310px;}
.ls10a{letter-spacing:0.017597px;}
.ls5c{letter-spacing:0.017605px;}
.ls13f{letter-spacing:0.018656px;}
.ls134{letter-spacing:0.019299px;}
.ls2e{letter-spacing:0.020622px;}
.ls83{letter-spacing:0.021021px;}
.lsc3{letter-spacing:0.021129px;}
.ls57{letter-spacing:0.022448px;}
.ls3c{letter-spacing:0.023403px;}
.lsde{letter-spacing:0.024082px;}
.lsdc{letter-spacing:0.025723px;}
.ls146{letter-spacing:0.029883px;}
.ls162{letter-spacing:0.478204px;}
.ls17c{letter-spacing:0.508092px;}
.ls152{letter-spacing:1.004226px;}
.ls12c{letter-spacing:1.464497px;}
.ls7a{letter-spacing:1.506340px;}
.ls12f{letter-spacing:1.613940px;}
.ls82{letter-spacing:1.673716px;}
.ls125{letter-spacing:1.936741px;}
.ls107{letter-spacing:2.092145px;}
.lsac{letter-spacing:2.142765px;}
.ls15{letter-spacing:2.147165px;}
.lsa{letter-spacing:2.148765px;}
.ls3b{letter-spacing:2.151920px;}
.ls2a{letter-spacing:2.271471px;}
.ls160{letter-spacing:2.372791px;}
.ls15e{letter-spacing:2.552409px;}
.ls110{letter-spacing:2.964875px;}
.ls32{letter-spacing:2.982562px;}
.ls9{letter-spacing:2.984523px;}
.ls98{letter-spacing:2.985087px;}
.ls188{letter-spacing:2.985952px;}
.ls11f{letter-spacing:2.985957px;}
.ls0{letter-spacing:2.987698px;}
.ls52{letter-spacing:2.988562px;}
.ls2{letter-spacing:2.988598px;}
.lsf{letter-spacing:2.988773px;}
.ls12{letter-spacing:2.990523px;}
.ls122{letter-spacing:2.990907px;}
.ls13c{letter-spacing:2.991952px;}
.ls153{letter-spacing:2.992195px;}
.ls1{letter-spacing:2.993698px;}
.ls15b{letter-spacing:2.993728px;}
.ls176{letter-spacing:2.995106px;}
.ls163{letter-spacing:2.999946px;}
.ls16a{letter-spacing:3.001106px;}
.ls65{letter-spacing:3.156918px;}
.ls1b{letter-spacing:3.168105px;}
.ls8b{letter-spacing:3.287656px;}
.lsf3{letter-spacing:3.320336px;}
.ls89{letter-spacing:3.347431px;}
.ls178{letter-spacing:3.994865px;}
.ls133{letter-spacing:4.000865px;}
.ls157{letter-spacing:4.002243px;}
.ls127{letter-spacing:4.250071px;}
.ls15c{letter-spacing:4.276580px;}
.ls128{letter-spacing:4.465264px;}
.ls3d{letter-spacing:4.489021px;}
.ls29{letter-spacing:4.491004px;}
.ls28{letter-spacing:4.497004px;}
.ls4d{letter-spacing:4.841820px;}
.ls16e{letter-spacing:4.848540px;}
.ls16b{letter-spacing:4.854540px;}
.lsa7{letter-spacing:5.917780px;}
.lsb3{letter-spacing:5.977556px;}
.lsd6{letter-spacing:5.980359px;}
.lscf{letter-spacing:6.256235px;}
.ls12e{letter-spacing:6.455760px;}
.ls14{letter-spacing:6.635087px;}
.ls150{letter-spacing:6.639503px;}
.ls183{letter-spacing:6.642295px;}
.ls48{letter-spacing:6.642534px;}
.ls14c{letter-spacing:6.649958px;}
.ls38{letter-spacing:6.772458px;}
.lsd0{letter-spacing:7.113291px;}
.ls88{letter-spacing:7.168433px;}
.ls43{letter-spacing:7.173176px;}
.ls8{letter-spacing:7.174195px;}
.lsab{letter-spacing:7.174433px;}
.ls101{letter-spacing:7.184825px;}
.ls15f{letter-spacing:7.193212px;}
.ls4b{letter-spacing:8.249027px;}
.ls158{letter-spacing:8.298306px;}
.ls14a{letter-spacing:8.304059px;}
.ls47{letter-spacing:8.308803px;}
.ls11a{letter-spacing:9.199520px;}
.ls11b{letter-spacing:9.253318px;}
.ls59{letter-spacing:9.626519px;}
.lse8{letter-spacing:9.627082px;}
.ls13{letter-spacing:9.630768px;}
.ls12a{letter-spacing:9.665680px;}
.ls45{letter-spacing:9.922743px;}
.lsa6{letter-spacing:9.938248px;}
.lsf6{letter-spacing:9.945457px;}
.ls9d{letter-spacing:9.958431px;}
.lsf8{letter-spacing:9.959600px;}
.lsd2{letter-spacing:9.962331px;}
.lsad{letter-spacing:9.964431px;}
.lsfa{letter-spacing:9.966531px;}
.ls27{letter-spacing:9.982518px;}
.ls105{letter-spacing:10.158453px;}
.lsbb{letter-spacing:10.221620px;}
.lsf4{letter-spacing:10.233174px;}
.ls12b{letter-spacing:10.251479px;}
.ls121{letter-spacing:10.460693px;}
.ls120{letter-spacing:10.879120px;}
.ls39{letter-spacing:10.929000px;}
.ls74{letter-spacing:11.133000px;}
.lsf1{letter-spacing:11.647937px;}
.lsd1{letter-spacing:11.653937px;}
.ls8e{letter-spacing:12.074663px;}
.lsd7{letter-spacing:12.134438px;}
.ls115{letter-spacing:12.253989px;}
.ls123{letter-spacing:12.385460px;}
.lsa5{letter-spacing:12.612643px;}
.lsbd{letter-spacing:12.616354px;}
.lsb4{letter-spacing:12.911520px;}
.lsb7{letter-spacing:12.944516px;}
.ls187{letter-spacing:12.948638px;}
.ls26{letter-spacing:12.950008px;}
.ls66{letter-spacing:12.950516px;}
.ls175{letter-spacing:12.961099px;}
.ls129{letter-spacing:12.965405px;}
.ls141{letter-spacing:13.090847px;}
.ls55{letter-spacing:13.150623px;}
.ls137{letter-spacing:13.250824px;}
.lsce{letter-spacing:13.262453px;}
.ls1c{letter-spacing:13.270174px;}
.ls91{letter-spacing:13.277598px;}
.ls7b{letter-spacing:13.278529px;}
.ls8a{letter-spacing:13.282429px;}
.ls93{letter-spacing:13.283598px;}
.ls7c{letter-spacing:13.284529px;}
.lsa4{letter-spacing:13.290171px;}
.ls90{letter-spacing:13.292588px;}
.ls96{letter-spacing:13.294590px;}
.lsed{letter-spacing:13.298646px;}
.ls51{letter-spacing:13.329949px;}
.ls20{letter-spacing:13.449591px;}
.ls11d{letter-spacing:13.450354px;}
.ls11e{letter-spacing:13.452141px;}
.ls124{letter-spacing:13.454900px;}
.lsb8{letter-spacing:13.569052px;}
.ls14e{letter-spacing:13.748378px;}
.ls9c{letter-spacing:13.813698px;}
.ls7e{letter-spacing:13.814389px;}
.ls15a{letter-spacing:13.960858px;}
.ls156{letter-spacing:13.968236px;}
.ls8c{letter-spacing:14.047256px;}
.ls7d{letter-spacing:14.115171px;}
.lse2{letter-spacing:14.405909px;}
.lsa2{letter-spacing:14.450997px;}
.lsb0{letter-spacing:14.456997px;}
.lsd8{letter-spacing:14.645012px;}
.lsd5{letter-spacing:14.704787px;}
.ls3{letter-spacing:14.942400px;}
.ls30{letter-spacing:14.943889px;}
.lsdd{letter-spacing:15.182992px;}
.lsfd{letter-spacing:15.362318px;}
.ls10f{letter-spacing:15.386332px;}
.ls23{letter-spacing:15.422094px;}
.ls111{letter-spacing:15.481869px;}
.ls10e{letter-spacing:15.547727px;}
.lsc{letter-spacing:15.900298px;}
.lse3{letter-spacing:15.960074px;}
.ls53{letter-spacing:16.199176px;}
.ls21{letter-spacing:16.247105px;}
.ls67{letter-spacing:16.268514px;}
.lsb9{letter-spacing:16.272448px;}
.lscb{letter-spacing:16.272552px;}
.ls11{letter-spacing:16.274005px;}
.ls6b{letter-spacing:16.274514px;}
.ls184{letter-spacing:16.275942px;}
.lsd{letter-spacing:16.318727px;}
.ls35{letter-spacing:16.378503px;}
.ls112{letter-spacing:16.434520px;}
.ls34{letter-spacing:16.438278px;}
.ls113{letter-spacing:16.440520px;}
.ls1f{letter-spacing:16.442340px;}
.ls174{letter-spacing:16.476527px;}
.ls116{letter-spacing:16.498054px;}
.ls87{letter-spacing:16.617605px;}
.ls114{letter-spacing:16.976258px;}
.ls50{letter-spacing:17.036034px;}
.ls22{letter-spacing:17.095810px;}
.lsf5{letter-spacing:17.106779px;}
.lsea{letter-spacing:17.108543px;}
.lsf9{letter-spacing:17.115451px;}
.ls142{letter-spacing:17.122855px;}
.lsae{letter-spacing:17.130526px;}
.ls9e{letter-spacing:17.136526px;}
.lse6{letter-spacing:17.148931px;}
.ls10d{letter-spacing:17.155585px;}
.ls75{letter-spacing:17.215361px;}
.ls131{letter-spacing:17.278855px;}
.ls143{letter-spacing:17.284855px;}
.ls173{letter-spacing:17.292234px;}
.ls3a{letter-spacing:17.334912px;}
.ls13d{letter-spacing:17.346552px;}
.ls13e{letter-spacing:17.346635px;}
.ls140{letter-spacing:17.349941px;}
.ls165{letter-spacing:17.369852px;}
.ls168{letter-spacing:17.370552px;}
.ls86{letter-spacing:17.753341px;}
.ls37{letter-spacing:17.774995px;}
.ls95{letter-spacing:17.928551px;}
.ls10{letter-spacing:17.930004px;}
.lsbe{letter-spacing:17.930513px;}
.ls78{letter-spacing:17.932667px;}
.ls4f{letter-spacing:17.934551px;}
.lse{letter-spacing:18.052218px;}
.lsaa{letter-spacing:18.111994px;}
.lsdb{letter-spacing:18.140513px;}
.ls166{letter-spacing:18.382855px;}
.ls19{letter-spacing:18.530423px;}
.ls1a{letter-spacing:18.590198px;}
.ls145{letter-spacing:18.940854px;}
.ls84{letter-spacing:19.080550px;}
.ls72{letter-spacing:19.190512px;}
.ls73{letter-spacing:19.194550px;}
.lsc1{letter-spacing:19.258350px;}
.lsa3{letter-spacing:19.392525px;}
.lse0{letter-spacing:19.398525px;}
.ls36{letter-spacing:19.436994px;}
.ls25{letter-spacing:19.564416px;}
.ls76{letter-spacing:19.572550px;}
.ls6e{letter-spacing:19.666159px;}
.ls109{letter-spacing:19.905261px;}
.ls63{letter-spacing:20.286906px;}
.lsfe{letter-spacing:20.383465px;}
.ls7{letter-spacing:20.454524px;}
.lse5{letter-spacing:20.460165px;}
.ls1d{letter-spacing:20.473233px;}
.ls85{letter-spacing:20.582993px;}
.ls18{letter-spacing:20.742119px;}
.ls17d{letter-spacing:20.907136px;}
.lsdf{letter-spacing:20.920349px;}
.ls77{letter-spacing:21.074993px;}
.ls126{letter-spacing:21.280099px;}
.ls31{letter-spacing:21.356992px;}
.lsc9{letter-spacing:21.518510px;}
.ls2d{letter-spacing:22.316001px;}
.ls6f{letter-spacing:22.356059px;}
.ls2f{letter-spacing:23.822991px;}
.lsb2{letter-spacing:24.926408px;}
.ls24{letter-spacing:24.953424px;}
.ls2c{letter-spacing:25.105734px;}
.lsd4{letter-spacing:26.050345px;}
.ls16c{letter-spacing:26.434849px;}
.ls164{letter-spacing:26.899001px;}
.ls10c{letter-spacing:27.018552px;}
.ls17b{letter-spacing:27.918519px;}
.lscc{letter-spacing:28.214063px;}
.ls10b{letter-spacing:28.328988px;}
.ls17f{letter-spacing:28.760318px;}
.ls147{letter-spacing:29.138505px;}
.ls16f{letter-spacing:29.758847px;}
.lsee{letter-spacing:29.885586px;}
.ls5{letter-spacing:29.887779px;}
.lsf7{letter-spacing:29.888856px;}
.ls80{letter-spacing:29.889160px;}
.ls49{letter-spacing:29.889548px;}
.lsa8{letter-spacing:29.910347px;}
.lsc7{letter-spacing:30.844188px;}
.ls9b{letter-spacing:31.251039px;}
.ls108{letter-spacing:31.253669px;}
.ls92{letter-spacing:32.055564px;}
.lsb6{letter-spacing:32.692340px;}
.lsfb{letter-spacing:35.128405px;}
.ls97{letter-spacing:36.150741px;}
.ls40{letter-spacing:36.153261px;}
.ls14b{letter-spacing:37.442499px;}
.ls5b{letter-spacing:40.346497px;}
.lsaf{letter-spacing:41.764400px;}
.lsa0{letter-spacing:41.770400px;}
.ls8d{letter-spacing:47.012597px;}
.ls5d{letter-spacing:50.312490px;}
.ls60{letter-spacing:53.630488px;}
.ls182{letter-spacing:58.640297px;}
.lsf0{letter-spacing:59.745004px;}
.ls41{letter-spacing:59.771565px;}
.ls42{letter-spacing:59.772496px;}
.ls4a{letter-spacing:59.775558px;}
.ls13b{letter-spacing:62.760603px;}
.ls9a{letter-spacing:62.762481px;}
.ls139{letter-spacing:64.056534px;}
.ls4c{letter-spacing:64.617378px;}
.ls181{letter-spacing:66.332680px;}
.ls64{letter-spacing:70.836488px;}
.ls44{letter-spacing:73.659041px;}
.ls191{letter-spacing:74.720473px;}
.ls18e{letter-spacing:84.212948px;}
.ls18b{letter-spacing:96.119097px;}
.ls61{letter-spacing:100.974467px;}
.ls117{letter-spacing:110.574454px;}
.ls196{letter-spacing:112.557375px;}
.ls103{letter-spacing:138.260865px;}
.lsd9{letter-spacing:140.090956px;}
.ls18f{letter-spacing:143.484674px;}
.ls193{letter-spacing:146.545913px;}
.ls192{letter-spacing:151.652901px;}
.ls18d{letter-spacing:158.791905px;}
.ls194{letter-spacing:165.458744px;}
.ls18a{letter-spacing:175.979242px;}
.ls11c{letter-spacing:176.297232px;}
.ls195{letter-spacing:176.636773px;}
.ls189{letter-spacing:177.055202px;}
.ls190{letter-spacing:177.712733px;}
.ls18c{letter-spacing:179.924429px;}
.ls197{letter-spacing:183.032758px;}
.ls119{letter-spacing:251.686263px;}
.ls106{letter-spacing:259.665023px;}
.ls118{letter-spacing:267.982252px;}
.ls12d{letter-spacing:351.744179px;}
.ls81{letter-spacing:1269.868711px;}
.lsda{letter-spacing:1288.240698px;}
.ls100{letter-spacing:1344.760659px;}
.ls15d{letter-spacing:1556.854403px;}
.ls185{letter-spacing:1590.209165px;}
.lse1{letter-spacing:1764.277548px;}
.lsb1{letter-spacing:1787.886934px;}
.ls171{letter-spacing:1801.934191px;}
.lsa9{letter-spacing:1919.536253px;}
.lsfc{letter-spacing:1946.365419px;}
.ls177{letter-spacing:1967.431488px;}
.ls94{letter-spacing:1975.399875px;}
.lsec{letter-spacing:2069.923720px;}
.ls5f{letter-spacing:2076.856142px;}
.ls151{letter-spacing:2080.080871px;}
.ls99{letter-spacing:2127.979768px;}
.lsc6{letter-spacing:2154.661272px;}
.ls56{letter-spacing:2195.334443px;}
.ls17a{letter-spacing:2226.714767px;}
.ls70{letter-spacing:2275.438812px;}
.ls136{letter-spacing:2295.477988px;}
.ls154{letter-spacing:2297.475986px;}
.ls2b{letter-spacing:2302.889066px;}
.ls16{letter-spacing:2336.160877px;}
.ls144{letter-spacing:2463.111870px;}
.lse7{letter-spacing:2487.375399px;}
.lsb{letter-spacing:2503.608759px;}
.ls149{letter-spacing:2545.791811px;}
.lsef{letter-spacing:2626.047657px;}
.lse4{letter-spacing:2626.055121px;}
.ls3e{letter-spacing:2694.166006px;}
.ls17{letter-spacing:2741.987754px;}
.ls1e{letter-spacing:2769.580812px;}
.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;}
}
.wse2{word-spacing:-359.534679px;}
.ws82{word-spacing:-59.775558px;}
.ws6e{word-spacing:-47.324309px;}
.ws68{word-spacing:-46.505384px;}
.ws6f{word-spacing:-41.089718px;}
.ws4c{word-spacing:-38.937798px;}
.ws4e{word-spacing:-36.071802px;}
.wsb7{word-spacing:-33.103704px;}
.ws89{word-spacing:-31.633134px;}
.ws6b{word-spacing:-29.875824px;}
.ws8e{word-spacing:-27.283862px;}
.ws8f{word-spacing:-26.325156px;}
.ws65{word-spacing:-25.667625px;}
.ws73{word-spacing:-23.993909px;}
.ws5c{word-spacing:-21.841989px;}
.wsd7{word-spacing:-20.754014px;}
.ws71{word-spacing:-20.646478px;}
.ws6c{word-spacing:-20.168273px;}
.ws85{word-spacing:-17.139415px;}
.ws8d{word-spacing:-16.849645px;}
.ws8c{word-spacing:-16.843869px;}
.ws50{word-spacing:-16.605650px;}
.ws74{word-spacing:-16.191347px;}
.wsf1{word-spacing:-15.087351px;}
.ws4d{word-spacing:-14.943889px;}
.wsd1{word-spacing:-13.449591px;}
.wsef{word-spacing:-12.636553px;}
.wsa2{word-spacing:-11.955142px;}
.ws91{word-spacing:-10.207649px;}
.wsda{word-spacing:-8.975226px;}
.wsaf{word-spacing:-8.416867px;}
.ws51{word-spacing:-6.682907px;}
.wsa7{word-spacing:-6.667627px;}
.ws88{word-spacing:-6.661287px;}
.ws5e{word-spacing:-6.623132px;}
.wsb5{word-spacing:-4.829865px;}
.ws57{word-spacing:-3.335476px;}
.ws54{word-spacing:-3.275701px;}
.wsab{word-spacing:-3.168105px;}
.wsb6{word-spacing:-3.108329px;}
.wsa3{word-spacing:-2.821451px;}
.wsd{word-spacing:-2.749676px;}
.ws43{word-spacing:-2.510573px;}
.ws104{word-spacing:-2.474725px;}
.wsde{word-spacing:-2.420926px;}
.wsbf{word-spacing:-2.331247px;}
.wsdb{word-spacing:-2.259531px;}
.ws3d{word-spacing:-2.211696px;}
.wsdc{word-spacing:-2.205733px;}
.ws29{word-spacing:-2.151920px;}
.ws5b{word-spacing:-2.092145px;}
.ws7e{word-spacing:-2.032369px;}
.ws7f{word-spacing:-1.972593px;}
.ws33{word-spacing:-1.912818px;}
.wse5{word-spacing:-1.853042px;}
.wsea{word-spacing:-1.793267px;}
.ws56{word-spacing:-1.733491px;}
.ws8a{word-spacing:-1.673716px;}
.ws8b{word-spacing:-1.613940px;}
.wsa4{word-spacing:-1.554165px;}
.wsb2{word-spacing:-1.494389px;}
.wsdd{word-spacing:-1.434613px;}
.wsf8{word-spacing:-1.398757px;}
.wsa1{word-spacing:-1.374838px;}
.ws61{word-spacing:-1.315062px;}
.ws24{word-spacing:-1.255287px;}
.ws114{word-spacing:-1.183564px;}
.ws14{word-spacing:-1.135736px;}
.ws3{word-spacing:-1.016184px;}
.wsfc{word-spacing:-0.914572px;}
.wsa6{word-spacing:-0.896633px;}
.ws2b{word-spacing:-0.836858px;}
.ws32{word-spacing:-0.777082px;}
.wsfe{word-spacing:-0.753177px;}
.ws5f{word-spacing:-0.717307px;}
.wsc6{word-spacing:-0.705352px;}
.ws28{word-spacing:-0.597756px;}
.ws116{word-spacing:-0.537984px;}
.ws37{word-spacing:-0.537980px;}
.wseb{word-spacing:-0.478204px;}
.ws31{word-spacing:-0.418429px;}
.wsfd{word-spacing:-0.376589px;}
.ws3a{word-spacing:-0.298878px;}
.ws2a{word-spacing:-0.239102px;}
.ws15{word-spacing:-0.179327px;}
.wsfb{word-spacing:-0.107597px;}
.ws75{word-spacing:-0.063359px;}
.ws17{word-spacing:-0.059776px;}
.ws9e{word-spacing:-0.053798px;}
.ws9c{word-spacing:-0.049624px;}
.wse1{word-spacing:-0.041843px;}
.wsce{word-spacing:-0.001298px;}
.ws0{word-spacing:0.000000px;}
.wsd6{word-spacing:0.001193px;}
.ws22{word-spacing:0.059776px;}
.wsc8{word-spacing:0.071731px;}
.wsf6{word-spacing:0.107597px;}
.ws10{word-spacing:0.119551px;}
.ws9d{word-spacing:0.161395px;}
.ws58{word-spacing:0.179327px;}
.wsa9{word-spacing:0.215193px;}
.ws41{word-spacing:0.239102px;}
.wsaa{word-spacing:0.268992px;}
.ws1d{word-spacing:0.298878px;}
.ws21{word-spacing:0.358653px;}
.wsa0{word-spacing:0.478204px;}
.ws80{word-spacing:0.537980px;}
.ws42{word-spacing:0.597756px;}
.ws102{word-spacing:0.645580px;}
.ws40{word-spacing:0.657531px;}
.ws35{word-spacing:0.717307px;}
.ws10e{word-spacing:0.753177px;}
.ws87{word-spacing:0.777082px;}
.ws3b{word-spacing:0.836858px;}
.wsb{word-spacing:0.896633px;}
.wsc3{word-spacing:0.956409px;}
.wsfa{word-spacing:0.968371px;}
.wsc{word-spacing:1.016184px;}
.wsf9{word-spacing:1.022169px;}
.ws3f{word-spacing:1.075960px;}
.ws60{word-spacing:1.135736px;}
.ws1f{word-spacing:1.195511px;}
.ws5d{word-spacing:1.255287px;}
.wsa5{word-spacing:1.315062px;}
.wsc9{word-spacing:1.344959px;}
.ws11{word-spacing:1.374838px;}
.wsca{word-spacing:1.398757px;}
.ws2f{word-spacing:1.434613px;}
.ws5{word-spacing:1.494389px;}
.ws38{word-spacing:1.554165px;}
.ws13{word-spacing:1.613940px;}
.ws34{word-spacing:1.673716px;}
.wsc7{word-spacing:1.733491px;}
.ws94{word-spacing:1.793267px;}
.ws106{word-spacing:1.829144px;}
.wsc0{word-spacing:1.853042px;}
.ws53{word-spacing:1.912818px;}
.ws8{word-spacing:1.972593px;}
.wsb4{word-spacing:2.032369px;}
.ws7{word-spacing:2.092145px;}
.ws1b{word-spacing:2.151920px;}
.ws3e{word-spacing:2.211696px;}
.ws69{word-spacing:2.271471px;}
.ws16{word-spacing:2.331247px;}
.ws2c{word-spacing:2.391022px;}
.ws4{word-spacing:2.450798px;}
.ws110{word-spacing:2.474725px;}
.ws107{word-spacing:2.528523px;}
.ws26{word-spacing:2.570349px;}
.ws101{word-spacing:2.582321px;}
.ws19{word-spacing:2.630125px;}
.ws30{word-spacing:2.689900px;}
.ws10d{word-spacing:2.689918px;}
.ws117{word-spacing:2.743716px;}
.wscf{word-spacing:2.797515px;}
.ws96{word-spacing:2.809451px;}
.wsd0{word-spacing:2.851313px;}
.ws48{word-spacing:2.869227px;}
.wsf7{word-spacing:2.905112px;}
.ws99{word-spacing:2.929002px;}
.wsf4{word-spacing:3.066507px;}
.ws1a{word-spacing:3.108329px;}
.ws112{word-spacing:3.120305px;}
.ws1e{word-spacing:3.227880px;}
.wsff{word-spacing:3.227902px;}
.ws23{word-spacing:3.287656px;}
.wsbe{word-spacing:3.347431px;}
.wse4{word-spacing:3.407207px;}
.ws27{word-spacing:3.526758px;}
.wsb9{word-spacing:3.538713px;}
.ws47{word-spacing:3.586533px;}
.ws3c{word-spacing:3.646309px;}
.ws6a{word-spacing:3.765860px;}
.ws108{word-spacing:3.873482px;}
.ws12{word-spacing:3.945187px;}
.ws10f{word-spacing:3.981079px;}
.wse{word-spacing:4.004962px;}
.ws6{word-spacing:4.064738px;}
.ws10a{word-spacing:4.088676px;}
.ws44{word-spacing:4.124513px;}
.ws2e{word-spacing:4.244065px;}
.ws105{word-spacing:4.303869px;}
.ws9f{word-spacing:4.357667px;}
.ws52{word-spacing:4.363616px;}
.ws1{word-spacing:4.423391px;}
.ws2d{word-spacing:4.483167px;}
.ws109{word-spacing:4.519062px;}
.ws62{word-spacing:4.602718px;}
.ws55{word-spacing:4.662494px;}
.ws111{word-spacing:4.680457px;}
.ws113{word-spacing:4.734256px;}
.ws46{word-spacing:4.782045px;}
.ws2{word-spacing:4.841820px;}
.wsf3{word-spacing:4.895651px;}
.wsc2{word-spacing:4.901596px;}
.wsf2{word-spacing:4.949449px;}
.wsa{word-spacing:5.021147px;}
.ws39{word-spacing:5.080922px;}
.wsb8{word-spacing:5.200474px;}
.wsb1{word-spacing:5.320025px;}
.ws115{word-spacing:5.326038px;}
.wse7{word-spacing:5.439576px;}
.ws100{word-spacing:5.487433px;}
.wsf{word-spacing:5.499351px;}
.ws1c{word-spacing:5.678678px;}
.ws10c{word-spacing:5.810223px;}
.ws4b{word-spacing:5.813696px;}
.ws25{word-spacing:5.977556px;}
.ws45{word-spacing:6.216658px;}
.ws118{word-spacing:6.348207px;}
.ws49{word-spacing:6.395985px;}
.wse8{word-spacing:6.455760px;}
.wsc5{word-spacing:6.587266px;}
.ws36{word-spacing:6.635087px;}
.ws63{word-spacing:6.754638px;}
.ws4f{word-spacing:6.814414px;}
.ws10b{word-spacing:6.832392px;}
.wsb3{word-spacing:6.933965px;}
.ws103{word-spacing:6.939989px;}
.wsad{word-spacing:6.993740px;}
.ws20{word-spacing:7.053516px;}
.wse9{word-spacing:7.352394px;}
.ws64{word-spacing:7.412169px;}
.ws4a{word-spacing:7.471945px;}
.wsc4{word-spacing:8.249027px;}
.wsbd{word-spacing:8.787007px;}
.ws97{word-spacing:8.846783px;}
.ws98{word-spacing:8.906558px;}
.wscd{word-spacing:9.145722px;}
.ws7d{word-spacing:9.459154px;}
.wse6{word-spacing:9.504314px;}
.wsd8{word-spacing:10.418850px;}
.ws86{word-spacing:11.608413px;}
.ws90{word-spacing:13.279129px;}
.ws79{word-spacing:13.285129px;}
.ws18{word-spacing:14.884124px;}
.ws9a{word-spacing:15.229853px;}
.ws9b{word-spacing:15.274515px;}
.ws93{word-spacing:15.289228px;}
.ws67{word-spacing:16.229155px;}
.ws6d{word-spacing:16.240624px;}
.wsf5{word-spacing:16.408500px;}
.ws7c{word-spacing:16.617605px;}
.ws7b{word-spacing:21.925223px;}
.ws77{word-spacing:21.931223px;}
.ws70{word-spacing:23.866619px;}
.ws95{word-spacing:27.472846px;}
.ws7a{word-spacing:28.387597px;}
.ws5a{word-spacing:31.489595px;}
.ws78{word-spacing:43.169908px;}
.ws72{word-spacing:43.798088px;}
.ws9{word-spacing:44.831668px;}
.ws81{word-spacing:46.756441px;}
.ws76{word-spacing:47.892177px;}
.ws66{word-spacing:62.717122px;}
.wsd9{word-spacing:73.625122px;}
.wsd3{word-spacing:76.339876px;}
.wsf0{word-spacing:78.323645px;}
.wsd5{word-spacing:80.751341px;}
.wsee{word-spacing:82.346808px;}
.wse0{word-spacing:83.656453px;}
.wsac{word-spacing:84.188787px;}
.wsb0{word-spacing:86.715341px;}
.wsae{word-spacing:88.715993px;}
.wsa8{word-spacing:102.098043px;}
.wsdf{word-spacing:109.049280px;}
.wse3{word-spacing:110.372327px;}
.wsd4{word-spacing:113.891132px;}
.wsc1{word-spacing:116.606579px;}
.wsd2{word-spacing:127.286925px;}
.ws84{word-spacing:145.304535px;}
.wsed{word-spacing:179.685327px;}
.ws92{word-spacing:205.303473px;}
.wsec{word-spacing:216.208193px;}
.wscb{word-spacing:251.561141px;}
.wscc{word-spacing:253.013697px;}
.ws83{word-spacing:307.298421px;}
.ws59{word-spacing:346.579373px;}
.wsbb{word-spacing:360.879413px;}
.wsbc{word-spacing:390.791302px;}
.wsba{word-spacing:399.721830px;}
._d{margin-left:-3155.615867px;}
._38{margin-left:-3154.546127px;}
._71{margin-left:-3145.589436px;}
._5{margin-left:-3127.737867px;}
._4{margin-left:-3126.643029px;}
._6b{margin-left:-3118.612740px;}
._2{margin-left:-3098.478591px;}
._33{margin-left:-2984.668772px;}
._6e{margin-left:-2970.698038px;}
._14{margin-left:-2477.252949px;}
._a{margin-left:-2464.049849px;}
._2e{margin-left:-2439.966078px;}
._73{margin-left:-2405.176845px;}
._b{margin-left:-2400.354506px;}
._9{margin-left:-2087.284508px;}
._59{margin-left:-2018.857865px;}
._2a{margin-left:-1976.130538px;}
._3f{margin-left:-1939.535699px;}
._5b{margin-left:-1708.006305px;}
._70{margin-left:-1691.683028px;}
._32{margin-left:-1645.829763px;}
._34{margin-left:-1594.160264px;}
._43{margin-left:-1469.711719px;}
._6f{margin-left:-1467.645380px;}
._6{margin-left:-1422.705303px;}
._6d{margin-left:-1212.032738px;}
._1b{margin-left:-1206.022423px;}
._5e{margin-left:-1011.767272px;}
._39{margin-left:-903.351251px;}
._6c{margin-left:-885.816160px;}
._1c{margin-left:-843.946461px;}
._30{margin-left:-778.764029px;}
._5f{margin-left:-737.531910px;}
._6a{margin-left:-664.965719px;}
._35{margin-left:-662.716920px;}
._26{margin-left:-649.786654px;}
._20{margin-left:-633.125457px;}
._3{margin-left:-529.870688px;}
._61{margin-left:-505.146691px;}
._1e{margin-left:-469.129192px;}
._69{margin-left:-421.930668px;}
._5c{margin-left:-351.744179px;}
._19{margin-left:-261.212804px;}
._28{margin-left:-34.610097px;}
._2c{margin-left:-33.474312px;}
._2f{margin-left:-32.159250px;}
._37{margin-left:-29.750494px;}
._15{margin-left:-27.974961px;}
._27{margin-left:-26.839225px;}
._18{margin-left:-25.524163px;}
._2d{margin-left:-19.926467px;}
._40{margin-left:-16.910263px;}
._1f{margin-left:-14.166807px;}
._1a{margin-left:-6.808194px;}
._c{margin-left:-5.379800px;}
._1{margin-left:-4.307248px;}
._8{margin-left:-2.982558px;}
._0{margin-left:-1.859262px;}
._f{width:2.151920px;}
._12{width:3.168105px;}
._21{width:4.483167px;}
._29{width:5.738454px;}
._11{width:7.085853px;}
._72{width:8.421831px;}
._1d{width:9.761983px;}
._68{width:10.872932px;}
._16{width:12.194214px;}
._17{width:14.166807px;}
._31{width:15.422094px;}
._10{width:16.860115px;}
._7{width:18.357316px;}
._36{width:19.662751px;}
._13{width:22.768268px;}
._60{width:27.901405px;}
._23{width:30.551530px;}
._3e{width:32.099475px;}
._2b{width:36.307578px;}
._24{width:40.049624px;}
._e{width:59.775558px;}
._4f{width:71.745985px;}
._53{width:80.858938px;}
._45{width:81.934905px;}
._41{width:86.669161px;}
._50{width:87.963701px;}
._62{width:104.965880px;}
._58{width:107.282219px;}
._3b{width:111.871952px;}
._3d{width:115.229294px;}
._3c{width:117.887805px;}
._54{width:121.691895px;}
._5a{width:123.359644px;}
._66{width:124.506267px;}
._3a{width:127.101645px;}
._52{width:129.116069px;}
._55{width:131.752189px;}
._4d{width:134.195857px;}
._56{width:136.217453px;}
._57{width:146.147407px;}
._4a{width:151.388591px;}
._63{width:154.453822px;}
._65{width:158.046575px;}
._42{width:159.415306px;}
._64{width:164.741437px;}
._51{width:167.947727px;}
._46{width:175.275064px;}
._47{width:182.484044px;}
._48{width:185.012567px;}
._67{width:191.281785px;}
._49{width:202.907120px;}
._4c{width:207.823073px;}
._4e{width:218.424729px;}
._44{width:224.446766px;}
._4b{width:244.708447px;}
._5d{width:266.581984px;}
._25{width:1782.203357px;}
._22{width:2414.734178px;}
.fc2{color:transparent;}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:26.670509px;}
.fs9{font-size:29.887779px;}
.fs18{font-size:31.161999px;}
.fsc{font-size:33.338136px;}
.fs12{font-size:33.667468px;}
.fs8{font-size:35.865575px;}
.fs17{font-size:35.900903px;}
.fse{font-size:36.306267px;}
.fs19{font-size:37.395334px;}
.fs13{font-size:37.395839px;}
.fs10{font-size:38.258617px;}
.fs14{font-size:41.137199px;}
.fs3{font-size:41.842770px;}
.fs11{font-size:42.086295px;}
.fs15{font-size:42.670050px;}
.fsf{font-size:43.568609px;}
.fsb{font-size:44.662324px;}
.fs16{font-size:44.876128px;}
.fs2{font-size:47.820566px;}
.fsa{font-size:49.624473px;}
.fs5{font-size:51.107964px;}
.fs7{font-size:53.798362px;}
.fs4{font-size:59.775558px;}
.fs6{font-size:59.775600px;}
.fs1{font-size:71.731149px;}
.fs0{font-size:103.292327px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.001380px;}
.y238{bottom:1.714642px;}
.y185{bottom:1.979452px;}
.y223{bottom:3.365710px;}
.y197{bottom:5.672996px;}
.y1bf{bottom:6.544435px;}
.y1a9{bottom:6.695425px;}
.y1e2{bottom:8.089530px;}
.y25b{bottom:9.426740px;}
.y184{bottom:12.571256px;}
.y237{bottom:15.972162px;}
.y222{bottom:17.623230px;}
.y1e3{bottom:18.334787px;}
.y25c{bottom:18.405516px;}
.y196{bottom:18.834347px;}
.y1be{bottom:19.399576px;}
.y1a8{bottom:19.847153px;}
.y186{bottom:20.575881px;}
.y18b{bottom:27.868598px;}
.y198{bottom:27.911140px;}
.y1c0{bottom:28.748770px;}
.y1aa{bottom:29.412047px;}
.y23d{bottom:36.213166px;}
.y187{bottom:36.984495px;}
.y228{bottom:37.864233px;}
.y239{bottom:39.280917px;}
.y1af{bottom:43.042020px;}
.y263{bottom:44.406959px;}
.y25d{bottom:45.254508px;}
.y199{bottom:47.380863px;}
.y224{bottom:49.507625px;}
.y246{bottom:51.537429px;}
.y188{bottom:53.393109px;}
.y1ab{bottom:55.057917px;}
.y20{bottom:55.669581px;}
.y1e4{bottom:57.385439px;}
.y1e8{bottom:60.338117px;}
.y16f{bottom:62.598433px;}
.y23a{bottom:64.348441px;}
.y189{bottom:69.801723px;}
.y25e{bottom:72.103501px;}
.y225{bottom:75.894602px;}
.y1c1{bottom:78.883819px;}
.y16b{bottom:79.110702px;}
.y1ac{bottom:80.703787px;}
.y18a{bottom:86.210337px;}
.y19a{bottom:86.320307px;}
.y23b{bottom:89.415966px;}
.y247{bottom:90.102851px;}
.y17f{bottom:95.586688px;}
.y252{bottom:95.926552px;}
.y1e5{bottom:96.436091px;}
.ye9{bottom:96.976552px;}
.y174{bottom:97.548051px;}
.y183{bottom:97.930776px;}
.y1e1{bottom:98.865528px;}
.y25f{bottom:98.952182px;}
.y1f{bottom:100.501549px;}
.y226{bottom:102.281204px;}
.y16e{bottom:103.146887px;}
.y6f{bottom:104.304046px;}
.y1cc{bottom:104.970046px;}
.y9a{bottom:106.023045px;}
.y1ad{bottom:106.349657px;}
.yea{bottom:107.226044px;}
.ye8{bottom:107.227544px;}
.y47{bottom:109.413043px;}
.y99{bottom:110.007042px;}
.y27a{bottom:110.343042px;}
.y30e{bottom:111.505541px;}
.y119{bottom:112.908040px;}
.y23c{bottom:114.483491px;}
.y1e0{bottom:114.485522px;}
.y180{bottom:117.464840px;}
.y173{bottom:118.392036px;}
.y171{bottom:119.280593px;}
.y251{bottom:121.032035px;}
.yeb{bottom:123.070533px;}
.y19b{bottom:125.259752px;}
.y1e{bottom:125.607031px;}
.y260{bottom:125.801174px;}
.y227{bottom:128.668181px;}
.y248{bottom:128.668274px;}
.y1fd{bottom:128.914529px;}
.y1c2{bottom:129.018869px;}
.y6e{bottom:129.409529px;}
.y1cb{bottom:130.075528px;}
.y20e{bottom:130.479028px;}
.y1ae{bottom:131.995527px;}
.y30d{bottom:134.518525px;}
.y46{bottom:134.520025px;}
.y1e6{bottom:135.486742px;}
.y98{bottom:135.612024px;}
.y256{bottom:135.893318px;}
.y118{bottom:138.013523px;}
.y259{bottom:139.221690px;}
.y181{bottom:139.342992px;}
.y97{bottom:139.596022px;}
.y2c0{bottom:139.600521px;}
.y279{bottom:139.932021px;}
.y172{bottom:141.405020px;}
.y257{bottom:141.569571px;}
.y16d{bottom:141.975623px;}
.y2ed{bottom:142.588519px;}
.ye7{bottom:143.010019px;}
.y1bb{bottom:143.042659px;}
.y1a2{bottom:144.190766px;}
.y194{bottom:144.574518px;}
.y21c{bottom:144.795633px;}
.y250{bottom:146.137517px;}
.y25a{bottom:146.252488px;}
.y1dd{bottom:147.273016px;}
.y231{bottom:147.783635px;}
.y236{bottom:149.104676px;}
.y1b7{bottom:149.947514px;}
.y240{bottom:150.405149px;}
.yb2{bottom:150.712514px;}
.y1d{bottom:150.714014px;}
.y255{bottom:151.732813px;}
.y261{bottom:152.650167px;}
.y1fc{bottom:154.020011px;}
.y1ca{bottom:155.181011px;}
.y20d{bottom:155.584510px;}
.y245{bottom:157.066449px;}
.y22f{bottom:157.480509px;}
.y30c{bottom:157.533009px;}
.y221{bottom:157.767639px;}
.y258{bottom:158.159154px;}
.y45{bottom:159.625507px;}
.y254{bottom:160.301330px;}
.y1a7{bottom:160.690207px;}
.y182{bottom:161.221144px;}
.y170{bottom:161.638422px;}
.y2bf{bottom:164.706004px;}
.y2ec{bottom:165.603003px;}
.y232{bottom:167.201068px;}
.y21d{bottom:167.743509px;}
.y1df{bottom:169.156523px;}
.y6d{bottom:169.459500px;}
.y193{bottom:169.681500px;}
.y1a3{bottom:170.015978px;}
.y241{bottom:170.599407px;}
.y1dc{bottom:172.378498px;}
.ye6{bottom:173.867997px;}
.y1e7{bottom:174.537750px;}
.y264{bottom:174.706324px;}
.y16a{bottom:174.880377px;}
.y1b6{bottom:175.052996px;}
.y13f{bottom:175.490996px;}
.y1c{bottom:175.819496px;}
.y262{bottom:179.499159px;}
.y96{bottom:179.645993px;}
.y278{bottom:179.981993px;}
.y1c9{bottom:180.287993px;}
.y30b{bottom:180.545993px;}
.y16c{bottom:180.804360px;}
.y22e{bottom:182.585991px;}
.y44{bottom:184.730990px;}
.y140{bottom:185.741989px;}
.y233{bottom:186.618502px;}
.y24f{bottom:187.256988px;}
.y2eb{bottom:188.615987px;}
.y2be{bottom:189.812986px;}
.y21e{bottom:190.691758px;}
.y242{bottom:190.793664px;}
.y1fb{bottom:191.080485px;}
.y117{bottom:192.917984px;}
.y1bc{bottom:193.528303px;}
.y192{bottom:194.786983px;}
.y1a4{bottom:195.841189px;}
.y13e{bottom:195.851982px;}
.y1db{bottom:197.483981px;}
.y1b5{bottom:200.158479px;}
.y1b{bottom:200.924978px;}
.ye5{bottom:201.578978px;}
.y115{bottom:203.168977px;}
.y30a{bottom:203.560476px;}
.y1c8{bottom:205.393475px;}
.y234{bottom:206.035935px;}
.y20c{bottom:207.190474px;}
.y13d{bottom:207.410974px;}
.y22d{bottom:207.691473px;}
.y6c{bottom:209.509472px;}
.y43{bottom:209.836472px;}
.y243{bottom:210.987922px;}
.y2ea{bottom:211.628971px;}
.y116{bottom:213.278970px;}
.y21f{bottom:213.639634px;}
.y2bd{bottom:214.918468px;}
.y1fa{bottom:216.185967px;}
.ye2{bottom:217.658966px;}
.y24e{bottom:217.799966px;}
.y20b{bottom:219.418465px;}
.y95{bottom:219.695965px;}
.y191{bottom:219.892465px;}
.y277{bottom:220.031965px;}
.y5a{bottom:220.526964px;}
.ye3{bottom:220.796964px;}
.y1a5{bottom:221.666401px;}
.y1da{bottom:222.590963px;}
.y13c{bottom:223.708462px;}
.y1b4{bottom:225.263961px;}
.y235{bottom:225.453368px;}
.y1a{bottom:226.030461px;}
.y309{bottom:226.573460px;}
.y1c7{bottom:230.498957px;}
.y6b{bottom:230.680457px;}
.ye4{bottom:231.167957px;}
.y244{bottom:231.182180px;}
.y22c{bottom:232.796956px;}
.y2e9{bottom:234.643454px;}
.y42{bottom:234.941954px;}
.y20a{bottom:236.155453px;}
.y220{bottom:236.587510px;}
.y2bc{bottom:240.023951px;}
.y24d{bottom:240.812950px;}
.y1bd{bottom:244.013948px;}
.y190{bottom:244.997947px;}
.y59{bottom:245.633947px;}
.y114{bottom:246.157446px;}
.y2a1{bottom:247.292946px;}
.y1a6{bottom:247.491613px;}
.y308{bottom:249.586444px;}
.y1b3{bottom:250.369443px;}
.y19{bottom:251.135943px;}
.y1f9{bottom:253.246441px;}
.y1c6{bottom:255.604440px;}
.y2e8{bottom:257.656438px;}
.y22b{bottom:257.902438px;}
.y94{bottom:259.745937px;}
.y41{bottom:260.047437px;}
.y1d9{bottom:262.639435px;}
.ye1{bottom:263.065434px;}
.y209{bottom:263.182434px;}
.y13b{bottom:263.758434px;}
.y24c{bottom:263.827434px;}
.y2bb{bottom:265.129433px;}
.y18f{bottom:270.103429px;}
.y113{bottom:271.262929px;}
.y307{bottom:272.600928px;}
.y276{bottom:275.024926px;}
.y18{bottom:276.241425px;}
.y2a0{bottom:277.091924px;}
.y1f8{bottom:278.353424px;}
.y2e7{bottom:280.670922px;}
.y1c5{bottom:280.709922px;}
.y22a{bottom:283.009420px;}
.y93{bottom:284.851419px;}
.y40{bottom:285.154419px;}
.y58{bottom:285.682418px;}
.y208{bottom:286.196918px;}
.y29d{bottom:287.342917px;}
.y2ba{bottom:290.234915px;}
.y1b2{bottom:290.419415px;}
.ydf{bottom:293.332413px;}
.y29f{bottom:293.563413px;}
.y29e{bottom:293.758413px;}
.y18e{bottom:295.208912px;}
.y306{bottom:295.613911px;}
.y24b{bottom:295.942411px;}
.y275{bottom:300.130408px;}
.y17{bottom:301.346907px;}
.y1d8{bottom:302.689406px;}
.y13a{bottom:302.903906px;}
.y2e6{bottom:303.683906px;}
.y110{bottom:307.159403px;}
.y207{bottom:309.209902px;}
.ydc{bottom:309.410902px;}
.y92{bottom:309.956901px;}
.y3f{bottom:310.259901px;}
.y111{bottom:310.745901px;}
.y10f{bottom:311.102900px;}
.ydd{bottom:312.550399px;}
.y2b9{bottom:315.340397px;}
.y1f7{bottom:315.413897px;}
.y305{bottom:318.628395px;}
.y1c4{bottom:320.759894px;}
.y10b{bottom:320.996894px;}
.yde{bottom:322.921392px;}
.y10c{bottom:324.134891px;}
.y10a{bottom:324.940391px;}
.y274{bottom:325.237391px;}
.y229{bottom:325.723390px;}
.y16{bottom:326.453890px;}
.y2e5{bottom:326.696889px;}
.y1b1{bottom:327.233889px;}
.y112{bottom:327.755889px;}
.y1d7{bottom:327.794889px;}
.y139{bottom:328.010889px;}
.y29c{bottom:329.924887px;}
.y29b{bottom:330.748387px;}
.y206{bottom:332.222886px;}
.y10e{bottom:332.264886px;}
.y3e{bottom:335.365383px;}
.y29a{bottom:335.902383px;}
.y10d{bottom:336.208383px;}
.y24a{bottom:336.251883px;}
.y18d{bottom:337.924382px;}
.ye0{bottom:339.449880px;}
.y2b8{bottom:340.445880px;}
.y1f6{bottom:340.519380px;}
.y57{bottom:340.676880px;}
.yb1{bottom:341.396879px;}
.y304{bottom:341.641379px;}
.y90{bottom:346.613875px;}
.y1b0{bottom:348.077874px;}
.y2e4{bottom:349.711373px;}
.y273{bottom:350.342873px;}
.y15{bottom:351.559372px;}
.y1d6{bottom:352.901871px;}
.ydb{bottom:353.777870px;}
.y134{bottom:354.790370px;}
.y205{bottom:355.237369px;}
.y21b{bottom:359.198747px;}
.y3d{bottom:360.470866px;}
.y18c{bottom:360.937365px;}
.y91{bottom:362.693864px;}
.y303{bottom:364.654363px;}
.y2b7{bottom:365.552862px;}
.y56{bottom:365.782362px;}
.y1c3{bottom:368.503360px;}
.y109{bottom:371.126858px;}
.y249{bottom:371.950358px;}
.y2e3{bottom:372.724357px;}
.y133{bottom:372.971857px;}
.y272{bottom:375.448355px;}
.y299{bottom:375.952355px;}
.y8f{bottom:376.202855px;}
.y14{bottom:376.664854px;}
.y137{bottom:377.365354px;}
.y1d5{bottom:378.007353px;}
.y204{bottom:378.250353px;}
.yb0{bottom:380.408852px;}
.y1f5{bottom:380.569351px;}
.y1a1{bottom:381.554731px;}
.y132{bottom:383.194350px;}
.y3c{bottom:385.576348px;}
.y2b6{bottom:386.963847px;}
.y302{bottom:387.668846px;}
.y2b5{bottom:390.658344px;}
.y55{bottom:390.887844px;}
.y131{bottom:393.445342px;}
.yda{bottom:393.827842px;}
.y17e{bottom:394.414222px;}
.y2e2{bottom:395.738841px;}
.y108{bottom:396.232340px;}
.y135{bottom:396.583340px;}
.y271{bottom:400.553837px;}
.y203{bottom:401.264837px;}
.y13{bottom:401.770337px;}
.y1ba{bottom:401.978716px;}
.y23f{bottom:405.425714px;}
.yaf{bottom:405.514334px;}
.y298{bottom:405.541334px;}
.y297{bottom:405.748334px;}
.y136{bottom:406.954333px;}
.y8e{bottom:410.365330px;}
.y3b{bottom:410.681830px;}
.y2b4{bottom:415.763827px;}
.y54{bottom:415.993326px;}
.y2e1{bottom:418.751825px;}
.y1d4{bottom:420.074824px;}
.y1f4{bottom:420.619323px;}
.y107{bottom:421.337823px;}
.y169{bottom:422.794322px;}
.y202{bottom:424.277821px;}
.y270{bottom:425.659320px;}
.y12{bottom:426.875819px;}
.yae{bottom:430.619816px;}
.y296{bottom:431.435816px;}
.y130{bottom:432.059815px;}
.yd9{bottom:432.727315px;}
.y301{bottom:433.696314px;}
.y138{bottom:434.251314px;}
.y295{bottom:435.130313px;}
.y8d{bottom:435.470813px;}
.y3a{bottom:435.787313px;}
.y12d{bottom:437.888811px;}
.y2b3{bottom:440.869309px;}
.y53{bottom:441.098809px;}
.y2e0{bottom:441.764808px;}
.y1f3{bottom:445.724805px;}
.y168{bottom:447.899804px;}
.y12c{bottom:448.139804px;}
.y1d3{bottom:450.530802px;}
.y26f{bottom:450.764802px;}
.y12e{bottom:451.277802px;}
.y201{bottom:456.392798px;}
.y300{bottom:456.709298px;}
.yd8{bottom:457.832797px;}
.y39{bottom:460.894295px;}
.y106{bottom:461.387794px;}
.y12f{bottom:461.648794px;}
.y2df{bottom:464.779292px;}
.yad{bottom:464.897792px;}
.y2b2{bottom:465.974791px;}
.y11{bottom:466.925791px;}
.y87{bottom:468.347790px;}
.y1f2{bottom:470.830288px;}
.y8b{bottom:472.939286px;}
.y167{bottom:473.005286px;}
.y1d2{bottom:473.545286px;}
.y294{bottom:475.178785px;}
.y26e{bottom:475.870284px;}
.y2ff{bottom:479.722282px;}
.y38{bottom:485.999777px;}
.y86{bottom:486.529277px;}
.y2de{bottom:487.792276px;}
.yd7{bottom:489.514275px;}
.y2b1{bottom:491.080273px;}
.y8a{bottom:491.120773px;}
.y12b{bottom:491.447773px;}
.y1f1{bottom:495.935770px;}
.y1d1{bottom:496.558270px;}
.y200{bottom:496.702270px;}
.y52{bottom:498.035769px;}
.y166{bottom:498.112269px;}
.yac{bottom:499.177268px;}
.y293{bottom:500.284267px;}
.y84{bottom:500.336767px;}
.y26d{bottom:500.977267px;}
.y105{bottom:501.437766px;}
.y12a{bottom:501.698766px;}
.y2fe{bottom:502.736765px;}
.y89{bottom:504.928264px;}
.y7f{bottom:504.929764px;}
.y129{bottom:505.642263px;}
.y8c{bottom:506.164263px;}
.yd6{bottom:509.873760px;}
.y2dd{bottom:510.806760px;}
.y37{bottom:511.105259px;}
.y2b0{bottom:516.185756px;}
.y81{bottom:519.664253px;}
.y88{bottom:521.008252px;}
.y1f0{bottom:521.041252px;}
.y10{bottom:521.455252px;}
.y51{bottom:523.141251px;}
.y165{bottom:523.217751px;}
.y7d{bottom:524.146250px;}
.y83{bottom:524.158250px;}
.yab{bottom:524.282750px;}
.y292{bottom:525.391249px;}
.y2fd{bottom:525.749749px;}
.y26c{bottom:526.082749px;}
.y1d0{bottom:528.673247px;}
.y80{bottom:529.228247px;}
.y103{bottom:533.237744px;}
.y2dc{bottom:533.819743px;}
.y7e{bottom:534.517243px;}
.y1ff{bottom:534.812743px;}
.y36{bottom:536.210742px;}
.y164{bottom:538.072240px;}
.yd5{bottom:539.813739px;}
.y128{bottom:541.067738px;}
.y2af{bottom:541.292738px;}
.y290{bottom:542.653237px;}
.y82{bottom:544.519236px;}
.y1ef{bottom:546.146735px;}
.yf{bottom:546.560734px;}
.y28f{bottom:547.960233px;}
.y163{bottom:548.323233px;}
.y2fc{bottom:548.764233px;}
.yaa{bottom:549.388232px;}
.y6a{bottom:550.381232px;}
.y7c{bottom:551.045731px;}
.y26b{bottom:551.188231px;}
.y102{bottom:551.419231px;}
.y28e{bottom:553.112730px;}
.y291{bottom:553.114230px;}
.y85{bottom:555.529228px;}
.y2db{bottom:556.832727px;}
.y1fe{bottom:557.825726px;}
.y50{bottom:560.201725px;}
.y69{bottom:560.632224px;}
.y35{bottom:561.316224px;}
.y101{bottom:561.971723px;}
.y100{bottom:565.915221px;}
.y127{bottom:566.173221px;}
.yd4{bottom:568.925719px;}
.y1cf{bottom:568.982719px;}
.y1ee{bottom:571.253717px;}
.ye{bottom:571.666217px;}
.y2fb{bottom:571.777217px;}
.ya9{bottom:574.493715px;}
.y26a{bottom:576.293713px;}
.y7b{bottom:576.857713px;}
.y104{bottom:576.943213px;}
.y2ae{bottom:578.338212px;}
.y2da{bottom:579.847211px;}
.yff{bottom:584.776207px;}
.y4f{bottom:585.308707px;}
.y34{bottom:586.421706px;}
.y28d{bottom:589.468204px;}
.y17d{bottom:591.802202px;}
.y161{bottom:592.780202px;}
.y28c{bottom:593.162701px;}
.yd3{bottom:594.031201px;}
.y2fa{bottom:594.790200px;}
.y1ed{bottom:596.359199px;}
.yd{bottom:596.771699px;}
.y28b{bottom:596.939699px;}
.ya8{bottom:599.600697px;}
.y15e{bottom:599.893197px;}
.y68{bottom:600.680696px;}
.y126{bottom:601.201196px;}
.y269{bottom:601.399196px;}
.y2d9{bottom:602.860195px;}
.yfe{bottom:602.957695px;}
.y15d{bottom:604.376694px;}
.y1ce{bottom:607.921191px;}
.yfd{bottom:611.267689px;}
.y33{bottom:611.528689px;}
.yd2{bottom:611.683188px;}
.y2ad{bottom:612.604188px;}
.y15a{bottom:614.090687px;}
.yfc{bottom:615.776686px;}
.y7a{bottom:616.907685px;}
.y2f9{bottom:617.804684px;}
.ycb{bottom:617.962184px;}
.y159{bottom:618.034184px;}
.yfb{bottom:619.720183px;}
.y1ec{bottom:621.464681px;}
.yc{bottom:621.878681px;}
.y160{bottom:622.312181px;}
.y4e{bottom:622.369181px;}
.y28a{bottom:622.751681px;}
.ya7{bottom:624.706179px;}
.y67{bottom:625.787678px;}
.y2d8{bottom:625.874678px;}
.y268{bottom:626.504678px;}
.y289{bottom:626.695178px;}
.y15c{bottom:631.276175px;}
.yd1{bottom:632.042674px;}
.y2ca{bottom:632.449174px;}
.y1cd{bottom:633.026673px;}
.ycf{bottom:633.443673px;}
.y15b{bottom:635.759671px;}
.y125{bottom:636.230671px;}
.y32{bottom:636.634171px;}
.y2ac{bottom:637.709670px;}
.yc9{bottom:637.927170px;}
.y21a{bottom:638.314170px;}
.yc7{bottom:639.272669px;}
.y2f8{bottom:640.817668px;}
.y17c{bottom:642.013167px;}
.y15f{bottom:642.940166px;}
.yce{bottom:643.007666px;}
.y1eb{bottom:646.570164px;}
.yb{bottom:646.984163px;}
.y162{bottom:647.221163px;}
.y4d{bottom:647.474663px;}
.yc8{bottom:647.491163px;}
.y288{bottom:648.355163px;}
.y2d7{bottom:648.887662px;}
.ya6{bottom:649.811661px;}
.ycd{bottom:651.974660px;}
.y287{bottom:652.340660px;}
.yfa{bottom:653.023159px;}
.y2c9{bottom:655.463658px;}
.y66{bottom:655.586657px;}
.y286{bottom:656.117657px;}
.y79{bottom:656.957656px;}
.yca{bottom:658.012156px;}
.y158{bottom:659.042655px;}
.yd0{bottom:660.706154px;}
.y31{bottom:661.739653px;}
.y2ab{bottom:662.815152px;}
.y219{bottom:663.419652px;}
.y2f7{bottom:663.832152px;}
.y65{bottom:665.836150px;}
.y155{bottom:666.155650px;}
.y1a0{bottom:666.428650px;}
.y267{bottom:666.554650px;}
.y17b{bottom:667.118649px;}
.y124{bottom:667.351149px;}
.y154{bottom:670.637647px;}
.y2d6{bottom:671.900646px;}
.ya{bottom:672.089646px;}
.ycc{bottom:673.793645px;}
.ya5{bottom:674.917144px;}
.y285{bottom:677.944142px;}
.yf9{bottom:678.128642px;}
.y2c8{bottom:678.476641px;}
.y151{bottom:680.351640px;}
.y1b9{bottom:680.770140px;}
.y122{bottom:681.188639px;}
.y284{bottom:681.929639px;}
.y78{bottom:682.063139px;}
.y150{bottom:684.295137px;}
.y123{bottom:684.326637px;}
.y4c{bottom:684.535137px;}
.y1ea{bottom:686.620136px;}
.y30{bottom:686.845135px;}
.y2aa{bottom:687.922135px;}
.y157{bottom:688.840134px;}
.yc6{bottom:689.101134px;}
.y19f{bottom:691.534132px;}
.y64{bottom:692.135632px;}
.y23e{bottom:694.480130px;}
.y2d5{bottom:694.915130px;}
.y9{bottom:697.195128px;}
.y153{bottom:697.537128px;}
.y2c7{bottom:701.489625px;}
.y152{bottom:702.020625px;}
.y63{bottom:702.386624px;}
.yf8{bottom:703.235624px;}
.y218{bottom:703.469624px;}
.y77{bottom:707.168621px;}
.y156{bottom:709.201120px;}
.y4b{bottom:709.640619px;}
.y2f6{bottom:709.858119px;}
.y2f{bottom:711.950618px;}
.yc5{bottom:712.510117px;}
.y2a9{bottom:713.027617px;}
.y1b8{bottom:714.246996px;}
.y266{bottom:714.298116px;}
.ya4{bottom:714.967116px;}
.y19e{bottom:716.639614px;}
.y2d4{bottom:717.928113px;}
.y283{bottom:721.979611px;}
.y8{bottom:722.300610px;}
.yc4{bottom:722.761110px;}
.y121{bottom:723.391110px;}
.y2c6{bottom:724.504109px;}
.y230{bottom:727.955486px;}
.yf7{bottom:728.341106px;}
.y76{bottom:728.579606px;}
.y75{bottom:732.274103px;}
.y2f5{bottom:732.872603px;}
.y14f{bottom:733.253603px;}
.y1e9{bottom:734.182102px;}
.y2e{bottom:737.056100px;}
.y265{bottom:737.312600px;}
.y2a8{bottom:738.133099px;}
.y2d3{bottom:740.942597px;}
.y62{bottom:742.436596px;}
.y4a{bottom:746.702593px;}
.y282{bottom:747.085093px;}
.y17a{bottom:747.218593px;}
.y2c5{bottom:747.517093px;}
.y120{bottom:748.168092px;}
.y217{bottom:750.173591px;}
.yf6{bottom:753.446588px;}
.y2f4{bottom:755.885587px;}
.yc3{bottom:756.419586px;}
.y19d{bottom:756.689586px;}
.y74{bottom:757.379586px;}
.y11f{bottom:758.419085px;}
.y2d{bottom:762.163082px;}
.y2a7{bottom:763.238581px;}
.y2d2{bottom:763.955581px;}
.y7{bottom:765.340080px;}
.y216{bottom:766.910579px;}
.y14d{bottom:767.354579px;}
.y61{bottom:767.542078px;}
.y1de{bottom:767.657458px;}
.ya3{bottom:768.922077px;}
.y14a{bottom:769.597077px;}
.y2c4{bottom:770.531576px;}
.y253{bottom:770.787956px;}
.y49{bottom:771.808075px;}
.y281{bottom:772.190575px;}
.y179{bottom:772.324075px;}
.y149{bottom:773.540574px;}
.y14b{bottom:775.426073px;}
.y2f3{bottom:778.900070px;}
.yc2{bottom:781.525069px;}
.y73{bottom:782.486568px;}
.y145{bottom:785.677066px;}
.y2d1{bottom:786.968565px;}
.y2c{bottom:787.268565px;}
.yf5{bottom:787.754564px;}
.y2a6{bottom:788.344064px;}
.y146{bottom:788.815063px;}
.y144{bottom:789.620563px;}
.y60{bottom:792.647561px;}
.ya2{bottom:794.027560px;}
.y6{bottom:794.672559px;}
.y215{bottom:795.703059px;}
.y280{bottom:797.296057px;}
.y178{bottom:797.429557px;}
.y11e{bottom:797.788057px;}
.yf4{bottom:798.005557px;}
.y148{bottom:799.186056px;}
.y14c{bottom:801.427055px;}
.y2f2{bottom:801.913054px;}
.y147{bottom:803.129553px;}
.y19c{bottom:804.433052px;}
.yc1{bottom:806.630551px;}
.y72{bottom:807.592050px;}
.y48{bottom:808.868549px;}
.y2d0{bottom:809.983048px;}
.y2b{bottom:812.374047px;}
.y5{bottom:813.160046px;}
.y2a5{bottom:813.449546px;}
.y14e{bottom:815.714544px;}
.y5f{bottom:817.753043px;}
.y214{bottom:818.716042px;}
.ya1{bottom:819.133042px;}
.y177{bottom:822.535040px;}
.y11d{bottom:822.565040px;}
.y2f1{bottom:824.926038px;}
.yc0{bottom:831.737533px;}
.y71{bottom:832.697532px;}
.y11c{bottom:832.816032px;}
.y2cf{bottom:832.996032px;}
.y27f{bottom:837.346029px;}
.y2a{bottom:837.479529px;}
.y195{bottom:837.908409px;}
.y2a4{bottom:838.555028px;}
.y143{bottom:838.675028px;}
.yf3{bottom:839.953027px;}
.y213{bottom:841.730526px;}
.y2c3{bottom:843.755525px;}
.ya0{bottom:844.238524px;}
.y4{bottom:846.445023px;}
.y5e{bottom:847.552022px;}
.y176{bottom:847.642022px;}
.y2f0{bottom:847.940522px;}
.y2ce{bottom:856.010516px;}
.ybf{bottom:856.843015px;}
.y5d{bottom:857.803015px;}
.y29{bottom:862.585011px;}
.y2a3{bottom:863.662011px;}
.y27e{bottom:866.935008px;}
.y11b{bottom:867.845508px;}
.yf2{bottom:868.264007px;}
.y9f{bottom:869.345507px;}
.y2ef{bottom:870.953505px;}
.y175{bottom:872.747504px;}
.y212{bottom:873.845503px;}
.y142{bottom:875.735502px;}
.y2cd{bottom:879.023500px;}
.y3{bottom:879.322000px;}
.ybe{bottom:882.713497px;}
.yf1{bottom:885.449495px;}
.y70{bottom:887.601994px;}
.y28{bottom:887.690494px;}
.y2a2{bottom:888.767493px;}
.yb7{bottom:888.992493px;}
.y2ee{bottom:893.967989px;}
.y9e{bottom:894.450989px;}
.y211{bottom:896.858487px;}
.y5c{bottom:897.852986px;}
.yef{bottom:899.256985px;}
.y141{bottom:900.840984px;}
.y2cc{bottom:902.036484px;}
.y11a{bottom:902.873483px;}
.ybd{bottom:903.072983px;}
.ybb{bottom:904.473982px;}
.y27d{bottom:906.984980px;}
.yb5{bottom:908.957479px;}
.yb3{bottom:910.302978px;}
.y2{bottom:912.198976px;}
.y27{bottom:912.795976px;}
.yba{bottom:914.037975px;}
.yec{bottom:915.336974px;}
.y2c2{bottom:916.980973px;}
.yed{bottom:918.474972px;}
.y9d{bottom:918.477972px;}
.yb4{bottom:918.521472px;}
.y5b{bottom:922.958469px;}
.yb9{bottom:923.004969px;}
.y9c{bottom:924.744967px;}
.y2cb{bottom:925.050967px;}
.y9b{bottom:928.728965px;}
.yee{bottom:928.845965px;}
.yb6{bottom:929.042464px;}
.ybc{bottom:931.736463px;}
.y27c{bottom:932.090462px;}
.y210{bottom:937.167959px;}
.y26{bottom:937.902958px;}
.y2c1{bottom:939.993957px;}
.yb8{bottom:944.823953px;}
.yf0{bottom:945.374453px;}
.y27b{bottom:957.195945px;}
.y20f{bottom:960.180942px;}
.y25{bottom:963.008441px;}
.y24{bottom:1068.018000px;}
.y23{bottom:1068.469500px;}
.y22{bottom:1085.950500px;}
.y21{bottom:1103.884500px;}
.h12{height:19.965036px;}
.h56{height:20.742119px;}
.h5d{height:21.439455px;}
.h47{height:22.936638px;}
.h4a{height:24.978711px;}
.h5e{height:25.578408px;}
.h51{height:25.728337px;}
.h4d{height:26.321928px;}
.h52{height:28.302393px;}
.h4e{height:28.955371px;}
.h54{height:29.356994px;}
.h4b{height:29.975203px;}
.h58{height:30.874776px;}
.h65{height:31.382078px;}
.h44{height:33.496743px;}
.h45{height:34.489008px;}
.h48{height:35.018379px;}
.h10{height:36.235546px;}
.h43{height:37.218354px;}
.h5{height:37.240066px;}
.h55{height:38.784106px;}
.h57{height:40.457821px;}
.h2c{height:40.648255px;}
.h7{height:41.484237px;}
.h4f{height:43.249494px;}
.h2d{height:43.508069px;}
.h13{height:44.831668px;}
.h6a{height:45.659668px;}
.h33{height:46.326057px;}
.h59{height:47.137885px;}
.hf{height:47.880542px;}
.h20{height:48.650066px;}
.h19{height:52.363389px;}
.h6f{height:53.072063px;}
.h6{height:53.200246px;}
.h8{height:53.200284px;}
.h6b{height:54.920061px;}
.h67{height:56.060060px;}
.h62{height:56.066060px;}
.h1a{height:56.954060px;}
.h21{height:57.452059px;}
.h63{height:58.052059px;}
.h66{height:59.939658px;}
.h30{height:60.605657px;}
.h1b{height:60.767657px;}
.h3e{height:61.436057px;}
.h31{height:62.432056px;}
.h6e{height:67.850052px;}
.h11{height:67.978236px;}
.h4{height:68.588286px;}
.h1d{height:69.136235px;}
.h60{height:69.142235px;}
.h38{height:71.108050px;}
.h3{height:71.684875px;}
.h3c{height:72.719649px;}
.h1c{height:72.890049px;}
.h26{height:76.516230px;}
.h6d{height:77.110230px;}
.h3b{height:77.351645px;}
.h32{height:79.472044px;}
.h68{height:83.156992px;}
.h61{height:84.326991px;}
.h69{height:85.118040px;}
.hd{height:85.265640px;}
.h9{height:85.271640px;}
.h5f{height:86.318989px;}
.h34{height:88.706988px;}
.h6c{height:91.388986px;}
.h36{height:91.694986px;}
.hc{height:94.198218px;}
.he{height:94.204218px;}
.h37{height:94.952033px;}
.h41{height:95.272217px;}
.hb{height:97.064032px;}
.ha{height:97.070032px;}
.h1e{height:101.207629px;}
.h2e{height:101.603628px;}
.h2f{height:101.609628px;}
.h27{height:104.246977px;}
.h3a{height:104.252977px;}
.h39{height:106.640975px;}
.h64{height:109.322973px;}
.h29{height:126.269611px;}
.h1f{height:126.275611px;}
.h2b{height:127.562960px;}
.h49{height:131.541800px;}
.h17{height:140.114952px;}
.h2a{height:140.120952px;}
.h24{height:145.250948px;}
.h16{height:145.256948px;}
.h15{height:145.496948px;}
.h22{height:158.048939px;}
.h40{height:160.436937px;}
.h3f{height:160.442937px;}
.h46{height:167.718608px;}
.h23{height:175.976926px;}
.h28{height:175.982926px;}
.h3d{height:181.118923px;}
.h35{height:195.464912px;}
.h5c{height:198.661931px;}
.h53{height:201.792889px;}
.h14{height:204.428906px;}
.h18{height:204.434906px;}
.h42{height:218.242130px;}
.h5a{height:241.495275px;}
.h50{height:249.445829px;}
.h4c{height:255.200917px;}
.h5b{height:262.697376px;}
.h25{height:286.334848px;}
.h2{height:1020.471720px;}
.h1{height:1177.500000px;}
.h0{height:1177.795500px;}
.w7{width:352.912418px;}
.w4{width:352.915429px;}
.w8{width:352.915982px;}
.w9{width:352.917682px;}
.w6{width:352.921605px;}
.w5{width:352.922073px;}
.w3{width:467.716856px;}
.w2{width:892.912620px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6b{left:8.494279px;}
.x6f{left:9.605551px;}
.x75{left:11.786818px;}
.x67{left:12.988157px;}
.x82{left:14.189271px;}
.x6e{left:16.898268px;}
.x6c{left:22.037897px;}
.x72{left:24.430190px;}
.x7f{left:26.090958px;}
.x74{left:27.153228px;}
.x76{left:28.166698px;}
.x78{left:29.288218px;}
.x7e{left:31.424714px;}
.xd{left:33.477096px;}
.x79{left:35.482059px;}
.x7d{left:36.758470px;}
.x73{left:38.726140px;}
.x70{left:44.739516px;}
.x85{left:68.603142px;}
.x1{left:69.732071px;}
.x22{left:71.218570px;}
.xa{left:72.793569px;}
.x3{left:73.887000px;}
.x8d{left:75.471067px;}
.x10{left:77.203566px;}
.x4{left:78.549065px;}
.x20{left:79.813564px;}
.x8a{left:80.908563px;}
.x86{left:82.290691px;}
.x7{left:84.676560px;}
.x8c{left:86.424059px;}
.x8b{left:88.500058px;}
.x5e{left:92.148055px;}
.x32{left:95.604053px;}
.x11{left:97.482051px;}
.x4f{left:98.523050px;}
.xe{left:99.628550px;}
.x5{left:100.965049px;}
.x88{left:102.697636px;}
.xc{left:105.267046px;}
.x9{left:106.614045px;}
.x49{left:107.683544px;}
.xb{left:110.106042px;}
.x12{left:111.949541px;}
.x33{left:113.038540px;}
.x24{left:114.552039px;}
.x6{left:115.909538px;}
.x41{left:117.789037px;}
.x8{left:121.053035px;}
.x30{left:122.179534px;}
.x59{left:127.255530px;}
.x37{left:131.283027px;}
.x48{left:132.369027px;}
.x25{left:134.332525px;}
.x23{left:136.767023px;}
.x52{left:138.063023px;}
.x26{left:144.295518px;}
.x27{left:146.982016px;}
.x28{left:152.158513px;}
.x51{left:153.999011px;}
.x42{left:156.381010px;}
.x89{left:161.267376px;}
.x34{left:162.391505px;}
.x13{left:163.422005px;}
.x31{left:166.065003px;}
.x77{left:168.053261px;}
.x6d{left:170.236332px;}
.x47{left:172.796998px;}
.x87{left:174.121944px;}
.x71{left:176.126103px;}
.x7c{left:177.347395px;}
.x35{left:179.825993px;}
.x15{left:182.650491px;}
.x14{left:183.776990px;}
.x54{left:188.029487px;}
.x3c{left:189.166487px;}
.x36{left:195.160482px;}
.x21{left:197.675981px;}
.x53{left:199.927479px;}
.x29{left:200.984978px;}
.x66{left:212.174850px;}
.x2a{left:215.929468px;}
.x3b{left:217.186467px;}
.x4a{left:218.191466px;}
.x90{left:221.479464px;}
.x8f{left:222.986963px;}
.x16{left:225.242961px;}
.x3d{left:230.468957px;}
.x2d{left:235.157954px;}
.x2c{left:236.282953px;}
.x55{left:238.184952px;}
.x50{left:240.166451px;}
.x68{left:246.119970px;}
.x19{left:252.241442px;}
.x3e{left:254.680440px;}
.x81{left:256.837439px;}
.x91{left:259.573437px;}
.x2e{left:261.128936px;}
.x5f{left:263.177934px;}
.x4b{left:264.838433px;}
.x60{left:268.159431px;}
.x6a{left:269.575310px;}
.x17{left:271.612428px;}
.x43{left:279.872923px;}
.x3f{left:282.379421px;}
.x61{left:285.593918px;}
.x46{left:286.913918px;}
.x4c{left:291.613414px;}
.x56{left:293.306913px;}
.x40{left:307.586903px;}
.x80{left:309.868401px;}
.x7b{left:312.655399px;}
.x4d{left:316.465397px;}
.x62{left:319.766894px;}
.x7a{left:321.622393px;}
.x57{left:322.786392px;}
.x38{left:324.347891px;}
.x44{left:326.239390px;}
.x84{left:327.794889px;}
.x64{left:331.484886px;}
.x83{left:336.760382px;}
.x2b{left:343.028878px;}
.x58{left:353.231871px;}
.x5a{left:357.845868px;}
.x65{left:361.838865px;}
.x39{left:370.714358px;}
.x5b{left:375.280355px;}
.x18{left:377.312854px;}
.xf{left:381.133351px;}
.x1a{left:388.934846px;}
.x1b{left:402.218836px;}
.x5c{left:412.967829px;}
.x1d{left:419.653324px;}
.x1c{left:423.257821px;}
.x5d{left:438.559311px;}
.x2{left:442.295808px;}
.x69{left:450.195919px;}
.x63{left:451.280802px;}
.x1e{left:458.561796px;}
.x45{left:461.125295px;}
.x4e{left:465.410792px;}
.x2f{left:470.003788px;}
.x8e{left:520.162253px;}
.x3a{left:797.434057px;}
.x1f{left:804.905552px;}
@media print{
.v19{vertical-align:-100.421262pt;}
.v32{vertical-align:-43.034636pt;}
.v31{vertical-align:-34.021309pt;}
.v24{vertical-align:-31.882644pt;}
.v2{vertical-align:-19.279986pt;}
.v2d{vertical-align:-16.031989pt;}
.v22{vertical-align:-13.285324pt;}
.vc{vertical-align:-11.157325pt;}
.v17{vertical-align:-9.594660pt;}
.v3{vertical-align:-7.967994pt;}
.v8{vertical-align:-5.311996pt;}
.v0{vertical-align:0.000000pt;}
.v25{vertical-align:2.655998pt;}
.v33{vertical-align:5.162663pt;}
.v13{vertical-align:6.197329pt;}
.v20{vertical-align:8.058661pt;}
.v34{vertical-align:9.594660pt;}
.va{vertical-align:13.135991pt;}
.v12{vertical-align:14.165323pt;}
.v16{vertical-align:15.349323pt;}
.v2c{vertical-align:17.854467pt;}
.v9{vertical-align:19.279986pt;}
.v1c{vertical-align:20.725319pt;}
.v7{vertical-align:21.935985pt;}
.v1{vertical-align:23.135984pt;}
.v2a{vertical-align:24.789316pt;}
.v21{vertical-align:26.714648pt;}
.v6{vertical-align:28.479980pt;}
.v1e{vertical-align:30.015979pt;}
.v35{vertical-align:31.530644pt;}
.v4{vertical-align:35.946641pt;}
.v14{vertical-align:36.895974pt;}
.v1d{vertical-align:39.610639pt;}
.v2f{vertical-align:43.039970pt;}
.v2e{vertical-align:47.967966pt;}
.v27{vertical-align:56.506627pt;}
.v5{vertical-align:58.389292pt;}
.v23{vertical-align:61.103957pt;}
.v36{vertical-align:63.487955pt;}
.v15{vertical-align:64.426621pt;}
.ve{vertical-align:72.394616pt;}
.v10{vertical-align:74.922614pt;}
.v28{vertical-align:77.045279pt;}
.v30{vertical-align:79.429277pt;}
.vf{vertical-align:91.674602pt;}
.v1f{vertical-align:95.642599pt;}
.v29{vertical-align:100.357263pt;}
.v11{vertical-align:106.799925pt;}
.vd{vertical-align:111.583921pt;}
.v18{vertical-align:122.741247pt;}
.v2b{vertical-align:124.869245pt;}
.v1a{vertical-align:138.677235pt;}
.v26{vertical-align:155.999890pt;}
.vb{vertical-align:163.967884pt;}
.v1b{vertical-align:200.325192pt;}
.ls4{letter-spacing:0.000000pt;}
.ls79{letter-spacing:0.000055pt;}
.ls6{letter-spacing:0.000058pt;}
.ls135{letter-spacing:0.000267pt;}
.ls179{letter-spacing:0.000483pt;}
.lsbf{letter-spacing:0.000668pt;}
.ls13a{letter-spacing:0.000681pt;}
.ls170{letter-spacing:0.000749pt;}
.ls58{letter-spacing:0.000996pt;}
.ls71{letter-spacing:0.000999pt;}
.ls8f{letter-spacing:0.001252pt;}
.ls3f{letter-spacing:0.001659pt;}
.ls130{letter-spacing:0.001799pt;}
.lsba{letter-spacing:0.001931pt;}
.ls17e{letter-spacing:0.001943pt;}
.lsca{letter-spacing:0.002079pt;}
.ls104{letter-spacing:0.002296pt;}
.ls9f{letter-spacing:0.002387pt;}
.lsd3{letter-spacing:0.002424pt;}
.ls14f{letter-spacing:0.002474pt;}
.lsc2{letter-spacing:0.002482pt;}
.lsff{letter-spacing:0.002509pt;}
.ls180{letter-spacing:0.002694pt;}
.lse9{letter-spacing:0.002827pt;}
.ls102{letter-spacing:0.002988pt;}
.lsc5{letter-spacing:0.003153pt;}
.ls5e{letter-spacing:0.003505pt;}
.ls138{letter-spacing:0.003521pt;}
.lsb5{letter-spacing:0.003716pt;}
.ls172{letter-spacing:0.003723pt;}
.ls54{letter-spacing:0.003892pt;}
.lsf2{letter-spacing:0.003945pt;}
.ls5a{letter-spacing:0.004349pt;}
.lscd{letter-spacing:0.004465pt;}
.lseb{letter-spacing:0.004581pt;}
.ls14d{letter-spacing:0.004901pt;}
.lsbc{letter-spacing:0.004991pt;}
.ls6c{letter-spacing:0.005223pt;}
.ls161{letter-spacing:0.005263pt;}
.ls6a{letter-spacing:0.005701pt;}
.ls16d{letter-spacing:0.006082pt;}
.ls4e{letter-spacing:0.006123pt;}
.lsa1{letter-spacing:0.006454pt;}
.ls7f{letter-spacing:0.006967pt;}
.ls155{letter-spacing:0.007231pt;}
.ls169{letter-spacing:0.007484pt;}
.lsc0{letter-spacing:0.008840pt;}
.ls33{letter-spacing:0.009429pt;}
.ls69{letter-spacing:0.009434pt;}
.ls132{letter-spacing:0.009927pt;}
.ls68{letter-spacing:0.011034pt;}
.ls6d{letter-spacing:0.011568pt;}
.ls148{letter-spacing:0.011979pt;}
.ls62{letter-spacing:0.013579pt;}
.ls46{letter-spacing:0.013724pt;}
.ls159{letter-spacing:0.014438pt;}
.ls186{letter-spacing:0.014445pt;}
.lsc8{letter-spacing:0.014574pt;}
.ls167{letter-spacing:0.015020pt;}
.lsc4{letter-spacing:0.015386pt;}
.ls10a{letter-spacing:0.015642pt;}
.ls5c{letter-spacing:0.015649pt;}
.ls13f{letter-spacing:0.016583pt;}
.ls134{letter-spacing:0.017155pt;}
.ls2e{letter-spacing:0.018331pt;}
.ls83{letter-spacing:0.018686pt;}
.lsc3{letter-spacing:0.018782pt;}
.ls57{letter-spacing:0.019954pt;}
.ls3c{letter-spacing:0.020802pt;}
.lsde{letter-spacing:0.021406pt;}
.lsdc{letter-spacing:0.022865pt;}
.ls146{letter-spacing:0.026563pt;}
.ls162{letter-spacing:0.425071pt;}
.ls17c{letter-spacing:0.451638pt;}
.ls152{letter-spacing:0.892646pt;}
.ls12c{letter-spacing:1.301775pt;}
.ls7a{letter-spacing:1.338969pt;}
.ls12f{letter-spacing:1.434613pt;}
.ls82{letter-spacing:1.487747pt;}
.ls125{letter-spacing:1.721548pt;}
.ls107{letter-spacing:1.859684pt;}
.lsac{letter-spacing:1.904680pt;}
.ls15{letter-spacing:1.908591pt;}
.lsa{letter-spacing:1.910013pt;}
.ls3b{letter-spacing:1.912818pt;}
.ls2a{letter-spacing:2.019086pt;}
.ls160{letter-spacing:2.109147pt;}
.ls15e{letter-spacing:2.268808pt;}
.ls110{letter-spacing:2.635445pt;}
.ls32{letter-spacing:2.651166pt;}
.ls9{letter-spacing:2.652910pt;}
.ls98{letter-spacing:2.653411pt;}
.ls188{letter-spacing:2.654179pt;}
.ls11f{letter-spacing:2.654184pt;}
.ls0{letter-spacing:2.655731pt;}
.ls52{letter-spacing:2.656499pt;}
.ls2{letter-spacing:2.656531pt;}
.lsf{letter-spacing:2.656687pt;}
.ls12{letter-spacing:2.658243pt;}
.ls122{letter-spacing:2.658584pt;}
.ls13c{letter-spacing:2.659512pt;}
.ls153{letter-spacing:2.659729pt;}
.ls1{letter-spacing:2.661065pt;}
.ls15b{letter-spacing:2.661091pt;}
.ls176{letter-spacing:2.662316pt;}
.ls163{letter-spacing:2.666619pt;}
.ls16a{letter-spacing:2.667650pt;}
.ls65{letter-spacing:2.806150pt;}
.ls1b{letter-spacing:2.816093pt;}
.ls8b{letter-spacing:2.922361pt;}
.lsf3{letter-spacing:2.951410pt;}
.ls89{letter-spacing:2.975494pt;}
.ls178{letter-spacing:3.550991pt;}
.ls133{letter-spacing:3.556324pt;}
.ls157{letter-spacing:3.557549pt;}
.ls127{letter-spacing:3.777841pt;}
.ls15c{letter-spacing:3.801404pt;}
.ls128{letter-spacing:3.969124pt;}
.ls3d{letter-spacing:3.990241pt;}
.ls29{letter-spacing:3.992004pt;}
.ls28{letter-spacing:3.997337pt;}
.ls4d{letter-spacing:4.303840pt;}
.ls16e{letter-spacing:4.309814pt;}
.ls16b{letter-spacing:4.315147pt;}
.lsa7{letter-spacing:5.260249pt;}
.lsb3{letter-spacing:5.313383pt;}
.lsd6{letter-spacing:5.315875pt;}
.lscf{letter-spacing:5.561098pt;}
.ls12e{letter-spacing:5.738454pt;}
.ls14{letter-spacing:5.897855pt;}
.ls150{letter-spacing:5.901780pt;}
.ls183{letter-spacing:5.904263pt;}
.ls48{letter-spacing:5.904474pt;}
.ls14c{letter-spacing:5.911074pt;}
.ls38{letter-spacing:6.019963pt;}
.lsd0{letter-spacing:6.322926pt;}
.ls88{letter-spacing:6.371941pt;}
.ls43{letter-spacing:6.376156pt;}
.ls8{letter-spacing:6.377062pt;}
.lsab{letter-spacing:6.377274pt;}
.ls101{letter-spacing:6.386511pt;}
.ls15f{letter-spacing:6.393966pt;}
.ls4b{letter-spacing:7.332468pt;}
.ls158{letter-spacing:7.376272pt;}
.ls14a{letter-spacing:7.381386pt;}
.ls47{letter-spacing:7.385602pt;}
.ls11a{letter-spacing:8.177351pt;}
.ls11b{letter-spacing:8.225172pt;}
.ls59{letter-spacing:8.556905pt;}
.lse8{letter-spacing:8.557407pt;}
.ls13{letter-spacing:8.560683pt;}
.ls12a{letter-spacing:8.591716pt;}
.ls45{letter-spacing:8.820216pt;}
.lsa6{letter-spacing:8.833998pt;}
.lsf6{letter-spacing:8.840406pt;}
.ls9d{letter-spacing:8.851939pt;}
.lsf8{letter-spacing:8.852978pt;}
.lsd2{letter-spacing:8.855406pt;}
.lsad{letter-spacing:8.857272pt;}
.lsfa{letter-spacing:8.859139pt;}
.ls27{letter-spacing:8.873349pt;}
.ls105{letter-spacing:9.029736pt;}
.lsbb{letter-spacing:9.085885pt;}
.lsf4{letter-spacing:9.096154pt;}
.ls12b{letter-spacing:9.112426pt;}
.ls121{letter-spacing:9.298393pt;}
.ls120{letter-spacing:9.670329pt;}
.ls39{letter-spacing:9.714667pt;}
.ls74{letter-spacing:9.896000pt;}
.lsf1{letter-spacing:10.353722pt;}
.lsd1{letter-spacing:10.359055pt;}
.ls8e{letter-spacing:10.733033pt;}
.lsd7{letter-spacing:10.786167pt;}
.ls115{letter-spacing:10.892435pt;}
.ls123{letter-spacing:11.009298pt;}
.lsa5{letter-spacing:11.211238pt;}
.lsbd{letter-spacing:11.214537pt;}
.lsb4{letter-spacing:11.476907pt;}
.lsb7{letter-spacing:11.506237pt;}
.ls187{letter-spacing:11.509901pt;}
.ls26{letter-spacing:11.511118pt;}
.ls66{letter-spacing:11.511570pt;}
.ls175{letter-spacing:11.520977pt;}
.ls129{letter-spacing:11.524805pt;}
.ls141{letter-spacing:11.636309pt;}
.ls55{letter-spacing:11.689442pt;}
.ls137{letter-spacing:11.778510pt;}
.lsce{letter-spacing:11.788847pt;}
.ls1c{letter-spacing:11.795710pt;}
.ls91{letter-spacing:11.802309pt;}
.ls7b{letter-spacing:11.803137pt;}
.ls8a{letter-spacing:11.806604pt;}
.ls93{letter-spacing:11.807643pt;}
.ls7c{letter-spacing:11.808470pt;}
.lsa4{letter-spacing:11.813485pt;}
.ls90{letter-spacing:11.815634pt;}
.ls96{letter-spacing:11.817414pt;}
.lsed{letter-spacing:11.821018pt;}
.ls51{letter-spacing:11.848844pt;}
.ls20{letter-spacing:11.955192pt;}
.ls11d{letter-spacing:11.955870pt;}
.ls11e{letter-spacing:11.957458pt;}
.ls124{letter-spacing:11.959911pt;}
.lsb8{letter-spacing:12.061379pt;}
.ls14e{letter-spacing:12.220781pt;}
.ls9c{letter-spacing:12.278842pt;}
.ls7e{letter-spacing:12.279457pt;}
.ls15a{letter-spacing:12.409651pt;}
.ls156{letter-spacing:12.416210pt;}
.ls8c{letter-spacing:12.486450pt;}
.ls7d{letter-spacing:12.546819pt;}
.lse2{letter-spacing:12.805253pt;}
.lsa2{letter-spacing:12.845331pt;}
.lsb0{letter-spacing:12.850664pt;}
.lsd8{letter-spacing:13.017788pt;}
.lsd5{letter-spacing:13.070922pt;}
.ls3{letter-spacing:13.282133pt;}
.ls30{letter-spacing:13.283457pt;}
.lsdd{letter-spacing:13.495993pt;}
.lsfd{letter-spacing:13.655394pt;}
.ls10f{letter-spacing:13.676739pt;}
.ls23{letter-spacing:13.708528pt;}
.ls111{letter-spacing:13.761662pt;}
.ls10e{letter-spacing:13.820201pt;}
.lsc{letter-spacing:14.133599pt;}
.lse3{letter-spacing:14.186732pt;}
.ls53{letter-spacing:14.399268pt;}
.ls21{letter-spacing:14.441871pt;}
.ls67{letter-spacing:14.460901pt;}
.lsb9{letter-spacing:14.464399pt;}
.lscb{letter-spacing:14.464491pt;}
.ls11{letter-spacing:14.465783pt;}
.ls6b{letter-spacing:14.466235pt;}
.ls184{letter-spacing:14.467504pt;}
.lsd{letter-spacing:14.505535pt;}
.ls35{letter-spacing:14.558669pt;}
.ls112{letter-spacing:14.608462pt;}
.ls34{letter-spacing:14.611803pt;}
.ls113{letter-spacing:14.613796pt;}
.ls1f{letter-spacing:14.615414pt;}
.ls174{letter-spacing:14.645802pt;}
.ls116{letter-spacing:14.664937pt;}
.ls87{letter-spacing:14.771205pt;}
.ls114{letter-spacing:15.090007pt;}
.ls50{letter-spacing:15.143141pt;}
.ls22{letter-spacing:15.196275pt;}
.lsf5{letter-spacing:15.206026pt;}
.lsea{letter-spacing:15.207594pt;}
.lsf9{letter-spacing:15.213735pt;}
.ls142{letter-spacing:15.220316pt;}
.lsae{letter-spacing:15.227134pt;}
.ls9e{letter-spacing:15.232468pt;}
.lse6{letter-spacing:15.243494pt;}
.ls10d{letter-spacing:15.249409pt;}
.ls75{letter-spacing:15.302543pt;}
.ls131{letter-spacing:15.358983pt;}
.ls143{letter-spacing:15.364316pt;}
.ls173{letter-spacing:15.370874pt;}
.ls3a{letter-spacing:15.408810pt;}
.ls13d{letter-spacing:15.419157pt;}
.ls13e{letter-spacing:15.419231pt;}
.ls140{letter-spacing:15.422170pt;}
.ls165{letter-spacing:15.439869pt;}
.ls168{letter-spacing:15.440490pt;}
.ls86{letter-spacing:15.780747pt;}
.ls37{letter-spacing:15.799996pt;}
.ls95{letter-spacing:15.936490pt;}
.ls10{letter-spacing:15.937782pt;}
.lsbe{letter-spacing:15.938234pt;}
.ls78{letter-spacing:15.940149pt;}
.ls4f{letter-spacing:15.941823pt;}
.lse{letter-spacing:16.046416pt;}
.lsaa{letter-spacing:16.099550pt;}
.lsdb{letter-spacing:16.124900pt;}
.ls166{letter-spacing:16.340315pt;}
.ls19{letter-spacing:16.471487pt;}
.ls1a{letter-spacing:16.524621pt;}
.ls145{letter-spacing:16.836315pt;}
.ls84{letter-spacing:16.960489pt;}
.ls72{letter-spacing:17.058233pt;}
.ls73{letter-spacing:17.061823pt;}
.lsc1{letter-spacing:17.118533pt;}
.lsa3{letter-spacing:17.237800pt;}
.lse0{letter-spacing:17.243133pt;}
.ls36{letter-spacing:17.277328pt;}
.ls25{letter-spacing:17.390592pt;}
.ls76{letter-spacing:17.397822pt;}
.ls6e{letter-spacing:17.481030pt;}
.ls109{letter-spacing:17.693565pt;}
.ls63{letter-spacing:18.032806pt;}
.lsfe{letter-spacing:18.118636pt;}
.ls7{letter-spacing:18.181799pt;}
.lse5{letter-spacing:18.186814pt;}
.ls1d{letter-spacing:18.198430pt;}
.ls85{letter-spacing:18.295994pt;}
.ls18{letter-spacing:18.437439pt;}
.ls17d{letter-spacing:18.584121pt;}
.lsdf{letter-spacing:18.595865pt;}
.ls77{letter-spacing:18.733327pt;}
.ls126{letter-spacing:18.915643pt;}
.ls31{letter-spacing:18.983993pt;}
.lsc9{letter-spacing:19.127565pt;}
.ls2d{letter-spacing:19.836445pt;}
.ls6f{letter-spacing:19.872052pt;}
.ls2f{letter-spacing:21.175992pt;}
.lsb2{letter-spacing:22.156807pt;}
.ls24{letter-spacing:22.180821pt;}
.ls2c{letter-spacing:22.316208pt;}
.lsd4{letter-spacing:23.155862pt;}
.ls16c{letter-spacing:23.497643pt;}
.ls164{letter-spacing:23.910223pt;}
.ls10c{letter-spacing:24.016491pt;}
.ls17b{letter-spacing:24.816461pt;}
.lscc{letter-spacing:25.079167pt;}
.ls10b{letter-spacing:25.181322pt;}
.ls17f{letter-spacing:25.564727pt;}
.ls147{letter-spacing:25.900893pt;}
.ls16f{letter-spacing:26.452308pt;}
.lsee{letter-spacing:26.564966pt;}
.ls5{letter-spacing:26.566915pt;}
.lsf7{letter-spacing:26.567872pt;}
.ls80{letter-spacing:26.568142pt;}
.ls49{letter-spacing:26.568487pt;}
.lsa8{letter-spacing:26.586975pt;}
.lsc7{letter-spacing:27.417056pt;}
.ls9b{letter-spacing:27.778701pt;}
.ls108{letter-spacing:27.781039pt;}
.ls92{letter-spacing:28.493835pt;}
.lsb6{letter-spacing:29.059858pt;}
.lsfb{letter-spacing:31.225249pt;}
.ls97{letter-spacing:32.133992pt;}
.ls40{letter-spacing:32.136232pt;}
.ls14b{letter-spacing:33.282221pt;}
.ls5b{letter-spacing:35.863553pt;}
.lsaf{letter-spacing:37.123911pt;}
.lsa0{letter-spacing:37.129245pt;}
.ls8d{letter-spacing:41.788975pt;}
.ls5d{letter-spacing:44.722213pt;}
.ls60{letter-spacing:47.671544pt;}
.ls182{letter-spacing:52.124708pt;}
.lsf0{letter-spacing:53.106670pt;}
.ls41{letter-spacing:53.130280pt;}
.ls42{letter-spacing:53.131108pt;}
.ls4a{letter-spacing:53.133829pt;}
.ls13b{letter-spacing:55.787203pt;}
.ls9a{letter-spacing:55.788872pt;}
.ls139{letter-spacing:56.939141pt;}
.ls4c{letter-spacing:57.437669pt;}
.ls181{letter-spacing:58.962382pt;}
.ls64{letter-spacing:62.965767pt;}
.ls44{letter-spacing:65.474703pt;}
.ls191{letter-spacing:66.418198pt;}
.ls18e{letter-spacing:74.855954pt;}
.ls18b{letter-spacing:85.439197pt;}
.ls61{letter-spacing:89.755082pt;}
.ls117{letter-spacing:98.288403pt;}
.ls196{letter-spacing:100.051000pt;}
.ls103{letter-spacing:122.898547pt;}
.lsd9{letter-spacing:124.525294pt;}
.ls18f{letter-spacing:127.541932pt;}
.ls193{letter-spacing:130.263034pt;}
.ls192{letter-spacing:134.802578pt;}
.ls18d{letter-spacing:141.148360pt;}
.ls194{letter-spacing:147.074439pt;}
.ls18a{letter-spacing:156.425993pt;}
.ls11c{letter-spacing:156.708651pt;}
.ls195{letter-spacing:157.010465pt;}
.ls189{letter-spacing:157.382402pt;}
.ls190{letter-spacing:157.966874pt;}
.ls18c{letter-spacing:159.932826pt;}
.ls197{letter-spacing:162.695785pt;}
.ls119{letter-spacing:223.721123pt;}
.ls106{letter-spacing:230.813354pt;}
.ls118{letter-spacing:238.206446pt;}
.ls12d{letter-spacing:312.661493pt;}
.ls81{letter-spacing:1128.772188pt;}
.lsda{letter-spacing:1145.102843pt;}
.ls100{letter-spacing:1195.342808pt;}
.ls15d{letter-spacing:1383.870581pt;}
.ls185{letter-spacing:1413.519258pt;}
.lse1{letter-spacing:1568.246709pt;}
.lsb1{letter-spacing:1589.232831pt;}
.ls171{letter-spacing:1601.719280pt;}
.lsa9{letter-spacing:1706.254447pt;}
.lsfc{letter-spacing:1730.102595pt;}
.ls177{letter-spacing:1748.827990pt;}
.ls94{letter-spacing:1755.911000pt;}
.lsec{letter-spacing:1839.932196pt;}
.ls5f{letter-spacing:1846.094348pt;}
.ls151{letter-spacing:1848.960774pt;}
.ls99{letter-spacing:1891.537571pt;}
.lsc6{letter-spacing:1915.254464pt;}
.ls56{letter-spacing:1951.408394pt;}
.ls17a{letter-spacing:1979.302015pt;}
.ls70{letter-spacing:2022.612277pt;}
.ls136{letter-spacing:2040.424878pt;}
.ls154{letter-spacing:2042.200877pt;}
.ls2b{letter-spacing:2047.012503pt;}
.ls16{letter-spacing:2076.587446pt;}
.ls144{letter-spacing:2189.432773pt;}
.lse7{letter-spacing:2211.000355pt;}
.lsb{letter-spacing:2225.430008pt;}
.ls149{letter-spacing:2262.926054pt;}
.lsef{letter-spacing:2334.264584pt;}
.lse4{letter-spacing:2334.271219pt;}
.ls3e{letter-spacing:2394.814228pt;}
.ls17{letter-spacing:2437.322448pt;}
.ls1e{letter-spacing:2461.849611pt;}
.wse2{word-spacing:-319.586381pt;}
.ws82{word-spacing:-53.133829pt;}
.ws6e{word-spacing:-42.066053pt;}
.ws68{word-spacing:-41.338119pt;}
.ws6f{word-spacing:-36.524194pt;}
.ws4c{word-spacing:-34.611376pt;}
.ws4e{word-spacing:-32.063824pt;}
.wsb7{word-spacing:-29.425515pt;}
.ws89{word-spacing:-28.118342pt;}
.ws6b{word-spacing:-26.556288pt;}
.ws8e{word-spacing:-24.252321pt;}
.ws8f{word-spacing:-23.400138pt;}
.ws65{word-spacing:-22.815666pt;}
.ws73{word-spacing:-21.327919pt;}
.ws5c{word-spacing:-19.415101pt;}
.wsd7{word-spacing:-18.448013pt;}
.ws71{word-spacing:-18.352425pt;}
.ws6c{word-spacing:-17.927354pt;}
.ws85{word-spacing:-15.235035pt;}
.ws8d{word-spacing:-14.977462pt;}
.ws8c{word-spacing:-14.972328pt;}
.ws50{word-spacing:-14.760578pt;}
.ws74{word-spacing:-14.392309pt;}
.wsf1{word-spacing:-13.410978pt;}
.ws4d{word-spacing:-13.283457pt;}
.wsd1{word-spacing:-11.955192pt;}
.wsef{word-spacing:-11.232491pt;}
.wsa2{word-spacing:-10.626793pt;}
.ws91{word-spacing:-9.073466pt;}
.wsda{word-spacing:-7.977978pt;}
.wsaf{word-spacing:-7.481660pt;}
.ws51{word-spacing:-5.940362pt;}
.wsa7{word-spacing:-5.926780pt;}
.ws88{word-spacing:-5.921144pt;}
.ws5e{word-spacing:-5.887228pt;}
.wsb5{word-spacing:-4.293213pt;}
.ws57{word-spacing:-2.964868pt;}
.ws54{word-spacing:-2.911734pt;}
.wsab{word-spacing:-2.816093pt;}
.wsb6{word-spacing:-2.762959pt;}
.wsa3{word-spacing:-2.507957pt;}
.wsd{word-spacing:-2.444156pt;}
.ws43{word-spacing:-2.231621pt;}
.ws104{word-spacing:-2.199755pt;}
.wsde{word-spacing:-2.151934pt;}
.wsbf{word-spacing:-2.072219pt;}
.wsdb{word-spacing:-2.008472pt;}
.ws3d{word-spacing:-1.965952pt;}
.wsdc{word-spacing:-1.960651pt;}
.ws29{word-spacing:-1.912818pt;}
.ws5b{word-spacing:-1.859684pt;}
.ws7e{word-spacing:-1.806550pt;}
.ws7f{word-spacing:-1.753416pt;}
.ws33{word-spacing:-1.700283pt;}
.wse5{word-spacing:-1.647149pt;}
.wsea{word-spacing:-1.594015pt;}
.ws56{word-spacing:-1.540881pt;}
.ws8a{word-spacing:-1.487747pt;}
.ws8b{word-spacing:-1.434613pt;}
.wsa4{word-spacing:-1.381480pt;}
.wsb2{word-spacing:-1.328346pt;}
.wsdd{word-spacing:-1.275212pt;}
.wsf8{word-spacing:-1.243340pt;}
.wsa1{word-spacing:-1.222078pt;}
.ws61{word-spacing:-1.168944pt;}
.ws24{word-spacing:-1.115810pt;}
.ws114{word-spacing:-1.052057pt;}
.ws14{word-spacing:-1.009543pt;}
.ws3{word-spacing:-0.903275pt;}
.wsfc{word-spacing:-0.812953pt;}
.wsa6{word-spacing:-0.797007pt;}
.ws2b{word-spacing:-0.743874pt;}
.ws32{word-spacing:-0.690740pt;}
.wsfe{word-spacing:-0.669491pt;}
.ws5f{word-spacing:-0.637606pt;}
.wsc6{word-spacing:-0.626979pt;}
.ws28{word-spacing:-0.531338pt;}
.ws116{word-spacing:-0.478208pt;}
.ws37{word-spacing:-0.478204pt;}
.wseb{word-spacing:-0.425071pt;}
.ws31{word-spacing:-0.371937pt;}
.wsfd{word-spacing:-0.334745pt;}
.ws3a{word-spacing:-0.265669pt;}
.ws2a{word-spacing:-0.212535pt;}
.ws15{word-spacing:-0.159401pt;}
.wsfb{word-spacing:-0.095642pt;}
.ws75{word-spacing:-0.056319pt;}
.ws17{word-spacing:-0.053134pt;}
.ws9e{word-spacing:-0.047821pt;}
.ws9c{word-spacing:-0.044111pt;}
.wse1{word-spacing:-0.037194pt;}
.wsce{word-spacing:-0.001154pt;}
.ws0{word-spacing:0.000000pt;}
.wsd6{word-spacing:0.001060pt;}
.ws22{word-spacing:0.053134pt;}
.wsc8{word-spacing:0.063761pt;}
.wsf6{word-spacing:0.095642pt;}
.ws10{word-spacing:0.106268pt;}
.ws9d{word-spacing:0.143462pt;}
.ws58{word-spacing:0.159401pt;}
.wsa9{word-spacing:0.191283pt;}
.ws41{word-spacing:0.212535pt;}
.wsaa{word-spacing:0.239104pt;}
.ws1d{word-spacing:0.265669pt;}
.ws21{word-spacing:0.318803pt;}
.wsa0{word-spacing:0.425071pt;}
.ws80{word-spacing:0.478204pt;}
.ws42{word-spacing:0.531338pt;}
.ws102{word-spacing:0.573849pt;}
.ws40{word-spacing:0.584472pt;}
.ws35{word-spacing:0.637606pt;}
.ws10e{word-spacing:0.669491pt;}
.ws87{word-spacing:0.690740pt;}
.ws3b{word-spacing:0.743874pt;}
.wsb{word-spacing:0.797007pt;}
.wsc3{word-spacing:0.850141pt;}
.wsfa{word-spacing:0.860774pt;}
.wsc{word-spacing:0.903275pt;}
.wsf9{word-spacing:0.908595pt;}
.ws3f{word-spacing:0.956409pt;}
.ws60{word-spacing:1.009543pt;}
.ws1f{word-spacing:1.062677pt;}
.ws5d{word-spacing:1.115810pt;}
.wsa5{word-spacing:1.168944pt;}
.wsc9{word-spacing:1.195519pt;}
.ws11{word-spacing:1.222078pt;}
.wsca{word-spacing:1.243340pt;}
.ws2f{word-spacing:1.275212pt;}
.ws5{word-spacing:1.328346pt;}
.ws38{word-spacing:1.381480pt;}
.ws13{word-spacing:1.434613pt;}
.ws34{word-spacing:1.487747pt;}
.wsc7{word-spacing:1.540881pt;}
.ws94{word-spacing:1.594015pt;}
.ws106{word-spacing:1.625906pt;}
.wsc0{word-spacing:1.647149pt;}
.ws53{word-spacing:1.700283pt;}
.ws8{word-spacing:1.753416pt;}
.wsb4{word-spacing:1.806550pt;}
.ws7{word-spacing:1.859684pt;}
.ws1b{word-spacing:1.912818pt;}
.ws3e{word-spacing:1.965952pt;}
.ws69{word-spacing:2.019086pt;}
.ws16{word-spacing:2.072219pt;}
.ws2c{word-spacing:2.125353pt;}
.ws4{word-spacing:2.178487pt;}
.ws110{word-spacing:2.199755pt;}
.ws107{word-spacing:2.247576pt;}
.ws26{word-spacing:2.284755pt;}
.ws101{word-spacing:2.295397pt;}
.ws19{word-spacing:2.337888pt;}
.ws30{word-spacing:2.391022pt;}
.ws10d{word-spacing:2.391038pt;}
.ws117{word-spacing:2.438859pt;}
.wscf{word-spacing:2.486680pt;}
.ws96{word-spacing:2.497290pt;}
.wsd0{word-spacing:2.534501pt;}
.ws48{word-spacing:2.550424pt;}
.wsf7{word-spacing:2.582321pt;}
.ws99{word-spacing:2.603558pt;}
.wsf4{word-spacing:2.725784pt;}
.ws1a{word-spacing:2.762959pt;}
.ws112{word-spacing:2.773604pt;}
.ws1e{word-spacing:2.869227pt;}
.wsff{word-spacing:2.869246pt;}
.ws23{word-spacing:2.922361pt;}
.wsbe{word-spacing:2.975494pt;}
.wse4{word-spacing:3.028628pt;}
.ws27{word-spacing:3.134896pt;}
.wsb9{word-spacing:3.145523pt;}
.ws47{word-spacing:3.188030pt;}
.ws3c{word-spacing:3.241164pt;}
.ws6a{word-spacing:3.347431pt;}
.ws108{word-spacing:3.443095pt;}
.ws12{word-spacing:3.506833pt;}
.ws10f{word-spacing:3.538737pt;}
.wse{word-spacing:3.559967pt;}
.ws6{word-spacing:3.613100pt;}
.ws10a{word-spacing:3.634378pt;}
.ws44{word-spacing:3.666234pt;}
.ws2e{word-spacing:3.772502pt;}
.ws105{word-spacing:3.825661pt;}
.ws9f{word-spacing:3.873482pt;}
.ws52{word-spacing:3.878770pt;}
.ws1{word-spacing:3.931903pt;}
.ws2d{word-spacing:3.985037pt;}
.ws109{word-spacing:4.016944pt;}
.ws62{word-spacing:4.091305pt;}
.ws55{word-spacing:4.144439pt;}
.ws111{word-spacing:4.160407pt;}
.ws113{word-spacing:4.208227pt;}
.ws46{word-spacing:4.250706pt;}
.ws2{word-spacing:4.303840pt;}
.wsf3{word-spacing:4.351690pt;}
.wsc2{word-spacing:4.356974pt;}
.wsf2{word-spacing:4.399510pt;}
.wsa{word-spacing:4.463242pt;}
.ws39{word-spacing:4.516375pt;}
.wsb8{word-spacing:4.622643pt;}
.wsb1{word-spacing:4.728911pt;}
.ws115{word-spacing:4.734256pt;}
.wse7{word-spacing:4.835178pt;}
.ws100{word-spacing:4.877718pt;}
.wsf{word-spacing:4.888312pt;}
.ws1c{word-spacing:5.047714pt;}
.ws10c{word-spacing:5.164643pt;}
.ws4b{word-spacing:5.167730pt;}
.ws25{word-spacing:5.313383pt;}
.ws45{word-spacing:5.525918pt;}
.ws118{word-spacing:5.642850pt;}
.ws49{word-spacing:5.685320pt;}
.wse8{word-spacing:5.738454pt;}
.wsc5{word-spacing:5.855348pt;}
.ws36{word-spacing:5.897855pt;}
.ws63{word-spacing:6.004123pt;}
.ws4f{word-spacing:6.057257pt;}
.ws10b{word-spacing:6.073237pt;}
.wsb3{word-spacing:6.163524pt;}
.ws103{word-spacing:6.168879pt;}
.wsad{word-spacing:6.216658pt;}
.ws20{word-spacing:6.269792pt;}
.wse9{word-spacing:6.535461pt;}
.ws64{word-spacing:6.588595pt;}
.ws4a{word-spacing:6.641729pt;}
.wsc4{word-spacing:7.332468pt;}
.wsbd{word-spacing:7.810673pt;}
.ws97{word-spacing:7.863807pt;}
.ws98{word-spacing:7.916941pt;}
.wscd{word-spacing:8.129530pt;}
.ws7d{word-spacing:8.408137pt;}
.wse6{word-spacing:8.448279pt;}
.wsd8{word-spacing:9.261200pt;}
.ws86{word-spacing:10.318590pt;}
.ws90{word-spacing:11.803670pt;}
.ws79{word-spacing:11.809004pt;}
.ws18{word-spacing:13.230333pt;}
.ws9a{word-spacing:13.537647pt;}
.ws9b{word-spacing:13.577347pt;}
.ws93{word-spacing:13.590425pt;}
.ws67{word-spacing:14.425915pt;}
.ws6d{word-spacing:14.436111pt;}
.wsf5{word-spacing:14.585334pt;}
.ws7c{word-spacing:14.771205pt;}
.ws7b{word-spacing:19.489087pt;}
.ws77{word-spacing:19.494421pt;}
.ws70{word-spacing:21.214772pt;}
.ws95{word-spacing:24.420308pt;}
.ws7a{word-spacing:25.233420pt;}
.ws5a{word-spacing:27.990751pt;}
.ws78{word-spacing:38.373251pt;}
.ws72{word-spacing:38.931634pt;}
.ws9{word-spacing:39.850372pt;}
.ws81{word-spacing:41.561281pt;}
.ws76{word-spacing:42.570824pt;}
.ws66{word-spacing:55.748553pt;}
.wsd9{word-spacing:65.444553pt;}
.wsd3{word-spacing:67.857667pt;}
.wsf0{word-spacing:69.621018pt;}
.wsd5{word-spacing:71.778970pt;}
.wsee{word-spacing:73.197163pt;}
.wse0{word-spacing:74.361292pt;}
.wsac{word-spacing:74.834477pt;}
.wsb0{word-spacing:77.080303pt;}
.wsae{word-spacing:78.858660pt;}
.wsa8{word-spacing:90.753816pt;}
.wsdf{word-spacing:96.932693pt;}
.wse3{word-spacing:98.108735pt;}
.wsd4{word-spacing:101.236562pt;}
.wsc1{word-spacing:103.650292pt;}
.wsd2{word-spacing:113.143933pt;}
.ws84{word-spacing:129.159587pt;}
.wsed{word-spacing:159.720291pt;}
.ws92{word-spacing:182.491976pt;}
.wsec{word-spacing:192.185060pt;}
.wscb{word-spacing:223.609903pt;}
.wscc{word-spacing:224.901064pt;}
.ws83{word-spacing:273.154152pt;}
.ws59{word-spacing:308.070554pt;}
.wsbb{word-spacing:320.781700pt;}
.wsbc{word-spacing:347.370046pt;}
.wsba{word-spacing:355.308293pt;}
._d{margin-left:-2804.991882pt;}
._38{margin-left:-2804.041002pt;}
._71{margin-left:-2796.079499pt;}
._5{margin-left:-2780.211438pt;}
._4{margin-left:-2779.238248pt;}
._6b{margin-left:-2772.100214pt;}
._2{margin-left:-2754.203192pt;}
._33{margin-left:-2653.038908pt;}
._6e{margin-left:-2640.620478pt;}
._14{margin-left:-2202.002622pt;}
._a{margin-left:-2190.266532pt;}
._2e{margin-left:-2168.858736pt;}
._73{margin-left:-2137.934974pt;}
._b{margin-left:-2133.648450pt;}
._9{margin-left:-1855.364007pt;}
._59{margin-left:-1794.540324pt;}
._2a{margin-left:-1756.560478pt;}
._3f{margin-left:-1724.031733pt;}
._5b{margin-left:-1518.227827pt;}
._70{margin-left:-1503.718247pt;}
._32{margin-left:-1462.959789pt;}
._34{margin-left:-1417.031346pt;}
._43{margin-left:-1306.410417pt;}
._6f{margin-left:-1304.573671pt;}
._6{margin-left:-1264.626936pt;}
._6d{margin-left:-1077.362433pt;}
._1b{margin-left:-1072.019932pt;}
._5e{margin-left:-899.348686pt;}
._39{margin-left:-802.978889pt;}
._6c{margin-left:-787.392142pt;}
._1c{margin-left:-750.174632pt;}
._30{margin-left:-692.234692pt;}
._5f{margin-left:-655.583920pt;}
._6a{margin-left:-591.080639pt;}
._35{margin-left:-589.081706pt;}
._26{margin-left:-577.588136pt;}
._20{margin-left:-562.778184pt;}
._3{margin-left:-470.996167pt;}
._61{margin-left:-449.019281pt;}
._1e{margin-left:-417.003726pt;}
._69{margin-left:-375.049483pt;}
._5c{margin-left:-312.661493pt;}
._19{margin-left:-232.189159pt;}
._28{margin-left:-30.764531pt;}
._2c{margin-left:-29.754944pt;}
._2f{margin-left:-28.586000pt;}
._37{margin-left:-26.444884pt;}
._15{margin-left:-24.866632pt;}
._27{margin-left:-23.857089pt;}
._18{margin-left:-22.688145pt;}
._2d{margin-left:-17.712415pt;}
._40{margin-left:-15.031345pt;}
._1f{margin-left:-12.592718pt;}
._1a{margin-left:-6.051728pt;}
._c{margin-left:-4.782045pt;}
._1{margin-left:-3.828665pt;}
._8{margin-left:-2.651163pt;}
._0{margin-left:-1.652677pt;}
._f{width:1.912818pt;}
._12{width:2.816093pt;}
._21{width:3.985037pt;}
._29{width:5.100848pt;}
._11{width:6.298536pt;}
._72{width:7.486072pt;}
._1d{width:8.677318pt;}
._68{width:9.664828pt;}
._16{width:10.839301pt;}
._17{width:12.592718pt;}
._31{width:13.708528pt;}
._10{width:14.986769pt;}
._7{width:16.317614pt;}
._36{width:17.478000pt;}
._13{width:20.238460pt;}
._60{width:24.801249pt;}
._23{width:27.156915pt;}
._3e{width:28.532866pt;}
._2b{width:32.273402pt;}
._24{width:35.599666pt;}
._e{width:53.133829pt;}
._4f{width:63.774209pt;}
._53{width:71.874612pt;}
._45{width:72.831027pt;}
._41{width:77.039254pt;}
._50{width:78.189957pt;}
._62{width:93.303004pt;}
._58{width:95.361972pt;}
._3b{width:99.441735pt;}
._3d{width:102.426039pt;}
._3c{width:104.789160pt;}
._54{width:108.170573pt;}
._5a{width:109.653017pt;}
._66{width:110.672238pt;}
._3a{width:112.979240pt;}
._52{width:114.769839pt;}
._55{width:117.113057pt;}
._4d{width:119.285206pt;}
._56{width:121.082180pt;}
._57{width:129.908806pt;}
._4a{width:134.567636pt;}
._63{width:137.292286pt;}
._65{width:140.485844pt;}
._42{width:141.702495pt;}
._64{width:146.436833pt;}
._51{width:149.286868pt;}
._46{width:155.800056pt;}
._47{width:162.208039pt;}
._48{width:164.455615pt;}
._67{width:170.028253pt;}
._49{width:180.361884pt;}
._4c{width:184.731620pt;}
._4e{width:194.155315pt;}
._44{width:199.508237pt;}
._4b{width:217.518620pt;}
._5d{width:236.961764pt;}
._25{width:1584.180762pt;}
._22{width:2146.430381pt;}
.fsd{font-size:23.707119pt;}
.fs9{font-size:26.566915pt;}
.fs18{font-size:27.699555pt;}
.fsc{font-size:29.633899pt;}
.fs12{font-size:29.926638pt;}
.fs8{font-size:31.880511pt;}
.fs17{font-size:31.911913pt;}
.fse{font-size:32.272237pt;}
.fs19{font-size:33.240297pt;}
.fs13{font-size:33.240746pt;}
.fs10{font-size:34.007659pt;}
.fs14{font-size:36.566399pt;}
.fs3{font-size:37.193574pt;}
.fs11{font-size:37.410040pt;}
.fs15{font-size:37.928933pt;}
.fsf{font-size:38.727653pt;}
.fsb{font-size:39.699844pt;}
.fs16{font-size:39.889892pt;}
.fs2{font-size:42.507170pt;}
.fsa{font-size:44.110642pt;}
.fs5{font-size:45.429301pt;}
.fs7{font-size:47.820766pt;}
.fs4{font-size:53.133829pt;}
.fs6{font-size:53.133867pt;}
.fs1{font-size:63.761022pt;}
.fs0{font-size:91.815402pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.001227pt;}
.y238{bottom:1.524126pt;}
.y185{bottom:1.759513pt;}
.y223{bottom:2.991742pt;}
.y197{bottom:5.042663pt;}
.y1bf{bottom:5.817276pt;}
.y1a9{bottom:5.951489pt;}
.y1e2{bottom:7.190694pt;}
.y25b{bottom:8.379325pt;}
.y184{bottom:11.174449pt;}
.y237{bottom:14.197477pt;}
.y222{bottom:15.665093pt;}
.y1e3{bottom:16.297589pt;}
.y25c{bottom:16.360458pt;}
.y196{bottom:16.741642pt;}
.y1be{bottom:17.244068pt;}
.y1a8{bottom:17.641914pt;}
.y186{bottom:18.289672pt;}
.y18b{bottom:24.772088pt;}
.y198{bottom:24.809902pt;}
.y1c0{bottom:25.554462pt;}
.y1aa{bottom:26.144042pt;}
.y23d{bottom:32.189481pt;}
.y187{bottom:32.875107pt;}
.y228{bottom:33.657096pt;}
.y239{bottom:34.916370pt;}
.y1af{bottom:38.259573pt;}
.y263{bottom:39.472852pt;}
.y25d{bottom:40.226230pt;}
.y199{bottom:42.116322pt;}
.y224{bottom:44.006778pt;}
.y246{bottom:45.811048pt;}
.y188{bottom:47.460542pt;}
.y1ab{bottom:48.940370pt;}
.y20{bottom:49.484072pt;}
.y1e4{bottom:51.009279pt;}
.y1e8{bottom:53.633882pt;}
.y16f{bottom:55.643052pt;}
.y23a{bottom:57.198615pt;}
.y189{bottom:62.045976pt;}
.y25e{bottom:64.092001pt;}
.y225{bottom:67.461868pt;}
.y1c1{bottom:70.118951pt;}
.y16b{bottom:70.320624pt;}
.y1ac{bottom:71.736699pt;}
.y18a{bottom:76.631411pt;}
.y19a{bottom:76.729162pt;}
.y23b{bottom:79.480859pt;}
.y247{bottom:80.091423pt;}
.y17f{bottom:84.965945pt;}
.y252{bottom:85.268047pt;}
.y1e5{bottom:85.720969pt;}
.ye9{bottom:86.201379pt;}
.y174{bottom:86.709379pt;}
.y183{bottom:87.049579pt;}
.y1e1{bottom:87.880469pt;}
.y25f{bottom:87.957495pt;}
.y1f{bottom:89.334710pt;}
.y226{bottom:90.916626pt;}
.y16e{bottom:91.686121pt;}
.y6f{bottom:92.714708pt;}
.y1cc{bottom:93.306707pt;}
.y9a{bottom:94.242707pt;}
.y1ad{bottom:94.533028pt;}
.yea{bottom:95.312039pt;}
.ye8{bottom:95.313373pt;}
.y47{bottom:97.256038pt;}
.y99{bottom:97.784038pt;}
.y27a{bottom:98.082704pt;}
.y30e{bottom:99.116037pt;}
.y119{bottom:100.362703pt;}
.y23c{bottom:101.763103pt;}
.y1e0{bottom:101.764908pt;}
.y180{bottom:104.413191pt;}
.y173{bottom:105.237366pt;}
.y171{bottom:106.027194pt;}
.y251{bottom:107.584031pt;}
.yeb{bottom:109.396029pt;}
.y19b{bottom:111.342001pt;}
.y1e{bottom:111.650695pt;}
.y260{bottom:111.823266pt;}
.y227{bottom:114.371716pt;}
.y248{bottom:114.371799pt;}
.y1fd{bottom:114.590692pt;}
.y1c2{bottom:114.683439pt;}
.y6e{bottom:115.030692pt;}
.y1cb{bottom:115.622692pt;}
.y20e{bottom:115.981358pt;}
.y1ae{bottom:117.329357pt;}
.y30d{bottom:119.572022pt;}
.y46{bottom:119.573356pt;}
.y1e6{bottom:120.432660pt;}
.y98{bottom:120.544022pt;}
.y256{bottom:120.794060pt;}
.y118{bottom:122.678687pt;}
.y259{bottom:123.752613pt;}
.y181{bottom:123.860438pt;}
.y97{bottom:124.085352pt;}
.y2c0{bottom:124.089352pt;}
.y279{bottom:124.384019pt;}
.y172{bottom:125.693351pt;}
.y257{bottom:125.839619pt;}
.y16d{bottom:126.200554pt;}
.y2ed{bottom:126.745351pt;}
.ye7{bottom:127.120017pt;}
.y1bb{bottom:127.149030pt;}
.y1a2{bottom:128.169570pt;}
.y194{bottom:128.510683pt;}
.y21c{bottom:128.707229pt;}
.y250{bottom:129.900015pt;}
.y25a{bottom:130.002211pt;}
.y1dd{bottom:130.909348pt;}
.y231{bottom:131.363231pt;}
.y236{bottom:132.537490pt;}
.y1b7{bottom:133.286679pt;}
.y240{bottom:133.693466pt;}
.yb2{bottom:133.966679pt;}
.y1d{bottom:133.968012pt;}
.y255{bottom:134.873611pt;}
.y261{bottom:135.689037pt;}
.y1fc{bottom:136.906677pt;}
.y1ca{bottom:137.938676pt;}
.y20d{bottom:138.297342pt;}
.y245{bottom:139.614621pt;}
.y22f{bottom:139.982675pt;}
.y30c{bottom:140.029341pt;}
.y221{bottom:140.237901pt;}
.y258{bottom:140.585915pt;}
.y45{bottom:141.889340pt;}
.y254{bottom:142.490071pt;}
.y1a7{bottom:142.835739pt;}
.y182{bottom:143.307684pt;}
.y170{bottom:143.678598pt;}
.y2bf{bottom:146.405337pt;}
.y2ec{bottom:147.202669pt;}
.y232{bottom:148.623172pt;}
.y21d{bottom:149.105341pt;}
.y1df{bottom:150.361354pt;}
.y6d{bottom:150.630667pt;}
.y193{bottom:150.828000pt;}
.y1a3{bottom:151.125313pt;}
.y241{bottom:151.643917pt;}
.y1dc{bottom:153.225332pt;}
.ye6{bottom:154.549331pt;}
.y1e7{bottom:155.144667pt;}
.y264{bottom:155.294510pt;}
.y16a{bottom:155.449224pt;}
.y1b6{bottom:155.602664pt;}
.y13f{bottom:155.991997pt;}
.y1c{bottom:156.283996pt;}
.y262{bottom:159.554808pt;}
.y96{bottom:159.685327pt;}
.y278{bottom:159.983994pt;}
.y1c9{bottom:160.255994pt;}
.y30b{bottom:160.485327pt;}
.y16c{bottom:160.714986pt;}
.y22e{bottom:162.298659pt;}
.y44{bottom:164.205324pt;}
.y140{bottom:165.103990pt;}
.y233{bottom:165.883113pt;}
.y24f{bottom:166.450656pt;}
.y2eb{bottom:167.658655pt;}
.y2be{bottom:168.722654pt;}
.y21e{bottom:169.503785pt;}
.y242{bottom:169.594368pt;}
.y1fb{bottom:169.849320pt;}
.y117{bottom:171.482652pt;}
.y1bc{bottom:172.025159pt;}
.y192{bottom:173.143984pt;}
.y1a4{bottom:174.081057pt;}
.y13e{bottom:174.090650pt;}
.y1db{bottom:175.541316pt;}
.y1b5{bottom:177.918648pt;}
.y1b{bottom:178.599981pt;}
.ye5{bottom:179.181314pt;}
.y115{bottom:180.594646pt;}
.y30a{bottom:180.942646pt;}
.y1c8{bottom:182.571978pt;}
.y234{bottom:183.143053pt;}
.y20c{bottom:184.169310pt;}
.y13d{bottom:184.365310pt;}
.y22d{bottom:184.614643pt;}
.y6c{bottom:186.230642pt;}
.y43{bottom:186.521308pt;}
.y243{bottom:187.544820pt;}
.y2ea{bottom:188.114641pt;}
.y116{bottom:189.581306pt;}
.y21f{bottom:189.901897pt;}
.y2bd{bottom:191.038639pt;}
.y1fa{bottom:192.165304pt;}
.ye2{bottom:193.474637pt;}
.y24e{bottom:193.599970pt;}
.y20b{bottom:195.038636pt;}
.y95{bottom:195.285302pt;}
.y191{bottom:195.459969pt;}
.y277{bottom:195.583969pt;}
.y5a{bottom:196.023968pt;}
.ye3{bottom:196.263968pt;}
.y1a5{bottom:197.036801pt;}
.y1da{bottom:197.858634pt;}
.y13c{bottom:198.851966pt;}
.y1b4{bottom:200.234632pt;}
.y235{bottom:200.402994pt;}
.y1a{bottom:200.915965pt;}
.y309{bottom:201.398631pt;}
.y1c7{bottom:204.887962pt;}
.y6b{bottom:205.049295pt;}
.ye4{bottom:205.482628pt;}
.y244{bottom:205.495271pt;}
.y22c{bottom:206.930627pt;}
.y2e9{bottom:208.571959pt;}
.y42{bottom:208.837293pt;}
.y20a{bottom:209.915959pt;}
.y220{bottom:210.300008pt;}
.y2bc{bottom:213.354623pt;}
.y24d{bottom:214.055956pt;}
.y1bd{bottom:216.901287pt;}
.y190{bottom:217.775953pt;}
.y59{bottom:218.341286pt;}
.y114{bottom:218.806619pt;}
.y2a1{bottom:219.815952pt;}
.y1a6{bottom:219.992545pt;}
.y308{bottom:221.854617pt;}
.y1b3{bottom:222.550616pt;}
.y19{bottom:223.231949pt;}
.y1f9{bottom:225.107948pt;}
.y1c6{bottom:227.203946pt;}
.y2e8{bottom:229.027945pt;}
.y22b{bottom:229.246612pt;}
.y94{bottom:230.885277pt;}
.y41{bottom:231.153277pt;}
.y1d9{bottom:233.457275pt;}
.ye1{bottom:233.835942pt;}
.y209{bottom:233.939942pt;}
.y13b{bottom:234.451941pt;}
.y24c{bottom:234.513275pt;}
.y2bb{bottom:235.670607pt;}
.y18f{bottom:240.091937pt;}
.y113{bottom:241.122603pt;}
.y307{bottom:242.311936pt;}
.y276{bottom:244.466601pt;}
.y18{bottom:245.547933pt;}
.y2a0{bottom:246.303933pt;}
.y1f8{bottom:247.425265pt;}
.y2e7{bottom:249.485264pt;}
.y1c5{bottom:249.519931pt;}
.y22a{bottom:251.563929pt;}
.y93{bottom:253.201261pt;}
.y40{bottom:253.470594pt;}
.y58{bottom:253.939927pt;}
.y208{bottom:254.397260pt;}
.y29d{bottom:255.415926pt;}
.y2ba{bottom:257.986591pt;}
.y1b2{bottom:258.150591pt;}
.ydf{bottom:260.739923pt;}
.y29f{bottom:260.945256pt;}
.y29e{bottom:261.118589pt;}
.y18e{bottom:262.407922pt;}
.y306{bottom:262.767921pt;}
.y24b{bottom:263.059921pt;}
.y275{bottom:266.782585pt;}
.y17{bottom:267.863918pt;}
.y1d8{bottom:269.057250pt;}
.y13a{bottom:269.247917pt;}
.y2e6{bottom:269.941250pt;}
.y110{bottom:273.030581pt;}
.y207{bottom:274.853246pt;}
.ydc{bottom:275.031913pt;}
.y92{bottom:275.517246pt;}
.y3f{bottom:275.786579pt;}
.y111{bottom:276.218578pt;}
.y10f{bottom:276.535912pt;}
.ydd{bottom:277.822577pt;}
.y2b9{bottom:280.302576pt;}
.y1f7{bottom:280.367909pt;}
.y305{bottom:283.225240pt;}
.y1c4{bottom:285.119905pt;}
.y10b{bottom:285.330572pt;}
.yde{bottom:287.041237pt;}
.y10c{bottom:288.119903pt;}
.y10a{bottom:288.835903pt;}
.y274{bottom:289.099903pt;}
.y229{bottom:289.531902pt;}
.y16{bottom:290.181235pt;}
.y2e5{bottom:290.397235pt;}
.y1b1{bottom:290.874568pt;}
.y112{bottom:291.338568pt;}
.y1d7{bottom:291.373234pt;}
.y139{bottom:291.565234pt;}
.y29c{bottom:293.266566pt;}
.y29b{bottom:293.998566pt;}
.y206{bottom:295.309232pt;}
.y10e{bottom:295.346565pt;}
.y3e{bottom:298.102563pt;}
.y29a{bottom:298.579896pt;}
.y10d{bottom:298.851896pt;}
.y24a{bottom:298.890562pt;}
.y18d{bottom:300.377228pt;}
.ye0{bottom:301.733227pt;}
.y2b8{bottom:302.618560pt;}
.y1f6{bottom:302.683893pt;}
.y57{bottom:302.823893pt;}
.yb1{bottom:303.463893pt;}
.y304{bottom:303.681226pt;}
.y90{bottom:308.101223pt;}
.y1b0{bottom:309.402555pt;}
.y2e4{bottom:310.854554pt;}
.y273{bottom:311.415887pt;}
.y15{bottom:312.497220pt;}
.y1d6{bottom:313.690552pt;}
.ydb{bottom:314.469218pt;}
.y134{bottom:315.369217pt;}
.y205{bottom:315.766551pt;}
.y21b{bottom:319.287775pt;}
.y3d{bottom:320.418547pt;}
.y18c{bottom:320.833214pt;}
.y91{bottom:322.394546pt;}
.y303{bottom:324.137211pt;}
.y2b7{bottom:324.935877pt;}
.y56{bottom:325.139877pt;}
.y1c3{bottom:327.558542pt;}
.y109{bottom:329.890541pt;}
.y249{bottom:330.622540pt;}
.y2e3{bottom:331.310540pt;}
.y133{bottom:331.530539pt;}
.y272{bottom:333.731871pt;}
.y299{bottom:334.179871pt;}
.y8f{bottom:334.402537pt;}
.y14{bottom:334.813204pt;}
.y137{bottom:335.435870pt;}
.y1d5{bottom:336.006536pt;}
.y204{bottom:336.222536pt;}
.yb0{bottom:338.141201pt;}
.y1f5{bottom:338.283868pt;}
.y1a1{bottom:339.159761pt;}
.y132{bottom:340.617200pt;}
.y3c{bottom:342.734531pt;}
.y2b6{bottom:343.967864pt;}
.y302{bottom:344.594530pt;}
.y2b5{bottom:347.251862pt;}
.y55{bottom:347.455862pt;}
.y131{bottom:349.729193pt;}
.yda{bottom:350.069193pt;}
.y17e{bottom:350.590419pt;}
.y2e2{bottom:351.767858pt;}
.y108{bottom:352.206525pt;}
.y135{bottom:352.518525pt;}
.y271{bottom:356.047855pt;}
.y203{bottom:356.679855pt;}
.y13{bottom:357.129188pt;}
.y1ba{bottom:357.314415pt;}
.y23f{bottom:360.378412pt;}
.yaf{bottom:360.457186pt;}
.y298{bottom:360.481186pt;}
.y297{bottom:360.665186pt;}
.y136{bottom:361.737185pt;}
.y8e{bottom:364.769183pt;}
.y3b{bottom:365.050516pt;}
.y2b4{bottom:369.567846pt;}
.y54{bottom:369.771846pt;}
.y2e1{bottom:372.223844pt;}
.y1d4{bottom:373.399843pt;}
.y1f4{bottom:373.883843pt;}
.y107{bottom:374.522509pt;}
.y169{bottom:375.817175pt;}
.y202{bottom:377.135841pt;}
.y270{bottom:378.363840pt;}
.y12{bottom:379.445172pt;}
.yae{bottom:382.773170pt;}
.y296{bottom:383.498503pt;}
.y130{bottom:384.053169pt;}
.yd9{bottom:384.646502pt;}
.y301{bottom:385.507835pt;}
.y138{bottom:386.001168pt;}
.y295{bottom:386.782500pt;}
.y8d{bottom:387.085167pt;}
.y3a{bottom:387.366500pt;}
.y12d{bottom:389.234499pt;}
.y2b3{bottom:391.883830pt;}
.y53{bottom:392.087830pt;}
.y2e0{bottom:392.679830pt;}
.y1f3{bottom:396.199827pt;}
.y168{bottom:398.133159pt;}
.y12c{bottom:398.346492pt;}
.y1d3{bottom:400.471824pt;}
.y26f{bottom:400.679824pt;}
.y12e{bottom:401.135824pt;}
.y201{bottom:405.682487pt;}
.y300{bottom:405.963820pt;}
.yd8{bottom:406.962486pt;}
.y39{bottom:409.683818pt;}
.y106{bottom:410.122484pt;}
.y12f{bottom:410.354484pt;}
.y2df{bottom:413.137148pt;}
.yad{bottom:413.242482pt;}
.y2b2{bottom:414.199814pt;}
.y11{bottom:415.045147pt;}
.y87{bottom:416.309146pt;}
.y1f2{bottom:418.515811pt;}
.y8b{bottom:420.390477pt;}
.y167{bottom:420.449143pt;}
.y1d2{bottom:420.929143pt;}
.y294{bottom:422.381142pt;}
.y26e{bottom:422.995808pt;}
.y2ff{bottom:426.419806pt;}
.y38{bottom:431.999802pt;}
.y86{bottom:432.470468pt;}
.y2de{bottom:433.593134pt;}
.yd7{bottom:435.123800pt;}
.y2b1{bottom:436.515799pt;}
.y8a{bottom:436.551799pt;}
.y12b{bottom:436.842465pt;}
.y1f1{bottom:440.831796pt;}
.y1d1{bottom:441.385129pt;}
.y200{bottom:441.513128pt;}
.y52{bottom:442.698461pt;}
.y166{bottom:442.766461pt;}
.yac{bottom:443.713127pt;}
.y293{bottom:444.697126pt;}
.y84{bottom:444.743793pt;}
.y26d{bottom:445.313126pt;}
.y105{bottom:445.722459pt;}
.y12a{bottom:445.954459pt;}
.y2fe{bottom:446.877125pt;}
.y89{bottom:448.825123pt;}
.y7f{bottom:448.826457pt;}
.y129{bottom:449.459790pt;}
.y8c{bottom:449.923789pt;}
.yd6{bottom:453.221120pt;}
.y2dd{bottom:454.050453pt;}
.y37{bottom:454.315786pt;}
.y2b0{bottom:458.831783pt;}
.y81{bottom:461.923781pt;}
.y88{bottom:463.118447pt;}
.y1f0{bottom:463.147780pt;}
.y10{bottom:463.515780pt;}
.y51{bottom:465.014445pt;}
.y165{bottom:465.082445pt;}
.y7d{bottom:465.907778pt;}
.y83{bottom:465.918445pt;}
.yab{bottom:466.029111pt;}
.y292{bottom:467.014444pt;}
.y2fd{bottom:467.333110pt;}
.y26c{bottom:467.629110pt;}
.y1d0{bottom:469.931775pt;}
.y80{bottom:470.425108pt;}
.y103{bottom:473.989106pt;}
.y2dc{bottom:474.506439pt;}
.y7e{bottom:475.126438pt;}
.y1ff{bottom:475.389105pt;}
.y36{bottom:476.631770pt;}
.y164{bottom:478.286436pt;}
.yd5{bottom:479.834435pt;}
.y128{bottom:480.949101pt;}
.y2af{bottom:481.149101pt;}
.y290{bottom:482.358433pt;}
.y82{bottom:484.017098pt;}
.y1ef{bottom:485.463764pt;}
.yf{bottom:485.831764pt;}
.y28f{bottom:487.075763pt;}
.y163{bottom:487.398429pt;}
.y2fc{bottom:487.790429pt;}
.yaa{bottom:488.345095pt;}
.y6a{bottom:489.227761pt;}
.y7c{bottom:489.818428pt;}
.y26b{bottom:489.945094pt;}
.y102{bottom:490.150427pt;}
.y28e{bottom:491.655760pt;}
.y291{bottom:491.657093pt;}
.y85{bottom:493.803758pt;}
.y2db{bottom:494.962424pt;}
.y1fe{bottom:495.845090pt;}
.y50{bottom:497.957089pt;}
.y69{bottom:498.339755pt;}
.y35{bottom:498.947755pt;}
.y101{bottom:499.530421pt;}
.y100{bottom:503.035752pt;}
.y127{bottom:503.265085pt;}
.yd4{bottom:505.711750pt;}
.y1cf{bottom:505.762416pt;}
.y1ee{bottom:507.781082pt;}
.ye{bottom:508.147748pt;}
.y2fb{bottom:508.246415pt;}
.ya9{bottom:510.661080pt;}
.y26a{bottom:512.261079pt;}
.y7b{bottom:512.762412pt;}
.y104{bottom:512.838411pt;}
.y2ae{bottom:514.078411pt;}
.y2da{bottom:515.419743pt;}
.yff{bottom:519.801073pt;}
.y4f{bottom:520.274406pt;}
.y34{bottom:521.263739pt;}
.y28d{bottom:523.971737pt;}
.y17d{bottom:526.046402pt;}
.y161{bottom:526.915735pt;}
.y28c{bottom:527.255735pt;}
.yd3{bottom:528.027734pt;}
.y2fa{bottom:528.702400pt;}
.y1ed{bottom:530.097066pt;}
.yd{bottom:530.463732pt;}
.y28b{bottom:530.613066pt;}
.ya8{bottom:532.978397pt;}
.y15e{bottom:533.238397pt;}
.y68{bottom:533.938397pt;}
.y126{bottom:534.401063pt;}
.y269{bottom:534.577063pt;}
.y2d9{bottom:535.875729pt;}
.yfe{bottom:535.962395pt;}
.y15d{bottom:537.223728pt;}
.y1ce{bottom:540.374392pt;}
.yfd{bottom:543.349057pt;}
.y33{bottom:543.581056pt;}
.yd2{bottom:543.718390pt;}
.y2ad{bottom:544.537056pt;}
.y15a{bottom:545.858388pt;}
.yfc{bottom:547.357054pt;}
.y7a{bottom:548.362386pt;}
.y2f9{bottom:549.159719pt;}
.ycb{bottom:549.299719pt;}
.y159{bottom:549.363719pt;}
.yfb{bottom:550.862385pt;}
.y1ec{bottom:552.413050pt;}
.yc{bottom:552.781050pt;}
.y160{bottom:553.166383pt;}
.y4e{bottom:553.217050pt;}
.y28a{bottom:553.557049pt;}
.ya7{bottom:555.294382pt;}
.y67{bottom:556.255714pt;}
.y2d8{bottom:556.333047pt;}
.y268{bottom:556.893047pt;}
.y289{bottom:557.062380pt;}
.y15c{bottom:561.134377pt;}
.yd1{bottom:561.815710pt;}
.y2ca{bottom:562.177043pt;}
.y1cd{bottom:562.690376pt;}
.ycf{bottom:563.061043pt;}
.y15b{bottom:565.119708pt;}
.y125{bottom:565.538374pt;}
.y32{bottom:565.897041pt;}
.y2ac{bottom:566.853040pt;}
.yc9{bottom:567.046373pt;}
.y21a{bottom:567.390373pt;}
.yc7{bottom:568.242372pt;}
.y2f8{bottom:569.615705pt;}
.y17c{bottom:570.678371pt;}
.y15f{bottom:571.502370pt;}
.yce{bottom:571.562370pt;}
.y1eb{bottom:574.729034pt;}
.yb{bottom:575.097034pt;}
.y162{bottom:575.307701pt;}
.y4d{bottom:575.533034pt;}
.yc8{bottom:575.547701pt;}
.y288{bottom:576.315700pt;}
.y2d7{bottom:576.789033pt;}
.ya6{bottom:577.610366pt;}
.ycd{bottom:579.533031pt;}
.y287{bottom:579.858364pt;}
.yfa{bottom:580.465030pt;}
.y2c9{bottom:582.634362pt;}
.y66{bottom:582.743695pt;}
.y286{bottom:583.215695pt;}
.y79{bottom:583.962361pt;}
.yca{bottom:584.899694pt;}
.y158{bottom:585.815693pt;}
.yd0{bottom:587.294359pt;}
.y31{bottom:588.213025pt;}
.y2ab{bottom:589.169024pt;}
.y219{bottom:589.706357pt;}
.y2f7{bottom:590.073024pt;}
.y65{bottom:591.854356pt;}
.y155{bottom:592.138356pt;}
.y1a0{bottom:592.381022pt;}
.y267{bottom:592.493022pt;}
.y17b{bottom:592.994355pt;}
.y124{bottom:593.201021pt;}
.y154{bottom:596.122353pt;}
.y2d6{bottom:597.245019pt;}
.ya{bottom:597.413018pt;}
.ycc{bottom:598.927684pt;}
.ya5{bottom:599.926350pt;}
.y285{bottom:602.617015pt;}
.yf9{bottom:602.781015pt;}
.y2c8{bottom:603.090348pt;}
.y151{bottom:604.757013pt;}
.y1b9{bottom:605.129013pt;}
.y122{bottom:605.501013pt;}
.y284{bottom:606.159679pt;}
.y78{bottom:606.278346pt;}
.y150{bottom:608.262344pt;}
.y123{bottom:608.290344pt;}
.y4c{bottom:608.475677pt;}
.y1ea{bottom:610.329009pt;}
.y30{bottom:610.529009pt;}
.y2aa{bottom:611.486342pt;}
.y157{bottom:612.302341pt;}
.yc6{bottom:612.534341pt;}
.y19f{bottom:614.697006pt;}
.y64{bottom:615.231673pt;}
.y23e{bottom:617.315671pt;}
.y2d5{bottom:617.702337pt;}
.y9{bottom:619.729003pt;}
.y153{bottom:620.033003pt;}
.y2c7{bottom:623.546333pt;}
.y152{bottom:624.018333pt;}
.y63{bottom:624.343666pt;}
.yf8{bottom:625.098332pt;}
.y218{bottom:625.306332pt;}
.y77{bottom:628.594330pt;}
.y156{bottom:630.400995pt;}
.y4b{bottom:630.791662pt;}
.y2f6{bottom:630.984995pt;}
.y2f{bottom:632.844993pt;}
.yc5{bottom:633.342326pt;}
.y2a9{bottom:633.802326pt;}
.y1b8{bottom:634.886219pt;}
.y266{bottom:634.931659pt;}
.ya4{bottom:635.526325pt;}
.y19e{bottom:637.012991pt;}
.y2d4{bottom:638.158323pt;}
.y283{bottom:641.759654pt;}
.y8{bottom:642.044987pt;}
.yc4{bottom:642.454320pt;}
.y121{bottom:643.014320pt;}
.y2c6{bottom:644.003652pt;}
.y230{bottom:647.071543pt;}
.yf7{bottom:647.414317pt;}
.y76{bottom:647.626316pt;}
.y75{bottom:650.910314pt;}
.y2f5{bottom:651.442314pt;}
.y14f{bottom:651.780980pt;}
.y1e9{bottom:652.606313pt;}
.y2e{bottom:655.160978pt;}
.y265{bottom:655.388978pt;}
.y2a8{bottom:656.118310pt;}
.y2d3{bottom:658.615642pt;}
.y62{bottom:659.943641pt;}
.y4a{bottom:663.735638pt;}
.y282{bottom:664.075638pt;}
.y17a{bottom:664.194305pt;}
.y2c5{bottom:664.459638pt;}
.y120{bottom:665.038304pt;}
.y217{bottom:666.820969pt;}
.yf6{bottom:669.730301pt;}
.y2f4{bottom:671.898299pt;}
.yc3{bottom:672.372966pt;}
.y19d{bottom:672.612965pt;}
.y74{bottom:673.226298pt;}
.y11f{bottom:674.150298pt;}
.y2d{bottom:677.478295pt;}
.y2a7{bottom:678.434295pt;}
.y2d2{bottom:679.071628pt;}
.y7{bottom:680.302293pt;}
.y216{bottom:681.698292pt;}
.y14d{bottom:682.092959pt;}
.y61{bottom:682.259625pt;}
.y1de{bottom:682.362185pt;}
.ya3{bottom:683.486291pt;}
.y14a{bottom:684.086291pt;}
.y2c4{bottom:684.916957pt;}
.y253{bottom:685.144850pt;}
.y49{bottom:686.051623pt;}
.y281{bottom:686.391622pt;}
.y179{bottom:686.510289pt;}
.y149{bottom:687.591622pt;}
.y14b{bottom:689.267620pt;}
.y2f3{bottom:692.355618pt;}
.yc2{bottom:694.688950pt;}
.y73{bottom:695.543616pt;}
.y145{bottom:698.379614pt;}
.y2d1{bottom:699.527613pt;}
.y2c{bottom:699.794280pt;}
.yf5{bottom:700.226279pt;}
.y2a6{bottom:700.750279pt;}
.y146{bottom:701.168945pt;}
.y144{bottom:701.884945pt;}
.y60{bottom:704.575610pt;}
.ya2{bottom:705.802275pt;}
.y6{bottom:706.375608pt;}
.y215{bottom:707.291608pt;}
.y280{bottom:708.707607pt;}
.y178{bottom:708.826273pt;}
.y11e{bottom:709.144940pt;}
.yf4{bottom:709.338273pt;}
.y148{bottom:710.387605pt;}
.y14c{bottom:712.379604pt;}
.y2f2{bottom:712.811604pt;}
.y147{bottom:713.892936pt;}
.y19c{bottom:715.051602pt;}
.yc1{bottom:717.004934pt;}
.y72{bottom:717.859600pt;}
.y48{bottom:718.994266pt;}
.y2d0{bottom:719.984932pt;}
.y2b{bottom:722.110264pt;}
.y5{bottom:722.808930pt;}
.y2a5{bottom:723.066263pt;}
.y14e{bottom:725.079595pt;}
.y5f{bottom:726.891594pt;}
.y214{bottom:727.747593pt;}
.ya1{bottom:728.118260pt;}
.y177{bottom:731.142257pt;}
.y11d{bottom:731.168924pt;}
.y2f1{bottom:733.267589pt;}
.yc0{bottom:739.322252pt;}
.y71{bottom:740.175584pt;}
.y11c{bottom:740.280918pt;}
.y2cf{bottom:740.440918pt;}
.y27f{bottom:744.307581pt;}
.y2a{bottom:744.426248pt;}
.y195{bottom:744.807474pt;}
.y2a4{bottom:745.382247pt;}
.y143{bottom:745.488914pt;}
.yf3{bottom:746.624913pt;}
.y213{bottom:748.204912pt;}
.y2c3{bottom:750.004911pt;}
.ya0{bottom:750.434244pt;}
.y4{bottom:752.395576pt;}
.y5e{bottom:753.379575pt;}
.y176{bottom:753.459575pt;}
.y2f0{bottom:753.724908pt;}
.y2ce{bottom:760.898236pt;}
.ybf{bottom:761.638236pt;}
.y5d{bottom:762.491569pt;}
.y29{bottom:766.742232pt;}
.y2a3{bottom:767.699565pt;}
.y27e{bottom:770.608896pt;}
.y11b{bottom:771.418229pt;}
.yf2{bottom:771.790229pt;}
.y9f{bottom:772.751561pt;}
.y2ef{bottom:774.180894pt;}
.y175{bottom:775.775559pt;}
.y212{bottom:776.751559pt;}
.y142{bottom:778.431557pt;}
.y2cd{bottom:781.354222pt;}
.y3{bottom:781.619555pt;}
.ybe{bottom:784.634220pt;}
.yf1{bottom:787.066218pt;}
.y70{bottom:788.979550pt;}
.y28{bottom:789.058217pt;}
.y2a2{bottom:790.015549pt;}
.yb7{bottom:790.215549pt;}
.y2ee{bottom:794.638213pt;}
.y9e{bottom:795.067546pt;}
.y211{bottom:797.207544pt;}
.y5c{bottom:798.091544pt;}
.yef{bottom:799.339543pt;}
.y141{bottom:800.747542pt;}
.y2cc{bottom:801.810208pt;}
.y11a{bottom:802.554207pt;}
.ybd{bottom:802.731540pt;}
.ybb{bottom:803.976873pt;}
.y27d{bottom:806.208871pt;}
.yb5{bottom:807.962203pt;}
.yb3{bottom:809.158202pt;}
.y2{bottom:810.843535pt;}
.y27{bottom:811.374201pt;}
.yba{bottom:812.478200pt;}
.yec{bottom:813.632866pt;}
.y2c2{bottom:815.094198pt;}
.yed{bottom:816.422197pt;}
.y9d{bottom:816.424864pt;}
.yb4{bottom:816.463531pt;}
.y5b{bottom:820.407528pt;}
.yb9{bottom:820.448861pt;}
.y9c{bottom:821.995527pt;}
.y2cb{bottom:822.267526pt;}
.y9b{bottom:825.536858pt;}
.yee{bottom:825.640857pt;}
.yb6{bottom:825.815524pt;}
.ybc{bottom:828.210189pt;}
.y27c{bottom:828.524855pt;}
.y210{bottom:833.038186pt;}
.y26{bottom:833.691518pt;}
.y2c1{bottom:835.550184pt;}
.yb8{bottom:839.843514pt;}
.yf0{bottom:840.332847pt;}
.y27b{bottom:850.840840pt;}
.y20f{bottom:853.494171pt;}
.y25{bottom:856.007503pt;}
.y24{bottom:949.349333pt;}
.y23{bottom:949.750667pt;}
.y22{bottom:965.289333pt;}
.y21{bottom:981.230667pt;}
.h12{height:17.746699pt;}
.h56{height:18.437439pt;}
.h5d{height:19.057294pt;}
.h47{height:20.388123pt;}
.h4a{height:22.203299pt;}
.h5e{height:22.736363pt;}
.h51{height:22.869633pt;}
.h4d{height:23.397269pt;}
.h52{height:25.157683pt;}
.h4e{height:25.738108pt;}
.h54{height:26.095106pt;}
.h4b{height:26.644625pt;}
.h58{height:27.444246pt;}
.h65{height:27.895180pt;}
.h44{height:29.774883pt;}
.h45{height:30.656896pt;}
.h48{height:31.127448pt;}
.h10{height:32.209375pt;}
.h43{height:33.082982pt;}
.h5{height:33.102281pt;}
.h55{height:34.474761pt;}
.h57{height:35.962508pt;}
.h2c{height:36.131783pt;}
.h7{height:36.874877pt;}
.h4f{height:38.443994pt;}
.h2d{height:38.673839pt;}
.h13{height:39.850372pt;}
.h6a{height:40.586371pt;}
.h33{height:41.178718pt;}
.h59{height:41.900342pt;}
.hf{height:42.560482pt;}
.h20{height:43.244503pt;}
.h19{height:46.545234pt;}
.h6f{height:47.175167pt;}
.h6{height:47.289108pt;}
.h8{height:47.289141pt;}
.h6b{height:48.817832pt;}
.h67{height:49.831165pt;}
.h62{height:49.836498pt;}
.h1a{height:50.625831pt;}
.h21{height:51.068497pt;}
.h63{height:51.601830pt;}
.h66{height:53.279696pt;}
.h30{height:53.871695pt;}
.h1b{height:54.015695pt;}
.h3e{height:54.609828pt;}
.h31{height:55.495161pt;}
.h6e{height:60.311157pt;}
.h11{height:60.425099pt;}
.h4{height:60.967365pt;}
.h1d{height:61.454431pt;}
.h60{height:61.459765pt;}
.h38{height:63.207155pt;}
.h3{height:63.719889pt;}
.h3c{height:64.639688pt;}
.h1c{height:64.791154pt;}
.h26{height:68.014427pt;}
.h6d{height:68.542426pt;}
.h3b{height:68.757018pt;}
.h32{height:70.641817pt;}
.h68{height:73.917326pt;}
.h61{height:74.957325pt;}
.h69{height:75.660480pt;}
.hd{height:75.791680pt;}
.h9{height:75.797013pt;}
.h5f{height:76.727991pt;}
.h34{height:78.850656pt;}
.h6c{height:81.234654pt;}
.h36{height:81.506654pt;}
.hc{height:83.731749pt;}
.he{height:83.737082pt;}
.h37{height:84.401807pt;}
.h41{height:84.686415pt;}
.hb{height:86.279139pt;}
.ha{height:86.284472pt;}
.h1e{height:89.962337pt;}
.h2e{height:90.314336pt;}
.h2f{height:90.319670pt;}
.h27{height:92.663979pt;}
.h3a{height:92.669313pt;}
.h39{height:94.791978pt;}
.h64{height:97.175976pt;}
.h29{height:112.239654pt;}
.h1f{height:112.244987pt;}
.h2b{height:113.389298pt;}
.h49{height:116.926045pt;}
.h17{height:124.546624pt;}
.h2a{height:124.551957pt;}
.h24{height:129.111954pt;}
.h16{height:129.117287pt;}
.h15{height:129.330620pt;}
.h22{height:140.487946pt;}
.h40{height:142.610611pt;}
.h3f{height:142.615944pt;}
.h46{height:149.083207pt;}
.h23{height:156.423934pt;}
.h28{height:156.429268pt;}
.h3d{height:160.994598pt;}
.h35{height:173.746589pt;}
.h5c{height:176.588383pt;}
.h53{height:179.371457pt;}
.h14{height:181.714583pt;}
.h18{height:181.719917pt;}
.h42{height:193.993005pt;}
.h5a{height:214.662467pt;}
.h50{height:221.729626pt;}
.h4c{height:226.845259pt;}
.h5b{height:233.508779pt;}
.h25{height:254.519865pt;}
.h2{height:907.085973pt;}
.h1{height:1046.666667pt;}
.h0{height:1046.929333pt;}
.w7{width:313.699927pt;}
.w4{width:313.702604pt;}
.w8{width:313.703095pt;}
.w9{width:313.704606pt;}
.w6{width:313.708094pt;}
.w5{width:313.708510pt;}
.w3{width:415.748316pt;}
.w2{width:793.700107pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6b{left:7.550471pt;}
.x6f{left:8.538267pt;}
.x75{left:10.477172pt;}
.x67{left:11.545028pt;}
.x82{left:12.612685pt;}
.x6e{left:15.020683pt;}
.x6c{left:19.589242pt;}
.x72{left:21.715724pt;}
.x7f{left:23.191962pt;}
.x74{left:24.136203pt;}
.x76{left:25.037065pt;}
.x78{left:26.033972pt;}
.x7e{left:27.933079pt;}
.xd{left:29.757419pt;}
.x79{left:31.539608pt;}
.x7d{left:32.674196pt;}
.x73{left:34.423235pt;}
.x70{left:39.768458pt;}
.x85{left:60.980571pt;}
.x1{left:61.984063pt;}
.x22{left:63.305395pt;}
.xa{left:64.705394pt;}
.x3{left:65.677333pt;}
.x8d{left:67.085393pt;}
.x10{left:68.625392pt;}
.x4{left:69.821391pt;}
.x20{left:70.945390pt;}
.x8a{left:71.918723pt;}
.x86{left:73.147281pt;}
.x7{left:75.268054pt;}
.x8c{left:76.821386pt;}
.x8b{left:78.666718pt;}
.x5e{left:81.909382pt;}
.x32{left:84.981380pt;}
.x11{left:86.650712pt;}
.x4f{left:87.576045pt;}
.xe{left:88.558711pt;}
.x5{left:89.746710pt;}
.x88{left:91.286788pt;}
.xc{left:93.570707pt;}
.x9{left:94.768040pt;}
.x49{left:95.718706pt;}
.xb{left:97.872038pt;}
.x12{left:99.510703pt;}
.x33{left:100.478702pt;}
.x24{left:101.824035pt;}
.x6{left:103.030701pt;}
.x41{left:104.701366pt;}
.x8{left:107.602697pt;}
.x30{left:108.604030pt;}
.x59{left:113.116027pt;}
.x37{left:116.696024pt;}
.x48{left:117.661357pt;}
.x25{left:119.406689pt;}
.x23{left:121.570688pt;}
.x52{left:122.722687pt;}
.x26{left:128.262683pt;}
.x27{left:130.650681pt;}
.x28{left:135.252011pt;}
.x51{left:136.888010pt;}
.x42{left:139.005342pt;}
.x89{left:143.348779pt;}
.x34{left:144.348005pt;}
.x13{left:145.264004pt;}
.x31{left:147.613336pt;}
.x77{left:149.380677pt;}
.x6d{left:151.321184pt;}
.x47{left:153.597332pt;}
.x87{left:154.775062pt;}
.x71{left:156.556536pt;}
.x7c{left:157.642129pt;}
.x35{left:159.845327pt;}
.x15{left:162.355992pt;}
.x14{left:163.357325pt;}
.x54{left:167.137322pt;}
.x3c{left:168.147988pt;}
.x36{left:173.475984pt;}
.x21{left:175.711983pt;}
.x53{left:177.713315pt;}
.x29{left:178.653314pt;}
.x66{left:188.599867pt;}
.x2a{left:191.937305pt;}
.x3b{left:193.054637pt;}
.x4a{left:193.947970pt;}
.x90{left:196.870634pt;}
.x8f{left:198.210633pt;}
.x16{left:200.215965pt;}
.x3d{left:204.861295pt;}
.x2d{left:209.029293pt;}
.x2c{left:210.029292pt;}
.x55{left:211.719957pt;}
.x50{left:213.481289pt;}
.x68{left:218.773307pt;}
.x19{left:224.214615pt;}
.x3e{left:226.382614pt;}
.x81{left:228.299946pt;}
.x91{left:230.731944pt;}
.x2e{left:232.114610pt;}
.x5f{left:233.935942pt;}
.x4b{left:235.411941pt;}
.x60{left:238.363938pt;}
.x6a{left:239.622498pt;}
.x17{left:241.433270pt;}
.x43{left:248.775931pt;}
.x3f{left:251.003930pt;}
.x61{left:253.861261pt;}
.x46{left:255.034593pt;}
.x4c{left:259.211924pt;}
.x56{left:260.717256pt;}
.x40{left:273.410580pt;}
.x80{left:275.438579pt;}
.x7b{left:277.915911pt;}
.x4d{left:281.302575pt;}
.x62{left:284.237239pt;}
.x7a{left:285.886572pt;}
.x57{left:286.921238pt;}
.x38{left:288.309237pt;}
.x44{left:289.990569pt;}
.x84{left:291.373234pt;}
.x64{left:294.653232pt;}
.x83{left:299.342562pt;}
.x2b{left:304.914558pt;}
.x58{left:313.983885pt;}
.x5a{left:318.085216pt;}
.x65{left:321.634546pt;}
.x39{left:329.523874pt;}
.x5b{left:333.582538pt;}
.x18{left:335.389203pt;}
.xf{left:338.785201pt;}
.x1a{left:345.719863pt;}
.x1b{left:357.527854pt;}
.x5c{left:367.082514pt;}
.x1d{left:373.025177pt;}
.x1c{left:376.229175pt;}
.x5d{left:389.830498pt;}
.x2{left:393.151829pt;}
.x69{left:400.174150pt;}
.x63{left:401.138490pt;}
.x1e{left:407.610486pt;}
.x45{left:409.889151pt;}
.x4e{left:413.698481pt;}
.x2f{left:417.781145pt;}
.x8e{left:462.366447pt;}
.x3a{left:708.830273pt;}
.x1f{left:715.471602pt;}
}




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