
    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_8df0ae308d299c6d9c738e91.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7691594cc445b80fb3053bcb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.465000;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_a2a30f165d05ff1b8991d7d4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_908b55ff4922c064566a59c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_12e52fe4724dcc207661a918.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.308000;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_4e908a42282ee3e3f68e037d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1a4dde19405d3e3cd96c5fd0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4950c9e2718ae0c708a4d098.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.898000;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_1294e947db5ca4192938bf98.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_31fbed87aa770f3fbb49ea09.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0d1daafa0d8c944d18a883e2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.861816;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_ca53557a95129ffd1dc40867.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_59ffa2e83e11c1f1e9e20ebf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910000;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_0ad8d54e7817dc1db23d314e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.178000;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_f97f78d9b9c41350dc5f8e14.woff2')format("woff");}.fff{font-family:fff;line-height:0.734205;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_13bd927fff5edd6e6588bc15.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.810000;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_86de27a2851ce201555f76c7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.689453;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_e4b3cf21bc47798b05ec31cc.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.829000;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_e1431c68645138eb6854c823.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_dcf23fb90d40dd7c118dd55c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.238000;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_296ee2039170a635e66303f1.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_09aec73276148e2841a9cd0d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.514000;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_5a9213f97c707ca528552823.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_b5848a2b831e02d812534a6d.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.675000;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_f8e41aa4c1752e47d81b38e8.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.587000;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_cd222f5294fa40a871dfdbc9.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_91586c6ff5d4ec9aa2ca94b6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.664000;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_a4c951c10ab5ba62b808fcad.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.910156;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_c311ceec5cd470cbc6c8bb82.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.910156;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_f7c6190ee29cdd72eb7f0fb9.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910156;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_c311ceec5cd470cbc6c8bb82.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.910156;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_f7c6190ee29cdd72eb7f0fb9.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.910156;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;}
.m5{transform:matrix(0.000000,-0.250150,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250150,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250150,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250370,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250370,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250370,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.289503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289503,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-21.690000px;}
.v4{vertical-align:-16.878000px;}
.v7{vertical-align:-15.291094px;}
.v9{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.640400px;}
.v6{vertical-align:15.296531px;}
.vc{vertical-align:17.268000px;}
.v2{vertical-align:21.696000px;}
.v8{vertical-align:24.678000px;}
.v1{vertical-align:30.366000px;}
.vb{vertical-align:32.034000px;}
.va{vertical-align:40.434000px;}
.ls4{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.000290px;}
.ls24{letter-spacing:0.002245px;}
.ls26{letter-spacing:0.004651px;}
.ls34{letter-spacing:0.573847px;}
.ls27{letter-spacing:1.613941px;}
.ls12{letter-spacing:1.673717px;}
.ls2c{letter-spacing:1.721542px;}
.ls3a{letter-spacing:2.107920px;}
.lsb{letter-spacing:2.706175px;}
.ls1e{letter-spacing:2.988710px;}
.ls38{letter-spacing:2.989409px;}
.ls1c{letter-spacing:2.994710px;}
.ls9{letter-spacing:2.994741px;}
.ls36{letter-spacing:3.395263px;}
.ls2a{letter-spacing:4.303843px;}
.ls20{letter-spacing:7.143412px;}
.lsc{letter-spacing:7.671146px;}
.ls13{letter-spacing:7.890710px;}
.ls11{letter-spacing:8.308808px;}
.ls32{letter-spacing:8.464246px;}
.ls23{letter-spacing:10.164710px;}
.ls30{letter-spacing:11.285662px;}
.ls31{letter-spacing:11.457959px;}
.ls16{letter-spacing:11.512125px;}
.ls1{letter-spacing:12.955409px;}
.ls14{letter-spacing:13.270183px;}
.ls15{letter-spacing:13.329959px;}
.ls28{letter-spacing:13.927715px;}
.ls1b{letter-spacing:14.943900px;}
.lsa{letter-spacing:15.342293px;}
.ls10{letter-spacing:15.900310px;}
.ls1d{letter-spacing:16.617617px;}
.lsd{letter-spacing:18.054909px;}
.ls6{letter-spacing:18.427409px;}
.ls8{letter-spacing:18.590212px;}
.ls3c{letter-spacing:19.905275px;}
.ls33{letter-spacing:19.923959px;}
.ls2e{letter-spacing:19.929959px;}
.ls7{letter-spacing:19.965050px;}
.ls29{letter-spacing:20.024826px;}
.ls3{letter-spacing:20.263928px;}
.lsf{letter-spacing:20.622582px;}
.ls1a{letter-spacing:22.714728px;}
.ls0{letter-spacing:22.915409px;}
.ls3b{letter-spacing:24.067409px;}
.ls21{letter-spacing:24.132961px;}
.lse{letter-spacing:24.687323px;}
.ls18{letter-spacing:25.045976px;}
.ls2{letter-spacing:25.400915px;}
.ls3d{letter-spacing:25.569235px;}
.ls19{letter-spacing:26.181713px;}
.ls22{letter-spacing:56.795924px;}
.ls2d{letter-spacing:71.730900px;}
.ls35{letter-spacing:118.355985px;}
.ls25{letter-spacing:139.994455px;}
.ls17{letter-spacing:159.959506px;}
.ls2f{letter-spacing:212.514746px;}
.ls2b{letter-spacing:221.887584px;}
.ls37{letter-spacing:288.597321px;}
.ls1f{letter-spacing:903.866848px;}
.ls5{letter-spacing:1334.315042px;}
.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;}
}
.wsfd{word-spacing:-59.775600px;}
.wsf2{word-spacing:-49.793075px;}
.wsc1{word-spacing:-38.937826px;}
.wsa{word-spacing:-34.703947px;}
.wsc5{word-spacing:-30.629017px;}
.wsc9{word-spacing:-30.591842px;}
.ws100{word-spacing:-30.551309px;}
.ws67{word-spacing:-29.887800px;}
.wsec{word-spacing:-29.328513px;}
.wsc3{word-spacing:-27.759789px;}
.ws7{word-spacing:-24.737947px;}
.ws2{word-spacing:-24.737799px;}
.wsdd{word-spacing:-22.576105px;}
.ws46{word-spacing:-16.617617px;}
.ws8c{word-spacing:-16.605662px;}
.ws22{word-spacing:-16.557841px;}
.ws79{word-spacing:-16.498066px;}
.ws7c{word-spacing:-16.438290px;}
.wsd{word-spacing:-16.378514px;}
.ws78{word-spacing:-16.258963px;}
.ws106{word-spacing:-16.199188px;}
.wsaf{word-spacing:-16.139412px;}
.wse9{word-spacing:-16.079636px;}
.ws57{word-spacing:-16.019861px;}
.wsef{word-spacing:-15.960085px;}
.ws42{word-spacing:-15.900310px;}
.wsb1{word-spacing:-15.720983px;}
.ws45{word-spacing:-15.661207px;}
.ws60{word-spacing:-15.481880px;}
.ws3a{word-spacing:-15.422105px;}
.wsae{word-spacing:-15.362329px;}
.wsa3{word-spacing:-15.355295px;}
.ws89{word-spacing:-15.302554px;}
.ws10a{word-spacing:-15.248756px;}
.ws7d{word-spacing:-15.242778px;}
.wsb9{word-spacing:-15.183002px;}
.ws72{word-spacing:-15.123227px;}
.ws8d{word-spacing:-15.003676px;}
.wsc7{word-spacing:-14.943900px;}
.ws107{word-spacing:-14.890102px;}
.wsfa{word-spacing:-14.884124px;}
.ws34{word-spacing:-14.824349px;}
.wsf7{word-spacing:-14.764573px;}
.ws77{word-spacing:-14.704798px;}
.ws58{word-spacing:-14.645022px;}
.ws64{word-spacing:-14.465695px;}
.ws5e{word-spacing:-14.405920px;}
.ws5b{word-spacing:-14.346144px;}
.ws14{word-spacing:-14.226593px;}
.ws6e{word-spacing:-14.166817px;}
.wsdc{word-spacing:-14.111859px;}
.ws48{word-spacing:-14.107042px;}
.ws7f{word-spacing:-14.047266px;}
.ws3f{word-spacing:-13.987490px;}
.wsd6{word-spacing:-13.927715px;}
.wsbc{word-spacing:-13.808164px;}
.ws3e{word-spacing:-13.748388px;}
.ws47{word-spacing:-13.688612px;}
.ws4d{word-spacing:-13.628837px;}
.wsb3{word-spacing:-13.569061px;}
.wsf3{word-spacing:-13.509286px;}
.ws54{word-spacing:-13.449510px;}
.ws59{word-spacing:-13.389734px;}
.wsf1{word-spacing:-13.270183px;}
.ws65{word-spacing:-13.150632px;}
.ws8f{word-spacing:-13.090856px;}
.ws56{word-spacing:-13.031081px;}
.ws29{word-spacing:-12.911530px;}
.ws2b{word-spacing:-12.851754px;}
.wscb{word-spacing:-12.791978px;}
.wsce{word-spacing:-12.732203px;}
.wsee{word-spacing:-12.672427px;}
.ws26{word-spacing:-12.612652px;}
.wscc{word-spacing:-12.552876px;}
.wse7{word-spacing:-12.493100px;}
.ws53{word-spacing:-12.433325px;}
.ws43{word-spacing:-12.373549px;}
.ws25{word-spacing:-12.313774px;}
.ws4a{word-spacing:-12.253998px;}
.wsd8{word-spacing:-12.194222px;}
.wsdf{word-spacing:-12.134447px;}
.ws6f{word-spacing:-12.074671px;}
.wsd5{word-spacing:-12.014896px;}
.ws3d{word-spacing:-11.955120px;}
.wsa6{word-spacing:-11.895344px;}
.ws5d{word-spacing:-11.835569px;}
.ws80{word-spacing:-11.775793px;}
.ws108{word-spacing:-11.716018px;}
.ws5f{word-spacing:-11.656242px;}
.ws1d{word-spacing:-11.596466px;}
.wsb8{word-spacing:-11.536691px;}
.ws1c{word-spacing:-11.476915px;}
.wsba{word-spacing:-11.417140px;}
.ws39{word-spacing:-11.357364px;}
.wsf8{word-spacing:-11.297588px;}
.ws41{word-spacing:-11.237813px;}
.wsbd{word-spacing:-11.178037px;}
.ws5c{word-spacing:-11.118262px;}
.ws28{word-spacing:-11.058486px;}
.ws49{word-spacing:-10.998710px;}
.ws2c{word-spacing:-10.917443px;}
.wsbb{word-spacing:-10.879159px;}
.ws24{word-spacing:-10.819384px;}
.ws109{word-spacing:-10.765586px;}
.ws21{word-spacing:-10.759608px;}
.ws1e{word-spacing:-10.699832px;}
.wsb2{word-spacing:-10.640057px;}
.ws44{word-spacing:-10.580281px;}
.wseb{word-spacing:-10.520506px;}
.ws6d{word-spacing:-10.460730px;}
.wsff{word-spacing:-10.406932px;}
.wsaa{word-spacing:-10.400954px;}
.ws103{word-spacing:-10.347156px;}
.wsf9{word-spacing:-10.341179px;}
.ws10f{word-spacing:-10.287381px;}
.ws2a{word-spacing:-10.221628px;}
.wsd7{word-spacing:-10.161852px;}
.ws66{word-spacing:-10.042301px;}
.ws2f{word-spacing:-10.008852px;}
.ws15{word-spacing:-9.982525px;}
.wsbf{word-spacing:-9.922750px;}
.ws19{word-spacing:-9.862974px;}
.wsa7{word-spacing:-9.803198px;}
.wse{word-spacing:-9.743423px;}
.ws2d{word-spacing:-9.721928px;}
.ws20{word-spacing:-9.683647px;}
.ws36{word-spacing:-9.623872px;}
.ws71{word-spacing:-9.564096px;}
.ws68{word-spacing:-9.504320px;}
.ws32{word-spacing:-9.482825px;}
.wsf5{word-spacing:-9.384769px;}
.wsc6{word-spacing:-9.324994px;}
.ws52{word-spacing:-9.265218px;}
.wsb{word-spacing:-9.211420px;}
.ws37{word-spacing:-9.205442px;}
.ws9{word-spacing:-9.151644px;}
.wsea{word-spacing:-9.085891px;}
.ws3b{word-spacing:-9.026116px;}
.wsbe{word-spacing:-8.906564px;}
.wsf{word-spacing:-8.846789px;}
.ws1b{word-spacing:-8.787013px;}
.ws73{word-spacing:-8.727238px;}
.wsd3{word-spacing:-8.667462px;}
.ws33{word-spacing:-8.607686px;}
.ws101{word-spacing:-8.488135px;}
.ws87{word-spacing:-8.478592px;}
.ws88{word-spacing:-8.430772px;}
.ws6a{word-spacing:-8.428360px;}
.wsc0{word-spacing:-8.308808px;}
.ws62{word-spacing:-8.249033px;}
.wse4{word-spacing:-8.189257px;}
.ws3c{word-spacing:-8.129482px;}
.wsf0{word-spacing:-8.069706px;}
.ws8e{word-spacing:-7.950155px;}
.wsb0{word-spacing:-7.890379px;}
.ws8b{word-spacing:-7.830604px;}
.ws4e{word-spacing:-7.770828px;}
.ws63{word-spacing:-7.711052px;}
.ws93{word-spacing:-7.684148px;}
.ws9b{word-spacing:-7.640808px;}
.ws105{word-spacing:-7.597479px;}
.ws70{word-spacing:-7.531726px;}
.ws61{word-spacing:-7.471950px;}
.ws55{word-spacing:-7.412174px;}
.ws11{word-spacing:-7.352399px;}
.wsd0{word-spacing:-7.292623px;}
.ws84{word-spacing:-7.232848px;}
.ws81{word-spacing:-7.173072px;}
.ws27{word-spacing:-7.113296px;}
.ws76{word-spacing:-6.993745px;}
.ws17{word-spacing:-6.933970px;}
.wse8{word-spacing:-6.874194px;}
.ws112{word-spacing:-6.820396px;}
.ws74{word-spacing:-6.814418px;}
.wsf4{word-spacing:-6.754643px;}
.ws8a{word-spacing:-6.694867px;}
.ws51{word-spacing:-6.682912px;}
.wse2{word-spacing:-6.635092px;}
.ws4f{word-spacing:-6.623136px;}
.ws13{word-spacing:-6.575316px;}
.ws50{word-spacing:-6.515540px;}
.ws18{word-spacing:-6.395989px;}
.wscd{word-spacing:-6.216662px;}
.wsc4{word-spacing:-6.204707px;}
.wse1{word-spacing:-6.156887px;}
.ws7b{word-spacing:-6.097111px;}
.wsd1{word-spacing:-5.977560px;}
.wsb6{word-spacing:-5.917784px;}
.ws110{word-spacing:-5.858009px;}
.ws86{word-spacing:-5.704998px;}
.wse0{word-spacing:-5.678682px;}
.wsda{word-spacing:-5.647613px;}
.wsfe{word-spacing:-5.618906px;}
.ws5a{word-spacing:-5.559131px;}
.wsb4{word-spacing:-5.200477px;}
.ws6b{word-spacing:-5.140702px;}
.ws94{word-spacing:-5.118432px;}
.ws98{word-spacing:-5.075092px;}
.wsa8{word-spacing:-5.021150px;}
.ws4c{word-spacing:-4.961375px;}
.ws7a{word-spacing:-4.841824px;}
.ws40{word-spacing:-4.782048px;}
.wse3{word-spacing:-4.722272px;}
.ws6c{word-spacing:-4.662497px;}
.ws35{word-spacing:-4.602721px;}
.wsd2{word-spacing:-4.303843px;}
.ws69{word-spacing:-4.244068px;}
.ws31{word-spacing:-3.935635px;}
.ws102{word-spacing:-3.885414px;}
.wsd4{word-spacing:-3.706087px;}
.wsfb{word-spacing:-3.646312px;}
.ws38{word-spacing:-3.586536px;}
.wsa9{word-spacing:-3.526760px;}
.wsc8{word-spacing:-3.335478px;}
.wse5{word-spacing:-3.227882px;}
.ws10{word-spacing:-3.108331px;}
.wscf{word-spacing:-2.988780px;}
.ws83{word-spacing:-2.929004px;}
.wsf6{word-spacing:-2.869229px;}
.wsdb{word-spacing:-2.826197px;}
.ws10c{word-spacing:-2.689902px;}
.ws1a{word-spacing:-2.570351px;}
.ws10d{word-spacing:-2.391024px;}
.wse6{word-spacing:-2.331248px;}
.ws12{word-spacing:-2.271473px;}
.ws10b{word-spacing:-2.032370px;}
.ws111{word-spacing:-1.972595px;}
.ws7e{word-spacing:-1.554166px;}
.ws30{word-spacing:-1.544605px;}
.ws1f{word-spacing:-1.315063px;}
.ws23{word-spacing:-1.135736px;}
.ws10e{word-spacing:-0.777083px;}
.wsfc{word-spacing:-0.537980px;}
.ws104{word-spacing:-0.298878px;}
.ws4b{word-spacing:-0.239102px;}
.ws75{word-spacing:-0.059776px;}
.wsc2{word-spacing:-0.047820px;}
.ws91{word-spacing:-0.043340px;}
.ws16{word-spacing:0.000000px;}
.wsca{word-spacing:0.011955px;}
.ws113{word-spacing:3.526760px;}
.ws2e{word-spacing:3.859122px;}
.ws92{word-spacing:8.797981px;}
.ws1{word-spacing:9.883100px;}
.ws6{word-spacing:9.907085px;}
.ws3{word-spacing:9.908203px;}
.ws5{word-spacing:9.920205px;}
.ws4{word-spacing:9.923055px;}
.ws8{word-spacing:9.926393px;}
.ws82{word-spacing:13.987490px;}
.wsc{word-spacing:15.481880px;}
.ws90{word-spacing:17.682642px;}
.wsab{word-spacing:19.427070px;}
.wsac{word-spacing:19.845499px;}
.ws85{word-spacing:22.654952px;}
.wsb5{word-spacing:23.910240px;}
.wsb7{word-spacing:23.970016px;}
.ws0{word-spacing:31.298639px;}
.wsad{word-spacing:35.805584px;}
.ws96{word-spacing:41.983274px;}
.ws97{word-spacing:57.498926px;}
.wsa5{word-spacing:64.966375px;}
.ws95{word-spacing:64.996713px;}
.wsa4{word-spacing:88.010152px;}
.ws9a{word-spacing:116.354387px;}
.ws9e{word-spacing:141.794856px;}
.wsed{word-spacing:147.850431px;}
.wsde{word-spacing:155.865979px;}
.ws9f{word-spacing:211.485270px;}
.ws9c{word-spacing:214.649076px;}
.wsa1{word-spacing:249.190904px;}
.ws9d{word-spacing:281.175684px;}
.wsa0{word-spacing:281.782441px;}
.wsa2{word-spacing:286.289781px;}
.ws99{word-spacing:405.742965px;}
.wsd9{word-spacing:474.126903px;}
._e{margin-left:-41.221243px;}
._f{margin-left:-40.217046px;}
._17{margin-left:-28.387575px;}
._56{margin-left:-27.018571px;}
._5b{margin-left:-19.875569px;}
._a{margin-left:-8.237100px;}
._4{margin-left:-5.738458px;}
._6{margin-left:-4.602721px;}
._0{margin-left:-2.594272px;}
._7{margin-left:-1.422682px;}
._5{width:1.422682px;}
._1{width:2.594272px;}
._5a{width:3.646312px;}
._60{width:4.865745px;}
._30{width:8.104730px;}
._c{width:14.310290px;}
._2{width:15.675177px;}
._d{width:17.538172px;}
._8{width:19.331440px;}
._9{width:20.945381px;}
._3{width:22.894055px;}
._5c{width:24.735166px;}
._5e{width:26.145859px;}
._b{width:27.341371px;}
._57{width:28.451227px;}
._10{width:30.545332px;}
._5d{width:34.430746px;}
._63{width:38.674813px;}
._5f{width:42.022247px;}
._62{width:48.286752px;}
._61{width:50.331055px;}
._15{width:65.140903px;}
._24{width:88.023154px;}
._16{width:93.007232px;}
._2e{width:103.582145px;}
._1d{width:110.903369px;}
._4e{width:129.680243px;}
._1a{width:139.380828px;}
._20{width:153.914729px;}
._29{width:162.445139px;}
._59{width:166.723348px;}
._58{width:171.726059px;}
._12{width:188.571512px;}
._47{width:190.045066px;}
._4c{width:193.078853px;}
._22{width:216.056484px;}
._1b{width:223.026661px;}
._18{width:230.654468px;}
._2f{width:235.205148px;}
._4f{width:258.391946px;}
._32{width:269.637700px;}
._34{width:275.850357px;}
._21{width:278.024880px;}
._36{width:287.501234px;}
._25{width:299.694785px;}
._2b{width:302.251833px;}
._31{width:303.595368px;}
._28{width:309.800492px;}
._1e{width:312.523368px;}
._46{width:314.430320px;}
._26{width:321.538049px;}
._2c{width:338.628998px;}
._39{width:373.632500px;}
._40{width:374.759335px;}
._1f{width:388.028849px;}
._4a{width:399.116308px;}
._3b{width:409.474523px;}
._51{width:435.911807px;}
._1c{width:447.700235px;}
._44{width:454.035379px;}
._13{width:468.625831px;}
._3a{width:473.003152px;}
._53{width:475.654412px;}
._23{width:494.341402px;}
._35{width:570.770231px;}
._33{width:578.902430px;}
._2d{width:646.629962px;}
._3d{width:811.652893px;}
._52{width:831.308051px;}
._11{width:848.790381px;}
._38{width:869.572528px;}
._4b{width:1029.753880px;}
._19{width:1064.928343px;}
._45{width:1070.666661px;}
._2a{width:1072.313574px;}
._3e{width:1135.849735px;}
._42{width:1146.771367px;}
._3f{width:1149.891833px;}
._3c{width:1161.420222px;}
._27{width:1172.868235px;}
._48{width:1206.919491px;}
._4d{width:1225.828862px;}
._41{width:1227.296733px;}
._50{width:1234.180231px;}
._43{width:1240.125317px;}
._49{width:1264.734797px;}
._14{width:1333.565947px;}
._54{width:1336.729753px;}
._37{width:1384.200679px;}
._55{width:1516.522355px;}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:26.878680px;}
.fs5{font-size:28.291200px;}
.fsa{font-size:32.170547px;}
.fs4{font-size:32.332800px;}
.fs8{font-size:32.504993px;}
.fsc{font-size:35.336067px;}
.fsb{font-size:35.388382px;}
.fs9{font-size:35.865600px;}
.fsd{font-size:37.745834px;}
.fse{font-size:41.495520px;}
.fsf{font-size:41.520417px;}
.fs2{font-size:41.842800px;}
.fs7{font-size:43.339810px;}
.fs3{font-size:47.820600px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:83.686200px;}
.y0{bottom:0.000000px;}
.yaf{bottom:0.091432px;}
.y156{bottom:1.953480px;}
.y179{bottom:2.280983px;}
.y18c{bottom:2.281167px;}
.yae{bottom:7.845304px;}
.y155{bottom:12.523949px;}
.y178{bottom:14.233883px;}
.y18b{bottom:14.234071px;}
.y17a{bottom:22.215617px;}
.y18d{bottom:22.215711px;}
.y193{bottom:29.978155px;}
.y157{bottom:33.952414px;}
.y191{bottom:35.839869px;}
.y17e{bottom:36.134582px;}
.y192{bottom:40.639675px;}
.y5c{bottom:52.035600px;}
.y18e{bottom:53.985247px;}
.y17b{bottom:54.063900px;}
.y52{bottom:58.855800px;}
.y158{bottom:61.987031px;}
.y18f{bottom:85.754783px;}
.y17c{bottom:85.911947px;}
.y159{bottom:90.021878px;}
.y53{bottom:92.009550px;}
.y15e{bottom:96.973299px;}
.y180{bottom:98.217302px;}
.y17f{bottom:108.993406px;}
.y5b{bottom:109.628400px;}
.y7a{bottom:112.915500px;}
.y33{bottom:112.917000px;}
.y190{bottom:117.524319px;}
.y17d{bottom:117.760231px;}
.y15a{bottom:118.056725px;}
.yc7{bottom:124.620000px;}
.y50{bottom:125.535000px;}
.y184{bottom:126.375078px;}
.y171{bottom:126.610848px;}
.yd8{bottom:126.729000px;}
.y32{bottom:127.711500px;}
.y5a{bottom:127.815600px;}
.y79{bottom:129.354000px;}
.y16f{bottom:129.355500px;}
.y177{bottom:134.669938px;}
.yc6{bottom:141.058500px;}
.y4f{bottom:141.973500px;}
.y31{bottom:142.506000px;}
.y176{bottom:145.446041px;}
.y78{bottom:145.792500px;}
.y16e{bottom:145.794000px;}
.y15b{bottom:146.091572px;}
.y188{bottom:150.320350px;}
.y175{bottom:150.556120px;}
.yd7{bottom:151.386000px;}
.y185{bottom:154.315945px;}
.y172{bottom:154.551715px;}
.y30{bottom:157.300500px;}
.yc5{bottom:157.497000px;}
.y4e{bottom:158.412000px;}
.y77{bottom:162.231000px;}
.yd6{bottom:167.824500px;}
.y2f{bottom:172.095000px;}
.y11d{bottom:172.444500px;}
.yc4{bottom:173.935500px;}
.y15c{bottom:174.126419px;}
.y4d{bottom:174.850500px;}
.y161{bottom:177.285514px;}
.y76{bottom:178.669500px;}
.y186{bottom:182.256812px;}
.y173{bottom:182.492582px;}
.y2e{bottom:186.889500px;}
.y160{bottom:186.936265px;}
.y4c{bottom:191.289000px;}
.yd5{bottom:193.230000px;}
.y75{bottom:195.108000px;}
.y18a{bottom:196.243160px;}
.y15f{bottom:196.431563px;}
.yc3{bottom:200.983500px;}
.y15d{bottom:202.161266px;}
.yb0{bottom:203.192741px;}
.y2d{bottom:205.903500px;}
.y189{bottom:207.019263px;}
.y4b{bottom:207.727500px;}
.yd4{bottom:209.668500px;}
.y187{bottom:210.197678px;}
.y174{bottom:210.433448px;}
.y74{bottom:211.546500px;}
.y4a{bottom:224.166000px;}
.yc2{bottom:225.640500px;}
.yd3{bottom:226.107000px;}
.y73{bottom:227.985000px;}
.y2c{bottom:230.799000px;}
.yd2{bottom:242.545500px;}
.y72{bottom:244.423500px;}
.y2b{bottom:247.237500px;}
.y49{bottom:249.570000px;}
.yc1{bottom:251.046000px;}
.y14d{bottom:253.390500px;}
.y54{bottom:258.725550px;}
.yd1{bottom:258.984000px;}
.y71{bottom:260.862000px;}
.yac{bottom:262.725000px;}
.y2a{bottom:263.676000px;}
.y48{bottom:266.008500px;}
.yc0{bottom:267.484500px;}
.y14c{bottom:269.829000px;}
.y70{bottom:277.300500px;}
.y29{bottom:280.114500px;}
.y1a6{bottom:280.201500px;}
.y11c{bottom:281.544000px;}
.y47{bottom:282.447000px;}
.ybf{bottom:283.923000px;}
.yd0{bottom:286.032000px;}
.y14b{bottom:286.267500px;}
.y6f{bottom:293.739000px;}
.y11b{bottom:297.982500px;}
.y46{bottom:298.885500px;}
.yab{bottom:299.119500px;}
.ybe{bottom:300.361500px;}
.y14a{bottom:302.706000px;}
.y59{bottom:304.004100px;}
.y10b{bottom:304.348500px;}
.y28{bottom:305.518500px;}
.y6e{bottom:310.177500px;}
.ycf{bottom:310.689000px;}
.y11a{bottom:314.421000px;}
.y45{bottom:315.324000px;}
.yaa{bottom:315.558000px;}
.y149{bottom:319.144500px;}
.y27{bottom:321.957000px;}
.y1a5{bottom:322.309500px;}
.y6d{bottom:326.616000px;}
.yce{bottom:327.127500px;}
.ybd{bottom:327.409500px;}
.y10a{bottom:329.007000px;}
.y119{bottom:330.859500px;}
.y44{bottom:331.762500px;}
.ya9{bottom:331.996500px;}
.y148{bottom:335.583000px;}
.y26{bottom:338.395500px;}
.y1a4{bottom:338.748000px;}
.y6c{bottom:343.054500px;}
.y118{bottom:347.298000px;}
.y43{bottom:348.201000px;}
.ya8{bottom:348.435000px;}
.y147{bottom:352.021500px;}
.ybc{bottom:352.068000px;}
.ycd{bottom:352.533000px;}
.y109{bottom:354.411000px;}
.y25{bottom:354.834000px;}
.y1a3{bottom:355.186500px;}
.y6b{bottom:359.493000px;}
.y117{bottom:363.736500px;}
.y42{bottom:364.639500px;}
.ya7{bottom:364.873500px;}
.y146{bottom:368.458500px;}
.y16d{bottom:368.460000px;}
.ybb{bottom:368.506500px;}
.ycc{bottom:368.971500px;}
.y108{bottom:370.849500px;}
.y24{bottom:371.272500px;}
.y1a2{bottom:371.625000px;}
.y6a{bottom:375.931500px;}
.y116{bottom:380.175000px;}
.y41{bottom:381.078000px;}
.ya6{bottom:381.312000px;}
.y145{bottom:384.897000px;}
.y16c{bottom:384.898500px;}
.yba{bottom:384.945000px;}
.y107{bottom:387.288000px;}
.y23{bottom:387.711000px;}
.y1a1{bottom:388.062000px;}
.y69{bottom:392.370000px;}
.ycb{bottom:396.019500px;}
.y115{bottom:396.613500px;}
.y40{bottom:397.516500px;}
.ya5{bottom:397.749000px;}
.y144{bottom:401.335500px;}
.y16b{bottom:401.337000px;}
.yb9{bottom:401.383500px;}
.y106{bottom:403.726500px;}
.y22{bottom:404.149500px;}
.y1a0{bottom:404.500500px;}
.y58{bottom:406.117650px;}
.y68{bottom:408.808500px;}
.y3f{bottom:413.955000px;}
.ya4{bottom:414.187500px;}
.y143{bottom:417.774000px;}
.yb8{bottom:417.822000px;}
.y105{bottom:420.165000px;}
.y21{bottom:420.588000px;}
.yca{bottom:420.678000px;}
.y19f{bottom:420.939000px;}
.y114{bottom:422.017500px;}
.y67{bottom:425.247000px;}
.y3e{bottom:430.393500px;}
.ya3{bottom:430.626000px;}
.y142{bottom:434.212500px;}
.yb7{bottom:434.260500px;}
.y104{bottom:436.603500px;}
.y20{bottom:437.026500px;}
.y19e{bottom:437.377500px;}
.y113{bottom:438.456000px;}
.y66{bottom:441.685500px;}
.yc9{bottom:446.082000px;}
.y3d{bottom:446.832000px;}
.ya2{bottom:447.064500px;}
.y57{bottom:449.880600px;}
.y141{bottom:450.651000px;}
.y103{bottom:453.042000px;}
.y1f{bottom:453.465000px;}
.y19d{bottom:453.816000px;}
.y112{bottom:454.894500px;}
.y55{bottom:457.079700px;}
.y1cd{bottom:458.124000px;}
.yb6{bottom:461.308500px;}
.yc8{bottom:462.520500px;}
.y3c{bottom:463.270500px;}
.ya1{bottom:463.503000px;}
.y65{bottom:467.089500px;}
.y1e{bottom:469.903500px;}
.y19c{bottom:470.254500px;}
.y56{bottom:470.341200px;}
.y111{bottom:471.333000px;}
.y1cc{bottom:474.562500px;}
.y3b{bottom:479.709000px;}
.ya0{bottom:479.941500px;}
.y64{bottom:483.528000px;}
.y1d{bottom:486.342000px;}
.y19b{bottom:486.693000px;}
.y110{bottom:487.771500px;}
.y102{bottom:488.427000px;}
.y1cb{bottom:491.001000px;}
.y140{bottom:492.495000px;}
.yb5{bottom:494.484000px;}
.y3a{bottom:496.147500px;}
.y9f{bottom:496.380000px;}
.y63{bottom:499.966500px;}
.y1c{bottom:502.780500px;}
.y19a{bottom:503.131500px;}
.y1ca{bottom:507.439500px;}
.y13f{bottom:508.933500px;}
.yb4{bottom:510.922500px;}
.y39{bottom:512.586000px;}
.y9e{bottom:512.818500px;}
.y62{bottom:516.405000px;}
.y1b{bottom:519.219000px;}
.y199{bottom:519.570000px;}
.y10f{bottom:521.230500px;}
.y1c9{bottom:523.878000px;}
.y13e{bottom:525.372000px;}
.y101{bottom:528.373500px;}
.y38{bottom:529.024500px;}
.y61{bottom:532.843500px;}
.y1a{bottom:535.657500px;}
.y198{bottom:536.008500px;}
.y1c8{bottom:540.315000px;}
.y13d{bottom:541.810500px;}
.y100{bottom:544.812000px;}
.y37{bottom:545.463000px;}
.yb2{bottom:546.040500px;}
.y9d{bottom:547.558500px;}
.y60{bottom:549.282000px;}
.y19{bottom:552.096000px;}
.y10e{bottom:553.777500px;}
.y1c7{bottom:556.753500px;}
.y13c{bottom:558.249000px;}
.yff{bottom:561.250500px;}
.y197{bottom:561.414000px;}
.y36{bottom:561.901500px;}
.y5f{bottom:565.720500px;}
.y18{bottom:568.534500px;}
.y10d{bottom:570.216000px;}
.y1c6{bottom:573.192000px;}
.y16a{bottom:574.687500px;}
.yfe{bottom:577.689000px;}
.y196{bottom:577.852500px;}
.y35{bottom:578.338500px;}
.y13b{bottom:583.653000px;}
.y9c{bottom:583.953000px;}
.y17{bottom:584.973000px;}
.y10c{bottom:586.654500px;}
.y1c5{bottom:589.630500px;}
.y169{bottom:591.126000px;}
.y5e{bottom:599.454000px;}
.y13a{bottom:600.091500px;}
.y9b{bottom:600.391500px;}
.yfd{bottom:603.093000px;}
.y34{bottom:603.744000px;}
.y195{bottom:605.728500px;}
.y1c4{bottom:606.069000px;}
.y168{bottom:607.564500px;}
.y139{bottom:616.530000px;}
.y9a{bottom:616.830000px;}
.yfc{bottom:619.531500px;}
.y16{bottom:620.182500px;}
.y194{bottom:622.167000px;}
.y1c3{bottom:622.507500px;}
.y5d{bottom:623.973000px;}
.y167{bottom:624.003000px;}
.y138{bottom:632.968500px;}
.y99{bottom:633.268500px;}
.y1c2{bottom:638.946000px;}
.y166{bottom:640.441500px;}
.y98{bottom:649.707000px;}
.y183{bottom:650.560500px;}
.y137{bottom:651.478500px;}
.y51{bottom:652.366500px;}
.y1c1{bottom:655.384500px;}
.y15{bottom:657.891000px;}
.yfb{bottom:659.019011px;}
.y136{bottom:661.729500px;}
.y97{bottom:666.144000px;}
.y1c0{bottom:671.823000px;}
.y14{bottom:674.329500px;}
.y165{bottom:675.102000px;}
.yfa{bottom:675.483310px;}
.yb3{bottom:679.294500px;}
.y1bf{bottom:688.261500px;}
.yf9{bottom:688.891566px;}
.y96{bottom:691.549500px;}
.y135{bottom:691.630500px;}
.y164{bottom:702.250500px;}
.yf8{bottom:702.299821px;}
.y1be{bottom:704.700000px;}
.y95{bottom:707.988000px;}
.y13{bottom:711.439500px;}
.y134{bottom:711.730500px;}
.yf7{bottom:715.708076px;}
.y163{bottom:718.689000px;}
.y1bd{bottom:721.138500px;}
.y94{bottom:724.426500px;}
.y12{bottom:727.878000px;}
.y133{bottom:728.169000px;}
.yf6{bottom:729.117691px;}
.y162{bottom:735.127500px;}
.y1bc{bottom:737.577000px;}
.y93{bottom:740.865000px;}
.yf5{bottom:742.525946px;}
.y11{bottom:744.316500px;}
.y132{bottom:744.607500px;}
.y1bb{bottom:754.015500px;}
.yf4{bottom:755.934202px;}
.y92{bottom:757.303500px;}
.y10{bottom:760.755000px;}
.y131{bottom:761.046000px;}
.y154{bottom:763.521000px;}
.yf3{bottom:769.342457px;}
.y1ba{bottom:770.454000px;}
.y91{bottom:773.742000px;}
.yf{bottom:777.193500px;}
.y130{bottom:777.484500px;}
.yf2{bottom:782.750712px;}
.y1b9{bottom:786.892500px;}
.ye{bottom:793.632000px;}
.yf1{bottom:796.158968px;}
.y12f{bottom:797.583000px;}
.y90{bottom:799.146000px;}
.y1b8{bottom:803.331000px;}
.yf0{bottom:809.567223px;}
.yd{bottom:810.070500px;}
.yb1{bottom:813.792000px;}
.y8f{bottom:815.584500px;}
.y12e{bottom:817.681500px;}
.y1b7{bottom:819.769500px;}
.yef{bottom:822.975478px;}
.yc{bottom:826.509000px;}
.y8e{bottom:832.023000px;}
.y12d{bottom:834.120000px;}
.y1b6{bottom:836.208000px;}
.yee{bottom:836.383734px;}
.yad{bottom:842.185500px;}
.yb{bottom:842.947500px;}
.y8d{bottom:848.461500px;}
.yed{bottom:849.791989px;}
.y12c{bottom:850.558500px;}
.y1b5{bottom:852.646500px;}
.yec{bottom:863.200245px;}
.y8c{bottom:864.900000px;}
.y12b{bottom:866.997000px;}
.y1b4{bottom:869.085000px;}
.yeb{bottom:876.608500px;}
.y8b{bottom:881.338500px;}
.y12a{bottom:883.435500px;}
.ya{bottom:884.626500px;}
.y1b3{bottom:885.523500px;}
.yea{bottom:890.016755px;}
.y182{bottom:890.314500px;}
.y8a{bottom:897.777000px;}
.y129{bottom:899.874000px;}
.ye9{bottom:903.425011px;}
.y9{bottom:906.489000px;}
.y181{bottom:906.753000px;}
.y1b2{bottom:908.536500px;}
.y89{bottom:914.215500px;}
.y128{bottom:916.312500px;}
.ye8{bottom:916.833266px;}
.y8{bottom:917.503500px;}
.ye7{bottom:930.241521px;}
.y88{bottom:930.654000px;}
.y7{bottom:933.942000px;}
.y170{bottom:935.146500px;}
.y1b1{bottom:938.125500px;}
.ye6{bottom:943.649777px;}
.y87{bottom:947.092500px;}
.y127{bottom:949.039500px;}
.y1b0{bottom:954.564000px;}
.y6{bottom:955.803000px;}
.ye5{bottom:957.058032px;}
.y86{bottom:963.531000px;}
.ye4{bottom:970.466287px;}
.y1af{bottom:971.002500px;}
.y85{bottom:979.969500px;}
.y126{bottom:980.119500px;}
.ye3{bottom:983.875902px;}
.y5{bottom:984.751500px;}
.y1ae{bottom:987.441000px;}
.y84{bottom:996.408000px;}
.y125{bottom:996.558000px;}
.y153{bottom:997.084500px;}
.ye2{bottom:997.284157px;}
.y4{bottom:1001.190000px;}
.y1ad{bottom:1003.879500px;}
.ye1{bottom:1010.692413px;}
.y152{bottom:1011.879000px;}
.y83{bottom:1012.846500px;}
.y124{bottom:1012.996500px;}
.y1ac{bottom:1020.318000px;}
.ye0{bottom:1024.100668px;}
.y151{bottom:1026.673500px;}
.y82{bottom:1029.285000px;}
.y123{bottom:1029.435000px;}
.y1ab{bottom:1036.756500px;}
.ydf{bottom:1037.508924px;}
.y3{bottom:1038.550500px;}
.y150{bottom:1041.468000px;}
.y81{bottom:1045.723500px;}
.y122{bottom:1045.873500px;}
.yde{bottom:1050.917179px;}
.y1aa{bottom:1053.195000px;}
.y14f{bottom:1056.262500px;}
.y80{bottom:1062.162000px;}
.y121{bottom:1062.312000px;}
.ydd{bottom:1064.325434px;}
.y2{bottom:1064.851500px;}
.y1a9{bottom:1069.633500px;}
.ydc{bottom:1077.733690px;}
.y14e{bottom:1078.558500px;}
.y7f{bottom:1078.600500px;}
.y120{bottom:1078.750500px;}
.y1a8{bottom:1086.072000px;}
.ydb{bottom:1091.141945px;}
.y1{bottom:1091.154000px;}
.y7e{bottom:1095.039000px;}
.y11f{bottom:1095.189000px;}
.y1a7{bottom:1102.510500px;}
.yda{bottom:1111.348810px;}
.y7d{bottom:1111.477500px;}
.y11e{bottom:1111.627500px;}
.y7c{bottom:1127.916000px;}
.yd9{bottom:1141.960500px;}
.y7b{bottom:1144.354500px;}
.he{height:18.282227px;}
.hc{height:19.339688px;}
.ha{height:22.102500px;}
.h19{height:22.337167px;}
.h12{height:22.883515px;}
.h1b{height:24.535101px;}
.h1a{height:24.571425px;}
.h1e{height:26.208289px;}
.h1f{height:28.811831px;}
.h20{height:28.829118px;}
.h5{height:29.457331px;}
.h10{height:32.504857px;}
.hb{height:32.980088px;}
.h7{height:33.187496px;}
.h8{height:35.865450px;}
.hf{height:37.299974px;}
.h11{height:38.180047px;}
.h17{height:42.127382px;}
.h6{height:44.831700px;}
.h1c{height:51.147331px;}
.h4{height:51.153331px;}
.h2{height:58.580340px;}
.h13{height:60.605700px;}
.h3{height:70.786435px;}
.h14{height:82.575798px;}
.h16{height:85.835700px;}
.h15{height:123.579798px;}
.h18{height:212.243100px;}
.h21{height:219.266100px;}
.h1d{height:219.501870px;}
.hd{height:312.464655px;}
.h9{height:502.295100px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:342.399300px;}
.w5{width:376.288920px;}
.w4{width:376.301280px;}
.w3{width:773.881995px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:1.152488px;}
.x2e{left:6.133826px;}
.x32{left:7.202962px;}
.x2d{left:9.919794px;}
.x2c{left:16.114988px;}
.x31{left:17.576842px;}
.x2a{left:20.933480px;}
.xd{left:61.228500px;}
.x1d{left:69.331292px;}
.x34{left:71.332214px;}
.xf{left:78.160500px;}
.x1a{left:91.116000px;}
.x22{left:98.833500px;}
.x20{left:120.313500px;}
.xb{left:138.613500px;}
.x21{left:144.892500px;}
.x1c{left:151.482856px;}
.x23{left:163.285500px;}
.xc{left:178.809000px;}
.x35{left:182.576516px;}
.x2b{left:184.073852px;}
.x39{left:189.084000px;}
.x13{left:194.583000px;}
.x1f{left:197.697000px;}
.x2f{left:211.187621px;}
.x1b{left:213.724500px;}
.x6{left:222.117000px;}
.x15{left:232.068283px;}
.x7{left:241.708500px;}
.x24{left:247.047000px;}
.x4{left:249.154500px;}
.x26{left:253.599000px;}
.x5{left:258.816000px;}
.x3{left:262.303500px;}
.x2{left:267.042000px;}
.xa{left:283.821000px;}
.x9{left:291.729000px;}
.x36{left:295.702734px;}
.x38{left:297.096135px;}
.x1{left:299.575500px;}
.x37{left:316.929107px;}
.x33{left:318.077307px;}
.x25{left:325.741500px;}
.x12{left:337.284495px;}
.x11{left:338.955997px;}
.x8{left:342.538500px;}
.x17{left:451.407272px;}
.xe{left:458.787000px;}
.x1e{left:467.754000px;}
.x3b{left:473.728500px;}
.x29{left:482.527500px;}
.x30{left:488.676000px;}
.x27{left:496.416000px;}
.x28{left:589.797000px;}
.x14{left:594.114000px;}
.x3a{left:595.567500px;}
.x16{left:625.478692px;}
.x19{left:704.823000px;}
.x18{left:715.846500px;}
@media print{
.v3{vertical-align:-19.280000pt;}
.v4{vertical-align:-15.002667pt;}
.v7{vertical-align:-13.592083pt;}
.v9{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.124800pt;}
.v6{vertical-align:13.596917pt;}
.vc{vertical-align:15.349333pt;}
.v2{vertical-align:19.285333pt;}
.v8{vertical-align:21.936000pt;}
.v1{vertical-align:26.992000pt;}
.vb{vertical-align:28.474667pt;}
.va{vertical-align:35.941333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.000258pt;}
.ls24{letter-spacing:0.001995pt;}
.ls26{letter-spacing:0.004134pt;}
.ls34{letter-spacing:0.510086pt;}
.ls27{letter-spacing:1.434614pt;}
.ls12{letter-spacing:1.487748pt;}
.ls2c{letter-spacing:1.530259pt;}
.ls3a{letter-spacing:1.873706pt;}
.lsb{letter-spacing:2.405489pt;}
.ls1e{letter-spacing:2.656631pt;}
.ls38{letter-spacing:2.657253pt;}
.ls1c{letter-spacing:2.661964pt;}
.ls9{letter-spacing:2.661992pt;}
.ls36{letter-spacing:3.018011pt;}
.ls2a{letter-spacing:3.825638pt;}
.ls20{letter-spacing:6.349700pt;}
.lsc{letter-spacing:6.818797pt;}
.ls13{letter-spacing:7.013964pt;}
.ls11{letter-spacing:7.385607pt;}
.ls32{letter-spacing:7.523774pt;}
.ls23{letter-spacing:9.035297pt;}
.ls30{letter-spacing:10.031699pt;}
.ls31{letter-spacing:10.184852pt;}
.ls16{letter-spacing:10.233000pt;}
.ls1{letter-spacing:11.515919pt;}
.ls14{letter-spacing:11.795718pt;}
.ls15{letter-spacing:11.848852pt;}
.ls28{letter-spacing:12.380191pt;}
.ls1b{letter-spacing:13.283467pt;}
.lsa{letter-spacing:13.637593pt;}
.ls10{letter-spacing:14.133609pt;}
.ls1d{letter-spacing:14.771215pt;}
.lsd{letter-spacing:16.048808pt;}
.ls6{letter-spacing:16.379919pt;}
.ls8{letter-spacing:16.524633pt;}
.ls3c{letter-spacing:17.693578pt;}
.ls33{letter-spacing:17.710186pt;}
.ls2e{letter-spacing:17.715519pt;}
.ls7{letter-spacing:17.746711pt;}
.ls29{letter-spacing:17.799845pt;}
.ls3{letter-spacing:18.012381pt;}
.lsf{letter-spacing:18.331184pt;}
.ls1a{letter-spacing:20.190869pt;}
.ls0{letter-spacing:20.369253pt;}
.ls3b{letter-spacing:21.393253pt;}
.ls21{letter-spacing:21.451521pt;}
.lse{letter-spacing:21.944287pt;}
.ls18{letter-spacing:22.263090pt;}
.ls2{letter-spacing:22.578591pt;}
.ls3d{letter-spacing:22.728209pt;}
.ls19{letter-spacing:23.272634pt;}
.ls22{letter-spacing:50.485266pt;}
.ls2d{letter-spacing:63.760800pt;}
.ls35{letter-spacing:105.205320pt;}
.ls25{letter-spacing:124.439516pt;}
.ls17{letter-spacing:142.186227pt;}
.ls2f{letter-spacing:188.901997pt;}
.ls2b{letter-spacing:197.233408pt;}
.ls37{letter-spacing:256.530952pt;}
.ls1f{letter-spacing:803.437198pt;}
.ls5{letter-spacing:1186.057815pt;}
.wsfd{word-spacing:-53.133867pt;}
.wsf2{word-spacing:-44.260511pt;}
.wsc1{word-spacing:-34.611401pt;}
.wsa{word-spacing:-30.847953pt;}
.wsc5{word-spacing:-27.225793pt;}
.wsc9{word-spacing:-27.192748pt;}
.ws100{word-spacing:-27.156719pt;}
.ws67{word-spacing:-26.566933pt;}
.wsec{word-spacing:-26.069789pt;}
.wsc3{word-spacing:-24.675368pt;}
.ws7{word-spacing:-21.989286pt;}
.ws2{word-spacing:-21.989155pt;}
.wsdd{word-spacing:-20.067649pt;}
.ws46{word-spacing:-14.771215pt;}
.ws8c{word-spacing:-14.760588pt;}
.ws22{word-spacing:-14.718081pt;}
.ws79{word-spacing:-14.664947pt;}
.ws7c{word-spacing:-14.611813pt;}
.wsd{word-spacing:-14.558679pt;}
.ws78{word-spacing:-14.452412pt;}
.ws106{word-spacing:-14.399278pt;}
.wsaf{word-spacing:-14.346144pt;}
.wse9{word-spacing:-14.293010pt;}
.ws57{word-spacing:-14.239876pt;}
.wsef{word-spacing:-14.186742pt;}
.ws42{word-spacing:-14.133609pt;}
.wsb1{word-spacing:-13.974207pt;}
.ws45{word-spacing:-13.921073pt;}
.ws60{word-spacing:-13.761671pt;}
.ws3a{word-spacing:-13.708538pt;}
.wsae{word-spacing:-13.655404pt;}
.wsa3{word-spacing:-13.649151pt;}
.ws89{word-spacing:-13.602270pt;}
.ws10a{word-spacing:-13.554449pt;}
.ws7d{word-spacing:-13.549136pt;}
.wsb9{word-spacing:-13.496002pt;}
.ws72{word-spacing:-13.442868pt;}
.ws8d{word-spacing:-13.336601pt;}
.wsc7{word-spacing:-13.283467pt;}
.ws107{word-spacing:-13.235646pt;}
.wsfa{word-spacing:-13.230333pt;}
.ws34{word-spacing:-13.177199pt;}
.wsf7{word-spacing:-13.124065pt;}
.ws77{word-spacing:-13.070931pt;}
.ws58{word-spacing:-13.017797pt;}
.ws64{word-spacing:-12.858396pt;}
.ws5e{word-spacing:-12.805262pt;}
.ws5b{word-spacing:-12.752128pt;}
.ws14{word-spacing:-12.645860pt;}
.ws6e{word-spacing:-12.592726pt;}
.wsdc{word-spacing:-12.543875pt;}
.ws48{word-spacing:-12.539593pt;}
.ws7f{word-spacing:-12.486459pt;}
.ws3f{word-spacing:-12.433325pt;}
.wsd6{word-spacing:-12.380191pt;}
.wsbc{word-spacing:-12.273923pt;}
.ws3e{word-spacing:-12.220789pt;}
.ws47{word-spacing:-12.167655pt;}
.ws4d{word-spacing:-12.114522pt;}
.wsb3{word-spacing:-12.061388pt;}
.wsf3{word-spacing:-12.008254pt;}
.ws54{word-spacing:-11.955120pt;}
.ws59{word-spacing:-11.901986pt;}
.wsf1{word-spacing:-11.795718pt;}
.ws65{word-spacing:-11.689451pt;}
.ws8f{word-spacing:-11.636317pt;}
.ws56{word-spacing:-11.583183pt;}
.ws29{word-spacing:-11.476915pt;}
.ws2b{word-spacing:-11.423781pt;}
.wscb{word-spacing:-11.370647pt;}
.wsce{word-spacing:-11.317514pt;}
.wsee{word-spacing:-11.264380pt;}
.ws26{word-spacing:-11.211246pt;}
.wscc{word-spacing:-11.158112pt;}
.wse7{word-spacing:-11.104978pt;}
.ws53{word-spacing:-11.051844pt;}
.ws43{word-spacing:-10.998710pt;}
.ws25{word-spacing:-10.945577pt;}
.ws4a{word-spacing:-10.892443pt;}
.wsd8{word-spacing:-10.839309pt;}
.wsdf{word-spacing:-10.786175pt;}
.ws6f{word-spacing:-10.733041pt;}
.wsd5{word-spacing:-10.679907pt;}
.ws3d{word-spacing:-10.626773pt;}
.wsa6{word-spacing:-10.573639pt;}
.ws5d{word-spacing:-10.520506pt;}
.ws80{word-spacing:-10.467372pt;}
.ws108{word-spacing:-10.414238pt;}
.ws5f{word-spacing:-10.361104pt;}
.ws1d{word-spacing:-10.307970pt;}
.wsb8{word-spacing:-10.254836pt;}
.ws1c{word-spacing:-10.201702pt;}
.wsba{word-spacing:-10.148569pt;}
.ws39{word-spacing:-10.095435pt;}
.wsf8{word-spacing:-10.042301pt;}
.ws41{word-spacing:-9.989167pt;}
.wsbd{word-spacing:-9.936033pt;}
.ws5c{word-spacing:-9.882899pt;}
.ws28{word-spacing:-9.829765pt;}
.ws49{word-spacing:-9.776631pt;}
.ws2c{word-spacing:-9.704394pt;}
.wsbb{word-spacing:-9.670364pt;}
.ws24{word-spacing:-9.617230pt;}
.ws109{word-spacing:-9.569409pt;}
.ws21{word-spacing:-9.564096pt;}
.ws1e{word-spacing:-9.510962pt;}
.wsb2{word-spacing:-9.457828pt;}
.ws44{word-spacing:-9.404694pt;}
.wseb{word-spacing:-9.351561pt;}
.ws6d{word-spacing:-9.298427pt;}
.wsff{word-spacing:-9.250606pt;}
.wsaa{word-spacing:-9.245293pt;}
.ws103{word-spacing:-9.197472pt;}
.wsf9{word-spacing:-9.192159pt;}
.ws10f{word-spacing:-9.144338pt;}
.ws2a{word-spacing:-9.085891pt;}
.wsd7{word-spacing:-9.032757pt;}
.ws66{word-spacing:-8.926490pt;}
.ws2f{word-spacing:-8.896757pt;}
.ws15{word-spacing:-8.873356pt;}
.wsbf{word-spacing:-8.820222pt;}
.ws19{word-spacing:-8.767088pt;}
.wsa7{word-spacing:-8.713954pt;}
.wse{word-spacing:-8.660820pt;}
.ws2d{word-spacing:-8.641714pt;}
.ws20{word-spacing:-8.607686pt;}
.ws36{word-spacing:-8.554553pt;}
.ws71{word-spacing:-8.501419pt;}
.ws68{word-spacing:-8.448285pt;}
.ws32{word-spacing:-8.429178pt;}
.wsf5{word-spacing:-8.342017pt;}
.wsc6{word-spacing:-8.288883pt;}
.ws52{word-spacing:-8.235749pt;}
.wsb{word-spacing:-8.187929pt;}
.ws37{word-spacing:-8.182615pt;}
.ws9{word-spacing:-8.134795pt;}
.wsea{word-spacing:-8.076348pt;}
.ws3b{word-spacing:-8.023214pt;}
.wsbe{word-spacing:-7.916946pt;}
.wsf{word-spacing:-7.863812pt;}
.ws1b{word-spacing:-7.810678pt;}
.ws73{word-spacing:-7.757545pt;}
.wsd3{word-spacing:-7.704411pt;}
.ws33{word-spacing:-7.651277pt;}
.ws101{word-spacing:-7.545009pt;}
.ws87{word-spacing:-7.536527pt;}
.ws88{word-spacing:-7.494019pt;}
.ws6a{word-spacing:-7.491875pt;}
.wsc0{word-spacing:-7.385607pt;}
.ws62{word-spacing:-7.332474pt;}
.wse4{word-spacing:-7.279340pt;}
.ws3c{word-spacing:-7.226206pt;}
.wsf0{word-spacing:-7.173072pt;}
.ws8e{word-spacing:-7.066804pt;}
.wsb0{word-spacing:-7.013670pt;}
.ws8b{word-spacing:-6.960537pt;}
.ws4e{word-spacing:-6.907403pt;}
.ws63{word-spacing:-6.854269pt;}
.ws93{word-spacing:-6.830354pt;}
.ws9b{word-spacing:-6.791830pt;}
.ws105{word-spacing:-6.753314pt;}
.ws70{word-spacing:-6.694867pt;}
.ws61{word-spacing:-6.641733pt;}
.ws55{word-spacing:-6.588599pt;}
.ws11{word-spacing:-6.535466pt;}
.wsd0{word-spacing:-6.482332pt;}
.ws84{word-spacing:-6.429198pt;}
.ws81{word-spacing:-6.376064pt;}
.ws27{word-spacing:-6.322930pt;}
.ws76{word-spacing:-6.216662pt;}
.ws17{word-spacing:-6.163529pt;}
.wse8{word-spacing:-6.110395pt;}
.ws112{word-spacing:-6.062574pt;}
.ws74{word-spacing:-6.057261pt;}
.wsf4{word-spacing:-6.004127pt;}
.ws8a{word-spacing:-5.950993pt;}
.ws51{word-spacing:-5.940366pt;}
.wse2{word-spacing:-5.897859pt;}
.ws4f{word-spacing:-5.887232pt;}
.ws13{word-spacing:-5.844725pt;}
.ws50{word-spacing:-5.791591pt;}
.ws18{word-spacing:-5.685324pt;}
.wscd{word-spacing:-5.525922pt;}
.wsc4{word-spacing:-5.515295pt;}
.wse1{word-spacing:-5.472788pt;}
.ws7b{word-spacing:-5.419654pt;}
.wsd1{word-spacing:-5.313387pt;}
.wsb6{word-spacing:-5.260253pt;}
.ws110{word-spacing:-5.207119pt;}
.ws86{word-spacing:-5.071109pt;}
.wse0{word-spacing:-5.047717pt;}
.wsda{word-spacing:-5.020100pt;}
.wsfe{word-spacing:-4.994583pt;}
.ws5a{word-spacing:-4.941450pt;}
.wsb4{word-spacing:-4.622646pt;}
.ws6b{word-spacing:-4.569513pt;}
.ws94{word-spacing:-4.549717pt;}
.ws98{word-spacing:-4.511193pt;}
.wsa8{word-spacing:-4.463245pt;}
.ws4c{word-spacing:-4.410111pt;}
.ws7a{word-spacing:-4.303843pt;}
.ws40{word-spacing:-4.250709pt;}
.wse3{word-spacing:-4.197575pt;}
.ws6c{word-spacing:-4.144442pt;}
.ws35{word-spacing:-4.091308pt;}
.wsd2{word-spacing:-3.825638pt;}
.ws69{word-spacing:-3.772505pt;}
.ws31{word-spacing:-3.498343pt;}
.ws102{word-spacing:-3.453701pt;}
.wsd4{word-spacing:-3.294300pt;}
.wsfb{word-spacing:-3.241166pt;}
.ws38{word-spacing:-3.188032pt;}
.wsa9{word-spacing:-3.134898pt;}
.wsc8{word-spacing:-2.964870pt;}
.wse5{word-spacing:-2.869229pt;}
.ws10{word-spacing:-2.762961pt;}
.wscf{word-spacing:-2.656693pt;}
.ws83{word-spacing:-2.603559pt;}
.wsf6{word-spacing:-2.550426pt;}
.wsdb{word-spacing:-2.512176pt;}
.ws10c{word-spacing:-2.391024pt;}
.ws1a{word-spacing:-2.284756pt;}
.ws10d{word-spacing:-2.125355pt;}
.wse6{word-spacing:-2.072221pt;}
.ws12{word-spacing:-2.019087pt;}
.ws10b{word-spacing:-1.806551pt;}
.ws111{word-spacing:-1.753418pt;}
.ws7e{word-spacing:-1.381481pt;}
.ws30{word-spacing:-1.372983pt;}
.ws1f{word-spacing:-1.168945pt;}
.ws23{word-spacing:-1.009543pt;}
.ws10e{word-spacing:-0.690740pt;}
.wsfc{word-spacing:-0.478205pt;}
.ws104{word-spacing:-0.265669pt;}
.ws4b{word-spacing:-0.212535pt;}
.ws75{word-spacing:-0.053134pt;}
.wsc2{word-spacing:-0.042507pt;}
.ws91{word-spacing:-0.038524pt;}
.ws16{word-spacing:0.000000pt;}
.wsca{word-spacing:0.010627pt;}
.ws113{word-spacing:3.134898pt;}
.ws2e{word-spacing:3.430331pt;}
.ws92{word-spacing:7.820428pt;}
.ws1{word-spacing:8.784977pt;}
.ws6{word-spacing:8.806298pt;}
.ws3{word-spacing:8.807292pt;}
.ws5{word-spacing:8.817960pt;}
.ws4{word-spacing:8.820494pt;}
.ws8{word-spacing:8.823461pt;}
.ws82{word-spacing:12.433325pt;}
.wsc{word-spacing:13.761671pt;}
.ws90{word-spacing:15.717904pt;}
.wsab{word-spacing:17.268507pt;}
.wsac{word-spacing:17.640444pt;}
.ws85{word-spacing:20.137735pt;}
.wsb5{word-spacing:21.253547pt;}
.wsb7{word-spacing:21.306681pt;}
.ws0{word-spacing:27.821012pt;}
.wsad{word-spacing:31.827186pt;}
.ws96{word-spacing:37.318466pt;}
.ws97{word-spacing:51.110156pt;}
.wsa5{word-spacing:57.747889pt;}
.ws95{word-spacing:57.774856pt;}
.wsa4{word-spacing:78.231246pt;}
.ws9a{word-spacing:103.426122pt;}
.ws9e{word-spacing:126.039872pt;}
.wsed{word-spacing:131.422606pt;}
.wsde{word-spacing:138.547537pt;}
.ws9f{word-spacing:187.986906pt;}
.ws9c{word-spacing:190.799179pt;}
.wsa1{word-spacing:221.503026pt;}
.ws9d{word-spacing:249.933941pt;}
.wsa0{word-spacing:250.473281pt;}
.wsa2{word-spacing:254.479806pt;}
.ws99{word-spacing:360.660413pt;}
.wsd9{word-spacing:421.446136pt;}
._e{margin-left:-36.641105pt;}
._f{margin-left:-35.748485pt;}
._17{margin-left:-25.233400pt;}
._56{margin-left:-24.016508pt;}
._5b{margin-left:-17.667172pt;}
._a{margin-left:-7.321867pt;}
._4{margin-left:-5.100851pt;}
._6{margin-left:-4.091308pt;}
._0{margin-left:-2.306020pt;}
._7{margin-left:-1.264606pt;}
._5{width:1.264606pt;}
._1{width:2.306020pt;}
._5a{width:3.241166pt;}
._60{width:4.325107pt;}
._30{width:7.204205pt;}
._c{width:12.720258pt;}
._2{width:13.933490pt;}
._d{width:15.589486pt;}
._8{width:17.183502pt;}
._9{width:18.618117pt;}
._3{width:20.350271pt;}
._5c{width:21.986814pt;}
._5e{width:23.240763pt;}
._b{width:24.303441pt;}
._57{width:25.289979pt;}
._10{width:27.151406pt;}
._5d{width:30.605107pt;}
._63{width:34.377612pt;}
._5f{width:37.353108pt;}
._62{width:42.921557pt;}
._61{width:44.738716pt;}
._15{width:57.903025pt;}
._24{width:78.242803pt;}
._16{width:82.673095pt;}
._2e{width:92.073018pt;}
._1d{width:98.580772pt;}
._4e{width:115.271327pt;}
._1a{width:123.894070pt;}
._20{width:136.813092pt;}
._29{width:144.395679pt;}
._59{width:148.198532pt;}
._58{width:152.645386pt;}
._12{width:167.619122pt;}
._47{width:168.928947pt;}
._4c{width:171.625647pt;}
._22{width:192.050208pt;}
._1b{width:198.245921pt;}
._18{width:205.026193pt;}
._2f{width:209.071242pt;}
._4f{width:229.681730pt;}
._32{width:239.677956pt;}
._34{width:245.200317pt;}
._21{width:247.133226pt;}
._36{width:255.556652pt;}
._25{width:266.395364pt;}
._2b{width:268.668296pt;}
._31{width:269.862549pt;}
._28{width:275.378215pt;}
._1e{width:277.798550pt;}
._46{width:279.493618pt;}
._26{width:285.811599pt;}
._2c{width:301.003554pt;}
._39{width:332.117778pt;}
._40{width:333.119409pt;}
._1f{width:344.914533pt;}
._4a{width:354.770052pt;}
._3b{width:363.977354pt;}
._51{width:387.477162pt;}
._1c{width:397.955764pt;}
._44{width:403.587004pt;}
._13{width:416.556294pt;}
._3a{width:420.447246pt;}
._53{width:422.803922pt;}
._23{width:439.414580pt;}
._35{width:507.351316pt;}
._33{width:514.579938pt;}
._2d{width:574.782188pt;}
._3d{width:721.469239pt;}
._52{width:738.940490pt;}
._11{width:754.480339pt;}
._38{width:772.953359pt;}
._4b{width:915.336783pt;}
._19{width:946.602971pt;}
._45{width:951.703698pt;}
._2a{width:953.167621pt;}
._3e{width:1009.644209pt;}
._42{width:1019.352326pt;}
._3f{width:1022.126074pt;}
._3c{width:1032.373531pt;}
._27{width:1042.549542pt;}
._48{width:1072.817325pt;}
._4d{width:1089.625655pt;}
._41{width:1090.930430pt;}
._50{width:1097.049094pt;}
._43{width:1102.333615pt;}
._49{width:1124.208708pt;}
._14{width:1185.391953pt;}
._54{width:1188.204225pt;}
._37{width:1230.400604pt;}
._55{width:1348.019871pt;}
.fs6{font-size:23.892160pt;}
.fs5{font-size:25.147733pt;}
.fsa{font-size:28.596042pt;}
.fs4{font-size:28.740267pt;}
.fs8{font-size:28.893327pt;}
.fsc{font-size:31.409837pt;}
.fsb{font-size:31.456340pt;}
.fs9{font-size:31.880533pt;}
.fsd{font-size:33.551852pt;}
.fse{font-size:36.884907pt;}
.fsf{font-size:36.907038pt;}
.fs2{font-size:37.193600pt;}
.fs7{font-size:38.524275pt;}
.fs3{font-size:42.507200pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:74.387733pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:0.081273pt;}
.y156{bottom:1.736426pt;}
.y179{bottom:2.027540pt;}
.y18c{bottom:2.027704pt;}
.yae{bottom:6.973604pt;}
.y155{bottom:11.132399pt;}
.y178{bottom:12.652340pt;}
.y18b{bottom:12.652508pt;}
.y17a{bottom:19.747215pt;}
.y18d{bottom:19.747299pt;}
.y193{bottom:26.647249pt;}
.y157{bottom:30.179924pt;}
.y191{bottom:31.857662pt;}
.y17e{bottom:32.119628pt;}
.y192{bottom:36.124155pt;}
.y5c{bottom:46.253867pt;}
.y18e{bottom:47.986886pt;}
.y17b{bottom:48.056800pt;}
.y52{bottom:52.316267pt;}
.y158{bottom:55.099583pt;}
.y18f{bottom:76.226474pt;}
.y17c{bottom:76.366175pt;}
.y159{bottom:80.019447pt;}
.y53{bottom:81.786267pt;}
.y15e{bottom:86.198488pt;}
.y180{bottom:87.304269pt;}
.y17f{bottom:96.883028pt;}
.y5b{bottom:97.447467pt;}
.y7a{bottom:100.369333pt;}
.y33{bottom:100.370667pt;}
.y190{bottom:104.466061pt;}
.y17d{bottom:104.675760pt;}
.y15a{bottom:104.939311pt;}
.yc7{bottom:110.773333pt;}
.y50{bottom:111.586667pt;}
.y184{bottom:112.333402pt;}
.y171{bottom:112.542976pt;}
.yd8{bottom:112.648000pt;}
.y32{bottom:113.521333pt;}
.y5a{bottom:113.613867pt;}
.y79{bottom:114.981333pt;}
.y16f{bottom:114.982667pt;}
.y177{bottom:119.706611pt;}
.yc6{bottom:125.385333pt;}
.y4f{bottom:126.198667pt;}
.y31{bottom:126.672000pt;}
.y176{bottom:129.285370pt;}
.y78{bottom:129.593333pt;}
.y16e{bottom:129.594667pt;}
.y15b{bottom:129.859175pt;}
.y188{bottom:133.618089pt;}
.y175{bottom:133.827663pt;}
.yd7{bottom:134.565333pt;}
.y185{bottom:137.169729pt;}
.y172{bottom:137.379302pt;}
.y30{bottom:139.822667pt;}
.yc5{bottom:139.997333pt;}
.y4e{bottom:140.810667pt;}
.y77{bottom:144.205333pt;}
.yd6{bottom:149.177333pt;}
.y2f{bottom:152.973333pt;}
.y11d{bottom:153.284000pt;}
.yc4{bottom:154.609333pt;}
.y15c{bottom:154.779039pt;}
.y4d{bottom:155.422667pt;}
.y161{bottom:157.587124pt;}
.y76{bottom:158.817333pt;}
.y186{bottom:162.006055pt;}
.y173{bottom:162.215628pt;}
.y2e{bottom:166.124000pt;}
.y160{bottom:166.165569pt;}
.y4c{bottom:170.034667pt;}
.yd5{bottom:171.760000pt;}
.y75{bottom:173.429333pt;}
.y18a{bottom:174.438364pt;}
.y15f{bottom:174.605833pt;}
.yc3{bottom:178.652000pt;}
.y15d{bottom:179.698903pt;}
.yb0{bottom:180.615770pt;}
.y2d{bottom:183.025333pt;}
.y189{bottom:184.017123pt;}
.y4b{bottom:184.646667pt;}
.yd4{bottom:186.372000pt;}
.y187{bottom:186.842381pt;}
.y174{bottom:187.051954pt;}
.y74{bottom:188.041333pt;}
.y4a{bottom:199.258667pt;}
.yc2{bottom:200.569333pt;}
.yd3{bottom:200.984000pt;}
.y73{bottom:202.653333pt;}
.y2c{bottom:205.154667pt;}
.yd2{bottom:215.596000pt;}
.y72{bottom:217.265333pt;}
.y2b{bottom:219.766667pt;}
.y49{bottom:221.840000pt;}
.yc1{bottom:223.152000pt;}
.y14d{bottom:225.236000pt;}
.y54{bottom:229.978267pt;}
.yd1{bottom:230.208000pt;}
.y71{bottom:231.877333pt;}
.yac{bottom:233.533333pt;}
.y2a{bottom:234.378667pt;}
.y48{bottom:236.452000pt;}
.yc0{bottom:237.764000pt;}
.y14c{bottom:239.848000pt;}
.y70{bottom:246.489333pt;}
.y29{bottom:248.990667pt;}
.y1a6{bottom:249.068000pt;}
.y11c{bottom:250.261333pt;}
.y47{bottom:251.064000pt;}
.ybf{bottom:252.376000pt;}
.yd0{bottom:254.250667pt;}
.y14b{bottom:254.460000pt;}
.y6f{bottom:261.101333pt;}
.y11b{bottom:264.873333pt;}
.y46{bottom:265.676000pt;}
.yab{bottom:265.884000pt;}
.ybe{bottom:266.988000pt;}
.y14a{bottom:269.072000pt;}
.y59{bottom:270.225867pt;}
.y10b{bottom:270.532000pt;}
.y28{bottom:271.572000pt;}
.y6e{bottom:275.713333pt;}
.ycf{bottom:276.168000pt;}
.y11a{bottom:279.485333pt;}
.y45{bottom:280.288000pt;}
.yaa{bottom:280.496000pt;}
.y149{bottom:283.684000pt;}
.y27{bottom:286.184000pt;}
.y1a5{bottom:286.497333pt;}
.y6d{bottom:290.325333pt;}
.yce{bottom:290.780000pt;}
.ybd{bottom:291.030667pt;}
.y10a{bottom:292.450667pt;}
.y119{bottom:294.097333pt;}
.y44{bottom:294.900000pt;}
.ya9{bottom:295.108000pt;}
.y148{bottom:298.296000pt;}
.y26{bottom:300.796000pt;}
.y1a4{bottom:301.109333pt;}
.y6c{bottom:304.937333pt;}
.y118{bottom:308.709333pt;}
.y43{bottom:309.512000pt;}
.ya8{bottom:309.720000pt;}
.y147{bottom:312.908000pt;}
.ybc{bottom:312.949333pt;}
.ycd{bottom:313.362667pt;}
.y109{bottom:315.032000pt;}
.y25{bottom:315.408000pt;}
.y1a3{bottom:315.721333pt;}
.y6b{bottom:319.549333pt;}
.y117{bottom:323.321333pt;}
.y42{bottom:324.124000pt;}
.ya7{bottom:324.332000pt;}
.y146{bottom:327.518667pt;}
.y16d{bottom:327.520000pt;}
.ybb{bottom:327.561333pt;}
.ycc{bottom:327.974667pt;}
.y108{bottom:329.644000pt;}
.y24{bottom:330.020000pt;}
.y1a2{bottom:330.333333pt;}
.y6a{bottom:334.161333pt;}
.y116{bottom:337.933333pt;}
.y41{bottom:338.736000pt;}
.ya6{bottom:338.944000pt;}
.y145{bottom:342.130667pt;}
.y16c{bottom:342.132000pt;}
.yba{bottom:342.173333pt;}
.y107{bottom:344.256000pt;}
.y23{bottom:344.632000pt;}
.y1a1{bottom:344.944000pt;}
.y69{bottom:348.773333pt;}
.ycb{bottom:352.017333pt;}
.y115{bottom:352.545333pt;}
.y40{bottom:353.348000pt;}
.ya5{bottom:353.554667pt;}
.y144{bottom:356.742667pt;}
.y16b{bottom:356.744000pt;}
.yb9{bottom:356.785333pt;}
.y106{bottom:358.868000pt;}
.y22{bottom:359.244000pt;}
.y1a0{bottom:359.556000pt;}
.y58{bottom:360.993467pt;}
.y68{bottom:363.385333pt;}
.y3f{bottom:367.960000pt;}
.ya4{bottom:368.166667pt;}
.y143{bottom:371.354667pt;}
.yb8{bottom:371.397333pt;}
.y105{bottom:373.480000pt;}
.y21{bottom:373.856000pt;}
.yca{bottom:373.936000pt;}
.y19f{bottom:374.168000pt;}
.y114{bottom:375.126667pt;}
.y67{bottom:377.997333pt;}
.y3e{bottom:382.572000pt;}
.ya3{bottom:382.778667pt;}
.y142{bottom:385.966667pt;}
.yb7{bottom:386.009333pt;}
.y104{bottom:388.092000pt;}
.y20{bottom:388.468000pt;}
.y19e{bottom:388.780000pt;}
.y113{bottom:389.738667pt;}
.y66{bottom:392.609333pt;}
.yc9{bottom:396.517333pt;}
.y3d{bottom:397.184000pt;}
.ya2{bottom:397.390667pt;}
.y57{bottom:399.893867pt;}
.y141{bottom:400.578667pt;}
.y103{bottom:402.704000pt;}
.y1f{bottom:403.080000pt;}
.y19d{bottom:403.392000pt;}
.y112{bottom:404.350667pt;}
.y55{bottom:406.293067pt;}
.y1cd{bottom:407.221333pt;}
.yb6{bottom:410.052000pt;}
.yc8{bottom:411.129333pt;}
.y3c{bottom:411.796000pt;}
.ya1{bottom:412.002667pt;}
.y65{bottom:415.190667pt;}
.y1e{bottom:417.692000pt;}
.y19c{bottom:418.004000pt;}
.y56{bottom:418.081067pt;}
.y111{bottom:418.962667pt;}
.y1cc{bottom:421.833333pt;}
.y3b{bottom:426.408000pt;}
.ya0{bottom:426.614667pt;}
.y64{bottom:429.802667pt;}
.y1d{bottom:432.304000pt;}
.y19b{bottom:432.616000pt;}
.y110{bottom:433.574667pt;}
.y102{bottom:434.157333pt;}
.y1cb{bottom:436.445333pt;}
.y140{bottom:437.773333pt;}
.yb5{bottom:439.541333pt;}
.y3a{bottom:441.020000pt;}
.y9f{bottom:441.226667pt;}
.y63{bottom:444.414667pt;}
.y1c{bottom:446.916000pt;}
.y19a{bottom:447.228000pt;}
.y1ca{bottom:451.057333pt;}
.y13f{bottom:452.385333pt;}
.yb4{bottom:454.153333pt;}
.y39{bottom:455.632000pt;}
.y9e{bottom:455.838667pt;}
.y62{bottom:459.026667pt;}
.y1b{bottom:461.528000pt;}
.y199{bottom:461.840000pt;}
.y10f{bottom:463.316000pt;}
.y1c9{bottom:465.669333pt;}
.y13e{bottom:466.997333pt;}
.y101{bottom:469.665333pt;}
.y38{bottom:470.244000pt;}
.y61{bottom:473.638667pt;}
.y1a{bottom:476.140000pt;}
.y198{bottom:476.452000pt;}
.y1c8{bottom:480.280000pt;}
.y13d{bottom:481.609333pt;}
.y100{bottom:484.277333pt;}
.y37{bottom:484.856000pt;}
.yb2{bottom:485.369333pt;}
.y9d{bottom:486.718667pt;}
.y60{bottom:488.250667pt;}
.y19{bottom:490.752000pt;}
.y10e{bottom:492.246667pt;}
.y1c7{bottom:494.892000pt;}
.y13c{bottom:496.221333pt;}
.yff{bottom:498.889333pt;}
.y197{bottom:499.034667pt;}
.y36{bottom:499.468000pt;}
.y5f{bottom:502.862667pt;}
.y18{bottom:505.364000pt;}
.y10d{bottom:506.858667pt;}
.y1c6{bottom:509.504000pt;}
.y16a{bottom:510.833333pt;}
.yfe{bottom:513.501333pt;}
.y196{bottom:513.646667pt;}
.y35{bottom:514.078667pt;}
.y13b{bottom:518.802667pt;}
.y9c{bottom:519.069333pt;}
.y17{bottom:519.976000pt;}
.y10c{bottom:521.470667pt;}
.y1c5{bottom:524.116000pt;}
.y169{bottom:525.445333pt;}
.y5e{bottom:532.848000pt;}
.y13a{bottom:533.414667pt;}
.y9b{bottom:533.681333pt;}
.yfd{bottom:536.082667pt;}
.y34{bottom:536.661333pt;}
.y195{bottom:538.425333pt;}
.y1c4{bottom:538.728000pt;}
.y168{bottom:540.057333pt;}
.y139{bottom:548.026667pt;}
.y9a{bottom:548.293333pt;}
.yfc{bottom:550.694667pt;}
.y16{bottom:551.273333pt;}
.y194{bottom:553.037333pt;}
.y1c3{bottom:553.340000pt;}
.y5d{bottom:554.642667pt;}
.y167{bottom:554.669333pt;}
.y138{bottom:562.638667pt;}
.y99{bottom:562.905333pt;}
.y1c2{bottom:567.952000pt;}
.y166{bottom:569.281333pt;}
.y98{bottom:577.517333pt;}
.y183{bottom:578.276000pt;}
.y137{bottom:579.092000pt;}
.y51{bottom:579.881333pt;}
.y1c1{bottom:582.564000pt;}
.y15{bottom:584.792000pt;}
.yfb{bottom:585.794677pt;}
.y136{bottom:588.204000pt;}
.y97{bottom:592.128000pt;}
.y1c0{bottom:597.176000pt;}
.y14{bottom:599.404000pt;}
.y165{bottom:600.090667pt;}
.yfa{bottom:600.429609pt;}
.yb3{bottom:603.817333pt;}
.y1bf{bottom:611.788000pt;}
.yf9{bottom:612.348058pt;}
.y96{bottom:614.710667pt;}
.y135{bottom:614.782667pt;}
.y164{bottom:624.222667pt;}
.yf8{bottom:624.266507pt;}
.y1be{bottom:626.400000pt;}
.y95{bottom:629.322667pt;}
.y13{bottom:632.390667pt;}
.y134{bottom:632.649333pt;}
.yf7{bottom:636.184957pt;}
.y163{bottom:638.834667pt;}
.y1bd{bottom:641.012000pt;}
.y94{bottom:643.934667pt;}
.y12{bottom:647.002667pt;}
.y133{bottom:647.261333pt;}
.yf6{bottom:648.104614pt;}
.y162{bottom:653.446667pt;}
.y1bc{bottom:655.624000pt;}
.y93{bottom:658.546667pt;}
.yf5{bottom:660.023063pt;}
.y11{bottom:661.614667pt;}
.y132{bottom:661.873333pt;}
.y1bb{bottom:670.236000pt;}
.yf4{bottom:671.941513pt;}
.y92{bottom:673.158667pt;}
.y10{bottom:676.226667pt;}
.y131{bottom:676.485333pt;}
.y154{bottom:678.685333pt;}
.yf3{bottom:683.859962pt;}
.y1ba{bottom:684.848000pt;}
.y91{bottom:687.770667pt;}
.yf{bottom:690.838667pt;}
.y130{bottom:691.097333pt;}
.yf2{bottom:695.778411pt;}
.y1b9{bottom:699.460000pt;}
.ye{bottom:705.450667pt;}
.yf1{bottom:707.696860pt;}
.y12f{bottom:708.962667pt;}
.y90{bottom:710.352000pt;}
.y1b8{bottom:714.072000pt;}
.yf0{bottom:719.615309pt;}
.yd{bottom:720.062667pt;}
.yb1{bottom:723.370667pt;}
.y8f{bottom:724.964000pt;}
.y12e{bottom:726.828000pt;}
.y1b7{bottom:728.684000pt;}
.yef{bottom:731.533759pt;}
.yc{bottom:734.674667pt;}
.y8e{bottom:739.576000pt;}
.y12d{bottom:741.440000pt;}
.y1b6{bottom:743.296000pt;}
.yee{bottom:743.452208pt;}
.yad{bottom:748.609333pt;}
.yb{bottom:749.286667pt;}
.y8d{bottom:754.188000pt;}
.yed{bottom:755.370657pt;}
.y12c{bottom:756.052000pt;}
.y1b5{bottom:757.908000pt;}
.yec{bottom:767.289106pt;}
.y8c{bottom:768.800000pt;}
.y12b{bottom:770.664000pt;}
.y1b4{bottom:772.520000pt;}
.yeb{bottom:779.207555pt;}
.y8b{bottom:783.412000pt;}
.y12a{bottom:785.276000pt;}
.ya{bottom:786.334667pt;}
.y1b3{bottom:787.132000pt;}
.yea{bottom:791.126005pt;}
.y182{bottom:791.390667pt;}
.y8a{bottom:798.024000pt;}
.y129{bottom:799.888000pt;}
.ye9{bottom:803.044454pt;}
.y9{bottom:805.768000pt;}
.y181{bottom:806.002667pt;}
.y1b2{bottom:807.588000pt;}
.y89{bottom:812.636000pt;}
.y128{bottom:814.500000pt;}
.ye8{bottom:814.962903pt;}
.y8{bottom:815.558667pt;}
.ye7{bottom:826.881352pt;}
.y88{bottom:827.248000pt;}
.y7{bottom:830.170667pt;}
.y170{bottom:831.241333pt;}
.y1b1{bottom:833.889333pt;}
.ye6{bottom:838.799801pt;}
.y87{bottom:841.860000pt;}
.y127{bottom:843.590667pt;}
.y1b0{bottom:848.501333pt;}
.y6{bottom:849.602667pt;}
.ye5{bottom:850.718251pt;}
.y86{bottom:856.472000pt;}
.ye4{bottom:862.636700pt;}
.y1af{bottom:863.113333pt;}
.y85{bottom:871.084000pt;}
.y126{bottom:871.217333pt;}
.ye3{bottom:874.556357pt;}
.y5{bottom:875.334667pt;}
.y1ae{bottom:877.725333pt;}
.y84{bottom:885.696000pt;}
.y125{bottom:885.829333pt;}
.y153{bottom:886.297333pt;}
.ye2{bottom:886.474807pt;}
.y4{bottom:889.946667pt;}
.y1ad{bottom:892.337333pt;}
.ye1{bottom:898.393256pt;}
.y152{bottom:899.448000pt;}
.y83{bottom:900.308000pt;}
.y124{bottom:900.441333pt;}
.y1ac{bottom:906.949333pt;}
.ye0{bottom:910.311705pt;}
.y151{bottom:912.598667pt;}
.y82{bottom:914.920000pt;}
.y123{bottom:915.053333pt;}
.y1ab{bottom:921.561333pt;}
.ydf{bottom:922.230154pt;}
.y3{bottom:923.156000pt;}
.y150{bottom:925.749333pt;}
.y81{bottom:929.532000pt;}
.y122{bottom:929.665333pt;}
.yde{bottom:934.148603pt;}
.y1aa{bottom:936.173333pt;}
.y14f{bottom:938.900000pt;}
.y80{bottom:944.144000pt;}
.y121{bottom:944.277333pt;}
.ydd{bottom:946.067053pt;}
.y2{bottom:946.534667pt;}
.y1a9{bottom:950.785333pt;}
.ydc{bottom:957.985502pt;}
.y14e{bottom:958.718667pt;}
.y7f{bottom:958.756000pt;}
.y120{bottom:958.889333pt;}
.y1a8{bottom:965.397333pt;}
.ydb{bottom:969.903951pt;}
.y1{bottom:969.914667pt;}
.y7e{bottom:973.368000pt;}
.y11f{bottom:973.501333pt;}
.y1a7{bottom:980.009333pt;}
.yda{bottom:987.865609pt;}
.y7d{bottom:987.980000pt;}
.y11e{bottom:988.113333pt;}
.y7c{bottom:1002.592000pt;}
.yd9{bottom:1015.076000pt;}
.y7b{bottom:1017.204000pt;}
.he{height:16.250869pt;}
.hc{height:17.190833pt;}
.ha{height:19.646667pt;}
.h19{height:19.855260pt;}
.h12{height:20.340902pt;}
.h1b{height:21.808979pt;}
.h1a{height:21.841267pt;}
.h1e{height:23.296257pt;}
.h1f{height:25.610516pt;}
.h20{height:25.625883pt;}
.h5{height:26.184294pt;}
.h10{height:28.893207pt;}
.hb{height:29.315633pt;}
.h7{height:29.499997pt;}
.h8{height:31.880400pt;}
.hf{height:33.155533pt;}
.h11{height:33.937819pt;}
.h17{height:37.446562pt;}
.h6{height:39.850400pt;}
.h1c{height:45.464294pt;}
.h4{height:45.469628pt;}
.h2{height:52.071413pt;}
.h13{height:53.871733pt;}
.h3{height:62.921275pt;}
.h14{height:73.400709pt;}
.h16{height:76.298400pt;}
.h15{height:109.848709pt;}
.h18{height:188.660533pt;}
.h21{height:194.903200pt;}
.h1d{height:195.112773pt;}
.hd{height:277.746360pt;}
.h9{height:446.484533pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:304.354933pt;}
.w5{width:334.479040pt;}
.w4{width:334.490027pt;}
.w3{width:687.895107pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:1.024433pt;}
.x2e{left:5.452289pt;}
.x32{left:6.402633pt;}
.x2d{left:8.817595pt;}
.x2c{left:14.324433pt;}
.x31{left:15.623860pt;}
.x2a{left:18.607537pt;}
.xd{left:54.425333pt;}
.x1d{left:61.627815pt;}
.x34{left:63.406412pt;}
.xf{left:69.476000pt;}
.x1a{left:80.992000pt;}
.x22{left:87.852000pt;}
.x20{left:106.945333pt;}
.xb{left:123.212000pt;}
.x21{left:128.793333pt;}
.x1c{left:134.651427pt;}
.x23{left:145.142667pt;}
.xc{left:158.941333pt;}
.x35{left:162.290236pt;}
.x2b{left:163.621201pt;}
.x39{left:168.074667pt;}
.x13{left:172.962667pt;}
.x1f{left:175.730667pt;}
.x2f{left:187.722330pt;}
.x1b{left:189.977333pt;}
.x6{left:197.437333pt;}
.x15{left:206.282918pt;}
.x7{left:214.852000pt;}
.x24{left:219.597333pt;}
.x4{left:221.470667pt;}
.x26{left:225.421333pt;}
.x5{left:230.058667pt;}
.x3{left:233.158667pt;}
.x2{left:237.370667pt;}
.xa{left:252.285333pt;}
.x9{left:259.314667pt;}
.x36{left:262.846875pt;}
.x38{left:264.085453pt;}
.x1{left:266.289333pt;}
.x37{left:281.714762pt;}
.x33{left:282.735384pt;}
.x25{left:289.548000pt;}
.x12{left:299.808440pt;}
.x11{left:301.294220pt;}
.x8{left:304.478667pt;}
.x17{left:401.250908pt;}
.xe{left:407.810667pt;}
.x1e{left:415.781333pt;}
.x3b{left:421.092000pt;}
.x29{left:428.913333pt;}
.x30{left:434.378667pt;}
.x27{left:441.258667pt;}
.x28{left:524.264000pt;}
.x14{left:528.101333pt;}
.x3a{left:529.393333pt;}
.x16{left:555.981059pt;}
.x19{left:626.509333pt;}
.x18{left:636.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; }
  