
    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_02a1bbdd62edec06545b7bc2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_aa1e19627093157da4c74424.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.226000;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_6526d4cf56e1909a001d76eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_3d39175f7f27434b7fc50197.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_3a4b362a7909750f7352d5b5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_32398ae26c9a24b6bdf8b7b6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a97e346e89ca28dcfdf6feec.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_47de1b95eb4f19f09b70a674.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.820000;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_4360c314b1ebe74e651f4e22.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e48555c66994cd456b673019.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937000;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_d88374800f464b41fa7ad6ae.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.689000;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_919e53b330ff455b3c02e2d6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.922000;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_de5dab9ed2538d7c04a6b5a0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.580000;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;}
.mf{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-34.728000px;}
.v2{vertical-align:-17.364000px;}
.v10{vertical-align:-14.964000px;}
.v7{vertical-align:-11.760000px;}
.v9{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:5.712000px;}
.v6{vertical-align:13.716000px;}
.v11{vertical-align:14.964000px;}
.va{vertical-align:17.472000px;}
.v8{vertical-align:19.962000px;}
.v1{vertical-align:21.702000px;}
.v5{vertical-align:24.684000px;}
.v12{vertical-align:32.874000px;}
.vd{vertical-align:40.470000px;}
.vb{vertical-align:41.658000px;}
.v4{vertical-align:48.450000px;}
.ve{vertical-align:65.694000px;}
.vf{vertical-align:91.314000px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000263px;}
.ls6d{letter-spacing:0.002725px;}
.ls8c{letter-spacing:0.002841px;}
.ls6e{letter-spacing:0.003178px;}
.ls73{letter-spacing:0.003634px;}
.ls72{letter-spacing:0.004200px;}
.ls71{letter-spacing:0.005108px;}
.ls75{letter-spacing:0.298878px;}
.ls66{letter-spacing:0.508407px;}
.ls2b{letter-spacing:0.542815px;}
.ls47{letter-spacing:0.548815px;}
.ls63{letter-spacing:0.568457px;}
.ls51{letter-spacing:0.570600px;}
.ls32{letter-spacing:0.670741px;}
.ls54{letter-spacing:0.676741px;}
.ls4f{letter-spacing:0.745897px;}
.ls4e{letter-spacing:0.747089px;}
.ls4c{letter-spacing:0.748200px;}
.ls4a{letter-spacing:0.748483px;}
.ls4b{letter-spacing:0.751897px;}
.ls3e{letter-spacing:0.861762px;}
.ls3d{letter-spacing:0.882571px;}
.ls30{letter-spacing:0.994200px;}
.ls3c{letter-spacing:0.998725px;}
.ls2d{letter-spacing:1.000200px;}
.ls43{letter-spacing:1.112815px;}
.ls38{letter-spacing:1.132457px;}
.ls52{letter-spacing:1.135171px;}
.ls65{letter-spacing:1.138457px;}
.ls48{letter-spacing:1.310725px;}
.ls42{letter-spacing:1.314583px;}
.ls39{letter-spacing:1.316725px;}
.ls53{letter-spacing:1.348766px;}
.ls19{letter-spacing:1.364458px;}
.ls2c{letter-spacing:1.420741px;}
.ls2a{letter-spacing:1.458571px;}
.ls37{letter-spacing:1.480617px;}
.ls3b{letter-spacing:1.490700px;}
.ls22{letter-spacing:1.493108px;}
.ls20{letter-spacing:1.493675px;}
.ls56{letter-spacing:1.498483px;}
.ls59{letter-spacing:1.499675px;}
.lsa{letter-spacing:1.542155px;}
.ls46{letter-spacing:1.587886px;}
.ls16{letter-spacing:2.018815px;}
.ls1e{letter-spacing:2.024815px;}
.ls7{letter-spacing:2.158617px;}
.ls1c{letter-spacing:2.164617px;}
.ls34{letter-spacing:2.177108px;}
.ls28{letter-spacing:2.183108px;}
.ls57{letter-spacing:2.194741px;}
.ls1d{letter-spacing:2.539771px;}
.ls8{letter-spacing:2.545771px;}
.ls5b{letter-spacing:2.598583px;}
.ls18{letter-spacing:2.614617px;}
.ls64{letter-spacing:2.668407px;}
.ls9{letter-spacing:3.158815px;}
.ls5e{letter-spacing:3.348583px;}
.ls5a{letter-spacing:3.508741px;}
.ls58{letter-spacing:3.733200px;}
.ls3f{letter-spacing:4.011886px;}
.ls7a{letter-spacing:4.184292px;}
.ls44{letter-spacing:4.303200px;}
.ls7b{letter-spacing:4.483170px;}
.ls31{letter-spacing:4.626571px;}
.ls7d{letter-spacing:5.320028px;}
.ls79{letter-spacing:5.858009px;}
.ls87{letter-spacing:6.395989px;}
.ls7e{letter-spacing:7.591501px;}
.ls82{letter-spacing:8.009930px;}
.ls80{letter-spacing:8.355292px;}
.ls4d{letter-spacing:8.665897px;}
.ls7c{letter-spacing:8.727238px;}
.ls7f{letter-spacing:9.525292px;}
.ls21{letter-spacing:9.780843px;}
.ls0{letter-spacing:10.461300px;}
.ls83{letter-spacing:10.879159px;}
.ls1f{letter-spacing:11.460843px;}
.ls3{letter-spacing:11.954850px;}
.ls78{letter-spacing:12.323524px;}
.ls77{letter-spacing:12.329524px;}
.ls5d{letter-spacing:12.339483px;}
.ls55{letter-spacing:12.370200px;}
.ls90{letter-spacing:12.532273px;}
.ls8e{letter-spacing:12.682783px;}
.ls12{letter-spacing:13.083483px;}
.ls24{letter-spacing:13.115675px;}
.ls8b{letter-spacing:13.176931px;}
.ls74{letter-spacing:13.389734px;}
.ls8d{letter-spacing:13.439511px;}
.ls88{letter-spacing:13.448400px;}
.ls8a{letter-spacing:13.454400px;}
.ls89{letter-spacing:13.475023px;}
.ls8f{letter-spacing:13.605056px;}
.ls91{letter-spacing:13.706046px;}
.ls60{letter-spacing:14.283483px;}
.ls62{letter-spacing:14.583483px;}
.lsc{letter-spacing:14.723147px;}
.ls6b{letter-spacing:14.942100px;}
.ls70{letter-spacing:14.943900px;}
.ls5f{letter-spacing:14.970583px;}
.ls6f{letter-spacing:15.063451px;}
.ls5c{letter-spacing:15.361200px;}
.lsd{letter-spacing:15.689675px;}
.lsf{letter-spacing:15.991834px;}
.ls2e{letter-spacing:16.242571px;}
.ls1b{letter-spacing:17.303524px;}
.ls15{letter-spacing:17.309524px;}
.ls11{letter-spacing:18.069483px;}
.ls17{letter-spacing:18.095108px;}
.ls10{letter-spacing:18.095675px;}
.ls1a{letter-spacing:18.101108px;}
.ls14{letter-spacing:18.101675px;}
.ls41{letter-spacing:19.479943px;}
.ls85{letter-spacing:19.539292px;}
.ls6{letter-spacing:19.637524px;}
.ls29{letter-spacing:19.947322px;}
.ls5{letter-spacing:20.429675px;}
.lse{letter-spacing:20.757483px;}
.ls6a{letter-spacing:20.890200px;}
.ls45{letter-spacing:20.907943px;}
.ls27{letter-spacing:21.123995px;}
.ls84{letter-spacing:21.303292px;}
.ls61{letter-spacing:22.042741px;}
.ls68{letter-spacing:22.116972px;}
.ls25{letter-spacing:23.073483px;}
.ls76{letter-spacing:24.495483px;}
.ls6c{letter-spacing:24.777483px;}
.ls2f{letter-spacing:26.457483px;}
.ls69{letter-spacing:29.367483px;}
.ls36{letter-spacing:32.123524px;}
.ls35{letter-spacing:32.910583px;}
.ls50{letter-spacing:34.606200px;}
.ls3a{letter-spacing:36.081943px;}
.ls40{letter-spacing:36.090571px;}
.ls86{letter-spacing:49.143292px;}
.ls81{letter-spacing:50.151292px;}
.ls1{letter-spacing:62.761200px;}
.ls2{letter-spacing:64.321654px;}
.ls67{letter-spacing:636.691171px;}
.ls49{letter-spacing:817.809886px;}
.ls33{letter-spacing:853.531200px;}
.ls13{letter-spacing:952.175108px;}
.ls26{letter-spacing:971.183675px;}
.ls23{letter-spacing:993.358457px;}
.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;}
}
.wsb{word-spacing:-28.532313px;}
.wsf8{word-spacing:-25.823059px;}
.wse5{word-spacing:-23.671138px;}
.wsf1{word-spacing:-22.953830px;}
.wsea{word-spacing:-22.535401px;}
.wsfd{word-spacing:-21.339889px;}
.wsdb{word-spacing:-20.801909px;}
.wse9{word-spacing:-20.263928px;}
.ws60{word-spacing:-14.943900px;}
.ws9d{word-spacing:-13.449600px;}
.ws2f{word-spacing:-11.955150px;}
.wsd{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.wse1{word-spacing:-5.559131px;}
.wsf9{word-spacing:-3.825638px;}
.wsef{word-spacing:-3.646312px;}
.ws72{word-spacing:-3.526760px;}
.ws5e{word-spacing:-3.287658px;}
.ws89{word-spacing:-3.227882px;}
.wsed{word-spacing:-2.988780px;}
.ws38{word-spacing:-2.809453px;}
.wsb1{word-spacing:-2.689920px;}
.wsb7{word-spacing:-2.689902px;}
.wse3{word-spacing:-2.630126px;}
.wscb{word-spacing:-2.575342px;}
.wscd{word-spacing:-2.574943px;}
.wsb3{word-spacing:-2.367130px;}
.ws3f{word-spacing:-2.271473px;}
.wsf4{word-spacing:-2.211697px;}
.ws51{word-spacing:-2.092146px;}
.wsd9{word-spacing:-2.044339px;}
.ws5d{word-spacing:-2.032370px;}
.ws31{word-spacing:-1.912819px;}
.ws54{word-spacing:-1.853044px;}
.wsbc{word-spacing:-1.829146px;}
.ws66{word-spacing:-1.823507px;}
.ws5c{word-spacing:-1.793268px;}
.ws68{word-spacing:-1.733492px;}
.wsf2{word-spacing:-1.673717px;}
.ws44{word-spacing:-1.613941px;}
.wsc7{word-spacing:-1.554166px;}
.wsd0{word-spacing:-1.494390px;}
.ws5a{word-spacing:-1.434614px;}
.ws17{word-spacing:-1.344960px;}
.ws92{word-spacing:-1.315063px;}
.ws33{word-spacing:-1.255288px;}
.ws14{word-spacing:-1.237363px;}
.ws4e{word-spacing:-1.195512px;}
.ws11{word-spacing:-1.183565px;}
.ws93{word-spacing:-1.135736px;}
.wsbb{word-spacing:-1.075968px;}
.ws64{word-spacing:-1.075961px;}
.ws1b{word-spacing:-1.022170px;}
.ws88{word-spacing:-1.016185px;}
.ws15{word-spacing:-0.968371px;}
.ws55{word-spacing:-0.956410px;}
.ws116{word-spacing:-0.914573px;}
.ws7a{word-spacing:-0.896634px;}
.wsb4{word-spacing:-0.860774px;}
.ws94{word-spacing:-0.836858px;}
.ws95{word-spacing:-0.777083px;}
.ws10d{word-spacing:-0.753178px;}
.ws36{word-spacing:-0.717307px;}
.ws43{word-spacing:-0.657532px;}
.ws12{word-spacing:-0.591782px;}
.ws67{word-spacing:-0.537980px;}
.ws91{word-spacing:-0.478205px;}
.ws109{word-spacing:-0.430387px;}
.wsb2{word-spacing:-0.376589px;}
.ws3e{word-spacing:-0.358654px;}
.ws1f{word-spacing:-0.298878px;}
.ws100{word-spacing:-0.268992px;}
.ws63{word-spacing:-0.250603px;}
.ws1e{word-spacing:-0.239102px;}
.wsd8{word-spacing:-0.215194px;}
.ws24{word-spacing:-0.179327px;}
.wsc5{word-spacing:-0.161395px;}
.ws3b{word-spacing:-0.119551px;}
.ws10a{word-spacing:-0.107597px;}
.ws25{word-spacing:-0.059776px;}
.wsa7{word-spacing:-0.053798px;}
.ws118{word-spacing:-0.006806px;}
.ws107{word-spacing:-0.005184px;}
.ws8f{word-spacing:-0.003791px;}
.ws103{word-spacing:-0.003610px;}
.ws8d{word-spacing:-0.001991px;}
.ws65{word-spacing:-0.000554px;}
.ws108{word-spacing:-0.000221px;}
.ws1{word-spacing:0.000000px;}
.ws2e{word-spacing:0.003599px;}
.wsd2{word-spacing:0.053798px;}
.ws30{word-spacing:0.059776px;}
.ws10b{word-spacing:0.107597px;}
.ws22{word-spacing:0.119551px;}
.wsd3{word-spacing:0.161395px;}
.ws4f{word-spacing:0.179327px;}
.ws115{word-spacing:0.215194px;}
.ws32{word-spacing:0.239102px;}
.ws105{word-spacing:0.268992px;}
.ws2a{word-spacing:0.298878px;}
.ws16{word-spacing:0.322790px;}
.ws23{word-spacing:0.358654px;}
.ws62{word-spacing:0.418429px;}
.ws8a{word-spacing:0.478205px;}
.ws73{word-spacing:0.537980px;}
.ws45{word-spacing:0.597756px;}
.ws104{word-spacing:0.645581px;}
.ws40{word-spacing:0.657532px;}
.ws53{word-spacing:0.717307px;}
.wsad{word-spacing:0.777083px;}
.wsc6{word-spacing:0.836858px;}
.ws87{word-spacing:0.896634px;}
.ws47{word-spacing:0.956410px;}
.ws19{word-spacing:0.968371px;}
.ws46{word-spacing:1.016185px;}
.ws3c{word-spacing:1.075961px;}
.wsc4{word-spacing:1.129766px;}
.ws7b{word-spacing:1.135736px;}
.wsd7{word-spacing:1.183565px;}
.ws5f{word-spacing:1.195512px;}
.ws50{word-spacing:1.255288px;}
.ws57{word-spacing:1.374839px;}
.ws110{word-spacing:1.398758px;}
.ws4b{word-spacing:1.434614px;}
.wsf{word-spacing:1.452557px;}
.ws26{word-spacing:1.494390px;}
.ws77{word-spacing:1.554166px;}
.ws3d{word-spacing:1.673717px;}
.ws2d{word-spacing:1.733492px;}
.ws101{word-spacing:1.775347px;}
.ws35{word-spacing:1.793268px;}
.wsb8{word-spacing:1.853044px;}
.wsae{word-spacing:1.912819px;}
.ws49{word-spacing:1.972595px;}
.wsd5{word-spacing:1.990541px;}
.ws98{word-spacing:2.092146px;}
.wsb6{word-spacing:2.151922px;}
.ws1a{word-spacing:2.151936px;}
.ws75{word-spacing:2.211697px;}
.ws58{word-spacing:2.271473px;}
.ws78{word-spacing:2.331248px;}
.wsbe{word-spacing:2.391024px;}
.wsca{word-spacing:2.402227px;}
.wscc{word-spacing:2.407921px;}
.ws81{word-spacing:2.450800px;}
.ws2{word-spacing:2.510568px;}
.ws7c{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws10f{word-spacing:2.528525px;}
.ws5b{word-spacing:2.570351px;}
.wsa1{word-spacing:2.689902px;}
.wsa0{word-spacing:2.749678px;}
.wsaf{word-spacing:2.809453px;}
.ws13{word-spacing:2.851315px;}
.wscf{word-spacing:2.869229px;}
.wse{word-spacing:2.869236px;}
.ws11a{word-spacing:2.958912px;}
.ws4c{word-spacing:2.988780px;}
.ws18{word-spacing:3.012710px;}
.ws84{word-spacing:3.048556px;}
.ws112{word-spacing:3.066509px;}
.ws42{word-spacing:3.108331px;}
.ws6d{word-spacing:3.150157px;}
.ws85{word-spacing:3.151241px;}
.ws61{word-spacing:3.168107px;}
.ws1c{word-spacing:3.219667px;}
.ws10e{word-spacing:3.220253px;}
.ws111{word-spacing:3.221280px;}
.ws113{word-spacing:3.225082px;}
.ws106{word-spacing:3.226906px;}
.ws4a{word-spacing:3.227882px;}
.wsfe{word-spacing:3.227904px;}
.ws9a{word-spacing:3.287658px;}
.ws80{word-spacing:3.347434px;}
.ws48{word-spacing:3.407209px;}
.ws34{word-spacing:3.466985px;}
.wsb9{word-spacing:3.526760px;}
.ws119{word-spacing:3.550694px;}
.ws1d{word-spacing:3.586536px;}
.ws59{word-spacing:3.646312px;}
.wsd1{word-spacing:3.706087px;}
.ws41{word-spacing:3.765863px;}
.ws7f{word-spacing:3.825638px;}
.ws52{word-spacing:3.945190px;}
.ws3a{word-spacing:4.004965px;}
.wsd4{word-spacing:4.142477px;}
.ws76{word-spacing:4.184292px;}
.ws9f{word-spacing:4.244068px;}
.ws11c{word-spacing:4.250074px;}
.ws8b{word-spacing:4.303843px;}
.wsd6{word-spacing:4.303872px;}
.ws10c{word-spacing:4.357670px;}
.ws29{word-spacing:4.423394px;}
.ws2b{word-spacing:4.483170px;}
.ws79{word-spacing:4.542946px;}
.ws27{word-spacing:4.602721px;}
.ws11b{word-spacing:4.626662px;}
.ws4d{word-spacing:4.662497px;}
.ws39{word-spacing:4.722272px;}
.ws9{word-spacing:4.770079px;}
.wsa{word-spacing:4.853765px;}
.ws114{word-spacing:4.949453px;}
.ws6c{word-spacing:5.021150px;}
.ws56{word-spacing:5.200477px;}
.wsbd{word-spacing:5.260253px;}
.ws21{word-spacing:5.320028px;}
.wsbf{word-spacing:5.379804px;}
.wsda{word-spacing:5.433638px;}
.wsc9{word-spacing:5.798233px;}
.ws20{word-spacing:5.977560px;}
.ws96{word-spacing:6.037336px;}
.ws6a{word-spacing:6.156887px;}
.ws69{word-spacing:6.216662px;}
.ws10{word-spacing:6.294413px;}
.ws2c{word-spacing:6.336214px;}
.wsc0{word-spacing:6.395989px;}
.ws97{word-spacing:6.455765px;}
.ws83{word-spacing:6.515540px;}
.ws37{word-spacing:6.814418px;}
.ws117{word-spacing:7.047590px;}
.wse0{word-spacing:7.113296px;}
.ws7e{word-spacing:7.173072px;}
.ws7d{word-spacing:7.232848px;}
.ws28{word-spacing:7.352399px;}
.ws9e{word-spacing:7.412174px;}
.ws6e{word-spacing:7.531726px;}
.ws70{word-spacing:7.591501px;}
.ws82{word-spacing:7.711052px;}
.ws7{word-spacing:7.782761px;}
.wsc1{word-spacing:7.890379px;}
.wsb5{word-spacing:8.368584px;}
.ws102{word-spacing:9.138432px;}
.wsff{word-spacing:9.138442px;}
.ws8c{word-spacing:9.205442px;}
.ws71{word-spacing:9.504320px;}
.ws6f{word-spacing:9.564096px;}
.ws99{word-spacing:10.276613px;}
.ws5{word-spacing:12.176255px;}
.wsdc{word-spacing:14.507940px;}
.ws90{word-spacing:14.870100px;}
.ws8e{word-spacing:14.870737px;}
.ws6{word-spacing:16.109478px;}
.ws74{word-spacing:17.938541px;}
.wsf6{word-spacing:21.041011px;}
.wse8{word-spacing:21.280114px;}
.wse7{word-spacing:22.057196px;}
.wseb{word-spacing:22.475626px;}
.wsee{word-spacing:22.535401px;}
.wsdf{word-spacing:22.553940px;}
.ws6b{word-spacing:22.654952px;}
.wsdd{word-spacing:24.209118px;}
.wsfa{word-spacing:24.766020px;}
.wse2{word-spacing:25.312020px;}
.wse6{word-spacing:25.516020px;}
.wsfb{word-spacing:25.882835px;}
.ws8{word-spacing:26.109907px;}
.ws4{word-spacing:26.840252px;}
.wsf3{word-spacing:27.340020px;}
.wsec{word-spacing:28.273859px;}
.wsf5{word-spacing:28.572737px;}
.wsde{word-spacing:29.870728px;}
.wsfc{word-spacing:33.874796px;}
.wsf0{word-spacing:35.458796px;}
.wse4{word-spacing:36.166796px;}
.wsf7{word-spacing:38.362796px;}
.wsc{word-spacing:46.059600px;}
.wsb0{word-spacing:96.137741px;}
.wsa2{word-spacing:141.134266px;}
.wsa8{word-spacing:226.276070px;}
.wsa6{word-spacing:239.725670px;}
.wsa5{word-spacing:253.175270px;}
.wsa4{word-spacing:253.229069px;}
.wsa3{word-spacing:325.641715px;}
.wsce{word-spacing:479.989325px;}
.wsa9{word-spacing:724.018867px;}
.wsaa{word-spacing:749.842099px;}
.wsac{word-spacing:792.020045px;}
.wsab{word-spacing:870.619507px;}
.ws86{word-spacing:918.750972px;}
.wsc2{word-spacing:1038.481499px;}
.wsc3{word-spacing:1040.155216px;}
.wsc8{word-spacing:1062.929719px;}
.ws9b{word-spacing:1063.766578px;}
.ws9c{word-spacing:1065.440294px;}
.wsba{word-spacing:1106.864785px;}
._5{margin-left:-11.943245px;}
._60{margin-left:-10.023725px;}
._6{margin-left:-7.962163px;}
._a{margin-left:-6.760732px;}
._1f{margin-left:-5.547124px;}
._0{margin-left:-4.519022px;}
._12{margin-left:-3.437184px;}
._3{margin-left:-2.301354px;}
._9{margin-left:-1.207519px;}
._1c{width:1.494390px;}
._7{width:2.983076px;}
._64{width:4.172273px;}
._19{width:5.272297px;}
._51{width:7.178776px;}
._56{width:8.356577px;}
._53{width:9.480004px;}
._52{width:10.485047px;}
._5a{width:11.811252px;}
._2{width:12.971268px;}
._d{width:14.932001px;}
._10{width:16.163276px;}
._f{width:17.496457px;}
._11{width:19.128192px;}
._15{width:20.694365px;}
._c{width:22.152964px;}
._48{width:23.270804px;}
._16{width:24.292908px;}
._1{width:25.941685px;}
._e{width:27.718153px;}
._1a{width:28.811839px;}
._4{width:30.587087px;}
._13{width:32.876580px;}
._1b{width:34.861182px;}
._1e{width:35.877367px;}
._5d{width:36.884248px;}
._b{width:38.860312px;}
._1d{width:39.878470px;}
._14{width:41.281016px;}
._20{width:42.548220px;}
._58{width:43.630447px;}
._57{width:44.853533px;}
._5e{width:46.766803px;}
._4f{width:48.131365px;}
._5c{width:49.209284px;}
._54{width:50.472730px;}
._5f{width:52.705223px;}
._55{width:53.947574px;}
._61{width:55.264405px;}
._59{width:56.272928px;}
._5b{width:57.277786px;}
._63{width:61.868160px;}
._8{width:69.369634px;}
._50{width:71.713267px;}
._44{width:79.514035px;}
._41{width:82.365350px;}
._62{width:88.713562px;}
._38{width:90.166118px;}
._43{width:97.106112px;}
._42{width:112.761446px;}
._3d{width:115.881754px;}
._47{width:140.198630px;}
._37{width:141.651187px;}
._3f{width:145.201882px;}
._3e{width:152.895053px;}
._40{width:174.145421px;}
._3c{width:194.266022px;}
._39{width:208.522598px;}
._3a{width:215.462592px;}
._3b{width:216.861350px;}
._28{width:239.779469px;}
._26{width:253.229069px;}
._46{width:256.887360px;}
._45{width:264.472934px;}
._29{width:266.571072px;}
._27{width:291.689011px;}
._35{width:304.176154px;}
._23{width:326.831168px;}
._21{width:328.923418px;}
._4b{width:335.002637px;}
._22{width:352.540915px;}
._2c{width:387.880610px;}
._49{width:432.298822px;}
._2a{width:441.792461px;}
._24{width:454.273690px;}
._4e{width:466.055539px;}
._2d{width:490.157222px;}
._2b{width:501.831475px;}
._33{width:516.446773px;}
._25{width:525.179981px;}
._32{width:530.075635px;}
._34{width:544.278413px;}
._4a{width:585.990848px;}
._4c{width:635.628096px;}
._31{width:654.242342px;}
._30{width:663.280474px;}
._4d{width:731.227853px;}
._2e{width:746.399002px;}
._2f{width:829.947917px;}
._17{width:927.801538px;}
._36{width:2488.785085px;}
._18{width:2512.695085px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(74,73,130);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs9{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fsa{font-size:83.686200px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:114.129254px;}
.y0{bottom:0.000000px;}
.y15{bottom:1.739201px;}
.y14{bottom:30.271042px;}
.y43{bottom:31.890000px;}
.y168{bottom:91.665000px;}
.y126{bottom:96.784500px;}
.ye8{bottom:100.182000px;}
.y1bf{bottom:102.100500px;}
.y207{bottom:102.709500px;}
.y42{bottom:103.621500px;}
.y12{bottom:104.646000px;}
.y222{bottom:105.280500px;}
.yd9{bottom:105.777000px;}
.y7a{bottom:107.641500px;}
.y1b0{bottom:108.438000px;}
.y167{bottom:110.494500px;}
.y1b4{bottom:111.084000px;}
.y125{bottom:115.614000px;}
.ye7{bottom:119.011500px;}
.y1be{bottom:120.930000px;}
.y206{bottom:121.539000px;}
.y13c{bottom:121.917000px;}
.y41{bottom:122.449500px;}
.y11{bottom:122.535000px;}
.y17b{bottom:123.112500px;}
.y221{bottom:124.110000px;}
.yd8{bottom:124.606500px;}
.y9f{bottom:126.022500px;}
.y79{bottom:126.471000px;}
.y1af{bottom:127.267500px;}
.y166{bottom:129.324000px;}
.y124{bottom:134.443500px;}
.ye6{bottom:137.841000px;}
.y13b{bottom:138.355500px;}
.y1b3{bottom:138.894000px;}
.y1bd{bottom:139.759500px;}
.y205{bottom:140.368500px;}
.y10{bottom:140.422500px;}
.y40{bottom:141.279000px;}
.y17a{bottom:141.942000px;}
.y220{bottom:142.939500px;}
.yd7{bottom:143.436000px;}
.y9e{bottom:144.852000px;}
.y78{bottom:145.300500px;}
.y1ae{bottom:146.097000px;}
.y165{bottom:148.153500px;}
.y123{bottom:153.273000px;}
.y271{bottom:156.283500px;}
.y1d4{bottom:156.433500px;}
.ye5{bottom:156.670500px;}
.yf{bottom:158.310000px;}
.y1bc{bottom:158.589000px;}
.y204{bottom:159.198000px;}
.y3f{bottom:160.108500px;}
.y179{bottom:160.771500px;}
.yd6{bottom:162.265500px;}
.y13a{bottom:162.295500px;}
.y9d{bottom:163.681500px;}
.y77{bottom:164.130000px;}
.y1ad{bottom:164.926500px;}
.y164{bottom:166.983000px;}
.y23f{bottom:171.975000px;}
.y1d3{bottom:172.872000px;}
.y270{bottom:173.544000px;}
.ye{bottom:176.199000px;}
.y122{bottom:176.584500px;}
.y1bb{bottom:177.418500px;}
.y203{bottom:178.027500px;}
.y139{bottom:178.734000px;}
.y3e{bottom:178.938000px;}
.y178{bottom:179.601000px;}
.ye4{bottom:179.983500px;}
.y21f{bottom:180.598500px;}
.y9c{bottom:182.511000px;}
.y76{bottom:182.959500px;}
.y1ac{bottom:183.756000px;}
.yd5{bottom:185.578500px;}
.y163{bottom:185.812500px;}
.y23e{bottom:189.235500px;}
.y26f{bottom:190.804500px;}
.yd{bottom:194.086500px;}
.y1ba{bottom:196.248000px;}
.y1d2{bottom:196.810500px;}
.y202{bottom:196.857000px;}
.y3d{bottom:197.767500px;}
.y177{bottom:198.430500px;}
.y21e{bottom:199.428000px;}
.y109{bottom:199.972500px;}
.y9b{bottom:201.340500px;}
.y75{bottom:201.789000px;}
.y1ab{bottom:202.585500px;}
.y23d{bottom:206.496000px;}
.y26e{bottom:208.065000px;}
.y121{bottom:210.208500px;}
.y138{bottom:210.352500px;}
.yc{bottom:211.974000px;}
.ye3{bottom:213.607500px;}
.y201{bottom:215.686500px;}
.y3c{bottom:216.597000px;}
.y21d{bottom:218.257500px;}
.y108{bottom:218.802000px;}
.yd4{bottom:219.202500px;}
.y9a{bottom:220.170000px;}
.y74{bottom:220.618500px;}
.y1aa{bottom:221.415000px;}
.y176{bottom:221.743500px;}
.y23c{bottom:223.756500px;}
.y26d{bottom:225.325500px;}
.y1d1{bottom:228.430500px;}
.y120{bottom:229.038000px;}
.y1b9{bottom:229.813500px;}
.yb{bottom:229.863000px;}
.y162{bottom:231.063000px;}
.ye2{bottom:232.437000px;}
.y200{bottom:234.516000px;}
.y3b{bottom:235.426500px;}
.y107{bottom:237.631500px;}
.yd3{bottom:238.032000px;}
.y99{bottom:238.999500px;}
.y73{bottom:239.446500px;}
.y1a9{bottom:240.244500px;}
.y23b{bottom:241.017000px;}
.y26c{bottom:242.586000px;}
.y137{bottom:247.456500px;}
.y161{bottom:247.501500px;}
.y11f{bottom:247.867500px;}
.y1b8{bottom:249.046500px;}
.y21c{bottom:250.536000px;}
.ye1{bottom:251.266500px;}
.y1ff{bottom:253.345500px;}
.y3a{bottom:254.256000px;}
.y175{bottom:255.367500px;}
.y106{bottom:256.461000px;}
.yd2{bottom:256.861500px;}
.y98{bottom:257.829000px;}
.y72{bottom:258.276000px;}
.y23a{bottom:258.277500px;}
.y1a8{bottom:259.074000px;}
.y26b{bottom:259.846500px;}
.y1d0{bottom:261.642000px;}
.y160{bottom:263.940000px;}
.y136{bottom:266.286000px;}
.y11e{bottom:266.697000px;}
.y1b7{bottom:268.279500px;}
.ye0{bottom:270.096000px;}
.y1fe{bottom:272.175000px;}
.y39{bottom:273.085500px;}
.y174{bottom:274.195500px;}
.y105{bottom:275.290500px;}
.y239{bottom:275.536500px;}
.yd1{bottom:275.691000px;}
.y97{bottom:276.658500px;}
.y71{bottom:277.105500px;}
.y1a7{bottom:277.903500px;}
.y15f{bottom:280.378500px;}
.y1cf{bottom:280.471500px;}
.y135{bottom:285.115500px;}
.y11d{bottom:285.526500px;}
.y21b{bottom:288.417000px;}
.ydf{bottom:288.925500px;}
.y1fd{bottom:291.004500px;}
.y38{bottom:291.915000px;}
.y238{bottom:292.797000px;}
.y173{bottom:293.025000px;}
.y104{bottom:294.120000px;}
.y26a{bottom:294.366000px;}
.yd0{bottom:294.520500px;}
.y96{bottom:295.488000px;}
.y70{bottom:295.935000px;}
.y1b6{bottom:296.088000px;}
.y1a6{bottom:296.733000px;}
.y15e{bottom:296.817000px;}
.y1ce{bottom:299.301000px;}
.ya{bottom:299.892000px;}
.y134{bottom:303.945000px;}
.y11c{bottom:304.356000px;}
.y21a{bottom:305.991000px;}
.yde{bottom:307.755000px;}
.y1fc{bottom:309.834000px;}
.y237{bottom:310.057500px;}
.y37{bottom:310.744500px;}
.y269{bottom:311.626500px;}
.y172{bottom:311.854500px;}
.y103{bottom:312.949500px;}
.y15d{bottom:313.255500px;}
.ycf{bottom:313.350000px;}
.y95{bottom:314.317500px;}
.y6f{bottom:314.764500px;}
.y1a5{bottom:315.562500px;}
.y9{bottom:317.779500px;}
.y1cd{bottom:318.130500px;}
.y133{bottom:322.774500px;}
.y11b{bottom:323.185500px;}
.ydd{bottom:326.583000px;}
.y236{bottom:327.318000px;}
.y1fb{bottom:328.663500px;}
.y268{bottom:328.887000px;}
.y36{bottom:329.574000px;}
.y15c{bottom:329.694000px;}
.y171{bottom:330.684000px;}
.y102{bottom:331.779000px;}
.yce{bottom:332.179500px;}
.y94{bottom:333.145500px;}
.y6e{bottom:333.594000px;}
.y1a4{bottom:334.390500px;}
.y8{bottom:335.667000px;}
.y1cc{bottom:336.960000px;}
.y219{bottom:337.360500px;}
.y132{bottom:341.604000px;}
.y11a{bottom:342.015000px;}
.y235{bottom:344.578500px;}
.ydc{bottom:345.412500px;}
.y15b{bottom:346.131000px;}
.y267{bottom:346.147500px;}
.y1fa{bottom:347.493000px;}
.y35{bottom:348.403500px;}
.y170{bottom:349.513500px;}
.y101{bottom:350.608500px;}
.y93{bottom:351.975000px;}
.y6d{bottom:352.423500px;}
.y1a3{bottom:353.220000px;}
.y7{bottom:353.556000px;}
.ycd{bottom:355.491000px;}
.y218{bottom:359.418000px;}
.y131{bottom:360.433500px;}
.y119{bottom:360.844500px;}
.y234{bottom:361.839000px;}
.y15a{bottom:362.569500px;}
.y266{bottom:363.408000px;}
.y1cb{bottom:364.980000px;}
.y1f9{bottom:366.322500px;}
.y34{bottom:367.233000px;}
.y16f{bottom:368.343000px;}
.y100{bottom:369.438000px;}
.y92{bottom:370.804500px;}
.y6c{bottom:371.253000px;}
.y1a2{bottom:372.049500px;}
.y1ca{bottom:375.231000px;}
.ydb{bottom:378.979500px;}
.y233{bottom:379.099500px;}
.y130{bottom:379.263000px;}
.y118{bottom:379.674000px;}
.y265{bottom:380.668500px;}
.y6{bottom:381.904500px;}
.y1f8{bottom:385.152000px;}
.y1b2{bottom:386.061000px;}
.y33{bottom:386.062500px;}
.y159{bottom:386.509500px;}
.yff{bottom:388.267500px;}
.y91{bottom:389.634000px;}
.ycc{bottom:389.803500px;}
.y6b{bottom:390.082500px;}
.y1a1{bottom:390.879000px;}
.y16e{bottom:391.656000px;}
.y217{bottom:396.180000px;}
.y232{bottom:396.360000px;}
.y264{bottom:397.929000px;}
.y12f{bottom:398.092500px;}
.y117{bottom:398.503500px;}
.ycb{bottom:400.054500px;}
.y1f7{bottom:403.981500px;}
.y32{bottom:404.892000px;}
.yfe{bottom:407.097000px;}
.y90{bottom:408.463500px;}
.y5{bottom:408.759000px;}
.y6a{bottom:408.912000px;}
.y1a0{bottom:409.708500px;}
.y231{bottom:413.619000px;}
.y1c9{bottom:413.667000px;}
.y263{bottom:415.188000px;}
.y12e{bottom:416.922000px;}
.y116{bottom:417.333000px;}
.y158{bottom:418.129500px;}
.y216{bottom:422.721000px;}
.y1f6{bottom:422.811000px;}
.y31{bottom:423.721500px;}
.y1c8{bottom:423.918000px;}
.y16d{bottom:425.280000px;}
.yfd{bottom:425.926500px;}
.y4{bottom:426.646500px;}
.y8f{bottom:427.293000px;}
.y69{bottom:427.741500px;}
.y19f{bottom:428.538000px;}
.y230{bottom:430.879500px;}
.y262{bottom:432.448500px;}
.y12d{bottom:435.751500px;}
.y115{bottom:436.162500px;}
.y215{bottom:440.295000px;}
.y30{bottom:442.551000px;}
.y16c{bottom:444.109500px;}
.yca{bottom:444.439500px;}
.y3{bottom:444.534000px;}
.yfc{bottom:444.756000px;}
.y8e{bottom:446.122500px;}
.y68{bottom:446.571000px;}
.y19e{bottom:447.367500px;}
.y22f{bottom:448.140000px;}
.y261{bottom:449.709000px;}
.y12c{bottom:454.581000px;}
.y114{bottom:454.992000px;}
.y157{bottom:455.022000px;}
.y214{bottom:457.869000px;}
.y2f{bottom:461.380500px;}
.y2{bottom:462.423000px;}
.y16b{bottom:462.939000px;}
.yc9{bottom:463.269000px;}
.yfb{bottom:463.585500px;}
.y8d{bottom:464.952000px;}
.y67{bottom:465.400500px;}
.y19d{bottom:466.197000px;}
.y1c7{bottom:466.246500px;}
.y260{bottom:466.969500px;}
.y12b{bottom:473.410500px;}
.y113{bottom:473.821500px;}
.y156{bottom:473.851500px;}
.y1f5{bottom:479.746500px;}
.y2e{bottom:480.210000px;}
.y1{bottom:480.310500px;}
.yfa{bottom:482.415000px;}
.y22e{bottom:482.661000px;}
.y8c{bottom:483.781500px;}
.y66{bottom:484.230000px;}
.y213{bottom:484.410000px;}
.y19c{bottom:485.026500px;}
.y1c6{bottom:485.076000px;}
.y16a{bottom:486.252000px;}
.y12a{bottom:492.240000px;}
.y112{bottom:492.651000px;}
.y155{bottom:492.681000px;}
.y1f4{bottom:498.576000px;}
.y2d{bottom:499.039500px;}
.y22d{bottom:499.921500px;}
.yc8{bottom:500.977500px;}
.yf9{bottom:501.244500px;}
.y25f{bottom:501.490500px;}
.y8b{bottom:502.611000px;}
.y65{bottom:503.059500px;}
.y19b{bottom:503.856000px;}
.y1c5{bottom:503.905500px;}
.y212{bottom:510.949500px;}
.y111{bottom:511.480500px;}
.y154{bottom:511.510500px;}
.yc6{bottom:513.625500px;}
.y169{bottom:516.679500px;}
.y22c{bottom:517.182000px;}
.y1f3{bottom:517.405500px;}
.y2c{bottom:517.869000px;}
.y25e{bottom:518.751000px;}
.yf8{bottom:520.074000px;}
.yc4{bottom:520.563000px;}
.yc7{bottom:521.346000px;}
.y8a{bottom:521.440500px;}
.y64{bottom:521.889000px;}
.y19a{bottom:522.685500px;}
.y1c4{bottom:522.735000px;}
.y1b5{bottom:523.519500px;}
.y129{bottom:525.805500px;}
.y110{bottom:530.310000px;}
.y153{bottom:530.340000px;}
.yc3{bottom:530.814000px;}
.yc5{bottom:534.057000px;}
.y22b{bottom:534.442500px;}
.y25d{bottom:536.011500px;}
.y1f2{bottom:536.235000px;}
.y211{bottom:537.490500px;}
.yf7{bottom:538.903500px;}
.y89{bottom:540.270000px;}
.y63{bottom:540.718500px;}
.y2b{bottom:541.180500px;}
.y1c3{bottom:541.564500px;}
.y10f{bottom:549.139500px;}
.y152{bottom:549.169500px;}
.y22a{bottom:551.703000px;}
.y25c{bottom:553.272000px;}
.y128{bottom:553.615500px;}
.y1f1{bottom:555.064500px;}
.yf6{bottom:557.733000px;}
.y88{bottom:559.099500px;}
.y62{bottom:559.548000px;}
.y1c2{bottom:560.394000px;}
.y10e{bottom:567.969000px;}
.y151{bottom:567.999000px;}
.y199{bottom:568.147500px;}
.y229{bottom:568.962000px;}
.yc2{bottom:569.556000px;}
.y25b{bottom:570.531000px;}
.y210{bottom:572.638500px;}
.y1f0{bottom:573.894000px;}
.yf5{bottom:576.562500px;}
.y87{bottom:577.929000px;}
.y61{bottom:578.377500px;}
.y198{bottom:584.586000px;}
.y228{bottom:586.222500px;}
.y10d{bottom:586.798500px;}
.y150{bottom:586.828500px;}
.y25a{bottom:587.791500px;}
.yc1{bottom:588.385500px;}
.y1ef{bottom:592.723500px;}
.y195{bottom:592.804500px;}
.y1c1{bottom:593.959500px;}
.yf4{bottom:595.392000px;}
.y86{bottom:596.758500px;}
.y60{bottom:597.207000px;}
.y20f{bottom:599.179500px;}
.y197{bottom:601.024500px;}
.y259{bottom:605.052000px;}
.y10c{bottom:605.628000px;}
.y14f{bottom:605.658000px;}
.yc0{bottom:607.215000px;}
.y227{bottom:607.966500px;}
.y1ee{bottom:611.553000px;}
.yf3{bottom:614.221500px;}
.y85{bottom:615.588000px;}
.y5f{bottom:616.036500px;}
.y2a{bottom:616.330500px;}
.y20e{bottom:616.753500px;}
.y196{bottom:617.463000px;}
.y1c0{bottom:621.769500px;}
.y258{bottom:622.312500px;}
.y14e{bottom:624.486000px;}
.y10b{bottom:628.939500px;}
.y1ed{bottom:630.382500px;}
.ybc{bottom:630.538500px;}
.yf2{bottom:633.051000px;}
.y20d{bottom:634.327500px;}
.y84{bottom:634.417500px;}
.y5e{bottom:634.866000px;}
.ybf{bottom:636.388500px;}
.y257{bottom:639.573000px;}
.y194{bottom:641.403000px;}
.yb8{bottom:642.273000px;}
.yb9{bottom:642.397500px;}
.y14d{bottom:643.315500px;}
.ybb{bottom:643.531500px;}
.yb7{bottom:646.641000px;}
.y1ec{bottom:649.212000px;}
.yf1{bottom:651.879000px;}
.y20c{bottom:651.901500px;}
.ybe{bottom:653.067000px;}
.y83{bottom:653.247000px;}
.y5d{bottom:653.695500px;}
.y29{bottom:653.721000px;}
.ybd{bottom:656.757000px;}
.y256{bottom:656.833500px;}
.y193{bottom:657.840000px;}
.y10a{bottom:659.367000px;}
.y14c{bottom:662.145000px;}
.yba{bottom:662.779500px;}
.y1b1{bottom:665.266500px;}
.y1eb{bottom:668.041500px;}
.yf0{bottom:670.708500px;}
.y82{bottom:672.076500px;}
.y5c{bottom:672.525000px;}
.y28{bottom:673.177500px;}
.y255{bottom:674.094000px;}
.y190{bottom:674.278500px;}
.yb6{bottom:677.836500px;}
.y20b{bottom:678.442500px;}
.y14b{bottom:680.974500px;}
.y1ea{bottom:686.871000px;}
.yef{bottom:689.538000px;}
.y192{bottom:690.717000px;}
.y81{bottom:690.906000px;}
.y226{bottom:691.353000px;}
.y5b{bottom:691.354500px;}
.yb5{bottom:691.675500px;}
.y27{bottom:692.635500px;}
.y20a{bottom:696.016500px;}
.yb4{bottom:696.666000px;}
.y14a{bottom:699.804000px;}
.y1e9{bottom:705.700500px;}
.y191{bottom:707.155500px;}
.yee{bottom:708.367500px;}
.y254{bottom:708.613500px;}
.y80{bottom:709.735500px;}
.y225{bottom:710.182500px;}
.y5a{bottom:710.184000px;}
.y26{bottom:712.092000px;}
.y209{bottom:713.590500px;}
.yb3{bottom:715.495500px;}
.y149{bottom:718.633500px;}
.y1e8{bottom:724.530000px;}
.y253{bottom:725.874000px;}
.yec{bottom:727.197000px;}
.yed{bottom:727.414500px;}
.y7f{bottom:728.565000px;}
.y224{bottom:729.012000px;}
.y59{bottom:729.013500px;}
.y18f{bottom:731.095500px;}
.y208{bottom:731.164500px;}
.y25{bottom:731.550000px;}
.yb2{bottom:734.325000px;}
.y148{bottom:737.463000px;}
.y252{bottom:743.134500px;}
.y1e7{bottom:743.359500px;}
.y7e{bottom:747.394500px;}
.y18e{bottom:747.534000px;}
.y223{bottom:747.841500px;}
.y58{bottom:747.843000px;}
.y24{bottom:751.006500px;}
.yeb{bottom:755.337000px;}
.yea{bottom:755.553000px;}
.y147{bottom:756.292500px;}
.yb1{bottom:760.017000px;}
.y251{bottom:760.395000px;}
.y1e6{bottom:762.189000px;}
.y18d{bottom:763.972500px;}
.ye9{bottom:765.588000px;}
.y7d{bottom:766.224000px;}
.y57{bottom:766.671000px;}
.y23{bottom:770.463000px;}
.yb0{bottom:773.164500px;}
.y146{bottom:775.122000px;}
.yae{bottom:776.272500px;}
.y250{bottom:777.655500px;}
.y18c{bottom:780.411000px;}
.y1e5{bottom:781.018500px;}
.y7c{bottom:785.053500px;}
.y56{bottom:785.500500px;}
.y127{bottom:786.819000px;}
.y22{bottom:789.921000px;}
.yaf{bottom:792.412500px;}
.y24f{bottom:794.916000px;}
.y18b{bottom:796.848000px;}
.y1e4{bottom:799.848000px;}
.y55{bottom:804.330000px;}
.yad{bottom:807.469500px;}
.y7b{bottom:808.365000px;}
.y21{bottom:809.377500px;}
.y24e{bottom:812.176500px;}
.y18a{bottom:813.286500px;}
.y1e3{bottom:818.677500px;}
.y145{bottom:820.372500px;}
.y54{bottom:823.159500px;}
.yac{bottom:826.299000px;}
.y20{bottom:828.834000px;}
.y24d{bottom:829.437000px;}
.y189{bottom:829.725000px;}
.y144{bottom:836.811000px;}
.y1e2{bottom:837.507000px;}
.y53{bottom:841.989000px;}
.yab{bottom:845.127000px;}
.y188{bottom:846.163500px;}
.y24c{bottom:846.697500px;}
.y1f{bottom:848.292000px;}
.y143{bottom:853.249500px;}
.y1e1{bottom:856.335000px;}
.y52{bottom:860.818500px;}
.y187{bottom:862.602000px;}
.yaa{bottom:863.956500px;}
.y1e{bottom:867.748500px;}
.y142{bottom:869.688000px;}
.y17e{bottom:870.822000px;}
.y1e0{bottom:875.164500px;}
.y186{bottom:879.040500px;}
.y51{bottom:879.648000px;}
.y24b{bottom:881.217000px;}
.y141{bottom:886.126500px;}
.y1d{bottom:887.206500px;}
.ya9{bottom:892.201500px;}
.y1df{bottom:893.994000px;}
.ya8{bottom:895.414500px;}
.y185{bottom:895.479000px;}
.y50{bottom:898.477500px;}
.y140{bottom:902.565000px;}
.y1c{bottom:906.663000px;}
.y184{bottom:911.917500px;}
.y1de{bottom:912.823500px;}
.y24a{bottom:915.738000px;}
.y4f{bottom:917.307000px;}
.y13f{bottom:919.003500px;}
.ya7{bottom:926.722500px;}
.y183{bottom:928.356000px;}
.ya6{bottom:930.151500px;}
.y1dd{bottom:931.653000px;}
.y249{bottom:932.998500px;}
.y4e{bottom:936.136500px;}
.y13e{bottom:942.942000px;}
.y1b{bottom:944.460000px;}
.y182{bottom:944.794500px;}
.y248{bottom:950.259000px;}
.y1dc{bottom:950.482500px;}
.y4d{bottom:954.966000px;}
.y181{bottom:961.233000px;}
.ya5{bottom:961.242000px;}
.y1a{bottom:964.939500px;}
.y247{bottom:967.519500px;}
.y1db{bottom:969.312000px;}
.y4c{bottom:973.795500px;}
.y13d{bottom:974.562000px;}
.y180{bottom:977.670000px;}
.ya3{bottom:980.071500px;}
.y19{bottom:981.079500px;}
.y273{bottom:983.211000px;}
.y246{bottom:984.780000px;}
.y1da{bottom:988.141500px;}
.ya4{bottom:992.184000px;}
.y4b{bottom:992.625000px;}
.y17f{bottom:994.108500px;}
.yda{bottom:998.049000px;}
.ya2{bottom:998.901000px;}
.y272{bottom:1000.470000px;}
.y245{bottom:1002.039000px;}
.y1d9{bottom:1006.971000px;}
.y4a{bottom:1011.454500px;}
.ya1{bottom:1017.730500px;}
.y17d{bottom:1018.048500px;}
.y244{bottom:1019.299500px;}
.y18{bottom:1024.966500px;}
.y1d8{bottom:1025.800500px;}
.y49{bottom:1030.284000px;}
.y243{bottom:1036.560000px;}
.y1d7{bottom:1044.630000px;}
.y48{bottom:1049.113500px;}
.y17c{bottom:1049.668500px;}
.ya0{bottom:1052.251500px;}
.y242{bottom:1053.820500px;}
.y1d6{bottom:1063.459500px;}
.y17{bottom:1064.886000px;}
.y47{bottom:1067.943000px;}
.y241{bottom:1071.081000px;}
.y1d5{bottom:1082.289000px;}
.y46{bottom:1086.772500px;}
.y240{bottom:1088.341500px;}
.y16{bottom:1093.131000px;}
.y45{bottom:1105.602000px;}
.y13{bottom:1136.617500px;}
.y44{bottom:1168.366500px;}
.h26{height:2.271480px;}
.h10{height:8.310432px;}
.h12{height:20.890391px;}
.h22{height:32.709312px;}
.h17{height:33.299897px;}
.h8{height:33.821261px;}
.ha{height:38.734848px;}
.h2{height:39.457760px;}
.h2a{height:41.544042px;}
.h19{height:42.840113px;}
.hc{height:43.038432px;}
.h5{height:43.815515px;}
.h9{height:45.094826px;}
.h16{height:46.714950px;}
.hb{height:50.731891px;}
.h3{height:50.931027px;}
.h11{height:51.438780px;}
.h1d{height:54.405312px;}
.h7{height:54.411312px;}
.hd{height:56.368391px;}
.h1a{height:56.488391px;}
.h14{height:56.754432px;}
.he{height:57.199200px;}
.hf{height:57.205200px;}
.h13{height:57.393312px;}
.h1c{height:64.536113px;}
.h15{height:64.542113px;}
.h18{height:65.024177px;}
.h1e{height:66.676950px;}
.h1f{height:67.524113px;}
.h1b{height:67.530113px;}
.h2b{height:71.608848px;}
.h20{height:74.865312px;}
.h21{height:77.161200px;}
.h4{height:77.379634px;}
.h6{height:77.469696px;}
.h24{height:84.285515px;}
.h2c{height:96.838391px;}
.h29{height:97.372391px;}
.h23{height:97.378391px;}
.h28{height:105.006113px;}
.h25{height:108.534113px;}
.h27{height:134.589480px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:207.609956px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2{left:58.054042px;}
.xb5{left:85.848000px;}
.xbc{left:238.488000px;}
.x4{left:248.526000px;}
.x3{left:249.591000px;}
.xb3{left:250.635000px;}
.x98{left:258.556500px;}
.x67{left:271.033500px;}
.xad{left:272.583000px;}
.x90{left:275.430000px;}
.x19{left:279.175500px;}
.x6{left:281.479500px;}
.xb4{left:285.591000px;}
.x1a{left:286.648500px;}
.x9a{left:287.799000px;}
.x97{left:289.440000px;}
.x6e{left:292.639500px;}
.x84{left:293.836500px;}
.x6f{left:301.848000px;}
.xa3{left:306.364500px;}
.x5{left:307.872000px;}
.xb0{left:311.767500px;}
.x5d{left:314.389500px;}
.x8b{left:319.486500px;}
.x9f{left:326.424000px;}
.x5e{left:329.334000px;}
.x8c{left:331.024500px;}
.xd{left:332.361000px;}
.x81{left:334.168500px;}
.x5f{left:336.783000px;}
.xe{left:339.832500px;}
.x70{left:341.305500px;}
.xb{left:349.332000px;}
.x60{left:351.727500px;}
.xc{left:356.805000px;}
.x31{left:359.655000px;}
.x24{left:363.433500px;}
.x71{left:366.925500px;}
.x74{left:370.351500px;}
.x88{left:372.636000px;}
.xb2{left:375.313500px;}
.x92{left:377.332500px;}
.x25{left:378.378000px;}
.x2b{left:381.856500px;}
.x69{left:383.425500px;}
.x4c{left:385.639500px;}
.x82{left:387.550500px;}
.xa2{left:390.459000px;}
.x8d{left:393.148500px;}
.x33{left:394.929000px;}
.x2c{left:396.801000px;}
.x6a{left:398.368500px;}
.x2d{left:400.548000px;}
.x89{left:403.194000px;}
.x34{left:409.702500px;}
.x68{left:411.628500px;}
.x2e{left:415.491000px;}
.x9d{left:417.729000px;}
.x1b{left:426.022500px;}
.x99{left:428.550000px;}
.x1d{left:431.632500px;}
.xb1{left:433.945500px;}
.x8e{left:435.795000px;}
.x32{left:436.990500px;}
.x1c{left:440.965500px;}
.x11{left:442.492500px;}
.x80{left:445.444500px;}
.x1e{left:446.577000px;}
.x12{left:449.964000px;}
.x57{left:456.001500px;}
.x61{left:463.528500px;}
.x94{left:466.009500px;}
.x51{left:469.053000px;}
.x91{left:473.448000px;}
.x8f{left:474.663000px;}
.xf{left:476.446500px;}
.x35{left:479.134500px;}
.x93{left:482.068500px;}
.x10{left:483.918000px;}
.xa8{left:487.561500px;}
.x2f{left:489.960000px;}
.x66{left:494.260500px;}
.x6b{left:500.628000px;}
.x4d{left:503.796000px;}
.x30{left:504.903000px;}
.x43{left:509.811000px;}
.x42{left:511.887000px;}
.x41{left:514.651500px;}
.x40{left:517.147500px;}
.x7e{left:526.818000px;}
.x47{left:528.706500px;}
.x46{left:529.921500px;}
.x64{left:531.000000px;}
.x45{left:532.812000px;}
.x7c{left:536.311500px;}
.x6d{left:537.756000px;}
.x6c{left:540.072000px;}
.x4b{left:541.536000px;}
.x65{left:545.943000px;}
.x36{left:547.768500px;}
.x9b{left:550.191000px;}
.x58{left:551.434500px;}
.xa6{left:553.791000px;}
.x62{left:560.172000px;}
.x3a{left:562.258500px;}
.x9c{left:565.135500px;}
.x4e{left:568.191000px;}
.x3b{left:569.476500px;}
.x95{left:573.772500px;}
.x63{left:575.116500px;}
.x59{left:577.504500px;}
.x54{left:579.055500px;}
.x53{left:580.933500px;}
.x48{left:584.169000px;}
.x52{left:585.285000px;}
.x3c{left:590.091000px;}
.x5a{left:596.236500px;}
.xae{left:598.576500px;}
.x56{left:603.361500px;}
.x55{left:604.764000px;}
.x2a{left:609.987000px;}
.xaf{left:613.519500px;}
.x9{left:616.702500px;}
.x5b{left:621.622500px;}
.xa{left:624.174000px;}
.x75{left:630.720000px;}
.x17{left:632.301000px;}
.x28{left:636.016500px;}
.x7f{left:637.285500px;}
.x4f{left:641.371500px;}
.x8a{left:643.030500px;}
.xaa{left:644.049000px;}
.x18{left:647.245500px;}
.x29{left:650.959500px;}
.x86{left:652.024500px;}
.x7d{left:653.658000px;}
.xab{left:658.993500px;}
.x23{left:663.256500px;}
.x26{left:665.377500px;}
.x87{left:666.520500px;}
.x96{left:670.285500px;}
.xac{left:674.649000px;}
.xb6{left:675.676500px;}
.x21{left:677.626500px;}
.x27{left:680.320500px;}
.x7{left:682.512000px;}
.x8{left:689.983500px;}
.x22{left:692.571000px;}
.xba{left:696.795000px;}
.x85{left:698.587500px;}
.xb7{left:702.576000px;}
.x3d{left:703.686000px;}
.x76{left:709.156500px;}
.x3e{left:710.904000px;}
.x7a{left:716.358000px;}
.x77{left:717.772500px;}
.x49{left:722.452500px;}
.x72{left:726.645000px;}
.x3f{left:730.681500px;}
.xa9{left:733.335000px;}
.x37{left:737.424000px;}
.xa4{left:739.770000px;}
.x4a{left:742.297500px;}
.xa5{left:747.786000px;}
.x78{left:749.919000px;}
.x9e{left:752.235000px;}
.x39{left:765.193500px;}
.xbb{left:766.206000px;}
.xb9{left:777.322500px;}
.x7b{left:782.832000px;}
.x44{left:783.891000px;}
.xa7{left:787.669500px;}
.x79{left:789.136500px;}
.x13{left:790.428000px;}
.xb8{left:792.006000px;}
.x83{left:793.020000px;}
.xa0{left:795.513000px;}
.x14{left:797.899500px;}
.x1f{left:799.230000px;}
.x38{left:806.923500px;}
.xa1{left:810.456000px;}
.x20{left:814.173000px;}
.x15{left:817.698000px;}
.x5c{left:821.488500px;}
.x50{left:828.759000px;}
.x16{left:832.642500px;}
.x73{left:837.064500px;}
@media print{
.v3{vertical-align:-30.869333pt;}
.v2{vertical-align:-15.434667pt;}
.v10{vertical-align:-13.301333pt;}
.v7{vertical-align:-10.453333pt;}
.v9{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:5.077333pt;}
.v6{vertical-align:12.192000pt;}
.v11{vertical-align:13.301333pt;}
.va{vertical-align:15.530667pt;}
.v8{vertical-align:17.744000pt;}
.v1{vertical-align:19.290667pt;}
.v5{vertical-align:21.941333pt;}
.v12{vertical-align:29.221333pt;}
.vd{vertical-align:35.973333pt;}
.vb{vertical-align:37.029333pt;}
.v4{vertical-align:43.066667pt;}
.ve{vertical-align:58.394667pt;}
.vf{vertical-align:81.168000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000234pt;}
.ls6d{letter-spacing:0.002422pt;}
.ls8c{letter-spacing:0.002525pt;}
.ls6e{letter-spacing:0.002825pt;}
.ls73{letter-spacing:0.003230pt;}
.ls72{letter-spacing:0.003733pt;}
.ls71{letter-spacing:0.004541pt;}
.ls75{letter-spacing:0.265669pt;}
.ls66{letter-spacing:0.451918pt;}
.ls2b{letter-spacing:0.482502pt;}
.ls47{letter-spacing:0.487835pt;}
.ls63{letter-spacing:0.505295pt;}
.ls51{letter-spacing:0.507200pt;}
.ls32{letter-spacing:0.596214pt;}
.ls54{letter-spacing:0.601548pt;}
.ls4f{letter-spacing:0.663020pt;}
.ls4e{letter-spacing:0.664079pt;}
.ls4c{letter-spacing:0.665067pt;}
.ls4a{letter-spacing:0.665318pt;}
.ls4b{letter-spacing:0.668353pt;}
.ls3e{letter-spacing:0.766011pt;}
.ls3d{letter-spacing:0.784508pt;}
.ls30{letter-spacing:0.883733pt;}
.ls3c{letter-spacing:0.887756pt;}
.ls2d{letter-spacing:0.889067pt;}
.ls43{letter-spacing:0.989169pt;}
.ls38{letter-spacing:1.006628pt;}
.ls52{letter-spacing:1.009041pt;}
.ls65{letter-spacing:1.011962pt;}
.ls48{letter-spacing:1.165089pt;}
.ls42{letter-spacing:1.168518pt;}
.ls39{letter-spacing:1.170422pt;}
.ls53{letter-spacing:1.198903pt;}
.ls19{letter-spacing:1.212851pt;}
.ls2c{letter-spacing:1.262881pt;}
.ls2a{letter-spacing:1.296508pt;}
.ls37{letter-spacing:1.316104pt;}
.ls3b{letter-spacing:1.325067pt;}
.ls22{letter-spacing:1.327207pt;}
.ls20{letter-spacing:1.327711pt;}
.ls56{letter-spacing:1.331985pt;}
.ls59{letter-spacing:1.333044pt;}
.lsa{letter-spacing:1.370804pt;}
.ls46{letter-spacing:1.411454pt;}
.ls16{letter-spacing:1.794502pt;}
.ls1e{letter-spacing:1.799835pt;}
.ls7{letter-spacing:1.918771pt;}
.ls1c{letter-spacing:1.924104pt;}
.ls34{letter-spacing:1.935207pt;}
.ls28{letter-spacing:1.940541pt;}
.ls57{letter-spacing:1.950881pt;}
.ls1d{letter-spacing:2.257574pt;}
.ls8{letter-spacing:2.262908pt;}
.ls5b{letter-spacing:2.309852pt;}
.ls18{letter-spacing:2.324104pt;}
.ls64{letter-spacing:2.371918pt;}
.ls9{letter-spacing:2.807835pt;}
.ls5e{letter-spacing:2.976518pt;}
.ls5a{letter-spacing:3.118881pt;}
.ls58{letter-spacing:3.318400pt;}
.ls3f{letter-spacing:3.566121pt;}
.ls7a{letter-spacing:3.719371pt;}
.ls44{letter-spacing:3.825067pt;}
.ls7b{letter-spacing:3.985040pt;}
.ls31{letter-spacing:4.112508pt;}
.ls7d{letter-spacing:4.728914pt;}
.ls79{letter-spacing:5.207119pt;}
.ls87{letter-spacing:5.685324pt;}
.ls7e{letter-spacing:6.748001pt;}
.ls82{letter-spacing:7.119938pt;}
.ls80{letter-spacing:7.426926pt;}
.ls4d{letter-spacing:7.703020pt;}
.ls7c{letter-spacing:7.757545pt;}
.ls7f{letter-spacing:8.466926pt;}
.ls21{letter-spacing:8.694082pt;}
.ls0{letter-spacing:9.298933pt;}
.ls83{letter-spacing:9.670364pt;}
.ls1f{letter-spacing:10.187416pt;}
.ls3{letter-spacing:10.626533pt;}
.ls78{letter-spacing:10.954243pt;}
.ls77{letter-spacing:10.959577pt;}
.ls5d{letter-spacing:10.968429pt;}
.ls55{letter-spacing:10.995733pt;}
.ls90{letter-spacing:11.139798pt;}
.ls8e{letter-spacing:11.273585pt;}
.ls12{letter-spacing:11.629762pt;}
.ls24{letter-spacing:11.658378pt;}
.ls8b{letter-spacing:11.712827pt;}
.ls74{letter-spacing:11.901986pt;}
.ls8d{letter-spacing:11.946232pt;}
.ls88{letter-spacing:11.954133pt;}
.ls8a{letter-spacing:11.959467pt;}
.ls89{letter-spacing:11.977798pt;}
.ls8f{letter-spacing:12.093383pt;}
.ls91{letter-spacing:12.183152pt;}
.ls60{letter-spacing:12.696429pt;}
.ls62{letter-spacing:12.963096pt;}
.lsc{letter-spacing:13.087241pt;}
.ls6b{letter-spacing:13.281867pt;}
.ls70{letter-spacing:13.283467pt;}
.ls5f{letter-spacing:13.307185pt;}
.ls6f{letter-spacing:13.389734pt;}
.ls5c{letter-spacing:13.654400pt;}
.lsd{letter-spacing:13.946378pt;}
.lsf{letter-spacing:14.214963pt;}
.ls2e{letter-spacing:14.437841pt;}
.ls1b{letter-spacing:15.380910pt;}
.ls15{letter-spacing:15.386243pt;}
.ls11{letter-spacing:16.061762pt;}
.ls17{letter-spacing:16.084541pt;}
.ls10{letter-spacing:16.085044pt;}
.ls1a{letter-spacing:16.089874pt;}
.ls14{letter-spacing:16.090378pt;}
.ls41{letter-spacing:17.315505pt;}
.ls85{letter-spacing:17.368259pt;}
.ls6{letter-spacing:17.455577pt;}
.ls29{letter-spacing:17.730953pt;}
.ls5{letter-spacing:18.159711pt;}
.lse{letter-spacing:18.451096pt;}
.ls6a{letter-spacing:18.569067pt;}
.ls45{letter-spacing:18.584838pt;}
.ls27{letter-spacing:18.776884pt;}
.ls84{letter-spacing:18.936259pt;}
.ls61{letter-spacing:19.593548pt;}
.ls68{letter-spacing:19.659531pt;}
.ls25{letter-spacing:20.509762pt;}
.ls76{letter-spacing:21.773762pt;}
.ls6c{letter-spacing:22.024429pt;}
.ls2f{letter-spacing:23.517762pt;}
.ls69{letter-spacing:26.104429pt;}
.ls36{letter-spacing:28.554243pt;}
.ls35{letter-spacing:29.253852pt;}
.ls50{letter-spacing:30.761067pt;}
.ls3a{letter-spacing:32.072838pt;}
.ls40{letter-spacing:32.080508pt;}
.ls86{letter-spacing:43.682926pt;}
.ls81{letter-spacing:44.578926pt;}
.ls1{letter-spacing:55.787733pt;}
.ls2{letter-spacing:57.174803pt;}
.ls67{letter-spacing:565.947708pt;}
.ls49{letter-spacing:726.942121pt;}
.ls33{letter-spacing:758.694400pt;}
.ls13{letter-spacing:846.377874pt;}
.ls26{letter-spacing:863.274378pt;}
.ls23{letter-spacing:882.985295pt;}
.wsb{word-spacing:-25.362056pt;}
.wsf8{word-spacing:-22.953830pt;}
.wse5{word-spacing:-21.041011pt;}
.wsf1{word-spacing:-20.403405pt;}
.wsea{word-spacing:-20.031468pt;}
.wsfd{word-spacing:-18.968790pt;}
.wsdb{word-spacing:-18.490586pt;}
.wse9{word-spacing:-18.012381pt;}
.ws60{word-spacing:-13.283467pt;}
.ws9d{word-spacing:-11.955200pt;}
.ws2f{word-spacing:-10.626800pt;}
.wsd{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.wse1{word-spacing:-4.941450pt;}
.wsf9{word-spacing:-3.400567pt;}
.wsef{word-spacing:-3.241166pt;}
.ws72{word-spacing:-3.134898pt;}
.ws5e{word-spacing:-2.922363pt;}
.ws89{word-spacing:-2.869229pt;}
.wsed{word-spacing:-2.656693pt;}
.ws38{word-spacing:-2.497292pt;}
.wsb1{word-spacing:-2.391040pt;}
.wsb7{word-spacing:-2.391024pt;}
.wse3{word-spacing:-2.337890pt;}
.wscb{word-spacing:-2.289193pt;}
.wscd{word-spacing:-2.288838pt;}
.wsb3{word-spacing:-2.104115pt;}
.ws3f{word-spacing:-2.019087pt;}
.wsf4{word-spacing:-1.965953pt;}
.ws51{word-spacing:-1.859685pt;}
.wsd9{word-spacing:-1.817190pt;}
.ws5d{word-spacing:-1.806551pt;}
.ws31{word-spacing:-1.700284pt;}
.ws54{word-spacing:-1.647150pt;}
.wsbc{word-spacing:-1.625907pt;}
.ws66{word-spacing:-1.620895pt;}
.ws5c{word-spacing:-1.594016pt;}
.ws68{word-spacing:-1.540882pt;}
.wsf2{word-spacing:-1.487748pt;}
.ws44{word-spacing:-1.434614pt;}
.wsc7{word-spacing:-1.381481pt;}
.wsd0{word-spacing:-1.328347pt;}
.ws5a{word-spacing:-1.275213pt;}
.ws17{word-spacing:-1.195520pt;}
.ws92{word-spacing:-1.168945pt;}
.ws33{word-spacing:-1.115811pt;}
.ws14{word-spacing:-1.099878pt;}
.ws4e{word-spacing:-1.062677pt;}
.ws11{word-spacing:-1.052058pt;}
.ws93{word-spacing:-1.009543pt;}
.wsbb{word-spacing:-0.956416pt;}
.ws64{word-spacing:-0.956410pt;}
.ws1b{word-spacing:-0.908595pt;}
.ws88{word-spacing:-0.903276pt;}
.ws15{word-spacing:-0.860774pt;}
.ws55{word-spacing:-0.850142pt;}
.ws116{word-spacing:-0.812954pt;}
.ws7a{word-spacing:-0.797008pt;}
.wsb4{word-spacing:-0.765133pt;}
.ws94{word-spacing:-0.743874pt;}
.ws95{word-spacing:-0.690740pt;}
.ws10d{word-spacing:-0.669491pt;}
.ws36{word-spacing:-0.637606pt;}
.ws43{word-spacing:-0.584473pt;}
.ws12{word-spacing:-0.526029pt;}
.ws67{word-spacing:-0.478205pt;}
.ws91{word-spacing:-0.425071pt;}
.ws109{word-spacing:-0.382566pt;}
.wsb2{word-spacing:-0.334746pt;}
.ws3e{word-spacing:-0.318803pt;}
.ws1f{word-spacing:-0.265669pt;}
.ws100{word-spacing:-0.239104pt;}
.ws63{word-spacing:-0.222758pt;}
.ws1e{word-spacing:-0.212535pt;}
.wsd8{word-spacing:-0.191283pt;}
.ws24{word-spacing:-0.159402pt;}
.wsc5{word-spacing:-0.143462pt;}
.ws3b{word-spacing:-0.106268pt;}
.ws10a{word-spacing:-0.095642pt;}
.ws25{word-spacing:-0.053134pt;}
.wsa7{word-spacing:-0.047821pt;}
.ws118{word-spacing:-0.006050pt;}
.ws107{word-spacing:-0.004608pt;}
.ws8f{word-spacing:-0.003370pt;}
.ws103{word-spacing:-0.003209pt;}
.ws8d{word-spacing:-0.001770pt;}
.ws65{word-spacing:-0.000493pt;}
.ws108{word-spacing:-0.000196pt;}
.ws1{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.003199pt;}
.wsd2{word-spacing:0.047821pt;}
.ws30{word-spacing:0.053134pt;}
.ws10b{word-spacing:0.095642pt;}
.ws22{word-spacing:0.106268pt;}
.wsd3{word-spacing:0.143462pt;}
.ws4f{word-spacing:0.159402pt;}
.ws115{word-spacing:0.191283pt;}
.ws32{word-spacing:0.212535pt;}
.ws105{word-spacing:0.239104pt;}
.ws2a{word-spacing:0.265669pt;}
.ws16{word-spacing:0.286925pt;}
.ws23{word-spacing:0.318803pt;}
.ws62{word-spacing:0.371937pt;}
.ws8a{word-spacing:0.425071pt;}
.ws73{word-spacing:0.478205pt;}
.ws45{word-spacing:0.531339pt;}
.ws104{word-spacing:0.573850pt;}
.ws40{word-spacing:0.584473pt;}
.ws53{word-spacing:0.637606pt;}
.wsad{word-spacing:0.690740pt;}
.wsc6{word-spacing:0.743874pt;}
.ws87{word-spacing:0.797008pt;}
.ws47{word-spacing:0.850142pt;}
.ws19{word-spacing:0.860774pt;}
.ws46{word-spacing:0.903276pt;}
.ws3c{word-spacing:0.956410pt;}
.wsc4{word-spacing:1.004237pt;}
.ws7b{word-spacing:1.009543pt;}
.wsd7{word-spacing:1.052058pt;}
.ws5f{word-spacing:1.062677pt;}
.ws50{word-spacing:1.115811pt;}
.ws57{word-spacing:1.222079pt;}
.ws110{word-spacing:1.243341pt;}
.ws4b{word-spacing:1.275213pt;}
.wsf{word-spacing:1.291162pt;}
.ws26{word-spacing:1.328347pt;}
.ws77{word-spacing:1.381481pt;}
.ws3d{word-spacing:1.487748pt;}
.ws2d{word-spacing:1.540882pt;}
.ws101{word-spacing:1.578086pt;}
.ws35{word-spacing:1.594016pt;}
.wsb8{word-spacing:1.647150pt;}
.wsae{word-spacing:1.700284pt;}
.ws49{word-spacing:1.753418pt;}
.wsd5{word-spacing:1.769370pt;}
.ws98{word-spacing:1.859685pt;}
.wsb6{word-spacing:1.912819pt;}
.ws1a{word-spacing:1.912832pt;}
.ws75{word-spacing:1.965953pt;}
.ws58{word-spacing:2.019087pt;}
.ws78{word-spacing:2.072221pt;}
.wsbe{word-spacing:2.125355pt;}
.wsca{word-spacing:2.135313pt;}
.wscc{word-spacing:2.140374pt;}
.ws81{word-spacing:2.178489pt;}
.ws2{word-spacing:2.231616pt;}
.ws7c{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws10f{word-spacing:2.247578pt;}
.ws5b{word-spacing:2.284756pt;}
.wsa1{word-spacing:2.391024pt;}
.wsa0{word-spacing:2.444158pt;}
.wsaf{word-spacing:2.497292pt;}
.ws13{word-spacing:2.534502pt;}
.wscf{word-spacing:2.550426pt;}
.wse{word-spacing:2.550432pt;}
.ws11a{word-spacing:2.630144pt;}
.ws4c{word-spacing:2.656693pt;}
.ws18{word-spacing:2.677965pt;}
.ws84{word-spacing:2.709827pt;}
.ws112{word-spacing:2.725786pt;}
.ws42{word-spacing:2.762961pt;}
.ws6d{word-spacing:2.800140pt;}
.ws85{word-spacing:2.801103pt;}
.ws61{word-spacing:2.816095pt;}
.ws1c{word-spacing:2.861926pt;}
.ws10e{word-spacing:2.862447pt;}
.ws111{word-spacing:2.863360pt;}
.ws113{word-spacing:2.866739pt;}
.ws106{word-spacing:2.868361pt;}
.ws4a{word-spacing:2.869229pt;}
.wsfe{word-spacing:2.869248pt;}
.ws9a{word-spacing:2.922363pt;}
.ws80{word-spacing:2.975497pt;}
.ws48{word-spacing:3.028630pt;}
.ws34{word-spacing:3.081764pt;}
.wsb9{word-spacing:3.134898pt;}
.ws119{word-spacing:3.156173pt;}
.ws1d{word-spacing:3.188032pt;}
.ws59{word-spacing:3.241166pt;}
.wsd1{word-spacing:3.294300pt;}
.ws41{word-spacing:3.347434pt;}
.ws7f{word-spacing:3.400567pt;}
.ws52{word-spacing:3.506835pt;}
.ws3a{word-spacing:3.559969pt;}
.wsd4{word-spacing:3.682202pt;}
.ws76{word-spacing:3.719371pt;}
.ws9f{word-spacing:3.772505pt;}
.ws11c{word-spacing:3.777843pt;}
.ws8b{word-spacing:3.825638pt;}
.wsd6{word-spacing:3.825664pt;}
.ws10c{word-spacing:3.873485pt;}
.ws29{word-spacing:3.931906pt;}
.ws2b{word-spacing:3.985040pt;}
.ws79{word-spacing:4.038174pt;}
.ws27{word-spacing:4.091308pt;}
.ws11b{word-spacing:4.112589pt;}
.ws4d{word-spacing:4.144442pt;}
.ws39{word-spacing:4.197575pt;}
.ws9{word-spacing:4.240070pt;}
.wsa{word-spacing:4.314458pt;}
.ws114{word-spacing:4.399514pt;}
.ws6c{word-spacing:4.463245pt;}
.ws56{word-spacing:4.622646pt;}
.wsbd{word-spacing:4.675780pt;}
.ws21{word-spacing:4.728914pt;}
.wsbf{word-spacing:4.782048pt;}
.wsda{word-spacing:4.829901pt;}
.wsc9{word-spacing:5.153985pt;}
.ws20{word-spacing:5.313387pt;}
.ws96{word-spacing:5.366521pt;}
.ws6a{word-spacing:5.472788pt;}
.ws69{word-spacing:5.525922pt;}
.ws10{word-spacing:5.595034pt;}
.ws2c{word-spacing:5.632190pt;}
.wsc0{word-spacing:5.685324pt;}
.ws97{word-spacing:5.738458pt;}
.ws83{word-spacing:5.791591pt;}
.ws37{word-spacing:6.057261pt;}
.ws117{word-spacing:6.264525pt;}
.wse0{word-spacing:6.322930pt;}
.ws7e{word-spacing:6.376064pt;}
.ws7d{word-spacing:6.429198pt;}
.ws28{word-spacing:6.535466pt;}
.ws9e{word-spacing:6.588599pt;}
.ws6e{word-spacing:6.694867pt;}
.ws70{word-spacing:6.748001pt;}
.ws82{word-spacing:6.854269pt;}
.ws7{word-spacing:6.918010pt;}
.wsc1{word-spacing:7.013670pt;}
.wsb5{word-spacing:7.438741pt;}
.ws102{word-spacing:8.123051pt;}
.wsff{word-spacing:8.123059pt;}
.ws8c{word-spacing:8.182615pt;}
.ws71{word-spacing:8.448285pt;}
.ws6f{word-spacing:8.501419pt;}
.ws99{word-spacing:9.134767pt;}
.ws5{word-spacing:10.823338pt;}
.wsdc{word-spacing:12.895947pt;}
.ws90{word-spacing:13.217867pt;}
.ws8e{word-spacing:13.218433pt;}
.ws6{word-spacing:14.319536pt;}
.ws74{word-spacing:15.945370pt;}
.wsf6{word-spacing:18.703121pt;}
.wse8{word-spacing:18.915657pt;}
.wse7{word-spacing:19.606397pt;}
.wseb{word-spacing:19.978334pt;}
.wsee{word-spacing:20.031468pt;}
.wsdf{word-spacing:20.047947pt;}
.ws6b{word-spacing:20.137735pt;}
.wsdd{word-spacing:21.519216pt;}
.wsfa{word-spacing:22.014240pt;}
.wse2{word-spacing:22.499573pt;}
.wse6{word-spacing:22.680907pt;}
.wsfb{word-spacing:23.006964pt;}
.ws8{word-spacing:23.208806pt;}
.ws4{word-spacing:23.858002pt;}
.wsf3{word-spacing:24.302240pt;}
.wsec{word-spacing:25.132319pt;}
.wsf5{word-spacing:25.397988pt;}
.wsde{word-spacing:26.551758pt;}
.wsfc{word-spacing:30.110930pt;}
.wsf0{word-spacing:31.518930pt;}
.wse4{word-spacing:32.148263pt;}
.wsf7{word-spacing:34.100263pt;}
.wsc{word-spacing:40.941867pt;}
.wsb0{word-spacing:85.455770pt;}
.wsa2{word-spacing:125.452681pt;}
.wsa8{word-spacing:201.134285pt;}
.wsa6{word-spacing:213.089485pt;}
.wsa5{word-spacing:225.044685pt;}
.wsa4{word-spacing:225.092506pt;}
.wsa3{word-spacing:289.459302pt;}
.wsce{word-spacing:426.657178pt;}
.wsa9{word-spacing:643.572326pt;}
.wsaa{word-spacing:666.526310pt;}
.wsac{word-spacing:704.017818pt;}
.wsab{word-spacing:773.884006pt;}
.ws86{word-spacing:816.667531pt;}
.wsc2{word-spacing:923.094666pt;}
.wsc3{word-spacing:924.582414pt;}
.wsc8{word-spacing:944.826417pt;}
.ws9b{word-spacing:945.570291pt;}
.ws9c{word-spacing:947.058039pt;}
.wsba{word-spacing:983.879809pt;}
._5{margin-left:-10.616218pt;}
._60{margin-left:-8.909978pt;}
._6{margin-left:-7.077478pt;}
._a{margin-left:-6.009539pt;}
._1f{margin-left:-4.930777pt;}
._0{margin-left:-4.016909pt;}
._12{margin-left:-3.055275pt;}
._3{margin-left:-2.045648pt;}
._9{margin-left:-1.073350pt;}
._1c{width:1.328347pt;}
._7{width:2.651623pt;}
._64{width:3.708687pt;}
._19{width:4.686486pt;}
._51{width:6.381134pt;}
._56{width:7.428068pt;}
._53{width:8.426670pt;}
._52{width:9.320042pt;}
._5a{width:10.498891pt;}
._2{width:11.530016pt;}
._d{width:13.272890pt;}
._10{width:14.367357pt;}
._f{width:15.552406pt;}
._11{width:17.002837pt;}
._15{width:18.394991pt;}
._c{width:19.691523pt;}
._48{width:20.685159pt;}
._16{width:21.593696pt;}
._1{width:23.059276pt;}
._e{width:24.638358pt;}
._1a{width:25.610524pt;}
._4{width:27.188522pt;}
._13{width:29.223627pt;}
._1b{width:30.987717pt;}
._1e{width:31.890993pt;}
._5d{width:32.785998pt;}
._b{width:34.542499pt;}
._1d{width:35.447529pt;}
._14{width:36.694237pt;}
._20{width:37.820640pt;}
._58{width:38.782620pt;}
._57{width:39.869807pt;}
._5e{width:41.570492pt;}
._4f{width:42.783436pt;}
._5c{width:43.741586pt;}
._54{width:44.864649pt;}
._5f{width:46.849087pt;}
._55{width:47.953399pt;}
._61{width:49.123916pt;}
._59{width:50.020381pt;}
._5b{width:50.913587pt;}
._63{width:54.993920pt;}
._8{width:61.661897pt;}
._50{width:63.745126pt;}
._44{width:70.679142pt;}
._41{width:73.213645pt;}
._62{width:78.856499pt;}
._38{width:80.147661pt;}
._43{width:86.316544pt;}
._42{width:100.232397pt;}
._3d{width:103.006003pt;}
._47{width:124.621005pt;}
._37{width:125.912166pt;}
._3f{width:129.068339pt;}
._3e{width:135.906714pt;}
._40{width:154.795930pt;}
._3c{width:172.680909pt;}
._39{width:185.353421pt;}
._3a{width:191.522304pt;}
._3b{width:192.765645pt;}
._28{width:213.137306pt;}
._26{width:225.092506pt;}
._46{width:228.344320pt;}
._45{width:235.087053pt;}
._29{width:236.952064pt;}
._27{width:259.279121pt;}
._35{width:270.378803pt;}
._23{width:290.516594pt;}
._21{width:292.376371pt;}
._4b{width:297.780122pt;}
._22{width:313.369702pt;}
._2c{width:344.782765pt;}
._49{width:384.265619pt;}
._2a{width:392.704410pt;}
._24{width:403.798835pt;}
._4e{width:414.271590pt;}
._2d{width:435.695309pt;}
._2b{width:446.072422pt;}
._33{width:459.063798pt;}
._25{width:466.826650pt;}
._32{width:471.178342pt;}
._34{width:483.803034pt;}
._4a{width:520.880754pt;}
._4c{width:565.002752pt;}
._31{width:581.548749pt;}
._30{width:589.582643pt;}
._4d{width:649.980314pt;}
._2e{width:663.465779pt;}
._2f{width:737.731482pt;}
._17{width:824.712478pt;}
._36{width:2212.253409pt;}
._18{width:2233.506742pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs9{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fsa{font-size:74.387733pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:101.448225pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:1.545957pt;}
.y14{bottom:26.907593pt;}
.y43{bottom:28.346667pt;}
.y168{bottom:81.480000pt;}
.y126{bottom:86.030667pt;}
.ye8{bottom:89.050667pt;}
.y1bf{bottom:90.756000pt;}
.y207{bottom:91.297333pt;}
.y42{bottom:92.108000pt;}
.y12{bottom:93.018667pt;}
.y222{bottom:93.582667pt;}
.yd9{bottom:94.024000pt;}
.y7a{bottom:95.681333pt;}
.y1b0{bottom:96.389333pt;}
.y167{bottom:98.217333pt;}
.y1b4{bottom:98.741333pt;}
.y125{bottom:102.768000pt;}
.ye7{bottom:105.788000pt;}
.y1be{bottom:107.493333pt;}
.y206{bottom:108.034667pt;}
.y13c{bottom:108.370667pt;}
.y41{bottom:108.844000pt;}
.y11{bottom:108.920000pt;}
.y17b{bottom:109.433333pt;}
.y221{bottom:110.320000pt;}
.yd8{bottom:110.761333pt;}
.y9f{bottom:112.020000pt;}
.y79{bottom:112.418667pt;}
.y1af{bottom:113.126667pt;}
.y166{bottom:114.954667pt;}
.y124{bottom:119.505333pt;}
.ye6{bottom:122.525333pt;}
.y13b{bottom:122.982667pt;}
.y1b3{bottom:123.461333pt;}
.y1bd{bottom:124.230667pt;}
.y205{bottom:124.772000pt;}
.y10{bottom:124.820000pt;}
.y40{bottom:125.581333pt;}
.y17a{bottom:126.170667pt;}
.y220{bottom:127.057333pt;}
.yd7{bottom:127.498667pt;}
.y9e{bottom:128.757333pt;}
.y78{bottom:129.156000pt;}
.y1ae{bottom:129.864000pt;}
.y165{bottom:131.692000pt;}
.y123{bottom:136.242667pt;}
.y271{bottom:138.918667pt;}
.y1d4{bottom:139.052000pt;}
.ye5{bottom:139.262667pt;}
.yf{bottom:140.720000pt;}
.y1bc{bottom:140.968000pt;}
.y204{bottom:141.509333pt;}
.y3f{bottom:142.318667pt;}
.y179{bottom:142.908000pt;}
.yd6{bottom:144.236000pt;}
.y13a{bottom:144.262667pt;}
.y9d{bottom:145.494667pt;}
.y77{bottom:145.893333pt;}
.y1ad{bottom:146.601333pt;}
.y164{bottom:148.429333pt;}
.y23f{bottom:152.866667pt;}
.y1d3{bottom:153.664000pt;}
.y270{bottom:154.261333pt;}
.ye{bottom:156.621333pt;}
.y122{bottom:156.964000pt;}
.y1bb{bottom:157.705333pt;}
.y203{bottom:158.246667pt;}
.y139{bottom:158.874667pt;}
.y3e{bottom:159.056000pt;}
.y178{bottom:159.645333pt;}
.ye4{bottom:159.985333pt;}
.y21f{bottom:160.532000pt;}
.y9c{bottom:162.232000pt;}
.y76{bottom:162.630667pt;}
.y1ac{bottom:163.338667pt;}
.yd5{bottom:164.958667pt;}
.y163{bottom:165.166667pt;}
.y23e{bottom:168.209333pt;}
.y26f{bottom:169.604000pt;}
.yd{bottom:172.521333pt;}
.y1ba{bottom:174.442667pt;}
.y1d2{bottom:174.942667pt;}
.y202{bottom:174.984000pt;}
.y3d{bottom:175.793333pt;}
.y177{bottom:176.382667pt;}
.y21e{bottom:177.269333pt;}
.y109{bottom:177.753333pt;}
.y9b{bottom:178.969333pt;}
.y75{bottom:179.368000pt;}
.y1ab{bottom:180.076000pt;}
.y23d{bottom:183.552000pt;}
.y26e{bottom:184.946667pt;}
.y121{bottom:186.852000pt;}
.y138{bottom:186.980000pt;}
.yc{bottom:188.421333pt;}
.ye3{bottom:189.873333pt;}
.y201{bottom:191.721333pt;}
.y3c{bottom:192.530667pt;}
.y21d{bottom:194.006667pt;}
.y108{bottom:194.490667pt;}
.yd4{bottom:194.846667pt;}
.y9a{bottom:195.706667pt;}
.y74{bottom:196.105333pt;}
.y1aa{bottom:196.813333pt;}
.y176{bottom:197.105333pt;}
.y23c{bottom:198.894667pt;}
.y26d{bottom:200.289333pt;}
.y1d1{bottom:203.049333pt;}
.y120{bottom:203.589333pt;}
.y1b9{bottom:204.278667pt;}
.yb{bottom:204.322667pt;}
.y162{bottom:205.389333pt;}
.ye2{bottom:206.610667pt;}
.y200{bottom:208.458667pt;}
.y3b{bottom:209.268000pt;}
.y107{bottom:211.228000pt;}
.yd3{bottom:211.584000pt;}
.y99{bottom:212.444000pt;}
.y73{bottom:212.841333pt;}
.y1a9{bottom:213.550667pt;}
.y23b{bottom:214.237333pt;}
.y26c{bottom:215.632000pt;}
.y137{bottom:219.961333pt;}
.y161{bottom:220.001333pt;}
.y11f{bottom:220.326667pt;}
.y1b8{bottom:221.374667pt;}
.y21c{bottom:222.698667pt;}
.ye1{bottom:223.348000pt;}
.y1ff{bottom:225.196000pt;}
.y3a{bottom:226.005333pt;}
.y175{bottom:226.993333pt;}
.y106{bottom:227.965333pt;}
.yd2{bottom:228.321333pt;}
.y98{bottom:229.181333pt;}
.y72{bottom:229.578667pt;}
.y23a{bottom:229.580000pt;}
.y1a8{bottom:230.288000pt;}
.y26b{bottom:230.974667pt;}
.y1d0{bottom:232.570667pt;}
.y160{bottom:234.613333pt;}
.y136{bottom:236.698667pt;}
.y11e{bottom:237.064000pt;}
.y1b7{bottom:238.470667pt;}
.ye0{bottom:240.085333pt;}
.y1fe{bottom:241.933333pt;}
.y39{bottom:242.742667pt;}
.y174{bottom:243.729333pt;}
.y105{bottom:244.702667pt;}
.y239{bottom:244.921333pt;}
.yd1{bottom:245.058667pt;}
.y97{bottom:245.918667pt;}
.y71{bottom:246.316000pt;}
.y1a7{bottom:247.025333pt;}
.y15f{bottom:249.225333pt;}
.y1cf{bottom:249.308000pt;}
.y135{bottom:253.436000pt;}
.y11d{bottom:253.801333pt;}
.y21b{bottom:256.370667pt;}
.ydf{bottom:256.822667pt;}
.y1fd{bottom:258.670667pt;}
.y38{bottom:259.480000pt;}
.y238{bottom:260.264000pt;}
.y173{bottom:260.466667pt;}
.y104{bottom:261.440000pt;}
.y26a{bottom:261.658667pt;}
.yd0{bottom:261.796000pt;}
.y96{bottom:262.656000pt;}
.y70{bottom:263.053333pt;}
.y1b6{bottom:263.189333pt;}
.y1a6{bottom:263.762667pt;}
.y15e{bottom:263.837333pt;}
.y1ce{bottom:266.045333pt;}
.ya{bottom:266.570667pt;}
.y134{bottom:270.173333pt;}
.y11c{bottom:270.538667pt;}
.y21a{bottom:271.992000pt;}
.yde{bottom:273.560000pt;}
.y1fc{bottom:275.408000pt;}
.y237{bottom:275.606667pt;}
.y37{bottom:276.217333pt;}
.y269{bottom:277.001333pt;}
.y172{bottom:277.204000pt;}
.y103{bottom:278.177333pt;}
.y15d{bottom:278.449333pt;}
.ycf{bottom:278.533333pt;}
.y95{bottom:279.393333pt;}
.y6f{bottom:279.790667pt;}
.y1a5{bottom:280.500000pt;}
.y9{bottom:282.470667pt;}
.y1cd{bottom:282.782667pt;}
.y133{bottom:286.910667pt;}
.y11b{bottom:287.276000pt;}
.ydd{bottom:290.296000pt;}
.y236{bottom:290.949333pt;}
.y1fb{bottom:292.145333pt;}
.y268{bottom:292.344000pt;}
.y36{bottom:292.954667pt;}
.y15c{bottom:293.061333pt;}
.y171{bottom:293.941333pt;}
.y102{bottom:294.914667pt;}
.yce{bottom:295.270667pt;}
.y94{bottom:296.129333pt;}
.y6e{bottom:296.528000pt;}
.y1a4{bottom:297.236000pt;}
.y8{bottom:298.370667pt;}
.y1cc{bottom:299.520000pt;}
.y219{bottom:299.876000pt;}
.y132{bottom:303.648000pt;}
.y11a{bottom:304.013333pt;}
.y235{bottom:306.292000pt;}
.ydc{bottom:307.033333pt;}
.y15b{bottom:307.672000pt;}
.y267{bottom:307.686667pt;}
.y1fa{bottom:308.882667pt;}
.y35{bottom:309.692000pt;}
.y170{bottom:310.678667pt;}
.y101{bottom:311.652000pt;}
.y93{bottom:312.866667pt;}
.y6d{bottom:313.265333pt;}
.y1a3{bottom:313.973333pt;}
.y7{bottom:314.272000pt;}
.ycd{bottom:315.992000pt;}
.y218{bottom:319.482667pt;}
.y131{bottom:320.385333pt;}
.y119{bottom:320.750667pt;}
.y234{bottom:321.634667pt;}
.y15a{bottom:322.284000pt;}
.y266{bottom:323.029333pt;}
.y1cb{bottom:324.426667pt;}
.y1f9{bottom:325.620000pt;}
.y34{bottom:326.429333pt;}
.y16f{bottom:327.416000pt;}
.y100{bottom:328.389333pt;}
.y92{bottom:329.604000pt;}
.y6c{bottom:330.002667pt;}
.y1a2{bottom:330.710667pt;}
.y1ca{bottom:333.538667pt;}
.ydb{bottom:336.870667pt;}
.y233{bottom:336.977333pt;}
.y130{bottom:337.122667pt;}
.y118{bottom:337.488000pt;}
.y265{bottom:338.372000pt;}
.y6{bottom:339.470667pt;}
.y1f8{bottom:342.357333pt;}
.y1b2{bottom:343.165333pt;}
.y33{bottom:343.166667pt;}
.y159{bottom:343.564000pt;}
.yff{bottom:345.126667pt;}
.y91{bottom:346.341333pt;}
.ycc{bottom:346.492000pt;}
.y6b{bottom:346.740000pt;}
.y1a1{bottom:347.448000pt;}
.y16e{bottom:348.138667pt;}
.y217{bottom:352.160000pt;}
.y232{bottom:352.320000pt;}
.y264{bottom:353.714667pt;}
.y12f{bottom:353.860000pt;}
.y117{bottom:354.225333pt;}
.ycb{bottom:355.604000pt;}
.y1f7{bottom:359.094667pt;}
.y32{bottom:359.904000pt;}
.yfe{bottom:361.864000pt;}
.y90{bottom:363.078667pt;}
.y5{bottom:363.341333pt;}
.y6a{bottom:363.477333pt;}
.y1a0{bottom:364.185333pt;}
.y231{bottom:367.661333pt;}
.y1c9{bottom:367.704000pt;}
.y263{bottom:369.056000pt;}
.y12e{bottom:370.597333pt;}
.y116{bottom:370.962667pt;}
.y158{bottom:371.670667pt;}
.y216{bottom:375.752000pt;}
.y1f6{bottom:375.832000pt;}
.y31{bottom:376.641333pt;}
.y1c8{bottom:376.816000pt;}
.y16d{bottom:378.026667pt;}
.yfd{bottom:378.601333pt;}
.y4{bottom:379.241333pt;}
.y8f{bottom:379.816000pt;}
.y69{bottom:380.214667pt;}
.y19f{bottom:380.922667pt;}
.y230{bottom:383.004000pt;}
.y262{bottom:384.398667pt;}
.y12d{bottom:387.334667pt;}
.y115{bottom:387.700000pt;}
.y215{bottom:391.373333pt;}
.y30{bottom:393.378667pt;}
.y16c{bottom:394.764000pt;}
.yca{bottom:395.057333pt;}
.y3{bottom:395.141333pt;}
.yfc{bottom:395.338667pt;}
.y8e{bottom:396.553333pt;}
.y68{bottom:396.952000pt;}
.y19e{bottom:397.660000pt;}
.y22f{bottom:398.346667pt;}
.y261{bottom:399.741333pt;}
.y12c{bottom:404.072000pt;}
.y114{bottom:404.437333pt;}
.y157{bottom:404.464000pt;}
.y214{bottom:406.994667pt;}
.y2f{bottom:410.116000pt;}
.y2{bottom:411.042667pt;}
.y16b{bottom:411.501333pt;}
.yc9{bottom:411.794667pt;}
.yfb{bottom:412.076000pt;}
.y8d{bottom:413.290667pt;}
.y67{bottom:413.689333pt;}
.y19d{bottom:414.397333pt;}
.y1c7{bottom:414.441333pt;}
.y260{bottom:415.084000pt;}
.y12b{bottom:420.809333pt;}
.y113{bottom:421.174667pt;}
.y156{bottom:421.201333pt;}
.y1f5{bottom:426.441333pt;}
.y2e{bottom:426.853333pt;}
.y1{bottom:426.942667pt;}
.yfa{bottom:428.813333pt;}
.y22e{bottom:429.032000pt;}
.y8c{bottom:430.028000pt;}
.y66{bottom:430.426667pt;}
.y213{bottom:430.586667pt;}
.y19c{bottom:431.134667pt;}
.y1c6{bottom:431.178667pt;}
.y16a{bottom:432.224000pt;}
.y12a{bottom:437.546667pt;}
.y112{bottom:437.912000pt;}
.y155{bottom:437.938667pt;}
.y1f4{bottom:443.178667pt;}
.y2d{bottom:443.590667pt;}
.y22d{bottom:444.374667pt;}
.yc8{bottom:445.313333pt;}
.yf9{bottom:445.550667pt;}
.y25f{bottom:445.769333pt;}
.y8b{bottom:446.765333pt;}
.y65{bottom:447.164000pt;}
.y19b{bottom:447.872000pt;}
.y1c5{bottom:447.916000pt;}
.y212{bottom:454.177333pt;}
.y111{bottom:454.649333pt;}
.y154{bottom:454.676000pt;}
.yc6{bottom:456.556000pt;}
.y169{bottom:459.270667pt;}
.y22c{bottom:459.717333pt;}
.y1f3{bottom:459.916000pt;}
.y2c{bottom:460.328000pt;}
.y25e{bottom:461.112000pt;}
.yf8{bottom:462.288000pt;}
.yc4{bottom:462.722667pt;}
.yc7{bottom:463.418667pt;}
.y8a{bottom:463.502667pt;}
.y64{bottom:463.901333pt;}
.y19a{bottom:464.609333pt;}
.y1c4{bottom:464.653333pt;}
.y1b5{bottom:465.350667pt;}
.y129{bottom:467.382667pt;}
.y110{bottom:471.386667pt;}
.y153{bottom:471.413333pt;}
.yc3{bottom:471.834667pt;}
.yc5{bottom:474.717333pt;}
.y22b{bottom:475.060000pt;}
.y25d{bottom:476.454667pt;}
.y1f2{bottom:476.653333pt;}
.y211{bottom:477.769333pt;}
.yf7{bottom:479.025333pt;}
.y89{bottom:480.240000pt;}
.y63{bottom:480.638667pt;}
.y2b{bottom:481.049333pt;}
.y1c3{bottom:481.390667pt;}
.y10f{bottom:488.124000pt;}
.y152{bottom:488.150667pt;}
.y22a{bottom:490.402667pt;}
.y25c{bottom:491.797333pt;}
.y128{bottom:492.102667pt;}
.y1f1{bottom:493.390667pt;}
.yf6{bottom:495.762667pt;}
.y88{bottom:496.977333pt;}
.y62{bottom:497.376000pt;}
.y1c2{bottom:498.128000pt;}
.y10e{bottom:504.861333pt;}
.y151{bottom:504.888000pt;}
.y199{bottom:505.020000pt;}
.y229{bottom:505.744000pt;}
.yc2{bottom:506.272000pt;}
.y25b{bottom:507.138667pt;}
.y210{bottom:509.012000pt;}
.y1f0{bottom:510.128000pt;}
.yf5{bottom:512.500000pt;}
.y87{bottom:513.714667pt;}
.y61{bottom:514.113333pt;}
.y198{bottom:519.632000pt;}
.y228{bottom:521.086667pt;}
.y10d{bottom:521.598667pt;}
.y150{bottom:521.625333pt;}
.y25a{bottom:522.481333pt;}
.yc1{bottom:523.009333pt;}
.y1ef{bottom:526.865333pt;}
.y195{bottom:526.937333pt;}
.y1c1{bottom:527.964000pt;}
.yf4{bottom:529.237333pt;}
.y86{bottom:530.452000pt;}
.y60{bottom:530.850667pt;}
.y20f{bottom:532.604000pt;}
.y197{bottom:534.244000pt;}
.y259{bottom:537.824000pt;}
.y10c{bottom:538.336000pt;}
.y14f{bottom:538.362667pt;}
.yc0{bottom:539.746667pt;}
.y227{bottom:540.414667pt;}
.y1ee{bottom:543.602667pt;}
.yf3{bottom:545.974667pt;}
.y85{bottom:547.189333pt;}
.y5f{bottom:547.588000pt;}
.y2a{bottom:547.849333pt;}
.y20e{bottom:548.225333pt;}
.y196{bottom:548.856000pt;}
.y1c0{bottom:552.684000pt;}
.y258{bottom:553.166667pt;}
.y14e{bottom:555.098667pt;}
.y10b{bottom:559.057333pt;}
.y1ed{bottom:560.340000pt;}
.ybc{bottom:560.478667pt;}
.yf2{bottom:562.712000pt;}
.y20d{bottom:563.846667pt;}
.y84{bottom:563.926667pt;}
.y5e{bottom:564.325333pt;}
.ybf{bottom:565.678667pt;}
.y257{bottom:568.509333pt;}
.y194{bottom:570.136000pt;}
.yb8{bottom:570.909333pt;}
.yb9{bottom:571.020000pt;}
.y14d{bottom:571.836000pt;}
.ybb{bottom:572.028000pt;}
.yb7{bottom:574.792000pt;}
.y1ec{bottom:577.077333pt;}
.yf1{bottom:579.448000pt;}
.y20c{bottom:579.468000pt;}
.ybe{bottom:580.504000pt;}
.y83{bottom:580.664000pt;}
.y5d{bottom:581.062667pt;}
.y29{bottom:581.085333pt;}
.ybd{bottom:583.784000pt;}
.y256{bottom:583.852000pt;}
.y193{bottom:584.746667pt;}
.y10a{bottom:586.104000pt;}
.y14c{bottom:588.573333pt;}
.yba{bottom:589.137333pt;}
.y1b1{bottom:591.348000pt;}
.y1eb{bottom:593.814667pt;}
.yf0{bottom:596.185333pt;}
.y82{bottom:597.401333pt;}
.y5c{bottom:597.800000pt;}
.y28{bottom:598.380000pt;}
.y255{bottom:599.194667pt;}
.y190{bottom:599.358667pt;}
.yb6{bottom:602.521333pt;}
.y20b{bottom:603.060000pt;}
.y14b{bottom:605.310667pt;}
.y1ea{bottom:610.552000pt;}
.yef{bottom:612.922667pt;}
.y192{bottom:613.970667pt;}
.y81{bottom:614.138667pt;}
.y226{bottom:614.536000pt;}
.y5b{bottom:614.537333pt;}
.yb5{bottom:614.822667pt;}
.y27{bottom:615.676000pt;}
.y20a{bottom:618.681333pt;}
.yb4{bottom:619.258667pt;}
.y14a{bottom:622.048000pt;}
.y1e9{bottom:627.289333pt;}
.y191{bottom:628.582667pt;}
.yee{bottom:629.660000pt;}
.y254{bottom:629.878667pt;}
.y80{bottom:630.876000pt;}
.y225{bottom:631.273333pt;}
.y5a{bottom:631.274667pt;}
.y26{bottom:632.970667pt;}
.y209{bottom:634.302667pt;}
.yb3{bottom:635.996000pt;}
.y149{bottom:638.785333pt;}
.y1e8{bottom:644.026667pt;}
.y253{bottom:645.221333pt;}
.yec{bottom:646.397333pt;}
.yed{bottom:646.590667pt;}
.y7f{bottom:647.613333pt;}
.y224{bottom:648.010667pt;}
.y59{bottom:648.012000pt;}
.y18f{bottom:649.862667pt;}
.y208{bottom:649.924000pt;}
.y25{bottom:650.266667pt;}
.yb2{bottom:652.733333pt;}
.y148{bottom:655.522667pt;}
.y252{bottom:660.564000pt;}
.y1e7{bottom:660.764000pt;}
.y7e{bottom:664.350667pt;}
.y18e{bottom:664.474667pt;}
.y223{bottom:664.748000pt;}
.y58{bottom:664.749333pt;}
.y24{bottom:667.561333pt;}
.yeb{bottom:671.410667pt;}
.yea{bottom:671.602667pt;}
.y147{bottom:672.260000pt;}
.yb1{bottom:675.570667pt;}
.y251{bottom:675.906667pt;}
.y1e6{bottom:677.501333pt;}
.y18d{bottom:679.086667pt;}
.ye9{bottom:680.522667pt;}
.y7d{bottom:681.088000pt;}
.y57{bottom:681.485333pt;}
.y23{bottom:684.856000pt;}
.yb0{bottom:687.257333pt;}
.y146{bottom:688.997333pt;}
.yae{bottom:690.020000pt;}
.y250{bottom:691.249333pt;}
.y18c{bottom:693.698667pt;}
.y1e5{bottom:694.238667pt;}
.y7c{bottom:697.825333pt;}
.y56{bottom:698.222667pt;}
.y127{bottom:699.394667pt;}
.y22{bottom:702.152000pt;}
.yaf{bottom:704.366667pt;}
.y24f{bottom:706.592000pt;}
.y18b{bottom:708.309333pt;}
.y1e4{bottom:710.976000pt;}
.y55{bottom:714.960000pt;}
.yad{bottom:717.750667pt;}
.y7b{bottom:718.546667pt;}
.y21{bottom:719.446667pt;}
.y24e{bottom:721.934667pt;}
.y18a{bottom:722.921333pt;}
.y1e3{bottom:727.713333pt;}
.y145{bottom:729.220000pt;}
.y54{bottom:731.697333pt;}
.yac{bottom:734.488000pt;}
.y20{bottom:736.741333pt;}
.y24d{bottom:737.277333pt;}
.y189{bottom:737.533333pt;}
.y144{bottom:743.832000pt;}
.y1e2{bottom:744.450667pt;}
.y53{bottom:748.434667pt;}
.yab{bottom:751.224000pt;}
.y188{bottom:752.145333pt;}
.y24c{bottom:752.620000pt;}
.y1f{bottom:754.037333pt;}
.y143{bottom:758.444000pt;}
.y1e1{bottom:761.186667pt;}
.y52{bottom:765.172000pt;}
.y187{bottom:766.757333pt;}
.yaa{bottom:767.961333pt;}
.y1e{bottom:771.332000pt;}
.y142{bottom:773.056000pt;}
.y17e{bottom:774.064000pt;}
.y1e0{bottom:777.924000pt;}
.y186{bottom:781.369333pt;}
.y51{bottom:781.909333pt;}
.y24b{bottom:783.304000pt;}
.y141{bottom:787.668000pt;}
.y1d{bottom:788.628000pt;}
.ya9{bottom:793.068000pt;}
.y1df{bottom:794.661333pt;}
.ya8{bottom:795.924000pt;}
.y185{bottom:795.981333pt;}
.y50{bottom:798.646667pt;}
.y140{bottom:802.280000pt;}
.y1c{bottom:805.922667pt;}
.y184{bottom:810.593333pt;}
.y1de{bottom:811.398667pt;}
.y24a{bottom:813.989333pt;}
.y4f{bottom:815.384000pt;}
.y13f{bottom:816.892000pt;}
.ya7{bottom:823.753333pt;}
.y183{bottom:825.205333pt;}
.ya6{bottom:826.801333pt;}
.y1dd{bottom:828.136000pt;}
.y249{bottom:829.332000pt;}
.y4e{bottom:832.121333pt;}
.y13e{bottom:838.170667pt;}
.y1b{bottom:839.520000pt;}
.y182{bottom:839.817333pt;}
.y248{bottom:844.674667pt;}
.y1dc{bottom:844.873333pt;}
.y4d{bottom:848.858667pt;}
.y181{bottom:854.429333pt;}
.ya5{bottom:854.437333pt;}
.y1a{bottom:857.724000pt;}
.y247{bottom:860.017333pt;}
.y1db{bottom:861.610667pt;}
.y4c{bottom:865.596000pt;}
.y13d{bottom:866.277333pt;}
.y180{bottom:869.040000pt;}
.ya3{bottom:871.174667pt;}
.y19{bottom:872.070667pt;}
.y273{bottom:873.965333pt;}
.y246{bottom:875.360000pt;}
.y1da{bottom:878.348000pt;}
.ya4{bottom:881.941333pt;}
.y4b{bottom:882.333333pt;}
.y17f{bottom:883.652000pt;}
.yda{bottom:887.154667pt;}
.ya2{bottom:887.912000pt;}
.y272{bottom:889.306667pt;}
.y245{bottom:890.701333pt;}
.y1d9{bottom:895.085333pt;}
.y4a{bottom:899.070667pt;}
.ya1{bottom:904.649333pt;}
.y17d{bottom:904.932000pt;}
.y244{bottom:906.044000pt;}
.y18{bottom:911.081333pt;}
.y1d8{bottom:911.822667pt;}
.y49{bottom:915.808000pt;}
.y243{bottom:921.386667pt;}
.y1d7{bottom:928.560000pt;}
.y48{bottom:932.545333pt;}
.y17c{bottom:933.038667pt;}
.ya0{bottom:935.334667pt;}
.y242{bottom:936.729333pt;}
.y1d6{bottom:945.297333pt;}
.y17{bottom:946.565333pt;}
.y47{bottom:949.282667pt;}
.y241{bottom:952.072000pt;}
.y1d5{bottom:962.034667pt;}
.y46{bottom:966.020000pt;}
.y240{bottom:967.414667pt;}
.y16{bottom:971.672000pt;}
.y45{bottom:982.757333pt;}
.y13{bottom:1010.326667pt;}
.y44{bottom:1038.548000pt;}
.h26{height:2.019093pt;}
.h10{height:7.387051pt;}
.h12{height:18.569236pt;}
.h22{height:29.074944pt;}
.h17{height:29.599908pt;}
.h8{height:30.063343pt;}
.ha{height:34.430976pt;}
.h2{height:35.073565pt;}
.h2a{height:36.928037pt;}
.h19{height:38.080100pt;}
.hc{height:38.256384pt;}
.h5{height:38.947124pt;}
.h9{height:40.084290pt;}
.h16{height:41.524400pt;}
.hb{height:45.095014pt;}
.h3{height:45.272024pt;}
.h11{height:45.723360pt;}
.h1d{height:48.360277pt;}
.h7{height:48.365611pt;}
.hd{height:50.105236pt;}
.h1a{height:50.211903pt;}
.h14{height:50.448384pt;}
.he{height:50.843733pt;}
.hf{height:50.849067pt;}
.h13{height:51.016277pt;}
.h1c{height:57.365434pt;}
.h15{height:57.370767pt;}
.h18{height:57.799269pt;}
.h1e{height:59.268400pt;}
.h1f{height:60.021434pt;}
.h1b{height:60.026767pt;}
.h2b{height:63.652309pt;}
.h20{height:66.546944pt;}
.h21{height:68.587733pt;}
.h4{height:68.781897pt;}
.h6{height:68.861952pt;}
.h24{height:74.920458pt;}
.h2c{height:86.078570pt;}
.h29{height:86.553236pt;}
.h23{height:86.558570pt;}
.h28{height:93.338767pt;}
.h25{height:96.474767pt;}
.h27{height:119.635093pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:184.542183pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2{left:51.603593pt;}
.xb5{left:76.309333pt;}
.xbc{left:211.989333pt;}
.x4{left:220.912000pt;}
.x3{left:221.858667pt;}
.xb3{left:222.786667pt;}
.x98{left:229.828000pt;}
.x67{left:240.918667pt;}
.xad{left:242.296000pt;}
.x90{left:244.826667pt;}
.x19{left:248.156000pt;}
.x6{left:250.204000pt;}
.xb4{left:253.858667pt;}
.x1a{left:254.798667pt;}
.x9a{left:255.821333pt;}
.x97{left:257.280000pt;}
.x6e{left:260.124000pt;}
.x84{left:261.188000pt;}
.x6f{left:268.309333pt;}
.xa3{left:272.324000pt;}
.x5{left:273.664000pt;}
.xb0{left:277.126667pt;}
.x5d{left:279.457333pt;}
.x8b{left:283.988000pt;}
.x9f{left:290.154667pt;}
.x5e{left:292.741333pt;}
.x8c{left:294.244000pt;}
.xd{left:295.432000pt;}
.x81{left:297.038667pt;}
.x5f{left:299.362667pt;}
.xe{left:302.073333pt;}
.x70{left:303.382667pt;}
.xb{left:310.517333pt;}
.x60{left:312.646667pt;}
.xc{left:317.160000pt;}
.x31{left:319.693333pt;}
.x24{left:323.052000pt;}
.x71{left:326.156000pt;}
.x74{left:329.201333pt;}
.x88{left:331.232000pt;}
.xb2{left:333.612000pt;}
.x92{left:335.406667pt;}
.x25{left:336.336000pt;}
.x2b{left:339.428000pt;}
.x69{left:340.822667pt;}
.x4c{left:342.790667pt;}
.x82{left:344.489333pt;}
.xa2{left:347.074667pt;}
.x8d{left:349.465333pt;}
.x33{left:351.048000pt;}
.x2c{left:352.712000pt;}
.x6a{left:354.105333pt;}
.x2d{left:356.042667pt;}
.x89{left:358.394667pt;}
.x34{left:364.180000pt;}
.x68{left:365.892000pt;}
.x2e{left:369.325333pt;}
.x9d{left:371.314667pt;}
.x1b{left:378.686667pt;}
.x99{left:380.933333pt;}
.x1d{left:383.673333pt;}
.xb1{left:385.729333pt;}
.x8e{left:387.373333pt;}
.x32{left:388.436000pt;}
.x1c{left:391.969333pt;}
.x11{left:393.326667pt;}
.x80{left:395.950667pt;}
.x1e{left:396.957333pt;}
.x12{left:399.968000pt;}
.x57{left:405.334667pt;}
.x61{left:412.025333pt;}
.x94{left:414.230667pt;}
.x51{left:416.936000pt;}
.x91{left:420.842667pt;}
.x8f{left:421.922667pt;}
.xf{left:423.508000pt;}
.x35{left:425.897333pt;}
.x93{left:428.505333pt;}
.x10{left:430.149333pt;}
.xa8{left:433.388000pt;}
.x2f{left:435.520000pt;}
.x66{left:439.342667pt;}
.x6b{left:445.002667pt;}
.x4d{left:447.818667pt;}
.x30{left:448.802667pt;}
.x43{left:453.165333pt;}
.x42{left:455.010667pt;}
.x41{left:457.468000pt;}
.x40{left:459.686667pt;}
.x7e{left:468.282667pt;}
.x47{left:469.961333pt;}
.x46{left:471.041333pt;}
.x64{left:472.000000pt;}
.x45{left:473.610667pt;}
.x7c{left:476.721333pt;}
.x6d{left:478.005333pt;}
.x6c{left:480.064000pt;}
.x4b{left:481.365333pt;}
.x65{left:485.282667pt;}
.x36{left:486.905333pt;}
.x9b{left:489.058667pt;}
.x58{left:490.164000pt;}
.xa6{left:492.258667pt;}
.x62{left:497.930667pt;}
.x3a{left:499.785333pt;}
.x9c{left:502.342667pt;}
.x4e{left:505.058667pt;}
.x3b{left:506.201333pt;}
.x95{left:510.020000pt;}
.x63{left:511.214667pt;}
.x59{left:513.337333pt;}
.x54{left:514.716000pt;}
.x53{left:516.385333pt;}
.x48{left:519.261333pt;}
.x52{left:520.253333pt;}
.x3c{left:524.525333pt;}
.x5a{left:529.988000pt;}
.xae{left:532.068000pt;}
.x56{left:536.321333pt;}
.x55{left:537.568000pt;}
.x2a{left:542.210667pt;}
.xaf{left:545.350667pt;}
.x9{left:548.180000pt;}
.x5b{left:552.553333pt;}
.xa{left:554.821333pt;}
.x75{left:560.640000pt;}
.x17{left:562.045333pt;}
.x28{left:565.348000pt;}
.x7f{left:566.476000pt;}
.x4f{left:570.108000pt;}
.x8a{left:571.582667pt;}
.xaa{left:572.488000pt;}
.x18{left:575.329333pt;}
.x29{left:578.630667pt;}
.x86{left:579.577333pt;}
.x7d{left:581.029333pt;}
.xab{left:585.772000pt;}
.x23{left:589.561333pt;}
.x26{left:591.446667pt;}
.x87{left:592.462667pt;}
.x96{left:595.809333pt;}
.xac{left:599.688000pt;}
.xb6{left:600.601333pt;}
.x21{left:602.334667pt;}
.x27{left:604.729333pt;}
.x7{left:606.677333pt;}
.x8{left:613.318667pt;}
.x22{left:615.618667pt;}
.xba{left:619.373333pt;}
.x85{left:620.966667pt;}
.xb7{left:624.512000pt;}
.x3d{left:625.498667pt;}
.x76{left:630.361333pt;}
.x3e{left:631.914667pt;}
.x7a{left:636.762667pt;}
.x77{left:638.020000pt;}
.x49{left:642.180000pt;}
.x72{left:645.906667pt;}
.x3f{left:649.494667pt;}
.xa9{left:651.853333pt;}
.x37{left:655.488000pt;}
.xa4{left:657.573333pt;}
.x4a{left:659.820000pt;}
.xa5{left:664.698667pt;}
.x78{left:666.594667pt;}
.x9e{left:668.653333pt;}
.x39{left:680.172000pt;}
.xbb{left:681.072000pt;}
.xb9{left:690.953333pt;}
.x7b{left:695.850667pt;}
.x44{left:696.792000pt;}
.xa7{left:700.150667pt;}
.x79{left:701.454667pt;}
.x13{left:702.602667pt;}
.xb8{left:704.005333pt;}
.x83{left:704.906667pt;}
.xa0{left:707.122667pt;}
.x14{left:709.244000pt;}
.x1f{left:710.426667pt;}
.x38{left:717.265333pt;}
.xa1{left:720.405333pt;}
.x20{left:723.709333pt;}
.x15{left:726.842667pt;}
.x5c{left:730.212000pt;}
.x50{left:736.674667pt;}
.x16{left:740.126667pt;}
.x73{left:744.057333pt;}
}




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