
    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_88e2a1d9ab226eb4faa51512.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_62b2f0dc23d1bae0040955c8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9452ee0a38181b7377eb5f48.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f574af6741b593fcbdd54f8e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;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_77027dd1ef54b56fc84d1c1b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_1d86926083ab7146efe7fcf8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_421ffde7cbb26cc6399c534b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.008301;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_2898bea50fd19c4a7df7fb95.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_7cdb5537f6c4b525c3808094.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7175cc0e04d1e79a766abdba.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_248ca6d698d9521e200ec566.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.988281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_68a4fc855bd7c975ee34be47.woff2')format("woff");}.fff{font-family:fff;line-height:0.664062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_028a65c5db1cdc6cb3ad57d3.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_d55970dee22cde94e8a77467.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.773000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_4deb1ac85f7ff7fd02424bac.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_0c9437de2b2ab7f2a18566b2.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_83972a3d153bfcb200e75381.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_2693e27610c635375c00cefe.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.988281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_4deb1ac85f7ff7fd02424bac.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_c9b9c0b91012c73b9d167b05.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_a58ab602087cbc789f3777ee.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_3dbc3c0d8f29f84cc5c3a768.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_2ab3c60f49bc6d0a470a780e.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_add490372ce8241787957892.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m22{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);}
.m10{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);}
.md{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);}
.m16{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);}
.m20{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);}
.mb{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);}
.m19{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);}
.m27{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);}
.m13{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);}
.m2d{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);}
.mf{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);}
.m8{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);}
.m2b{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);}
.m26{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);}
.m2c{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);}
.m1c{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);}
.m23{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);}
.me{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);}
.m11{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);}
.m1d{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m15{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);}
.m2a{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);}
.m25{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);}
.m3{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);}
.m2{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);}
.m17{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);}
.m24{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);}
.m1b{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);}
.m29{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);}
.m5{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);}
.m6{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);}
.m18{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);}
.m9{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);}
.m14{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);}
.m7{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);}
.ma{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);}
.m12{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);}
.m1a{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);}
.m28{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);}
.m4{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);}
.v2{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls53{letter-spacing:-1.277856px;}
.ls9b{letter-spacing:-0.363726px;}
.ls6a{letter-spacing:-0.348696px;}
.ls9e{letter-spacing:-0.330660px;}
.ls22{letter-spacing:-0.156312px;}
.lsa1{letter-spacing:-0.145490px;}
.ls81{letter-spacing:-0.145190px;}
.ls27{letter-spacing:-0.138276px;}
.ls51{letter-spacing:-0.128777px;}
.ls80{letter-spacing:-0.124448px;}
.ls7f{letter-spacing:-0.110621px;}
.ls64{letter-spacing:-0.108216px;}
.ls9a{letter-spacing:-0.105811px;}
.ls7b{letter-spacing:-0.099112px;}
.ls4e{letter-spacing:-0.098116px;}
.ls6d{letter-spacing:-0.096192px;}
.ls97{letter-spacing:-0.094802px;}
.lsa3{letter-spacing:-0.092585px;}
.ls63{letter-spacing:-0.090180px;}
.ls83{letter-spacing:-0.089879px;}
.ls48{letter-spacing:-0.087908px;}
.ls1f{letter-spacing:-0.086184px;}
.ls69{letter-spacing:-0.084168px;}
.ls7e{letter-spacing:-0.082966px;}
.ls9c{letter-spacing:-0.072745px;}
.ls29{letter-spacing:-0.072144px;}
.ls7d{letter-spacing:-0.069138px;}
.ls25{letter-spacing:-0.066132px;}
.ls66{letter-spacing:-0.060120px;}
.ls99{letter-spacing:-0.059519px;}
.ls4a{letter-spacing:-0.055190px;}
.ls4f{letter-spacing:-0.049058px;}
.ls85{letter-spacing:-0.048397px;}
.ls65{letter-spacing:-0.048096px;}
.lsa0{letter-spacing:-0.046292px;}
.ls23{letter-spacing:-0.042084px;}
.ls7c{letter-spacing:-0.041483px;}
.ls9d{letter-spacing:-0.039679px;}
.ls4c{letter-spacing:-0.036793px;}
.ls2a{letter-spacing:-0.036072px;}
.ls82{letter-spacing:-0.034569px;}
.ls6b{letter-spacing:-0.030060px;}
.ls52{letter-spacing:-0.027540px;}
.ls9f{letter-spacing:-0.026453px;}
.ls2c{letter-spacing:-0.024048px;}
.ls54{letter-spacing:-0.022032px;}
.lsa5{letter-spacing:-0.019840px;}
.ls49{letter-spacing:-0.018397px;}
.ls21{letter-spacing:-0.018036px;}
.lsa4{letter-spacing:-0.017820px;}
.ls50{letter-spacing:-0.012264px;}
.ls26{letter-spacing:-0.012024px;}
.ls55{letter-spacing:-0.011016px;}
.ls84{letter-spacing:-0.006914px;}
.ls98{letter-spacing:-0.006613px;}
.ls4d{letter-spacing:-0.006132px;}
.ls24{letter-spacing:-0.006012px;}
.ls2b{letter-spacing:-0.005400px;}
.ls7{letter-spacing:0.000000px;}
.lsa7{letter-spacing:0.000800px;}
.lsb3{letter-spacing:0.004800px;}
.ls5e{letter-spacing:0.005400px;}
.ls6{letter-spacing:0.005700px;}
.ls11{letter-spacing:0.006012px;}
.ls73{letter-spacing:0.006914px;}
.lsd{letter-spacing:0.009576px;}
.ls2f{letter-spacing:0.009768px;}
.ls89{letter-spacing:0.010534px;}
.ls16{letter-spacing:0.010800px;}
.ls70{letter-spacing:0.011012px;}
.ls3f{letter-spacing:0.011016px;}
.ls58{letter-spacing:0.012024px;}
.ls90{letter-spacing:0.013226px;}
.ls78{letter-spacing:0.013828px;}
.lsb{letter-spacing:0.014364px;}
.ls2d{letter-spacing:0.014651px;}
.ls87{letter-spacing:0.015800px;}
.ls15{letter-spacing:0.016200px;}
.ls6e{letter-spacing:0.016519px;}
.ls3d{letter-spacing:0.016524px;}
.ls91{letter-spacing:0.017820px;}
.ls56{letter-spacing:0.018036px;}
.ls32{letter-spacing:0.018397px;}
.ls8d{letter-spacing:0.019840px;}
.ls72{letter-spacing:0.020741px;}
.ls17{letter-spacing:0.021600px;}
.ls41{letter-spacing:0.022032px;}
.ls95{letter-spacing:0.023760px;}
.ls34{letter-spacing:0.024529px;}
.ls8b{letter-spacing:0.026453px;}
.ls18{letter-spacing:0.027000px;}
.ls47{letter-spacing:0.027540px;}
.ls7a{letter-spacing:0.027655px;}
.ls92{letter-spacing:0.029700px;}
.ls1b{letter-spacing:0.030060px;}
.ls31{letter-spacing:0.030661px;}
.ls5c{letter-spacing:0.032400px;}
.ls42{letter-spacing:0.033048px;}
.ls77{letter-spacing:0.034569px;}
.ls94{letter-spacing:0.035640px;}
.ls1d{letter-spacing:0.036072px;}
.ls33{letter-spacing:0.036793px;}
.ls8c{letter-spacing:0.039679px;}
.ls79{letter-spacing:0.041483px;}
.ls10{letter-spacing:0.042084px;}
.ls3b{letter-spacing:0.042926px;}
.ls44{letter-spacing:0.044064px;}
.ls8e{letter-spacing:0.046292px;}
.ls93{letter-spacing:0.047520px;}
.ls13{letter-spacing:0.048096px;}
.ls1a{letter-spacing:0.048600px;}
.ls3a{letter-spacing:0.049058px;}
.ls40{letter-spacing:0.049572px;}
.ls28{letter-spacing:0.054108px;}
.ls43{letter-spacing:0.055080px;}
.ls36{letter-spacing:0.055190px;}
.ls75{letter-spacing:0.055310px;}
.ls8f{letter-spacing:0.059519px;}
.ls57{letter-spacing:0.060120px;}
.ls35{letter-spacing:0.061322px;}
.ls74{letter-spacing:0.062224px;}
.ls19{letter-spacing:0.064800px;}
.ls14{letter-spacing:0.066132px;}
.ls37{letter-spacing:0.067455px;}
.ls76{letter-spacing:0.069138px;}
.ls5d{letter-spacing:0.070200px;}
.ls3e{letter-spacing:0.071604px;}
.ls1c{letter-spacing:0.072144px;}
.ls4b{letter-spacing:0.073587px;}
.ls12{letter-spacing:0.078156px;}
.ls96{letter-spacing:0.079358px;}
.ls39{letter-spacing:0.079719px;}
.ls61{letter-spacing:0.081000px;}
.ls5a{letter-spacing:0.084168px;}
.lsa2{letter-spacing:0.085972px;}
.ls5b{letter-spacing:0.090180px;}
.lsf{letter-spacing:0.096192px;}
.ls3c{letter-spacing:0.098116px;}
.ls68{letter-spacing:0.120240px;}
.ls59{letter-spacing:0.126252px;}
.ls60{letter-spacing:0.140400px;}
.ls45{letter-spacing:0.143208px;}
.ls46{letter-spacing:0.159732px;}
.lse{letter-spacing:0.181944px;}
.ls6c{letter-spacing:0.183600px;}
.ls30{letter-spacing:0.185583px;}
.lsc{letter-spacing:0.191520px;}
.ls2e{letter-spacing:0.195350px;}
.ls38{letter-spacing:0.196232px;}
.ls8a{letter-spacing:0.200138px;}
.ls71{letter-spacing:0.209236px;}
.ls88{letter-spacing:0.210672px;}
.ls6f{letter-spacing:0.220248px;}
.ls8{letter-spacing:1.275394px;}
.ls20{letter-spacing:1.539072px;}
.ls4{letter-spacing:1.861130px;}
.ls0{letter-spacing:2.989200px;}
.ls5f{letter-spacing:3.785400px;}
.ls5{letter-spacing:11.954850px;}
.lsae{letter-spacing:12.440400px;}
.lsbf{letter-spacing:12.668406px;}
.ls67{letter-spacing:12.703356px;}
.lsc2{letter-spacing:13.060604px;}
.lsc0{letter-spacing:13.196765px;}
.lsb7{letter-spacing:13.235385px;}
.lsb1{letter-spacing:13.302639px;}
.lsbc{letter-spacing:13.332753px;}
.lsaf{letter-spacing:13.391576px;}
.lsaa{letter-spacing:13.409224px;}
.lsa8{letter-spacing:13.448400px;}
.ls62{letter-spacing:13.449208px;}
.lsa9{letter-spacing:13.454400px;}
.lsb6{letter-spacing:13.490400px;}
.lsb9{letter-spacing:13.511125px;}
.lsad{letter-spacing:13.529337px;}
.lsc1{letter-spacing:13.562472px;}
.lsb2{letter-spacing:13.597459px;}
.lsb5{letter-spacing:13.623869px;}
.lsb4{letter-spacing:13.938635px;}
.lsba{letter-spacing:14.132753px;}
.ls9{letter-spacing:15.063451px;}
.ls1e{letter-spacing:15.183002px;}
.lsa6{letter-spacing:15.238635px;}
.lsa{letter-spacing:15.242778px;}
.lsbe{letter-spacing:15.297459px;}
.lsbb{letter-spacing:15.644518px;}
.lsac{letter-spacing:15.944518px;}
.lsb8{letter-spacing:16.379812px;}
.lsab{letter-spacing:16.785694px;}
.lsbd{letter-spacing:18.468047px;}
.lsb0{letter-spacing:18.726871px;}
.ls86{letter-spacing:19.845499px;}
.ls2{letter-spacing:70.236600px;}
.ls3{letter-spacing:72.353510px;}
.ls1{letter-spacing:72.361200px;}
.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;}
}
.ws0{word-spacing:-103.961438px;}
.ws73{word-spacing:-61.322400px;}
.wsbb{word-spacing:-60.120000px;}
.ws74{word-spacing:-55.080000px;}
.wsba{word-spacing:-54.000000px;}
.wsfe{word-spacing:-17.173879px;}
.ws154{word-spacing:-16.533000px;}
.ws155{word-spacing:-16.169274px;}
.ws72{word-spacing:-15.404187px;}
.wsfd{word-spacing:-13.985748px;}
.wsb9{word-spacing:-13.500000px;}
.ws192{word-spacing:-13.449600px;}
.ws153{word-spacing:-13.377672px;}
.ws71{word-spacing:-12.404750px;}
.ws3f{word-spacing:-12.161520px;}
.ws22{word-spacing:-11.955150px;}
.ws4{word-spacing:-11.357400px;}
.ws126{word-spacing:-4.086056px;}
.ws11e{word-spacing:-3.961607px;}
.ws11f{word-spacing:-3.885556px;}
.wsda{word-spacing:-3.595176px;}
.ws57{word-spacing:-3.498984px;}
.ws56{word-spacing:-3.432852px;}
.ws1e7{word-spacing:-3.012710px;}
.ws135{word-spacing:-2.869229px;}
.ws20f{word-spacing:-2.851315px;}
.ws50{word-spacing:-2.831652px;}
.ws113{word-spacing:-2.820830px;}
.ws125{word-spacing:-2.813917px;}
.wsd1{word-spacing:-2.735460px;}
.ws51{word-spacing:-2.717424px;}
.wsd0{word-spacing:-2.699388px;}
.ws124{word-spacing:-2.696382px;}
.ws177{word-spacing:-2.665120px;}
.ws176{word-spacing:-2.658506px;}
.ws58{word-spacing:-2.500992px;}
.ws1b3{word-spacing:-2.420928px;}
.ws119{word-spacing:-2.419830px;}
.ws117{word-spacing:-2.412916px;}
.ws35{word-spacing:-2.391024px;}
.wsb7{word-spacing:-2.331248px;}
.ws116{word-spacing:-2.302295px;}
.ws11a{word-spacing:-2.288468px;}
.ws1b7{word-spacing:-2.259533px;}
.ws91{word-spacing:-2.170813px;}
.wsea{word-spacing:-2.056104px;}
.wseb{word-spacing:-2.038068px;}
.ws13e{word-spacing:-2.032370px;}
.ws6{word-spacing:-1.908367px;}
.ws13a{word-spacing:-1.853044px;}
.ws188{word-spacing:-1.805404px;}
.ws93{word-spacing:-1.772217px;}
.wscc{word-spacing:-1.767528px;}
.ws7{word-spacing:-1.733492px;}
.ws92{word-spacing:-1.729292px;}
.ws1cf{word-spacing:-1.613952px;}
.ws171{word-spacing:-1.494583px;}
.ws172{word-spacing:-1.454904px;}
.ws108{word-spacing:-1.434614px;}
.wsa0{word-spacing:-1.349460px;}
.wsa1{word-spacing:-1.327428px;}
.ws5{word-spacing:-1.322630px;}
.wse7{word-spacing:-1.279800px;}
.ws178{word-spacing:-1.170536px;}
.ws122{word-spacing:-1.161518px;}
.ws120{word-spacing:-1.154605px;}
.ws121{word-spacing:-1.099294px;}
.ws18d{word-spacing:-1.075968px;}
.ws81{word-spacing:-1.036349px;}
.ws1b1{word-spacing:-1.022170px;}
.ws181{word-spacing:-1.021680px;}
.wsb8{word-spacing:-1.016185px;}
.ws1d4{word-spacing:-1.012742px;}
.ws82{word-spacing:-0.987291px;}
.ws1b2{word-spacing:-0.968371px;}
.wse1{word-spacing:-0.966600px;}
.ws15b{word-spacing:-0.956410px;}
.ws1af{word-spacing:-0.914573px;}
.wse2{word-spacing:-0.901800px;}
.ws18e{word-spacing:-0.806976px;}
.ws3a{word-spacing:-0.777083px;}
.ws187{word-spacing:-0.727452px;}
.ws2b{word-spacing:-0.717307px;}
.ws4b{word-spacing:-0.667332px;}
.wsf9{word-spacing:-0.657532px;}
.wsef{word-spacing:-0.619236px;}
.ws180{word-spacing:-0.617760px;}
.ws3b{word-spacing:-0.597756px;}
.ws5d{word-spacing:-0.556200px;}
.ws5b{word-spacing:-0.550800px;}
.ws5c{word-spacing:-0.545400px;}
.ws212{word-spacing:-0.537984px;}
.ws3c{word-spacing:-0.537980px;}
.wsf0{word-spacing:-0.529056px;}
.ws2d{word-spacing:-0.478205px;}
.ws138{word-spacing:-0.418429px;}
.ws214{word-spacing:-0.376589px;}
.ws48{word-spacing:-0.360720px;}
.ws2f{word-spacing:-0.358654px;}
.wsd6{word-spacing:-0.348696px;}
.ws16a{word-spacing:-0.337273px;}
.ws6c{word-spacing:-0.324648px;}
.ws194{word-spacing:-0.322790px;}
.ws55{word-spacing:-0.318636px;}
.ws114{word-spacing:-0.318035px;}
.ws9a{word-spacing:-0.312744px;}
.wsc3{word-spacing:-0.312624px;}
.ws94{word-spacing:-0.306612px;}
.wsdb{word-spacing:-0.300600px;}
.ws30{word-spacing:-0.298878px;}
.wsd8{word-spacing:-0.294588px;}
.ws1fe{word-spacing:-0.268992px;}
.wsd9{word-spacing:-0.240480px;}
.ws13{word-spacing:-0.239102px;}
.ws4c{word-spacing:-0.222444px;}
.ws63{word-spacing:-0.221400px;}
.ws101{word-spacing:-0.215194px;}
.wsab{word-spacing:-0.209304px;}
.ws15{word-spacing:-0.179327px;}
.wsaa{word-spacing:-0.176256px;}
.ws64{word-spacing:-0.172800px;}
.ws79{word-spacing:-0.161395px;}
.ws54{word-spacing:-0.126252px;}
.wsc{word-spacing:-0.119551px;}
.ws109{word-spacing:-0.115630px;}
.ws15c{word-spacing:-0.110603px;}
.ws10a{word-spacing:-0.110124px;}
.wsbc{word-spacing:-0.107597px;}
.ws15d{word-spacing:-0.105336px;}
.ws7e{word-spacing:-0.102559px;}
.ws45{word-spacing:-0.100548px;}
.ws7f{word-spacing:-0.097675px;}
.ws46{word-spacing:-0.095760px;}
.wsa{word-spacing:-0.059776px;}
.ws40{word-spacing:-0.053798px;}
.ws2{word-spacing:-0.004267px;}
.ws1{word-spacing:0.000000px;}
.ws96{word-spacing:0.018397px;}
.ws95{word-spacing:0.030661px;}
.ws168{word-spacing:0.039679px;}
.ws43{word-spacing:0.053798px;}
.ws110{word-spacing:0.055310px;}
.ws11{word-spacing:0.059776px;}
.ws186{word-spacing:0.066132px;}
.ws84{word-spacing:0.067455px;}
.ws8c{word-spacing:0.073587px;}
.ws115{word-spacing:0.076052px;}
.ws18a{word-spacing:0.079358px;}
.ws12a{word-spacing:0.082966px;}
.wsc7{word-spacing:0.084168px;}
.wsc4{word-spacing:0.096192px;}
.wse8{word-spacing:0.102600px;}
.ws77{word-spacing:0.107597px;}
.wsdd{word-spacing:0.114228px;}
.ws19{word-spacing:0.119551px;}
.ws18b{word-spacing:0.125651px;}
.wsdc{word-spacing:0.126252px;}
.ws5a{word-spacing:0.132264px;}
.ws9d{word-spacing:0.134909px;}
.ws65{word-spacing:0.135000px;}
.wsc8{word-spacing:0.144288px;}
.ws8d{word-spacing:0.147174px;}
.ws10f{word-spacing:0.152104px;}
.ws83{word-spacing:0.153306px;}
.ws5e{word-spacing:0.156600px;}
.wsb2{word-spacing:0.159732px;}
.ws19b{word-spacing:0.161395px;}
.ws5f{word-spacing:0.172800px;}
.ws185{word-spacing:0.178200px;}
.ws1f{word-spacing:0.179327px;}
.wsde{word-spacing:0.186372px;}
.ws17c{word-spacing:0.198396px;}
.ws7a{word-spacing:0.215194px;}
.ws23{word-spacing:0.239102px;}
.ws173{word-spacing:0.251302px;}
.ws1c2{word-spacing:0.268992px;}
.ws12{word-spacing:0.298878px;}
.ws1a1{word-spacing:0.322790px;}
.wsd5{word-spacing:0.330660px;}
.ws25{word-spacing:0.358654px;}
.ws3d{word-spacing:0.418429px;}
.ws169{word-spacing:0.436471px;}
.ws10{word-spacing:0.478205px;}
.ws1f2{word-spacing:0.484186px;}
.ws10c{word-spacing:0.504707px;}
.ws10d{word-spacing:0.518535px;}
.ws12f{word-spacing:0.537980px;}
.ws1d8{word-spacing:0.537984px;}
.wsa4{word-spacing:0.539784px;}
.wsa3{word-spacing:0.578340px;}
.ws31{word-spacing:0.597756px;}
.ws1aa{word-spacing:0.645581px;}
.ws1a{word-spacing:0.657532px;}
.ws42{word-spacing:0.699379px;}
.ws13b{word-spacing:0.717307px;}
.wsd4{word-spacing:0.721440px;}
.ws102{word-spacing:0.753178px;}
.ws14f{word-spacing:0.777083px;}
.ws103{word-spacing:0.806976px;}
.wsd2{word-spacing:0.829656px;}
.wsfa{word-spacing:0.836858px;}
.ws211{word-spacing:0.860774px;}
.ws6f{word-spacing:0.896634px;}
.wsbe{word-spacing:0.914573px;}
.wsf5{word-spacing:0.956410px;}
.ws182{word-spacing:0.974160px;}
.ws184{word-spacing:0.997920px;}
.ws183{word-spacing:1.015740px;}
.wsf7{word-spacing:1.016185px;}
.ws100{word-spacing:1.022170px;}
.ws7d{word-spacing:1.075961px;}
.wsbf{word-spacing:1.075968px;}
.ws6d{word-spacing:1.130256px;}
.ws6a{word-spacing:1.142280px;}
.wsd3{word-spacing:1.166328px;}
.ws69{word-spacing:1.178352px;}
.ws1f8{word-spacing:1.183565px;}
.ws6e{word-spacing:1.184364px;}
.wse0{word-spacing:1.231200px;}
.wsbd{word-spacing:1.237363px;}
.wsac{word-spacing:1.239300px;}
.wsdf{word-spacing:1.247400px;}
.ws3e{word-spacing:1.255288px;}
.wsad{word-spacing:1.288872px;}
.wsff{word-spacing:1.291162px;}
.wsae{word-spacing:1.299888px;}
.ws118{word-spacing:1.306708px;}
.ws123{word-spacing:1.313622px;}
.ws131{word-spacing:1.315063px;}
.ws18f{word-spacing:1.344960px;}
.wsfc{word-spacing:1.374839px;}
.ws1bb{word-spacing:1.398758px;}
.ws39{word-spacing:1.434614px;}
.ws76{word-spacing:1.452557px;}
.ws6b{word-spacing:1.472940px;}
.ws1e1{word-spacing:1.506355px;}
.ws13c{word-spacing:1.554166px;}
.ws1ca{word-spacing:1.560154px;}
.ws13d{word-spacing:1.613941px;}
.ws1cc{word-spacing:1.613952px;}
.ws163{word-spacing:1.653300px;}
.ws162{word-spacing:1.673140px;}
.wsf2{word-spacing:1.673717px;}
.ws1f5{word-spacing:1.721549px;}
.ws75{word-spacing:1.775347px;}
.ws14e{word-spacing:1.793268px;}
.ws41{word-spacing:1.829146px;}
.wsd7{word-spacing:1.839672px;}
.ws8e{word-spacing:1.870333px;}
.ws1c8{word-spacing:1.882944px;}
.wsb3{word-spacing:1.912819px;}
.ws61{word-spacing:1.922400px;}
.ws8f{word-spacing:1.931656px;}
.ws1a7{word-spacing:1.936742px;}
.ws44{word-spacing:1.972595px;}
.ws200{word-spacing:1.990541px;}
.ws62{word-spacing:1.992600px;}
.wsa2{word-spacing:2.004912px;}
.wsfb{word-spacing:2.032370px;}
.ws198{word-spacing:2.044339px;}
.ws106{word-spacing:2.092146px;}
.ws11d{word-spacing:2.122537px;}
.ws107{word-spacing:2.151922px;}
.ws156{word-spacing:2.151936px;}
.wscd{word-spacing:2.194380px;}
.ws1f7{word-spacing:2.205734px;}
.ws26{word-spacing:2.211697px;}
.wsc0{word-spacing:2.236464px;}
.wsc1{word-spacing:2.254500px;}
.ws1cb{word-spacing:2.259533px;}
.ws1d{word-spacing:2.271473px;}
.wscf{word-spacing:2.302596px;}
.ws8a{word-spacing:2.305722px;}
.ws1e9{word-spacing:2.313331px;}
.ws12c{word-spacing:2.331248px;}
.wsce{word-spacing:2.338668px;}
.wsc2{word-spacing:2.344680px;}
.ws152{word-spacing:2.391024px;}
.ws175{word-spacing:2.420431px;}
.ws1b9{word-spacing:2.420928px;}
.ws150{word-spacing:2.450800px;}
.ws19d{word-spacing:2.474726px;}
.ws2c{word-spacing:2.510575px;}
.ws145{word-spacing:2.565895px;}
.ws99{word-spacing:2.569409px;}
.wsf8{word-spacing:2.570351px;}
.ws98{word-spacing:2.624599px;}
.ws130{word-spacing:2.630126px;}
.ws1a2{word-spacing:2.636122px;}
.ws2a{word-spacing:2.689902px;}
.ws1c5{word-spacing:2.689920px;}
.wsb{word-spacing:2.749678px;}
.ws2e{word-spacing:2.809453px;}
.ws16b{word-spacing:2.810610px;}
.ws215{word-spacing:2.851315px;}
.ws1ec{word-spacing:2.905114px;}
.wse9{word-spacing:2.927844px;}
.ws1e{word-spacing:2.929004px;}
.ws10e{word-spacing:2.945279px;}
.ws1b6{word-spacing:2.958912px;}
.ws97{word-spacing:2.986401px;}
.ws195{word-spacing:3.012710px;}
.ws36{word-spacing:3.048556px;}
.ws1b4{word-spacing:3.120307px;}
.ws12e{word-spacing:3.227882px;}
.ws191{word-spacing:3.227904px;}
.ws1a5{word-spacing:3.228691px;}
.ws207{word-spacing:3.228758px;}
.ws210{word-spacing:3.229555px;}
.ws1fa{word-spacing:3.229651px;}
.ws174{word-spacing:3.233855px;}
.ws143{word-spacing:3.283396px;}
.ws1f1{word-spacing:3.335501px;}
.wse6{word-spacing:3.396600px;}
.wse5{word-spacing:3.429000px;}
.ws78{word-spacing:3.443098px;}
.ws28{word-spacing:3.526760px;}
.ws9{word-spacing:3.586536px;}
.ws52{word-spacing:3.631248px;}
.ws17a{word-spacing:3.643873px;}
.ws4e{word-spacing:3.691368px;}
.ws4d{word-spacing:3.703392px;}
.ws159{word-spacing:3.706087px;}
.ws53{word-spacing:3.709404px;}
.ws49{word-spacing:3.715416px;}
.wse3{word-spacing:3.720600px;}
.wse4{word-spacing:3.763800px;}
.ws158{word-spacing:3.765863px;}
.ws7c{word-spacing:3.765888px;}
.ws104{word-spacing:3.819686px;}
.ws20{word-spacing:3.825638px;}
.ws4a{word-spacing:3.853692px;}
.ws14b{word-spacing:3.945190px;}
.ws149{word-spacing:3.974292px;}
.ws4f{word-spacing:3.979944px;}
.ws201{word-spacing:3.981082px;}
.ws68{word-spacing:3.985956px;}
.ws20a{word-spacing:4.034880px;}
.ws161{word-spacing:4.040665px;}
.wsed{word-spacing:4.082148px;}
.wsee{word-spacing:4.124232px;}
.ws134{word-spacing:4.124516px;}
.ws1e4{word-spacing:4.142477px;}
.ws24{word-spacing:4.184292px;}
.ws1bf{word-spacing:4.196275px;}
.wsb0{word-spacing:4.197096px;}
.wsaf{word-spacing:4.208112px;}
.ws9e{word-spacing:4.213620px;}
.wse{word-spacing:4.244068px;}
.ws9f{word-spacing:4.257684px;}
.ws34{word-spacing:4.363619px;}
.ws59{word-spacing:4.376736px;}
.ws170{word-spacing:4.437457px;}
.wsc5{word-spacing:4.442868px;}
.wsf3{word-spacing:4.483170px;}
.ws17f{word-spacing:4.514400px;}
.ws16f{word-spacing:4.523429px;}
.wsc6{word-spacing:4.527036px;}
.ws17e{word-spacing:4.538160px;}
.ws17d{word-spacing:4.544100px;}
.ws11b{word-spacing:4.597677px;}
.ws12d{word-spacing:4.602721px;}
.ws1d2{word-spacing:4.680461px;}
.ws11c{word-spacing:4.791263px;}
.ws9b{word-spacing:4.807676px;}
.ws60{word-spacing:4.838400px;}
.ws141{word-spacing:4.841824px;}
.ws1df{word-spacing:4.895654px;}
.ws32{word-spacing:4.901599px;}
.ws1e5{word-spacing:4.949453px;}
.wsf{word-spacing:4.961375px;}
.ws203{word-spacing:5.003251px;}
.ws9c{word-spacing:5.003908px;}
.ws1fc{word-spacing:5.057050px;}
.ws1a4{word-spacing:5.110848px;}
.ws88{word-spacing:5.224668px;}
.ws140{word-spacing:5.260253px;}
.ws1c1{word-spacing:5.272243px;}
.ws87{word-spacing:5.298255px;}
.ws8b{word-spacing:5.341181px;}
.ws189{word-spacing:5.965106px;}
.ws1f4{word-spacing:5.971622px;}
.ws14d{word-spacing:5.977560px;}
.ws1c{word-spacing:6.037336px;}
.ws37{word-spacing:6.097111px;}
.ws1be{word-spacing:6.133018px;}
.ws129{word-spacing:6.284644px;}
.ws90{word-spacing:6.285546px;}
.ws89{word-spacing:6.303943px;}
.ws20b{word-spacing:6.455808px;}
.wsf1{word-spacing:6.515540px;}
.ws67{word-spacing:6.547068px;}
.ws139{word-spacing:6.575316px;}
.ws66{word-spacing:6.601176px;}
.ws86{word-spacing:6.727067px;}
.ws127{word-spacing:6.740955px;}
.ws85{word-spacing:6.745464px;}
.ws18c{word-spacing:6.754643px;}
.ws128{word-spacing:6.782438px;}
.ws17b{word-spacing:6.791756px;}
.ws29{word-spacing:6.874194px;}
.ws1fd{word-spacing:6.886195px;}
.ws17{word-spacing:6.933970px;}
.ws1ac{word-spacing:7.208986px;}
.ws15f{word-spacing:7.241454px;}
.ws160{word-spacing:7.294360px;}
.ws1ad{word-spacing:7.424179px;}
.ws105{word-spacing:7.477978px;}
.ws111{word-spacing:7.494559px;}
.wsb1{word-spacing:7.501896px;}
.ws137{word-spacing:7.950155px;}
.ws136{word-spacing:8.009930px;}
.ws132{word-spacing:8.129482px;}
.ws165{word-spacing:8.802169px;}
.ws133{word-spacing:8.906564px;}
.ws164{word-spacing:8.927820px;}
.wsb5{word-spacing:8.966340px;}
.ws47{word-spacing:9.097200px;}
.ws80{word-spacing:9.279144px;}
.wsa7{word-spacing:9.683064px;}
.wsa8{word-spacing:9.694080px;}
.wsa9{word-spacing:9.727128px;}
.ws15e{word-spacing:10.006920px;}
.ws112{word-spacing:10.018096px;}
.ws199{word-spacing:10.167898px;}
.ws10b{word-spacing:10.461780px;}
.wsec{word-spacing:10.496952px;}
.wsa5{word-spacing:10.806696px;}
.wsa6{word-spacing:10.817712px;}
.ws14c{word-spacing:10.879159px;}
.wscb{word-spacing:11.242440px;}
.ws1cd{word-spacing:11.405261px;}
.ws16c{word-spacing:11.566487px;}
.ws21{word-spacing:11.905188px;}
.ws1ff{word-spacing:12.373632px;}
.ws204{word-spacing:12.384284px;}
.ws1db{word-spacing:12.384797px;}
.ws1b8{word-spacing:12.394666px;}
.ws1d5{word-spacing:12.400666px;}
.wsca{word-spacing:12.709368px;}
.wsc9{word-spacing:12.763476px;}
.ws20e{word-spacing:13.126810px;}
.ws1c7{word-spacing:13.234406px;}
.ws1de{word-spacing:13.268264px;}
.ws1d1{word-spacing:13.341869px;}
.ws19e{word-spacing:13.342003px;}
.ws1e6{word-spacing:13.385875px;}
.ws19f{word-spacing:13.388275px;}
.ws1e2{word-spacing:13.391875px;}
.ws1b5{word-spacing:13.392691px;}
.ws1c4{word-spacing:13.393114px;}
.ws1bc{word-spacing:13.393181px;}
.ws1ee{word-spacing:13.395053px;}
.ws209{word-spacing:13.395091px;}
.ws197{word-spacing:13.395802px;}
.ws1e3{word-spacing:13.449600px;}
.ws1f0{word-spacing:13.458980px;}
.ws1ce{word-spacing:13.466880px;}
.ws1ab{word-spacing:13.470884px;}
.ws20d{word-spacing:13.474085px;}
.ws1f9{word-spacing:13.491345px;}
.ws1d3{word-spacing:13.503398px;}
.ws1a6{word-spacing:13.531859px;}
.ws1c3{word-spacing:13.610995px;}
.ws1ed{word-spacing:13.642339px;}
.ws1f3{word-spacing:13.879987px;}
.ws1d9{word-spacing:13.936457px;}
.ws1a9{word-spacing:14.054104px;}
.ws14{word-spacing:14.679095px;}
.ws190{word-spacing:14.740762px;}
.ws151{word-spacing:14.764573px;}
.ws27{word-spacing:14.775842px;}
.ws16{word-spacing:14.780085px;}
.ws8{word-spacing:14.860699px;}
.wsd{word-spacing:14.884699px;}
.ws15a{word-spacing:14.906934px;}
.ws148{word-spacing:14.934037px;}
.ws147{word-spacing:14.947052px;}
.ws7b{word-spacing:14.955955px;}
.wsf4{word-spacing:15.003676px;}
.ws205{word-spacing:15.278746px;}
.ws70{word-spacing:15.288477px;}
.ws1d6{word-spacing:15.289398px;}
.ws1a8{word-spacing:15.332544px;}
.ws1b{word-spacing:15.530464px;}
.ws1b0{word-spacing:15.601536px;}
.ws1ea{word-spacing:15.689398px;}
.ws13f{word-spacing:15.780758px;}
.wsf6{word-spacing:15.883405px;}
.ws20c{word-spacing:15.924326px;}
.ws196{word-spacing:16.401163px;}
.ws1e8{word-spacing:16.408512px;}
.ws193{word-spacing:16.462310px;}
.ws1d0{word-spacing:16.615766px;}
.ws208{word-spacing:16.617014px;}
.ws1fb{word-spacing:16.618608px;}
.ws1dc{word-spacing:16.619453px;}
.ws206{word-spacing:16.620365px;}
.ws19a{word-spacing:16.620653px;}
.ws1d7{word-spacing:16.622736px;}
.ws1bd{word-spacing:16.622938px;}
.ws19c{word-spacing:16.623706px;}
.ws213{word-spacing:16.677504px;}
.ws1ef{word-spacing:16.731302px;}
.ws1ba{word-spacing:16.785101px;}
.ws1a0{word-spacing:16.838899px;}
.ws1dd{word-spacing:16.946496px;}
.ws1c6{word-spacing:17.000294px;}
.ws12b{word-spacing:17.155597px;}
.ws1c9{word-spacing:17.269286px;}
.ws142{word-spacing:17.449470px;}
.ws144{word-spacing:17.454196px;}
.ws146{word-spacing:17.463449px;}
.ws1c0{word-spacing:17.538278px;}
.ws33{word-spacing:17.693578px;}
.ws16d{word-spacing:17.875480px;}
.ws16e{word-spacing:17.915159px;}
.ws1da{word-spacing:18.076262px;}
.ws167{word-spacing:18.371470px;}
.ws166{word-spacing:18.404536px;}
.ws14a{word-spacing:18.866133px;}
.ws157{word-spacing:19.477523px;}
.ws179{word-spacing:20.686090px;}
.ws1ae{word-spacing:20.827973px;}
.ws38{word-spacing:21.006124px;}
.ws18{word-spacing:21.836346px;}
.ws1f6{word-spacing:22.218739px;}
.wsb6{word-spacing:23.842229px;}
.wsb4{word-spacing:23.850464px;}
.ws1eb{word-spacing:23.940288px;}
.ws1a3{word-spacing:24.962458px;}
.ws202{word-spacing:28.997338px;}
.ws1e0{word-spacing:31.741056px;}
.ws3{word-spacing:46.627738px;}
._1a{margin-left:-13.094136px;}
._1b{margin-left:-11.639232px;}
._f{margin-left:-7.878533px;}
._3{margin-left:-6.635092px;}
._6{margin-left:-4.949453px;}
._2{margin-left:-3.864910px;}
._17{margin-left:-2.705904px;}
._4{margin-left:-1.398758px;}
._9{width:1.091170px;}
._0{width:3.002621px;}
._1{width:4.081055px;}
._15{width:9.945170px;}
._19{width:12.025930px;}
._a{width:13.891859px;}
._5{width:15.709133px;}
._8{width:17.645875px;}
._d{width:18.913009px;}
._13{width:20.251992px;}
._c{width:21.459440px;}
._1d{width:22.515547px;}
._e{width:23.667937px;}
._1f{width:25.225303px;}
._b{width:26.624062px;}
._1e{width:27.775800px;}
._22{width:29.050942px;}
._28{width:30.083129px;}
._12{width:31.621292px;}
._21{width:33.175458px;}
._25{width:34.849175px;}
._14{width:36.750058px;}
._1c{width:37.837955px;}
._29{width:40.763171px;}
._24{width:43.038432px;}
._23{width:45.907661px;}
._2a{width:61.868160px;}
._7{width:63.858701px;}
._10{width:894.198341px;}
._16{width:1624.601916px;}
._18{width:1657.314681px;}
._27{width:1786.084981px;}
._20{width:1867.866894px;}
._26{width:2073.786041px;}
._11{width:2097.696041px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(45,91,113);}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs14{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fsd{font-size:48.837600px;}
.fs15{font-size:52.668000px;}
.fs5{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs12{font-size:55.062000px;}
.fs10{font-size:55.080000px;}
.fs18{font-size:59.400000px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:60.120000px;}
.fse{font-size:61.322400px;}
.fs11{font-size:62.286600px;}
.fs16{font-size:66.132000px;}
.fs13{font-size:69.138000px;}
.fsb{font-size:72.000000px;}
.fsf{font-size:73.440000px;}
.fs17{font-size:79.200000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:133.626526px;}
.y8c{bottom:-306.444234px;}
.y8b{bottom:-286.194315px;}
.yec{bottom:-272.222496px;}
.y8a{bottom:-265.944396px;}
.y15b{bottom:-258.778549px;}
.yeb{bottom:-251.972577px;}
.y89{bottom:-245.694477px;}
.yb7{bottom:-238.003434px;}
.y15a{bottom:-236.503638px;}
.yea{bottom:-231.722658px;}
.y88{bottom:-225.444558px;}
.yb6{bottom:-218.082375px;}
.y159{bottom:-214.228727px;}
.ye9{bottom:-211.472739px;}
.y87{bottom:-205.284819px;}
.yb5{bottom:-198.161316px;}
.y158{bottom:-191.953816px;}
.ye8{bottom:-191.222820px;}
.y86{bottom:-185.034900px;}
.yb4{bottom:-178.332516px;}
.y157{bottom:-169.678905px;}
.yb3{bottom:-158.411457px;}
.ye6{bottom:-153.514800px;}
.ye7{bottom:-153.512550px;}
.y85{bottom:-147.236400px;}
.yb2{bottom:-138.490398px;}
.ye5{bottom:-133.984350px;}
.y156{bottom:-128.199390px;}
.y84{bottom:-127.705950px;}
.yb1{bottom:-118.661598px;}
.ye4{bottom:-114.453900px;}
.y83{bottom:-108.265950px;}
.y155{bottom:-106.715895px;}
.yb0{bottom:-98.740539px;}
.ye3{bottom:-94.923450px;}
.y82{bottom:-88.735500px;}
.y154{bottom:-85.232400px;}
.yaf{bottom:-78.819480px;}
.ye2{bottom:-75.483450px;}
.y81{bottom:-69.205050px;}
.y153{bottom:-63.748905px;}
.yae{bottom:-58.990680px;}
.ye1{bottom:-55.953000px;}
.y80{bottom:-49.765050px;}
.y152{bottom:-42.364905px;}
.yad{bottom:-39.069621px;}
.ye0{bottom:-36.422550px;}
.y7f{bottom:-22.945050px;}
.y151{bottom:-12.862905px;}
.ydf{bottom:-9.152550px;}
.yac{bottom:-8.867421px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.507793px;}
.y11a{bottom:2.412205px;}
.y15{bottom:3.425340px;}
.y14{bottom:14.151273px;}
.y2{bottom:26.787821px;}
.y32{bottom:63.780000px;}
.y31{bottom:108.612000px;}
.y1dc{bottom:108.957000px;}
.yc8{bottom:110.284500px;}
.y12e{bottom:119.863500px;}
.y97{bottom:122.664000px;}
.y12b{bottom:123.051000px;}
.y17a{bottom:124.296000px;}
.y1a8{bottom:124.468500px;}
.y1db{bottom:128.325000px;}
.y30{bottom:128.875500px;}
.yc7{bottom:130.548000px;}
.yf8{bottom:138.444000px;}
.y63{bottom:140.128500px;}
.y96{bottom:142.927500px;}
.y12a{bottom:143.316000px;}
.y1a7{bottom:143.836500px;}
.y179{bottom:144.559500px;}
.y1da{bottom:147.691500px;}
.y2f{bottom:149.139000px;}
.yc6{bottom:150.811500px;}
.yf7{bottom:158.707500px;}
.y62{bottom:160.392000px;}
.y95{bottom:163.192500px;}
.y1a6{bottom:163.204500px;}
.y129{bottom:163.579500px;}
.y178{bottom:164.824500px;}
.y1d9{bottom:167.059500px;}
.y2e{bottom:169.404000px;}
.yc5{bottom:171.076500px;}
.yf6{bottom:178.971000px;}
.y61{bottom:180.657000px;}
.y1a5{bottom:182.571000px;}
.y94{bottom:183.456000px;}
.y128{bottom:183.843000px;}
.y177{bottom:185.088000px;}
.y1d8{bottom:186.427500px;}
.y2d{bottom:189.667500px;}
.yc4{bottom:191.340000px;}
.yf5{bottom:199.236000px;}
.y60{bottom:200.920500px;}
.y1a4{bottom:201.939000px;}
.y93{bottom:203.721000px;}
.y127{bottom:204.108000px;}
.y176{bottom:205.351500px;}
.y1d7{bottom:205.794000px;}
.y2c{bottom:209.932500px;}
.yc3{bottom:211.605000px;}
.yf4{bottom:219.499500px;}
.y5f{bottom:221.184000px;}
.y1a3{bottom:221.305500px;}
.y126{bottom:224.371500px;}
.y1d6{bottom:225.162000px;}
.y175{bottom:225.616500px;}
.y2b{bottom:230.196000px;}
.yc2{bottom:231.868500px;}
.y92{bottom:238.720500px;}
.y1a2{bottom:240.673500px;}
.y5e{bottom:241.449000px;}
.y1d5{bottom:244.528500px;}
.y125{bottom:244.636500px;}
.y174{bottom:245.880000px;}
.y2a{bottom:250.459500px;}
.yf3{bottom:254.500500px;}
.y91{bottom:257.953500px;}
.y1a1{bottom:260.041500px;}
.y5d{bottom:261.712500px;}
.y1d4{bottom:263.896500px;}
.y124{bottom:264.900000px;}
.y173{bottom:266.145000px;}
.yc1{bottom:266.869500px;}
.y29{bottom:270.724500px;}
.yf2{bottom:273.733500px;}
.y90{bottom:277.186500px;}
.y1a0{bottom:279.408000px;}
.y5c{bottom:281.977500px;}
.y1d3{bottom:283.264500px;}
.yc0{bottom:286.102500px;}
.y172{bottom:286.408500px;}
.y28{bottom:290.988000px;}
.yf1{bottom:292.966500px;}
.y123{bottom:294.130500px;}
.y8f{bottom:296.419500px;}
.y19f{bottom:298.776000px;}
.y5b{bottom:302.241000px;}
.y1d2{bottom:302.631000px;}
.ybf{bottom:305.334000px;}
.y171{bottom:306.672000px;}
.y27{bottom:311.253000px;}
.yf0{bottom:312.198000px;}
.y8e{bottom:315.652500px;}
.y19e{bottom:318.142500px;}
.y1d1{bottom:321.999000px;}
.y5a{bottom:322.504500px;}
.ybe{bottom:324.567000px;}
.y122{bottom:325.753500px;}
.y170{bottom:326.937000px;}
.yef{bottom:331.431000px;}
.y26{bottom:331.516500px;}
.y8d{bottom:334.885500px;}
.y19d{bottom:337.510500px;}
.y1d0{bottom:341.367000px;}
.y59{bottom:342.769500px;}
.ybd{bottom:343.800000px;}
.y121{bottom:344.986500px;}
.y16f{bottom:347.200500px;}
.yee{bottom:350.664000px;}
.y25{bottom:351.780000px;}
.y19c{bottom:356.878500px;}
.y70{bottom:357.313500px;}
.y1cf{bottom:360.733500px;}
.y58{bottom:363.033000px;}
.y120{bottom:364.219500px;}
.y16e{bottom:367.465500px;}
.yed{bottom:369.897000px;}
.y24{bottom:372.045000px;}
.y19b{bottom:376.245000px;}
.y1ce{bottom:380.101500px;}
.ybc{bottom:382.266000px;}
.y57{bottom:383.298000px;}
.y11f{bottom:383.452500px;}
.y150{bottom:385.812679px;}
.y16d{bottom:387.729000px;}
.y23{bottom:392.308500px;}
.yca{bottom:392.326500px;}
.y19a{bottom:395.613000px;}
.y1cd{bottom:399.468000px;}
.ybb{bottom:401.499000px;}
.yde{bottom:401.699448px;}
.y11e{bottom:402.685500px;}
.y56{bottom:403.561500px;}
.y16c{bottom:407.992500px;}
.y14f{bottom:408.087590px;}
.y22{bottom:412.573500px;}
.y199{bottom:414.979500px;}
.y1cc{bottom:418.836000px;}
.yba{bottom:420.732000px;}
.y11d{bottom:421.917000px;}
.ydd{bottom:421.949367px;}
.y55{bottom:423.825000px;}
.y16b{bottom:428.257500px;}
.y14e{bottom:430.362501px;}
.y21{bottom:432.837000px;}
.y198{bottom:434.347500px;}
.y1cb{bottom:438.204000px;}
.yab{bottom:439.393934px;}
.yb9{bottom:439.965000px;}
.y11c{bottom:441.150000px;}
.ydc{bottom:442.199286px;}
.y54{bottom:444.090000px;}
.y16a{bottom:448.521000px;}
.y14d{bottom:452.637412px;}
.y197{bottom:453.715500px;}
.y1ca{bottom:457.570500px;}
.yb8{bottom:459.198000px;}
.yaa{bottom:460.048852px;}
.y11b{bottom:460.383000px;}
.y20{bottom:462.067500px;}
.ydb{bottom:462.359025px;}
.y53{bottom:464.353500px;}
.y169{bottom:468.786000px;}
.y196{bottom:473.082000px;}
.y14c{bottom:474.912323px;}
.y1c9{bottom:476.938500px;}
.ya9{bottom:480.611786px;}
.y98{bottom:481.627500px;}
.yda{bottom:482.608944px;}
.y102{bottom:482.813535px;}
.y52{bottom:484.618500px;}
.y168{bottom:489.049500px;}
.y195{bottom:492.450000px;}
.y7e{bottom:492.666318px;}
.y1c8{bottom:496.305000px;}
.y14b{bottom:497.187233px;}
.ya8{bottom:501.266703px;}
.yd9{bottom:502.858863px;}
.y51{bottom:504.882000px;}
.y167{bottom:509.313000px;}
.y12d{bottom:510.306000px;}
.y194{bottom:511.816500px;}
.y7d{bottom:512.916237px;}
.y1c7{bottom:515.673000px;}
.y14a{bottom:519.362946px;}
.ya7{bottom:521.921620px;}
.yd8{bottom:523.108782px;}
.y50{bottom:525.145500px;}
.y166{bottom:529.578000px;}
.y193{bottom:531.184500px;}
.y7c{bottom:533.166156px;}
.y1c6{bottom:535.041000px;}
.y1f{bottom:538.476000px;}
.y149{bottom:541.637857px;}
.ya6{bottom:542.576538px;}
.yd7{bottom:543.358701px;}
.y4f{bottom:545.410500px;}
.y165{bottom:549.841500px;}
.y192{bottom:550.552500px;}
.y7b{bottom:553.416075px;}
.y1c5{bottom:554.407500px;}
.y1e{bottom:558.739500px;}
.ya5{bottom:563.231455px;}
.yd6{bottom:563.608620px;}
.y148{bottom:563.912768px;}
.y4e{bottom:565.674000px;}
.y191{bottom:569.919000px;}
.y164{bottom:570.106500px;}
.y7a{bottom:573.575814px;}
.y1c4{bottom:573.775500px;}
.y138{bottom:574.641000px;}
.y1d{bottom:579.004500px;}
.yd5{bottom:583.858539px;}
.ya4{bottom:583.886372px;}
.y4d{bottom:585.939000px;}
.y147{bottom:586.187679px;}
.y190{bottom:589.287000px;}
.y163{bottom:590.370000px;}
.y1c3{bottom:593.142000px;}
.y79{bottom:593.825733px;}
.yd4{bottom:604.018278px;}
.ya3{bottom:604.541290px;}
.y4c{bottom:606.202500px;}
.y146{bottom:608.462590px;}
.y18f{bottom:608.653500px;}
.y137{bottom:609.460500px;}
.y162{bottom:610.633500px;}
.y1c2{bottom:612.510000px;}
.y78{bottom:614.075652px;}
.y1c{bottom:617.200500px;}
.yd3{bottom:624.268197px;}
.ya2{bottom:625.104224px;}
.y4b{bottom:626.466000px;}
.y18e{bottom:628.021500px;}
.y136{bottom:629.724000px;}
.y145{bottom:630.737501px;}
.y1c1{bottom:631.878000px;}
.y77{bottom:634.325571px;}
.y1b{bottom:637.465500px;}
.y161{bottom:639.864000px;}
.yd2{bottom:644.518116px;}
.ya1{bottom:645.759141px;}
.y4a{bottom:646.731000px;}
.y18d{bottom:647.389500px;}
.y135{bottom:649.987500px;}
.y1c0{bottom:651.244500px;}
.y144{bottom:653.012412px;}
.y76{bottom:654.575490px;}
.y1a{bottom:657.729000px;}
.yd1{bottom:664.768035px;}
.ya0{bottom:666.414058px;}
.y18c{bottom:666.756000px;}
.y49{bottom:666.994500px;}
.y134{bottom:670.252500px;}
.y1bf{bottom:670.612500px;}
.y160{bottom:671.487000px;}
.y119{bottom:673.816509px;}
.y75{bottom:674.825409px;}
.y143{bottom:675.188125px;}
.y19{bottom:677.992500px;}
.yd0{bottom:685.017954px;}
.y18b{bottom:686.124000px;}
.y9f{bottom:687.068976px;}
.y48{bottom:687.258000px;}
.y1be{bottom:689.979000px;}
.y133{bottom:690.516000px;}
.y15f{bottom:690.720000px;}
.y74{bottom:695.075328px;}
.y118{bottom:697.103916px;}
.y142{bottom:697.463036px;}
.y18{bottom:698.257500px;}
.ycf{bottom:705.267873px;}
.y18a{bottom:705.490500px;}
.y47{bottom:707.523000px;}
.y9e{bottom:707.723893px;}
.y1bd{bottom:709.347000px;}
.y15e{bottom:709.953000px;}
.y132{bottom:710.781000px;}
.y73{bottom:715.235067px;}
.y17{bottom:718.521000px;}
.y117{bottom:720.391323px;}
.y189{bottom:724.858500px;}
.yce{bottom:725.517792px;}
.y46{bottom:727.786500px;}
.y9d{bottom:728.378810px;}
.y1bc{bottom:728.715000px;}
.y15d{bottom:729.186000px;}
.y141{bottom:729.637907px;}
.y131{bottom:731.044500px;}
.y16{bottom:738.786000px;}
.y116{bottom:743.678729px;}
.y188{bottom:744.226500px;}
.y72{bottom:744.484950px;}
.ycd{bottom:745.677531px;}
.y45{bottom:748.051500px;}
.y1bb{bottom:748.081500px;}
.y15c{bottom:748.419000px;}
.y9c{bottom:749.033728px;}
.y130{bottom:751.308000px;}
.y187{bottom:763.593000px;}
.ycc{bottom:765.927450px;}
.y115{bottom:766.966136px;}
.y1ba{bottom:767.449500px;}
.y101{bottom:768.315000px;}
.y9b{bottom:769.596662px;}
.y13{bottom:769.988964px;}
.y12{bottom:770.382000px;}
.y139{bottom:770.848500px;}
.y12f{bottom:771.573000px;}
.y140{bottom:771.712739px;}
.y44{bottom:777.282000px;}
.y71{bottom:781.834950px;}
.y186{bottom:782.961000px;}
.y1b9{bottom:786.816000px;}
.y100{bottom:788.578500px;}
.y9a{bottom:790.251579px;}
.y114{bottom:790.253543px;}
.yc9{bottom:791.836500px;}
.y13f{bottom:793.987649px;}
.y12c{bottom:797.545500px;}
.y185{bottom:802.327500px;}
.ycb{bottom:803.277450px;}
.y1b8{bottom:806.184000px;}
.yff{bottom:808.843500px;}
.y11{bottom:809.754000px;}
.y43{bottom:812.101500px;}
.y113{bottom:813.437243px;}
.y13e{bottom:816.262560px;}
.y184{bottom:821.695500px;}
.y1b7{bottom:825.552000px;}
.y10{bottom:827.911500px;}
.y99{bottom:828.348579px;}
.yfe{bottom:829.107000px;}
.y1df{bottom:831.336000px;}
.y42{bottom:832.365000px;}
.y112{bottom:836.724650px;}
.y13d{bottom:838.537471px;}
.y183{bottom:841.063500px;}
.y1b6{bottom:844.918500px;}
.yf{bottom:846.067500px;}
.yfd{bottom:849.372000px;}
.y1de{bottom:850.702500px;}
.y41{bottom:852.628500px;}
.y111{bottom:860.012057px;}
.y182{bottom:860.430000px;}
.y13c{bottom:860.713184px;}
.y6f{bottom:863.926500px;}
.y1b5{bottom:864.286500px;}
.ye{bottom:869.107500px;}
.yfc{bottom:869.635500px;}
.y1dd{bottom:870.070500px;}
.y40{bottom:872.893500px;}
.yd{bottom:882.382500px;}
.y13b{bottom:882.988095px;}
.y110{bottom:883.299464px;}
.y1b4{bottom:883.653000px;}
.y6e{bottom:884.191500px;}
.y181{bottom:888.763500px;}
.yfb{bottom:889.899000px;}
.y3f{bottom:893.157000px;}
.y1b3{bottom:903.021000px;}
.y6d{bottom:904.455000px;}
.yc{bottom:905.421000px;}
.y10f{bottom:906.586870px;}
.yfa{bottom:910.164000px;}
.y3e{bottom:913.422000px;}
.yb{bottom:918.696000px;}
.y1b2{bottom:922.389000px;}
.y13a{bottom:924.073095px;}
.y6c{bottom:924.718500px;}
.y180{bottom:928.216500px;}
.y10e{bottom:929.874277px;}
.y3d{bottom:933.685500px;}
.ya{bottom:936.853500px;}
.yf9{bottom:939.394500px;}
.y1b1{bottom:941.755500px;}
.y17f{bottom:943.414500px;}
.y6b{bottom:944.983500px;}
.y10d{bottom:953.161684px;}
.y3c{bottom:953.949000px;}
.y17e{bottom:958.612500px;}
.y9{bottom:959.892000px;}
.y1b0{bottom:961.123500px;}
.y6a{bottom:965.247000px;}
.y3b{bottom:974.214000px;}
.y10c{bottom:976.345384px;}
.y8{bottom:977.904000px;}
.y1af{bottom:980.490000px;}
.y17d{bottom:982.777500px;}
.y69{bottom:985.512000px;}
.y3a{bottom:994.477500px;}
.y17c{bottom:997.975500px;}
.y7{bottom:998.167500px;}
.y10b{bottom:999.632791px;}
.y1ae{bottom:999.858000px;}
.y68{bottom:1005.775500px;}
.y39{bottom:1014.742500px;}
.y1ad{bottom:1019.226000px;}
.y17b{bottom:1022.139000px;}
.y10a{bottom:1022.920198px;}
.y67{bottom:1026.039000px;}
.y38{bottom:1035.006000px;}
.y1ac{bottom:1038.592500px;}
.y6{bottom:1040.848500px;}
.y109{bottom:1046.207604px;}
.y66{bottom:1046.304000px;}
.y37{bottom:1055.269500px;}
.y1ab{bottom:1057.960500px;}
.y65{bottom:1066.567500px;}
.y108{bottom:1069.495011px;}
.y5{bottom:1071.244500px;}
.y36{bottom:1075.534500px;}
.y1aa{bottom:1077.327000px;}
.y64{bottom:1086.832500px;}
.y35{bottom:1095.798000px;}
.y1a9{bottom:1096.695000px;}
.y4{bottom:1100.145000px;}
.y107{bottom:1103.132377px;}
.y34{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y106{bottom:1147.119701px;}
.y33{bottom:1168.366500px;}
.y105{bottom:1170.303401px;}
.y104{bottom:1193.590807px;}
.y103{bottom:1236.543308px;}
.ha{height:25.508090px;}
.h26{height:30.106714px;}
.h8{height:30.461558px;}
.hc{height:33.112997px;}
.hb{height:34.199443px;}
.h11{height:34.951465px;}
.hf{height:35.052500px;}
.h18{height:35.650494px;}
.h1e{height:37.551283px;}
.h28{height:38.446611px;}
.h1d{height:38.734848px;}
.h9{height:39.165235px;}
.h16{height:39.260742px;}
.h15{height:39.418945px;}
.h2e{height:39.434227px;}
.h20{height:39.614278px;}
.h1c{height:40.045957px;}
.h23{height:40.194185px;}
.h1b{height:40.207324px;}
.h1f{height:41.723369px;}
.hd{height:43.038432px;}
.h2d{height:43.186816px;}
.h2c{height:43.360840px;}
.he{height:43.516637px;}
.h13{height:43.710293px;}
.h4{height:43.815515px;}
.h12{height:43.886426px;}
.h19{height:44.584499px;}
.h29{height:48.081322px;}
.h2a{height:48.275068px;}
.h24{height:50.266837px;}
.h25{height:50.469390px;}
.h2{height:50.931027px;}
.h14{height:52.347656px;}
.h1a{height:53.394609px;}
.h7{height:54.405312px;}
.h6{height:54.411312px;}
.h2b{height:57.582422px;}
.h5{height:77.469696px;}
.h3{height:90.598785px;}
.h27{height:360.157050px;}
.h21{height:375.870000px;}
.h17{height:428.416830px;}
.h10{height:486.865500px;}
.h22{height:648.198765px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:205.107834px;}
.w7{width:515.838825px;}
.w4{width:560.022000px;}
.w6{width:585.878850px;}
.w8{width:599.489550px;}
.w5{width:627.187086px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x85{left:-118.148700px;}
.x86{left:-81.509821px;}
.xd4{left:-60.403200px;}
.x38{left:-50.391000px;}
.x6a{left:-33.994650px;}
.xd5{left:-25.357316px;}
.x48{left:-22.452444px;}
.x39{left:-18.531106px;}
.x6b{left:-2.134650px;}
.x0{left:0.000000px;}
.x49{left:10.043116px;}
.x7{left:29.274117px;}
.x2{left:58.055459px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x61{left:127.678500px;}
.x47{left:132.862194px;}
.x60{left:144.526500px;}
.x4{left:146.170500px;}
.x69{left:153.517650px;}
.x37{left:166.446000px;}
.x1c{left:174.051000px;}
.xc6{left:179.278500px;}
.x8{left:188.106000px;}
.xad{left:190.440000px;}
.x9b{left:195.481500px;}
.x1d{left:196.617000px;}
.xae{left:200.340000px;}
.x9{left:203.733000px;}
.x4b{left:205.680000px;}
.x9c{left:206.764500px;}
.x1e{left:211.560000px;}
.x89{left:213.700500px;}
.x92{left:215.449500px;}
.x53{left:216.687000px;}
.xc{left:217.696500px;}
.x4e{left:220.231500px;}
.x3c{left:222.028500px;}
.xd{left:225.168000px;}
.x8a{left:227.149500px;}
.x2d{left:229.014000px;}
.x93{left:230.394000px;}
.xc7{left:232.440000px;}
.x67{left:234.690000px;}
.x3d{left:236.973000px;}
.x8d{left:239.119500px;}
.xb8{left:240.351000px;}
.xe5{left:242.701500px;}
.x2e{left:243.958500px;}
.x8e{left:245.091000px;}
.x68{left:247.479000px;}
.x94{left:249.043500px;}
.x29{left:251.629500px;}
.x95{left:252.750000px;}
.xf4{left:254.101500px;}
.xb9{left:255.294000px;}
.xe4{left:259.765500px;}
.x9d{left:261.126000px;}
.x58{left:263.794500px;}
.xf3{left:265.518000px;}
.x2a{left:266.574000px;}
.x96{left:267.693000px;}
.x91{left:269.182500px;}
.x97{left:271.399500px;}
.x2b{left:273.940500px;}
.x59{left:275.287500px;}
.x1f{left:278.055000px;}
.x7b{left:280.743000px;}
.xa9{left:282.240000px;}
.x33{left:284.158500px;}
.x98{left:286.344000px;}
.xd7{left:287.596500px;}
.x2c{left:288.885000px;}
.x99{left:290.050500px;}
.x20{left:292.999500px;}
.x7c{left:295.687500px;}
.xaa{left:297.183000px;}
.x34{left:299.101500px;}
.xab{left:300.844500px;}
.x35{left:302.763000px;}
.x9a{left:304.993500px;}
.xd8{left:306.265500px;}
.x6d{left:307.915350px;}
.x3b{left:311.968500px;}
.xac{left:315.789000px;}
.x36{left:317.707500px;}
.x5c{left:320.356500px;}
.x72{left:322.360500px;}
.x76{left:324.825000px;}
.x18{left:327.795000px;}
.x6e{left:331.429500px;}
.x77{left:333.870000px;}
.x19{left:335.266500px;}
.x73{left:337.305000px;}
.x5d{left:339.111000px;}
.xa3{left:340.572000px;}
.x1a{left:342.888000px;}
.x74{left:344.926500px;}
.xcc{left:346.615500px;}
.x5e{left:354.054000px;}
.x1b{left:357.832500px;}
.x75{left:359.869500px;}
.x6f{left:360.915000px;}
.xda{left:363.039000px;}
.x82{left:364.119000px;}
.xc8{left:369.160500px;}
.x7d{left:372.234000px;}
.xdd{left:376.158000px;}
.xc9{left:384.103500px;}
.x7e{left:387.177000px;}
.xde{left:391.102500px;}
.xdf{left:394.912500px;}
.xa0{left:399.169500px;}
.xca{left:402.858000px;}
.xcb{left:406.669500px;}
.xe0{left:409.857000px;}
.xa1{left:414.114000px;}
.xa2{left:417.894000px;}
.xc4{left:421.539000px;}
.x3e{left:424.677000px;}
.xc5{left:429.010500px;}
.xb1{left:430.971000px;}
.x70{left:432.931500px;}
.x12{left:434.814000px;}
.x3f{left:439.621500px;}
.x13{left:442.287000px;}
.xd3{left:445.752000px;}
.xb2{left:447.462000px;}
.x40{left:450.433500px;}
.xaf{left:454.261500px;}
.xba{left:456.496500px;}
.x45{left:458.175000px;}
.x27{left:462.426000px;}
.xcd{left:464.985000px;}
.xe1{left:466.120500px;}
.x4c{left:469.003500px;}
.xbb{left:471.441000px;}
.x46{left:473.119500px;}
.x28{left:477.370500px;}
.xce{left:479.929500px;}
.x4d{left:480.946500px;}
.xcf{left:483.739500px;}
.x64{left:485.628000px;}
.xdb{left:493.150500px;}
.xd0{left:498.684000px;}
.xdc{left:505.983000px;}
.x8b{left:510.463500px;}
.xbf{left:513.762000px;}
.xb3{left:516.600000px;}
.x8c{left:518.680500px;}
.xa4{left:521.458500px;}
.x78{left:523.003500px;}
.x41{left:526.705500px;}
.xc0{left:528.705000px;}
.xb4{left:531.544500px;}
.xb5{left:535.318500px;}
.xa5{left:536.403000px;}
.x79{left:537.946500px;}
.xa6{left:540.213000px;}
.x42{left:541.648500px;}
.x43{left:545.415000px;}
.xc1{left:547.459500px;}
.xb6{left:550.261500px;}
.xb7{left:551.841000px;}
.xf1{left:553.681500px;}
.x2f{left:555.256500px;}
.x7a{left:556.630500px;}
.xa7{left:558.967500px;}
.x44{left:560.358000px;}
.x3a{left:567.009000px;}
.x30{left:570.199500px;}
.x31{left:573.996000px;}
.x4f{left:575.772000px;}
.xa8{left:577.723500px;}
.xd6{left:580.263000px;}
.xc2{left:584.970000px;}
.x87{left:587.193000px;}
.x32{left:588.939000px;}
.x50{left:592.570500px;}
.x88{left:593.917500px;}
.xf2{left:597.366000px;}
.x6c{left:599.155350px;}
.xd1{left:600.283500px;}
.xc3{left:603.724500px;}
.x51{left:606.019500px;}
.xbc{left:607.551000px;}
.x62{left:611.478000px;}
.xbd{left:612.625500px;}
.xf0{left:614.424000px;}
.x65{left:617.727000px;}
.xd2{left:619.038000px;}
.x52{left:622.500000px;}
.x63{left:624.060000px;}
.x54{left:625.933500px;}
.xbe{left:627.570000px;}
.x14{left:629.518500px;}
.xee{left:631.266000px;}
.x66{left:632.671500px;}
.x4a{left:635.937003px;}
.x15{left:636.990000px;}
.x55{left:639.382500px;}
.x16{left:640.651500px;}
.x8f{left:644.544000px;}
.x7f{left:646.507500px;}
.x17{left:648.123000px;}
.x56{left:655.134000px;}
.x80{left:661.452000px;}
.x57{left:663.351000px;}
.x81{left:665.254500px;}
.x24{left:666.385500px;}
.xeb{left:671.991000px;}
.x25{left:673.857000px;}
.x71{left:675.466500px;}
.x26{left:677.656500px;}
.xe{left:680.878500px;}
.xe2{left:684.591000px;}
.xf{left:688.350000px;}
.x83{left:689.733000px;}
.x10{left:692.034000px;}
.xe9{left:695.290500px;}
.xb0{left:697.767000px;}
.x11{left:699.505500px;}
.x6{left:701.339982px;}
.x5a{left:703.354500px;}
.x84{left:704.677500px;}
.x5b{left:712.399500px;}
.x90{left:718.381500px;}
.x9e{left:719.661000px;}
.xea{left:722.190000px;}
.xd9{left:724.680000px;}
.xe7{left:728.034000px;}
.xef{left:729.783000px;}
.x9f{left:734.605500px;}
.x21{left:738.141000px;}
.xe3{left:740.406000px;}
.xec{left:749.577000px;}
.x22{left:753.084000px;}
.xe8{left:754.933500px;}
.x23{left:756.895500px;}
.xe6{left:762.187500px;}
.xa{left:764.367000px;}
.x5f{left:769.065000px;}
.xb{left:771.838500px;}
.xed{left:776.476500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls53{letter-spacing:-1.135872pt;}
.ls9b{letter-spacing:-0.323312pt;}
.ls6a{letter-spacing:-0.309952pt;}
.ls9e{letter-spacing:-0.293920pt;}
.ls22{letter-spacing:-0.138944pt;}
.lsa1{letter-spacing:-0.129325pt;}
.ls81{letter-spacing:-0.129058pt;}
.ls27{letter-spacing:-0.122912pt;}
.ls51{letter-spacing:-0.114468pt;}
.ls80{letter-spacing:-0.110621pt;}
.ls7f{letter-spacing:-0.098330pt;}
.ls64{letter-spacing:-0.096192pt;}
.ls9a{letter-spacing:-0.094054pt;}
.ls7b{letter-spacing:-0.088099pt;}
.ls4e{letter-spacing:-0.087214pt;}
.ls6d{letter-spacing:-0.085504pt;}
.ls97{letter-spacing:-0.084269pt;}
.lsa3{letter-spacing:-0.082298pt;}
.ls63{letter-spacing:-0.080160pt;}
.ls83{letter-spacing:-0.079893pt;}
.ls48{letter-spacing:-0.078140pt;}
.ls1f{letter-spacing:-0.076608pt;}
.ls69{letter-spacing:-0.074816pt;}
.ls7e{letter-spacing:-0.073747pt;}
.ls9c{letter-spacing:-0.064662pt;}
.ls29{letter-spacing:-0.064128pt;}
.ls7d{letter-spacing:-0.061456pt;}
.ls25{letter-spacing:-0.058784pt;}
.ls66{letter-spacing:-0.053440pt;}
.ls99{letter-spacing:-0.052906pt;}
.ls4a{letter-spacing:-0.049058pt;}
.ls4f{letter-spacing:-0.043607pt;}
.ls85{letter-spacing:-0.043019pt;}
.ls65{letter-spacing:-0.042752pt;}
.lsa0{letter-spacing:-0.041149pt;}
.ls23{letter-spacing:-0.037408pt;}
.ls7c{letter-spacing:-0.036874pt;}
.ls9d{letter-spacing:-0.035270pt;}
.ls4c{letter-spacing:-0.032705pt;}
.ls2a{letter-spacing:-0.032064pt;}
.ls82{letter-spacing:-0.030728pt;}
.ls6b{letter-spacing:-0.026720pt;}
.ls52{letter-spacing:-0.024480pt;}
.ls9f{letter-spacing:-0.023514pt;}
.ls2c{letter-spacing:-0.021376pt;}
.ls54{letter-spacing:-0.019584pt;}
.lsa5{letter-spacing:-0.017635pt;}
.ls49{letter-spacing:-0.016353pt;}
.ls21{letter-spacing:-0.016032pt;}
.lsa4{letter-spacing:-0.015840pt;}
.ls50{letter-spacing:-0.010902pt;}
.ls26{letter-spacing:-0.010688pt;}
.ls55{letter-spacing:-0.009792pt;}
.ls84{letter-spacing:-0.006146pt;}
.ls98{letter-spacing:-0.005878pt;}
.ls4d{letter-spacing:-0.005451pt;}
.ls24{letter-spacing:-0.005344pt;}
.ls2b{letter-spacing:-0.004800pt;}
.ls7{letter-spacing:0.000000pt;}
.lsa7{letter-spacing:0.000711pt;}
.lsb3{letter-spacing:0.004267pt;}
.ls5e{letter-spacing:0.004800pt;}
.ls6{letter-spacing:0.005067pt;}
.ls11{letter-spacing:0.005344pt;}
.ls73{letter-spacing:0.006146pt;}
.lsd{letter-spacing:0.008512pt;}
.ls2f{letter-spacing:0.008682pt;}
.ls89{letter-spacing:0.009363pt;}
.ls16{letter-spacing:0.009600pt;}
.ls70{letter-spacing:0.009789pt;}
.ls3f{letter-spacing:0.009792pt;}
.ls58{letter-spacing:0.010688pt;}
.ls90{letter-spacing:0.011757pt;}
.ls78{letter-spacing:0.012291pt;}
.lsb{letter-spacing:0.012768pt;}
.ls2d{letter-spacing:0.013023pt;}
.ls87{letter-spacing:0.014045pt;}
.ls15{letter-spacing:0.014400pt;}
.ls6e{letter-spacing:0.014683pt;}
.ls3d{letter-spacing:0.014688pt;}
.ls91{letter-spacing:0.015840pt;}
.ls56{letter-spacing:0.016032pt;}
.ls32{letter-spacing:0.016353pt;}
.ls8d{letter-spacing:0.017635pt;}
.ls72{letter-spacing:0.018437pt;}
.ls17{letter-spacing:0.019200pt;}
.ls41{letter-spacing:0.019584pt;}
.ls95{letter-spacing:0.021120pt;}
.ls34{letter-spacing:0.021804pt;}
.ls8b{letter-spacing:0.023514pt;}
.ls18{letter-spacing:0.024000pt;}
.ls47{letter-spacing:0.024480pt;}
.ls7a{letter-spacing:0.024582pt;}
.ls92{letter-spacing:0.026400pt;}
.ls1b{letter-spacing:0.026720pt;}
.ls31{letter-spacing:0.027254pt;}
.ls5c{letter-spacing:0.028800pt;}
.ls42{letter-spacing:0.029376pt;}
.ls77{letter-spacing:0.030728pt;}
.ls94{letter-spacing:0.031680pt;}
.ls1d{letter-spacing:0.032064pt;}
.ls33{letter-spacing:0.032705pt;}
.ls8c{letter-spacing:0.035270pt;}
.ls79{letter-spacing:0.036874pt;}
.ls10{letter-spacing:0.037408pt;}
.ls3b{letter-spacing:0.038156pt;}
.ls44{letter-spacing:0.039168pt;}
.ls8e{letter-spacing:0.041149pt;}
.ls93{letter-spacing:0.042240pt;}
.ls13{letter-spacing:0.042752pt;}
.ls1a{letter-spacing:0.043200pt;}
.ls3a{letter-spacing:0.043607pt;}
.ls40{letter-spacing:0.044064pt;}
.ls28{letter-spacing:0.048096pt;}
.ls43{letter-spacing:0.048960pt;}
.ls36{letter-spacing:0.049058pt;}
.ls75{letter-spacing:0.049165pt;}
.ls8f{letter-spacing:0.052906pt;}
.ls57{letter-spacing:0.053440pt;}
.ls35{letter-spacing:0.054509pt;}
.ls74{letter-spacing:0.055310pt;}
.ls19{letter-spacing:0.057600pt;}
.ls14{letter-spacing:0.058784pt;}
.ls37{letter-spacing:0.059960pt;}
.ls76{letter-spacing:0.061456pt;}
.ls5d{letter-spacing:0.062400pt;}
.ls3e{letter-spacing:0.063648pt;}
.ls1c{letter-spacing:0.064128pt;}
.ls4b{letter-spacing:0.065411pt;}
.ls12{letter-spacing:0.069472pt;}
.ls96{letter-spacing:0.070541pt;}
.ls39{letter-spacing:0.070861pt;}
.ls61{letter-spacing:0.072000pt;}
.ls5a{letter-spacing:0.074816pt;}
.lsa2{letter-spacing:0.076419pt;}
.ls5b{letter-spacing:0.080160pt;}
.lsf{letter-spacing:0.085504pt;}
.ls3c{letter-spacing:0.087214pt;}
.ls68{letter-spacing:0.106880pt;}
.ls59{letter-spacing:0.112224pt;}
.ls60{letter-spacing:0.124800pt;}
.ls45{letter-spacing:0.127296pt;}
.ls46{letter-spacing:0.141984pt;}
.lse{letter-spacing:0.161728pt;}
.ls6c{letter-spacing:0.163200pt;}
.ls30{letter-spacing:0.164963pt;}
.lsc{letter-spacing:0.170240pt;}
.ls2e{letter-spacing:0.173645pt;}
.ls38{letter-spacing:0.174428pt;}
.ls8a{letter-spacing:0.177901pt;}
.ls71{letter-spacing:0.185987pt;}
.ls88{letter-spacing:0.187264pt;}
.ls6f{letter-spacing:0.195776pt;}
.ls8{letter-spacing:1.133683pt;}
.ls20{letter-spacing:1.368064pt;}
.ls4{letter-spacing:1.654338pt;}
.ls0{letter-spacing:2.657067pt;}
.ls5f{letter-spacing:3.364800pt;}
.ls5{letter-spacing:10.626533pt;}
.lsae{letter-spacing:11.058133pt;}
.lsbf{letter-spacing:11.260805pt;}
.ls67{letter-spacing:11.291872pt;}
.lsc2{letter-spacing:11.609426pt;}
.lsc0{letter-spacing:11.730458pt;}
.lsb7{letter-spacing:11.764787pt;}
.lsb1{letter-spacing:11.824568pt;}
.lsbc{letter-spacing:11.851336pt;}
.lsaf{letter-spacing:11.903624pt;}
.lsaa{letter-spacing:11.919310pt;}
.lsa8{letter-spacing:11.954133pt;}
.ls62{letter-spacing:11.954852pt;}
.lsa9{letter-spacing:11.959467pt;}
.lsb6{letter-spacing:11.991467pt;}
.lsb9{letter-spacing:12.009889pt;}
.lsad{letter-spacing:12.026077pt;}
.lsc1{letter-spacing:12.055531pt;}
.lsb2{letter-spacing:12.086630pt;}
.lsb5{letter-spacing:12.110106pt;}
.lsb4{letter-spacing:12.389898pt;}
.lsba{letter-spacing:12.562447pt;}
.ls9{letter-spacing:13.389734pt;}
.ls1e{letter-spacing:13.496002pt;}
.lsa6{letter-spacing:13.545454pt;}
.lsa{letter-spacing:13.549136pt;}
.lsbe{letter-spacing:13.597741pt;}
.lsbb{letter-spacing:13.906238pt;}
.lsac{letter-spacing:14.172905pt;}
.lsb8{letter-spacing:14.559833pt;}
.lsab{letter-spacing:14.920617pt;}
.lsbd{letter-spacing:16.416042pt;}
.lsb0{letter-spacing:16.646107pt;}
.ls86{letter-spacing:17.640444pt;}
.ls2{letter-spacing:62.432533pt;}
.ls3{letter-spacing:64.314231pt;}
.ls1{letter-spacing:64.321067pt;}
.ws0{word-spacing:-92.410167pt;}
.ws73{word-spacing:-54.508800pt;}
.wsbb{word-spacing:-53.440000pt;}
.ws74{word-spacing:-48.960000pt;}
.wsba{word-spacing:-48.000000pt;}
.wsfe{word-spacing:-15.265670pt;}
.ws154{word-spacing:-14.696000pt;}
.ws155{word-spacing:-14.372688pt;}
.ws72{word-spacing:-13.692611pt;}
.wsfd{word-spacing:-12.431776pt;}
.wsb9{word-spacing:-12.000000pt;}
.ws192{word-spacing:-11.955200pt;}
.ws153{word-spacing:-11.891264pt;}
.ws71{word-spacing:-11.026445pt;}
.ws3f{word-spacing:-10.810240pt;}
.ws22{word-spacing:-10.626800pt;}
.ws4{word-spacing:-10.095467pt;}
.ws126{word-spacing:-3.632050pt;}
.ws11e{word-spacing:-3.521429pt;}
.ws11f{word-spacing:-3.453827pt;}
.wsda{word-spacing:-3.195712pt;}
.ws57{word-spacing:-3.110208pt;}
.ws56{word-spacing:-3.051424pt;}
.ws1e7{word-spacing:-2.677965pt;}
.ws135{word-spacing:-2.550426pt;}
.ws20f{word-spacing:-2.534502pt;}
.ws50{word-spacing:-2.517024pt;}
.ws113{word-spacing:-2.507405pt;}
.ws125{word-spacing:-2.501259pt;}
.wsd1{word-spacing:-2.431520pt;}
.ws51{word-spacing:-2.415488pt;}
.wsd0{word-spacing:-2.399456pt;}
.ws124{word-spacing:-2.396784pt;}
.ws177{word-spacing:-2.368995pt;}
.ws176{word-spacing:-2.363117pt;}
.ws58{word-spacing:-2.223104pt;}
.ws1b3{word-spacing:-2.151936pt;}
.ws119{word-spacing:-2.150960pt;}
.ws117{word-spacing:-2.144814pt;}
.ws35{word-spacing:-2.125355pt;}
.wsb7{word-spacing:-2.072221pt;}
.ws116{word-spacing:-2.046485pt;}
.ws11a{word-spacing:-2.034194pt;}
.ws1b7{word-spacing:-2.008474pt;}
.ws91{word-spacing:-1.929612pt;}
.wsea{word-spacing:-1.827648pt;}
.wseb{word-spacing:-1.811616pt;}
.ws13e{word-spacing:-1.806551pt;}
.ws6{word-spacing:-1.696326pt;}
.ws13a{word-spacing:-1.647150pt;}
.ws188{word-spacing:-1.604803pt;}
.ws93{word-spacing:-1.575304pt;}
.wscc{word-spacing:-1.571136pt;}
.ws7{word-spacing:-1.540882pt;}
.ws92{word-spacing:-1.537148pt;}
.ws1cf{word-spacing:-1.434624pt;}
.ws171{word-spacing:-1.328518pt;}
.ws172{word-spacing:-1.293248pt;}
.ws108{word-spacing:-1.275213pt;}
.wsa0{word-spacing:-1.199520pt;}
.wsa1{word-spacing:-1.179936pt;}
.ws5{word-spacing:-1.175671pt;}
.wse7{word-spacing:-1.137600pt;}
.ws178{word-spacing:-1.040477pt;}
.ws122{word-spacing:-1.032461pt;}
.ws120{word-spacing:-1.026315pt;}
.ws121{word-spacing:-0.977150pt;}
.ws18d{word-spacing:-0.956416pt;}
.ws81{word-spacing:-0.921199pt;}
.ws1b1{word-spacing:-0.908595pt;}
.ws181{word-spacing:-0.908160pt;}
.wsb8{word-spacing:-0.903276pt;}
.ws1d4{word-spacing:-0.900215pt;}
.ws82{word-spacing:-0.877592pt;}
.ws1b2{word-spacing:-0.860774pt;}
.wse1{word-spacing:-0.859200pt;}
.ws15b{word-spacing:-0.850142pt;}
.ws1af{word-spacing:-0.812954pt;}
.wse2{word-spacing:-0.801600pt;}
.ws18e{word-spacing:-0.717312pt;}
.ws3a{word-spacing:-0.690740pt;}
.ws187{word-spacing:-0.646624pt;}
.ws2b{word-spacing:-0.637606pt;}
.ws4b{word-spacing:-0.593184pt;}
.wsf9{word-spacing:-0.584473pt;}
.wsef{word-spacing:-0.550432pt;}
.ws180{word-spacing:-0.549120pt;}
.ws3b{word-spacing:-0.531339pt;}
.ws5d{word-spacing:-0.494400pt;}
.ws5b{word-spacing:-0.489600pt;}
.ws5c{word-spacing:-0.484800pt;}
.ws212{word-spacing:-0.478208pt;}
.ws3c{word-spacing:-0.478205pt;}
.wsf0{word-spacing:-0.470272pt;}
.ws2d{word-spacing:-0.425071pt;}
.ws138{word-spacing:-0.371937pt;}
.ws214{word-spacing:-0.334746pt;}
.ws48{word-spacing:-0.320640pt;}
.ws2f{word-spacing:-0.318803pt;}
.wsd6{word-spacing:-0.309952pt;}
.ws16a{word-spacing:-0.299798pt;}
.ws6c{word-spacing:-0.288576pt;}
.ws194{word-spacing:-0.286925pt;}
.ws55{word-spacing:-0.283232pt;}
.ws114{word-spacing:-0.282698pt;}
.ws9a{word-spacing:-0.277995pt;}
.wsc3{word-spacing:-0.277888pt;}
.ws94{word-spacing:-0.272544pt;}
.wsdb{word-spacing:-0.267200pt;}
.ws30{word-spacing:-0.265669pt;}
.wsd8{word-spacing:-0.261856pt;}
.ws1fe{word-spacing:-0.239104pt;}
.wsd9{word-spacing:-0.213760pt;}
.ws13{word-spacing:-0.212535pt;}
.ws4c{word-spacing:-0.197728pt;}
.ws63{word-spacing:-0.196800pt;}
.ws101{word-spacing:-0.191283pt;}
.wsab{word-spacing:-0.186048pt;}
.ws15{word-spacing:-0.159402pt;}
.wsaa{word-spacing:-0.156672pt;}
.ws64{word-spacing:-0.153600pt;}
.ws79{word-spacing:-0.143462pt;}
.ws54{word-spacing:-0.112224pt;}
.wsc{word-spacing:-0.106268pt;}
.ws109{word-spacing:-0.102782pt;}
.ws15c{word-spacing:-0.098314pt;}
.ws10a{word-spacing:-0.097888pt;}
.wsbc{word-spacing:-0.095642pt;}
.ws15d{word-spacing:-0.093632pt;}
.ws7e{word-spacing:-0.091164pt;}
.ws45{word-spacing:-0.089376pt;}
.ws7f{word-spacing:-0.086822pt;}
.ws46{word-spacing:-0.085120pt;}
.wsa{word-spacing:-0.053134pt;}
.ws40{word-spacing:-0.047821pt;}
.ws2{word-spacing:-0.003793pt;}
.ws1{word-spacing:0.000000pt;}
.ws96{word-spacing:0.016353pt;}
.ws95{word-spacing:0.027254pt;}
.ws168{word-spacing:0.035270pt;}
.ws43{word-spacing:0.047821pt;}
.ws110{word-spacing:0.049165pt;}
.ws11{word-spacing:0.053134pt;}
.ws186{word-spacing:0.058784pt;}
.ws84{word-spacing:0.059960pt;}
.ws8c{word-spacing:0.065411pt;}
.ws115{word-spacing:0.067602pt;}
.ws18a{word-spacing:0.070541pt;}
.ws12a{word-spacing:0.073747pt;}
.wsc7{word-spacing:0.074816pt;}
.wsc4{word-spacing:0.085504pt;}
.wse8{word-spacing:0.091200pt;}
.ws77{word-spacing:0.095642pt;}
.wsdd{word-spacing:0.101536pt;}
.ws19{word-spacing:0.106268pt;}
.ws18b{word-spacing:0.111690pt;}
.wsdc{word-spacing:0.112224pt;}
.ws5a{word-spacing:0.117568pt;}
.ws9d{word-spacing:0.119919pt;}
.ws65{word-spacing:0.120000pt;}
.wsc8{word-spacing:0.128256pt;}
.ws8d{word-spacing:0.130821pt;}
.ws10f{word-spacing:0.135203pt;}
.ws83{word-spacing:0.136272pt;}
.ws5e{word-spacing:0.139200pt;}
.wsb2{word-spacing:0.141984pt;}
.ws19b{word-spacing:0.143462pt;}
.ws5f{word-spacing:0.153600pt;}
.ws185{word-spacing:0.158400pt;}
.ws1f{word-spacing:0.159402pt;}
.wsde{word-spacing:0.165664pt;}
.ws17c{word-spacing:0.176352pt;}
.ws7a{word-spacing:0.191283pt;}
.ws23{word-spacing:0.212535pt;}
.ws173{word-spacing:0.223379pt;}
.ws1c2{word-spacing:0.239104pt;}
.ws12{word-spacing:0.265669pt;}
.ws1a1{word-spacing:0.286925pt;}
.wsd5{word-spacing:0.293920pt;}
.ws25{word-spacing:0.318803pt;}
.ws3d{word-spacing:0.371937pt;}
.ws169{word-spacing:0.387974pt;}
.ws10{word-spacing:0.425071pt;}
.ws1f2{word-spacing:0.430387pt;}
.ws10c{word-spacing:0.448629pt;}
.ws10d{word-spacing:0.460920pt;}
.ws12f{word-spacing:0.478205pt;}
.ws1d8{word-spacing:0.478208pt;}
.wsa4{word-spacing:0.479808pt;}
.wsa3{word-spacing:0.514080pt;}
.ws31{word-spacing:0.531339pt;}
.ws1aa{word-spacing:0.573850pt;}
.ws1a{word-spacing:0.584473pt;}
.ws42{word-spacing:0.621670pt;}
.ws13b{word-spacing:0.637606pt;}
.wsd4{word-spacing:0.641280pt;}
.ws102{word-spacing:0.669491pt;}
.ws14f{word-spacing:0.690740pt;}
.ws103{word-spacing:0.717312pt;}
.wsd2{word-spacing:0.737472pt;}
.wsfa{word-spacing:0.743874pt;}
.ws211{word-spacing:0.765133pt;}
.ws6f{word-spacing:0.797008pt;}
.wsbe{word-spacing:0.812954pt;}
.wsf5{word-spacing:0.850142pt;}
.ws182{word-spacing:0.865920pt;}
.ws184{word-spacing:0.887040pt;}
.ws183{word-spacing:0.902880pt;}
.wsf7{word-spacing:0.903276pt;}
.ws100{word-spacing:0.908595pt;}
.ws7d{word-spacing:0.956410pt;}
.wsbf{word-spacing:0.956416pt;}
.ws6d{word-spacing:1.004672pt;}
.ws6a{word-spacing:1.015360pt;}
.wsd3{word-spacing:1.036736pt;}
.ws69{word-spacing:1.047424pt;}
.ws1f8{word-spacing:1.052058pt;}
.ws6e{word-spacing:1.052768pt;}
.wse0{word-spacing:1.094400pt;}
.wsbd{word-spacing:1.099878pt;}
.wsac{word-spacing:1.101600pt;}
.wsdf{word-spacing:1.108800pt;}
.ws3e{word-spacing:1.115811pt;}
.wsad{word-spacing:1.145664pt;}
.wsff{word-spacing:1.147699pt;}
.wsae{word-spacing:1.155456pt;}
.ws118{word-spacing:1.161518pt;}
.ws123{word-spacing:1.167664pt;}
.ws131{word-spacing:1.168945pt;}
.ws18f{word-spacing:1.195520pt;}
.wsfc{word-spacing:1.222079pt;}
.ws1bb{word-spacing:1.243341pt;}
.ws39{word-spacing:1.275213pt;}
.ws76{word-spacing:1.291162pt;}
.ws6b{word-spacing:1.309280pt;}
.ws1e1{word-spacing:1.338982pt;}
.ws13c{word-spacing:1.381481pt;}
.ws1ca{word-spacing:1.386803pt;}
.ws13d{word-spacing:1.434614pt;}
.ws1cc{word-spacing:1.434624pt;}
.ws163{word-spacing:1.469600pt;}
.ws162{word-spacing:1.487235pt;}
.wsf2{word-spacing:1.487748pt;}
.ws1f5{word-spacing:1.530266pt;}
.ws75{word-spacing:1.578086pt;}
.ws14e{word-spacing:1.594016pt;}
.ws41{word-spacing:1.625907pt;}
.wsd7{word-spacing:1.635264pt;}
.ws8e{word-spacing:1.662518pt;}
.ws1c8{word-spacing:1.673728pt;}
.wsb3{word-spacing:1.700284pt;}
.ws61{word-spacing:1.708800pt;}
.ws8f{word-spacing:1.717027pt;}
.ws1a7{word-spacing:1.721549pt;}
.ws44{word-spacing:1.753418pt;}
.ws200{word-spacing:1.769370pt;}
.ws62{word-spacing:1.771200pt;}
.wsa2{word-spacing:1.782144pt;}
.wsfb{word-spacing:1.806551pt;}
.ws198{word-spacing:1.817190pt;}
.ws106{word-spacing:1.859685pt;}
.ws11d{word-spacing:1.886699pt;}
.ws107{word-spacing:1.912819pt;}
.ws156{word-spacing:1.912832pt;}
.wscd{word-spacing:1.950560pt;}
.ws1f7{word-spacing:1.960653pt;}
.ws26{word-spacing:1.965953pt;}
.wsc0{word-spacing:1.987968pt;}
.wsc1{word-spacing:2.004000pt;}
.ws1cb{word-spacing:2.008474pt;}
.ws1d{word-spacing:2.019087pt;}
.wscf{word-spacing:2.046752pt;}
.ws8a{word-spacing:2.049531pt;}
.ws1e9{word-spacing:2.056294pt;}
.ws12c{word-spacing:2.072221pt;}
.wsce{word-spacing:2.078816pt;}
.wsc2{word-spacing:2.084160pt;}
.ws152{word-spacing:2.125355pt;}
.ws175{word-spacing:2.151494pt;}
.ws1b9{word-spacing:2.151936pt;}
.ws150{word-spacing:2.178489pt;}
.ws19d{word-spacing:2.199757pt;}
.ws2c{word-spacing:2.231622pt;}
.ws145{word-spacing:2.280796pt;}
.ws99{word-spacing:2.283919pt;}
.wsf8{word-spacing:2.284756pt;}
.ws98{word-spacing:2.332977pt;}
.ws130{word-spacing:2.337890pt;}
.ws1a2{word-spacing:2.343219pt;}
.ws2a{word-spacing:2.391024pt;}
.ws1c5{word-spacing:2.391040pt;}
.wsb{word-spacing:2.444158pt;}
.ws2e{word-spacing:2.497292pt;}
.ws16b{word-spacing:2.498320pt;}
.ws215{word-spacing:2.534502pt;}
.ws1ec{word-spacing:2.582323pt;}
.wse9{word-spacing:2.602528pt;}
.ws1e{word-spacing:2.603559pt;}
.ws10e{word-spacing:2.618026pt;}
.ws1b6{word-spacing:2.630144pt;}
.ws97{word-spacing:2.654579pt;}
.ws195{word-spacing:2.677965pt;}
.ws36{word-spacing:2.709827pt;}
.ws1b4{word-spacing:2.773606pt;}
.ws12e{word-spacing:2.869229pt;}
.ws191{word-spacing:2.869248pt;}
.ws1a5{word-spacing:2.869948pt;}
.ws207{word-spacing:2.870007pt;}
.ws210{word-spacing:2.870716pt;}
.ws1fa{word-spacing:2.870801pt;}
.ws174{word-spacing:2.874538pt;}
.ws143{word-spacing:2.918574pt;}
.ws1f1{word-spacing:2.964890pt;}
.wse6{word-spacing:3.019200pt;}
.wse5{word-spacing:3.048000pt;}
.ws78{word-spacing:3.060531pt;}
.ws28{word-spacing:3.134898pt;}
.ws9{word-spacing:3.188032pt;}
.ws52{word-spacing:3.227776pt;}
.ws17a{word-spacing:3.238998pt;}
.ws4e{word-spacing:3.281216pt;}
.ws4d{word-spacing:3.291904pt;}
.ws159{word-spacing:3.294300pt;}
.ws53{word-spacing:3.297248pt;}
.ws49{word-spacing:3.302592pt;}
.wse3{word-spacing:3.307200pt;}
.wse4{word-spacing:3.345600pt;}
.ws158{word-spacing:3.347434pt;}
.ws7c{word-spacing:3.347456pt;}
.ws104{word-spacing:3.395277pt;}
.ws20{word-spacing:3.400567pt;}
.ws4a{word-spacing:3.425504pt;}
.ws14b{word-spacing:3.506835pt;}
.ws149{word-spacing:3.532704pt;}
.ws4f{word-spacing:3.537728pt;}
.ws201{word-spacing:3.538739pt;}
.ws68{word-spacing:3.543072pt;}
.ws20a{word-spacing:3.586560pt;}
.ws161{word-spacing:3.591702pt;}
.wsed{word-spacing:3.628576pt;}
.wsee{word-spacing:3.665984pt;}
.ws134{word-spacing:3.666237pt;}
.ws1e4{word-spacing:3.682202pt;}
.ws24{word-spacing:3.719371pt;}
.ws1bf{word-spacing:3.730022pt;}
.wsb0{word-spacing:3.730752pt;}
.wsaf{word-spacing:3.740544pt;}
.ws9e{word-spacing:3.745440pt;}
.wse{word-spacing:3.772505pt;}
.ws9f{word-spacing:3.784608pt;}
.ws34{word-spacing:3.878772pt;}
.ws59{word-spacing:3.890432pt;}
.ws170{word-spacing:3.944406pt;}
.wsc5{word-spacing:3.949216pt;}
.wsf3{word-spacing:3.985040pt;}
.ws17f{word-spacing:4.012800pt;}
.ws16f{word-spacing:4.020826pt;}
.wsc6{word-spacing:4.024032pt;}
.ws17e{word-spacing:4.033920pt;}
.ws17d{word-spacing:4.039200pt;}
.ws11b{word-spacing:4.086824pt;}
.ws12d{word-spacing:4.091308pt;}
.ws1d2{word-spacing:4.160410pt;}
.ws11c{word-spacing:4.258901pt;}
.ws9b{word-spacing:4.273490pt;}
.ws60{word-spacing:4.300800pt;}
.ws141{word-spacing:4.303843pt;}
.ws1df{word-spacing:4.351693pt;}
.ws32{word-spacing:4.356977pt;}
.ws1e5{word-spacing:4.399514pt;}
.wsf{word-spacing:4.410111pt;}
.ws203{word-spacing:4.447334pt;}
.ws9c{word-spacing:4.447918pt;}
.ws1fc{word-spacing:4.495155pt;}
.ws1a4{word-spacing:4.542976pt;}
.ws88{word-spacing:4.644150pt;}
.ws140{word-spacing:4.675780pt;}
.ws1c1{word-spacing:4.686438pt;}
.ws87{word-spacing:4.709560pt;}
.ws8b{word-spacing:4.747716pt;}
.ws189{word-spacing:5.302317pt;}
.ws1f4{word-spacing:5.308109pt;}
.ws14d{word-spacing:5.313387pt;}
.ws1c{word-spacing:5.366521pt;}
.ws37{word-spacing:5.419654pt;}
.ws1be{word-spacing:5.451571pt;}
.ws129{word-spacing:5.586350pt;}
.ws90{word-spacing:5.587152pt;}
.ws89{word-spacing:5.603505pt;}
.ws20b{word-spacing:5.738496pt;}
.wsf1{word-spacing:5.791591pt;}
.ws67{word-spacing:5.819616pt;}
.ws139{word-spacing:5.844725pt;}
.ws66{word-spacing:5.867712pt;}
.ws86{word-spacing:5.979615pt;}
.ws127{word-spacing:5.991960pt;}
.ws85{word-spacing:5.995968pt;}
.ws18c{word-spacing:6.004127pt;}
.ws128{word-spacing:6.028834pt;}
.ws17b{word-spacing:6.037117pt;}
.ws29{word-spacing:6.110395pt;}
.ws1fd{word-spacing:6.121062pt;}
.ws17{word-spacing:6.163529pt;}
.ws1ac{word-spacing:6.407987pt;}
.ws15f{word-spacing:6.436848pt;}
.ws160{word-spacing:6.483875pt;}
.ws1ad{word-spacing:6.599270pt;}
.ws105{word-spacing:6.647091pt;}
.ws111{word-spacing:6.661830pt;}
.wsb1{word-spacing:6.668352pt;}
.ws137{word-spacing:7.066804pt;}
.ws136{word-spacing:7.119938pt;}
.ws132{word-spacing:7.226206pt;}
.ws165{word-spacing:7.824150pt;}
.ws133{word-spacing:7.916946pt;}
.ws164{word-spacing:7.935840pt;}
.wsb5{word-spacing:7.970080pt;}
.ws47{word-spacing:8.086400pt;}
.ws80{word-spacing:8.248128pt;}
.wsa7{word-spacing:8.607168pt;}
.wsa8{word-spacing:8.616960pt;}
.wsa9{word-spacing:8.646336pt;}
.ws15e{word-spacing:8.895040pt;}
.ws112{word-spacing:8.904974pt;}
.ws199{word-spacing:9.038131pt;}
.ws10b{word-spacing:9.299360pt;}
.wsec{word-spacing:9.330624pt;}
.wsa5{word-spacing:9.605952pt;}
.wsa6{word-spacing:9.615744pt;}
.ws14c{word-spacing:9.670364pt;}
.wscb{word-spacing:9.993280pt;}
.ws1cd{word-spacing:10.138010pt;}
.ws16c{word-spacing:10.281322pt;}
.ws21{word-spacing:10.582389pt;}
.ws1ff{word-spacing:10.998784pt;}
.ws204{word-spacing:11.008253pt;}
.ws1db{word-spacing:11.008708pt;}
.ws1b8{word-spacing:11.017481pt;}
.ws1d5{word-spacing:11.022814pt;}
.wsca{word-spacing:11.297216pt;}
.wsc9{word-spacing:11.345312pt;}
.ws20e{word-spacing:11.668275pt;}
.ws1c7{word-spacing:11.763917pt;}
.ws1de{word-spacing:11.794012pt;}
.ws1d1{word-spacing:11.859439pt;}
.ws19e{word-spacing:11.859558pt;}
.ws1e6{word-spacing:11.898556pt;}
.ws19f{word-spacing:11.900689pt;}
.ws1e2{word-spacing:11.903889pt;}
.ws1b5{word-spacing:11.904614pt;}
.ws1c4{word-spacing:11.904990pt;}
.ws1bc{word-spacing:11.905050pt;}
.ws1ee{word-spacing:11.906714pt;}
.ws209{word-spacing:11.906748pt;}
.ws197{word-spacing:11.907379pt;}
.ws1e3{word-spacing:11.955200pt;}
.ws1f0{word-spacing:11.963538pt;}
.ws1ce{word-spacing:11.970560pt;}
.ws1ab{word-spacing:11.974119pt;}
.ws20d{word-spacing:11.976965pt;}
.ws1f9{word-spacing:11.992307pt;}
.ws1d3{word-spacing:12.003021pt;}
.ws1a6{word-spacing:12.028319pt;}
.ws1c3{word-spacing:12.098662pt;}
.ws1ed{word-spacing:12.126524pt;}
.ws1f3{word-spacing:12.337766pt;}
.ws1d9{word-spacing:12.387962pt;}
.ws1a9{word-spacing:12.492537pt;}
.ws14{word-spacing:13.048085pt;}
.ws190{word-spacing:13.102899pt;}
.ws151{word-spacing:13.124065pt;}
.ws27{word-spacing:13.134082pt;}
.ws16{word-spacing:13.137854pt;}
.ws8{word-spacing:13.209510pt;}
.wsd{word-spacing:13.230844pt;}
.ws15a{word-spacing:13.250608pt;}
.ws148{word-spacing:13.274700pt;}
.ws147{word-spacing:13.286268pt;}
.ws7b{word-spacing:13.294182pt;}
.wsf4{word-spacing:13.336601pt;}
.ws205{word-spacing:13.581107pt;}
.ws70{word-spacing:13.589758pt;}
.ws1d6{word-spacing:13.590576pt;}
.ws1a8{word-spacing:13.628928pt;}
.ws1b{word-spacing:13.804857pt;}
.ws1b0{word-spacing:13.868032pt;}
.ws1ea{word-spacing:13.946132pt;}
.ws13f{word-spacing:14.027341pt;}
.wsf6{word-spacing:14.118582pt;}
.ws20c{word-spacing:14.154957pt;}
.ws196{word-spacing:14.578811pt;}
.ws1e8{word-spacing:14.585344pt;}
.ws193{word-spacing:14.633165pt;}
.ws1d0{word-spacing:14.769570pt;}
.ws208{word-spacing:14.770679pt;}
.ws1fb{word-spacing:14.772096pt;}
.ws1dc{word-spacing:14.772847pt;}
.ws206{word-spacing:14.773658pt;}
.ws19a{word-spacing:14.773914pt;}
.ws1d7{word-spacing:14.775765pt;}
.ws1bd{word-spacing:14.775945pt;}
.ws19c{word-spacing:14.776627pt;}
.ws213{word-spacing:14.824448pt;}
.ws1ef{word-spacing:14.872269pt;}
.ws1ba{word-spacing:14.920090pt;}
.ws1a0{word-spacing:14.967910pt;}
.ws1dd{word-spacing:15.063552pt;}
.ws1c6{word-spacing:15.111373pt;}
.ws12b{word-spacing:15.249420pt;}
.ws1c9{word-spacing:15.350477pt;}
.ws142{word-spacing:15.510640pt;}
.ws144{word-spacing:15.514841pt;}
.ws146{word-spacing:15.523066pt;}
.ws1c0{word-spacing:15.589581pt;}
.ws33{word-spacing:15.727625pt;}
.ws16d{word-spacing:15.889315pt;}
.ws16e{word-spacing:15.924586pt;}
.ws1da{word-spacing:16.067789pt;}
.ws167{word-spacing:16.330195pt;}
.ws166{word-spacing:16.359587pt;}
.ws14a{word-spacing:16.769896pt;}
.ws157{word-spacing:17.313354pt;}
.ws179{word-spacing:18.387635pt;}
.ws1ae{word-spacing:18.513754pt;}
.ws38{word-spacing:18.672111pt;}
.ws18{word-spacing:19.410086pt;}
.ws1f6{word-spacing:19.749990pt;}
.wsb6{word-spacing:21.193092pt;}
.wsb4{word-spacing:21.200413pt;}
.ws1eb{word-spacing:21.280256pt;}
.ws1a3{word-spacing:22.188851pt;}
.ws202{word-spacing:25.775411pt;}
.ws1e0{word-spacing:28.214272pt;}
.ws3{word-spacing:41.446878pt;}
._1a{margin-left:-11.639232pt;}
._1b{margin-left:-10.345984pt;}
._f{margin-left:-7.003140pt;}
._3{margin-left:-5.897859pt;}
._6{margin-left:-4.399514pt;}
._2{margin-left:-3.435475pt;}
._17{margin-left:-2.405248pt;}
._4{margin-left:-1.243341pt;}
._9{width:0.969929pt;}
._0{width:2.668996pt;}
._1{width:3.627604pt;}
._15{width:8.840151pt;}
._19{width:10.689716pt;}
._a{width:12.348319pt;}
._5{width:13.963674pt;}
._8{width:15.685222pt;}
._d{width:16.811564pt;}
._13{width:18.001771pt;}
._c{width:19.075058pt;}
._1d{width:20.013820pt;}
._e{width:21.038166pt;}
._1f{width:22.422492pt;}
._b{width:23.665833pt;}
._1e{width:24.689600pt;}
._22{width:25.823059pt;}
._28{width:26.740559pt;}
._12{width:28.107815pt;}
._21{width:29.489296pt;}
._25{width:30.977044pt;}
._14{width:32.666718pt;}
._1c{width:33.633738pt;}
._29{width:36.233930pt;}
._24{width:38.256384pt;}
._23{width:40.806810pt;}
._2a{width:54.993920pt;}
._7{width:56.763290pt;}
._10{width:794.842970pt;}
._16{width:1444.090592pt;}
._18{width:1473.168605pt;}
._27{width:1587.631094pt;}
._20{width:1660.326128pt;}
._26{width:1843.365370pt;}
._11{width:1864.618703pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs14{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fsd{font-size:43.411200pt;}
.fs15{font-size:46.816000pt;}
.fs5{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs12{font-size:48.944000pt;}
.fs10{font-size:48.960000pt;}
.fs18{font-size:52.800000pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:53.440000pt;}
.fse{font-size:54.508800pt;}
.fs11{font-size:55.365867pt;}
.fs16{font-size:58.784000pt;}
.fs13{font-size:61.456000pt;}
.fsb{font-size:64.000000pt;}
.fsf{font-size:65.280000pt;}
.fs17{font-size:70.400000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:118.779135pt;}
.y8c{bottom:-272.394875pt;}
.y8b{bottom:-254.394947pt;}
.yec{bottom:-241.975552pt;}
.y8a{bottom:-236.395019pt;}
.y15b{bottom:-230.025377pt;}
.yeb{bottom:-223.975624pt;}
.y89{bottom:-218.395091pt;}
.yb7{bottom:-211.558608pt;}
.y15a{bottom:-210.225456pt;}
.yea{bottom:-205.975696pt;}
.y88{bottom:-200.395163pt;}
.yb6{bottom:-193.851000pt;}
.y159{bottom:-190.425535pt;}
.ye9{bottom:-187.975768pt;}
.y87{bottom:-182.475395pt;}
.yb5{bottom:-176.143392pt;}
.y158{bottom:-170.625614pt;}
.ye8{bottom:-169.975840pt;}
.y86{bottom:-164.475467pt;}
.yb4{bottom:-158.517792pt;}
.y157{bottom:-150.825693pt;}
.yb3{bottom:-140.810184pt;}
.ye6{bottom:-136.457600pt;}
.ye7{bottom:-136.455600pt;}
.y85{bottom:-130.876800pt;}
.yb2{bottom:-123.102576pt;}
.ye5{bottom:-119.097200pt;}
.y156{bottom:-113.955013pt;}
.y84{bottom:-113.516400pt;}
.yb1{bottom:-105.476976pt;}
.ye4{bottom:-101.736800pt;}
.y83{bottom:-96.236400pt;}
.y155{bottom:-94.858573pt;}
.yb0{bottom:-87.769368pt;}
.ye3{bottom:-84.376400pt;}
.y82{bottom:-78.876000pt;}
.y154{bottom:-75.762133pt;}
.yaf{bottom:-70.061760pt;}
.ye2{bottom:-67.096400pt;}
.y81{bottom:-61.515600pt;}
.y153{bottom:-56.665693pt;}
.yae{bottom:-52.436160pt;}
.ye1{bottom:-49.736000pt;}
.y80{bottom:-44.235600pt;}
.y152{bottom:-37.657693pt;}
.yad{bottom:-34.728552pt;}
.ye0{bottom:-32.375600pt;}
.y7f{bottom:-20.395600pt;}
.y151{bottom:-11.433693pt;}
.ydf{bottom:-8.135600pt;}
.yac{bottom:-7.882152pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.340260pt;}
.y11a{bottom:2.144183pt;}
.y15{bottom:3.044747pt;}
.y14{bottom:12.578910pt;}
.y2{bottom:23.811396pt;}
.y32{bottom:56.693333pt;}
.y31{bottom:96.544000pt;}
.y1dc{bottom:96.850667pt;}
.yc8{bottom:98.030667pt;}
.y12e{bottom:106.545333pt;}
.y97{bottom:109.034667pt;}
.y12b{bottom:109.378667pt;}
.y17a{bottom:110.485333pt;}
.y1a8{bottom:110.638667pt;}
.y1db{bottom:114.066667pt;}
.y30{bottom:114.556000pt;}
.yc7{bottom:116.042667pt;}
.yf8{bottom:123.061333pt;}
.y63{bottom:124.558667pt;}
.y96{bottom:127.046667pt;}
.y12a{bottom:127.392000pt;}
.y1a7{bottom:127.854667pt;}
.y179{bottom:128.497333pt;}
.y1da{bottom:131.281333pt;}
.y2f{bottom:132.568000pt;}
.yc6{bottom:134.054667pt;}
.yf7{bottom:141.073333pt;}
.y62{bottom:142.570667pt;}
.y95{bottom:145.060000pt;}
.y1a6{bottom:145.070667pt;}
.y129{bottom:145.404000pt;}
.y178{bottom:146.510667pt;}
.y1d9{bottom:148.497333pt;}
.y2e{bottom:150.581333pt;}
.yc5{bottom:152.068000pt;}
.yf6{bottom:159.085333pt;}
.y61{bottom:160.584000pt;}
.y1a5{bottom:162.285333pt;}
.y94{bottom:163.072000pt;}
.y128{bottom:163.416000pt;}
.y177{bottom:164.522667pt;}
.y1d8{bottom:165.713333pt;}
.y2d{bottom:168.593333pt;}
.yc4{bottom:170.080000pt;}
.yf5{bottom:177.098667pt;}
.y60{bottom:178.596000pt;}
.y1a4{bottom:179.501333pt;}
.y93{bottom:181.085333pt;}
.y127{bottom:181.429333pt;}
.y176{bottom:182.534667pt;}
.y1d7{bottom:182.928000pt;}
.y2c{bottom:186.606667pt;}
.yc3{bottom:188.093333pt;}
.yf4{bottom:195.110667pt;}
.y5f{bottom:196.608000pt;}
.y1a3{bottom:196.716000pt;}
.y126{bottom:199.441333pt;}
.y1d6{bottom:200.144000pt;}
.y175{bottom:200.548000pt;}
.y2b{bottom:204.618667pt;}
.yc2{bottom:206.105333pt;}
.y92{bottom:212.196000pt;}
.y1a2{bottom:213.932000pt;}
.y5e{bottom:214.621333pt;}
.y1d5{bottom:217.358667pt;}
.y125{bottom:217.454667pt;}
.y174{bottom:218.560000pt;}
.y2a{bottom:222.630667pt;}
.yf3{bottom:226.222667pt;}
.y91{bottom:229.292000pt;}
.y1a1{bottom:231.148000pt;}
.y5d{bottom:232.633333pt;}
.y1d4{bottom:234.574667pt;}
.y124{bottom:235.466667pt;}
.y173{bottom:236.573333pt;}
.yc1{bottom:237.217333pt;}
.y29{bottom:240.644000pt;}
.yf2{bottom:243.318667pt;}
.y90{bottom:246.388000pt;}
.y1a0{bottom:248.362667pt;}
.y5c{bottom:250.646667pt;}
.y1d3{bottom:251.790667pt;}
.yc0{bottom:254.313333pt;}
.y172{bottom:254.585333pt;}
.y28{bottom:258.656000pt;}
.yf1{bottom:260.414667pt;}
.y123{bottom:261.449333pt;}
.y8f{bottom:263.484000pt;}
.y19f{bottom:265.578667pt;}
.y5b{bottom:268.658667pt;}
.y1d2{bottom:269.005333pt;}
.ybf{bottom:271.408000pt;}
.y171{bottom:272.597333pt;}
.y27{bottom:276.669333pt;}
.yf0{bottom:277.509333pt;}
.y8e{bottom:280.580000pt;}
.y19e{bottom:282.793333pt;}
.y1d1{bottom:286.221333pt;}
.y5a{bottom:286.670667pt;}
.ybe{bottom:288.504000pt;}
.y122{bottom:289.558667pt;}
.y170{bottom:290.610667pt;}
.yef{bottom:294.605333pt;}
.y26{bottom:294.681333pt;}
.y8d{bottom:297.676000pt;}
.y19d{bottom:300.009333pt;}
.y1d0{bottom:303.437333pt;}
.y59{bottom:304.684000pt;}
.ybd{bottom:305.600000pt;}
.y121{bottom:306.654667pt;}
.y16f{bottom:308.622667pt;}
.yee{bottom:311.701333pt;}
.y25{bottom:312.693333pt;}
.y19c{bottom:317.225333pt;}
.y70{bottom:317.612000pt;}
.y1cf{bottom:320.652000pt;}
.y58{bottom:322.696000pt;}
.y120{bottom:323.750667pt;}
.y16e{bottom:326.636000pt;}
.yed{bottom:328.797333pt;}
.y24{bottom:330.706667pt;}
.y19b{bottom:334.440000pt;}
.y1ce{bottom:337.868000pt;}
.ybc{bottom:339.792000pt;}
.y57{bottom:340.709333pt;}
.y11f{bottom:340.846667pt;}
.y150{bottom:342.944603pt;}
.y16d{bottom:344.648000pt;}
.y23{bottom:348.718667pt;}
.yca{bottom:348.734667pt;}
.y19a{bottom:351.656000pt;}
.y1cd{bottom:355.082667pt;}
.ybb{bottom:356.888000pt;}
.yde{bottom:357.066176pt;}
.y11e{bottom:357.942667pt;}
.y56{bottom:358.721333pt;}
.y16c{bottom:362.660000pt;}
.y14f{bottom:362.744524pt;}
.y22{bottom:366.732000pt;}
.y199{bottom:368.870667pt;}
.y1cc{bottom:372.298667pt;}
.yba{bottom:373.984000pt;}
.y11d{bottom:375.037333pt;}
.ydd{bottom:375.066104pt;}
.y55{bottom:376.733333pt;}
.y16b{bottom:380.673333pt;}
.y14e{bottom:382.544445pt;}
.y21{bottom:384.744000pt;}
.y198{bottom:386.086667pt;}
.y1cb{bottom:389.514667pt;}
.yab{bottom:390.572386pt;}
.yb9{bottom:391.080000pt;}
.y11c{bottom:392.133333pt;}
.ydc{bottom:393.066032pt;}
.y54{bottom:394.746667pt;}
.y16a{bottom:398.685333pt;}
.y14d{bottom:402.344366pt;}
.y197{bottom:403.302667pt;}
.y1ca{bottom:406.729333pt;}
.yb8{bottom:408.176000pt;}
.yaa{bottom:408.932313pt;}
.y11b{bottom:409.229333pt;}
.y20{bottom:410.726667pt;}
.ydb{bottom:410.985800pt;}
.y53{bottom:412.758667pt;}
.y169{bottom:416.698667pt;}
.y196{bottom:420.517333pt;}
.y14c{bottom:422.144287pt;}
.y1c9{bottom:423.945333pt;}
.ya9{bottom:427.210476pt;}
.y98{bottom:428.113333pt;}
.yda{bottom:428.985728pt;}
.y102{bottom:429.167587pt;}
.y52{bottom:430.772000pt;}
.y168{bottom:434.710667pt;}
.y195{bottom:437.733333pt;}
.y7e{bottom:437.925616pt;}
.y1c8{bottom:441.160000pt;}
.y14b{bottom:441.944207pt;}
.ya8{bottom:445.570403pt;}
.yd9{bottom:446.985656pt;}
.y51{bottom:448.784000pt;}
.y167{bottom:452.722667pt;}
.y12d{bottom:453.605333pt;}
.y194{bottom:454.948000pt;}
.y7d{bottom:455.925544pt;}
.y1c7{bottom:458.376000pt;}
.y14a{bottom:461.655952pt;}
.ya7{bottom:463.930329pt;}
.yd8{bottom:464.985584pt;}
.y50{bottom:466.796000pt;}
.y166{bottom:470.736000pt;}
.y193{bottom:472.164000pt;}
.y7c{bottom:473.925472pt;}
.y1c6{bottom:475.592000pt;}
.y1f{bottom:478.645333pt;}
.y149{bottom:481.455873pt;}
.ya6{bottom:482.290256pt;}
.yd7{bottom:482.985512pt;}
.y4f{bottom:484.809333pt;}
.y165{bottom:488.748000pt;}
.y192{bottom:489.380000pt;}
.y7b{bottom:491.925400pt;}
.y1c5{bottom:492.806667pt;}
.y1e{bottom:496.657333pt;}
.ya5{bottom:500.650182pt;}
.yd6{bottom:500.985440pt;}
.y148{bottom:501.255794pt;}
.y4e{bottom:502.821333pt;}
.y191{bottom:506.594667pt;}
.y164{bottom:506.761333pt;}
.y7a{bottom:509.845168pt;}
.y1c4{bottom:510.022667pt;}
.y138{bottom:510.792000pt;}
.y1d{bottom:514.670667pt;}
.yd5{bottom:518.985368pt;}
.ya4{bottom:519.010109pt;}
.y4d{bottom:520.834667pt;}
.y147{bottom:521.055715pt;}
.y190{bottom:523.810667pt;}
.y163{bottom:524.773333pt;}
.y1c3{bottom:527.237333pt;}
.y79{bottom:527.845096pt;}
.yd4{bottom:536.905136pt;}
.ya3{bottom:537.370035pt;}
.y4c{bottom:538.846667pt;}
.y146{bottom:540.855635pt;}
.y18f{bottom:541.025333pt;}
.y137{bottom:541.742667pt;}
.y162{bottom:542.785333pt;}
.y1c2{bottom:544.453333pt;}
.y78{bottom:545.845024pt;}
.y1c{bottom:548.622667pt;}
.yd3{bottom:554.905064pt;}
.ya2{bottom:555.648199pt;}
.y4b{bottom:556.858667pt;}
.y18e{bottom:558.241333pt;}
.y136{bottom:559.754667pt;}
.y145{bottom:560.655556pt;}
.y1c1{bottom:561.669333pt;}
.y77{bottom:563.844952pt;}
.y1b{bottom:566.636000pt;}
.y161{bottom:568.768000pt;}
.yd2{bottom:572.904992pt;}
.ya1{bottom:574.008125pt;}
.y4a{bottom:574.872000pt;}
.y18d{bottom:575.457333pt;}
.y135{bottom:577.766667pt;}
.y1c0{bottom:578.884000pt;}
.y144{bottom:580.455477pt;}
.y76{bottom:581.844880pt;}
.y1a{bottom:584.648000pt;}
.yd1{bottom:590.904920pt;}
.ya0{bottom:592.368052pt;}
.y18c{bottom:592.672000pt;}
.y49{bottom:592.884000pt;}
.y134{bottom:595.780000pt;}
.y1bf{bottom:596.100000pt;}
.y160{bottom:596.877333pt;}
.y119{bottom:598.948008pt;}
.y75{bottom:599.844808pt;}
.y143{bottom:600.167222pt;}
.y19{bottom:602.660000pt;}
.yd0{bottom:608.904848pt;}
.y18b{bottom:609.888000pt;}
.y9f{bottom:610.727978pt;}
.y48{bottom:610.896000pt;}
.y1be{bottom:613.314667pt;}
.y133{bottom:613.792000pt;}
.y15f{bottom:613.973333pt;}
.y74{bottom:617.844736pt;}
.y118{bottom:619.647925pt;}
.y142{bottom:619.967143pt;}
.y18{bottom:620.673333pt;}
.ycf{bottom:626.904776pt;}
.y18a{bottom:627.102667pt;}
.y47{bottom:628.909333pt;}
.y9e{bottom:629.087905pt;}
.y1bd{bottom:630.530667pt;}
.y15e{bottom:631.069333pt;}
.y132{bottom:631.805333pt;}
.y73{bottom:635.764504pt;}
.y17{bottom:638.685333pt;}
.y117{bottom:640.347842pt;}
.y189{bottom:644.318667pt;}
.yce{bottom:644.904704pt;}
.y46{bottom:646.921333pt;}
.y9d{bottom:647.447832pt;}
.y1bc{bottom:647.746667pt;}
.y15d{bottom:648.165333pt;}
.y141{bottom:648.567028pt;}
.y131{bottom:649.817333pt;}
.y16{bottom:656.698667pt;}
.y116{bottom:661.047759pt;}
.y188{bottom:661.534667pt;}
.y72{bottom:661.764400pt;}
.ycd{bottom:662.824472pt;}
.y45{bottom:664.934667pt;}
.y1bb{bottom:664.961333pt;}
.y15c{bottom:665.261333pt;}
.y9c{bottom:665.807758pt;}
.y130{bottom:667.829333pt;}
.y187{bottom:678.749333pt;}
.ycc{bottom:680.824400pt;}
.y115{bottom:681.747677pt;}
.y1ba{bottom:682.177333pt;}
.y101{bottom:682.946667pt;}
.y9b{bottom:684.085921pt;}
.y13{bottom:684.434634pt;}
.y12{bottom:684.784000pt;}
.y139{bottom:685.198667pt;}
.y12f{bottom:685.842667pt;}
.y140{bottom:685.966879pt;}
.y44{bottom:690.917333pt;}
.y71{bottom:694.964400pt;}
.y186{bottom:695.965333pt;}
.y1b9{bottom:699.392000pt;}
.y100{bottom:700.958667pt;}
.y9a{bottom:702.445848pt;}
.y114{bottom:702.447594pt;}
.yc9{bottom:703.854667pt;}
.y13f{bottom:705.766799pt;}
.y12c{bottom:708.929333pt;}
.y185{bottom:713.180000pt;}
.ycb{bottom:714.024400pt;}
.y1b8{bottom:716.608000pt;}
.yff{bottom:718.972000pt;}
.y11{bottom:719.781333pt;}
.y43{bottom:721.868000pt;}
.y113{bottom:723.055327pt;}
.y13e{bottom:725.566720pt;}
.y184{bottom:730.396000pt;}
.y1b7{bottom:733.824000pt;}
.y10{bottom:735.921333pt;}
.y99{bottom:736.309848pt;}
.yfe{bottom:736.984000pt;}
.y1df{bottom:738.965333pt;}
.y42{bottom:739.880000pt;}
.y112{bottom:743.755244pt;}
.y13d{bottom:745.366641pt;}
.y183{bottom:747.612000pt;}
.y1b6{bottom:751.038667pt;}
.yf{bottom:752.060000pt;}
.yfd{bottom:754.997333pt;}
.y1de{bottom:756.180000pt;}
.y41{bottom:757.892000pt;}
.y111{bottom:764.455161pt;}
.y182{bottom:764.826667pt;}
.y13c{bottom:765.078386pt;}
.y6f{bottom:767.934667pt;}
.y1b5{bottom:768.254667pt;}
.ye{bottom:772.540000pt;}
.yfc{bottom:773.009333pt;}
.y1dd{bottom:773.396000pt;}
.y40{bottom:775.905333pt;}
.yd{bottom:784.340000pt;}
.y13b{bottom:784.878307pt;}
.y110{bottom:785.155079pt;}
.y1b4{bottom:785.469333pt;}
.y6e{bottom:785.948000pt;}
.y181{bottom:790.012000pt;}
.yfb{bottom:791.021333pt;}
.y3f{bottom:793.917333pt;}
.y1b3{bottom:802.685333pt;}
.y6d{bottom:803.960000pt;}
.yc{bottom:804.818667pt;}
.y10f{bottom:805.854996pt;}
.yfa{bottom:809.034667pt;}
.y3e{bottom:811.930667pt;}
.yb{bottom:816.618667pt;}
.y1b2{bottom:819.901333pt;}
.y13a{bottom:821.398307pt;}
.y6c{bottom:821.972000pt;}
.y180{bottom:825.081333pt;}
.y10e{bottom:826.554913pt;}
.y3d{bottom:829.942667pt;}
.ya{bottom:832.758667pt;}
.yf9{bottom:835.017333pt;}
.y1b1{bottom:837.116000pt;}
.y17f{bottom:838.590667pt;}
.y6b{bottom:839.985333pt;}
.y10d{bottom:847.254830pt;}
.y3c{bottom:847.954667pt;}
.y17e{bottom:852.100000pt;}
.y9{bottom:853.237333pt;}
.y1b0{bottom:854.332000pt;}
.y6a{bottom:857.997333pt;}
.y3b{bottom:865.968000pt;}
.y10c{bottom:867.862563pt;}
.y8{bottom:869.248000pt;}
.y1af{bottom:871.546667pt;}
.y17d{bottom:873.580000pt;}
.y69{bottom:876.010667pt;}
.y3a{bottom:883.980000pt;}
.y17c{bottom:887.089333pt;}
.y7{bottom:887.260000pt;}
.y10b{bottom:888.562481pt;}
.y1ae{bottom:888.762667pt;}
.y68{bottom:894.022667pt;}
.y39{bottom:901.993333pt;}
.y1ad{bottom:905.978667pt;}
.y17b{bottom:908.568000pt;}
.y10a{bottom:909.262398pt;}
.y67{bottom:912.034667pt;}
.y38{bottom:920.005333pt;}
.y1ac{bottom:923.193333pt;}
.y6{bottom:925.198667pt;}
.y109{bottom:929.962315pt;}
.y66{bottom:930.048000pt;}
.y37{bottom:938.017333pt;}
.y1ab{bottom:940.409333pt;}
.y65{bottom:948.060000pt;}
.y108{bottom:950.662232pt;}
.y5{bottom:952.217333pt;}
.y36{bottom:956.030667pt;}
.y1aa{bottom:957.624000pt;}
.y64{bottom:966.073333pt;}
.y35{bottom:974.042667pt;}
.y1a9{bottom:974.840000pt;}
.y4{bottom:977.906667pt;}
.y107{bottom:980.562113pt;}
.y34{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y106{bottom:1019.661956pt;}
.y33{bottom:1038.548000pt;}
.y105{bottom:1040.269689pt;}
.y104{bottom:1060.969607pt;}
.y103{bottom:1099.149607pt;}
.ha{height:22.673858pt;}
.h26{height:26.761523pt;}
.h8{height:27.076941pt;}
.hc{height:29.433775pt;}
.hb{height:30.399505pt;}
.h11{height:31.067969pt;}
.hf{height:31.157778pt;}
.h18{height:31.689328pt;}
.h1e{height:33.378918pt;}
.h28{height:34.174766pt;}
.h1d{height:34.430976pt;}
.h9{height:34.813542pt;}
.h16{height:34.898438pt;}
.h15{height:35.039062pt;}
.h2e{height:35.052646pt;}
.h20{height:35.212691pt;}
.h1c{height:35.596406pt;}
.h23{height:35.728164pt;}
.h1b{height:35.739844pt;}
.h1f{height:37.087439pt;}
.hd{height:38.256384pt;}
.h2d{height:38.388281pt;}
.h2c{height:38.542969pt;}
.he{height:38.681455pt;}
.h13{height:38.853594pt;}
.h4{height:38.947124pt;}
.h12{height:39.010156pt;}
.h19{height:39.630666pt;}
.h29{height:42.738953pt;}
.h2a{height:42.911172pt;}
.h24{height:44.681633pt;}
.h25{height:44.861680pt;}
.h2{height:45.272024pt;}
.h14{height:46.531250pt;}
.h1a{height:47.461875pt;}
.h7{height:48.360277pt;}
.h6{height:48.365611pt;}
.h2b{height:51.184375pt;}
.h5{height:68.861952pt;}
.h3{height:80.532253pt;}
.h27{height:320.139600pt;}
.h21{height:334.106667pt;}
.h17{height:380.814960pt;}
.h10{height:432.769333pt;}
.h22{height:576.176680pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:182.318075pt;}
.w7{width:458.523400pt;}
.w4{width:497.797333pt;}
.w6{width:520.781200pt;}
.w8{width:532.879600pt;}
.w5{width:557.499632pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x85{left:-105.021067pt;}
.x86{left:-72.453175pt;}
.xd4{left:-53.691733pt;}
.x38{left:-44.792000pt;}
.x6a{left:-30.217467pt;}
.xd5{left:-22.539837pt;}
.x48{left:-19.957728pt;}
.x39{left:-16.472094pt;}
.x6b{left:-1.897467pt;}
.x0{left:0.000000pt;}
.x49{left:8.927214pt;}
.x7{left:26.021437pt;}
.x2{left:51.604853pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x61{left:113.492000pt;}
.x47{left:118.099728pt;}
.x60{left:128.468000pt;}
.x4{left:129.929333pt;}
.x69{left:136.460133pt;}
.x37{left:147.952000pt;}
.x1c{left:154.712000pt;}
.xc6{left:159.358667pt;}
.x8{left:167.205333pt;}
.xad{left:169.280000pt;}
.x9b{left:173.761333pt;}
.x1d{left:174.770667pt;}
.xae{left:178.080000pt;}
.x9{left:181.096000pt;}
.x4b{left:182.826667pt;}
.x9c{left:183.790667pt;}
.x1e{left:188.053333pt;}
.x89{left:189.956000pt;}
.x92{left:191.510667pt;}
.x53{left:192.610667pt;}
.xc{left:193.508000pt;}
.x4e{left:195.761333pt;}
.x3c{left:197.358667pt;}
.xd{left:200.149333pt;}
.x8a{left:201.910667pt;}
.x2d{left:203.568000pt;}
.x93{left:204.794667pt;}
.xc7{left:206.613333pt;}
.x67{left:208.613333pt;}
.x3d{left:210.642667pt;}
.x8d{left:212.550667pt;}
.xb8{left:213.645333pt;}
.xe5{left:215.734667pt;}
.x2e{left:216.852000pt;}
.x8e{left:217.858667pt;}
.x68{left:219.981333pt;}
.x94{left:221.372000pt;}
.x29{left:223.670667pt;}
.x95{left:224.666667pt;}
.xf4{left:225.868000pt;}
.xb9{left:226.928000pt;}
.xe4{left:230.902667pt;}
.x9d{left:232.112000pt;}
.x58{left:234.484000pt;}
.xf3{left:236.016000pt;}
.x2a{left:236.954667pt;}
.x96{left:237.949333pt;}
.x91{left:239.273333pt;}
.x97{left:241.244000pt;}
.x2b{left:243.502667pt;}
.x59{left:244.700000pt;}
.x1f{left:247.160000pt;}
.x7b{left:249.549333pt;}
.xa9{left:250.880000pt;}
.x33{left:252.585333pt;}
.x98{left:254.528000pt;}
.xd7{left:255.641333pt;}
.x2c{left:256.786667pt;}
.x99{left:257.822667pt;}
.x20{left:260.444000pt;}
.x7c{left:262.833333pt;}
.xaa{left:264.162667pt;}
.x34{left:265.868000pt;}
.xab{left:267.417333pt;}
.x35{left:269.122667pt;}
.x9a{left:271.105333pt;}
.xd8{left:272.236000pt;}
.x6d{left:273.702533pt;}
.x3b{left:277.305333pt;}
.xac{left:280.701333pt;}
.x36{left:282.406667pt;}
.x5c{left:284.761333pt;}
.x72{left:286.542667pt;}
.x76{left:288.733333pt;}
.x18{left:291.373333pt;}
.x6e{left:294.604000pt;}
.x77{left:296.773333pt;}
.x19{left:298.014667pt;}
.x73{left:299.826667pt;}
.x5d{left:301.432000pt;}
.xa3{left:302.730667pt;}
.x1a{left:304.789333pt;}
.x74{left:306.601333pt;}
.xcc{left:308.102667pt;}
.x5e{left:314.714667pt;}
.x1b{left:318.073333pt;}
.x75{left:319.884000pt;}
.x6f{left:320.813333pt;}
.xda{left:322.701333pt;}
.x82{left:323.661333pt;}
.xc8{left:328.142667pt;}
.x7d{left:330.874667pt;}
.xdd{left:334.362667pt;}
.xc9{left:341.425333pt;}
.x7e{left:344.157333pt;}
.xde{left:347.646667pt;}
.xdf{left:351.033333pt;}
.xa0{left:354.817333pt;}
.xca{left:358.096000pt;}
.xcb{left:361.484000pt;}
.xe0{left:364.317333pt;}
.xa1{left:368.101333pt;}
.xa2{left:371.461333pt;}
.xc4{left:374.701333pt;}
.x3e{left:377.490667pt;}
.xc5{left:381.342667pt;}
.xb1{left:383.085333pt;}
.x70{left:384.828000pt;}
.x12{left:386.501333pt;}
.x3f{left:390.774667pt;}
.x13{left:393.144000pt;}
.xd3{left:396.224000pt;}
.xb2{left:397.744000pt;}
.x40{left:400.385333pt;}
.xaf{left:403.788000pt;}
.xba{left:405.774667pt;}
.x45{left:407.266667pt;}
.x27{left:411.045333pt;}
.xcd{left:413.320000pt;}
.xe1{left:414.329333pt;}
.x4c{left:416.892000pt;}
.xbb{left:419.058667pt;}
.x46{left:420.550667pt;}
.x28{left:424.329333pt;}
.xce{left:426.604000pt;}
.x4d{left:427.508000pt;}
.xcf{left:429.990667pt;}
.x64{left:431.669333pt;}
.xdb{left:438.356000pt;}
.xd0{left:443.274667pt;}
.xdc{left:449.762667pt;}
.x8b{left:453.745333pt;}
.xbf{left:456.677333pt;}
.xb3{left:459.200000pt;}
.x8c{left:461.049333pt;}
.xa4{left:463.518667pt;}
.x78{left:464.892000pt;}
.x41{left:468.182667pt;}
.xc0{left:469.960000pt;}
.xb4{left:472.484000pt;}
.xb5{left:475.838667pt;}
.xa5{left:476.802667pt;}
.x79{left:478.174667pt;}
.xa6{left:480.189333pt;}
.x42{left:481.465333pt;}
.x43{left:484.813333pt;}
.xc1{left:486.630667pt;}
.xb6{left:489.121333pt;}
.xb7{left:490.525333pt;}
.xf1{left:492.161333pt;}
.x2f{left:493.561333pt;}
.x7a{left:494.782667pt;}
.xa7{left:496.860000pt;}
.x44{left:498.096000pt;}
.x3a{left:504.008000pt;}
.x30{left:506.844000pt;}
.x31{left:510.218667pt;}
.x4f{left:511.797333pt;}
.xa8{left:513.532000pt;}
.xd6{left:515.789333pt;}
.xc2{left:519.973333pt;}
.x87{left:521.949333pt;}
.x32{left:523.501333pt;}
.x50{left:526.729333pt;}
.x88{left:527.926667pt;}
.xf2{left:530.992000pt;}
.x6c{left:532.582533pt;}
.xd1{left:533.585333pt;}
.xc3{left:536.644000pt;}
.x51{left:538.684000pt;}
.xbc{left:540.045333pt;}
.x62{left:543.536000pt;}
.xbd{left:544.556000pt;}
.xf0{left:546.154667pt;}
.x65{left:549.090667pt;}
.xd2{left:550.256000pt;}
.x52{left:553.333333pt;}
.x63{left:554.720000pt;}
.x54{left:556.385333pt;}
.xbe{left:557.840000pt;}
.x14{left:559.572000pt;}
.xee{left:561.125333pt;}
.x66{left:562.374667pt;}
.x4a{left:565.277336pt;}
.x15{left:566.213333pt;}
.x55{left:568.340000pt;}
.x16{left:569.468000pt;}
.x8f{left:572.928000pt;}
.x7f{left:574.673333pt;}
.x17{left:576.109333pt;}
.x56{left:582.341333pt;}
.x80{left:587.957333pt;}
.x57{left:589.645333pt;}
.x81{left:591.337333pt;}
.x24{left:592.342667pt;}
.xeb{left:597.325333pt;}
.x25{left:598.984000pt;}
.x71{left:600.414667pt;}
.x26{left:602.361333pt;}
.xe{left:605.225333pt;}
.xe2{left:608.525333pt;}
.xf{left:611.866667pt;}
.x83{left:613.096000pt;}
.x10{left:615.141333pt;}
.xe9{left:618.036000pt;}
.xb0{left:620.237333pt;}
.x11{left:621.782667pt;}
.x6{left:623.413317pt;}
.x5a{left:625.204000pt;}
.x84{left:626.380000pt;}
.x5b{left:633.244000pt;}
.x90{left:638.561333pt;}
.x9e{left:639.698667pt;}
.xea{left:641.946667pt;}
.xd9{left:644.160000pt;}
.xe7{left:647.141333pt;}
.xef{left:648.696000pt;}
.x9f{left:652.982667pt;}
.x21{left:656.125333pt;}
.xe3{left:658.138667pt;}
.xec{left:666.290667pt;}
.x22{left:669.408000pt;}
.xe8{left:671.052000pt;}
.x23{left:672.796000pt;}
.xe6{left:677.500000pt;}
.xa{left:679.437333pt;}
.x5f{left:683.613333pt;}
.xb{left:686.078667pt;}
.xed{left:690.201333pt;}
}




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