
    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_0c56579029166d3c86a0dba2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904000;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_55eeb63c5e750f12c22c71aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.888000;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_02ed1565ed4f760ef4d5a537.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_10d5fbe6841914c1d35f22e9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.982362;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_d133f93ee104e17c48ac6ce8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002000;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_089f69c4754c24cf1c691747.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f1254fc5e4abeb5236c0d6d8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911000;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_cd7498bcc51c2db5e40d8033.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.756000;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_bb442fbabb37121b36868939.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4b22605fa57b09a586ba3135.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.745000;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_bdc0abb3629413bf9a0eff01.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.703450;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_06cfe21cc2dfb517703f85a4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.400000;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_827506df68a113cc17220057.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cc5663438ae335692e75d3ea.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.704000;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_cbc56e9539baa74369caf980.woff2')format("woff");}.fff{font-family:fff;line-height:0.603000;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_357d68df782157138b824032.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.704000;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_533753084df858230a6bc0a6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.804000;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_4d2cc6508d164e2195c8fb15.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_69206957ff203884db64865e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.713000;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_8fdbebc59c0f34e0b5ef438f.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.001000;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_9e2b06c71c526f41d44a7bf1.woff2')format("woff");}.ff15{font-family:ff15;line-height:3.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:ff16;src:url('chunks/assets/font_766a2fc5d40f13ec4ac98c21.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.919000;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_09f0d959b4cc98d93ed74b88.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_2d6162f56b65058d71c195ac.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_1bba048da06a3c21aecb1764.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.921000;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_bea6235df69e66e09057845e.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_3c42fcbb1e0b0a0ff3bbcf74.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_62fbaecfcdf882cf8b092d41.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_3f577e425745fb018a55086b.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_1450b859cb200e78e49a11f6.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_626fd2b685ed7caa884aa108.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_1d5c0d66f39502520bc7e68a.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_1df5d2f88863e9559d83518a.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.543000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_e8220c1518d7566a1dd744bf.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.923000;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v23{vertical-align:-66.348000px;}
.v24{vertical-align:-59.442000px;}
.v8{vertical-align:-56.790000px;}
.v20{vertical-align:-48.420000px;}
.v9{vertical-align:-40.350000px;}
.vc{vertical-align:-17.934000px;}
.v12{vertical-align:-12.558000px;}
.vd{vertical-align:-8.970000px;}
.v1{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.866000px;}
.v14{vertical-align:8.964000px;}
.v25{vertical-align:11.952000px;}
.v7{vertical-align:18.258000px;}
.vf{vertical-align:20.616000px;}
.v15{vertical-align:21.690000px;}
.v3{vertical-align:22.854000px;}
.v6{vertical-align:25.572000px;}
.v13{vertical-align:30.054000px;}
.v4{vertical-align:36.486000px;}
.v5{vertical-align:40.350000px;}
.ve{vertical-align:41.574000px;}
.vb{vertical-align:44.832000px;}
.v1e{vertical-align:48.420000px;}
.v2{vertical-align:51.108000px;}
.v1a{vertical-align:56.784000px;}
.v16{vertical-align:62.136000px;}
.v17{vertical-align:65.682000px;}
.v1f{vertical-align:69.036000px;}
.v1b{vertical-align:81.444000px;}
.v18{vertical-align:84.288000px;}
.v22{vertical-align:86.964000px;}
.v1d{vertical-align:97.794000px;}
.v1c{vertical-align:103.134000px;}
.v11{vertical-align:120.150000px;}
.v19{vertical-align:125.286000px;}
.v21{vertical-align:143.220000px;}
.v10{vertical-align:156.012000px;}
.ls17{letter-spacing:0.000000px;}
.ls97{letter-spacing:0.000062px;}
.lsd8{letter-spacing:0.000226px;}
.lsfb{letter-spacing:0.000544px;}
.ls5d{letter-spacing:0.000594px;}
.ls110{letter-spacing:0.000681px;}
.lsb9{letter-spacing:0.000843px;}
.ls29{letter-spacing:0.001120px;}
.ls101{letter-spacing:0.001202px;}
.lscd{letter-spacing:0.001692px;}
.ls44{letter-spacing:0.001803px;}
.ls4a{letter-spacing:0.001866px;}
.ls81{letter-spacing:0.001876px;}
.lse3{letter-spacing:0.001929px;}
.lsa{letter-spacing:0.002116px;}
.ls1e{letter-spacing:0.002234px;}
.ls2b{letter-spacing:0.002245px;}
.ls71{letter-spacing:0.002338px;}
.ls72{letter-spacing:0.002481px;}
.ls11{letter-spacing:0.002796px;}
.ls5e{letter-spacing:0.002877px;}
.ls7b{letter-spacing:0.003181px;}
.ls0{letter-spacing:0.003483px;}
.ls11d{letter-spacing:0.004516px;}
.lsf4{letter-spacing:0.005885px;}
.lsd6{letter-spacing:0.006062px;}
.lsbd{letter-spacing:0.006843px;}
.ls59{letter-spacing:0.007190px;}
.ls125{letter-spacing:0.008965px;}
.ls5c{letter-spacing:0.010221px;}
.ls64{letter-spacing:0.013521px;}
.ls80{letter-spacing:0.016836px;}
.ls13b{letter-spacing:0.017125px;}
.ls53{letter-spacing:0.017549px;}
.ls2d{letter-spacing:0.017909px;}
.lse8{letter-spacing:0.018295px;}
.ls58{letter-spacing:0.018413px;}
.ls119{letter-spacing:0.019524px;}
.lsde{letter-spacing:0.021029px;}
.ls55{letter-spacing:0.021907px;}
.lsea{letter-spacing:0.022262px;}
.ls135{letter-spacing:0.023464px;}
.lsf7{letter-spacing:0.024399px;}
.lsa2{letter-spacing:0.024627px;}
.ls7e{letter-spacing:0.025148px;}
.lsc9{letter-spacing:0.025904px;}
.ls5a{letter-spacing:0.026376px;}
.lsb7{letter-spacing:0.026882px;}
.ls90{letter-spacing:0.027085px;}
.lse9{letter-spacing:0.027174px;}
.ls10c{letter-spacing:0.028406px;}
.ls143{letter-spacing:0.033085px;}
.ls13f{letter-spacing:0.059776px;}
.ls2{letter-spacing:0.753178px;}
.ls18{letter-spacing:1.004227px;}
.ls4{letter-spacing:1.560154px;}
.ls57{letter-spacing:1.613941px;}
.ls3e{letter-spacing:1.673717px;}
.ls66{letter-spacing:1.853044px;}
.ls70{letter-spacing:1.912819px;}
.lsc{letter-spacing:1.936742px;}
.ls3f{letter-spacing:2.151922px;}
.ls45{letter-spacing:2.984525px;}
.ls65{letter-spacing:2.987864px;}
.ls1{letter-spacing:2.988248px;}
.ls83{letter-spacing:2.988615px;}
.ls52{letter-spacing:2.990525px;}
.ls19{letter-spacing:2.997183px;}
.ls21{letter-spacing:3.287658px;}
.lsc6{letter-spacing:3.334527px;}
.ls1c{letter-spacing:3.347434px;}
.ls2a{letter-spacing:3.994868px;}
.ls2e{letter-spacing:4.000868px;}
.ls3{letter-spacing:4.281980px;}
.lscb{letter-spacing:4.854544px;}
.ls12b{letter-spacing:5.556136px;}
.ls8b{letter-spacing:5.562136px;}
.lsfe{letter-spacing:6.395989px;}
.ls3d{letter-spacing:6.455765px;}
.ls42{letter-spacing:6.515540px;}
.ls116{letter-spacing:7.146040px;}
.ls140{letter-spacing:7.146578px;}
.ls105{letter-spacing:7.152131px;}
.ls62{letter-spacing:7.154197px;}
.ls1d{letter-spacing:7.160363px;}
.lsf1{letter-spacing:7.166525px;}
.ls100{letter-spacing:7.172012px;}
.lsba{letter-spacing:7.172234px;}
.ls7c{letter-spacing:7.172245px;}
.ls8f{letter-spacing:7.172525px;}
.lsda{letter-spacing:7.173181px;}
.lsc5{letter-spacing:7.173657px;}
.ls6b{letter-spacing:7.178245px;}
.ls78{letter-spacing:7.182284px;}
.lsa8{letter-spacing:7.183362px;}
.ls111{letter-spacing:7.187490px;}
.lsae{letter-spacing:7.204441px;}
.ls11f{letter-spacing:7.531726px;}
.ls6a{letter-spacing:9.315181px;}
.ls35{letter-spacing:9.922750px;}
.ls104{letter-spacing:9.957657px;}
.lsc7{letter-spacing:9.963657px;}
.ls27{letter-spacing:9.982525px;}
.ls11e{letter-spacing:10.512615px;}
.ls7a{letter-spacing:11.118262px;}
.ls76{letter-spacing:11.151181px;}
.ls73{letter-spacing:11.178037px;}
.ls69{letter-spacing:11.619326px;}
.lsd9{letter-spacing:11.624416px;}
.lsff{letter-spacing:11.626059px;}
.lsfa{letter-spacing:11.635000px;}
.ls136{letter-spacing:11.698705px;}
.lsd{letter-spacing:12.206018px;}
.lsa1{letter-spacing:12.950234px;}
.ls85{letter-spacing:12.951439px;}
.ls68{letter-spacing:12.956234px;}
.ls1b{letter-spacing:13.270183px;}
.lsc4{letter-spacing:13.273089px;}
.lsb2{letter-spacing:13.281181px;}
.lsb4{letter-spacing:13.287181px;}
.ls50{letter-spacing:13.329959px;}
.ls63{letter-spacing:13.824679px;}
.ls120{letter-spacing:14.047266px;}
.lsa9{letter-spacing:14.124342px;}
.lsa0{letter-spacing:14.130342px;}
.lsaf{letter-spacing:14.184117px;}
.ls121{letter-spacing:14.683575px;}
.ls123{letter-spacing:14.711490px;}
.ls61{letter-spacing:14.824349px;}
.ls77{letter-spacing:15.148868px;}
.ls13{letter-spacing:15.332544px;}
.ls14{letter-spacing:15.336148px;}
.lsf{letter-spacing:15.349089px;}
.ls15{letter-spacing:15.354557px;}
.ls10{letter-spacing:15.360557px;}
.ls6{letter-spacing:15.386342px;}
.lsc3{letter-spacing:15.481880px;}
.lsc2{letter-spacing:15.486843px;}
.lsa4{letter-spacing:15.601432px;}
.ls103{letter-spacing:15.776012px;}
.ls82{letter-spacing:15.938826px;}
.ls10d{letter-spacing:15.944826px;}
.ls7f{letter-spacing:16.266615px;}
.ls56{letter-spacing:16.268525px;}
.lsf9{letter-spacing:16.272615px;}
.ls5b{letter-spacing:16.274525px;}
.ls30{letter-spacing:16.557841px;}
.lsc8{letter-spacing:16.599657px;}
.ls26{letter-spacing:16.600350px;}
.ls6e{letter-spacing:16.602538px;}
.ls4c{letter-spacing:16.604338px;}
.ls9e{letter-spacing:16.604362px;}
.ls2f{letter-spacing:16.617617px;}
.ls9c{letter-spacing:16.626556px;}
.ls34{letter-spacing:16.737168px;}
.lse{letter-spacing:17.000294px;}
.ls141{letter-spacing:17.036046px;}
.ls142{letter-spacing:17.095822px;}
.ls94{letter-spacing:17.106397px;}
.lsb8{letter-spacing:17.132525px;}
.lsb1{letter-spacing:17.134200px;}
.ls75{letter-spacing:17.140200px;}
.ls9{letter-spacing:17.209559px;}
.ls33{letter-spacing:17.215373px;}
.ls7{letter-spacing:17.215488px;}
.ls5f{letter-spacing:17.278868px;}
.ls1a{letter-spacing:17.284868px;}
.ls14d{letter-spacing:17.394700px;}
.ls14e{letter-spacing:17.454475px;}
.lsed{letter-spacing:17.813129px;}
.lsad{letter-spacing:17.856538px;}
.ls9f{letter-spacing:17.862538px;}
.lsee{letter-spacing:17.872904px;}
.lsb6{letter-spacing:18.112007px;}
.lsb5{letter-spacing:18.171782px;}
.lsf5{letter-spacing:18.231558px;}
.ls74{letter-spacing:18.323876px;}
.ls12{letter-spacing:18.346491px;}
.lsdd{letter-spacing:18.410885px;}
.ls16{letter-spacing:18.452851px;}
.ls9b{letter-spacing:18.470660px;}
.ls4f{letter-spacing:18.530436px;}
.ls14a{letter-spacing:18.590212px;}
.lsfc{letter-spacing:18.690615px;}
.ls60{letter-spacing:18.838868px;}
.lsdb{letter-spacing:19.058245px;}
.ls117{letter-spacing:19.262826px;}
.ls4b{letter-spacing:19.586525px;}
.lsd7{letter-spacing:19.589864px;}
.lsce{letter-spacing:19.590615px;}
.ls40{letter-spacing:19.592525px;}
.lsa3{letter-spacing:19.594868px;}
.ls9d{letter-spacing:19.595864px;}
.ls86{letter-spacing:19.596615px;}
.ls10a{letter-spacing:19.785724px;}
.ls8c{letter-spacing:19.905275px;}
.ls3c{letter-spacing:19.922338px;}
.ls24{letter-spacing:19.928172px;}
.ls102{letter-spacing:20.018826px;}
.ls4d{letter-spacing:20.024826px;}
.ls8{letter-spacing:20.202248px;}
.ls150{letter-spacing:20.263928px;}
.lsb3{letter-spacing:20.443089px;}
.ls3a{letter-spacing:20.443255px;}
.lsb0{letter-spacing:20.449089px;}
.ls145{letter-spacing:20.451685px;}
.ls12a{letter-spacing:20.454538px;}
.ls91{letter-spacing:20.457685px;}
.ls127{letter-spacing:20.471490px;}
.ls10e{letter-spacing:20.480660px;}
.ls10b{letter-spacing:20.486660px;}
.ls6d{letter-spacing:20.608868px;}
.ls14c{letter-spacing:20.622582px;}
.ls108{letter-spacing:20.682358px;}
.ls39{letter-spacing:20.690338px;}
.ls109{letter-spacing:20.840525px;}
.lsbb{letter-spacing:20.856843px;}
.ls31{letter-spacing:20.861684px;}
.ls147{letter-spacing:20.921460px;}
.lsf6{letter-spacing:21.192615px;}
.lsf8{letter-spacing:21.198615px;}
.ls41{letter-spacing:21.339889px;}
.ls4e{letter-spacing:21.399665px;}
.ls36{letter-spacing:21.459440px;}
.ls14b{letter-spacing:21.578992px;}
.ls14f{letter-spacing:21.997421px;}
.ls131{letter-spacing:22.164136px;}
.ls12e{letter-spacing:22.170136px;}
.ls25{letter-spacing:22.334823px;}
.ls93{letter-spacing:22.415850px;}
.ls149{letter-spacing:22.475626px;}
.ls113{letter-spacing:22.580826px;}
.ls49{letter-spacing:22.595177px;}
.ls137{letter-spacing:22.774504px;}
.lsdf{letter-spacing:22.894055px;}
.lse4{letter-spacing:22.907864px;}
.ls126{letter-spacing:22.910525px;}
.lsef{letter-spacing:22.953830px;}
.ls5{letter-spacing:23.052879px;}
.lsf0{letter-spacing:23.073382px;}
.lsa5{letter-spacing:23.372260px;}
.ls3b{letter-spacing:23.491811px;}
.lse6{letter-spacing:23.611362px;}
.ls13e{letter-spacing:23.754040px;}
.ls12f{letter-spacing:23.799314px;}
.ls37{letter-spacing:23.850464px;}
.lse7{letter-spacing:24.089567px;}
.lsbc{letter-spacing:24.149342px;}
.lseb{letter-spacing:24.318342px;}
.lscc{letter-spacing:24.372117px;}
.ls8e{letter-spacing:24.507996px;}
.ls23{letter-spacing:24.687323px;}
.lsbf{letter-spacing:24.806874px;}
.lsbe{letter-spacing:24.816843px;}
.ls32{letter-spacing:24.832868px;}
.lsc0{letter-spacing:24.866650px;}
.ls46{letter-spacing:25.165528px;}
.ls107{letter-spacing:25.225303px;}
.lse5{letter-spacing:25.464406px;}
.lsec{letter-spacing:25.524181px;}
.lse1{letter-spacing:25.992538px;}
.ls48{letter-spacing:26.002386px;}
.ls13c{letter-spacing:26.121937px;}
.ls148{letter-spacing:26.741864px;}
.lsd2{letter-spacing:26.954338px;}
.lsd1{letter-spacing:26.956719px;}
.lsd4{letter-spacing:26.958796px;}
.lsd5{letter-spacing:26.978568px;}
.lsd0{letter-spacing:27.078347px;}
.ls88{letter-spacing:27.138122px;}
.ls51{letter-spacing:27.496776px;}
.ls13a{letter-spacing:27.676103px;}
.ls139{letter-spacing:27.735878px;}
.ls9a{letter-spacing:27.855430px;}
.ls96{letter-spacing:28.376338px;}
.ls95{letter-spacing:28.385875px;}
.ls99{letter-spacing:28.393410px;}
.ls7d{letter-spacing:28.512961px;}
.ls6f{letter-spacing:28.554615px;}
.lse0{letter-spacing:28.974615px;}
.ls146{letter-spacing:29.170493px;}
.lsab{letter-spacing:29.290044px;}
.lsb{letter-spacing:29.678289px;}
.ls22{letter-spacing:29.768249px;}
.ls20{letter-spacing:29.887800px;}
.ls133{letter-spacing:29.930525px;}
.lsd3{letter-spacing:29.939864px;}
.lscf{letter-spacing:30.055140px;}
.ls2c{letter-spacing:30.622868px;}
.lsa7{letter-spacing:30.732342px;}
.ls67{letter-spacing:30.786117px;}
.lsac{letter-spacing:30.792117px;}
.ls8d{letter-spacing:31.023536px;}
.lsaa{letter-spacing:31.143088px;}
.ls38{letter-spacing:31.262639px;}
.ls89{letter-spacing:31.322414px;}
.ls98{letter-spacing:31.367864px;}
.ls1f{letter-spacing:31.626679px;}
.lsca{letter-spacing:31.740844px;}
.ls11b{letter-spacing:31.920170px;}
.lsc1{letter-spacing:31.982234px;}
.ls87{letter-spacing:32.011140px;}
.ls47{letter-spacing:32.039722px;}
.ls54{letter-spacing:33.175458px;}
.ls28{letter-spacing:33.295009px;}
.lse2{letter-spacing:33.736868px;}
.ls138{letter-spacing:33.768716px;}
.ls122{letter-spacing:33.996142px;}
.ls11c{letter-spacing:34.898525px;}
.lsa6{letter-spacing:37.206679px;}
.ls10f{letter-spacing:39.771685px;}
.ls12d{letter-spacing:45.488525px;}
.ls118{letter-spacing:46.622338px;}
.ls130{letter-spacing:49.708200px;}
.ls79{letter-spacing:51.186117px;}
.lsf3{letter-spacing:54.874001px;}
.ls106{letter-spacing:59.775600px;}
.ls43{letter-spacing:61.090663px;}
.ls12c{letter-spacing:63.258040px;}
.ls13d{letter-spacing:64.042274px;}
.ls132{letter-spacing:64.048274px;}
.ls11a{letter-spacing:67.011975px;}
.ls128{letter-spacing:67.530040px;}
.ls124{letter-spacing:67.589815px;}
.ls112{letter-spacing:69.698350px;}
.lsfd{letter-spacing:69.723657px;}
.ls114{letter-spacing:69.758125px;}
.ls115{letter-spacing:70.356538px;}
.ls6c{letter-spacing:71.049181px;}
.lsdc{letter-spacing:71.055181px;}
.ls129{letter-spacing:84.138040px;}
.ls144{letter-spacing:84.536234px;}
.ls134{letter-spacing:99.132538px;}
.lsf2{letter-spacing:127.688234px;}
.ls92{letter-spacing:129.020234px;}
.ls8a{letter-spacing:316.033597px;}
.ls84{letter-spacing:414.962215px;}
.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;}
}
.ws39{word-spacing:-48.920351px;}
.wsbb{word-spacing:-48.152617px;}
.ws1d{word-spacing:-47.324343px;}
.ws58{word-spacing:-46.505417px;}
.ws54{word-spacing:-43.217759px;}
.ws52{word-spacing:-43.157983px;}
.ws1e{word-spacing:-38.937826px;}
.wsf{word-spacing:-36.071827px;}
.ws63{word-spacing:-34.364992px;}
.wsb7{word-spacing:-31.633157px;}
.ws16{word-spacing:-30.545332px;}
.ws4f{word-spacing:-30.167439px;}
.ws4e{word-spacing:-30.144183px;}
.ws85{word-spacing:-29.881822px;}
.wsc9{word-spacing:-29.015076px;}
.ws42{word-spacing:-28.955301px;}
.wsba{word-spacing:-27.813587px;}
.wsc7{word-spacing:-23.473811px;}
.ws76{word-spacing:-22.379985px;}
.ws53{word-spacing:-22.320209px;}
.wsce{word-spacing:-21.901780px;}
.ws91{word-spacing:-21.089086px;}
.ws66{word-spacing:-21.071369px;}
.wsbd{word-spacing:-21.064921px;}
.wsd{word-spacing:-20.739283px;}
.wsc2{word-spacing:-19.869409px;}
.wsd6{word-spacing:-17.627824px;}
.wsc5{word-spacing:-17.597937px;}
.ws24{word-spacing:-17.568049px;}
.ws87{word-spacing:-16.581751px;}
.ws28{word-spacing:-16.312761px;}
.wsb9{word-spacing:-16.252986px;}
.ws23{word-spacing:-15.296576px;}
.wsb4{word-spacing:-15.117249px;}
.ws72{word-spacing:-14.997698px;}
.wse9{word-spacing:-14.937922px;}
.ws81{word-spacing:-14.758596px;}
.ws82{word-spacing:-14.399942px;}
.wsb8{word-spacing:-14.101064px;}
.wsf2{word-spacing:-14.041288px;}
.wsf4{word-spacing:-13.981513px;}
.wsa9{word-spacing:-13.622859px;}
.wse1{word-spacing:-13.443532px;}
.ws6c{word-spacing:-13.264206px;}
.wsf3{word-spacing:-12.911530px;}
.wse7{word-spacing:-12.786001px;}
.wscf{word-spacing:-12.487123px;}
.ws3a{word-spacing:-12.433325px;}
.ws73{word-spacing:-12.427347px;}
.wsa7{word-spacing:-12.373549px;}
.wsd8{word-spacing:-12.367572px;}
.wsa4{word-spacing:-12.194222px;}
.wsa5{word-spacing:-12.134447px;}
.ws74{word-spacing:-12.014896px;}
.wsca{word-spacing:-11.979030px;}
.ws62{word-spacing:-11.889367px;}
.wse8{word-spacing:-11.716018px;}
.wse0{word-spacing:-11.710040px;}
.ws25{word-spacing:-11.650264px;}
.ws30{word-spacing:-11.590489px;}
.ws5b{word-spacing:-11.483424px;}
.ws2f{word-spacing:-11.470938px;}
.ws2c{word-spacing:-11.411162px;}
.wse3{word-spacing:-11.351386px;}
.ws7e{word-spacing:-11.297588px;}
.ws99{word-spacing:-11.231835px;}
.ws6d{word-spacing:-11.172060px;}
.ws9e{word-spacing:-11.118262px;}
.ws8c{word-spacing:-11.052508px;}
.wsd1{word-spacing:-10.932957px;}
.wsbc{word-spacing:-10.873182px;}
.wsd2{word-spacing:-10.813406px;}
.wsbe{word-spacing:-10.753630px;}
.wsbf{word-spacing:-10.693855px;}
.wsb3{word-spacing:-10.634079px;}
.ws6e{word-spacing:-10.580281px;}
.wsaa{word-spacing:-10.574304px;}
.ws61{word-spacing:-10.394977px;}
.wsb5{word-spacing:-10.335201px;}
.wsd3{word-spacing:-10.275426px;}
.ws26{word-spacing:-10.096099px;}
.ws31{word-spacing:-10.036323px;}
.ws18{word-spacing:-9.976548px;}
.ws1c{word-spacing:-9.952819px;}
.ws77{word-spacing:-9.916772px;}
.wsd9{word-spacing:-9.862974px;}
.ws43{word-spacing:-9.743423px;}
.ws45{word-spacing:-9.683647px;}
.wscd{word-spacing:-9.677670px;}
.wsf1{word-spacing:-9.617894px;}
.ws17{word-spacing:-9.444545px;}
.wsea{word-spacing:-9.384769px;}
.wseb{word-spacing:-9.378792px;}
.ws15{word-spacing:-9.324994px;}
.ws7a{word-spacing:-9.319016px;}
.ws32{word-spacing:-9.265218px;}
.ws13{word-spacing:-9.205442px;}
.wsa8{word-spacing:-9.199465px;}
.ws6{word-spacing:-9.145667px;}
.ws48{word-spacing:-9.085891px;}
.ws93{word-spacing:-9.020138px;}
.wsb6{word-spacing:-8.960362px;}
.ws4b{word-spacing:-8.840811px;}
.wse5{word-spacing:-8.547911px;}
.wsee{word-spacing:-8.541933px;}
.ws8d{word-spacing:-8.482158px;}
.wse6{word-spacing:-8.129482px;}
.wsb0{word-spacing:-8.123504px;}
.ws9a{word-spacing:-7.944177px;}
.wsed{word-spacing:-7.884402px;}
.wsef{word-spacing:-7.830604px;}
.ws4c{word-spacing:-7.645299px;}
.ws7b{word-spacing:-7.471950px;}
.ws6a{word-spacing:-7.406197px;}
.ws55{word-spacing:-7.346421px;}
.wsec{word-spacing:-7.292623px;}
.wsb2{word-spacing:-7.226870px;}
.ws2e{word-spacing:-7.167094px;}
.ws2b{word-spacing:-7.107319px;}
.ws4d{word-spacing:-7.053521px;}
.ws5c{word-spacing:-7.047543px;}
.ws9b{word-spacing:-6.927992px;}
.wsdc{word-spacing:-6.814418px;}
.ws8e{word-spacing:-6.688890px;}
.ws98{word-spacing:-6.629114px;}
.ws86{word-spacing:-6.509563px;}
.ws9c{word-spacing:-6.336214px;}
.ws56{word-spacing:-6.330236px;}
.wsd5{word-spacing:-6.150909px;}
.ws2d{word-spacing:-5.971582px;}
.ws57{word-spacing:-5.858009px;}
.wsae{word-spacing:-5.792256px;}
.ws80{word-spacing:-5.433602px;}
.wsf0{word-spacing:-5.379804px;}
.wsd4{word-spacing:-5.373826px;}
.wse4{word-spacing:-5.320028px;}
.ws29{word-spacing:-5.194500px;}
.ws95{word-spacing:-5.074948px;}
.ws96{word-spacing:-5.015173px;}
.ws3d{word-spacing:-4.895622px;}
.ws2a{word-spacing:-4.536968px;}
.wsde{word-spacing:-4.477192px;}
.wsb1{word-spacing:-4.417417px;}
.wsad{word-spacing:-4.357641px;}
.wsab{word-spacing:-4.297866px;}
.ws3e{word-spacing:-4.238090px;}
.ws41{word-spacing:-3.945190px;}
.wsdd{word-spacing:-3.939212px;}
.ws3f{word-spacing:-3.919653px;}
.wsdf{word-spacing:-3.879436px;}
.ws6b{word-spacing:-3.819661px;}
.wscb{word-spacing:-3.759885px;}
.wsaf{word-spacing:-3.700110px;}
.wsa2{word-spacing:-3.586536px;}
.wsa0{word-spacing:-3.466985px;}
.ws83{word-spacing:-3.341456px;}
.wsc8{word-spacing:-3.281680px;}
.wsc1{word-spacing:-3.162129px;}
.ws3b{word-spacing:-3.042578px;}
.ws3c{word-spacing:-2.803476px;}
.wsc4{word-spacing:-2.778841px;}
.ws84{word-spacing:-2.689902px;}
.wsd7{word-spacing:-2.624149px;}
.wsd0{word-spacing:-2.504598px;}
.ws8b{word-spacing:-2.385046px;}
.ws89{word-spacing:-2.325271px;}
.wscc{word-spacing:-2.205720px;}
.ws4a{word-spacing:-2.145944px;}
.wse2{word-spacing:-2.032370px;}
.ws67{word-spacing:-1.936729px;}
.ws5d{word-spacing:-1.787290px;}
.ws69{word-spacing:-1.189534px;}
.wsc3{word-spacing:-0.771105px;}
.ws20{word-spacing:-0.711330px;}
.ws60{word-spacing:-0.657532px;}
.ws7f{word-spacing:-0.292900px;}
.ws1{word-spacing:-0.103292px;}
.ws19{word-spacing:-0.086077px;}
.ws3{word-spacing:-0.071731px;}
.ws33{word-spacing:-0.059776px;}
.ws11{word-spacing:-0.053798px;}
.ws14{word-spacing:0.000000px;}
.ws1b{word-spacing:0.005978px;}
.ws88{word-spacing:0.671582px;}
.ws1f{word-spacing:5.206455px;}
.wsc6{word-spacing:8.745145px;}
.ws38{word-spacing:9.862974px;}
.ws94{word-spacing:9.894010px;}
.ws90{word-spacing:9.895239px;}
.ws92{word-spacing:9.901239px;}
.ws35{word-spacing:9.919242px;}
.ws8f{word-spacing:9.922750px;}
.ws5e{word-spacing:10.699832px;}
.ws68{word-spacing:10.708802px;}
.ws64{word-spacing:10.732963px;}
.ws36{word-spacing:10.759608px;}
.ws46{word-spacing:12.907242px;}
.ws40{word-spacing:12.911187px;}
.ws47{word-spacing:12.917187px;}
.ws65{word-spacing:13.210408px;}
.wsc{word-spacing:15.278746px;}
.ws50{word-spacing:16.498066px;}
.ws70{word-spacing:16.519047px;}
.ws79{word-spacing:16.525047px;}
.ws9f{word-spacing:16.550321px;}
.ws37{word-spacing:16.557841px;}
.ws12{word-spacing:16.946496px;}
.ws10{word-spacing:17.161690px;}
.ws9{word-spacing:17.376883px;}
.ws7{word-spacing:18.076262px;}
.wsb{word-spacing:18.345254px;}
.wsa{word-spacing:18.399053px;}
.ws75{word-spacing:18.470660px;}
.wse{word-spacing:19.475021px;}
.ws97{word-spacing:19.845499px;}
.ws6f{word-spacing:19.905275px;}
.ws71{word-spacing:20.079687px;}
.ws44{word-spacing:20.801909px;}
.ws8{word-spacing:20.819981px;}
.wsc0{word-spacing:20.837774px;}
.ws1a{word-spacing:20.927438px;}
.wsa6{word-spacing:20.981236px;}
.wsa3{word-spacing:21.280114px;}
.ws49{word-spacing:21.339889px;}
.wsac{word-spacing:21.383187px;}
.ws5f{word-spacing:22.941162px;}
.ws7c{word-spacing:23.013606px;}
.ws2{word-spacing:23.312640px;}
.wsda{word-spacing:23.910240px;}
.wsdb{word-spacing:27.437000px;}
.ws8a{word-spacing:27.496776px;}
.ws9d{word-spacing:27.974981px;}
.ws59{word-spacing:29.828024px;}
.wsa1{word-spacing:31.202863px;}
.ws0{word-spacing:32.227229px;}
.ws5a{word-spacing:33.175458px;}
.ws34{word-spacing:37.479301px;}
.ws27{word-spacing:37.874074px;}
.ws4{word-spacing:49.466025px;}
.ws5{word-spacing:49.590000px;}
.ws51{word-spacing:61.030888px;}
.ws7d{word-spacing:61.425407px;}
.ws22{word-spacing:94.598843px;}
.ws78{word-spacing:576.332425px;}
.ws21{word-spacing:1636.482579px;}
._12{margin-left:-29.887800px;}
._1b{margin-left:-9.982525px;}
._0{margin-left:-5.371205px;}
._3{margin-left:-3.586560px;}
._2{margin-left:-1.936742px;}
._15{width:1.673717px;}
._1{width:2.685602px;}
._1e{width:3.706111px;}
._5{width:4.710439px;}
._28{width:7.292623px;}
._7{width:8.670696px;}
._1f{width:9.922750px;}
._2a{width:11.115502px;}
._17{width:14.884124px;}
._1c{width:16.617617px;}
._23{width:17.841582px;}
._10{width:19.905275px;}
._4{width:21.196570px;}
._20{width:22.471511px;}
._19{width:23.934163px;}
._1d{width:25.799160px;}
._8{width:26.922943px;}
._6{width:27.975005px;}
._d{width:29.887800px;}
._27{width:31.310485px;}
._22{width:32.389776px;}
._c{width:33.657986px;}
._1a{width:35.554553px;}
._24{width:38.734613px;}
._21{width:40.288754px;}
._18{width:42.918881px;}
._25{width:44.102464px;}
._14{width:48.776914px;}
._11{width:51.825445px;}
._13{width:59.536498px;}
._b{width:61.090663px;}
._2f{width:63.123034px;}
._f{width:68.383286px;}
._2c{width:71.252515px;}
._2d{width:73.703315px;}
._2e{width:74.719500px;}
._16{width:80.697600px;}
._2b{width:91.425202px;}
._e{width:94.863877px;}
._29{width:106.128075px;}
._26{width:356.493757px;}
._9{width:1558.617217px;}
._a{width:1696.778252px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.887800px;}
.fs5{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.fs2{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:134.047500px;}
.y14c{bottom:174.313500px;}
.y17d{bottom:175.143000px;}
.y17e{bottom:176.752500px;}
.y17c{bottom:177.289500px;}
.y49{bottom:178.879500px;}
.y14d{bottom:184.564500px;}
.y17b{bottom:187.539000px;}
.yd8{bottom:189.240000px;}
.y94{bottom:189.243000px;}
.y48{bottom:196.812000px;}
.yda{bottom:196.963500px;}
.y104{bottom:200.829000px;}
.y93{bottom:207.175500px;}
.yd9{bottom:207.214500px;}
.y14b{bottom:209.533500px;}
.yb4{bottom:211.308000px;}
.y70{bottom:211.440000px;}
.y47{bottom:214.744500px;}
.y103{bottom:218.761500px;}
.yd7{bottom:221.410500px;}
.y31{bottom:221.787000px;}
.y17a{bottom:222.040500px;}
.yb3{bottom:224.088000px;}
.y1a{bottom:224.241000px;}
.y92{bottom:225.108000px;}
.y1ab{bottom:225.229500px;}
.yb2{bottom:229.240500px;}
.y102{bottom:234.099000px;}
.y101{bottom:234.769500px;}
.y100{bottom:239.253000px;}
.y30{bottom:239.719500px;}
.y179{bottom:239.973000px;}
.y12a{bottom:241.158000px;}
.y19{bottom:242.173500px;}
.y14a{bottom:242.229000px;}
.y6f{bottom:244.002000px;}
.y46{bottom:247.473000px;}
.yd6{bottom:250.185000px;}
.y91{bottom:252.690000px;}
.y1aa{bottom:255.261000px;}
.y129{bottom:259.090500px;}
.yb1{bottom:259.128000px;}
.y149{bottom:264.645000px;}
.y177{bottom:268.017000px;}
.y178{bottom:269.625000px;}
.yfc{bottom:270.603000px;}
.y90{bottom:270.622500px;}
.y6e{bottom:276.562500px;}
.y128{bottom:277.023000px;}
.yff{bottom:278.326500px;}
.yd3{bottom:280.117500px;}
.y176{bottom:280.413000px;}
.y1a9{bottom:280.785000px;}
.y148{bottom:286.846500px;}
.yd5{bottom:287.841000px;}
.yfb{bottom:288.577500px;}
.yb0{bottom:290.881500px;}
.y6d{bottom:294.495000px;}
.yfe{bottom:294.991500px;}
.y45{bottom:296.845500px;}
.y147{bottom:297.097500px;}
.yd4{bottom:298.092000px;}
.yfd{bottom:298.686000px;}
.y1a8{bottom:298.719000px;}
.y18{bottom:305.275500px;}
.y124{bottom:306.141000px;}
.y2f{bottom:306.814500px;}
.y8f{bottom:309.462000px;}
.yd2{bottom:312.289500px;}
.y127{bottom:313.864500px;}
.y175{bottom:317.818500px;}
.yaf{bottom:320.770500px;}
.y1a7{bottom:322.725000px;}
.y123{bottom:324.115500px;}
.y6c{bottom:324.130500px;}
.y2e{bottom:324.747000px;}
.y8e{bottom:327.394500px;}
.y44{bottom:329.718000px;}
.y126{bottom:330.531000px;}
.yfa{bottom:330.717000px;}
.y125{bottom:334.225500px;}
.y17{bottom:334.651500px;}
.y16{bottom:336.438000px;}
.y14{bottom:336.892500px;}
.y146{bottom:337.126500px;}
.yd1{bottom:340.233000px;}
.y1a6{bottom:340.657500px;}
.y173{bottom:340.852500px;}
.y13{bottom:341.002500px;}
.y6b{bottom:342.063000px;}
.y174{bottom:342.460500px;}
.y15{bottom:346.512000px;}
.y43{bottom:347.652000px;}
.yf9{bottom:348.649500px;}
.yae{bottom:351.238500px;}
.y172{bottom:353.248500px;}
.y145{bottom:355.059000px;}
.y8d{bottom:357.324000px;}
.yd0{bottom:358.165500px;}
.y1a5{bottom:358.590000px;}
.yad{bottom:361.489500px;}
.y8c{bottom:365.047500px;}
.y122{bottom:365.445000px;}
.y42{bottom:365.584500px;}
.yf{bottom:368.770500px;}
.y6a{bottom:371.698500px;}
.y8b{bottom:375.298500px;}
.y12{bottom:375.514500px;}
.y1a4{bottom:376.522500px;}
.y41{bottom:378.363000px;}
.yf8{bottom:378.538500px;}
.y40{bottom:383.517000px;}
.ye{bottom:384.636000px;}
.y144{bottom:384.763500px;}
.ycf{bottom:385.809000px;}
.y69{bottom:389.632500px;}
.y11{bottom:390.969000px;}
.y170{bottom:391.485000px;}
.y2d{bottom:391.840500px;}
.y171{bottom:393.093000px;}
.y10{bottom:393.334500px;}
.y16f{bottom:393.630000px;}
.y143{bottom:395.014500px;}
.yce{bottom:396.060000px;}
.y121{bottom:397.510500px;}
.yac{bottom:398.415000px;}
.y1a3{bottom:400.528500px;}
.y1c8{bottom:403.188000px;}
.y3f{bottom:403.498500px;}
.yab{bottom:403.569000px;}
.y16e{bottom:403.881000px;}
.yf7{bottom:408.426000px;}
.y2c{bottom:409.773000px;}
.y68{bottom:414.910500px;}
.y8a{bottom:417.439500px;}
.y1a2{bottom:418.462500px;}
.y67{bottom:419.394000px;}
.y1c7{bottom:421.120500px;}
.y3e{bottom:421.431000px;}
.yaa{bottom:421.501500px;}
.yd{bottom:422.086500px;}
.y2b{bottom:427.705500px;}
.y120{bottom:429.577500px;}
.yf6{bottom:435.325500px;}
.y142{bottom:436.857000px;}
.yc{bottom:438.525000px;}
.ycd{bottom:439.030500px;}
.y1c6{bottom:439.053000px;}
.y3d{bottom:439.365000px;}
.y16d{bottom:442.117500px;}
.y1a1{bottom:445.456500px;}
.y89{bottom:447.327000px;}
.y66{bottom:449.029500px;}
.ya9{bottom:451.389000px;}
.ycc{bottom:451.810500px;}
.yf5{bottom:453.258000px;}
.yb{bottom:454.963500px;}
.ycb{bottom:456.963000px;}
.y16a{bottom:457.435500px;}
.y16c{bottom:458.562000px;}
.y141{bottom:459.745500px;}
.y11f{bottom:461.643000px;}
.y65{bottom:462.478500px;}
.y1c5{bottom:462.963000px;}
.y1a0{bottom:463.389000px;}
.y88{bottom:465.259500px;}
.y16b{bottom:465.430500px;}
.y64{bottom:466.962000px;}
.y169{bottom:467.406000px;}
.y140{bottom:469.996500px;}
.ya{bottom:471.400500px;}
.y3c{bottom:472.237500px;}
.y1c4{bottom:480.895500px;}
.ya8{bottom:481.278000px;}
.y19f{bottom:481.323000px;}
.yf4{bottom:482.440500px;}
.y168{bottom:483.967500px;}
.yf3{bottom:492.691500px;}
.yca{bottom:492.720000px;}
.y11e{bottom:493.708500px;}
.y2a{bottom:494.799000px;}
.y9{bottom:494.827500px;}
.y167{bottom:495.004500px;}
.y87{bottom:495.148500px;}
.y63{bottom:496.597500px;}
.y1c3{bottom:498.829500px;}
.y3b{bottom:505.110000px;}
.y163{bottom:506.262000px;}
.ya7{bottom:507.052500px;}
.y165{bottom:507.388500px;}
.y19c{bottom:509.100000px;}
.y166{bottom:510.895500px;}
.y162{bottom:511.080000px;}
.y11d{bottom:511.641000px;}
.y13f{bottom:512.104500px;}
.y29{bottom:512.733000px;}
.y164{bottom:514.257000px;}
.y62{bottom:514.530000px;}
.y161{bottom:516.234000px;}
.y1c2{bottom:516.762000px;}
.y19e{bottom:516.823500px;}
.y86{bottom:519.882000px;}
.y85{bottom:520.552500px;}
.yf2{bottom:523.242000px;}
.y84{bottom:525.036000px;}
.yc9{bottom:525.597000px;}
.y19b{bottom:527.074500px;}
.y13e{bottom:530.037000px;}
.y61{bottom:532.462500px;}
.ya6{bottom:536.941500px;}
.y19d{bottom:537.184500px;}
.y11c{bottom:538.054500px;}
.y1c1{bottom:540.672000px;}
.yf1{bottom:541.176000px;}
.y160{bottom:542.076000px;}
.y13d{bottom:547.969500px;}
.y15f{bottom:552.327000px;}
.yc6{bottom:554.698500px;}
.y11b{bottom:555.987000px;}
.y83{bottom:556.999500px;}
.y1c0{bottom:558.604500px;}
.y19a{bottom:558.958500px;}
.y60{bottom:562.098000px;}
.yc8{bottom:562.422000px;}
.ya5{bottom:569.818500px;}
.y15e{bottom:570.259500px;}
.yc5{bottom:572.673000px;}
.y11a{bottom:573.919500px;}
.yf0{bottom:576.336000px;}
.y1bf{bottom:576.537000px;}
.y199{bottom:576.891000px;}
.y28{bottom:579.826500px;}
.y5f{bottom:580.030500px;}
.y8{bottom:581.746500px;}
.yc7{bottom:582.783000px;}
.y13c{bottom:582.969000px;}
.yef{bottom:586.585500px;}
.y82{bottom:586.887000px;}
.y13b{bottom:593.220000px;}
.y1be{bottom:594.469500px;}
.y15d{bottom:594.564000px;}
.y27{bottom:597.759000px;}
.y198{bottom:600.897000px;}
.ya4{bottom:602.694000px;}
.y117{bottom:603.040500px;}
.y15c{bottom:604.815000px;}
.y3a{bottom:608.248500px;}
.y119{bottom:610.764000px;}
.y5c{bottom:611.635500px;}
.yc4{bottom:615.645000px;}
.y7f{bottom:615.904500px;}
.y1bd{bottom:618.381000px;}
.y197{bottom:618.829500px;}
.y5e{bottom:619.359000px;}
.y58{bottom:620.643000px;}
.y116{bottom:621.015000px;}
.y81{bottom:623.628000px;}
.y7{bottom:624.043500px;}
.y39{bottom:626.182500px;}
.y57{bottom:629.608500px;}
.y118{bottom:631.125000px;}
.yee{bottom:632.082000px;}
.ya3{bottom:632.583000px;}
.y59{bottom:632.748000px;}
.yc3{bottom:633.577500px;}
.y80{bottom:633.877500px;}
.y196{bottom:634.168500px;}
.y195{bottom:634.837500px;}
.y1bc{bottom:636.313500px;}
.y13a{bottom:637.870500px;}
.y15b{bottom:638.865000px;}
.y194{bottom:639.321000px;}
.y5d{bottom:639.718500px;}
.y5b{bottom:643.806000px;}
.y15a{bottom:644.017500px;}
.yed{bottom:644.860500px;}
.y7e{bottom:648.075000px;}
.y5a{bottom:648.289500px;}
.yec{bottom:650.014500px;}
.y139{bottom:654.217500px;}
.y1bb{bottom:654.246000px;}
.y6{bottom:655.398000px;}
.ya2{bottom:657.316500px;}
.ya1{bottom:657.987000px;}
.y138{bottom:659.371500px;}
.y26{bottom:661.947000px;}
.ya0{bottom:662.470500px;}
.y115{bottom:663.175500px;}
.y190{bottom:663.319500px;}
.yc2{bottom:666.454500px;}
.yeb{bottom:667.947000px;}
.y193{bottom:671.043000px;}
.y159{bottom:674.547000px;}
.y114{bottom:675.955500px;}
.y7d{bottom:676.018500px;}
.y113{bottom:676.624500px;}
.y1ba{bottom:678.156000px;}
.y25{bottom:679.881000px;}
.y56{bottom:680.103000px;}
.yea{bottom:680.727000px;}
.y112{bottom:681.108000px;}
.y18f{bottom:681.292500px;}
.y158{bottom:684.798000px;}
.ye9{bottom:685.879500px;}
.y192{bottom:687.708000px;}
.y191{bottom:691.402500px;}
.y38{bottom:692.916000px;}
.y9f{bottom:695.643000px;}
.y1b9{bottom:696.088500px;}
.y24{bottom:697.813500px;}
.y55{bottom:698.035500px;}
.yc1{bottom:699.331500px;}
.y5{bottom:699.676500px;}
.ye8{bottom:700.153500px;}
.y137{bottom:701.242500px;}
.ye7{bottom:705.307500px;}
.y7c{bottom:705.906000px;}
.y111{bottom:707.521500px;}
.y37{bottom:710.848500px;}
.y136{bottom:711.493500px;}
.y1b8{bottom:714.022500px;}
.y23{bottom:715.746000px;}
.y18e{bottom:716.082000px;}
.y157{bottom:720.129000px;}
.y7b{bottom:723.840000px;}
.y110{bottom:725.454000px;}
.y9e{bottom:725.532000px;}
.y54{bottom:727.671000px;}
.ybe{bottom:729.954000px;}
.y1b7{bottom:731.955000px;}
.y22{bottom:733.678500px;}
.y18d{bottom:734.014500px;}
.y7a{bottom:736.618500px;}
.yc0{bottom:737.677500px;}
.ye6{bottom:738.394500px;}
.y79{bottom:741.772500px;}
.y10f{bottom:743.386500px;}
.y53{bottom:745.603500px;}
.y156{bottom:747.340500px;}
.ybd{bottom:747.928500px;}
.ye5{bottom:748.645500px;}
.y21{bottom:751.611000px;}
.y1b6{bottom:755.865000px;}
.y135{bottom:756.808500px;}
.y155{bottom:757.590000px;}
.y18c{bottom:758.020500px;}
.ybf{bottom:758.038500px;}
.y9d{bottom:758.407500px;}
.y10e{bottom:761.319000px;}
.y52{bottom:763.536000px;}
.y78{bottom:768.619500px;}
.y77{bottom:773.773500px;}
.y1b5{bottom:773.797500px;}
.y134{bottom:774.741000px;}
.y18b{bottom:775.953000px;}
.y36{bottom:779.575500px;}
.y51{bottom:781.468500px;}
.ye4{bottom:789.657000px;}
.y10d{bottom:790.558500px;}
.ybc{bottom:790.899000px;}
.y9c{bottom:791.284500px;}
.y1b4{bottom:791.730000px;}
.y18a{bottom:793.885500px;}
.y154{bottom:795.826500px;}
.y35{bottom:797.508000px;}
.y131{bottom:805.182000px;}
.y10c{bottom:808.491000px;}
.y50{bottom:809.050500px;}
.y9b{bottom:809.217000px;}
.y189{bottom:811.819500px;}
.y4{bottom:811.825500px;}
.y133{bottom:812.905500px;}
.y76{bottom:815.491500px;}
.y1b3{bottom:815.641500px;}
.ye2{bottom:818.674500px;}
.y20{bottom:818.704500px;}
.y153{bottom:823.036500px;}
.y130{bottom:823.156500px;}
.ybb{bottom:823.776000px;}
.ye1{bottom:826.398000px;}
.y188{bottom:829.752000px;}
.y132{bottom:833.266500px;}
.y152{bottom:833.287500px;}
.y1b2{bottom:833.574000px;}
.y9a{bottom:833.952000px;}
.y99{bottom:834.622500px;}
.ye0{bottom:836.647500px;}
.ye3{bottom:836.649000px;}
.y98{bottom:839.106000px;}
.y10b{bottom:840.718500px;}
.y75{bottom:845.380500px;}
.y3{bottom:846.886500px;}
.y4f{bottom:847.834500px;}
.yba{bottom:856.653000px;}
.y1b1{bottom:857.484000px;}
.y187{bottom:858.169500px;}
.y10a{bottom:858.652500px;}
.y34{bottom:863.328000px;}
.y4e{bottom:865.767000px;}
.y12f{bottom:865.947000px;}
.y97{bottom:872.278500px;}
.y151{bottom:873.718500px;}
.yb9{bottom:874.585500px;}
.y74{bottom:875.268000px;}
.y1b0{bottom:875.416500px;}
.y186{bottom:876.102000px;}
.y109{bottom:876.585000px;}
.ydf{bottom:878.788500px;}
.y33{bottom:881.262000px;}
.y4d{bottom:883.701000px;}
.y1f{bottom:885.799500px;}
.y2{bottom:890.218500px;}
.y150{bottom:891.651000px;}
.y1af{bottom:893.349000px;}
.y185{bottom:894.034500px;}
.y12e{bottom:897.838500px;}
.y32{bottom:899.194500px;}
.y4c{bottom:901.633500px;}
.y96{bottom:902.167500px;}
.y1e{bottom:903.732000px;}
.yb8{bottom:904.473000px;}
.y73{bottom:905.155500px;}
.ydd{bottom:907.806000px;}
.y12d{bottom:908.089500px;}
.y106{bottom:911.521500px;}
.y184{bottom:911.967000px;}
.y14f{bottom:914.767500px;}
.ydc{bottom:915.529500px;}
.y1ae{bottom:917.259000px;}
.y108{bottom:919.245000px;}
.yb7{bottom:922.405500px;}
.y1{bottom:923.095500px;}
.y14e{bottom:925.018500px;}
.ydb{bottom:925.779000px;}
.yde{bottom:925.780500px;}
.y4b{bottom:929.215500px;}
.y105{bottom:929.496000px;}
.y183{bottom:929.899500px;}
.y95{bottom:935.043000px;}
.y1ad{bottom:935.193000px;}
.y72{bottom:938.032500px;}
.y107{bottom:939.606000px;}
.yb6{bottom:940.338000px;}
.y12c{bottom:944.835000px;}
.y182{bottom:947.833500px;}
.y12b{bottom:949.987500px;}
.y4a{bottom:950.136000px;}
.y1ac{bottom:953.125500px;}
.y71{bottom:955.965000px;}
.yb5{bottom:958.272000px;}
.y180{bottom:967.912500px;}
.y1d{bottom:967.920000px;}
.y181{bottom:969.522000px;}
.y17f{bottom:980.310000px;}
.y1c{bottom:985.852500px;}
.h18{height:2.988780px;}
.hf{height:6.354624px;}
.h4c{height:19.905275px;}
.hd{height:23.850624px;}
.ha{height:24.871000px;}
.h8{height:26.899200px;}
.h19{height:29.499174px;}
.h1a{height:31.382100px;}
.h1d{height:32.273700px;}
.h5{height:37.712678px;}
.h6{height:37.981670px;}
.h54{height:41.544042px;}
.h47{height:42.201574px;}
.h1b{height:44.831700px;}
.h11{height:44.891476px;}
.h4{height:44.951251px;}
.h10{height:46.704624px;}
.h16{height:46.907700px;}
.h9{height:47.725000px;}
.h29{height:47.820780px;}
.h2{height:49.853184px;}
.h15{height:50.283571px;}
.hc{height:50.443000px;}
.h7{height:51.108000px;}
.h31{height:51.189174px;}
.h41{height:51.195174px;}
.h4e{height:53.037174px;}
.h21{height:53.072100px;}
.h37{height:53.078100px;}
.h2b{height:54.177174px;}
.h28{height:54.183174px;}
.h39{height:54.914100px;}
.h2c{height:54.920100px;}
.h50{height:56.805275px;}
.he{height:58.606800px;}
.h20{height:59.553174px;}
.h40{height:59.772780px;}
.h30{height:59.778780px;}
.h12{height:60.340117px;}
.h1e{height:61.436100px;}
.h13{height:62.674787px;}
.h48{height:62.680787px;}
.h33{height:65.501476px;}
.h14{height:65.507476px;}
.h2f{height:65.561251px;}
.h2a{height:65.567251px;}
.h25{height:67.523700px;}
.h52{height:68.430780px;}
.h43{height:68.436780px;}
.h1f{height:69.123174px;}
.h45{height:69.336780px;}
.h49{height:71.805174px;}
.h3b{height:72.024780px;}
.h1{height:72.614557px;}
.h24{height:72.848100px;}
.h42{height:72.854100px;}
.h3a{height:75.530100px;}
.h3c{height:75.536100px;}
.hb{height:76.834800px;}
.h4d{height:79.400100px;}
.h4b{height:82.641574px;}
.h38{height:83.199574px;}
.h35{height:83.205574px;}
.h26{height:85.265700px;}
.h2d{height:85.271700px;}
.h32{height:85.835700px;}
.h44{height:85.895476px;}
.h2e{height:85.955251px;}
.h3{height:87.323242px;}
.h46{height:89.952780px;}
.h27{height:91.629174px;}
.h22{height:91.635174px;}
.h4a{height:95.187174px;}
.h36{height:100.782780px;}
.h3f{height:105.204780px;}
.h3d{height:105.210780px;}
.h51{height:126.269700px;}
.h4f{height:126.275700px;}
.h23{height:128.274780px;}
.h53{height:128.280780px;}
.h34{height:132.633174px;}
.h3e{height:146.208780px;}
.h17{height:159.000780px;}
.h1c{height:164.136780px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2a{left:200.652000px;}
.x3b{left:203.008500px;}
.x39{left:204.502500px;}
.x3a{left:206.685000px;}
.x1{left:209.365500px;}
.x75{left:214.380000px;}
.x4a{left:218.322000px;}
.x93{left:221.850000px;}
.x2b{left:223.063500px;}
.x4c{left:225.738000px;}
.xb{left:238.012500px;}
.x25{left:240.013500px;}
.x16{left:242.785500px;}
.x1f{left:244.122000px;}
.x18{left:245.508000px;}
.x2e{left:246.594000px;}
.x86{left:247.714500px;}
.x1c{left:252.886500px;}
.x4b{left:255.946500px;}
.x13{left:256.999500px;}
.xa{left:258.742500px;}
.x42{left:266.950500px;}
.x17{left:270.558000px;}
.x3e{left:274.746000px;}
.x1a{left:280.567500px;}
.x19{left:283.497000px;}
.x20{left:286.362000px;}
.x6b{left:288.192000px;}
.x6{left:293.436000px;}
.x23{left:295.773000px;}
.x49{left:298.755000px;}
.x12{left:301.201500px;}
.x2d{left:305.235000px;}
.x2f{left:306.543000px;}
.x83{left:308.680500px;}
.x8b{left:309.840000px;}
.x71{left:314.962500px;}
.x48{left:319.522500px;}
.x41{left:321.036000px;}
.x47{left:323.484000px;}
.x66{left:326.137500px;}
.x78{left:330.012000px;}
.x70{left:332.979000px;}
.x87{left:334.557000px;}
.x30{left:339.186000px;}
.x5f{left:341.281500px;}
.x6c{left:344.790000px;}
.x8c{left:345.858000px;}
.x7{left:347.902500px;}
.x38{left:349.459500px;}
.x7b{left:353.686500px;}
.x37{left:355.879500px;}
.x3f{left:358.414500px;}
.x55{left:359.722500px;}
.x8{left:361.903500px;}
.x79{left:364.722000px;}
.x5c{left:367.506000px;}
.xc{left:369.462000px;}
.x6d{left:371.287500px;}
.x3{left:372.348000px;}
.x76{left:376.579500px;}
.x5a{left:380.488500px;}
.x3c{left:381.748500px;}
.x53{left:382.867500px;}
.x32{left:386.043000px;}
.x4d{left:387.937500px;}
.x4{left:390.291000px;}
.x31{left:393.142500px;}
.x6f{left:398.808000px;}
.x2{left:400.012500px;}
.x61{left:401.206500px;}
.x5b{left:402.388500px;}
.x27{left:403.666500px;}
.x51{left:406.483500px;}
.x52{left:408.159000px;}
.x6a{left:409.908000px;}
.x43{left:411.156000px;}
.x33{left:412.377000px;}
.x5{left:414.783000px;}
.x10{left:416.851500px;}
.x81{left:425.352000px;}
.x63{left:426.499500px;}
.x9{left:428.002500px;}
.x2c{left:430.554000px;}
.x44{left:433.369500px;}
.x1d{left:436.191000px;}
.x11{left:439.555500px;}
.x56{left:443.391000px;}
.x54{left:444.636000px;}
.x7f{left:445.998000px;}
.x4e{left:447.631500px;}
.x7a{left:451.806000px;}
.xd{left:453.006000px;}
.x14{left:454.701000px;}
.xf{left:456.972000px;}
.x67{left:458.866500px;}
.xe{left:464.440500px;}
.x62{left:466.435500px;}
.x34{left:471.060000px;}
.x4f{left:474.129000px;}
.x50{left:475.875000px;}
.x57{left:479.257500px;}
.x1e{left:481.381500px;}
.x24{left:485.565000px;}
.x64{left:489.562500px;}
.x45{left:494.073000px;}
.x69{left:499.117500px;}
.x21{left:501.409500px;}
.x58{left:503.961000px;}
.x22{left:505.435500px;}
.x7e{left:510.984000px;}
.x40{left:514.279500px;}
.x29{left:515.728500px;}
.x72{left:518.607000px;}
.x68{left:524.095500px;}
.x80{left:526.599000px;}
.x5d{left:528.021000px;}
.x36{left:532.966500px;}
.x6e{left:534.909000px;}
.x59{left:537.372000px;}
.x73{left:545.104500px;}
.x8f{left:547.888500px;}
.x65{left:549.126000px;}
.x77{left:553.864500px;}
.x74{left:557.526000px;}
.x7c{left:559.035000px;}
.x7d{left:561.424500px;}
.x60{left:563.566500px;}
.x82{left:565.581000px;}
.x90{left:570.532500px;}
.x84{left:579.552000px;}
.x15{left:580.684500px;}
.x35{left:583.339500px;}
.x5e{left:589.789500px;}
.x8d{left:591.784500px;}
.x28{left:594.289500px;}
.x91{left:605.122500px;}
.x26{left:624.817500px;}
.x1b{left:632.835000px;}
.x8e{left:635.964000px;}
.x88{left:644.065500px;}
.x92{left:649.302000px;}
.x85{left:656.157000px;}
.x3d{left:663.868500px;}
.x46{left:664.968000px;}
.x89{left:680.085000px;}
.x8a{left:704.596500px;}
@media print{
.v23{vertical-align:-58.976000pt;}
.v24{vertical-align:-52.837333pt;}
.v8{vertical-align:-50.480000pt;}
.v20{vertical-align:-43.040000pt;}
.v9{vertical-align:-35.866667pt;}
.vc{vertical-align:-15.941333pt;}
.v12{vertical-align:-11.162667pt;}
.vd{vertical-align:-7.973333pt;}
.v1{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.658667pt;}
.v14{vertical-align:7.968000pt;}
.v25{vertical-align:10.624000pt;}
.v7{vertical-align:16.229333pt;}
.vf{vertical-align:18.325333pt;}
.v15{vertical-align:19.280000pt;}
.v3{vertical-align:20.314667pt;}
.v6{vertical-align:22.730667pt;}
.v13{vertical-align:26.714667pt;}
.v4{vertical-align:32.432000pt;}
.v5{vertical-align:35.866667pt;}
.ve{vertical-align:36.954667pt;}
.vb{vertical-align:39.850667pt;}
.v1e{vertical-align:43.040000pt;}
.v2{vertical-align:45.429333pt;}
.v1a{vertical-align:50.474667pt;}
.v16{vertical-align:55.232000pt;}
.v17{vertical-align:58.384000pt;}
.v1f{vertical-align:61.365333pt;}
.v1b{vertical-align:72.394667pt;}
.v18{vertical-align:74.922667pt;}
.v22{vertical-align:77.301333pt;}
.v1d{vertical-align:86.928000pt;}
.v1c{vertical-align:91.674667pt;}
.v11{vertical-align:106.800000pt;}
.v19{vertical-align:111.365333pt;}
.v21{vertical-align:127.306667pt;}
.v10{vertical-align:138.677333pt;}
.ls17{letter-spacing:0.000000pt;}
.ls97{letter-spacing:0.000055pt;}
.lsd8{letter-spacing:0.000201pt;}
.lsfb{letter-spacing:0.000483pt;}
.ls5d{letter-spacing:0.000528pt;}
.ls110{letter-spacing:0.000605pt;}
.lsb9{letter-spacing:0.000749pt;}
.ls29{letter-spacing:0.000996pt;}
.ls101{letter-spacing:0.001069pt;}
.lscd{letter-spacing:0.001504pt;}
.ls44{letter-spacing:0.001602pt;}
.ls4a{letter-spacing:0.001659pt;}
.ls81{letter-spacing:0.001668pt;}
.lse3{letter-spacing:0.001715pt;}
.lsa{letter-spacing:0.001881pt;}
.ls1e{letter-spacing:0.001986pt;}
.ls2b{letter-spacing:0.001995pt;}
.ls71{letter-spacing:0.002079pt;}
.ls72{letter-spacing:0.002205pt;}
.ls11{letter-spacing:0.002485pt;}
.ls5e{letter-spacing:0.002557pt;}
.ls7b{letter-spacing:0.002827pt;}
.ls0{letter-spacing:0.003096pt;}
.ls11d{letter-spacing:0.004014pt;}
.lsf4{letter-spacing:0.005231pt;}
.lsd6{letter-spacing:0.005388pt;}
.lsbd{letter-spacing:0.006082pt;}
.ls59{letter-spacing:0.006391pt;}
.ls125{letter-spacing:0.007969pt;}
.ls5c{letter-spacing:0.009086pt;}
.ls64{letter-spacing:0.012019pt;}
.ls80{letter-spacing:0.014965pt;}
.ls13b{letter-spacing:0.015222pt;}
.ls53{letter-spacing:0.015599pt;}
.ls2d{letter-spacing:0.015919pt;}
.lse8{letter-spacing:0.016262pt;}
.ls58{letter-spacing:0.016367pt;}
.ls119{letter-spacing:0.017355pt;}
.lsde{letter-spacing:0.018692pt;}
.ls55{letter-spacing:0.019473pt;}
.lsea{letter-spacing:0.019788pt;}
.ls135{letter-spacing:0.020857pt;}
.lsf7{letter-spacing:0.021688pt;}
.lsa2{letter-spacing:0.021891pt;}
.ls7e{letter-spacing:0.022354pt;}
.lsc9{letter-spacing:0.023026pt;}
.ls5a{letter-spacing:0.023446pt;}
.lsb7{letter-spacing:0.023895pt;}
.ls90{letter-spacing:0.024075pt;}
.lse9{letter-spacing:0.024154pt;}
.ls10c{letter-spacing:0.025250pt;}
.ls143{letter-spacing:0.029409pt;}
.ls13f{letter-spacing:0.053134pt;}
.ls2{letter-spacing:0.669491pt;}
.ls18{letter-spacing:0.892646pt;}
.ls4{letter-spacing:1.386803pt;}
.ls57{letter-spacing:1.434614pt;}
.ls3e{letter-spacing:1.487748pt;}
.ls66{letter-spacing:1.647150pt;}
.ls70{letter-spacing:1.700284pt;}
.lsc{letter-spacing:1.721549pt;}
.ls3f{letter-spacing:1.912819pt;}
.ls45{letter-spacing:2.652911pt;}
.ls65{letter-spacing:2.655879pt;}
.ls1{letter-spacing:2.656220pt;}
.ls83{letter-spacing:2.656546pt;}
.ls52{letter-spacing:2.658245pt;}
.ls19{letter-spacing:2.664162pt;}
.ls21{letter-spacing:2.922363pt;}
.lsc6{letter-spacing:2.964024pt;}
.ls1c{letter-spacing:2.975497pt;}
.ls2a{letter-spacing:3.550993pt;}
.ls2e{letter-spacing:3.556327pt;}
.ls3{letter-spacing:3.806205pt;}
.lscb{letter-spacing:4.315150pt;}
.ls12b{letter-spacing:4.938787pt;}
.ls8b{letter-spacing:4.944121pt;}
.lsfe{letter-spacing:5.685324pt;}
.ls3d{letter-spacing:5.738458pt;}
.ls42{letter-spacing:5.791591pt;}
.ls116{letter-spacing:6.352035pt;}
.ls140{letter-spacing:6.352514pt;}
.ls105{letter-spacing:6.357450pt;}
.ls62{letter-spacing:6.359286pt;}
.ls1d{letter-spacing:6.364767pt;}
.lsf1{letter-spacing:6.370245pt;}
.ls100{letter-spacing:6.375121pt;}
.lsba{letter-spacing:6.375319pt;}
.ls7c{letter-spacing:6.375329pt;}
.ls8f{letter-spacing:6.375578pt;}
.lsda{letter-spacing:6.376161pt;}
.lsc5{letter-spacing:6.376584pt;}
.ls6b{letter-spacing:6.380662pt;}
.ls78{letter-spacing:6.384253pt;}
.lsa8{letter-spacing:6.385211pt;}
.ls111{letter-spacing:6.388880pt;}
.lsae{letter-spacing:6.403948pt;}
.ls11f{letter-spacing:6.694867pt;}
.ls6a{letter-spacing:8.280161pt;}
.ls35{letter-spacing:8.820222pt;}
.ls104{letter-spacing:8.851251pt;}
.lsc7{letter-spacing:8.856584pt;}
.ls27{letter-spacing:8.873356pt;}
.ls11e{letter-spacing:9.344546pt;}
.ls7a{letter-spacing:9.882899pt;}
.ls76{letter-spacing:9.912161pt;}
.ls73{letter-spacing:9.936033pt;}
.ls69{letter-spacing:10.328290pt;}
.lsd9{letter-spacing:10.332814pt;}
.lsff{letter-spacing:10.334275pt;}
.lsfa{letter-spacing:10.342222pt;}
.ls136{letter-spacing:10.398849pt;}
.lsd{letter-spacing:10.849794pt;}
.lsa1{letter-spacing:11.511319pt;}
.ls85{letter-spacing:11.512391pt;}
.ls68{letter-spacing:11.516653pt;}
.ls1b{letter-spacing:11.795718pt;}
.lsc4{letter-spacing:11.798302pt;}
.lsb2{letter-spacing:11.805494pt;}
.lsb4{letter-spacing:11.810827pt;}
.ls50{letter-spacing:11.848852pt;}
.ls63{letter-spacing:12.288603pt;}
.ls120{letter-spacing:12.486459pt;}
.lsa9{letter-spacing:12.554970pt;}
.lsa0{letter-spacing:12.560304pt;}
.lsaf{letter-spacing:12.608104pt;}
.ls121{letter-spacing:13.052067pt;}
.ls123{letter-spacing:13.076880pt;}
.ls61{letter-spacing:13.177199pt;}
.ls77{letter-spacing:13.465660pt;}
.ls13{letter-spacing:13.628928pt;}
.ls14{letter-spacing:13.632131pt;}
.lsf{letter-spacing:13.643634pt;}
.ls15{letter-spacing:13.648495pt;}
.ls10{letter-spacing:13.653828pt;}
.ls6{letter-spacing:13.676749pt;}
.lsc3{letter-spacing:13.761671pt;}
.lsc2{letter-spacing:13.766082pt;}
.lsa4{letter-spacing:13.867939pt;}
.ls103{letter-spacing:14.023121pt;}
.ls82{letter-spacing:14.167845pt;}
.ls10d{letter-spacing:14.173178pt;}
.ls7f{letter-spacing:14.459213pt;}
.ls56{letter-spacing:14.460911pt;}
.lsf9{letter-spacing:14.464546pt;}
.ls5b{letter-spacing:14.466245pt;}
.ls30{letter-spacing:14.718081pt;}
.lsc8{letter-spacing:14.755251pt;}
.ls26{letter-spacing:14.755867pt;}
.ls6e{letter-spacing:14.757812pt;}
.ls4c{letter-spacing:14.759412pt;}
.ls9e{letter-spacing:14.759433pt;}
.ls2f{letter-spacing:14.771215pt;}
.ls9c{letter-spacing:14.779161pt;}
.ls34{letter-spacing:14.877483pt;}
.lse{letter-spacing:15.111373pt;}
.ls141{letter-spacing:15.143152pt;}
.ls142{letter-spacing:15.196286pt;}
.ls94{letter-spacing:15.205686pt;}
.lsb8{letter-spacing:15.228911pt;}
.lsb1{letter-spacing:15.230400pt;}
.ls75{letter-spacing:15.235733pt;}
.ls9{letter-spacing:15.297386pt;}
.ls33{letter-spacing:15.302554pt;}
.ls7{letter-spacing:15.302656pt;}
.ls5f{letter-spacing:15.358993pt;}
.ls1a{letter-spacing:15.364327pt;}
.ls14d{letter-spacing:15.461955pt;}
.ls14e{letter-spacing:15.515089pt;}
.lsed{letter-spacing:15.833892pt;}
.lsad{letter-spacing:15.872479pt;}
.ls9f{letter-spacing:15.877812pt;}
.lsee{letter-spacing:15.887026pt;}
.lsb6{letter-spacing:16.099562pt;}
.lsb5{letter-spacing:16.152695pt;}
.lsf5{letter-spacing:16.205829pt;}
.ls74{letter-spacing:16.287890pt;}
.ls12{letter-spacing:16.307992pt;}
.lsdd{letter-spacing:16.365231pt;}
.ls16{letter-spacing:16.402534pt;}
.ls9b{letter-spacing:16.418365pt;}
.ls4f{letter-spacing:16.471499pt;}
.ls14a{letter-spacing:16.524633pt;}
.lsfc{letter-spacing:16.613880pt;}
.ls60{letter-spacing:16.745660pt;}
.lsdb{letter-spacing:16.940662pt;}
.ls117{letter-spacing:17.122512pt;}
.ls4b{letter-spacing:17.410245pt;}
.lsd7{letter-spacing:17.413213pt;}
.lsce{letter-spacing:17.413880pt;}
.ls40{letter-spacing:17.415578pt;}
.lsa3{letter-spacing:17.417660pt;}
.ls9d{letter-spacing:17.418546pt;}
.ls86{letter-spacing:17.419213pt;}
.ls10a{letter-spacing:17.587310pt;}
.ls8c{letter-spacing:17.693578pt;}
.ls3c{letter-spacing:17.708745pt;}
.ls24{letter-spacing:17.713931pt;}
.ls102{letter-spacing:17.794512pt;}
.ls4d{letter-spacing:17.799845pt;}
.ls8{letter-spacing:17.957553pt;}
.ls150{letter-spacing:18.012381pt;}
.lsb3{letter-spacing:18.171635pt;}
.ls3a{letter-spacing:18.171782pt;}
.lsb0{letter-spacing:18.176968pt;}
.ls145{letter-spacing:18.179275pt;}
.ls12a{letter-spacing:18.181812pt;}
.ls91{letter-spacing:18.184609pt;}
.ls127{letter-spacing:18.196880pt;}
.ls10e{letter-spacing:18.205031pt;}
.ls10b{letter-spacing:18.210365pt;}
.ls6d{letter-spacing:18.318993pt;}
.ls14c{letter-spacing:18.331184pt;}
.ls108{letter-spacing:18.384318pt;}
.ls39{letter-spacing:18.391412pt;}
.ls109{letter-spacing:18.524911pt;}
.lsbb{letter-spacing:18.539416pt;}
.ls31{letter-spacing:18.543719pt;}
.ls147{letter-spacing:18.596853pt;}
.lsf6{letter-spacing:18.837880pt;}
.lsf8{letter-spacing:18.843213pt;}
.ls41{letter-spacing:18.968790pt;}
.ls4e{letter-spacing:19.021924pt;}
.ls36{letter-spacing:19.075058pt;}
.ls14b{letter-spacing:19.181326pt;}
.ls14f{letter-spacing:19.553263pt;}
.ls131{letter-spacing:19.701454pt;}
.ls12e{letter-spacing:19.706787pt;}
.ls25{letter-spacing:19.853176pt;}
.ls93{letter-spacing:19.925200pt;}
.ls149{letter-spacing:19.978334pt;}
.ls113{letter-spacing:20.071845pt;}
.ls49{letter-spacing:20.084602pt;}
.ls137{letter-spacing:20.244003pt;}
.lsdf{letter-spacing:20.350271pt;}
.lse4{letter-spacing:20.362546pt;}
.ls126{letter-spacing:20.364911pt;}
.lsef{letter-spacing:20.403405pt;}
.ls5{letter-spacing:20.491448pt;}
.lsf0{letter-spacing:20.509673pt;}
.lsa5{letter-spacing:20.775342pt;}
.ls3b{letter-spacing:20.881610pt;}
.lse6{letter-spacing:20.987877pt;}
.ls13e{letter-spacing:21.114702pt;}
.ls12f{letter-spacing:21.154946pt;}
.ls37{letter-spacing:21.200413pt;}
.lse7{letter-spacing:21.412948pt;}
.lsbc{letter-spacing:21.466082pt;}
.lseb{letter-spacing:21.616304pt;}
.lscc{letter-spacing:21.664104pt;}
.ls8e{letter-spacing:21.784885pt;}
.ls23{letter-spacing:21.944287pt;}
.lsbf{letter-spacing:22.050555pt;}
.lsbe{letter-spacing:22.059416pt;}
.ls32{letter-spacing:22.073660pt;}
.lsc0{letter-spacing:22.103689pt;}
.ls46{letter-spacing:22.369358pt;}
.ls107{letter-spacing:22.422492pt;}
.lse5{letter-spacing:22.635027pt;}
.lsec{letter-spacing:22.688161pt;}
.lse1{letter-spacing:23.104479pt;}
.ls48{letter-spacing:23.113232pt;}
.ls13c{letter-spacing:23.219500pt;}
.ls148{letter-spacing:23.770546pt;}
.lsd2{letter-spacing:23.959412pt;}
.lsd1{letter-spacing:23.961528pt;}
.lsd4{letter-spacing:23.963374pt;}
.lsd5{letter-spacing:23.980949pt;}
.lsd0{letter-spacing:24.069642pt;}
.ls88{letter-spacing:24.122775pt;}
.ls51{letter-spacing:24.441579pt;}
.ls13a{letter-spacing:24.600980pt;}
.ls139{letter-spacing:24.654114pt;}
.ls9a{letter-spacing:24.760382pt;}
.ls96{letter-spacing:25.223412pt;}
.ls95{letter-spacing:25.231889pt;}
.ls99{letter-spacing:25.238587pt;}
.ls7d{letter-spacing:25.344854pt;}
.ls6f{letter-spacing:25.381880pt;}
.lse0{letter-spacing:25.755213pt;}
.ls146{letter-spacing:25.929327pt;}
.lsab{letter-spacing:26.035595pt;}
.lsb{letter-spacing:26.380701pt;}
.ls22{letter-spacing:26.460666pt;}
.ls20{letter-spacing:26.566933pt;}
.ls133{letter-spacing:26.604911pt;}
.lsd3{letter-spacing:26.613213pt;}
.lscf{letter-spacing:26.715680pt;}
.ls2c{letter-spacing:27.220327pt;}
.lsa7{letter-spacing:27.317637pt;}
.ls67{letter-spacing:27.365438pt;}
.lsac{letter-spacing:27.370771pt;}
.ls8d{letter-spacing:27.576477pt;}
.lsaa{letter-spacing:27.682745pt;}
.ls38{letter-spacing:27.789012pt;}
.ls89{letter-spacing:27.842146pt;}
.ls98{letter-spacing:27.882546pt;}
.ls1f{letter-spacing:28.112603pt;}
.lsca{letter-spacing:28.214083pt;}
.ls11b{letter-spacing:28.373485pt;}
.lsc1{letter-spacing:28.428653pt;}
.ls87{letter-spacing:28.454347pt;}
.ls47{letter-spacing:28.479753pt;}
.ls54{letter-spacing:29.489296pt;}
.ls28{letter-spacing:29.595564pt;}
.lse2{letter-spacing:29.988327pt;}
.ls138{letter-spacing:30.016636pt;}
.ls122{letter-spacing:30.218793pt;}
.ls11c{letter-spacing:31.020911pt;}
.lsa6{letter-spacing:33.072603pt;}
.ls10f{letter-spacing:35.352609pt;}
.ls12d{letter-spacing:40.434245pt;}
.ls118{letter-spacing:41.442079pt;}
.ls130{letter-spacing:44.185067pt;}
.ls79{letter-spacing:45.498771pt;}
.lsf3{letter-spacing:48.776890pt;}
.ls106{letter-spacing:53.133867pt;}
.ls43{letter-spacing:54.302812pt;}
.ls12c{letter-spacing:56.229369pt;}
.ls13d{letter-spacing:56.926466pt;}
.ls132{letter-spacing:56.931799pt;}
.ls11a{letter-spacing:59.566200pt;}
.ls128{letter-spacing:60.026702pt;}
.ls124{letter-spacing:60.079836pt;}
.ls112{letter-spacing:61.954089pt;}
.lsfd{letter-spacing:61.976584pt;}
.ls114{letter-spacing:62.007222pt;}
.ls115{letter-spacing:62.539145pt;}
.ls6c{letter-spacing:63.154827pt;}
.lsdc{letter-spacing:63.160161pt;}
.ls129{letter-spacing:74.789369pt;}
.ls144{letter-spacing:75.143319pt;}
.ls134{letter-spacing:88.117812pt;}
.lsf2{letter-spacing:113.500653pt;}
.ls92{letter-spacing:114.684653pt;}
.ls8a{letter-spacing:280.918753pt;}
.ls84{letter-spacing:368.855302pt;}
.ws39{word-spacing:-43.484756pt;}
.wsbb{word-spacing:-42.802326pt;}
.ws1d{word-spacing:-42.066082pt;}
.ws58{word-spacing:-41.338148pt;}
.ws54{word-spacing:-38.415786pt;}
.ws52{word-spacing:-38.362652pt;}
.ws1e{word-spacing:-34.611401pt;}
.wsf{word-spacing:-32.063846pt;}
.ws63{word-spacing:-30.546660pt;}
.wsb7{word-spacing:-28.118362pt;}
.ws16{word-spacing:-27.151406pt;}
.ws4f{word-spacing:-26.815501pt;}
.ws4e{word-spacing:-26.794830pt;}
.ws85{word-spacing:-26.561620pt;}
.wsc9{word-spacing:-25.791179pt;}
.ws42{word-spacing:-25.738045pt;}
.wsba{word-spacing:-24.723188pt;}
.wsc7{word-spacing:-20.865610pt;}
.ws76{word-spacing:-19.893320pt;}
.ws53{word-spacing:-19.840186pt;}
.wsce{word-spacing:-19.468249pt;}
.ws91{word-spacing:-18.745854pt;}
.ws66{word-spacing:-18.730106pt;}
.wsbd{word-spacing:-18.724375pt;}
.wsd{word-spacing:-18.434918pt;}
.wsc2{word-spacing:-17.661697pt;}
.wsd6{word-spacing:-15.669177pt;}
.wsc5{word-spacing:-15.642610pt;}
.ws24{word-spacing:-15.616043pt;}
.ws87{word-spacing:-14.739335pt;}
.ws28{word-spacing:-14.500232pt;}
.wsb9{word-spacing:-14.447098pt;}
.ws23{word-spacing:-13.596956pt;}
.wsb4{word-spacing:-13.437555pt;}
.ws72{word-spacing:-13.331287pt;}
.wse9{word-spacing:-13.278153pt;}
.ws81{word-spacing:-13.118752pt;}
.ws82{word-spacing:-12.799948pt;}
.wsb8{word-spacing:-12.534279pt;}
.wsf2{word-spacing:-12.481145pt;}
.wsf4{word-spacing:-12.428011pt;}
.wsa9{word-spacing:-12.109208pt;}
.wse1{word-spacing:-11.949807pt;}
.ws6c{word-spacing:-11.790405pt;}
.wsf3{word-spacing:-11.476915pt;}
.wse7{word-spacing:-11.365334pt;}
.wscf{word-spacing:-11.099665pt;}
.ws3a{word-spacing:-11.051844pt;}
.ws73{word-spacing:-11.046531pt;}
.wsa7{word-spacing:-10.998710pt;}
.wsd8{word-spacing:-10.993397pt;}
.wsa4{word-spacing:-10.839309pt;}
.wsa5{word-spacing:-10.786175pt;}
.ws74{word-spacing:-10.679907pt;}
.wsca{word-spacing:-10.648027pt;}
.ws62{word-spacing:-10.568326pt;}
.wse8{word-spacing:-10.414238pt;}
.wse0{word-spacing:-10.408924pt;}
.ws25{word-spacing:-10.355791pt;}
.ws30{word-spacing:-10.302657pt;}
.ws5b{word-spacing:-10.207488pt;}
.ws2f{word-spacing:-10.196389pt;}
.ws2c{word-spacing:-10.143255pt;}
.wse3{word-spacing:-10.090121pt;}
.ws7e{word-spacing:-10.042301pt;}
.ws99{word-spacing:-9.983854pt;}
.ws6d{word-spacing:-9.930720pt;}
.ws9e{word-spacing:-9.882899pt;}
.ws8c{word-spacing:-9.824452pt;}
.wsd1{word-spacing:-9.718184pt;}
.wsbc{word-spacing:-9.665050pt;}
.wsd2{word-spacing:-9.611916pt;}
.wsbe{word-spacing:-9.558783pt;}
.wsbf{word-spacing:-9.505649pt;}
.wsb3{word-spacing:-9.452515pt;}
.ws6e{word-spacing:-9.404694pt;}
.wsaa{word-spacing:-9.399381pt;}
.ws61{word-spacing:-9.239979pt;}
.wsb5{word-spacing:-9.186846pt;}
.wsd3{word-spacing:-9.133712pt;}
.ws26{word-spacing:-8.974310pt;}
.ws31{word-spacing:-8.921176pt;}
.ws18{word-spacing:-8.868042pt;}
.ws1c{word-spacing:-8.846950pt;}
.ws77{word-spacing:-8.814908pt;}
.wsd9{word-spacing:-8.767088pt;}
.ws43{word-spacing:-8.660820pt;}
.ws45{word-spacing:-8.607686pt;}
.wscd{word-spacing:-8.602373pt;}
.wsf1{word-spacing:-8.549239pt;}
.ws17{word-spacing:-8.395151pt;}
.wsea{word-spacing:-8.342017pt;}
.wseb{word-spacing:-8.336704pt;}
.ws15{word-spacing:-8.288883pt;}
.ws7a{word-spacing:-8.283570pt;}
.ws32{word-spacing:-8.235749pt;}
.ws13{word-spacing:-8.182615pt;}
.wsa8{word-spacing:-8.177302pt;}
.ws6{word-spacing:-8.129482pt;}
.ws48{word-spacing:-8.076348pt;}
.ws93{word-spacing:-8.017900pt;}
.wsb6{word-spacing:-7.964767pt;}
.ws4b{word-spacing:-7.858499pt;}
.wse5{word-spacing:-7.598143pt;}
.wsee{word-spacing:-7.592830pt;}
.ws8d{word-spacing:-7.539696pt;}
.wse6{word-spacing:-7.226206pt;}
.wsb0{word-spacing:-7.220892pt;}
.ws9a{word-spacing:-7.061491pt;}
.wsed{word-spacing:-7.008357pt;}
.wsef{word-spacing:-6.960537pt;}
.ws4c{word-spacing:-6.795822pt;}
.ws7b{word-spacing:-6.641733pt;}
.ws6a{word-spacing:-6.583286pt;}
.ws55{word-spacing:-6.530152pt;}
.wsec{word-spacing:-6.482332pt;}
.wsb2{word-spacing:-6.423884pt;}
.ws2e{word-spacing:-6.370751pt;}
.ws2b{word-spacing:-6.317617pt;}
.ws4d{word-spacing:-6.269796pt;}
.ws5c{word-spacing:-6.264483pt;}
.ws9b{word-spacing:-6.158215pt;}
.wsdc{word-spacing:-6.057261pt;}
.ws8e{word-spacing:-5.945680pt;}
.ws98{word-spacing:-5.892546pt;}
.ws86{word-spacing:-5.786278pt;}
.ws9c{word-spacing:-5.632190pt;}
.ws56{word-spacing:-5.626876pt;}
.wsd5{word-spacing:-5.467475pt;}
.ws2d{word-spacing:-5.308073pt;}
.ws57{word-spacing:-5.207119pt;}
.wsae{word-spacing:-5.148672pt;}
.ws80{word-spacing:-4.829868pt;}
.wsf0{word-spacing:-4.782048pt;}
.wsd4{word-spacing:-4.776735pt;}
.wse4{word-spacing:-4.728914pt;}
.ws29{word-spacing:-4.617333pt;}
.ws95{word-spacing:-4.511065pt;}
.ws96{word-spacing:-4.457931pt;}
.ws3d{word-spacing:-4.351664pt;}
.ws2a{word-spacing:-4.032860pt;}
.wsde{word-spacing:-3.979727pt;}
.wsb1{word-spacing:-3.926593pt;}
.wsad{word-spacing:-3.873459pt;}
.wsab{word-spacing:-3.820325pt;}
.ws3e{word-spacing:-3.767191pt;}
.ws41{word-spacing:-3.506835pt;}
.wsdd{word-spacing:-3.501522pt;}
.ws3f{word-spacing:-3.484136pt;}
.wsdf{word-spacing:-3.448388pt;}
.ws6b{word-spacing:-3.395254pt;}
.wscb{word-spacing:-3.342120pt;}
.wsaf{word-spacing:-3.288986pt;}
.wsa2{word-spacing:-3.188032pt;}
.wsa0{word-spacing:-3.081764pt;}
.ws83{word-spacing:-2.970183pt;}
.wsc8{word-spacing:-2.917049pt;}
.wsc1{word-spacing:-2.810782pt;}
.ws3b{word-spacing:-2.704514pt;}
.ws3c{word-spacing:-2.491978pt;}
.wsc4{word-spacing:-2.470081pt;}
.ws84{word-spacing:-2.391024pt;}
.wsd7{word-spacing:-2.332577pt;}
.wsd0{word-spacing:-2.226309pt;}
.ws8b{word-spacing:-2.120041pt;}
.ws89{word-spacing:-2.066907pt;}
.wscc{word-spacing:-1.960640pt;}
.ws4a{word-spacing:-1.907506pt;}
.wse2{word-spacing:-1.806551pt;}
.ws67{word-spacing:-1.721537pt;}
.ws5d{word-spacing:-1.588703pt;}
.ws69{word-spacing:-1.057364pt;}
.wsc3{word-spacing:-0.685427pt;}
.ws20{word-spacing:-0.632293pt;}
.ws60{word-spacing:-0.584473pt;}
.ws7f{word-spacing:-0.260356pt;}
.ws1{word-spacing:-0.091815pt;}
.ws19{word-spacing:-0.076513pt;}
.ws3{word-spacing:-0.063761pt;}
.ws33{word-spacing:-0.053134pt;}
.ws11{word-spacing:-0.047821pt;}
.ws14{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.005313pt;}
.ws88{word-spacing:0.596962pt;}
.ws1f{word-spacing:4.627960pt;}
.wsc6{word-spacing:7.773462pt;}
.ws38{word-spacing:8.767088pt;}
.ws94{word-spacing:8.794676pt;}
.ws90{word-spacing:8.795768pt;}
.ws92{word-spacing:8.801102pt;}
.ws35{word-spacing:8.817104pt;}
.ws8f{word-spacing:8.820222pt;}
.ws5e{word-spacing:9.510962pt;}
.ws68{word-spacing:9.518935pt;}
.ws64{word-spacing:9.540411pt;}
.ws36{word-spacing:9.564096pt;}
.ws46{word-spacing:11.473104pt;}
.ws40{word-spacing:11.476611pt;}
.ws47{word-spacing:11.481944pt;}
.ws65{word-spacing:11.742585pt;}
.wsc{word-spacing:13.581107pt;}
.ws50{word-spacing:14.664947pt;}
.ws70{word-spacing:14.683598pt;}
.ws79{word-spacing:14.688931pt;}
.ws9f{word-spacing:14.711396pt;}
.ws37{word-spacing:14.718081pt;}
.ws12{word-spacing:15.063552pt;}
.ws10{word-spacing:15.254835pt;}
.ws9{word-spacing:15.446118pt;}
.ws7{word-spacing:16.067789pt;}
.wsb{word-spacing:16.306893pt;}
.wsa{word-spacing:16.354714pt;}
.ws75{word-spacing:16.418365pt;}
.wse{word-spacing:17.311130pt;}
.ws97{word-spacing:17.640444pt;}
.ws6f{word-spacing:17.693578pt;}
.ws71{word-spacing:17.848611pt;}
.ws44{word-spacing:18.490586pt;}
.ws8{word-spacing:18.506650pt;}
.wsc0{word-spacing:18.522466pt;}
.ws1a{word-spacing:18.602167pt;}
.wsa6{word-spacing:18.649987pt;}
.wsa3{word-spacing:18.915657pt;}
.ws49{word-spacing:18.968790pt;}
.wsac{word-spacing:19.007278pt;}
.ws5f{word-spacing:20.392144pt;}
.ws7c{word-spacing:20.456539pt;}
.ws2{word-spacing:20.722347pt;}
.wsda{word-spacing:21.253547pt;}
.wsdb{word-spacing:24.388445pt;}
.ws8a{word-spacing:24.441579pt;}
.ws9d{word-spacing:24.866650pt;}
.ws59{word-spacing:26.513799pt;}
.wsa1{word-spacing:27.735878pt;}
.ws0{word-spacing:28.646426pt;}
.ws5a{word-spacing:29.489296pt;}
.ws34{word-spacing:33.314934pt;}
.ws27{word-spacing:33.665843pt;}
.ws4{word-spacing:43.969800pt;}
.ws5{word-spacing:44.080000pt;}
.ws51{word-spacing:54.249678pt;}
.ws7d{word-spacing:54.600361pt;}
.ws22{word-spacing:84.087860pt;}
.ws78{word-spacing:512.295489pt;}
.ws21{word-spacing:1454.651181pt;}
._12{margin-left:-26.566933pt;}
._1b{margin-left:-8.873356pt;}
._0{margin-left:-4.774404pt;}
._3{margin-left:-3.188053pt;}
._2{margin-left:-1.721549pt;}
._15{width:1.487748pt;}
._1{width:2.387202pt;}
._1e{width:3.294321pt;}
._5{width:4.187057pt;}
._28{width:6.482332pt;}
._7{width:7.707285pt;}
._1f{width:8.820222pt;}
._2a{width:9.880446pt;}
._17{width:13.230333pt;}
._1c{width:14.771215pt;}
._23{width:15.859184pt;}
._10{width:17.693578pt;}
._4{width:18.841395pt;}
._20{width:19.974676pt;}
._19{width:21.274812pt;}
._1d{width:22.932587pt;}
._8{width:23.931505pt;}
._6{width:24.866671pt;}
._d{width:26.566933pt;}
._27{width:27.831542pt;}
._22{width:28.790912pt;}
._c{width:29.918210pt;}
._1a{width:31.604047pt;}
._24{width:34.430767pt;}
._21{width:35.812226pt;}
._18{width:38.150116pt;}
._25{width:39.202190pt;}
._14{width:43.357257pt;}
._11{width:46.067062pt;}
._13{width:52.921331pt;}
._b{width:54.302812pt;}
._2f{width:56.109363pt;}
._f{width:60.785143pt;}
._2c{width:63.335569pt;}
._2d{width:65.514058pt;}
._2e{width:66.417333pt;}
._16{width:71.731200pt;}
._2b{width:81.266846pt;}
._e{width:84.323446pt;}
._29{width:94.336067pt;}
._26{width:316.883340pt;}
._9{width:1385.437526pt;}
._a{width:1508.247335pt;}
.fs8{font-size:26.566933pt;}
.fs5{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.fs2{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:119.153333pt;}
.y14c{bottom:154.945333pt;}
.y17d{bottom:155.682667pt;}
.y17e{bottom:157.113333pt;}
.y17c{bottom:157.590667pt;}
.y49{bottom:159.004000pt;}
.y14d{bottom:164.057333pt;}
.y17b{bottom:166.701333pt;}
.yd8{bottom:168.213333pt;}
.y94{bottom:168.216000pt;}
.y48{bottom:174.944000pt;}
.yda{bottom:175.078667pt;}
.y104{bottom:178.514667pt;}
.y93{bottom:184.156000pt;}
.yd9{bottom:184.190667pt;}
.y14b{bottom:186.252000pt;}
.yb4{bottom:187.829333pt;}
.y70{bottom:187.946667pt;}
.y47{bottom:190.884000pt;}
.y103{bottom:194.454667pt;}
.yd7{bottom:196.809333pt;}
.y31{bottom:197.144000pt;}
.y17a{bottom:197.369333pt;}
.yb3{bottom:199.189333pt;}
.y1a{bottom:199.325333pt;}
.y92{bottom:200.096000pt;}
.y1ab{bottom:200.204000pt;}
.yb2{bottom:203.769333pt;}
.y102{bottom:208.088000pt;}
.y101{bottom:208.684000pt;}
.y100{bottom:212.669333pt;}
.y30{bottom:213.084000pt;}
.y179{bottom:213.309333pt;}
.y12a{bottom:214.362667pt;}
.y19{bottom:215.265333pt;}
.y14a{bottom:215.314667pt;}
.y6f{bottom:216.890667pt;}
.y46{bottom:219.976000pt;}
.yd6{bottom:222.386667pt;}
.y91{bottom:224.613333pt;}
.y1aa{bottom:226.898667pt;}
.y129{bottom:230.302667pt;}
.yb1{bottom:230.336000pt;}
.y149{bottom:235.240000pt;}
.y177{bottom:238.237333pt;}
.y178{bottom:239.666667pt;}
.yfc{bottom:240.536000pt;}
.y90{bottom:240.553333pt;}
.y6e{bottom:245.833333pt;}
.y128{bottom:246.242667pt;}
.yff{bottom:247.401333pt;}
.yd3{bottom:248.993333pt;}
.y176{bottom:249.256000pt;}
.y1a9{bottom:249.586667pt;}
.y148{bottom:254.974667pt;}
.yd5{bottom:255.858667pt;}
.yfb{bottom:256.513333pt;}
.yb0{bottom:258.561333pt;}
.y6d{bottom:261.773333pt;}
.yfe{bottom:262.214667pt;}
.y45{bottom:263.862667pt;}
.y147{bottom:264.086667pt;}
.yd4{bottom:264.970667pt;}
.yfd{bottom:265.498667pt;}
.y1a8{bottom:265.528000pt;}
.y18{bottom:271.356000pt;}
.y124{bottom:272.125333pt;}
.y2f{bottom:272.724000pt;}
.y8f{bottom:275.077333pt;}
.yd2{bottom:277.590667pt;}
.y127{bottom:278.990667pt;}
.y175{bottom:282.505333pt;}
.yaf{bottom:285.129333pt;}
.y1a7{bottom:286.866667pt;}
.y123{bottom:288.102667pt;}
.y6c{bottom:288.116000pt;}
.y2e{bottom:288.664000pt;}
.y8e{bottom:291.017333pt;}
.y44{bottom:293.082667pt;}
.y126{bottom:293.805333pt;}
.yfa{bottom:293.970667pt;}
.y125{bottom:297.089333pt;}
.y17{bottom:297.468000pt;}
.y16{bottom:299.056000pt;}
.y14{bottom:299.460000pt;}
.y146{bottom:299.668000pt;}
.yd1{bottom:302.429333pt;}
.y1a6{bottom:302.806667pt;}
.y173{bottom:302.980000pt;}
.y13{bottom:303.113333pt;}
.y6b{bottom:304.056000pt;}
.y174{bottom:304.409333pt;}
.y15{bottom:308.010667pt;}
.y43{bottom:309.024000pt;}
.yf9{bottom:309.910667pt;}
.yae{bottom:312.212000pt;}
.y172{bottom:313.998667pt;}
.y145{bottom:315.608000pt;}
.y8d{bottom:317.621333pt;}
.yd0{bottom:318.369333pt;}
.y1a5{bottom:318.746667pt;}
.yad{bottom:321.324000pt;}
.y8c{bottom:324.486667pt;}
.y122{bottom:324.840000pt;}
.y42{bottom:324.964000pt;}
.yf{bottom:327.796000pt;}
.y6a{bottom:330.398667pt;}
.y8b{bottom:333.598667pt;}
.y12{bottom:333.790667pt;}
.y1a4{bottom:334.686667pt;}
.y41{bottom:336.322667pt;}
.yf8{bottom:336.478667pt;}
.y40{bottom:340.904000pt;}
.ye{bottom:341.898667pt;}
.y144{bottom:342.012000pt;}
.ycf{bottom:342.941333pt;}
.y69{bottom:346.340000pt;}
.y11{bottom:347.528000pt;}
.y170{bottom:347.986667pt;}
.y2d{bottom:348.302667pt;}
.y171{bottom:349.416000pt;}
.y10{bottom:349.630667pt;}
.y16f{bottom:349.893333pt;}
.y143{bottom:351.124000pt;}
.yce{bottom:352.053333pt;}
.y121{bottom:353.342667pt;}
.yac{bottom:354.146667pt;}
.y1a3{bottom:356.025333pt;}
.y1c8{bottom:358.389333pt;}
.y3f{bottom:358.665333pt;}
.yab{bottom:358.728000pt;}
.y16e{bottom:359.005333pt;}
.yf7{bottom:363.045333pt;}
.y2c{bottom:364.242667pt;}
.y68{bottom:368.809333pt;}
.y8a{bottom:371.057333pt;}
.y1a2{bottom:371.966667pt;}
.y67{bottom:372.794667pt;}
.y1c7{bottom:374.329333pt;}
.y3e{bottom:374.605333pt;}
.yaa{bottom:374.668000pt;}
.yd{bottom:375.188000pt;}
.y2b{bottom:380.182667pt;}
.y120{bottom:381.846667pt;}
.yf6{bottom:386.956000pt;}
.y142{bottom:388.317333pt;}
.yc{bottom:389.800000pt;}
.ycd{bottom:390.249333pt;}
.y1c6{bottom:390.269333pt;}
.y3d{bottom:390.546667pt;}
.y16d{bottom:392.993333pt;}
.y1a1{bottom:395.961333pt;}
.y89{bottom:397.624000pt;}
.y66{bottom:399.137333pt;}
.ya9{bottom:401.234667pt;}
.ycc{bottom:401.609333pt;}
.yf5{bottom:402.896000pt;}
.yb{bottom:404.412000pt;}
.ycb{bottom:406.189333pt;}
.y16a{bottom:406.609333pt;}
.y16c{bottom:407.610667pt;}
.y141{bottom:408.662667pt;}
.y11f{bottom:410.349333pt;}
.y65{bottom:411.092000pt;}
.y1c5{bottom:411.522667pt;}
.y1a0{bottom:411.901333pt;}
.y88{bottom:413.564000pt;}
.y16b{bottom:413.716000pt;}
.y64{bottom:415.077333pt;}
.y169{bottom:415.472000pt;}
.y140{bottom:417.774667pt;}
.ya{bottom:419.022667pt;}
.y3c{bottom:419.766667pt;}
.y1c4{bottom:427.462667pt;}
.ya8{bottom:427.802667pt;}
.y19f{bottom:427.842667pt;}
.yf4{bottom:428.836000pt;}
.y168{bottom:430.193333pt;}
.yf3{bottom:437.948000pt;}
.yca{bottom:437.973333pt;}
.y11e{bottom:438.852000pt;}
.y2a{bottom:439.821333pt;}
.y9{bottom:439.846667pt;}
.y167{bottom:440.004000pt;}
.y87{bottom:440.132000pt;}
.y63{bottom:441.420000pt;}
.y1c3{bottom:443.404000pt;}
.y3b{bottom:448.986667pt;}
.y163{bottom:450.010667pt;}
.ya7{bottom:450.713333pt;}
.y165{bottom:451.012000pt;}
.y19c{bottom:452.533333pt;}
.y166{bottom:454.129333pt;}
.y162{bottom:454.293333pt;}
.y11d{bottom:454.792000pt;}
.y13f{bottom:455.204000pt;}
.y29{bottom:455.762667pt;}
.y164{bottom:457.117333pt;}
.y62{bottom:457.360000pt;}
.y161{bottom:458.874667pt;}
.y1c2{bottom:459.344000pt;}
.y19e{bottom:459.398667pt;}
.y86{bottom:462.117333pt;}
.y85{bottom:462.713333pt;}
.yf2{bottom:465.104000pt;}
.y84{bottom:466.698667pt;}
.yc9{bottom:467.197333pt;}
.y19b{bottom:468.510667pt;}
.y13e{bottom:471.144000pt;}
.y61{bottom:473.300000pt;}
.ya6{bottom:477.281333pt;}
.y19d{bottom:477.497333pt;}
.y11c{bottom:478.270667pt;}
.y1c1{bottom:480.597333pt;}
.yf1{bottom:481.045333pt;}
.y160{bottom:481.845333pt;}
.y13d{bottom:487.084000pt;}
.y15f{bottom:490.957333pt;}
.yc6{bottom:493.065333pt;}
.y11b{bottom:494.210667pt;}
.y83{bottom:495.110667pt;}
.y1c0{bottom:496.537333pt;}
.y19a{bottom:496.852000pt;}
.y60{bottom:499.642667pt;}
.yc8{bottom:499.930667pt;}
.ya5{bottom:506.505333pt;}
.y15e{bottom:506.897333pt;}
.yc5{bottom:509.042667pt;}
.y11a{bottom:510.150667pt;}
.yf0{bottom:512.298667pt;}
.y1bf{bottom:512.477333pt;}
.y199{bottom:512.792000pt;}
.y28{bottom:515.401333pt;}
.y5f{bottom:515.582667pt;}
.y8{bottom:517.108000pt;}
.yc7{bottom:518.029333pt;}
.y13c{bottom:518.194667pt;}
.yef{bottom:521.409333pt;}
.y82{bottom:521.677333pt;}
.y13b{bottom:527.306667pt;}
.y1be{bottom:528.417333pt;}
.y15d{bottom:528.501333pt;}
.y27{bottom:531.341333pt;}
.y198{bottom:534.130667pt;}
.ya4{bottom:535.728000pt;}
.y117{bottom:536.036000pt;}
.y15c{bottom:537.613333pt;}
.y3a{bottom:540.665333pt;}
.y119{bottom:542.901333pt;}
.y5c{bottom:543.676000pt;}
.yc4{bottom:547.240000pt;}
.y7f{bottom:547.470667pt;}
.y1bd{bottom:549.672000pt;}
.y197{bottom:550.070667pt;}
.y5e{bottom:550.541333pt;}
.y58{bottom:551.682667pt;}
.y116{bottom:552.013333pt;}
.y81{bottom:554.336000pt;}
.y7{bottom:554.705333pt;}
.y39{bottom:556.606667pt;}
.y57{bottom:559.652000pt;}
.y118{bottom:561.000000pt;}
.yee{bottom:561.850667pt;}
.ya3{bottom:562.296000pt;}
.y59{bottom:562.442667pt;}
.yc3{bottom:563.180000pt;}
.y80{bottom:563.446667pt;}
.y196{bottom:563.705333pt;}
.y195{bottom:564.300000pt;}
.y1bc{bottom:565.612000pt;}
.y13a{bottom:566.996000pt;}
.y15b{bottom:567.880000pt;}
.y194{bottom:568.285333pt;}
.y5d{bottom:568.638667pt;}
.y5b{bottom:572.272000pt;}
.y15a{bottom:572.460000pt;}
.yed{bottom:573.209333pt;}
.y7e{bottom:576.066667pt;}
.y5a{bottom:576.257333pt;}
.yec{bottom:577.790667pt;}
.y139{bottom:581.526667pt;}
.y1bb{bottom:581.552000pt;}
.y6{bottom:582.576000pt;}
.ya2{bottom:584.281333pt;}
.ya1{bottom:584.877333pt;}
.y138{bottom:586.108000pt;}
.y26{bottom:588.397333pt;}
.ya0{bottom:588.862667pt;}
.y115{bottom:589.489333pt;}
.y190{bottom:589.617333pt;}
.yc2{bottom:592.404000pt;}
.yeb{bottom:593.730667pt;}
.y193{bottom:596.482667pt;}
.y159{bottom:599.597333pt;}
.y114{bottom:600.849333pt;}
.y7d{bottom:600.905333pt;}
.y113{bottom:601.444000pt;}
.y1ba{bottom:602.805333pt;}
.y25{bottom:604.338667pt;}
.y56{bottom:604.536000pt;}
.yea{bottom:605.090667pt;}
.y112{bottom:605.429333pt;}
.y18f{bottom:605.593333pt;}
.y158{bottom:608.709333pt;}
.ye9{bottom:609.670667pt;}
.y192{bottom:611.296000pt;}
.y191{bottom:614.580000pt;}
.y38{bottom:615.925333pt;}
.y9f{bottom:618.349333pt;}
.y1b9{bottom:618.745333pt;}
.y24{bottom:620.278667pt;}
.y55{bottom:620.476000pt;}
.yc1{bottom:621.628000pt;}
.y5{bottom:621.934667pt;}
.ye8{bottom:622.358667pt;}
.y137{bottom:623.326667pt;}
.ye7{bottom:626.940000pt;}
.y7c{bottom:627.472000pt;}
.y111{bottom:628.908000pt;}
.y37{bottom:631.865333pt;}
.y136{bottom:632.438667pt;}
.y1b8{bottom:634.686667pt;}
.y23{bottom:636.218667pt;}
.y18e{bottom:636.517333pt;}
.y157{bottom:640.114667pt;}
.y7b{bottom:643.413333pt;}
.y110{bottom:644.848000pt;}
.y9e{bottom:644.917333pt;}
.y54{bottom:646.818667pt;}
.ybe{bottom:648.848000pt;}
.y1b7{bottom:650.626667pt;}
.y22{bottom:652.158667pt;}
.y18d{bottom:652.457333pt;}
.y7a{bottom:654.772000pt;}
.yc0{bottom:655.713333pt;}
.ye6{bottom:656.350667pt;}
.y79{bottom:659.353333pt;}
.y10f{bottom:660.788000pt;}
.y53{bottom:662.758667pt;}
.y156{bottom:664.302667pt;}
.ybd{bottom:664.825333pt;}
.ye5{bottom:665.462667pt;}
.y21{bottom:668.098667pt;}
.y1b6{bottom:671.880000pt;}
.y135{bottom:672.718667pt;}
.y155{bottom:673.413333pt;}
.y18c{bottom:673.796000pt;}
.ybf{bottom:673.812000pt;}
.y9d{bottom:674.140000pt;}
.y10e{bottom:676.728000pt;}
.y52{bottom:678.698667pt;}
.y78{bottom:683.217333pt;}
.y77{bottom:687.798667pt;}
.y1b5{bottom:687.820000pt;}
.y134{bottom:688.658667pt;}
.y18b{bottom:689.736000pt;}
.y36{bottom:692.956000pt;}
.y51{bottom:694.638667pt;}
.ye4{bottom:701.917333pt;}
.y10d{bottom:702.718667pt;}
.ybc{bottom:703.021333pt;}
.y9c{bottom:703.364000pt;}
.y1b4{bottom:703.760000pt;}
.y18a{bottom:705.676000pt;}
.y154{bottom:707.401333pt;}
.y35{bottom:708.896000pt;}
.y131{bottom:715.717333pt;}
.y10c{bottom:718.658667pt;}
.y50{bottom:719.156000pt;}
.y9b{bottom:719.304000pt;}
.y189{bottom:721.617333pt;}
.y4{bottom:721.622667pt;}
.y133{bottom:722.582667pt;}
.y76{bottom:724.881333pt;}
.y1b3{bottom:725.014667pt;}
.ye2{bottom:727.710667pt;}
.y20{bottom:727.737333pt;}
.y153{bottom:731.588000pt;}
.y130{bottom:731.694667pt;}
.ybb{bottom:732.245333pt;}
.ye1{bottom:734.576000pt;}
.y188{bottom:737.557333pt;}
.y132{bottom:740.681333pt;}
.y152{bottom:740.700000pt;}
.y1b2{bottom:740.954667pt;}
.y9a{bottom:741.290667pt;}
.y99{bottom:741.886667pt;}
.ye0{bottom:743.686667pt;}
.ye3{bottom:743.688000pt;}
.y98{bottom:745.872000pt;}
.y10b{bottom:747.305333pt;}
.y75{bottom:751.449333pt;}
.y3{bottom:752.788000pt;}
.y4f{bottom:753.630667pt;}
.yba{bottom:761.469333pt;}
.y1b1{bottom:762.208000pt;}
.y187{bottom:762.817333pt;}
.y10a{bottom:763.246667pt;}
.y34{bottom:767.402667pt;}
.y4e{bottom:769.570667pt;}
.y12f{bottom:769.730667pt;}
.y97{bottom:775.358667pt;}
.y151{bottom:776.638667pt;}
.yb9{bottom:777.409333pt;}
.y74{bottom:778.016000pt;}
.y1b0{bottom:778.148000pt;}
.y186{bottom:778.757333pt;}
.y109{bottom:779.186667pt;}
.ydf{bottom:781.145333pt;}
.y33{bottom:783.344000pt;}
.y4d{bottom:785.512000pt;}
.y1f{bottom:787.377333pt;}
.y2{bottom:791.305333pt;}
.y150{bottom:792.578667pt;}
.y1af{bottom:794.088000pt;}
.y185{bottom:794.697333pt;}
.y12e{bottom:798.078667pt;}
.y32{bottom:799.284000pt;}
.y4c{bottom:801.452000pt;}
.y96{bottom:801.926667pt;}
.y1e{bottom:803.317333pt;}
.yb8{bottom:803.976000pt;}
.y73{bottom:804.582667pt;}
.ydd{bottom:806.938667pt;}
.y12d{bottom:807.190667pt;}
.y106{bottom:810.241333pt;}
.y184{bottom:810.637333pt;}
.y14f{bottom:813.126667pt;}
.ydc{bottom:813.804000pt;}
.y1ae{bottom:815.341333pt;}
.y108{bottom:817.106667pt;}
.yb7{bottom:819.916000pt;}
.y1{bottom:820.529333pt;}
.y14e{bottom:822.238667pt;}
.ydb{bottom:822.914667pt;}
.yde{bottom:822.916000pt;}
.y4b{bottom:825.969333pt;}
.y105{bottom:826.218667pt;}
.y183{bottom:826.577333pt;}
.y95{bottom:831.149333pt;}
.y1ad{bottom:831.282667pt;}
.y72{bottom:833.806667pt;}
.y107{bottom:835.205333pt;}
.yb6{bottom:835.856000pt;}
.y12c{bottom:839.853333pt;}
.y182{bottom:842.518667pt;}
.y12b{bottom:844.433333pt;}
.y4a{bottom:844.565333pt;}
.y1ac{bottom:847.222667pt;}
.y71{bottom:849.746667pt;}
.yb5{bottom:851.797333pt;}
.y180{bottom:860.366667pt;}
.y1d{bottom:860.373333pt;}
.y181{bottom:861.797333pt;}
.y17f{bottom:871.386667pt;}
.y1c{bottom:876.313333pt;}
.h18{height:2.656693pt;}
.hf{height:5.648555pt;}
.h4c{height:17.693578pt;}
.hd{height:21.200555pt;}
.ha{height:22.107556pt;}
.h8{height:23.910400pt;}
.h19{height:26.221488pt;}
.h1a{height:27.895200pt;}
.h1d{height:28.687733pt;}
.h5{height:33.522381pt;}
.h6{height:33.761485pt;}
.h54{height:36.928037pt;}
.h47{height:37.512510pt;}
.h1b{height:39.850400pt;}
.h11{height:39.903534pt;}
.h4{height:39.956668pt;}
.h10{height:41.515221pt;}
.h16{height:41.695733pt;}
.h9{height:42.422223pt;}
.h29{height:42.507360pt;}
.h2{height:44.313941pt;}
.h15{height:44.696508pt;}
.hc{height:44.838223pt;}
.h7{height:45.429333pt;}
.h31{height:45.501488pt;}
.h41{height:45.506821pt;}
.h4e{height:47.144155pt;}
.h21{height:47.175200pt;}
.h37{height:47.180533pt;}
.h2b{height:48.157488pt;}
.h28{height:48.162821pt;}
.h39{height:48.812533pt;}
.h2c{height:48.817867pt;}
.h50{height:50.493578pt;}
.he{height:52.094933pt;}
.h20{height:52.936155pt;}
.h40{height:53.131360pt;}
.h30{height:53.136693pt;}
.h12{height:53.635660pt;}
.h1e{height:54.609867pt;}
.h13{height:55.710922pt;}
.h48{height:55.716255pt;}
.h33{height:58.223534pt;}
.h14{height:58.228867pt;}
.h2f{height:58.276668pt;}
.h2a{height:58.282001pt;}
.h25{height:60.021067pt;}
.h52{height:60.827360pt;}
.h43{height:60.832693pt;}
.h1f{height:61.442821pt;}
.h45{height:61.632693pt;}
.h49{height:63.826821pt;}
.h3b{height:64.022027pt;}
.h1{height:64.546273pt;}
.h24{height:64.753867pt;}
.h42{height:64.759200pt;}
.h3a{height:67.137867pt;}
.h3c{height:67.143200pt;}
.hb{height:68.297600pt;}
.h4d{height:70.577867pt;}
.h4b{height:73.459177pt;}
.h38{height:73.955177pt;}
.h35{height:73.960510pt;}
.h26{height:75.791733pt;}
.h2d{height:75.797067pt;}
.h32{height:76.298400pt;}
.h44{height:76.351534pt;}
.h2e{height:76.404668pt;}
.h3{height:77.620660pt;}
.h46{height:79.958027pt;}
.h27{height:81.448155pt;}
.h22{height:81.453488pt;}
.h4a{height:84.610821pt;}
.h36{height:89.584693pt;}
.h3f{height:93.515360pt;}
.h3d{height:93.520693pt;}
.h51{height:112.239733pt;}
.h4f{height:112.245067pt;}
.h23{height:114.022027pt;}
.h53{height:114.027360pt;}
.h34{height:117.896155pt;}
.h3e{height:129.963360pt;}
.h17{height:141.334027pt;}
.h1c{height:145.899360pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:178.357333pt;}
.x3b{left:180.452000pt;}
.x39{left:181.780000pt;}
.x3a{left:183.720000pt;}
.x1{left:186.102667pt;}
.x75{left:190.560000pt;}
.x4a{left:194.064000pt;}
.x93{left:197.200000pt;}
.x2b{left:198.278667pt;}
.x4c{left:200.656000pt;}
.xb{left:211.566667pt;}
.x25{left:213.345333pt;}
.x16{left:215.809333pt;}
.x1f{left:216.997333pt;}
.x18{left:218.229333pt;}
.x2e{left:219.194667pt;}
.x86{left:220.190667pt;}
.x1c{left:224.788000pt;}
.x4b{left:227.508000pt;}
.x13{left:228.444000pt;}
.xa{left:229.993333pt;}
.x42{left:237.289333pt;}
.x17{left:240.496000pt;}
.x3e{left:244.218667pt;}
.x1a{left:249.393333pt;}
.x19{left:251.997333pt;}
.x20{left:254.544000pt;}
.x6b{left:256.170667pt;}
.x6{left:260.832000pt;}
.x23{left:262.909333pt;}
.x49{left:265.560000pt;}
.x12{left:267.734667pt;}
.x2d{left:271.320000pt;}
.x2f{left:272.482667pt;}
.x83{left:274.382667pt;}
.x8b{left:275.413333pt;}
.x71{left:279.966667pt;}
.x48{left:284.020000pt;}
.x41{left:285.365333pt;}
.x47{left:287.541333pt;}
.x66{left:289.900000pt;}
.x78{left:293.344000pt;}
.x70{left:295.981333pt;}
.x87{left:297.384000pt;}
.x30{left:301.498667pt;}
.x5f{left:303.361333pt;}
.x6c{left:306.480000pt;}
.x8c{left:307.429333pt;}
.x7{left:309.246667pt;}
.x38{left:310.630667pt;}
.x7b{left:314.388000pt;}
.x37{left:316.337333pt;}
.x3f{left:318.590667pt;}
.x55{left:319.753333pt;}
.x8{left:321.692000pt;}
.x79{left:324.197333pt;}
.x5c{left:326.672000pt;}
.xc{left:328.410667pt;}
.x6d{left:330.033333pt;}
.x3{left:330.976000pt;}
.x76{left:334.737333pt;}
.x5a{left:338.212000pt;}
.x3c{left:339.332000pt;}
.x53{left:340.326667pt;}
.x32{left:343.149333pt;}
.x4d{left:344.833333pt;}
.x4{left:346.925333pt;}
.x31{left:349.460000pt;}
.x6f{left:354.496000pt;}
.x2{left:355.566667pt;}
.x61{left:356.628000pt;}
.x5b{left:357.678667pt;}
.x27{left:358.814667pt;}
.x51{left:361.318667pt;}
.x52{left:362.808000pt;}
.x6a{left:364.362667pt;}
.x43{left:365.472000pt;}
.x33{left:366.557333pt;}
.x5{left:368.696000pt;}
.x10{left:370.534667pt;}
.x81{left:378.090667pt;}
.x63{left:379.110667pt;}
.x9{left:380.446667pt;}
.x2c{left:382.714667pt;}
.x44{left:385.217333pt;}
.x1d{left:387.725333pt;}
.x11{left:390.716000pt;}
.x56{left:394.125333pt;}
.x54{left:395.232000pt;}
.x7f{left:396.442667pt;}
.x4e{left:397.894667pt;}
.x7a{left:401.605333pt;}
.xd{left:402.672000pt;}
.x14{left:404.178667pt;}
.xf{left:406.197333pt;}
.x67{left:407.881333pt;}
.xe{left:412.836000pt;}
.x62{left:414.609333pt;}
.x34{left:418.720000pt;}
.x4f{left:421.448000pt;}
.x50{left:423.000000pt;}
.x57{left:426.006667pt;}
.x1e{left:427.894667pt;}
.x24{left:431.613333pt;}
.x64{left:435.166667pt;}
.x45{left:439.176000pt;}
.x69{left:443.660000pt;}
.x21{left:445.697333pt;}
.x58{left:447.965333pt;}
.x22{left:449.276000pt;}
.x7e{left:454.208000pt;}
.x40{left:457.137333pt;}
.x29{left:458.425333pt;}
.x72{left:460.984000pt;}
.x68{left:465.862667pt;}
.x80{left:468.088000pt;}
.x5d{left:469.352000pt;}
.x36{left:473.748000pt;}
.x6e{left:475.474667pt;}
.x59{left:477.664000pt;}
.x73{left:484.537333pt;}
.x8f{left:487.012000pt;}
.x65{left:488.112000pt;}
.x77{left:492.324000pt;}
.x74{left:495.578667pt;}
.x7c{left:496.920000pt;}
.x7d{left:499.044000pt;}
.x60{left:500.948000pt;}
.x82{left:502.738667pt;}
.x90{left:507.140000pt;}
.x84{left:515.157333pt;}
.x15{left:516.164000pt;}
.x35{left:518.524000pt;}
.x5e{left:524.257333pt;}
.x8d{left:526.030667pt;}
.x28{left:528.257333pt;}
.x91{left:537.886667pt;}
.x26{left:555.393333pt;}
.x1b{left:562.520000pt;}
.x8e{left:565.301333pt;}
.x88{left:572.502667pt;}
.x92{left:577.157333pt;}
.x85{left:583.250667pt;}
.x3d{left:590.105333pt;}
.x46{left:591.082667pt;}
.x89{left:604.520000pt;}
.x8a{left:626.308000pt;}
}




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