
    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_a6a7ca3b894931c45f035530.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.708008;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_26f57d068a2f018fbb4e24be.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.046387;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_f042bc2cfa638b44f66c2af7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.896973;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_75ecbe909926d20f12b374b6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_c4dffcc30d7c741f98c7307a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a2d44541679a23765723cfda.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b95e18d0bda083cf63a46586.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_ad5f0bdad4e1864e8fdbc22a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.695312;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_ff46011e3354bf359d37c103.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.687500;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_097f4449858b02b3431f6c37.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.695312;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_e645bd473520c2bb512f26a8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_44dc997fae81497b299f8ab4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.871582;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_f31f983fd0b346406abd6a49.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.687500;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_dc2d83e5d6dbf39ce3f19e89.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.871582;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_9a203422df9a394a38b5569a.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_6997de09e591f6690959aa0b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.871582;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_6a9fb72eea30e3221a287bb9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.687500;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_153f3a08552a1633cf35d66c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.896973;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_7410a358f4fc6b5eff9093d7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.871582;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_12c8474d843625226066a1b7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.687500;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_ec2d26e4b833db639a20bc01.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.046387;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_7d22464242316bef038efddb.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.871582;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_bb8f3114accd28be3e46ef62.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.687500;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_219e4cf728ba7d1490218b14.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.675781;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_58272a2a8afabf2f06c74f8b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.871582;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_851318d9a23515bb739fdb47.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.687500;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_5f926ff83aa84e06dfb73d8c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.871582;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_2bf598343752bde52efc4cd5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.687500;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_255d8cba8cab0abb2215c502.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.908203;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);}
.v5{vertical-align:-20.880000px;}
.v2{vertical-align:-18.000000px;}
.v4{vertical-align:-5.938560px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:18.000720px;}
.v3{vertical-align:21.417120px;}
.v1{vertical-align:24.120000px;}
.ls2e{letter-spacing:-0.661320px;}
.ls69{letter-spacing:-0.567720px;}
.ls6d{letter-spacing:-0.541080px;}
.ls68{letter-spacing:-0.526680px;}
.ls23{letter-spacing:-0.486000px;}
.ls2d{letter-spacing:-0.480960px;}
.ls2b{letter-spacing:-0.420840px;}
.ls22{letter-spacing:-0.378000px;}
.ls2c{letter-spacing:-0.360720px;}
.ls49{letter-spacing:-0.349920px;}
.ls3a{letter-spacing:-0.300600px;}
.ls2a{letter-spacing:-0.240480px;}
.ls24{letter-spacing:-0.216000px;}
.ls5e{letter-spacing:-0.191520px;}
.ls28{letter-spacing:-0.180360px;}
.ls1c{letter-spacing:-0.162000px;}
.ls19{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.120240px;}
.ls20{letter-spacing:-0.108000px;}
.ls5c{letter-spacing:-0.095760px;}
.ls1b{letter-spacing:-0.081000px;}
.ls18{letter-spacing:-0.072000px;}
.ls38{letter-spacing:-0.066000px;}
.ls27{letter-spacing:-0.060120px;}
.ls1d{letter-spacing:-0.060000px;}
.ls70{letter-spacing:-0.029880px;}
.ls17{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.002880px;}
.ls41{letter-spacing:0.010080px;}
.ls39{letter-spacing:0.060120px;}
.ls37{letter-spacing:0.065880px;}
.ls1f{letter-spacing:0.066000px;}
.ls66{letter-spacing:0.066132px;}
.ls1a{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078000px;}
.ls5d{letter-spacing:0.095760px;}
.ls16{letter-spacing:0.096192px;}
.ls42{letter-spacing:0.102204px;}
.ls6b{letter-spacing:0.104040px;}
.ls25{letter-spacing:0.108000px;}
.ls1e{letter-spacing:0.114000px;}
.ls9{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.120240px;}
.ls10{letter-spacing:0.132000px;}
.ls5a{letter-spacing:0.132120px;}
.ls43{letter-spacing:0.132264px;}
.ls12{letter-spacing:0.138276px;}
.ls46{letter-spacing:0.146880px;}
.ls1{letter-spacing:0.162000px;}
.ls40{letter-spacing:0.162324px;}
.ls5{letter-spacing:0.165117px;}
.ls4{letter-spacing:0.168000px;}
.ls2{letter-spacing:0.174000px;}
.ls6f{letter-spacing:0.179280px;}
.ls6{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.180360px;}
.ls4b{letter-spacing:0.191520px;}
.ls47{letter-spacing:0.192384px;}
.ls0{letter-spacing:0.198000px;}
.ls4c{letter-spacing:0.216432px;}
.ls7{letter-spacing:0.231897px;}
.ls74{letter-spacing:0.232200px;}
.ls35{letter-spacing:0.234468px;}
.ls6e{letter-spacing:0.246492px;}
.ls71{letter-spacing:0.270000px;}
.ls36{letter-spacing:0.287280px;}
.ls4a{letter-spacing:0.300600px;}
.ls2f{letter-spacing:0.396000px;}
.ls14{letter-spacing:0.420840px;}
.ls59{letter-spacing:0.537840px;}
.ls57{letter-spacing:0.540000px;}
.ls3b{letter-spacing:0.594000px;}
.ls45{letter-spacing:0.718560px;}
.ls72{letter-spacing:0.781560px;}
.ls6a{letter-spacing:1.496988px;}
.ls30{letter-spacing:1.503000px;}
.ls44{letter-spacing:2.224440px;}
.ls3f{letter-spacing:2.518560px;}
.ls21{letter-spacing:2.862000px;}
.ls73{letter-spacing:3.306600px;}
.ls67{letter-spacing:3.667320px;}
.ls33{letter-spacing:4.749480px;}
.ls15{letter-spacing:5.110200px;}
.ls3c{letter-spacing:5.470920px;}
.ls31{letter-spacing:5.717412px;}
.ls3d{letter-spacing:5.831640px;}
.ls32{letter-spacing:6.553080px;}
.ls48{letter-spacing:6.913800px;}
.ls34{letter-spacing:7.274520px;}
.ls13{letter-spacing:7.995960px;}
.ls6c{letter-spacing:8.837640px;}
.ls3e{letter-spacing:10.160280px;}
.lsa{letter-spacing:14.796000px;}
.lsd{letter-spacing:14.814000px;}
.lsc{letter-spacing:14.867976px;}
.lsb{letter-spacing:14.868000px;}
.lse{letter-spacing:25.578000px;}
.lsf{letter-spacing:25.590000px;}
.ls55{letter-spacing:308.442960px;}
.ls60{letter-spacing:332.526600px;}
.ls53{letter-spacing:350.194320px;}
.ls51{letter-spacing:350.529480px;}
.ls54{letter-spacing:350.912520px;}
.ls50{letter-spacing:351.247680px;}
.ls62{letter-spacing:374.325840px;}
.ls61{letter-spacing:374.661000px;}
.ls65{letter-spacing:375.044040px;}
.ls63{letter-spacing:375.379200px;}
.ls52{letter-spacing:434.080080px;}
.ls64{letter-spacing:458.211600px;}
.ls5f{letter-spacing:767.420160px;}
.ls4f{letter-spacing:767.420760px;}
.ls4d{letter-spacing:809.889960px;}
.ls5b{letter-spacing:892.339320px;}
.ls4e{letter-spacing:892.339560px;}
.ls56{letter-spacing:1225.680240px;}
.ls58{letter-spacing:1767.825360px;}
.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;}
}
.ws65{word-spacing:-37.749600px;}
.ws0{word-spacing:-37.354320px;}
.wsf{word-spacing:-30.078000px;}
.ws7{word-spacing:-21.138000px;}
.ws4{word-spacing:-20.412000px;}
.ws5{word-spacing:-20.088000px;}
.ws3{word-spacing:-18.072000px;}
.ws1{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.856000px;}
.ws8{word-spacing:-16.536000px;}
.wsc{word-spacing:-16.362000px;}
.ws13{word-spacing:-15.210360px;}
.ws66{word-spacing:-15.150240px;}
.ws6a{word-spacing:-15.090120px;}
.ws12{word-spacing:-15.030000px;}
.ws68{word-spacing:-14.969880px;}
.ws16{word-spacing:-14.909760px;}
.ws67{word-spacing:-14.849640px;}
.ws15{word-spacing:-14.789520px;}
.ws6b{word-spacing:-14.729400px;}
.ws14{word-spacing:-14.609160px;}
.ws17{word-spacing:-14.549040px;}
.ws18{word-spacing:-14.368680px;}
.ws6{word-spacing:-14.220000px;}
.ws11{word-spacing:-13.608000px;}
.wsa{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.392000px;}
.wse{word-spacing:-13.338000px;}
.ws10{word-spacing:-13.284000px;}
.wsd{word-spacing:-13.122000px;}
.wsba{word-spacing:-12.161520px;}
.wsb9{word-spacing:-12.065760px;}
.ws6c{word-spacing:-11.970000px;}
.wsb8{word-spacing:-11.874240px;}
.wsbb{word-spacing:-11.778480px;}
.ws69{word-spacing:-9.720000px;}
.wsa1{word-spacing:-9.370080px;}
.wsb{word-spacing:-9.000000px;}
.wsdd{word-spacing:-7.649280px;}
.wsbc{word-spacing:-7.470000px;}
.wsdc{word-spacing:-7.440120px;}
.wsc9{word-spacing:-6.902280px;}
.wsb4{word-spacing:-3.306600px;}
.wsa5{word-spacing:-3.066120px;}
.ws46{word-spacing:-2.945880px;}
.wsa6{word-spacing:-2.705400px;}
.wsa4{word-spacing:-2.645280px;}
.ws49{word-spacing:-2.585160px;}
.wsc2{word-spacing:-2.344680px;}
.ws3d{word-spacing:-2.322000px;}
.ws48{word-spacing:-2.284560px;}
.ws90{word-spacing:-2.224440px;}
.wsce{word-spacing:-2.104200px;}
.wsf1{word-spacing:-2.044080px;}
.wsf2{word-spacing:-1.983960px;}
.ws4f{word-spacing:-1.863720px;}
.wsb0{word-spacing:-1.803600px;}
.wsb6{word-spacing:-1.623240px;}
.ws4d{word-spacing:-1.563120px;}
.ws58{word-spacing:-1.503000px;}
.ws81{word-spacing:-1.262520px;}
.ws80{word-spacing:-1.202400px;}
.ws50{word-spacing:-1.142280px;}
.wscc{word-spacing:-1.082160px;}
.ws5c{word-spacing:-0.901800px;}
.ws22{word-spacing:-0.882000px;}
.ws5d{word-spacing:-0.841680px;}
.ws7b{word-spacing:-0.781560px;}
.wsb7{word-spacing:-0.661320px;}
.wse3{word-spacing:-0.601200px;}
.ws73{word-spacing:-0.594000px;}
.ws70{word-spacing:-0.552000px;}
.wse4{word-spacing:-0.541080px;}
.ws1c{word-spacing:-0.510000px;}
.wsaf{word-spacing:-0.480960px;}
.ws72{word-spacing:-0.462000px;}
.wsac{word-spacing:-0.420840px;}
.ws74{word-spacing:-0.396000px;}
.wsc3{word-spacing:-0.360720px;}
.ws98{word-spacing:-0.300600px;}
.wscd{word-spacing:-0.287280px;}
.ws26{word-spacing:-0.264000px;}
.ws27{word-spacing:-0.252000px;}
.ws25{word-spacing:-0.240000px;}
.ws71{word-spacing:-0.198000px;}
.wsbd{word-spacing:-0.191520px;}
.ws42{word-spacing:-0.186000px;}
.ws44{word-spacing:-0.180360px;}
.ws23{word-spacing:-0.174000px;}
.ws24{word-spacing:-0.168000px;}
.ws33{word-spacing:-0.162000px;}
.ws2c{word-spacing:-0.144000px;}
.ws1d{word-spacing:-0.126000px;}
.ws9f{word-spacing:-0.120240px;}
.ws20{word-spacing:-0.114000px;}
.ws41{word-spacing:-0.108000px;}
.ws52{word-spacing:-0.095760px;}
.ws6f{word-spacing:-0.066000px;}
.ws62{word-spacing:-0.060120px;}
.ws19{word-spacing:0.000000px;}
.ws1f{word-spacing:0.030000px;}
.ws1b{word-spacing:0.060000px;}
.wsc6{word-spacing:0.060120px;}
.ws6d{word-spacing:0.066000px;}
.ws1a{word-spacing:0.081000px;}
.wsbf{word-spacing:0.095760px;}
.ws32{word-spacing:0.108000px;}
.ws4a{word-spacing:0.120240px;}
.ws63{word-spacing:0.131760px;}
.ws28{word-spacing:0.132000px;}
.ws29{word-spacing:0.162000px;}
.ws1e{word-spacing:0.174000px;}
.ws47{word-spacing:0.180360px;}
.ws38{word-spacing:0.216000px;}
.ws4e{word-spacing:0.240480px;}
.ws2a{word-spacing:0.270000px;}
.wsc8{word-spacing:0.287280px;}
.ws43{word-spacing:0.288000px;}
.ws4b{word-spacing:0.300600px;}
.ws21{word-spacing:0.348000px;}
.ws51{word-spacing:0.360720px;}
.ws5e{word-spacing:0.420840px;}
.wsbe{word-spacing:0.430920px;}
.ws3c{word-spacing:0.468000px;}
.ws9e{word-spacing:0.480960px;}
.ws37{word-spacing:0.486000px;}
.wsf4{word-spacing:0.540000px;}
.wsd8{word-spacing:0.541080px;}
.ws2b{word-spacing:0.564000px;}
.ws4c{word-spacing:0.601200px;}
.ws34{word-spacing:0.660000px;}
.ws54{word-spacing:0.661320px;}
.ws36{word-spacing:0.666000px;}
.wsef{word-spacing:0.721440px;}
.ws3f{word-spacing:0.756000px;}
.wsc0{word-spacing:0.813960px;}
.ws91{word-spacing:0.901800px;}
.ws3e{word-spacing:0.918000px;}
.ws92{word-spacing:0.961920px;}
.ws55{word-spacing:1.022040px;}
.wsad{word-spacing:1.082160px;}
.ws45{word-spacing:1.262520px;}
.ws82{word-spacing:1.322640px;}
.wsa2{word-spacing:1.380000px;}
.ws8a{word-spacing:1.382760px;}
.ws6e{word-spacing:1.386000px;}
.ws3a{word-spacing:1.422000px;}
.wse6{word-spacing:1.563120px;}
.ws7e{word-spacing:1.623240px;}
.ws7f{word-spacing:1.683360px;}
.ws95{word-spacing:1.743480px;}
.ws87{word-spacing:1.923840px;}
.ws96{word-spacing:1.983960px;}
.ws40{word-spacing:1.998000px;}
.ws8d{word-spacing:2.044080px;}
.wscf{word-spacing:2.104200px;}
.wsdf{word-spacing:2.284560px;}
.wsde{word-spacing:2.344680px;}
.ws7a{word-spacing:2.404800px;}
.ws79{word-spacing:2.645280px;}
.ws9c{word-spacing:2.705400px;}
.ws7d{word-spacing:2.765520px;}
.ws7c{word-spacing:2.825640px;}
.wsc1{word-spacing:3.006000px;}
.ws97{word-spacing:3.066120px;}
.ws5b{word-spacing:3.126240px;}
.wsaa{word-spacing:3.186360px;}
.wsea{word-spacing:3.303720px;}
.wsc5{word-spacing:3.366720px;}
.wsf3{word-spacing:3.426840px;}
.wsae{word-spacing:3.486960px;}
.wse9{word-spacing:3.495240px;}
.wsa9{word-spacing:3.547080px;}
.ws59{word-spacing:3.727440px;}
.ws5a{word-spacing:3.847680px;}
.wsed{word-spacing:4.148280px;}
.ws8f{word-spacing:4.208400px;}
.ws8e{word-spacing:4.448880px;}
.wsc4{word-spacing:4.509000px;}
.wsf5{word-spacing:4.536000px;}
.ws9a{word-spacing:4.569120px;}
.ws9b{word-spacing:4.869720px;}
.wse5{word-spacing:4.929840px;}
.ws99{word-spacing:4.989960px;}
.ws60{word-spacing:5.170320px;}
.ws5f{word-spacing:5.230440px;}
.wsc7{word-spacing:5.290560px;}
.ws88{word-spacing:5.651280px;}
.wsa3{word-spacing:5.711400px;}
.ws35{word-spacing:5.940000px;}
.ws89{word-spacing:5.951880px;}
.wsca{word-spacing:6.012000px;}
.ws93{word-spacing:6.072120px;}
.wscb{word-spacing:6.312600px;}
.ws9d{word-spacing:6.372720px;}
.wsb5{word-spacing:6.613200px;}
.ws94{word-spacing:6.673320px;}
.ws78{word-spacing:6.733440px;}
.ws8b{word-spacing:6.793560px;}
.ws77{word-spacing:6.973920px;}
.wsab{word-spacing:7.034040px;}
.ws83{word-spacing:7.094160px;}
.wsb1{word-spacing:7.154280px;}
.ws85{word-spacing:7.394760px;}
.ws86{word-spacing:7.454880px;}
.ws8c{word-spacing:7.635240px;}
.wseb{word-spacing:7.660800px;}
.ws84{word-spacing:7.695360px;}
.wsf0{word-spacing:7.755480px;}
.ws53{word-spacing:7.815600px;}
.wsec{word-spacing:7.852320px;}
.ws61{word-spacing:8.116200px;}
.wsd5{word-spacing:8.176320px;}
.wsd4{word-spacing:8.476920px;}
.wsd7{word-spacing:8.537040px;}
.wsd6{word-spacing:8.777520px;}
.wsd3{word-spacing:8.837640px;}
.wsd0{word-spacing:8.897760px;}
.ws76{word-spacing:9.138240px;}
.ws75{word-spacing:9.258480px;}
.wsa7{word-spacing:9.619200px;}
.wsd9{word-spacing:9.979920px;}
.wsda{word-spacing:10.220400px;}
.wsdb{word-spacing:10.340640px;}
.wsa8{word-spacing:10.460880px;}
.wsd2{word-spacing:11.422800px;}
.wsd1{word-spacing:11.783520px;}
.wsb2{word-spacing:12.144240px;}
.wsb3{word-spacing:12.504960px;}
.ws3b{word-spacing:12.798000px;}
.ws39{word-spacing:12.906000px;}
.wse7{word-spacing:13.947840px;}
.ws57{word-spacing:14.308560px;}
.ws56{word-spacing:14.549040px;}
.wsee{word-spacing:23.326560px;}
.wse1{word-spacing:23.687280px;}
.wse0{word-spacing:23.987880px;}
.wse2{word-spacing:24.048000px;}
.ws2f{word-spacing:29.700000px;}
.ws30{word-spacing:29.880000px;}
.ws31{word-spacing:29.898000px;}
.ws2e{word-spacing:30.054000px;}
.ws2d{word-spacing:30.078000px;}
.wse8{word-spacing:31.536000px;}
.ws64{word-spacing:1653.820968px;}
.wsa0{word-spacing:1653.826968px;}
._1a{margin-left:-23.668884px;}
._a{margin-left:-14.901588px;}
._7{margin-left:-12.827970px;}
._19{margin-left:-9.760572px;}
._9{margin-left:-7.771500px;}
._d{margin-left:-5.716728px;}
._b{margin-left:-4.687848px;}
._c{margin-left:-3.457368px;}
._1{margin-left:-2.349000px;}
._0{margin-left:-1.080000px;}
._2{width:1.053000px;}
._8{width:2.248488px;}
._11{width:3.576852px;}
._e{width:4.647960px;}
._12{width:5.671692px;}
._f{width:7.027920px;}
._18{width:8.446968px;}
._4{width:9.521982px;}
._10{width:11.089164px;}
._5{width:14.094006px;}
._3{width:15.108000px;}
._6{width:26.783964px;}
._1b{width:45.036000px;}
._13{width:83.832840px;}
._16{width:114.368760px;}
._14{width:157.157280px;}
._15{width:166.667760px;}
._17{width:767.351640px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:29.880000px;}
.fs7{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fsd{font-size:42.000000px;}
.fs5{font-size:42.120000px;}
.fsa{font-size:47.880000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs9{font-size:60.120000px;}
.fs8{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:81.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y70{bottom:2.610000px;}
.yce{bottom:2.700000px;}
.y74{bottom:2.880000px;}
.y80{bottom:2.969850px;}
.y72{bottom:2.970000px;}
.y10b{bottom:11.340000px;}
.y10d{bottom:11.610000px;}
.ya6{bottom:16.650000px;}
.yae{bottom:16.740000px;}
.y112{bottom:30.510000px;}
.y13e{bottom:44.280000px;}
.y29{bottom:58.672500px;}
.y16f{bottom:61.234500px;}
.y1{bottom:76.680000px;}
.yd8{bottom:76.950000px;}
.y12f{bottom:77.490000px;}
.yf1{bottom:84.150000px;}
.y130{bottom:87.570000px;}
.y164{bottom:89.329500px;}
.ya0{bottom:94.140000px;}
.yd7{bottom:100.170000px;}
.y12e{bottom:100.710000px;}
.y27{bottom:100.850040px;}
.y163{bottom:104.895000px;}
.y52{bottom:105.390000px;}
.y6d{bottom:106.470000px;}
.yf0{bottom:107.370000px;}
.y9f{bottom:117.360000px;}
.y26{bottom:118.134540px;}
.y162{bottom:120.460500px;}
.yd6{bottom:123.480000px;}
.y12d{bottom:124.020000px;}
.yef{bottom:130.680000px;}
.y11c{bottom:134.154360px;}
.y25{bottom:135.328860px;}
.y161{bottom:136.120500px;}
.y9e{bottom:140.580000px;}
.yd5{bottom:146.700000px;}
.y12c{bottom:150.120000px;}
.y11b{bottom:151.348680px;}
.y160{bottom:151.686000px;}
.y24{bottom:152.613360px;}
.yee{bottom:156.777450px;}
.y9d{bottom:163.890000px;}
.y15f{bottom:167.251500px;}
.y11a{bottom:168.633180px;}
.y23{bottom:169.897860px;}
.yd4{bottom:169.920000px;}
.y12b{bottom:181.822860px;}
.y15e{bottom:182.911500px;}
.yed{bottom:184.500000px;}
.y119{bottom:185.917680px;}
.y22{bottom:187.092180px;}
.y9c{bottom:187.110000px;}
.yd3{bottom:193.230000px;}
.y15d{bottom:198.477000px;}
.y12a{bottom:199.107360px;}
.y118{bottom:203.112000px;}
.y21{bottom:204.376680px;}
.y9b{bottom:210.330000px;}
.y129{bottom:216.301680px;}
.yd2{bottom:216.450000px;}
.y117{bottom:220.396500px;}
.y20{bottom:221.661180px;}
.y15c{bottom:229.432500px;}
.y128{bottom:233.586180px;}
.y9a{bottom:233.640000px;}
.y116{bottom:237.681000px;}
.y1f{bottom:238.855500px;}
.yd1{bottom:239.670000px;}
.y127{bottom:250.870680px;}
.y115{bottom:254.875350px;}
.y1e{bottom:256.140000px;}
.y99{bottom:256.860000px;}
.y15b{bottom:260.833500px;}
.yd0{bottom:262.980000px;}
.y126{bottom:268.065000px;}
.y98{bottom:280.080000px;}
.y125{bottom:285.349500px;}
.ycf{bottom:286.200000px;}
.y1d{bottom:286.740000px;}
.y114{bottom:286.830000px;}
.y15a{bottom:291.789000px;}
.y97{bottom:303.390000px;}
.ycd{bottom:309.420000px;}
.y111{bottom:310.050000px;}
.y124{bottom:320.008680px;}
.y159{bottom:323.334720px;}
.y96{bottom:326.610000px;}
.y113{bottom:326.790000px;}
.ycc{bottom:332.730000px;}
.y123{bottom:337.293180px;}
.y158{bottom:340.619220px;}
.y95{bottom:349.830000px;}
.y110{bottom:352.260000px;}
.y122{bottom:354.487500px;}
.ycb{bottom:355.950000px;}
.y157{bottom:357.813540px;}
.y121{bottom:371.772000px;}
.y94{bottom:372.869820px;}
.y156{bottom:375.098040px;}
.y51{bottom:380.092860px;}
.y10f{bottom:380.610000px;}
.yca{bottom:382.140000px;}
.y120{bottom:388.966350px;}
.y93{bottom:391.950000px;}
.y155{bottom:392.382540px;}
.y50{bottom:397.377360px;}
.y10e{bottom:403.830000px;}
.y154{bottom:409.576860px;}
.yc9{bottom:413.878680px;}
.y4f{bottom:414.571680px;}
.y1c{bottom:422.797860px;}
.y11f{bottom:423.715680px;}
.y92{bottom:423.756180px;}
.y153{bottom:426.861360px;}
.y10c{bottom:427.050000px;}
.yc8{bottom:431.073000px;}
.y4e{bottom:431.856180px;}
.y1b{bottom:439.992180px;}
.y11e{bottom:440.910000px;}
.y91{bottom:440.950500px;}
.y152{bottom:444.145860px;}
.yc7{bottom:448.357500px;}
.y4d{bottom:449.140680px;}
.y10a{bottom:450.360000px;}
.y1a{bottom:457.276680px;}
.y151{bottom:461.340150px;}
.yc6{bottom:465.642000px;}
.y4c{bottom:466.335000px;}
.y11d{bottom:471.510000px;}
.y19{bottom:474.561180px;}
.y90{bottom:475.429350px;}
.y109{bottom:476.460000px;}
.yc5{bottom:482.836320px;}
.y4b{bottom:483.619500px;}
.y18{bottom:491.755500px;}
.y150{bottom:495.819000px;}
.yc4{bottom:500.120850px;}
.y108{bottom:508.113360px;}
.y17{bottom:509.040000px;}
.y8f{bottom:510.268860px;}
.y4a{bottom:518.098350px;}
.y107{bottom:525.397800px;}
.y8e{bottom:527.553360px;}
.y14f{bottom:530.658540px;}
.yc3{bottom:534.775500px;}
.y6c{bottom:535.000320px;}
.y16{bottom:541.440000px;}
.y8d{bottom:544.747680px;}
.y14e{bottom:547.943040px;}
.yc2{bottom:552.051180px;}
.y6b{bottom:552.194640px;}
.y49{bottom:552.937860px;}
.y106{bottom:560.057040px;}
.y8c{bottom:562.032180px;}
.y14d{bottom:565.137360px;}
.yc1{bottom:569.245500px;}
.y6a{bottom:569.479200px;}
.y48{bottom:570.222360px;}
.y105{bottom:577.251360px;}
.y8b{bottom:579.316680px;}
.y14c{bottom:582.421860px;}
.yc0{bottom:586.525500px;}
.y47{bottom:587.416680px;}
.y15{bottom:589.506000px;}
.y104{bottom:594.535860px;}
.y8a{bottom:596.511000px;}
.y14b{bottom:599.706360px;}
.ybf{bottom:603.805680px;}
.y69{bottom:604.138320px;}
.y46{bottom:604.701180px;}
.y103{bottom:611.820360px;}
.y89{bottom:613.795500px;}
.y14a{bottom:616.900680px;}
.ybe{bottom:620.995350px;}
.y68{bottom:621.422820px;}
.y45{bottom:621.985680px;}
.y14{bottom:624.066000px;}
.y102{bottom:629.014680px;}
.y149{bottom:634.185180px;}
.y67{bottom:638.617140px;}
.y44{bottom:639.045720px;}
.y13{bottom:639.604500px;}
.y88{bottom:645.750000px;}
.y101{bottom:646.299180px;}
.y148{bottom:651.469680px;}
.y12{bottom:655.143000px;}
.y66{bottom:655.901700px;}
.y43{bottom:656.330220px;}
.ybd{bottom:660.240000px;}
.y100{bottom:663.493500px;}
.y147{bottom:668.664000px;}
.y87{bottom:668.970000px;}
.y11{bottom:670.681500px;}
.y42{bottom:673.524600px;}
.ybc{bottom:683.460000px;}
.y65{bottom:690.380400px;}
.y86{bottom:692.190000px;}
.y10{bottom:692.916000px;}
.yec{bottom:694.026000px;}
.yff{bottom:698.242860px;}
.y146{bottom:703.323180px;}
.ybb{bottom:706.680000px;}
.y41{bottom:708.003300px;}
.yeb{bottom:711.310500px;}
.yfe{bottom:715.437180px;}
.y85{bottom:715.500000px;}
.yf{bottom:719.646000px;}
.y145{bottom:720.607680px;}
.y64{bottom:725.215500px;}
.yea{bottom:728.504820px;}
.yba{bottom:729.990000px;}
.yfd{bottom:732.721650px;}
.ye{bottom:736.230000px;}
.y144{bottom:737.892180px;}
.y84{bottom:738.720000px;}
.y63{bottom:742.495680px;}
.y40{bottom:742.842900px;}
.ye9{bottom:745.789320px;}
.yb9{bottom:745.920000px;}
.yd{bottom:751.050000px;}
.y143{bottom:755.086500px;}
.yb8{bottom:755.730000px;}
.y62{bottom:759.685500px;}
.y3f{bottom:760.127400px;}
.y83{bottom:761.940000px;}
.ye8{bottom:762.983640px;}
.yfc{bottom:767.380860px;}
.y142{bottom:772.371000px;}
.yb7{bottom:774.270000px;}
.y61{bottom:776.956320px;}
.y3e{bottom:777.411900px;}
.ye7{bottom:780.268200px;}
.yb6{bottom:784.080000px;}
.yfb{bottom:784.665360px;}
.y82{bottom:785.250000px;}
.yc{bottom:788.040000px;}
.y141{bottom:789.565350px;}
.y60{bottom:794.150700px;}
.yfa{bottom:801.859680px;}
.yb5{bottom:802.620000px;}
.y81{bottom:808.470000px;}
.y3d{bottom:812.071080px;}
.yb4{bottom:812.430000px;}
.ye6{bottom:814.746900px;}
.yb{bottom:814.860000px;}
.yf9{bottom:819.144180px;}
.y13d{bottom:821.520000px;}
.y5f{bottom:828.895680px;}
.y3c{bottom:829.265400px;}
.yb3{bottom:830.970000px;}
.y7f{bottom:831.690000px;}
.yf8{bottom:836.338500px;}
.y140{bottom:838.264500px;}
.yb2{bottom:840.780000px;}
.ya{bottom:842.760000px;}
.y5e{bottom:846.085500px;}
.y3b{bottom:846.549900px;}
.ye5{bottom:849.586500px;}
.y13f{bottom:852.030000px;}
.yf7{bottom:853.623000px;}
.y7e{bottom:855.000000px;}
.y5d{bottom:863.365680px;}
.y3a{bottom:863.834400px;}
.yb1{bottom:866.610000px;}
.ye4{bottom:866.871000px;}
.y13c{bottom:877.500000px;}
.y9{bottom:877.680000px;}
.y7d{bottom:878.220000px;}
.y5c{bottom:880.546320px;}
.y39{bottom:881.028720px;}
.ye3{bottom:884.065350px;}
.yf6{bottom:888.282180px;}
.yb0{bottom:889.830000px;}
.y5b{bottom:897.830850px;}
.y38{bottom:898.313220px;}
.y13b{bottom:900.720000px;}
.y7c{bottom:901.440000px;}
.yf5{bottom:905.566680px;}
.yaf{bottom:913.050000px;}
.y37{bottom:915.597720px;}
.ye2{bottom:916.020000px;}
.y8{bottom:916.639500px;}
.yf4{bottom:922.761000px;}
.y13a{bottom:923.940000px;}
.y7b{bottom:924.750000px;}
.yad{bottom:929.070000px;}
.y5a{bottom:932.485500px;}
.y36{bottom:932.792040px;}
.yac{bottom:938.880000px;}
.ye1{bottom:939.240000px;}
.yf3{bottom:940.045500px;}
.y7{bottom:940.860000px;}
.y139{bottom:947.250000px;}
.y7a{bottom:947.970000px;}
.y59{bottom:949.765680px;}
.y35{bottom:950.076540px;}
.yf2{bottom:957.330000px;}
.ye0{bottom:962.550000px;}
.yab{bottom:964.710000px;}
.y58{bottom:966.955500px;}
.y34{bottom:967.361040px;}
.y138{bottom:970.470000px;}
.y79{bottom:971.190000px;}
.y57{bottom:984.194640px;}
.y33{bottom:984.555360px;}
.ydf{bottom:985.770000px;}
.yaa{bottom:987.930000px;}
.y137{bottom:993.690000px;}
.y78{bottom:994.500000px;}
.y56{bottom:1001.479200px;}
.y32{bottom:1001.839860px;}
.yde{bottom:1008.990000px;}
.ya9{bottom:1011.150000px;}
.y136{bottom:1017.000000px;}
.y77{bottom:1017.720000px;}
.y16e{bottom:1018.377000px;}
.y31{bottom:1019.034180px;}
.ydd{bottom:1032.300000px;}
.y16d{bottom:1034.037000px;}
.y4{bottom:1034.093250px;}
.ya8{bottom:1034.460000px;}
.y55{bottom:1036.048200px;}
.y30{bottom:1036.318680px;}
.y6{bottom:1039.138500px;}
.y76{bottom:1040.940000px;}
.y135{bottom:1045.350000px;}
.y16c{bottom:1049.602500px;}
.y2f{bottom:1053.603150px;}
.y5{bottom:1055.520000px;}
.y3{bottom:1057.320000px;}
.ya7{bottom:1057.680000px;}
.y75{bottom:1064.250000px;}
.y16b{bottom:1065.168000px;}
.y134{bottom:1068.570000px;}
.y54{bottom:1070.526960px;}
.ya5{bottom:1073.700000px;}
.ydc{bottom:1078.740000px;}
.y16a{bottom:1080.828000px;}
.ya4{bottom:1083.510000px;}
.y73{bottom:1087.470000px;}
.y53{bottom:1087.901700px;}
.y2e{bottom:1088.262360px;}
.y169{bottom:1096.393500px;}
.y133{bottom:1096.920000px;}
.ydb{bottom:1102.050000px;}
.y2d{bottom:1105.456680px;}
.ya3{bottom:1109.250000px;}
.y71{bottom:1110.690000px;}
.y168{bottom:1111.959000px;}
.y132{bottom:1120.140000px;}
.y2c{bottom:1122.741180px;}
.yda{bottom:1125.270000px;}
.y167{bottom:1127.619000px;}
.ya2{bottom:1132.560000px;}
.y6f{bottom:1134.000000px;}
.y2b{bottom:1140.025680px;}
.y166{bottom:1143.184500px;}
.y131{bottom:1143.450000px;}
.yd9{bottom:1148.490000px;}
.ya1{bottom:1155.780000px;}
.y2a{bottom:1157.220000px;}
.y2{bottom:1157.940000px;}
.y165{bottom:1158.750000px;}
.y6e{bottom:1160.100000px;}
.y28{bottom:1193.670000px;}
.h1f{height:22.498500px;}
.h1d{height:22.500000px;}
.ha{height:24.521484px;}
.h29{height:24.817324px;}
.h22{height:27.540000px;}
.h23{height:27.630000px;}
.h2b{height:29.162109px;}
.h1e{height:32.449922px;}
.hc{height:36.597656px;}
.h9{height:37.494141px;}
.h20{height:38.251423px;}
.h5{height:38.549531px;}
.h6{height:39.493828px;}
.he{height:39.767520px;}
.h12{height:40.745391px;}
.h10{height:40.745631px;}
.h28{height:41.398500px;}
.h21{height:42.810484px;}
.hb{height:44.850586px;}
.h26{height:44.860786px;}
.h1c{height:44.874316px;}
.h3{height:49.042969px;}
.h14{height:49.933412px;}
.h19{height:49.933532px;}
.hd{height:49.933652px;}
.hf{height:49.933772px;}
.h27{height:49.933892px;}
.h1b{height:49.950932px;}
.h18{height:49.951652px;}
.h8{height:52.666172px;}
.h17{height:53.189702px;}
.h16{height:53.190422px;}
.h24{height:53.191022px;}
.h25{height:53.207702px;}
.h1a{height:53.227142px;}
.h15{height:53.353862px;}
.h13{height:53.440982px;}
.h11{height:53.709542px;}
.h2{height:54.717715px;}
.h4{height:54.896484px;}
.h2a{height:55.170000px;}
.h7{height:56.848359px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w8{width:46.170000px;}
.w20{width:59.311500px;}
.w9{width:82.800000px;}
.w1d{width:83.250000px;}
.w6{width:91.530000px;}
.w4{width:91.618500px;}
.w7{width:91.620000px;}
.w3{width:91.710000px;}
.w1c{width:93.510000px;}
.w1b{width:93.600000px;}
.w1f{width:94.500000px;}
.w17{width:113.940000px;}
.w1e{width:115.020000px;}
.w12{width:119.250000px;}
.wd{width:123.120000px;}
.w19{width:125.098500px;}
.w2{width:126.180000px;}
.w5{width:137.340000px;}
.w16{width:137.611500px;}
.w11{width:154.080000px;}
.wc{width:158.131500px;}
.w10{width:185.310000px;}
.w15{width:188.641500px;}
.w13{width:205.740000px;}
.wb{width:238.680000px;}
.w14{width:247.680000px;}
.wa{width:259.830000px;}
.w1a{width:269.550000px;}
.w18{width:271.080000px;}
.we{width:321.211500px;}
.wf{width:459.360000px;}
.w21{width:780.751500px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.xb{left:42.750000px;}
.xa{left:46.620000px;}
.xe{left:54.774450px;}
.x3a{left:58.140000px;}
.x14{left:60.120000px;}
.x1e{left:67.870890px;}
.x3f{left:74.245500px;}
.x7{left:75.600000px;}
.x3c{left:86.580000px;}
.x39{left:102.870000px;}
.x3b{left:129.600000px;}
.x25{left:130.950000px;}
.x32{left:174.420000px;}
.x27{left:184.680000px;}
.x16{left:186.660000px;}
.x1d{left:242.190000px;}
.x4{left:243.996750px;}
.x2a{left:265.680000px;}
.x35{left:268.380000px;}
.x2{left:270.180000px;}
.x2d{left:274.320000px;}
.x30{left:276.300000px;}
.x17{left:278.730000px;}
.x31{left:288.000000px;}
.x3{left:290.430000px;}
.x13{left:292.320000px;}
.x1f{left:297.360750px;}
.x24{left:310.140000px;}
.x10{left:319.500000px;}
.x12{left:333.540000px;}
.xf{left:344.844000px;}
.xd{left:347.670000px;}
.x11{left:348.902100px;}
.x36{left:362.250000px;}
.x18{left:370.800000px;}
.x3e{left:373.135500px;}
.x26{left:381.690000px;}
.xc{left:394.920000px;}
.x3d{left:398.129850px;}
.x8{left:402.837000px;}
.x9{left:411.390000px;}
.x1{left:440.550000px;}
.x33{left:445.860000px;}
.x19{left:462.780000px;}
.x6{left:506.415000px;}
.x2b{left:514.260000px;}
.x5{left:520.536000px;}
.x2e{left:522.360000px;}
.x21{left:547.462050px;}
.x22{left:559.350000px;}
.x28{left:567.360000px;}
.x34{left:571.320000px;}
.x1a{left:600.570000px;}
.x37{left:686.700000px;}
.x1b{left:692.460000px;}
.x2c{left:703.260000px;}
.x2f{left:711.360000px;}
.x23{left:717.930000px;}
.x29{left:721.800000px;}
.x20{left:758.250000px;}
.x40{left:764.847000px;}
.x38{left:781.560000px;}
.x1c{left:784.440000px;}
@media print{
.v5{vertical-align:-18.560000pt;}
.v2{vertical-align:-16.000000pt;}
.v4{vertical-align:-5.278720pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:16.000640pt;}
.v3{vertical-align:19.037440pt;}
.v1{vertical-align:21.440000pt;}
.ls2e{letter-spacing:-0.587840pt;}
.ls69{letter-spacing:-0.504640pt;}
.ls6d{letter-spacing:-0.480960pt;}
.ls68{letter-spacing:-0.468160pt;}
.ls23{letter-spacing:-0.432000pt;}
.ls2d{letter-spacing:-0.427520pt;}
.ls2b{letter-spacing:-0.374080pt;}
.ls22{letter-spacing:-0.336000pt;}
.ls2c{letter-spacing:-0.320640pt;}
.ls49{letter-spacing:-0.311040pt;}
.ls3a{letter-spacing:-0.267200pt;}
.ls2a{letter-spacing:-0.213760pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls5e{letter-spacing:-0.170240pt;}
.ls28{letter-spacing:-0.160320pt;}
.ls1c{letter-spacing:-0.144000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.106880pt;}
.ls20{letter-spacing:-0.096000pt;}
.ls5c{letter-spacing:-0.085120pt;}
.ls1b{letter-spacing:-0.072000pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls38{letter-spacing:-0.058667pt;}
.ls27{letter-spacing:-0.053440pt;}
.ls1d{letter-spacing:-0.053333pt;}
.ls70{letter-spacing:-0.026560pt;}
.ls17{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.002560pt;}
.ls41{letter-spacing:0.008960pt;}
.ls39{letter-spacing:0.053440pt;}
.ls37{letter-spacing:0.058560pt;}
.ls1f{letter-spacing:0.058667pt;}
.ls66{letter-spacing:0.058784pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069333pt;}
.ls5d{letter-spacing:0.085120pt;}
.ls16{letter-spacing:0.085504pt;}
.ls42{letter-spacing:0.090848pt;}
.ls6b{letter-spacing:0.092480pt;}
.ls25{letter-spacing:0.096000pt;}
.ls1e{letter-spacing:0.101333pt;}
.ls9{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.106880pt;}
.ls10{letter-spacing:0.117333pt;}
.ls5a{letter-spacing:0.117440pt;}
.ls43{letter-spacing:0.117568pt;}
.ls12{letter-spacing:0.122912pt;}
.ls46{letter-spacing:0.130560pt;}
.ls1{letter-spacing:0.144000pt;}
.ls40{letter-spacing:0.144288pt;}
.ls5{letter-spacing:0.146770pt;}
.ls4{letter-spacing:0.149333pt;}
.ls2{letter-spacing:0.154667pt;}
.ls6f{letter-spacing:0.159360pt;}
.ls6{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.160320pt;}
.ls4b{letter-spacing:0.170240pt;}
.ls47{letter-spacing:0.171008pt;}
.ls0{letter-spacing:0.176000pt;}
.ls4c{letter-spacing:0.192384pt;}
.ls7{letter-spacing:0.206131pt;}
.ls74{letter-spacing:0.206400pt;}
.ls35{letter-spacing:0.208416pt;}
.ls6e{letter-spacing:0.219104pt;}
.ls71{letter-spacing:0.240000pt;}
.ls36{letter-spacing:0.255360pt;}
.ls4a{letter-spacing:0.267200pt;}
.ls2f{letter-spacing:0.352000pt;}
.ls14{letter-spacing:0.374080pt;}
.ls59{letter-spacing:0.478080pt;}
.ls57{letter-spacing:0.480000pt;}
.ls3b{letter-spacing:0.528000pt;}
.ls45{letter-spacing:0.638720pt;}
.ls72{letter-spacing:0.694720pt;}
.ls6a{letter-spacing:1.330656pt;}
.ls30{letter-spacing:1.336000pt;}
.ls44{letter-spacing:1.977280pt;}
.ls3f{letter-spacing:2.238720pt;}
.ls21{letter-spacing:2.544000pt;}
.ls73{letter-spacing:2.939200pt;}
.ls67{letter-spacing:3.259840pt;}
.ls33{letter-spacing:4.221760pt;}
.ls15{letter-spacing:4.542400pt;}
.ls3c{letter-spacing:4.863040pt;}
.ls31{letter-spacing:5.082144pt;}
.ls3d{letter-spacing:5.183680pt;}
.ls32{letter-spacing:5.824960pt;}
.ls48{letter-spacing:6.145600pt;}
.ls34{letter-spacing:6.466240pt;}
.ls13{letter-spacing:7.107520pt;}
.ls6c{letter-spacing:7.855680pt;}
.ls3e{letter-spacing:9.031360pt;}
.lsa{letter-spacing:13.152000pt;}
.lsd{letter-spacing:13.168000pt;}
.lsc{letter-spacing:13.215979pt;}
.lsb{letter-spacing:13.216000pt;}
.lse{letter-spacing:22.736000pt;}
.lsf{letter-spacing:22.746667pt;}
.ls55{letter-spacing:274.171520pt;}
.ls60{letter-spacing:295.579200pt;}
.ls53{letter-spacing:311.283840pt;}
.ls51{letter-spacing:311.581760pt;}
.ls54{letter-spacing:311.922240pt;}
.ls50{letter-spacing:312.220160pt;}
.ls62{letter-spacing:332.734080pt;}
.ls61{letter-spacing:333.032000pt;}
.ls65{letter-spacing:333.372480pt;}
.ls63{letter-spacing:333.670400pt;}
.ls52{letter-spacing:385.848960pt;}
.ls64{letter-spacing:407.299200pt;}
.ls5f{letter-spacing:682.151253pt;}
.ls4f{letter-spacing:682.151787pt;}
.ls4d{letter-spacing:719.902187pt;}
.ls5b{letter-spacing:793.190507pt;}
.ls4e{letter-spacing:793.190720pt;}
.ls56{letter-spacing:1089.493547pt;}
.ls58{letter-spacing:1571.400320pt;}
.ws65{word-spacing:-33.555200pt;}
.ws0{word-spacing:-33.203840pt;}
.wsf{word-spacing:-26.736000pt;}
.ws7{word-spacing:-18.789333pt;}
.ws4{word-spacing:-18.144000pt;}
.ws5{word-spacing:-17.856000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws1{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws8{word-spacing:-14.698667pt;}
.wsc{word-spacing:-14.544000pt;}
.ws13{word-spacing:-13.520320pt;}
.ws66{word-spacing:-13.466880pt;}
.ws6a{word-spacing:-13.413440pt;}
.ws12{word-spacing:-13.360000pt;}
.ws68{word-spacing:-13.306560pt;}
.ws16{word-spacing:-13.253120pt;}
.ws67{word-spacing:-13.199680pt;}
.ws15{word-spacing:-13.146240pt;}
.ws6b{word-spacing:-13.092800pt;}
.ws14{word-spacing:-12.985920pt;}
.ws17{word-spacing:-12.932480pt;}
.ws18{word-spacing:-12.772160pt;}
.ws6{word-spacing:-12.640000pt;}
.ws11{word-spacing:-12.096000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.904000pt;}
.wse{word-spacing:-11.856000pt;}
.ws10{word-spacing:-11.808000pt;}
.wsd{word-spacing:-11.664000pt;}
.wsba{word-spacing:-10.810240pt;}
.wsb9{word-spacing:-10.725120pt;}
.ws6c{word-spacing:-10.640000pt;}
.wsb8{word-spacing:-10.554880pt;}
.wsbb{word-spacing:-10.469760pt;}
.ws69{word-spacing:-8.640000pt;}
.wsa1{word-spacing:-8.328960pt;}
.wsb{word-spacing:-8.000000pt;}
.wsdd{word-spacing:-6.799360pt;}
.wsbc{word-spacing:-6.640000pt;}
.wsdc{word-spacing:-6.613440pt;}
.wsc9{word-spacing:-6.135360pt;}
.wsb4{word-spacing:-2.939200pt;}
.wsa5{word-spacing:-2.725440pt;}
.ws46{word-spacing:-2.618560pt;}
.wsa6{word-spacing:-2.404800pt;}
.wsa4{word-spacing:-2.351360pt;}
.ws49{word-spacing:-2.297920pt;}
.wsc2{word-spacing:-2.084160pt;}
.ws3d{word-spacing:-2.064000pt;}
.ws48{word-spacing:-2.030720pt;}
.ws90{word-spacing:-1.977280pt;}
.wsce{word-spacing:-1.870400pt;}
.wsf1{word-spacing:-1.816960pt;}
.wsf2{word-spacing:-1.763520pt;}
.ws4f{word-spacing:-1.656640pt;}
.wsb0{word-spacing:-1.603200pt;}
.wsb6{word-spacing:-1.442880pt;}
.ws4d{word-spacing:-1.389440pt;}
.ws58{word-spacing:-1.336000pt;}
.ws81{word-spacing:-1.122240pt;}
.ws80{word-spacing:-1.068800pt;}
.ws50{word-spacing:-1.015360pt;}
.wscc{word-spacing:-0.961920pt;}
.ws5c{word-spacing:-0.801600pt;}
.ws22{word-spacing:-0.784000pt;}
.ws5d{word-spacing:-0.748160pt;}
.ws7b{word-spacing:-0.694720pt;}
.wsb7{word-spacing:-0.587840pt;}
.wse3{word-spacing:-0.534400pt;}
.ws73{word-spacing:-0.528000pt;}
.ws70{word-spacing:-0.490667pt;}
.wse4{word-spacing:-0.480960pt;}
.ws1c{word-spacing:-0.453333pt;}
.wsaf{word-spacing:-0.427520pt;}
.ws72{word-spacing:-0.410667pt;}
.wsac{word-spacing:-0.374080pt;}
.ws74{word-spacing:-0.352000pt;}
.wsc3{word-spacing:-0.320640pt;}
.ws98{word-spacing:-0.267200pt;}
.wscd{word-spacing:-0.255360pt;}
.ws26{word-spacing:-0.234667pt;}
.ws27{word-spacing:-0.224000pt;}
.ws25{word-spacing:-0.213333pt;}
.ws71{word-spacing:-0.176000pt;}
.wsbd{word-spacing:-0.170240pt;}
.ws42{word-spacing:-0.165333pt;}
.ws44{word-spacing:-0.160320pt;}
.ws23{word-spacing:-0.154667pt;}
.ws24{word-spacing:-0.149333pt;}
.ws33{word-spacing:-0.144000pt;}
.ws2c{word-spacing:-0.128000pt;}
.ws1d{word-spacing:-0.112000pt;}
.ws9f{word-spacing:-0.106880pt;}
.ws20{word-spacing:-0.101333pt;}
.ws41{word-spacing:-0.096000pt;}
.ws52{word-spacing:-0.085120pt;}
.ws6f{word-spacing:-0.058667pt;}
.ws62{word-spacing:-0.053440pt;}
.ws19{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.026667pt;}
.ws1b{word-spacing:0.053333pt;}
.wsc6{word-spacing:0.053440pt;}
.ws6d{word-spacing:0.058667pt;}
.ws1a{word-spacing:0.072000pt;}
.wsbf{word-spacing:0.085120pt;}
.ws32{word-spacing:0.096000pt;}
.ws4a{word-spacing:0.106880pt;}
.ws63{word-spacing:0.117120pt;}
.ws28{word-spacing:0.117333pt;}
.ws29{word-spacing:0.144000pt;}
.ws1e{word-spacing:0.154667pt;}
.ws47{word-spacing:0.160320pt;}
.ws38{word-spacing:0.192000pt;}
.ws4e{word-spacing:0.213760pt;}
.ws2a{word-spacing:0.240000pt;}
.wsc8{word-spacing:0.255360pt;}
.ws43{word-spacing:0.256000pt;}
.ws4b{word-spacing:0.267200pt;}
.ws21{word-spacing:0.309333pt;}
.ws51{word-spacing:0.320640pt;}
.ws5e{word-spacing:0.374080pt;}
.wsbe{word-spacing:0.383040pt;}
.ws3c{word-spacing:0.416000pt;}
.ws9e{word-spacing:0.427520pt;}
.ws37{word-spacing:0.432000pt;}
.wsf4{word-spacing:0.480000pt;}
.wsd8{word-spacing:0.480960pt;}
.ws2b{word-spacing:0.501333pt;}
.ws4c{word-spacing:0.534400pt;}
.ws34{word-spacing:0.586667pt;}
.ws54{word-spacing:0.587840pt;}
.ws36{word-spacing:0.592000pt;}
.wsef{word-spacing:0.641280pt;}
.ws3f{word-spacing:0.672000pt;}
.wsc0{word-spacing:0.723520pt;}
.ws91{word-spacing:0.801600pt;}
.ws3e{word-spacing:0.816000pt;}
.ws92{word-spacing:0.855040pt;}
.ws55{word-spacing:0.908480pt;}
.wsad{word-spacing:0.961920pt;}
.ws45{word-spacing:1.122240pt;}
.ws82{word-spacing:1.175680pt;}
.wsa2{word-spacing:1.226667pt;}
.ws8a{word-spacing:1.229120pt;}
.ws6e{word-spacing:1.232000pt;}
.ws3a{word-spacing:1.264000pt;}
.wse6{word-spacing:1.389440pt;}
.ws7e{word-spacing:1.442880pt;}
.ws7f{word-spacing:1.496320pt;}
.ws95{word-spacing:1.549760pt;}
.ws87{word-spacing:1.710080pt;}
.ws96{word-spacing:1.763520pt;}
.ws40{word-spacing:1.776000pt;}
.ws8d{word-spacing:1.816960pt;}
.wscf{word-spacing:1.870400pt;}
.wsdf{word-spacing:2.030720pt;}
.wsde{word-spacing:2.084160pt;}
.ws7a{word-spacing:2.137600pt;}
.ws79{word-spacing:2.351360pt;}
.ws9c{word-spacing:2.404800pt;}
.ws7d{word-spacing:2.458240pt;}
.ws7c{word-spacing:2.511680pt;}
.wsc1{word-spacing:2.672000pt;}
.ws97{word-spacing:2.725440pt;}
.ws5b{word-spacing:2.778880pt;}
.wsaa{word-spacing:2.832320pt;}
.wsea{word-spacing:2.936640pt;}
.wsc5{word-spacing:2.992640pt;}
.wsf3{word-spacing:3.046080pt;}
.wsae{word-spacing:3.099520pt;}
.wse9{word-spacing:3.106880pt;}
.wsa9{word-spacing:3.152960pt;}
.ws59{word-spacing:3.313280pt;}
.ws5a{word-spacing:3.420160pt;}
.wsed{word-spacing:3.687360pt;}
.ws8f{word-spacing:3.740800pt;}
.ws8e{word-spacing:3.954560pt;}
.wsc4{word-spacing:4.008000pt;}
.wsf5{word-spacing:4.032000pt;}
.ws9a{word-spacing:4.061440pt;}
.ws9b{word-spacing:4.328640pt;}
.wse5{word-spacing:4.382080pt;}
.ws99{word-spacing:4.435520pt;}
.ws60{word-spacing:4.595840pt;}
.ws5f{word-spacing:4.649280pt;}
.wsc7{word-spacing:4.702720pt;}
.ws88{word-spacing:5.023360pt;}
.wsa3{word-spacing:5.076800pt;}
.ws35{word-spacing:5.280000pt;}
.ws89{word-spacing:5.290560pt;}
.wsca{word-spacing:5.344000pt;}
.ws93{word-spacing:5.397440pt;}
.wscb{word-spacing:5.611200pt;}
.ws9d{word-spacing:5.664640pt;}
.wsb5{word-spacing:5.878400pt;}
.ws94{word-spacing:5.931840pt;}
.ws78{word-spacing:5.985280pt;}
.ws8b{word-spacing:6.038720pt;}
.ws77{word-spacing:6.199040pt;}
.wsab{word-spacing:6.252480pt;}
.ws83{word-spacing:6.305920pt;}
.wsb1{word-spacing:6.359360pt;}
.ws85{word-spacing:6.573120pt;}
.ws86{word-spacing:6.626560pt;}
.ws8c{word-spacing:6.786880pt;}
.wseb{word-spacing:6.809600pt;}
.ws84{word-spacing:6.840320pt;}
.wsf0{word-spacing:6.893760pt;}
.ws53{word-spacing:6.947200pt;}
.wsec{word-spacing:6.979840pt;}
.ws61{word-spacing:7.214400pt;}
.wsd5{word-spacing:7.267840pt;}
.wsd4{word-spacing:7.535040pt;}
.wsd7{word-spacing:7.588480pt;}
.wsd6{word-spacing:7.802240pt;}
.wsd3{word-spacing:7.855680pt;}
.wsd0{word-spacing:7.909120pt;}
.ws76{word-spacing:8.122880pt;}
.ws75{word-spacing:8.229760pt;}
.wsa7{word-spacing:8.550400pt;}
.wsd9{word-spacing:8.871040pt;}
.wsda{word-spacing:9.084800pt;}
.wsdb{word-spacing:9.191680pt;}
.wsa8{word-spacing:9.298560pt;}
.wsd2{word-spacing:10.153600pt;}
.wsd1{word-spacing:10.474240pt;}
.wsb2{word-spacing:10.794880pt;}
.wsb3{word-spacing:11.115520pt;}
.ws3b{word-spacing:11.376000pt;}
.ws39{word-spacing:11.472000pt;}
.wse7{word-spacing:12.398080pt;}
.ws57{word-spacing:12.718720pt;}
.ws56{word-spacing:12.932480pt;}
.wsee{word-spacing:20.734720pt;}
.wse1{word-spacing:21.055360pt;}
.wse0{word-spacing:21.322560pt;}
.wse2{word-spacing:21.376000pt;}
.ws2f{word-spacing:26.400000pt;}
.ws30{word-spacing:26.560000pt;}
.ws31{word-spacing:26.576000pt;}
.ws2e{word-spacing:26.714667pt;}
.ws2d{word-spacing:26.736000pt;}
.wse8{word-spacing:28.032000pt;}
.ws64{word-spacing:1470.063083pt;}
.wsa0{word-spacing:1470.068416pt;}
._1a{margin-left:-21.039008pt;}
._a{margin-left:-13.245856pt;}
._7{margin-left:-11.402640pt;}
._19{margin-left:-8.676064pt;}
._9{margin-left:-6.908000pt;}
._d{margin-left:-5.081536pt;}
._b{margin-left:-4.166976pt;}
._c{margin-left:-3.073216pt;}
._1{margin-left:-2.088000pt;}
._0{margin-left:-0.960000pt;}
._2{width:0.936000pt;}
._8{width:1.998656pt;}
._11{width:3.179424pt;}
._e{width:4.131520pt;}
._12{width:5.041504pt;}
._f{width:6.247040pt;}
._18{width:7.508416pt;}
._4{width:8.463984pt;}
._10{width:9.857035pt;}
._5{width:12.528005pt;}
._3{width:13.429333pt;}
._6{width:23.807968pt;}
._1b{width:40.032000pt;}
._13{width:74.518080pt;}
._16{width:101.661120pt;}
._14{width:139.695360pt;}
._15{width:148.149120pt;}
._17{width:682.090347pt;}
.fsc{font-size:26.560000pt;}
.fs7{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fsd{font-size:37.333333pt;}
.fs5{font-size:37.440000pt;}
.fsa{font-size:42.560000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs9{font-size:53.440000pt;}
.fs8{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:72.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:2.320000pt;}
.yce{bottom:2.400000pt;}
.y74{bottom:2.560000pt;}
.y80{bottom:2.639867pt;}
.y72{bottom:2.640000pt;}
.y10b{bottom:10.080000pt;}
.y10d{bottom:10.320000pt;}
.ya6{bottom:14.800000pt;}
.yae{bottom:14.880000pt;}
.y112{bottom:27.120000pt;}
.y13e{bottom:39.360000pt;}
.y29{bottom:52.153333pt;}
.y16f{bottom:54.430667pt;}
.y1{bottom:68.160000pt;}
.yd8{bottom:68.400000pt;}
.y12f{bottom:68.880000pt;}
.yf1{bottom:74.800000pt;}
.y130{bottom:77.840000pt;}
.y164{bottom:79.404000pt;}
.ya0{bottom:83.680000pt;}
.yd7{bottom:89.040000pt;}
.y12e{bottom:89.520000pt;}
.y27{bottom:89.644480pt;}
.y163{bottom:93.240000pt;}
.y52{bottom:93.680000pt;}
.y6d{bottom:94.640000pt;}
.yf0{bottom:95.440000pt;}
.y9f{bottom:104.320000pt;}
.y26{bottom:105.008480pt;}
.y162{bottom:107.076000pt;}
.yd6{bottom:109.760000pt;}
.y12d{bottom:110.240000pt;}
.yef{bottom:116.160000pt;}
.y11c{bottom:119.248320pt;}
.y25{bottom:120.292320pt;}
.y161{bottom:120.996000pt;}
.y9e{bottom:124.960000pt;}
.yd5{bottom:130.400000pt;}
.y12c{bottom:133.440000pt;}
.y11b{bottom:134.532160pt;}
.y160{bottom:134.832000pt;}
.y24{bottom:135.656320pt;}
.yee{bottom:139.357733pt;}
.y9d{bottom:145.680000pt;}
.y15f{bottom:148.668000pt;}
.y11a{bottom:149.896160pt;}
.y23{bottom:151.020320pt;}
.yd4{bottom:151.040000pt;}
.y12b{bottom:161.620320pt;}
.y15e{bottom:162.588000pt;}
.yed{bottom:164.000000pt;}
.y119{bottom:165.260160pt;}
.y22{bottom:166.304160pt;}
.y9c{bottom:166.320000pt;}
.yd3{bottom:171.760000pt;}
.y15d{bottom:176.424000pt;}
.y12a{bottom:176.984320pt;}
.y118{bottom:180.544000pt;}
.y21{bottom:181.668160pt;}
.y9b{bottom:186.960000pt;}
.y129{bottom:192.268160pt;}
.yd2{bottom:192.400000pt;}
.y117{bottom:195.908000pt;}
.y20{bottom:197.032160pt;}
.y15c{bottom:203.940000pt;}
.y128{bottom:207.632160pt;}
.y9a{bottom:207.680000pt;}
.y116{bottom:211.272000pt;}
.y1f{bottom:212.316000pt;}
.yd1{bottom:213.040000pt;}
.y127{bottom:222.996160pt;}
.y115{bottom:226.555867pt;}
.y1e{bottom:227.680000pt;}
.y99{bottom:228.320000pt;}
.y15b{bottom:231.852000pt;}
.yd0{bottom:233.760000pt;}
.y126{bottom:238.280000pt;}
.y98{bottom:248.960000pt;}
.y125{bottom:253.644000pt;}
.ycf{bottom:254.400000pt;}
.y1d{bottom:254.880000pt;}
.y114{bottom:254.960000pt;}
.y15a{bottom:259.368000pt;}
.y97{bottom:269.680000pt;}
.ycd{bottom:275.040000pt;}
.y111{bottom:275.600000pt;}
.y124{bottom:284.452160pt;}
.y159{bottom:287.408640pt;}
.y96{bottom:290.320000pt;}
.y113{bottom:290.480000pt;}
.ycc{bottom:295.760000pt;}
.y123{bottom:299.816160pt;}
.y158{bottom:302.772640pt;}
.y95{bottom:310.960000pt;}
.y110{bottom:313.120000pt;}
.y122{bottom:315.100000pt;}
.ycb{bottom:316.400000pt;}
.y157{bottom:318.056480pt;}
.y121{bottom:330.464000pt;}
.y94{bottom:331.439840pt;}
.y156{bottom:333.420480pt;}
.y51{bottom:337.860320pt;}
.y10f{bottom:338.320000pt;}
.yca{bottom:339.680000pt;}
.y120{bottom:345.747867pt;}
.y93{bottom:348.400000pt;}
.y155{bottom:348.784480pt;}
.y50{bottom:353.224320pt;}
.y10e{bottom:358.960000pt;}
.y154{bottom:364.068320pt;}
.yc9{bottom:367.892160pt;}
.y4f{bottom:368.508160pt;}
.y1c{bottom:375.820320pt;}
.y11f{bottom:376.636160pt;}
.y92{bottom:376.672160pt;}
.y153{bottom:379.432320pt;}
.y10c{bottom:379.600000pt;}
.yc8{bottom:383.176000pt;}
.y4e{bottom:383.872160pt;}
.y1b{bottom:391.104160pt;}
.y11e{bottom:391.920000pt;}
.y91{bottom:391.956000pt;}
.y152{bottom:394.796320pt;}
.yc7{bottom:398.540000pt;}
.y4d{bottom:399.236160pt;}
.y10a{bottom:400.320000pt;}
.y1a{bottom:406.468160pt;}
.y151{bottom:410.080133pt;}
.yc6{bottom:413.904000pt;}
.y4c{bottom:414.520000pt;}
.y11d{bottom:419.120000pt;}
.y19{bottom:421.832160pt;}
.y90{bottom:422.603867pt;}
.y109{bottom:423.520000pt;}
.yc5{bottom:429.187840pt;}
.y4b{bottom:429.884000pt;}
.y18{bottom:437.116000pt;}
.y150{bottom:440.728000pt;}
.yc4{bottom:444.551867pt;}
.y108{bottom:451.656320pt;}
.y17{bottom:452.480000pt;}
.y8f{bottom:453.572320pt;}
.y4a{bottom:460.531867pt;}
.y107{bottom:467.020267pt;}
.y8e{bottom:468.936320pt;}
.y14f{bottom:471.696480pt;}
.yc3{bottom:475.356000pt;}
.y6c{bottom:475.555840pt;}
.y16{bottom:481.280000pt;}
.y8d{bottom:484.220160pt;}
.y14e{bottom:487.060480pt;}
.yc2{bottom:490.712160pt;}
.y6b{bottom:490.839680pt;}
.y49{bottom:491.500320pt;}
.y106{bottom:497.828480pt;}
.y8c{bottom:499.584160pt;}
.y14d{bottom:502.344320pt;}
.yc1{bottom:505.996000pt;}
.y6a{bottom:506.203733pt;}
.y48{bottom:506.864320pt;}
.y105{bottom:513.112320pt;}
.y8b{bottom:514.948160pt;}
.y14c{bottom:517.708320pt;}
.yc0{bottom:521.356000pt;}
.y47{bottom:522.148160pt;}
.y15{bottom:524.005333pt;}
.y104{bottom:528.476320pt;}
.y8a{bottom:530.232000pt;}
.y14b{bottom:533.072320pt;}
.ybf{bottom:536.716160pt;}
.y69{bottom:537.011840pt;}
.y46{bottom:537.512160pt;}
.y103{bottom:543.840320pt;}
.y89{bottom:545.596000pt;}
.y14a{bottom:548.356160pt;}
.ybe{bottom:551.995867pt;}
.y68{bottom:552.375840pt;}
.y45{bottom:552.876160pt;}
.y14{bottom:554.725333pt;}
.y102{bottom:559.124160pt;}
.y149{bottom:563.720160pt;}
.y67{bottom:567.659680pt;}
.y44{bottom:568.040640pt;}
.y13{bottom:568.537333pt;}
.y88{bottom:574.000000pt;}
.y101{bottom:574.488160pt;}
.y148{bottom:579.084160pt;}
.y12{bottom:582.349333pt;}
.y66{bottom:583.023733pt;}
.y43{bottom:583.404640pt;}
.ybd{bottom:586.880000pt;}
.y100{bottom:589.772000pt;}
.y147{bottom:594.368000pt;}
.y87{bottom:594.640000pt;}
.y11{bottom:596.161333pt;}
.y42{bottom:598.688533pt;}
.ybc{bottom:607.520000pt;}
.y65{bottom:613.671467pt;}
.y86{bottom:615.280000pt;}
.y10{bottom:615.925333pt;}
.yec{bottom:616.912000pt;}
.yff{bottom:620.660320pt;}
.y146{bottom:625.176160pt;}
.ybb{bottom:628.160000pt;}
.y41{bottom:629.336267pt;}
.yeb{bottom:632.276000pt;}
.yfe{bottom:635.944160pt;}
.y85{bottom:636.000000pt;}
.yf{bottom:639.685333pt;}
.y145{bottom:640.540160pt;}
.y64{bottom:644.636000pt;}
.yea{bottom:647.559840pt;}
.yba{bottom:648.880000pt;}
.yfd{bottom:651.308133pt;}
.ye{bottom:654.426667pt;}
.y144{bottom:655.904160pt;}
.y84{bottom:656.640000pt;}
.y63{bottom:659.996160pt;}
.y40{bottom:660.304800pt;}
.ye9{bottom:662.923840pt;}
.yb9{bottom:663.040000pt;}
.yd{bottom:667.600000pt;}
.y143{bottom:671.188000pt;}
.yb8{bottom:671.760000pt;}
.y62{bottom:675.276000pt;}
.y3f{bottom:675.668800pt;}
.y83{bottom:677.280000pt;}
.ye8{bottom:678.207680pt;}
.yfc{bottom:682.116320pt;}
.y142{bottom:686.552000pt;}
.yb7{bottom:688.240000pt;}
.y61{bottom:690.627840pt;}
.y3e{bottom:691.032800pt;}
.ye7{bottom:693.571733pt;}
.yb6{bottom:696.960000pt;}
.yfb{bottom:697.480320pt;}
.y82{bottom:698.000000pt;}
.yc{bottom:700.480000pt;}
.y141{bottom:701.835867pt;}
.y60{bottom:705.911733pt;}
.yfa{bottom:712.764160pt;}
.yb5{bottom:713.440000pt;}
.y81{bottom:718.640000pt;}
.y3d{bottom:721.840960pt;}
.yb4{bottom:722.160000pt;}
.ye6{bottom:724.219467pt;}
.yb{bottom:724.320000pt;}
.yf9{bottom:728.128160pt;}
.y13d{bottom:730.240000pt;}
.y5f{bottom:736.796160pt;}
.y3c{bottom:737.124800pt;}
.yb3{bottom:738.640000pt;}
.y7f{bottom:739.280000pt;}
.yf8{bottom:743.412000pt;}
.y140{bottom:745.124000pt;}
.yb2{bottom:747.360000pt;}
.ya{bottom:749.120000pt;}
.y5e{bottom:752.076000pt;}
.y3b{bottom:752.488800pt;}
.ye5{bottom:755.188000pt;}
.y13f{bottom:757.360000pt;}
.yf7{bottom:758.776000pt;}
.y7e{bottom:760.000000pt;}
.y5d{bottom:767.436160pt;}
.y3a{bottom:767.852800pt;}
.yb1{bottom:770.320000pt;}
.ye4{bottom:770.552000pt;}
.y13c{bottom:780.000000pt;}
.y9{bottom:780.160000pt;}
.y7d{bottom:780.640000pt;}
.y5c{bottom:782.707840pt;}
.y39{bottom:783.136640pt;}
.ye3{bottom:785.835867pt;}
.yf6{bottom:789.584160pt;}
.yb0{bottom:790.960000pt;}
.y5b{bottom:798.071867pt;}
.y38{bottom:798.500640pt;}
.y13b{bottom:800.640000pt;}
.y7c{bottom:801.280000pt;}
.yf5{bottom:804.948160pt;}
.yaf{bottom:811.600000pt;}
.y37{bottom:813.864640pt;}
.ye2{bottom:814.240000pt;}
.y8{bottom:814.790667pt;}
.yf4{bottom:820.232000pt;}
.y13a{bottom:821.280000pt;}
.y7b{bottom:822.000000pt;}
.yad{bottom:825.840000pt;}
.y5a{bottom:828.876000pt;}
.y36{bottom:829.148480pt;}
.yac{bottom:834.560000pt;}
.ye1{bottom:834.880000pt;}
.yf3{bottom:835.596000pt;}
.y7{bottom:836.320000pt;}
.y139{bottom:842.000000pt;}
.y7a{bottom:842.640000pt;}
.y59{bottom:844.236160pt;}
.y35{bottom:844.512480pt;}
.yf2{bottom:850.960000pt;}
.ye0{bottom:855.600000pt;}
.yab{bottom:857.520000pt;}
.y58{bottom:859.516000pt;}
.y34{bottom:859.876480pt;}
.y138{bottom:862.640000pt;}
.y79{bottom:863.280000pt;}
.y57{bottom:874.839680pt;}
.y33{bottom:875.160320pt;}
.ydf{bottom:876.240000pt;}
.yaa{bottom:878.160000pt;}
.y137{bottom:883.280000pt;}
.y78{bottom:884.000000pt;}
.y56{bottom:890.203733pt;}
.y32{bottom:890.524320pt;}
.yde{bottom:896.880000pt;}
.ya9{bottom:898.800000pt;}
.y136{bottom:904.000000pt;}
.y77{bottom:904.640000pt;}
.y16e{bottom:905.224000pt;}
.y31{bottom:905.808160pt;}
.ydd{bottom:917.600000pt;}
.y16d{bottom:919.144000pt;}
.y4{bottom:919.194000pt;}
.ya8{bottom:919.520000pt;}
.y55{bottom:920.931733pt;}
.y30{bottom:921.172160pt;}
.y6{bottom:923.678667pt;}
.y76{bottom:925.280000pt;}
.y135{bottom:929.200000pt;}
.y16c{bottom:932.980000pt;}
.y2f{bottom:936.536133pt;}
.y5{bottom:938.240000pt;}
.y3{bottom:939.840000pt;}
.ya7{bottom:940.160000pt;}
.y75{bottom:946.000000pt;}
.y16b{bottom:946.816000pt;}
.y134{bottom:949.840000pt;}
.y54{bottom:951.579520pt;}
.ya5{bottom:954.400000pt;}
.ydc{bottom:958.880000pt;}
.y16a{bottom:960.736000pt;}
.ya4{bottom:963.120000pt;}
.y73{bottom:966.640000pt;}
.y53{bottom:967.023733pt;}
.y2e{bottom:967.344320pt;}
.y169{bottom:974.572000pt;}
.y133{bottom:975.040000pt;}
.ydb{bottom:979.600000pt;}
.y2d{bottom:982.628160pt;}
.ya3{bottom:986.000000pt;}
.y71{bottom:987.280000pt;}
.y168{bottom:988.408000pt;}
.y132{bottom:995.680000pt;}
.y2c{bottom:997.992160pt;}
.yda{bottom:1000.240000pt;}
.y167{bottom:1002.328000pt;}
.ya2{bottom:1006.720000pt;}
.y6f{bottom:1008.000000pt;}
.y2b{bottom:1013.356160pt;}
.y166{bottom:1016.164000pt;}
.y131{bottom:1016.400000pt;}
.yd9{bottom:1020.880000pt;}
.ya1{bottom:1027.360000pt;}
.y2a{bottom:1028.640000pt;}
.y2{bottom:1029.280000pt;}
.y165{bottom:1030.000000pt;}
.y6e{bottom:1031.200000pt;}
.y28{bottom:1061.040000pt;}
.h1f{height:19.998667pt;}
.h1d{height:20.000000pt;}
.ha{height:21.796875pt;}
.h29{height:22.059844pt;}
.h22{height:24.480000pt;}
.h23{height:24.560000pt;}
.h2b{height:25.921875pt;}
.h1e{height:28.844375pt;}
.hc{height:32.531250pt;}
.h9{height:33.328125pt;}
.h20{height:34.001265pt;}
.h5{height:34.266250pt;}
.h6{height:35.105625pt;}
.he{height:35.348906pt;}
.h12{height:36.218125pt;}
.h10{height:36.218338pt;}
.h28{height:36.798667pt;}
.h21{height:38.053764pt;}
.hb{height:39.867188pt;}
.h26{height:39.876254pt;}
.h1c{height:39.888281pt;}
.h3{height:43.593750pt;}
.h14{height:44.385255pt;}
.h19{height:44.385362pt;}
.hd{height:44.385469pt;}
.hf{height:44.385575pt;}
.h27{height:44.385682pt;}
.h1b{height:44.400829pt;}
.h18{height:44.401469pt;}
.h8{height:46.814375pt;}
.h17{height:47.279735pt;}
.h16{height:47.280375pt;}
.h24{height:47.280908pt;}
.h25{height:47.295735pt;}
.h1a{height:47.313015pt;}
.h15{height:47.425655pt;}
.h13{height:47.503095pt;}
.h11{height:47.741815pt;}
.h2{height:48.637969pt;}
.h4{height:48.796875pt;}
.h2a{height:49.040000pt;}
.h7{height:50.531875pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w8{width:41.040000pt;}
.w20{width:52.721333pt;}
.w9{width:73.600000pt;}
.w1d{width:74.000000pt;}
.w6{width:81.360000pt;}
.w4{width:81.438667pt;}
.w7{width:81.440000pt;}
.w3{width:81.520000pt;}
.w1c{width:83.120000pt;}
.w1b{width:83.200000pt;}
.w1f{width:84.000000pt;}
.w17{width:101.280000pt;}
.w1e{width:102.240000pt;}
.w12{width:106.000000pt;}
.wd{width:109.440000pt;}
.w19{width:111.198667pt;}
.w2{width:112.160000pt;}
.w5{width:122.080000pt;}
.w16{width:122.321333pt;}
.w11{width:136.960000pt;}
.wc{width:140.561333pt;}
.w10{width:164.720000pt;}
.w15{width:167.681333pt;}
.w13{width:182.880000pt;}
.wb{width:212.160000pt;}
.w14{width:220.160000pt;}
.wa{width:230.960000pt;}
.w1a{width:239.600000pt;}
.w18{width:240.960000pt;}
.we{width:285.521333pt;}
.wf{width:408.320000pt;}
.w21{width:694.001333pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.xb{left:38.000000pt;}
.xa{left:41.440000pt;}
.xe{left:48.688400pt;}
.x3a{left:51.680000pt;}
.x14{left:53.440000pt;}
.x1e{left:60.329680pt;}
.x3f{left:65.996000pt;}
.x7{left:67.200000pt;}
.x3c{left:76.960000pt;}
.x39{left:91.440000pt;}
.x3b{left:115.200000pt;}
.x25{left:116.400000pt;}
.x32{left:155.040000pt;}
.x27{left:164.160000pt;}
.x16{left:165.920000pt;}
.x1d{left:215.280000pt;}
.x4{left:216.886000pt;}
.x2a{left:236.160000pt;}
.x35{left:238.560000pt;}
.x2{left:240.160000pt;}
.x2d{left:243.840000pt;}
.x30{left:245.600000pt;}
.x17{left:247.760000pt;}
.x31{left:256.000000pt;}
.x3{left:258.160000pt;}
.x13{left:259.840000pt;}
.x1f{left:264.320667pt;}
.x24{left:275.680000pt;}
.x10{left:284.000000pt;}
.x12{left:296.480000pt;}
.xf{left:306.528000pt;}
.xd{left:309.040000pt;}
.x11{left:310.135200pt;}
.x36{left:322.000000pt;}
.x18{left:329.600000pt;}
.x3e{left:331.676000pt;}
.x26{left:339.280000pt;}
.xc{left:351.040000pt;}
.x3d{left:353.893200pt;}
.x8{left:358.077333pt;}
.x9{left:365.680000pt;}
.x1{left:391.600000pt;}
.x33{left:396.320000pt;}
.x19{left:411.360000pt;}
.x6{left:450.146667pt;}
.x2b{left:457.120000pt;}
.x5{left:462.698667pt;}
.x2e{left:464.320000pt;}
.x21{left:486.632933pt;}
.x22{left:497.200000pt;}
.x28{left:504.320000pt;}
.x34{left:507.840000pt;}
.x1a{left:533.840000pt;}
.x37{left:610.400000pt;}
.x1b{left:615.520000pt;}
.x2c{left:625.120000pt;}
.x2f{left:632.320000pt;}
.x23{left:638.160000pt;}
.x29{left:641.600000pt;}
.x20{left:674.000000pt;}
.x40{left:679.864000pt;}
.x38{left:694.720000pt;}
.x1c{left:697.280000pt;}
}




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