
    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_bc0edd2cecd09e294263f433.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_30fb26f86aea487b9b4af0ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.907000;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_5cc051952ec414091e6ea0f5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e58919e1ff4bfad2dcc37f2e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.846000;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_176237d2e5ed8109a88b0a94.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_709007acad61c10aeebd9ae3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6fddd3be65c23652ed8daf46.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.734000;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_4658d8e503be87755447ab0e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.699000;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_59bc04f2753b8be56a35ee94.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.803000;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_466e38d40cd94c82258887b5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.046000;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_dce6f8e3ca3ae6611f79af0e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.780000;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_c11ec526656e3f31154c6cc5.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_78a1d80968cccb9fcf92585e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4488e1fcdbbe518e6772fe5d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_8c997e36bfc73eb95773436d.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_3c75e65332389e2e8e7ec9de.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.430000;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_1043790fb933a0acf2ef875d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_fdc7ea57eb448eda4a5a7d4c.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_308eb7418075c3714e6f25fb.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_d6525dab75c8d4eea0efa593.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_02fdde10770cbd02b026cdbc.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_0fefc4d330e23bff1bd53361.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_9654113edd966042afe3e660.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.686000;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_9d35be08eb5efd1bfb312a28.woff2')format("woff");}.ff18{font-family:ff18;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;}
@font-face{font-family:ff19;src:url('chunks/assets/font_679654a6237d00fb9ee28a19.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.698000;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_ef8626db65c7974d01729f45.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.924000;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);}
.v4{vertical-align:-21.690000px;}
.v5{vertical-align:-13.074090px;}
.v3{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:14.694000px;}
.v8{vertical-align:16.878000px;}
.v2{vertical-align:23.754000px;}
.v6{vertical-align:26.034000px;}
.v7{vertical-align:29.616000px;}
.v1{vertical-align:31.242000px;}
.ls6{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000440px;}
.ls3e{letter-spacing:0.005898px;}
.ls30{letter-spacing:0.026423px;}
.ls3{letter-spacing:2.356366px;}
.ls34{letter-spacing:2.582323px;}
.ls2{letter-spacing:2.981971px;}
.ls2f{letter-spacing:2.987971px;}
.ls4{letter-spacing:2.990915px;}
.ls40{letter-spacing:2.991537px;}
.ls3f{letter-spacing:2.992053px;}
.ls5{letter-spacing:2.992894px;}
.ls47{letter-spacing:3.227904px;}
.ls1e{letter-spacing:3.254490px;}
.ls51{letter-spacing:3.765863px;}
.ls42{letter-spacing:4.447334px;}
.ls41{letter-spacing:4.519066px;}
.ls52{letter-spacing:4.722272px;}
.ls4d{letter-spacing:5.021150px;}
.ls21{letter-spacing:5.092915px;}
.lsf{letter-spacing:5.164646px;}
.ls58{letter-spacing:5.200477px;}
.ls4b{letter-spacing:5.379804px;}
.ls5b{letter-spacing:5.439580px;}
.ls55{letter-spacing:5.499355px;}
.ls4e{letter-spacing:5.559131px;}
.ls56{letter-spacing:5.618906px;}
.ls14{letter-spacing:5.666765px;}
.ls5c{letter-spacing:5.738458px;}
.ls54{letter-spacing:5.798233px;}
.ls5f{letter-spacing:5.858009px;}
.ls5d{letter-spacing:5.917784px;}
.ls59{letter-spacing:6.037336px;}
.ls50{letter-spacing:6.156887px;}
.ls53{letter-spacing:6.276438px;}
.ls32{letter-spacing:7.101389px;}
.ls33{letter-spacing:7.173120px;}
.ls28{letter-spacing:7.675238px;}
.ls1c{letter-spacing:9.153292px;}
.ls8{letter-spacing:9.755443px;}
.ls3d{letter-spacing:11.046605px;}
.ls3c{letter-spacing:11.118336px;}
.ls11{letter-spacing:15.924326px;}
.ls29{letter-spacing:15.996058px;}
.ls1f{letter-spacing:17.339811px;}
.ls38{letter-spacing:17.861069px;}
.ls10{letter-spacing:17.932800px;}
.ls1{letter-spacing:18.130924px;}
.ls16{letter-spacing:19.352675px;}
.ls20{letter-spacing:19.869542px;}
.ls2c{letter-spacing:19.941274px;}
.ls1b{letter-spacing:21.706378px;}
.ls15{letter-spacing:21.793553px;}
.ls45{letter-spacing:21.806285px;}
.ls9{letter-spacing:22.164941px;}
.ls35{letter-spacing:22.308403px;}
.ls23{letter-spacing:22.380134px;}
.ls43{letter-spacing:22.523597px;}
.ls2a{letter-spacing:22.738790px;}
.ls25{letter-spacing:22.910915px;}
.ls39{letter-spacing:23.384371px;}
.ls12{letter-spacing:23.456102px;}
.lsa{letter-spacing:23.599565px;}
.lsc{letter-spacing:23.671296px;}
.ls3a{letter-spacing:24.101683px;}
.ls19{letter-spacing:24.234430px;}
.ls22{letter-spacing:25.034189px;}
.ls2b{letter-spacing:25.105920px;}
.ls13{letter-spacing:25.464576px;}
.lse{letter-spacing:25.751501px;}
.ls2d{letter-spacing:25.902532px;}
.ls27{letter-spacing:26.390915px;}
.ls0{letter-spacing:27.098204px;}
.ls26{letter-spacing:27.473050px;}
.lsb{letter-spacing:27.759974px;}
.ls37{letter-spacing:28.333824px;}
.ls1d{letter-spacing:28.418792px;}
.ls17{letter-spacing:28.505967px;}
.ls18{letter-spacing:29.290535px;}
.ls4f{letter-spacing:32.996131px;}
.ls48{letter-spacing:33.857126px;}
.ls4c{letter-spacing:34.908950px;}
.ls7{letter-spacing:35.148288px;}
.ls4a{letter-spacing:35.267604px;}
.ls3b{letter-spacing:35.506944px;}
.lsd{letter-spacing:35.793869px;}
.ls49{letter-spacing:37.658880px;}
.ls44{letter-spacing:38.017536px;}
.ls1a{letter-spacing:38.356652px;}
.ls36{letter-spacing:39.573813px;}
.ls5e{letter-spacing:44.951251px;}
.ls57{letter-spacing:45.011027px;}
.ls5a{letter-spacing:45.788110px;}
.ls46{letter-spacing:152.070144px;}
.ls2e{letter-spacing:716.777971px;}
.ls31{letter-spacing:849.871258px;}
.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;}
}
.ws3f{word-spacing:-55.495102px;}
.ws13{word-spacing:-45.664082px;}
.ws45{word-spacing:-42.671776px;}
.ws42{word-spacing:-41.024183px;}
.ws47{word-spacing:-35.112422px;}
.ws8f{word-spacing:-33.684972px;}
.ws90{word-spacing:-23.355679px;}
.ws66{word-spacing:-22.050171px;}
.ws63{word-spacing:-21.189396px;}
.ws34{word-spacing:-21.117665px;}
.ws56{word-spacing:-19.510886px;}
.ws67{word-spacing:-19.188096px;}
.ws8e{word-spacing:-18.829440px;}
.ws87{word-spacing:-18.540986px;}
.ws62{word-spacing:-18.470784px;}
.ws36{word-spacing:-18.399053px;}
.ws6b{word-spacing:-18.391880px;}
.wsa1{word-spacing:-17.681741px;}
.ws65{word-spacing:-17.602836px;}
.ws82{word-spacing:-17.466547px;}
.ws73{word-spacing:-16.957256px;}
.ws11{word-spacing:-16.820966px;}
.ws4a{word-spacing:-16.670331px;}
.ws1e{word-spacing:-16.534042px;}
.ws76{word-spacing:-16.462310px;}
.ws3d{word-spacing:-16.336447px;}
.ws6a{word-spacing:-16.031923px;}
.ws9e{word-spacing:-15.960192px;}
.ws1c{word-spacing:-15.953019px;}
.ws18{word-spacing:-15.829597px;}
.ws29{word-spacing:-15.743520px;}
.ws6f{word-spacing:-15.673267px;}
.ws64{word-spacing:-15.314611px;}
.ws75{word-spacing:-15.199841px;}
.ws7c{word-spacing:-15.099418px;}
.ws70{word-spacing:-14.812493px;}
.wsd{word-spacing:-14.674921px;}
.ws3b{word-spacing:-14.597299px;}
.ws4c{word-spacing:-14.590126px;}
.ws3e{word-spacing:-14.252983px;}
.ws41{word-spacing:-14.165809px;}
.ws7d{word-spacing:-13.836948px;}
.ws1d{word-spacing:-13.808256px;}
.ws1{word-spacing:-13.677667px;}
.ws31{word-spacing:-13.442427px;}
.ws2b{word-spacing:-13.227233px;}
.ws26{word-spacing:-12.940308px;}
.ws5b{word-spacing:-12.804019px;}
.ws3{word-spacing:-12.776738px;}
.ws12{word-spacing:-12.732288px;}
.ws35{word-spacing:-12.509921px;}
.ws16{word-spacing:-12.445363px;}
.ws7f{word-spacing:-12.301901px;}
.ws5a{word-spacing:-11.871514px;}
.ws17{word-spacing:-11.728051px;}
.ws28{word-spacing:-11.656320px;}
.ws4f{word-spacing:-11.584589px;}
.ws2f{word-spacing:-11.512858px;}
.ws7e{word-spacing:-11.297664px;}
.ws80{word-spacing:-11.254625px;}
.ws27{word-spacing:-11.225933px;}
.ws69{word-spacing:-11.154202px;}
.ws72{word-spacing:-10.824238px;}
.ws2a{word-spacing:-10.752507px;}
.wsb{word-spacing:-10.682191px;}
.ws7{word-spacing:-10.616736px;}
.ws54{word-spacing:-10.508621px;}
.ws3c{word-spacing:-10.436890px;}
.ws6e{word-spacing:-10.149965px;}
.ws5d{word-spacing:-10.078234px;}
.ws55{word-spacing:-9.719578px;}
.ws4b{word-spacing:-9.360922px;}
.ws6{word-spacing:-9.242190px;}
.ws19{word-spacing:-9.217459px;}
.ws68{word-spacing:-9.145728px;}
.ws32{word-spacing:-9.138555px;}
.ws71{word-spacing:-9.002266px;}
.ws4e{word-spacing:-8.923361px;}
.wse{word-spacing:-8.784007px;}
.ws2c{word-spacing:-8.708168px;}
.ws8c{word-spacing:-8.392550px;}
.ws83{word-spacing:-7.854566px;}
.ws8a{word-spacing:-7.603507px;}
.ws51{word-spacing:-7.567642px;}
.ws9c{word-spacing:-7.352448px;}
.ws84{word-spacing:-7.165947px;}
.ws4{word-spacing:-7.016733px;}
.ws6c{word-spacing:-6.563405px;}
.wsc6{word-spacing:-6.336214px;}
.wsf{word-spacing:-6.231278px;}
.wsdd{word-spacing:-6.097111px;}
.ws6d{word-spacing:-6.018248px;}
.ws15{word-spacing:-5.989555px;}
.wsc{word-spacing:-5.838550px;}
.wse8{word-spacing:-5.798233px;}
.wsf1{word-spacing:-5.618906px;}
.wsdf{word-spacing:-5.559131px;}
.ws8{word-spacing:-5.511277px;}
.wsd8{word-spacing:-5.439580px;}
.ws46{word-spacing:-5.272243px;}
.wsd7{word-spacing:-5.260253px;}
.wsa7{word-spacing:-5.080926px;}
.ws3a{word-spacing:-4.985318px;}
.wsc5{word-spacing:-4.782048px;}
.ws14{word-spacing:-4.554931px;}
.ws61{word-spacing:-4.052813px;}
.ws37{word-spacing:-3.973908px;}
.ws30{word-spacing:-3.909350px;}
.wsc4{word-spacing:-3.825638px;}
.ws79{word-spacing:-3.722849px;}
.ws1f{word-spacing:-3.686984px;}
.ws49{word-spacing:-3.586560px;}
.ws81{word-spacing:-3.550694px;}
.ws89{word-spacing:-3.514829px;}
.ws39{word-spacing:-3.407232px;}
.ws20{word-spacing:-3.192038px;}
.ws98{word-spacing:-3.120307px;}
.wsa{word-spacing:-3.024003px;}
.ws24{word-spacing:-2.689920px;}
.ws25{word-spacing:-2.431688px;}
.ws94{word-spacing:-1.972608px;}
.wsa0{word-spacing:-1.900877px;}
.ws4d{word-spacing:-1.685683px;}
.ws5c{word-spacing:-1.613952px;}
.ws21{word-spacing:-1.470490px;}
.ws22{word-spacing:-1.355720px;}
.ws53{word-spacing:-1.319854px;}
.ws52{word-spacing:-1.111834px;}
.ws50{word-spacing:-0.817736px;}
.ws5{word-spacing:-0.733092px;}
.ws23{word-spacing:-0.394522px;}
.ws77{word-spacing:-0.179328px;}
.ws78{word-spacing:-0.136289px;}
.ws2{word-spacing:-0.086077px;}
.ws85{word-spacing:-0.071731px;}
.ws9{word-spacing:-0.065455px;}
.wsa3{word-spacing:-0.059776px;}
.ws40{word-spacing:-0.058116px;}
.ws60{word-spacing:-0.047821px;}
.ws1b{word-spacing:0.000000px;}
.ws74{word-spacing:0.035866px;}
.ws48{word-spacing:0.358656px;}
.ws33{word-spacing:0.430387px;}
.ws43{word-spacing:0.523045px;}
.ws2d{word-spacing:0.717312px;}
.ws2e{word-spacing:0.789043px;}
.ws8d{word-spacing:1.506355px;}
.ws88{word-spacing:1.972608px;}
.ws7a{word-spacing:2.015647px;}
.ws95{word-spacing:3.012710px;}
.ws92{word-spacing:3.084442px;}
.wse3{word-spacing:3.108331px;}
.ws5e{word-spacing:3.156173px;}
.ws99{word-spacing:5.272243px;}
.ws38{word-spacing:7.503084px;}
.wsbd{word-spacing:8.249033px;}
.wsb2{word-spacing:8.308808px;}
.wsf0{word-spacing:8.428360px;}
.wsd9{word-spacing:8.547911px;}
.wsbf{word-spacing:8.607686px;}
.wsd5{word-spacing:8.667462px;}
.wsb8{word-spacing:8.727238px;}
.wsbb{word-spacing:8.787013px;}
.wsbe{word-spacing:8.846789px;}
.wsbc{word-spacing:8.906564px;}
.wsf4{word-spacing:8.966340px;}
.wsc3{word-spacing:9.085891px;}
.wse2{word-spacing:9.324994px;}
.wsb9{word-spacing:9.683647px;}
.wsaa{word-spacing:11.417140px;}
.ws97{word-spacing:12.481229px;}
.ws93{word-spacing:13.628928px;}
.ws103{word-spacing:13.688612px;}
.ws9f{word-spacing:17.072026px;}
.ws9d{word-spacing:18.147994px;}
.ws96{word-spacing:18.506650px;}
.ws1a{word-spacing:19.845499px;}
.ws86{word-spacing:23.312640px;}
.ws7b{word-spacing:23.384371px;}
.ws5f{word-spacing:24.281281px;}
.wsf9{word-spacing:32.099497px;}
.wse9{word-spacing:32.398375px;}
.wsd3{word-spacing:32.876580px;}
.wsad{word-spacing:32.960266px;}
.wsec{word-spacing:33.055907px;}
.wsef{word-spacing:33.295009px;}
.wsed{word-spacing:33.474336px;}
.ws100{word-spacing:33.952541px;}
.wsca{word-spacing:34.430746px;}
.wsfb{word-spacing:34.490521px;}
.wsc1{word-spacing:34.574207px;}
.wsab{word-spacing:34.610072px;}
.wsc9{word-spacing:34.908950px;}
.wse7{word-spacing:35.028502px;}
.wsdc{word-spacing:35.148053px;}
.wsb7{word-spacing:35.650168px;}
.wsaf{word-spacing:35.709943px;}
.wsf3{word-spacing:35.984911px;}
.wsa4{word-spacing:36.403340px;}
.wsce{word-spacing:36.702218px;}
.wsa2{word-spacing:37.240199px;}
.wsa6{word-spacing:37.419526px;}
.wsd1{word-spacing:37.479301px;}
.ws102{word-spacing:37.539077px;}
.wsa9{word-spacing:37.598852px;}
.wsa8{word-spacing:37.957506px;}
.wsa5{word-spacing:38.136833px;}
.wsee{word-spacing:38.495486px;}
.wse5{word-spacing:42.799330px;}
.wscd{word-spacing:42.859105px;}
.ws0{word-spacing:43.763175px;}
.wsb0{word-spacing:43.815515px;}
.wsb6{word-spacing:43.875290px;}
.wsba{word-spacing:44.473046px;}
.wscb{word-spacing:44.891476px;}
.wsd6{word-spacing:44.951251px;}
.wsb4{word-spacing:45.130578px;}
.wsc0{word-spacing:45.429456px;}
.wsf5{word-spacing:45.489232px;}
.wsde{word-spacing:45.728334px;}
.wsae{word-spacing:45.967436px;}
.wsea{word-spacing:46.206539px;}
.wsac{word-spacing:46.445641px;}
.wsd4{word-spacing:46.505417px;}
.wsd0{word-spacing:47.162948px;}
.ws101{word-spacing:47.222724px;}
.wsfd{word-spacing:47.282500px;}
.wscf{word-spacing:47.461826px;}
.wsdb{word-spacing:47.521602px;}
.wsf8{word-spacing:48.179134px;}
.wsc2{word-spacing:48.298685px;}
.ws10{word-spacing:55.726250px;}
.ws9a{word-spacing:132.487526px;}
.ws44{word-spacing:164.870126px;}
.wse6{word-spacing:182.518817px;}
.wsb1{word-spacing:183.594778px;}
.wsb5{word-spacing:184.192534px;}
.wsb3{word-spacing:184.610963px;}
.wse0{word-spacing:185.447821px;}
.wsc8{word-spacing:185.806475px;}
.wsc7{word-spacing:185.926026px;}
.wsd2{word-spacing:186.045577px;}
.wscc{word-spacing:186.105353px;}
.wsda{word-spacing:186.224904px;}
.wseb{word-spacing:186.344455px;}
.ws59{word-spacing:208.996024px;}
.ws57{word-spacing:214.153498px;}
.wsf2{word-spacing:335.723680px;}
.wse1{word-spacing:336.680089px;}
.wse4{word-spacing:336.799640px;}
.ws9b{word-spacing:340.651469px;}
.ws91{word-spacing:364.131671px;}
.ws8b{word-spacing:424.541107px;}
.wsf7{word-spacing:484.804026px;}
.wsfc{word-spacing:485.820211px;}
.wsf6{word-spacing:486.657070px;}
.wsfa{word-spacing:487.135274px;}
.wsff{word-spacing:637.470908px;}
.wsfe{word-spacing:637.829562px;}
.ws58{word-spacing:788.074829px;}
._41{margin-left:-35.420873px;}
._42{margin-left:-27.860420px;}
._70{margin-left:-9.216084px;}
._19{margin-left:-8.005180px;}
._13{margin-left:-6.671002px;}
._b{margin-left:-5.432732px;}
._12{margin-left:-4.086848px;}
._1{margin-left:-2.238007px;}
._d{margin-left:-1.022172px;}
._3{width:1.275919px;}
._0{width:2.324084px;}
._2{width:3.984659px;}
._1f{width:5.055525px;}
._59{width:6.861995px;}
._20{width:8.168145px;}
._5a{width:9.387115px;}
._74{width:10.853337px;}
._27{width:11.901319px;}
._75{width:12.951694px;}
._3f{width:14.855654px;}
._4e{width:15.924326px;}
._3e{width:16.986851px;}
._40{width:18.573054px;}
._2d{width:19.941274px;}
._43{width:21.281743px;}
._14{width:22.341633px;}
._5{width:23.793193px;}
._f{width:25.200913px;}
._7{width:28.283477px;}
._a{width:29.520025px;}
._1a{width:30.629222px;}
._9{width:31.758032px;}
._e{width:33.459851px;}
._15{width:34.596862px;}
._18{width:35.994691px;}
._1b{width:37.387198px;}
._22{width:38.661979px;}
._c{width:39.776666px;}
._76{width:40.886510px;}
._77{width:42.171045px;}
._23{width:43.268027px;}
._73{width:44.365694px;}
._6{width:45.458666px;}
._71{width:46.566336px;}
._10{width:48.249982px;}
._72{width:49.444096px;}
._8{width:53.150027px;}
._61{width:57.053188px;}
._4{width:59.236413px;}
._6f{width:61.263716px;}
._16{width:62.693069px;}
._17{width:65.576657px;}
._2e{width:70.153114px;}
._31{width:71.731200px;}
._56{width:74.889935px;}
._5d{width:75.972045px;}
._2f{width:82.203955px;}
._44{width:84.355129px;}
._1c{width:90.479123px;}
._11{width:94.684920px;}
._63{width:102.398856px;}
._29{width:111.372268px;}
._48{width:114.781786px;}
._45{width:126.409413px;}
._2c{width:128.711218px;}
._49{width:130.180356px;}
._5f{width:132.298545px;}
._5c{width:135.462446px;}
._47{width:139.961155px;}
._55{width:143.163697px;}
._21{width:144.576925px;}
._69{width:146.565880px;}
._6a{width:151.122288px;}
._4c{width:154.649980px;}
._25{width:158.795038px;}
._2a{width:164.870126px;}
._5b{width:169.656147px;}
._57{width:171.320317px;}
._4d{width:176.585955px;}
._5e{width:178.864328px;}
._60{width:193.361191px;}
._28{width:201.359835px;}
._4a{width:205.653352px;}
._1e{width:207.541902px;}
._62{width:225.549105px;}
._24{width:234.368948px;}
._51{width:236.287265px;}
._37{width:249.337651px;}
._4f{width:257.168218px;}
._64{width:260.073331px;}
._1d{width:277.224375px;}
._52{width:283.773313px;}
._53{width:287.444742px;}
._54{width:292.152071px;}
._26{width:294.976219px;}
._4b{width:299.788785px;}
._6d{width:308.683453px;}
._2b{width:316.346085px;}
._6e{width:324.480220px;}
._33{width:346.461696px;}
._50{width:354.404920px;}
._3d{width:377.521306px;}
._35{width:381.538253px;}
._67{width:386.748512px;}
._65{width:388.814377px;}
._58{width:402.385908px;}
._3c{width:421.492531px;}
._30{width:424.433510px;}
._68{width:434.126976px;}
._66{width:448.209360px;}
._6b{width:462.965600px;}
._3b{width:515.388672px;}
._6c{width:522.889837px;}
._32{width:541.068442px;}
._34{width:611.293286px;}
._36{width:669.825946px;}
._46{width:689.138565px;}
._38{width:704.974234px;}
._3a{width:740.050790px;}
._39{width:798.583450px;}
.fc3{color:rgb(0,153,0);}
.fc4{color:rgb(148,0,209);}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs9{font-size:58.115897px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs6{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs8{font-size:87.174210px;}
.fs5{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y21{bottom:61.467000px;}
.y59{bottom:106.299000px;}
.y20{bottom:112.078500px;}
.y135{bottom:116.436000px;}
.yfc{bottom:124.231500px;}
.y98{bottom:124.294500px;}
.y58{bottom:127.968000px;}
.y134{bottom:134.368500px;}
.y1f{bottom:138.834000px;}
.yc8{bottom:141.298500px;}
.yfb{bottom:142.164000px;}
.y97{bottom:149.637000px;}
.y133{bottom:152.301000px;}
.yfa{bottom:160.098000px;}
.y1e{bottom:160.503000px;}
.yc7{bottom:162.967500px;}
.y57{bottom:164.548500px;}
.y132{bottom:170.233500px;}
.yf9{bottom:178.030500px;}
.y96{bottom:181.360500px;}
.yc6{bottom:185.233500px;}
.y131{bottom:188.167500px;}
.yf8{bottom:195.963000px;}
.y56{bottom:201.129000px;}
.y1d{bottom:201.223500px;}
.y95{bottom:203.028000px;}
.y130{bottom:206.100000px;}
.yc5{bottom:206.902500px;}
.y78{bottom:207.663000px;}
.yf7{bottom:213.895500px;}
.y55{bottom:222.796500px;}
.y12f{bottom:224.032500px;}
.yc4{bottom:229.168500px;}
.y77{bottom:229.330500px;}
.yf6{bottom:231.828000px;}
.y94{bottom:234.751500px;}
.y12e{bottom:241.965000px;}
.y1c{bottom:245.875500px;}
.yf5{bottom:249.760500px;}
.yc3{bottom:251.436000px;}
.y93{bottom:256.420500px;}
.y12d{bottom:259.897500px;}
.y76{bottom:262.578000px;}
.y54{bottom:263.763000px;}
.yf4{bottom:267.694500px;}
.yc2{bottom:273.105000px;}
.y12c{bottom:277.830000px;}
.y53{bottom:285.432000px;}
.yf3{bottom:285.627000px;}
.y92{bottom:288.144000px;}
.yc1{bottom:295.371000px;}
.y12b{bottom:295.764000px;}
.yf2{bottom:303.559500px;}
.y1b{bottom:305.770500px;}
.y12a{bottom:313.696500px;}
.y75{bottom:314.565000px;}
.yc0{bottom:317.637000px;}
.y52{bottom:318.679500px;}
.y91{bottom:319.867500px;}
.yf1{bottom:321.492000px;}
.y1a{bottom:327.438000px;}
.y129{bottom:331.629000px;}
.yf0{bottom:339.424500px;}
.ybf{bottom:339.904500px;}
.y136{bottom:341.343000px;}
.y90{bottom:341.535000px;}
.y19{bottom:349.107000px;}
.y128{bottom:349.561500px;}
.y74{bottom:354.166500px;}
.yef{bottom:357.357000px;}
.ybe{bottom:362.170500px;}
.y8f{bottom:363.204000px;}
.y51{bottom:365.419500px;}
.y127{bottom:367.494000px;}
.y18{bottom:370.776000px;}
.yee{bottom:375.291000px;}
.ybd{bottom:384.436500px;}
.y126{bottom:385.426500px;}
.y50{bottom:387.088500px;}
.y17{bottom:392.445000px;}
.yed{bottom:393.223500px;}
.y73{bottom:393.768000px;}
.y8e{bottom:394.927500px;}
.y125{bottom:403.360500px;}
.ybc{bottom:406.105500px;}
.y4f{bottom:408.756000px;}
.yec{bottom:411.156000px;}
.y16{bottom:414.114000px;}
.y8d{bottom:416.596500px;}
.y124{bottom:421.293000px;}
.y72{bottom:425.151000px;}
.ybb{bottom:428.371500px;}
.yeb{bottom:429.088500px;}
.y123{bottom:439.225500px;}
.yea{bottom:447.021000px;}
.y4e{bottom:447.546000px;}
.yba{bottom:450.639000px;}
.y15{bottom:453.537000px;}
.y39{bottom:454.810500px;}
.y8c{bottom:456.019500px;}
.y122{bottom:457.158000px;}
.ye9{bottom:464.953500px;}
.y71{bottom:468.487500px;}
.yb9{bottom:472.905000px;}
.y121{bottom:475.090500px;}
.y38{bottom:476.478000px;}
.ye8{bottom:482.887500px;}
.y70{bottom:490.156500px;}
.y120{bottom:493.023000px;}
.yb8{bottom:494.574000px;}
.y37{bottom:498.147000px;}
.y4d{bottom:498.339000px;}
.ye7{bottom:500.820000px;}
.y8b{bottom:506.989500px;}
.y11f{bottom:510.957000px;}
.y6f{bottom:511.825500px;}
.y14{bottom:513.430500px;}
.yb7{bottom:516.840000px;}
.ye6{bottom:518.752500px;}
.y8a{bottom:528.658500px;}
.y11e{bottom:528.889500px;}
.y36{bottom:531.394500px;}
.y13{bottom:533.754000px;}
.y4c{bottom:534.919500px;}
.ye5{bottom:536.685000px;}
.yb6{bottom:539.106000px;}
.y6e{bottom:545.073000px;}
.y11d{bottom:546.822000px;}
.y89{bottom:550.326000px;}
.y12{bottom:554.077500px;}
.ye4{bottom:554.617500px;}
.yb5{bottom:560.775000px;}
.y11c{bottom:564.754500px;}
.y4b{bottom:571.500000px;}
.y88{bottom:571.995000px;}
.ye3{bottom:572.551500px;}
.y11{bottom:574.401000px;}
.y11b{bottom:582.687000px;}
.yb4{bottom:583.042500px;}
.y35{bottom:583.381500px;}
.ye2{bottom:590.484000px;}
.y6d{bottom:591.829500px;}
.y87{bottom:593.664000px;}
.y10{bottom:594.724500px;}
.y11a{bottom:600.619500px;}
.y34{bottom:605.050500px;}
.yb3{bottom:605.308500px;}
.ye1{bottom:608.416500px;}
.y4a{bottom:612.466500px;}
.y6c{bottom:613.497000px;}
.yf{bottom:615.049500px;}
.y119{bottom:618.553500px;}
.ye0{bottom:626.349000px;}
.y33{bottom:626.719500px;}
.yb2{bottom:626.977500px;}
.y86{bottom:633.087000px;}
.y49{bottom:634.135500px;}
.y6b{bottom:635.166000px;}
.ye{bottom:635.373000px;}
.y118{bottom:636.486000px;}
.ydf{bottom:644.281500px;}
.yb1{bottom:649.243500px;}
.y117{bottom:654.418500px;}
.yd{bottom:655.696500px;}
.yde{bottom:662.214000px;}
.y32{bottom:663.331500px;}
.y48{bottom:667.383000px;}
.yb0{bottom:671.509500px;}
.y116{bottom:672.351000px;}
.yc{bottom:676.020000px;}
.ydd{bottom:680.148000px;}
.y6a{bottom:684.855000px;}
.y31{bottom:685.000500px;}
.y115{bottom:690.283500px;}
.y85{bottom:692.560500px;}
.yaf{bottom:693.178500px;}
.yb{bottom:696.343500px;}
.ydc{bottom:698.080500px;}
.y47{bottom:700.630500px;}
.y69{bottom:707.121000px;}
.y114{bottom:708.216000px;}
.y84{bottom:714.229500px;}
.yae{bottom:715.444500px;}
.ydb{bottom:716.013000px;}
.ya{bottom:716.668500px;}
.y30{bottom:721.612500px;}
.y113{bottom:726.150000px;}
.y68{bottom:728.790000px;}
.yda{bottom:733.945500px;}
.y9{bottom:736.992000px;}
.yad{bottom:737.712000px;}
.y112{bottom:744.082500px;}
.y46{bottom:745.282500px;}
.y83{bottom:750.030000px;}
.y67{bottom:750.459000px;}
.yd9{bottom:751.878000px;}
.y2f{bottom:758.226000px;}
.yac{bottom:759.978000px;}
.y111{bottom:762.015000px;}
.y8{bottom:767.395500px;}
.yd8{bottom:769.810500px;}
.y66{bottom:772.128000px;}
.y82{bottom:778.357500px;}
.y2e{bottom:779.895000px;}
.y110{bottom:779.947500px;}
.yab{bottom:781.647000px;}
.yd7{bottom:787.744500px;}
.y65{bottom:793.797000px;}
.y10f{bottom:797.880000px;}
.yaa{bottom:803.913000px;}
.yd6{bottom:805.677000px;}
.y81{bottom:806.685000px;}
.y64{bottom:815.464500px;}
.y10e{bottom:815.812500px;}
.y2d{bottom:820.990500px;}
.yd5{bottom:823.609500px;}
.ya9{bottom:826.180500px;}
.y45{bottom:830.160412px;}
.y10d{bottom:833.746500px;}
.y63{bottom:837.133500px;}
.yd4{bottom:841.542000px;}
.y80{bottom:842.485500px;}
.ya8{bottom:848.446500px;}
.y10c{bottom:851.679000px;}
.y7{bottom:852.906000px;}
.y44{bottom:857.221882px;}
.y62{bottom:858.802500px;}
.yd3{bottom:859.474500px;}
.y2c{bottom:861.709500px;}
.y10b{bottom:869.611500px;}
.ya7{bottom:870.115500px;}
.y7f{bottom:876.660000px;}
.yd2{bottom:877.407000px;}
.y61{bottom:881.068500px;}
.y43{bottom:884.281529px;}
.y10a{bottom:887.544000px;}
.ya6{bottom:892.381500px;}
.y6{bottom:894.844500px;}
.yd1{bottom:895.341000px;}
.y7e{bottom:898.329000px;}
.y109{bottom:905.476500px;}
.y42{bottom:911.341176px;}
.yd0{bottom:913.273500px;}
.y2b{bottom:913.696500px;}
.ya5{bottom:914.647500px;}
.y60{bottom:918.279000px;}
.y5{bottom:921.744000px;}
.y108{bottom:923.409000px;}
.ycf{bottom:931.206000px;}
.y7d{bottom:931.576500px;}
.y2a{bottom:935.365500px;}
.ya4{bottom:936.915000px;}
.y41{bottom:938.402646px;}
.y107{bottom:941.343000px;}
.y4{bottom:948.642000px;}
.yce{bottom:949.138500px;}
.ya3{bottom:959.181000px;}
.y106{bottom:959.275500px;}
.y5f{bottom:960.345000px;}
.y40{bottom:965.462293px;}
.y9d{bottom:966.000000px;}
.y29{bottom:971.977500px;}
.ycd{bottom:974.091000px;}
.y105{bottom:977.208000px;}
.y7c{bottom:977.911500px;}
.ya2{bottom:981.447000px;}
.y5e{bottom:982.014000px;}
.y9c{bottom:987.669000px;}
.y3f{bottom:992.521941px;}
.y28{bottom:993.646500px;}
.y104{bottom:995.140500px;}
.ycc{bottom:995.758500px;}
.y3{bottom:1001.874000px;}
.ya1{bottom:1003.714500px;}
.y103{bottom:1013.073000px;}
.y7b{bottom:1013.712000px;}
.y5d{bottom:1015.261500px;}
.y27{bottom:1015.315500px;}
.y3e{bottom:1019.583411px;}
.y9b{bottom:1019.797500px;}
.y2{bottom:1028.773500px;}
.y102{bottom:1031.005500px;}
.ycb{bottom:1035.181500px;}
.y7a{bottom:1035.381000px;}
.y26{bottom:1036.984500px;}
.ya0{bottom:1040.925000px;}
.y9a{bottom:1041.466500px;}
.y3d{bottom:1046.643058px;}
.y101{bottom:1048.939500px;}
.y25{bottom:1058.652000px;}
.y5c{bottom:1062.018000px;}
.y99{bottom:1063.135500px;}
.y1{bottom:1066.132500px;}
.y100{bottom:1066.872000px;}
.y79{bottom:1071.181500px;}
.y3c{bottom:1073.702705px;}
.y9f{bottom:1077.511500px;}
.y5b{bottom:1083.687000px;}
.yff{bottom:1084.804500px;}
.y24{bottom:1095.265500px;}
.y9e{bottom:1099.180500px;}
.y3b{bottom:1100.764175px;}
.yca{bottom:1101.766500px;}
.yfe{bottom:1102.737000px;}
.y5a{bottom:1105.354500px;}
.y23{bottom:1116.934500px;}
.yfd{bottom:1120.669500px;}
.yc9{bottom:1123.434000px;}
.y22{bottom:1138.602000px;}
.y3a{bottom:1141.368000px;}
.hb{height:23.201476px;}
.h16{height:24.281011px;}
.h15{height:41.603818px;}
.h6{height:49.156405px;}
.h5{height:53.195710px;}
.hf{height:53.798400px;}
.h9{height:53.870131px;}
.hc{height:53.941862px;}
.h7{height:56.080726px;}
.h11{height:58.354726px;}
.h10{height:58.360726px;}
.h3{height:60.598349px;}
.h13{height:61.942726px;}
.ha{height:64.643977px;}
.he{height:65.467832px;}
.hd{height:65.555006px;}
.h14{height:68.564131px;}
.h12{height:70.344624px;}
.h4{height:76.133476px;}
.h8{height:77.675885px;}
.h2{height:87.030450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:82.393500px;}
.x1c{left:87.871500px;}
.x1b{left:93.349500px;}
.xb{left:106.299000px;}
.x16{left:115.077000px;}
.x10{left:117.922034px;}
.xc{left:126.489000px;}
.xe{left:132.639000px;}
.x1e{left:137.128500px;}
.x17{left:142.386000px;}
.x1d{left:146.646000px;}
.xa{left:150.196500px;}
.x15{left:169.962000px;}
.x9{left:174.603000px;}
.x2{left:179.884500px;}
.xf{left:184.186500px;}
.x1{left:205.336500px;}
.x3{left:243.298500px;}
.x12{left:245.304000px;}
.x18{left:254.437500px;}
.x11{left:262.915500px;}
.x20{left:279.229500px;}
.x1a{left:280.483500px;}
.x5{left:293.554500px;}
.x13{left:307.179000px;}
.x6{left:313.885500px;}
.x14{left:340.554000px;}
.x7{left:366.943500px;}
.x4{left:378.739500px;}
.x8{left:410.724000px;}
.x21{left:437.679000px;}
.xd{left:442.068000px;}
.x19{left:554.131500px;}
@media print{
.v4{vertical-align:-19.280000pt;}
.v5{vertical-align:-11.621413pt;}
.v3{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:13.061333pt;}
.v8{vertical-align:15.002667pt;}
.v2{vertical-align:21.114667pt;}
.v6{vertical-align:23.141333pt;}
.v7{vertical-align:26.325333pt;}
.v1{vertical-align:27.770667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000391pt;}
.ls3e{letter-spacing:0.005243pt;}
.ls30{letter-spacing:0.023487pt;}
.ls3{letter-spacing:2.094547pt;}
.ls34{letter-spacing:2.295398pt;}
.ls2{letter-spacing:2.650641pt;}
.ls2f{letter-spacing:2.655975pt;}
.ls4{letter-spacing:2.658591pt;}
.ls40{letter-spacing:2.659144pt;}
.ls3f{letter-spacing:2.659603pt;}
.ls5{letter-spacing:2.660350pt;}
.ls47{letter-spacing:2.869248pt;}
.ls1e{letter-spacing:2.892880pt;}
.ls51{letter-spacing:3.347434pt;}
.ls42{letter-spacing:3.953186pt;}
.ls41{letter-spacing:4.016947pt;}
.ls52{letter-spacing:4.197575pt;}
.ls4d{letter-spacing:4.463245pt;}
.ls21{letter-spacing:4.527036pt;}
.lsf{letter-spacing:4.590797pt;}
.ls58{letter-spacing:4.622646pt;}
.ls4b{letter-spacing:4.782048pt;}
.ls5b{letter-spacing:4.835182pt;}
.ls55{letter-spacing:4.888316pt;}
.ls4e{letter-spacing:4.941450pt;}
.ls56{letter-spacing:4.994583pt;}
.ls14{letter-spacing:5.037124pt;}
.ls5c{letter-spacing:5.100851pt;}
.ls54{letter-spacing:5.153985pt;}
.ls5f{letter-spacing:5.207119pt;}
.ls5d{letter-spacing:5.260253pt;}
.ls59{letter-spacing:5.366521pt;}
.ls50{letter-spacing:5.472788pt;}
.ls53{letter-spacing:5.579056pt;}
.ls32{letter-spacing:6.312346pt;}
.ls33{letter-spacing:6.376107pt;}
.ls28{letter-spacing:6.822434pt;}
.ls1c{letter-spacing:8.136260pt;}
.ls8{letter-spacing:8.671505pt;}
.ls3d{letter-spacing:9.819204pt;}
.ls3c{letter-spacing:9.882965pt;}
.ls11{letter-spacing:14.154957pt;}
.ls29{letter-spacing:14.218718pt;}
.ls1f{letter-spacing:15.413165pt;}
.ls38{letter-spacing:15.876506pt;}
.ls10{letter-spacing:15.940267pt;}
.ls1{letter-spacing:16.116377pt;}
.ls16{letter-spacing:17.202377pt;}
.ls20{letter-spacing:17.661815pt;}
.ls2c{letter-spacing:17.725577pt;}
.ls1b{letter-spacing:19.294558pt;}
.ls15{letter-spacing:19.372047pt;}
.ls45{letter-spacing:19.383364pt;}
.ls9{letter-spacing:19.702170pt;}
.ls35{letter-spacing:19.829692pt;}
.ls23{letter-spacing:19.893453pt;}
.ls43{letter-spacing:20.020975pt;}
.ls2a{letter-spacing:20.212258pt;}
.ls25{letter-spacing:20.365258pt;}
.ls39{letter-spacing:20.786108pt;}
.ls12{letter-spacing:20.849869pt;}
.lsa{letter-spacing:20.977391pt;}
.lsc{letter-spacing:21.041152pt;}
.ls3a{letter-spacing:21.423718pt;}
.ls19{letter-spacing:21.541716pt;}
.ls22{letter-spacing:22.252612pt;}
.ls2b{letter-spacing:22.316373pt;}
.ls13{letter-spacing:22.635179pt;}
.lse{letter-spacing:22.890223pt;}
.ls2d{letter-spacing:23.024473pt;}
.ls27{letter-spacing:23.458591pt;}
.ls0{letter-spacing:24.087293pt;}
.ls26{letter-spacing:24.420489pt;}
.lsb{letter-spacing:24.675533pt;}
.ls37{letter-spacing:25.185621pt;}
.ls1d{letter-spacing:25.261149pt;}
.ls17{letter-spacing:25.338637pt;}
.ls18{letter-spacing:26.036031pt;}
.ls4f{letter-spacing:29.329894pt;}
.ls48{letter-spacing:30.095223pt;}
.ls4c{letter-spacing:31.030178pt;}
.ls7{letter-spacing:31.242923pt;}
.ls4a{letter-spacing:31.348981pt;}
.ls3b{letter-spacing:31.561728pt;}
.lsd{letter-spacing:31.816772pt;}
.ls49{letter-spacing:33.474560pt;}
.ls44{letter-spacing:33.793365pt;}
.ls1a{letter-spacing:34.094802pt;}
.ls36{letter-spacing:35.176723pt;}
.ls5e{letter-spacing:39.956668pt;}
.ls57{letter-spacing:40.009802pt;}
.ls5a{letter-spacing:40.700542pt;}
.ls46{letter-spacing:135.173461pt;}
.ls2e{letter-spacing:637.135975pt;}
.ls31{letter-spacing:755.441118pt;}
.ws3f{word-spacing:-49.328980pt;}
.ws13{word-spacing:-40.590295pt;}
.ws45{word-spacing:-37.930467pt;}
.ws42{word-spacing:-36.465941pt;}
.ws47{word-spacing:-31.211042pt;}
.ws8f{word-spacing:-29.942197pt;}
.ws90{word-spacing:-20.760603pt;}
.ws66{word-spacing:-19.600152pt;}
.ws63{word-spacing:-18.835019pt;}
.ws34{word-spacing:-18.771258pt;}
.ws56{word-spacing:-17.343010pt;}
.ws67{word-spacing:-17.056085pt;}
.ws8e{word-spacing:-16.737280pt;}
.ws87{word-spacing:-16.480876pt;}
.ws62{word-spacing:-16.418475pt;}
.ws36{word-spacing:-16.354714pt;}
.ws6b{word-spacing:-16.348337pt;}
.wsa1{word-spacing:-15.717103pt;}
.ws65{word-spacing:-15.646966pt;}
.ws82{word-spacing:-15.525820pt;}
.ws73{word-spacing:-15.073116pt;}
.ws11{word-spacing:-14.951970pt;}
.ws4a{word-spacing:-14.818072pt;}
.ws1e{word-spacing:-14.696926pt;}
.ws76{word-spacing:-14.633165pt;}
.ws3d{word-spacing:-14.521286pt;}
.ws6a{word-spacing:-14.250598pt;}
.ws9e{word-spacing:-14.186837pt;}
.ws1c{word-spacing:-14.180461pt;}
.ws18{word-spacing:-14.070753pt;}
.ws29{word-spacing:-13.994240pt;}
.ws6f{word-spacing:-13.931793pt;}
.ws64{word-spacing:-13.612988pt;}
.ws75{word-spacing:-13.510970pt;}
.ws7c{word-spacing:-13.421705pt;}
.ws70{word-spacing:-13.166660pt;}
.wsd{word-spacing:-13.044375pt;}
.ws3b{word-spacing:-12.975377pt;}
.ws4c{word-spacing:-12.969001pt;}
.ws3e{word-spacing:-12.669319pt;}
.ws41{word-spacing:-12.591830pt;}
.ws7d{word-spacing:-12.299510pt;}
.ws1d{word-spacing:-12.274005pt;}
.ws1{word-spacing:-12.157926pt;}
.ws31{word-spacing:-11.948824pt;}
.ws2b{word-spacing:-11.757541pt;}
.ws26{word-spacing:-11.502496pt;}
.ws5b{word-spacing:-11.381350pt;}
.ws3{word-spacing:-11.357100pt;}
.ws12{word-spacing:-11.317589pt;}
.ws35{word-spacing:-11.119930pt;}
.ws16{word-spacing:-11.062545pt;}
.ws7f{word-spacing:-10.935023pt;}
.ws5a{word-spacing:-10.552457pt;}
.ws17{word-spacing:-10.424934pt;}
.ws28{word-spacing:-10.361173pt;}
.ws4f{word-spacing:-10.297412pt;}
.ws2f{word-spacing:-10.233651pt;}
.ws7e{word-spacing:-10.042368pt;}
.ws80{word-spacing:-10.004111pt;}
.ws27{word-spacing:-9.978607pt;}
.ws69{word-spacing:-9.914846pt;}
.ws72{word-spacing:-9.621545pt;}
.ws2a{word-spacing:-9.557784pt;}
.wsb{word-spacing:-9.495281pt;}
.ws7{word-spacing:-9.437099pt;}
.ws54{word-spacing:-9.340996pt;}
.ws3c{word-spacing:-9.277235pt;}
.ws6e{word-spacing:-9.022191pt;}
.ws5d{word-spacing:-8.958430pt;}
.ws55{word-spacing:-8.639625pt;}
.ws4b{word-spacing:-8.320819pt;}
.ws6{word-spacing:-8.215280pt;}
.ws19{word-spacing:-8.193297pt;}
.ws68{word-spacing:-8.129536pt;}
.ws32{word-spacing:-8.123160pt;}
.ws71{word-spacing:-8.002014pt;}
.ws4e{word-spacing:-7.931877pt;}
.wse{word-spacing:-7.808007pt;}
.ws2c{word-spacing:-7.740593pt;}
.ws8c{word-spacing:-7.460045pt;}
.ws83{word-spacing:-6.981837pt;}
.ws8a{word-spacing:-6.758673pt;}
.ws51{word-spacing:-6.726793pt;}
.ws9c{word-spacing:-6.535509pt;}
.ws84{word-spacing:-6.369731pt;}
.ws4{word-spacing:-6.237096pt;}
.ws6c{word-spacing:-5.834138pt;}
.wsc6{word-spacing:-5.632190pt;}
.wsf{word-spacing:-5.538914pt;}
.wsdd{word-spacing:-5.419654pt;}
.ws6d{word-spacing:-5.349553pt;}
.ws15{word-spacing:-5.324049pt;}
.wsc{word-spacing:-5.189823pt;}
.wse8{word-spacing:-5.153985pt;}
.wsf1{word-spacing:-4.994583pt;}
.wsdf{word-spacing:-4.941450pt;}
.ws8{word-spacing:-4.898913pt;}
.wsd8{word-spacing:-4.835182pt;}
.ws46{word-spacing:-4.686438pt;}
.wsd7{word-spacing:-4.675780pt;}
.wsa7{word-spacing:-4.516379pt;}
.ws3a{word-spacing:-4.431394pt;}
.wsc5{word-spacing:-4.250709pt;}
.ws14{word-spacing:-4.048828pt;}
.ws61{word-spacing:-3.602500pt;}
.ws37{word-spacing:-3.532363pt;}
.ws30{word-spacing:-3.474978pt;}
.wsc4{word-spacing:-3.400567pt;}
.ws79{word-spacing:-3.309199pt;}
.ws1f{word-spacing:-3.277319pt;}
.ws49{word-spacing:-3.188053pt;}
.ws81{word-spacing:-3.156173pt;}
.ws89{word-spacing:-3.124292pt;}
.ws39{word-spacing:-3.028651pt;}
.ws20{word-spacing:-2.837367pt;}
.ws98{word-spacing:-2.773606pt;}
.wsa{word-spacing:-2.688002pt;}
.ws24{word-spacing:-2.391040pt;}
.ws25{word-spacing:-2.161500pt;}
.ws94{word-spacing:-1.753429pt;}
.wsa0{word-spacing:-1.689668pt;}
.ws4d{word-spacing:-1.498385pt;}
.ws5c{word-spacing:-1.434624pt;}
.ws21{word-spacing:-1.307102pt;}
.ws22{word-spacing:-1.205084pt;}
.ws53{word-spacing:-1.173204pt;}
.ws52{word-spacing:-0.988297pt;}
.ws50{word-spacing:-0.726876pt;}
.ws5{word-spacing:-0.651637pt;}
.ws23{word-spacing:-0.350686pt;}
.ws77{word-spacing:-0.159403pt;}
.ws78{word-spacing:-0.121146pt;}
.ws2{word-spacing:-0.076513pt;}
.ws85{word-spacing:-0.063761pt;}
.ws9{word-spacing:-0.058182pt;}
.wsa3{word-spacing:-0.053134pt;}
.ws40{word-spacing:-0.051659pt;}
.ws60{word-spacing:-0.042507pt;}
.ws1b{word-spacing:0.000000pt;}
.ws74{word-spacing:0.031881pt;}
.ws48{word-spacing:0.318805pt;}
.ws33{word-spacing:0.382566pt;}
.ws43{word-spacing:0.464929pt;}
.ws2d{word-spacing:0.637611pt;}
.ws2e{word-spacing:0.701372pt;}
.ws8d{word-spacing:1.338982pt;}
.ws88{word-spacing:1.753429pt;}
.ws7a{word-spacing:1.791686pt;}
.ws95{word-spacing:2.677965pt;}
.ws92{word-spacing:2.741726pt;}
.wse3{word-spacing:2.762961pt;}
.ws5e{word-spacing:2.805487pt;}
.ws99{word-spacing:4.686438pt;}
.ws38{word-spacing:6.669408pt;}
.wsbd{word-spacing:7.332474pt;}
.wsb2{word-spacing:7.385607pt;}
.wsf0{word-spacing:7.491875pt;}
.wsd9{word-spacing:7.598143pt;}
.wsbf{word-spacing:7.651277pt;}
.wsd5{word-spacing:7.704411pt;}
.wsb8{word-spacing:7.757545pt;}
.wsbb{word-spacing:7.810678pt;}
.wsbe{word-spacing:7.863812pt;}
.wsbc{word-spacing:7.916946pt;}
.wsf4{word-spacing:7.970080pt;}
.wsc3{word-spacing:8.076348pt;}
.wse2{word-spacing:8.288883pt;}
.wsb9{word-spacing:8.607686pt;}
.wsaa{word-spacing:10.148569pt;}
.ws97{word-spacing:11.094426pt;}
.ws93{word-spacing:12.114603pt;}
.ws103{word-spacing:12.167655pt;}
.ws9f{word-spacing:15.175134pt;}
.ws9d{word-spacing:16.131550pt;}
.ws96{word-spacing:16.450355pt;}
.ws1a{word-spacing:17.640444pt;}
.ws86{word-spacing:20.722347pt;}
.ws7b{word-spacing:20.786108pt;}
.ws5f{word-spacing:21.583361pt;}
.wsf9{word-spacing:28.532886pt;}
.wse9{word-spacing:28.798556pt;}
.wsd3{word-spacing:29.223627pt;}
.wsad{word-spacing:29.298014pt;}
.wsec{word-spacing:29.383028pt;}
.wsef{word-spacing:29.595564pt;}
.wsed{word-spacing:29.754965pt;}
.ws100{word-spacing:30.180036pt;}
.wsca{word-spacing:30.605107pt;}
.wsfb{word-spacing:30.658241pt;}
.wsc1{word-spacing:30.732628pt;}
.wsab{word-spacing:30.764509pt;}
.wsc9{word-spacing:31.030178pt;}
.wse7{word-spacing:31.136446pt;}
.wsdc{word-spacing:31.242714pt;}
.wsb7{word-spacing:31.689038pt;}
.wsaf{word-spacing:31.742172pt;}
.wsf3{word-spacing:31.986588pt;}
.wsa4{word-spacing:32.358525pt;}
.wsce{word-spacing:32.624194pt;}
.wsa2{word-spacing:33.102399pt;}
.wsa6{word-spacing:33.261801pt;}
.wsd1{word-spacing:33.314934pt;}
.ws102{word-spacing:33.368068pt;}
.wsa9{word-spacing:33.421202pt;}
.wsa8{word-spacing:33.740005pt;}
.wsa5{word-spacing:33.899407pt;}
.wsee{word-spacing:34.218210pt;}
.wse5{word-spacing:38.043849pt;}
.wscd{word-spacing:38.096982pt;}
.ws0{word-spacing:38.900600pt;}
.wsb0{word-spacing:38.947124pt;}
.wsb6{word-spacing:39.000258pt;}
.wsba{word-spacing:39.531597pt;}
.wscb{word-spacing:39.903534pt;}
.wsd6{word-spacing:39.956668pt;}
.wsb4{word-spacing:40.116069pt;}
.wsc0{word-spacing:40.381739pt;}
.wsf5{word-spacing:40.434873pt;}
.wsde{word-spacing:40.647408pt;}
.wsae{word-spacing:40.859943pt;}
.wsea{word-spacing:41.072479pt;}
.wsac{word-spacing:41.285014pt;}
.wsd4{word-spacing:41.338148pt;}
.wsd0{word-spacing:41.922621pt;}
.ws101{word-spacing:41.975755pt;}
.wsfd{word-spacing:42.028889pt;}
.wscf{word-spacing:42.188290pt;}
.wsdb{word-spacing:42.241424pt;}
.wsf8{word-spacing:42.825897pt;}
.wsc2{word-spacing:42.932164pt;}
.ws10{word-spacing:49.534444pt;}
.ws9a{word-spacing:117.766690pt;}
.ws44{word-spacing:146.551224pt;}
.wse6{word-spacing:162.238948pt;}
.wsb1{word-spacing:163.195358pt;}
.wsb5{word-spacing:163.726697pt;}
.wsb3{word-spacing:164.098634pt;}
.wse0{word-spacing:164.842508pt;}
.wsc8{word-spacing:165.161311pt;}
.wsc7{word-spacing:165.267579pt;}
.wsd2{word-spacing:165.373846pt;}
.wscc{word-spacing:165.426980pt;}
.wsda{word-spacing:165.533248pt;}
.wseb{word-spacing:165.639516pt;}
.ws59{word-spacing:185.774244pt;}
.ws57{word-spacing:190.358665pt;}
.wsf2{word-spacing:298.421049pt;}
.wse1{word-spacing:299.271190pt;}
.wse4{word-spacing:299.377458pt;}
.ws9b{word-spacing:302.801306pt;}
.ws91{word-spacing:323.672596pt;}
.ws8b{word-spacing:377.369873pt;}
.wsf7{word-spacing:430.936912pt;}
.wsfc{word-spacing:431.840188pt;}
.wsf6{word-spacing:432.584062pt;}
.wsfa{word-spacing:433.009133pt;}
.wsff{word-spacing:566.640807pt;}
.wsfe{word-spacing:566.959611pt;}
.ws58{word-spacing:700.510959pt;}
._41{margin-left:-31.485220pt;}
._42{margin-left:-24.764818pt;}
._70{margin-left:-8.192075pt;}
._19{margin-left:-7.115715pt;}
._13{margin-left:-5.929779pt;}
._b{margin-left:-4.829095pt;}
._12{margin-left:-3.632754pt;}
._1{margin-left:-1.989340pt;}
._d{margin-left:-0.908597pt;}
._3{width:1.134150pt;}
._0{width:2.065853pt;}
._2{width:3.541919pt;}
._1f{width:4.493800pt;}
._59{width:6.099551pt;}
._20{width:7.260573pt;}
._5a{width:8.344102pt;}
._74{width:9.647410pt;}
._27{width:10.578950pt;}
._75{width:11.512617pt;}
._3f{width:13.205026pt;}
._4e{width:14.154957pt;}
._3e{width:15.099423pt;}
._40{width:16.509381pt;}
._2d{width:17.725577pt;}
._43{width:18.917105pt;}
._14{width:19.859229pt;}
._5{width:21.149505pt;}
._f{width:22.400812pt;}
._7{width:25.140869pt;}
._a{width:26.240022pt;}
._1a{width:27.225975pt;}
._9{width:28.229362pt;}
._e{width:29.742090pt;}
._15{width:30.752766pt;}
._18{width:31.995281pt;}
._1b{width:33.233065pt;}
._22{width:34.366204pt;}
._c{width:35.357037pt;}
._76{width:36.343565pt;}
._77{width:37.485374pt;}
._23{width:38.460469pt;}
._73{width:39.436172pt;}
._6{width:40.407703pt;}
._71{width:41.392299pt;}
._10{width:42.888873pt;}
._72{width:43.950308pt;}
._8{width:47.244469pt;}
._61{width:50.713945pt;}
._4{width:52.654589pt;}
._6f{width:54.456637pt;}
._16{width:55.727172pt;}
._17{width:58.290362pt;}
._2e{width:62.358323pt;}
._31{width:63.761067pt;}
._56{width:66.568831pt;}
._5d{width:67.530707pt;}
._2f{width:73.070182pt;}
._44{width:74.982337pt;}
._1c{width:80.425887pt;}
._11{width:84.164373pt;}
._63{width:91.021205pt;}
._29{width:98.997572pt;}
._48{width:102.028254pt;}
._45{width:112.363923pt;}
._2c{width:114.409972pt;}
._49{width:115.715872pt;}
._5f{width:117.598706pt;}
._5c{width:120.411063pt;}
._47{width:124.409916pt;}
._55{width:127.256620pt;}
._21{width:128.512822pt;}
._69{width:130.280783pt;}
._6a{width:134.330923pt;}
._4c{width:137.466649pt;}
._25{width:141.151145pt;}
._2a{width:146.551224pt;}
._5b{width:150.805464pt;}
._57{width:152.284727pt;}
._4d{width:156.965294pt;}
._5e{width:158.990513pt;}
._60{width:171.876614pt;}
._28{width:178.986520pt;}
._4a{width:182.802980pt;}
._1e{width:184.481691pt;}
._62{width:200.488093pt;}
._24{width:208.327954pt;}
._51{width:210.033125pt;}
._37{width:221.633468pt;}
._4f{width:228.593971pt;}
._64{width:231.176294pt;}
._1d{width:246.421667pt;}
._52{width:252.242945pt;}
._53{width:255.506437pt;}
._54{width:259.690729pt;}
._26{width:262.201084pt;}
._4b{width:266.478920pt;}
._6d{width:274.385292pt;}
._2b{width:281.196520pt;}
._6e{width:288.426862pt;}
._33{width:307.965952pt;}
._50{width:315.026596pt;}
._3d{width:335.574494pt;}
._35{width:339.145114pt;}
._67{width:343.776455pt;}
._65{width:345.612780pt;}
._58{width:357.676362pt;}
._3c{width:374.660028pt;}
._30{width:377.274231pt;}
._68{width:385.890645pt;}
._66{width:398.408320pt;}
._6b{width:411.524978pt;}
._3b{width:458.123264pt;}
._6c{width:464.790966pt;}
._32{width:480.949726pt;}
._34{width:543.371810pt;}
._36{width:595.400841pt;}
._46{width:612.567613pt;}
._38{width:626.643763pt;}
._3a{width:657.822925pt;}
._39{width:709.851955pt;}
.fsa{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs9{font-size:51.658575pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs6{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs8{font-size:77.488187pt;}
.fs5{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:54.637333pt;}
.y59{bottom:94.488000pt;}
.y20{bottom:99.625333pt;}
.y135{bottom:103.498667pt;}
.yfc{bottom:110.428000pt;}
.y98{bottom:110.484000pt;}
.y58{bottom:113.749333pt;}
.y134{bottom:119.438667pt;}
.y1f{bottom:123.408000pt;}
.yc8{bottom:125.598667pt;}
.yfb{bottom:126.368000pt;}
.y97{bottom:133.010667pt;}
.y133{bottom:135.378667pt;}
.yfa{bottom:142.309333pt;}
.y1e{bottom:142.669333pt;}
.yc7{bottom:144.860000pt;}
.y57{bottom:146.265333pt;}
.y132{bottom:151.318667pt;}
.yf9{bottom:158.249333pt;}
.y96{bottom:161.209333pt;}
.yc6{bottom:164.652000pt;}
.y131{bottom:167.260000pt;}
.yf8{bottom:174.189333pt;}
.y56{bottom:178.781333pt;}
.y1d{bottom:178.865333pt;}
.y95{bottom:180.469333pt;}
.y130{bottom:183.200000pt;}
.yc5{bottom:183.913333pt;}
.y78{bottom:184.589333pt;}
.yf7{bottom:190.129333pt;}
.y55{bottom:198.041333pt;}
.y12f{bottom:199.140000pt;}
.yc4{bottom:203.705333pt;}
.y77{bottom:203.849333pt;}
.yf6{bottom:206.069333pt;}
.y94{bottom:208.668000pt;}
.y12e{bottom:215.080000pt;}
.y1c{bottom:218.556000pt;}
.yf5{bottom:222.009333pt;}
.yc3{bottom:223.498667pt;}
.y93{bottom:227.929333pt;}
.y12d{bottom:231.020000pt;}
.y76{bottom:233.402667pt;}
.y54{bottom:234.456000pt;}
.yf4{bottom:237.950667pt;}
.yc2{bottom:242.760000pt;}
.y12c{bottom:246.960000pt;}
.y53{bottom:253.717333pt;}
.yf3{bottom:253.890667pt;}
.y92{bottom:256.128000pt;}
.yc1{bottom:262.552000pt;}
.y12b{bottom:262.901333pt;}
.yf2{bottom:269.830667pt;}
.y1b{bottom:271.796000pt;}
.y12a{bottom:278.841333pt;}
.y75{bottom:279.613333pt;}
.yc0{bottom:282.344000pt;}
.y52{bottom:283.270667pt;}
.y91{bottom:284.326667pt;}
.yf1{bottom:285.770667pt;}
.y1a{bottom:291.056000pt;}
.y129{bottom:294.781333pt;}
.yf0{bottom:301.710667pt;}
.ybf{bottom:302.137333pt;}
.y136{bottom:303.416000pt;}
.y90{bottom:303.586667pt;}
.y19{bottom:310.317333pt;}
.y128{bottom:310.721333pt;}
.y74{bottom:314.814667pt;}
.yef{bottom:317.650667pt;}
.ybe{bottom:321.929333pt;}
.y8f{bottom:322.848000pt;}
.y51{bottom:324.817333pt;}
.y127{bottom:326.661333pt;}
.y18{bottom:329.578667pt;}
.yee{bottom:333.592000pt;}
.ybd{bottom:341.721333pt;}
.y126{bottom:342.601333pt;}
.y50{bottom:344.078667pt;}
.y17{bottom:348.840000pt;}
.yed{bottom:349.532000pt;}
.y73{bottom:350.016000pt;}
.y8e{bottom:351.046667pt;}
.y125{bottom:358.542667pt;}
.ybc{bottom:360.982667pt;}
.y4f{bottom:363.338667pt;}
.yec{bottom:365.472000pt;}
.y16{bottom:368.101333pt;}
.y8d{bottom:370.308000pt;}
.y124{bottom:374.482667pt;}
.y72{bottom:377.912000pt;}
.ybb{bottom:380.774667pt;}
.yeb{bottom:381.412000pt;}
.y123{bottom:390.422667pt;}
.yea{bottom:397.352000pt;}
.y4e{bottom:397.818667pt;}
.yba{bottom:400.568000pt;}
.y15{bottom:403.144000pt;}
.y39{bottom:404.276000pt;}
.y8c{bottom:405.350667pt;}
.y122{bottom:406.362667pt;}
.ye9{bottom:413.292000pt;}
.y71{bottom:416.433333pt;}
.yb9{bottom:420.360000pt;}
.y121{bottom:422.302667pt;}
.y38{bottom:423.536000pt;}
.ye8{bottom:429.233333pt;}
.y70{bottom:435.694667pt;}
.y120{bottom:438.242667pt;}
.yb8{bottom:439.621333pt;}
.y37{bottom:442.797333pt;}
.y4d{bottom:442.968000pt;}
.ye7{bottom:445.173333pt;}
.y8b{bottom:450.657333pt;}
.y11f{bottom:454.184000pt;}
.y6f{bottom:454.956000pt;}
.y14{bottom:456.382667pt;}
.yb7{bottom:459.413333pt;}
.ye6{bottom:461.113333pt;}
.y8a{bottom:469.918667pt;}
.y11e{bottom:470.124000pt;}
.y36{bottom:472.350667pt;}
.y13{bottom:474.448000pt;}
.y4c{bottom:475.484000pt;}
.ye5{bottom:477.053333pt;}
.yb6{bottom:479.205333pt;}
.y6e{bottom:484.509333pt;}
.y11d{bottom:486.064000pt;}
.y89{bottom:489.178667pt;}
.y12{bottom:492.513333pt;}
.ye4{bottom:492.993333pt;}
.yb5{bottom:498.466667pt;}
.y11c{bottom:502.004000pt;}
.y4b{bottom:508.000000pt;}
.y88{bottom:508.440000pt;}
.ye3{bottom:508.934667pt;}
.y11{bottom:510.578667pt;}
.y11b{bottom:517.944000pt;}
.yb4{bottom:518.260000pt;}
.y35{bottom:518.561333pt;}
.ye2{bottom:524.874667pt;}
.y6d{bottom:526.070667pt;}
.y87{bottom:527.701333pt;}
.y10{bottom:528.644000pt;}
.y11a{bottom:533.884000pt;}
.y34{bottom:537.822667pt;}
.yb3{bottom:538.052000pt;}
.ye1{bottom:540.814667pt;}
.y4a{bottom:544.414667pt;}
.y6c{bottom:545.330667pt;}
.yf{bottom:546.710667pt;}
.y119{bottom:549.825333pt;}
.ye0{bottom:556.754667pt;}
.y33{bottom:557.084000pt;}
.yb2{bottom:557.313333pt;}
.y86{bottom:562.744000pt;}
.y49{bottom:563.676000pt;}
.y6b{bottom:564.592000pt;}
.ye{bottom:564.776000pt;}
.y118{bottom:565.765333pt;}
.ydf{bottom:572.694667pt;}
.yb1{bottom:577.105333pt;}
.y117{bottom:581.705333pt;}
.yd{bottom:582.841333pt;}
.yde{bottom:588.634667pt;}
.y32{bottom:589.628000pt;}
.y48{bottom:593.229333pt;}
.yb0{bottom:596.897333pt;}
.y116{bottom:597.645333pt;}
.yc{bottom:600.906667pt;}
.ydd{bottom:604.576000pt;}
.y6a{bottom:608.760000pt;}
.y31{bottom:608.889333pt;}
.y115{bottom:613.585333pt;}
.y85{bottom:615.609333pt;}
.yaf{bottom:616.158667pt;}
.yb{bottom:618.972000pt;}
.ydc{bottom:620.516000pt;}
.y47{bottom:622.782667pt;}
.y69{bottom:628.552000pt;}
.y114{bottom:629.525333pt;}
.y84{bottom:634.870667pt;}
.yae{bottom:635.950667pt;}
.ydb{bottom:636.456000pt;}
.ya{bottom:637.038667pt;}
.y30{bottom:641.433333pt;}
.y113{bottom:645.466667pt;}
.y68{bottom:647.813333pt;}
.yda{bottom:652.396000pt;}
.y9{bottom:655.104000pt;}
.yad{bottom:655.744000pt;}
.y112{bottom:661.406667pt;}
.y46{bottom:662.473333pt;}
.y83{bottom:666.693333pt;}
.y67{bottom:667.074667pt;}
.yd9{bottom:668.336000pt;}
.y2f{bottom:673.978667pt;}
.yac{bottom:675.536000pt;}
.y111{bottom:677.346667pt;}
.y8{bottom:682.129333pt;}
.yd8{bottom:684.276000pt;}
.y66{bottom:686.336000pt;}
.y82{bottom:691.873333pt;}
.y2e{bottom:693.240000pt;}
.y110{bottom:693.286667pt;}
.yab{bottom:694.797333pt;}
.yd7{bottom:700.217333pt;}
.y65{bottom:705.597333pt;}
.y10f{bottom:709.226667pt;}
.yaa{bottom:714.589333pt;}
.yd6{bottom:716.157333pt;}
.y81{bottom:717.053333pt;}
.y64{bottom:724.857333pt;}
.y10e{bottom:725.166667pt;}
.y2d{bottom:729.769333pt;}
.yd5{bottom:732.097333pt;}
.ya9{bottom:734.382667pt;}
.y45{bottom:737.920366pt;}
.y10d{bottom:741.108000pt;}
.y63{bottom:744.118667pt;}
.yd4{bottom:748.037333pt;}
.y80{bottom:748.876000pt;}
.ya8{bottom:754.174667pt;}
.y10c{bottom:757.048000pt;}
.y7{bottom:758.138667pt;}
.y44{bottom:761.975006pt;}
.y62{bottom:763.380000pt;}
.yd3{bottom:763.977333pt;}
.y2c{bottom:765.964000pt;}
.y10b{bottom:772.988000pt;}
.ya7{bottom:773.436000pt;}
.y7f{bottom:779.253333pt;}
.yd2{bottom:779.917333pt;}
.y61{bottom:783.172000pt;}
.y43{bottom:786.028026pt;}
.y10a{bottom:788.928000pt;}
.ya6{bottom:793.228000pt;}
.y6{bottom:795.417333pt;}
.yd1{bottom:795.858667pt;}
.y7e{bottom:798.514667pt;}
.y109{bottom:804.868000pt;}
.y42{bottom:810.081046pt;}
.yd0{bottom:811.798667pt;}
.y2b{bottom:812.174667pt;}
.ya5{bottom:813.020000pt;}
.y60{bottom:816.248000pt;}
.y5{bottom:819.328000pt;}
.y108{bottom:820.808000pt;}
.ycf{bottom:827.738667pt;}
.y7d{bottom:828.068000pt;}
.y2a{bottom:831.436000pt;}
.ya4{bottom:832.813333pt;}
.y41{bottom:834.135686pt;}
.y107{bottom:836.749333pt;}
.y4{bottom:843.237333pt;}
.yce{bottom:843.678667pt;}
.ya3{bottom:852.605333pt;}
.y106{bottom:852.689333pt;}
.y5f{bottom:853.640000pt;}
.y40{bottom:858.188705pt;}
.y9d{bottom:858.666667pt;}
.y29{bottom:863.980000pt;}
.ycd{bottom:865.858667pt;}
.y105{bottom:868.629333pt;}
.y7c{bottom:869.254667pt;}
.ya2{bottom:872.397333pt;}
.y5e{bottom:872.901333pt;}
.y9c{bottom:877.928000pt;}
.y3f{bottom:882.241725pt;}
.y28{bottom:883.241333pt;}
.y104{bottom:884.569333pt;}
.ycc{bottom:885.118667pt;}
.y3{bottom:890.554667pt;}
.ya1{bottom:892.190667pt;}
.y103{bottom:900.509333pt;}
.y7b{bottom:901.077333pt;}
.y5d{bottom:902.454667pt;}
.y27{bottom:902.502667pt;}
.y3e{bottom:906.296365pt;}
.y9b{bottom:906.486667pt;}
.y2{bottom:914.465333pt;}
.y102{bottom:916.449333pt;}
.ycb{bottom:920.161333pt;}
.y7a{bottom:920.338667pt;}
.y26{bottom:921.764000pt;}
.ya0{bottom:925.266667pt;}
.y9a{bottom:925.748000pt;}
.y3d{bottom:930.349385pt;}
.y101{bottom:932.390667pt;}
.y25{bottom:941.024000pt;}
.y5c{bottom:944.016000pt;}
.y99{bottom:945.009333pt;}
.y1{bottom:947.673333pt;}
.y100{bottom:948.330667pt;}
.y79{bottom:952.161333pt;}
.y3c{bottom:954.402404pt;}
.y9f{bottom:957.788000pt;}
.y5b{bottom:963.277333pt;}
.yff{bottom:964.270667pt;}
.y24{bottom:973.569333pt;}
.y9e{bottom:977.049333pt;}
.y3b{bottom:978.457045pt;}
.yca{bottom:979.348000pt;}
.yfe{bottom:980.210667pt;}
.y5a{bottom:982.537333pt;}
.y23{bottom:992.830667pt;}
.yfd{bottom:996.150667pt;}
.yc9{bottom:998.608000pt;}
.y22{bottom:1012.090667pt;}
.y3a{bottom:1014.549333pt;}
.hb{height:20.623534pt;}
.h16{height:21.583121pt;}
.h15{height:36.981171pt;}
.h6{height:43.694582pt;}
.h5{height:47.285075pt;}
.hf{height:47.820800pt;}
.h9{height:47.884561pt;}
.hc{height:47.948322pt;}
.h7{height:49.849534pt;}
.h11{height:51.870867pt;}
.h10{height:51.876201pt;}
.h3{height:53.865199pt;}
.h13{height:55.060201pt;}
.ha{height:57.461313pt;}
.he{height:58.193628pt;}
.hd{height:58.271116pt;}
.h14{height:60.945894pt;}
.h12{height:62.528555pt;}
.h4{height:67.674201pt;}
.h8{height:69.045231pt;}
.h2{height:77.360400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:73.238667pt;}
.x1c{left:78.108000pt;}
.x1b{left:82.977333pt;}
.xb{left:94.488000pt;}
.x16{left:102.290667pt;}
.x10{left:104.819585pt;}
.xc{left:112.434667pt;}
.xe{left:117.901333pt;}
.x1e{left:121.892000pt;}
.x17{left:126.565333pt;}
.x1d{left:130.352000pt;}
.xa{left:133.508000pt;}
.x15{left:151.077333pt;}
.x9{left:155.202667pt;}
.x2{left:159.897333pt;}
.xf{left:163.721333pt;}
.x1{left:182.521333pt;}
.x3{left:216.265333pt;}
.x12{left:218.048000pt;}
.x18{left:226.166667pt;}
.x11{left:233.702667pt;}
.x20{left:248.204000pt;}
.x1a{left:249.318667pt;}
.x5{left:260.937333pt;}
.x13{left:273.048000pt;}
.x6{left:279.009333pt;}
.x14{left:302.714667pt;}
.x7{left:326.172000pt;}
.x4{left:336.657333pt;}
.x8{left:365.088000pt;}
.x21{left:389.048000pt;}
.xd{left:392.949333pt;}
.x19{left:492.561333pt;}
}




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