
    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_57351691b5d8daf254e7cc0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_7ca316f3520c635c79b2f40b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_e9bd0ddaa83c0125136e2f8a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_f3fe08371ccdf06acbc9b535.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_67a614d7af7b517a220b0f8c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_4feaefd6874e681c88e4df54.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_2db67cd8330a903f6b9a2c38.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_88911650f64168caca5ffe41.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2d91f3533c01612b7caff599.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.680176;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_1bc3d6da7f8e550ced5ebb72.woff2')format("woff");}.ffb{font-family:ffb;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;}
.md{transform:matrix(0.128282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128282,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.128422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128422,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.182424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182424,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m3{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m7{transform:matrix(0.240117,0.000000,-0.080038,0.236842,0,0);-ms-transform:matrix(0.240117,0.000000,-0.080038,0.236842,0,0);-webkit-transform:matrix(0.240117,0.000000,-0.080038,0.236842,0,0);}
.ma{transform:matrix(0.243765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243765,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.243767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243767,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253181,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253183,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253458,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253860,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.va{vertical-align:-33.140880px;}
.v9{vertical-align:-31.804164px;}
.v3{vertical-align:-27.360000px;}
.v5{vertical-align:-25.045239px;}
.vc{vertical-align:-23.760600px;}
.v1{vertical-align:-5.760000px;}
.vd{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:1.440000px;}
.v4{vertical-align:5.760000px;}
.vb{vertical-align:23.760600px;}
.v2{vertical-align:27.360000px;}
.v8{vertical-align:31.804764px;}
.v7{vertical-align:42.907200px;}
.v6{vertical-align:49.564800px;}
.ls3e{letter-spacing:-1.656000px;}
.ls26{letter-spacing:-1.440000px;}
.ls63{letter-spacing:-1.192320px;}
.ls1a{letter-spacing:-1.008000px;}
.ls35{letter-spacing:-0.936000px;}
.ls61{letter-spacing:-0.728640px;}
.ls27{letter-spacing:-0.720000px;}
.ls3d{letter-spacing:-0.576000px;}
.ls54{letter-spacing:-0.530640px;}
.ls65{letter-spacing:-0.463680px;}
.ls17{letter-spacing:-0.432000px;}
.ls36{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.337680px;}
.ls13{letter-spacing:-0.336960px;}
.ls70{letter-spacing:-0.331200px;}
.ls53{letter-spacing:-0.289440px;}
.ls14{letter-spacing:-0.288000px;}
.ls1c{letter-spacing:-0.216000px;}
.ls37{letter-spacing:-0.144720px;}
.ls15{letter-spacing:-0.144000px;}
.ls6f{letter-spacing:-0.132480px;}
.ls12{letter-spacing:-0.084240px;}
.ls1d{letter-spacing:-0.072000px;}
.ls10{letter-spacing:0.000000px;}
.ls68{letter-spacing:0.045360px;}
.ls3{letter-spacing:0.072000px;}
.ls6b{letter-spacing:0.089280px;}
.ls60{letter-spacing:0.132480px;}
.ls45{letter-spacing:0.142037px;}
.ls5{letter-spacing:0.144000px;}
.ls4f{letter-spacing:0.152640px;}
.ls2f{letter-spacing:0.156240px;}
.ls31{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.181440px;}
.ls9{letter-spacing:0.192960px;}
.ls47{letter-spacing:0.213053px;}
.ls52{letter-spacing:0.213055px;}
.lsd{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.223920px;}
.ls46{letter-spacing:0.241200px;}
.ls6e{letter-spacing:0.264960px;}
.lse{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.295200px;}
.ls67{letter-spacing:0.305280px;}
.ls62{letter-spacing:0.331200px;}
.ls11{letter-spacing:0.336960px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.385920px;}
.ls64{letter-spacing:0.397440px;}
.ls16{letter-spacing:0.432000px;}
.ls66{letter-spacing:0.493920px;}
.ls3a{letter-spacing:0.496800px;}
.ls22{letter-spacing:0.504000px;}
.ls18{letter-spacing:0.576000px;}
.ls1f{letter-spacing:0.640800px;}
.lsa{letter-spacing:0.720000px;}
.ls28{letter-spacing:0.727200px;}
.ls48{letter-spacing:0.792000px;}
.ls5c{letter-spacing:0.864000px;}
.ls4{letter-spacing:0.901440px;}
.ls33{letter-spacing:0.943920px;}
.ls34{letter-spacing:1.296000px;}
.ls7{letter-spacing:1.440000px;}
.ls58{letter-spacing:1.609200px;}
.ls6{letter-spacing:2.160000px;}
.ls4e{letter-spacing:2.328480px;}
.ls51{letter-spacing:2.329200px;}
.ls50{letter-spacing:2.349360px;}
.ls57{letter-spacing:2.357280px;}
.ls29{letter-spacing:2.880000px;}
.ls2d{letter-spacing:2.887200px;}
.ls59{letter-spacing:3.040560px;}
.ls5a{letter-spacing:3.049200px;}
.ls5b{letter-spacing:3.062160px;}
.ls56{letter-spacing:3.077280px;}
.ls23{letter-spacing:3.600000px;}
.ls38{letter-spacing:4.320000px;}
.lsb{letter-spacing:5.040000px;}
.ls2{letter-spacing:5.760000px;}
.ls5d{letter-spacing:6.480000px;}
.ls55{letter-spacing:7.200000px;}
.ls24{letter-spacing:7.920000px;}
.ls3c{letter-spacing:8.640000px;}
.ls30{letter-spacing:8.897131px;}
.ls32{letter-spacing:9.272051px;}
.lsc{letter-spacing:9.360000px;}
.ls3f{letter-spacing:10.080000px;}
.ls25{letter-spacing:11.520000px;}
.ls8{letter-spacing:12.960000px;}
.ls2e{letter-spacing:12.967200px;}
.ls21{letter-spacing:19.440000px;}
.ls3b{letter-spacing:20.160000px;}
.ls20{letter-spacing:21.024000px;}
.ls4c{letter-spacing:21.600000px;}
.lsf{letter-spacing:22.320000px;}
.ls2a{letter-spacing:27.360000px;}
.ls4d{letter-spacing:29.520000px;}
.ls39{letter-spacing:31.680000px;}
.ls5e{letter-spacing:33.120000px;}
.ls6d{letter-spacing:61.920000px;}
.ls6a{letter-spacing:62.640000px;}
.ls6c{letter-spacing:100.080000px;}
.ls69{letter-spacing:100.800000px;}
.ls40{letter-spacing:160.161288px;}
.ls42{letter-spacing:163.269922px;}
.ls44{letter-spacing:168.825991px;}
.ls43{letter-spacing:175.899042px;}
.ls1e{letter-spacing:198.000000px;}
.ls49{letter-spacing:203.958720px;}
.ls4a{letter-spacing:585.399743px;}
.ls41{letter-spacing:701.114691px;}
.ls5f{letter-spacing:846.000000px;}
.ls4b{letter-spacing:1476.219970px;}
.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;}
}
.wsc7{word-spacing:-66.240000px;}
.ws0{word-spacing:-21.060000px;}
.ws1{word-spacing:-20.723040px;}
.ws5c{word-spacing:-19.296000px;}
.wsac{word-spacing:-18.864000px;}
.ws3e{word-spacing:-18.720000px;}
.ws90{word-spacing:-18.700050px;}
.ws8{word-spacing:-18.576000px;}
.ws3d{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.432000px;}
.wsd{word-spacing:-18.288000px;}
.ws5b{word-spacing:-18.216000px;}
.ws3b{word-spacing:-18.144000px;}
.ws5d{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws93{word-spacing:-17.967503px;}
.ws5a{word-spacing:-17.928000px;}
.ws8c{word-spacing:-17.896637px;}
.ws7{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.ws8b{word-spacing:-17.754600px;}
.ws92{word-spacing:-17.754450px;}
.ws3{word-spacing:-17.712000px;}
.ws5f{word-spacing:-17.640000px;}
.ws88{word-spacing:-17.568000px;}
.wsca{word-spacing:-17.424000px;}
.ws76{word-spacing:-17.280000px;}
.ws5e{word-spacing:-17.064000px;}
.wsc2{word-spacing:-16.957440px;}
.wsc0{word-spacing:-16.891200px;}
.wsc8{word-spacing:-16.824960px;}
.wsc3{word-spacing:-16.692480px;}
.ws3c{word-spacing:-16.560000px;}
.wsc9{word-spacing:-16.427520px;}
.wsbd{word-spacing:-16.344000px;}
.wsc4{word-spacing:-16.096320px;}
.wsbe{word-spacing:-15.831360px;}
.wsc1{word-spacing:-15.367680px;}
.wse{word-spacing:-15.000000px;}
.wsa{word-spacing:-12.445920px;}
.ws9{word-spacing:-12.252960px;}
.ws5{word-spacing:-12.060000px;}
.ws9b{word-spacing:-11.770560px;}
.wsb{word-spacing:-11.722320px;}
.ws9c{word-spacing:-11.529360px;}
.ws8e{word-spacing:-10.908300px;}
.wsbf{word-spacing:-10.440000px;}
.ws8a{word-spacing:-10.356750px;}
.wscd{word-spacing:-4.464000px;}
.ws6e{word-spacing:-4.320000px;}
.ws58{word-spacing:-4.032000px;}
.ws85{word-spacing:-3.744000px;}
.ws45{word-spacing:-3.600000px;}
.wsab{word-spacing:-3.312000px;}
.ws61{word-spacing:-3.024000px;}
.ws62{word-spacing:-2.880000px;}
.wsb5{word-spacing:-2.664000px;}
.wsaf{word-spacing:-2.592000px;}
.ws6f{word-spacing:-2.304000px;}
.ws83{word-spacing:-2.232000px;}
.ws43{word-spacing:-2.160000px;}
.ws47{word-spacing:-1.944000px;}
.ws42{word-spacing:-1.872000px;}
.ws4a{word-spacing:-1.584000px;}
.ws49{word-spacing:-1.440000px;}
.ws11{word-spacing:-1.263600px;}
.ws71{word-spacing:-1.152000px;}
.ws65{word-spacing:-0.864000px;}
.wsae{word-spacing:-0.792000px;}
.wsc6{word-spacing:-0.728640px;}
.ws3f{word-spacing:-0.720000px;}
.wsf{word-spacing:-0.505440px;}
.wsb8{word-spacing:-0.504000px;}
.ws6b{word-spacing:-0.432000px;}
.wsaa{word-spacing:-0.385920px;}
.ws7a{word-spacing:-0.288000px;}
.ws98{word-spacing:-0.241200px;}
.ws69{word-spacing:-0.216000px;}
.ws9f{word-spacing:-0.213055px;}
.ws15{word-spacing:-0.192960px;}
.ws1f{word-spacing:-0.144000px;}
.wsc5{word-spacing:-0.132480px;}
.ws70{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws86{word-spacing:0.072000px;}
.ws10{word-spacing:0.084240px;}
.ws14{word-spacing:0.144000px;}
.ws75{word-spacing:0.144720px;}
.ws13{word-spacing:0.168480px;}
.ws3a{word-spacing:0.216000px;}
.ws1a{word-spacing:0.288000px;}
.wscc{word-spacing:0.331200px;}
.ws12{word-spacing:0.336960px;}
.ws74{word-spacing:0.360000px;}
.ws16{word-spacing:0.432000px;}
.wscb{word-spacing:0.463680px;}
.ws60{word-spacing:0.576000px;}
.ws2e{word-spacing:0.720000px;}
.ws73{word-spacing:0.936000px;}
.ws2d{word-spacing:1.008000px;}
.ws26{word-spacing:1.296000px;}
.wsbc{word-spacing:1.368000px;}
.ws27{word-spacing:1.440000px;}
.ws84{word-spacing:1.656000px;}
.ws78{word-spacing:1.728000px;}
.ws59{word-spacing:2.016000px;}
.ws21{word-spacing:2.160000px;}
.ws22{word-spacing:2.448000px;}
.ws87{word-spacing:2.736000px;}
.ws44{word-spacing:2.880000px;}
.wsb6{word-spacing:3.024000px;}
.wsce{word-spacing:3.096000px;}
.ws63{word-spacing:3.168000px;}
.ws46{word-spacing:3.600000px;}
.ws50{word-spacing:3.888000px;}
.ws53{word-spacing:4.176000px;}
.ws2f{word-spacing:4.320000px;}
.ws30{word-spacing:4.608000px;}
.ws23{word-spacing:4.896000px;}
.ws25{word-spacing:5.040000px;}
.wsb3{word-spacing:5.209920px;}
.wsb7{word-spacing:5.256000px;}
.ws24{word-spacing:5.328000px;}
.ws64{word-spacing:5.616000px;}
.ws19{word-spacing:5.760000px;}
.ws17{word-spacing:6.048000px;}
.wsb9{word-spacing:6.336000px;}
.ws82{word-spacing:6.480000px;}
.ws18{word-spacing:6.768000px;}
.wsb2{word-spacing:7.056000px;}
.wsb1{word-spacing:7.200000px;}
.wsb4{word-spacing:7.488000px;}
.ws55{word-spacing:7.776000px;}
.ws4e{word-spacing:7.920000px;}
.wsa9{word-spacing:8.136000px;}
.ws4d{word-spacing:8.208000px;}
.ws54{word-spacing:8.640000px;}
.wsad{word-spacing:8.928000px;}
.ws31{word-spacing:9.216000px;}
.ws33{word-spacing:9.360000px;}
.ws81{word-spacing:9.648000px;}
.ws79{word-spacing:9.936000px;}
.ws95{word-spacing:10.080000px;}
.ws32{word-spacing:10.368000px;}
.ws6c{word-spacing:10.800000px;}
.ws6d{word-spacing:11.088000px;}
.wsb0{word-spacing:11.376000px;}
.ws1e{word-spacing:11.520000px;}
.ws20{word-spacing:11.808000px;}
.ws6a{word-spacing:12.096000px;}
.ws48{word-spacing:12.240000px;}
.ws4f{word-spacing:12.528000px;}
.ws2a{word-spacing:12.816000px;}
.ws2c{word-spacing:12.960000px;}
.ws2b{word-spacing:13.104000px;}
.ws72{word-spacing:13.248000px;}
.ws99{word-spacing:13.680000px;}
.ws9e{word-spacing:13.968000px;}
.ws7d{word-spacing:14.400000px;}
.wsa4{word-spacing:14.688000px;}
.wsa8{word-spacing:14.976000px;}
.ws41{word-spacing:15.120000px;}
.ws40{word-spacing:15.264000px;}
.ws7e{word-spacing:15.408000px;}
.ws77{word-spacing:15.696000px;}
.ws1b{word-spacing:15.840000px;}
.ws7c{word-spacing:16.128000px;}
.ws56{word-spacing:16.560000px;}
.ws57{word-spacing:16.848000px;}
.ws34{word-spacing:17.856000px;}
.ws36{word-spacing:18.000000px;}
.ws35{word-spacing:18.072000px;}
.ws37{word-spacing:18.288000px;}
.ws97{word-spacing:19.008000px;}
.ws96{word-spacing:19.440000px;}
.ws4b{word-spacing:20.160000px;}
.ws4c{word-spacing:20.448000px;}
.wsa0{word-spacing:21.600000px;}
.ws39{word-spacing:21.888000px;}
.ws38{word-spacing:22.320000px;}
.ws9d{word-spacing:22.608000px;}
.ws51{word-spacing:23.040000px;}
.ws52{word-spacing:23.328000px;}
.ws7b{word-spacing:23.616000px;}
.ws1c{word-spacing:25.056000px;}
.ws1d{word-spacing:25.200000px;}
.ws28{word-spacing:26.496000px;}
.ws29{word-spacing:26.928000px;}
.ws68{word-spacing:27.216000px;}
.ws66{word-spacing:27.576000px;}
.ws67{word-spacing:27.648000px;}
.wsa1{word-spacing:29.376000px;}
.wsa3{word-spacing:29.520000px;}
.wsa2{word-spacing:29.808000px;}
.ws80{word-spacing:30.816000px;}
.ws7f{word-spacing:31.968000px;}
.wsbb{word-spacing:32.400000px;}
.wsba{word-spacing:33.120000px;}
.wsa6{word-spacing:43.200000px;}
.wsa7{word-spacing:43.416000px;}
.wsa5{word-spacing:43.488000px;}
.ws8d{word-spacing:238.108913px;}
.ws8f{word-spacing:314.086040px;}
.ws94{word-spacing:485.299158px;}
.ws89{word-spacing:524.531592px;}
.ws91{word-spacing:530.797534px;}
.ws9a{word-spacing:998.503008px;}
._1c{margin-left:-345.255952px;}
._26{margin-left:-344.152259px;}
._17{margin-left:-256.077555px;}
._22{margin-left:-248.491282px;}
._2a{margin-left:-201.611971px;}
._13{margin-left:-198.000000px;}
._24{margin-left:-195.369968px;}
._1b{margin-left:-192.456905px;}
._19{margin-left:-188.758030px;}
._20{margin-left:-183.372965px;}
._1a{margin-left:-178.362712px;}
._1d{margin-left:-176.587252px;}
._25{margin-left:-164.264171px;}
._1f{margin-left:-161.861140px;}
._1e{margin-left:-157.722989px;}
._23{margin-left:-128.684254px;}
._21{margin-left:-118.670744px;}
._16{margin-left:-115.543978px;}
._18{margin-left:-109.995665px;}
._27{margin-left:-85.680000px;}
._15{margin-left:-31.070250px;}
._14{margin-left:-20.293632px;}
._30{margin-left:-9.792000px;}
._9{margin-left:-4.752000px;}
._d{margin-left:-3.498624px;}
._0{margin-left:-1.971216px;}
._1{width:1.482624px;}
._5{width:2.531808px;}
._2{width:3.768480px;}
._c{width:5.051232px;}
._4{width:6.159024px;}
._8{width:8.123472px;}
._6{width:9.142560px;}
._b{width:11.016000px;}
._7{width:12.168000px;}
._3{width:13.203216px;}
._29{width:14.213376px;}
._2d{width:15.664320px;}
._2b{width:21.706416px;}
._28{width:22.824000px;}
._2f{width:24.048000px;}
._a{width:26.885376px;}
._12{width:30.816000px;}
._2c{width:44.033184px;}
._34{width:67.808160px;}
._e{width:102.457796px;}
._45{width:104.256000px;}
._46{width:105.696000px;}
._3b{width:108.576000px;}
._35{width:111.456000px;}
._4d{width:112.896000px;}
._3e{width:114.579216px;}
._4c{width:130.392000px;}
._41{width:132.336000px;}
._4a{width:141.359040px;}
._40{width:143.856000px;}
._3d{width:146.232000px;}
._11{width:151.042752px;}
._4e{width:152.712000px;}
._3f{width:156.312000px;}
._4b{width:162.675216px;}
._48{width:165.744000px;}
._3a{width:167.832000px;}
._36{width:178.560000px;}
._3c{width:179.856000px;}
._49{width:184.896000px;}
._31{width:186.949152px;}
._f{width:189.537552px;}
._33{width:194.596954px;}
._10{width:198.000000px;}
._42{width:200.160000px;}
._47{width:212.976000px;}
._44{width:214.488000px;}
._43{width:219.600000px;}
._37{width:222.480000px;}
._39{width:228.312000px;}
._38{width:241.776000px;}
._32{width:322.512856px;}
._2e{width:846.000000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:41.427000px;}
.fs12{font-size:41.760000px;}
.fsc{font-size:43.633200px;}
.fsa{font-size:43.728603px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:50.849425px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs10{font-size:66.240000px;}
.fs11{font-size:69.823091px;}
.fsf{font-size:71.017800px;}
.fs9{font-size:71.018400px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:74.800200px;}
.fs4{font-size:75.894664px;}
.fs1{font-size:84.240000px;}
.fsb{font-size:98.759400px;}
.fse{font-size:138.336600px;}
.fs7{font-size:138.337200px;}
.y0{bottom:0.000000px;}
.y107{bottom:3.960000px;}
.y118{bottom:4.320000px;}
.y96{bottom:4.674900px;}
.y111{bottom:5.400000px;}
.y8e{bottom:5.918250px;}
.yc3{bottom:5.921700px;}
.yc4{bottom:5.921850px;}
.y97{bottom:9.349800px;}
.y95{bottom:9.447450px;}
.y8d{bottom:10.356900px;}
.ya5{bottom:10.357200px;}
.yb4{bottom:10.357950px;}
.yb5{bottom:10.358100px;}
.yb6{bottom:10.358250px;}
.yb7{bottom:10.358400px;}
.yb8{bottom:10.358550px;}
.yb9{bottom:10.358700px;}
.yba{bottom:10.358850px;}
.ybb{bottom:10.359150px;}
.ybc{bottom:10.359300px;}
.ybd{bottom:10.359450px;}
.ybe{bottom:10.359600px;}
.ybf{bottom:10.359750px;}
.yc0{bottom:10.359900px;}
.yc1{bottom:10.360050px;}
.yc7{bottom:10.360950px;}
.yc8{bottom:10.361100px;}
.yc9{bottom:10.361250px;}
.yca{bottom:10.361400px;}
.ycb{bottom:10.361550px;}
.ycc{bottom:10.361700px;}
.y8b{bottom:10.541850px;}
.ya3{bottom:10.542000px;}
.yb0{bottom:10.542300px;}
.ya7{bottom:18.308391px;}
.y8f{bottom:18.309450px;}
.yc6{bottom:18.313350px;}
.y8c{bottom:21.083550px;}
.y90{bottom:21.083700px;}
.ya4{bottom:21.083850px;}
.ya6{bottom:21.084000px;}
.yb1{bottom:21.084300px;}
.yb2{bottom:21.084450px;}
.yb3{bottom:21.084600px;}
.yc2{bottom:21.086850px;}
.yc5{bottom:21.087450px;}
.y117{bottom:25.020000px;}
.y24{bottom:58.320000px;}
.y1{bottom:79.020000px;}
.y46{bottom:115.560000px;}
.y1f{bottom:116.820000px;}
.ya9{bottom:121.860000px;}
.y69{bottom:127.080000px;}
.ye0{bottom:127.620000px;}
.ye7{bottom:138.600000px;}
.y4a{bottom:141.120000px;}
.y45{bottom:146.700000px;}
.y4b{bottom:147.060000px;}
.y1e{bottom:147.780000px;}
.yfd{bottom:148.320000px;}
.y85{bottom:152.820000px;}
.ya2{bottom:153.465000px;}
.ydf{bottom:160.020000px;}
.y68{bottom:163.080000px;}
.ya8{bottom:163.980000px;}
.ye6{bottom:170.100000px;}
.y48{bottom:174.240000px;}
.y44{bottom:177.660000px;}
.y1d{bottom:178.920000px;}
.yfc{bottom:179.280000px;}
.y49{bottom:180.180000px;}
.y84{bottom:188.820000px;}
.y126{bottom:189.180000px;}
.yde{bottom:191.700000px;}
.ya1{bottom:193.860000px;}
.y67{bottom:199.080000px;}
.ye5{bottom:202.680000px;}
.y47{bottom:207.360000px;}
.y43{bottom:208.800000px;}
.y1c{bottom:209.880000px;}
.yfb{bottom:210.420000px;}
.y125{bottom:211.140000px;}
.ydd{bottom:224.280000px;}
.y83{bottom:224.820000px;}
.ya0{bottom:229.860000px;}
.yfa{bottom:231.480000px;}
.ye4{bottom:233.640000px;}
.y66{bottom:235.080000px;}
.y42{bottom:239.760000px;}
.y1b{bottom:241.020000px;}
.ydc{bottom:255.240000px;}
.y82{bottom:260.820000px;}
.y124{bottom:263.160000px;}
.ye3{bottom:263.878020px;}
.y9f{bottom:265.860000px;}
.yf9{bottom:267.480000px;}
.y41{bottom:270.900000px;}
.y65{bottom:271.080000px;}
.y1a{bottom:271.620000px;}
.ydb{bottom:286.380000px;}
.y123{bottom:293.040000px;}
.y81{bottom:296.820000px;}
.ye2{bottom:298.440000px;}
.y40{bottom:301.860000px;}
.yf8{bottom:303.480000px;}
.y64{bottom:307.080000px;}
.y13c{bottom:313.200000px;}
.y122{bottom:315.180000px;}
.yda{bottom:317.340000px;}
.ye1{bottom:331.560000px;}
.y80{bottom:332.820000px;}
.y3f{bottom:333.000000px;}
.y19{bottom:334.080000px;}
.y9e{bottom:337.860000px;}
.yf7{bottom:339.480000px;}
.y121{bottom:341.106480px;}
.y63{bottom:343.080000px;}
.yd9{bottom:348.480000px;}
.y120{bottom:361.260000px;}
.y3e{bottom:363.960000px;}
.y7f{bottom:368.820000px;}
.y18{bottom:370.080000px;}
.y9d{bottom:373.860000px;}
.yf6{bottom:375.120000px;}
.y62{bottom:379.080000px;}
.yd8{bottom:379.440000px;}
.y11f{bottom:381.240000px;}
.y10e{bottom:383.400150px;}
.y3d{bottom:395.100000px;}
.y101{bottom:400.860000px;}
.y10d{bottom:404.100150px;}
.y7e{bottom:404.820000px;}
.y9c{bottom:409.860000px;}
.yd7{bottom:410.580000px;}
.yf5{bottom:411.120000px;}
.y61{bottom:415.080000px;}
.y11e{bottom:417.240000px;}
.y3c{bottom:426.060000px;}
.y100{bottom:436.860000px;}
.y10c{bottom:437.940000px;}
.y7d{bottom:440.820000px;}
.yd6{bottom:441.540000px;}
.y17{bottom:442.080000px;}
.y9b{bottom:445.860000px;}
.yf4{bottom:447.120000px;}
.y60{bottom:451.080000px;}
.y11d{bottom:453.412080px;}
.y3b{bottom:457.020000px;}
.yd5{bottom:472.680000px;}
.y11c{bottom:473.400000px;}
.y10b{bottom:473.940000px;}
.y7c{bottom:476.820000px;}
.y16{bottom:478.080000px;}
.y9a{bottom:481.860000px;}
.yf3{bottom:483.120000px;}
.y5f{bottom:487.080000px;}
.y3a{bottom:488.160000px;}
.y11b{bottom:498.420000px;}
.yd4{bottom:503.640000px;}
.yff{bottom:503.820000px;}
.y10a{bottom:509.940000px;}
.y7b{bottom:512.820000px;}
.y15{bottom:514.080000px;}
.y99{bottom:517.860000px;}
.y39{bottom:519.120000px;}
.yf2{bottom:519.480000px;}
.y11a{bottom:520.380000px;}
.y5e{bottom:523.080000px;}
.yd3{bottom:534.780000px;}
.y116{bottom:541.800000px;}
.y136{bottom:543.420000px;}
.y109{bottom:545.940000px;}
.y14{bottom:548.640000px;}
.y7a{bottom:548.820000px;}
.y13{bottom:550.080000px;}
.y38{bottom:550.260000px;}
.y98{bottom:553.860000px;}
.yf1{bottom:555.480000px;}
.y115{bottom:556.200000px;}
.y119{bottom:556.560000px;}
.y5d{bottom:559.080000px;}
.y135{bottom:564.120000px;}
.yd2{bottom:565.740000px;}
.y37{bottom:581.220000px;}
.y138{bottom:582.120000px;}
.y106{bottom:583.200000px;}
.y114{bottom:583.920000px;}
.y79{bottom:584.820000px;}
.y94{bottom:585.465000px;}
.y12{bottom:586.080000px;}
.yf0{bottom:591.480000px;}
.y93{bottom:594.540000px;}
.y5c{bottom:595.080000px;}
.yd1{bottom:596.700000px;}
.y137{bottom:598.500000px;}
.y134{bottom:600.120000px;}
.y36{bottom:612.360000px;}
.y113{bottom:613.980000px;}
.y78{bottom:620.820000px;}
.y11{bottom:622.080000px;}
.y108{bottom:622.800000px;}
.y105{bottom:623.160000px;}
.y92{bottom:625.860000px;}
.yef{bottom:627.480000px;}
.yd0{bottom:627.840000px;}
.y110{bottom:635.940000px;}
.y133{bottom:636.120000px;}
.y112{bottom:639.900000px;}
.y5b{bottom:640.980000px;}
.y35{bottom:643.320000px;}
.y13b{bottom:649.260000px;}
.y77{bottom:656.820000px;}
.y8a{bottom:657.465000px;}
.y10{bottom:658.080000px;}
.ycf{bottom:658.800000px;}
.y10f{bottom:661.680000px;}
.y104{bottom:661.680150px;}
.yee{bottom:663.480000px;}
.y91{bottom:667.980000px;}
.y132{bottom:672.120000px;}
.y5a{bottom:672.480000px;}
.y34{bottom:674.460000px;}
.y13a{bottom:685.260000px;}
.yce{bottom:689.940000px;}
.y76{bottom:692.820000px;}
.yf{bottom:694.080000px;}
.y103{bottom:697.680000px;}
.y89{bottom:697.860000px;}
.yed{bottom:699.480000px;}
.y59{bottom:703.440000px;}
.y33{bottom:705.420000px;}
.y131{bottom:708.120000px;}
.yaf{bottom:716.490000px;}
.y139{bottom:716.940000px;}
.ycd{bottom:727.020000px;}
.y75{bottom:728.460000px;}
.ye{bottom:730.080000px;}
.y102{bottom:733.680000px;}
.y88{bottom:733.860000px;}
.y58{bottom:734.580000px;}
.yec{bottom:735.480000px;}
.y32{bottom:736.560000px;}
.y130{bottom:742.680900px;}
.yae{bottom:763.920000px;}
.y74{bottom:764.820000px;}
.y57{bottom:765.540000px;}
.yd{bottom:765.720000px;}
.y31{bottom:767.520000px;}
.y87{bottom:769.500000px;}
.yeb{bottom:771.480000px;}
.y12f{bottom:780.120000px;}
.yad{bottom:795.060000px;}
.y56{bottom:796.680000px;}
.y30{bottom:798.660000px;}
.y73{bottom:800.820000px;}
.yea{bottom:807.120000px;}
.y86{bottom:816.120000px;}
.yac{bottom:826.020000px;}
.y55{bottom:827.640000px;}
.y2f{bottom:829.620000px;}
.y72{bottom:836.820000px;}
.yc{bottom:838.080000px;}
.ye9{bottom:843.120000px;}
.y12e{bottom:852.120000px;}
.yab{bottom:857.160000px;}
.yb{bottom:858.780000px;}
.y2e{bottom:860.760000px;}
.y71{bottom:872.820000px;}
.ya{bottom:886.320000px;}
.yaa{bottom:888.120000px;}
.y54{bottom:889.740000px;}
.y2d{bottom:891.720000px;}
.y70{bottom:908.820000px;}
.y53{bottom:920.700000px;}
.y9{bottom:921.240000px;}
.y2c{bottom:922.860000px;}
.y12d{bottom:924.120000px;}
.y6f{bottom:944.820000px;}
.y8{bottom:949.320000px;}
.y52{bottom:951.840000px;}
.y2b{bottom:953.820000px;}
.y12c{bottom:958.680000px;}
.y7{bottom:963.720000px;}
.y6e{bottom:980.820000px;}
.y51{bottom:982.800000px;}
.y2a{bottom:984.960000px;}
.y6{bottom:991.980000px;}
.y12b{bottom:996.120000px;}
.y5{bottom:1006.380000px;}
.y50{bottom:1013.940000px;}
.y29{bottom:1015.920000px;}
.y6d{bottom:1016.820000px;}
.y12a{bottom:1032.120000px;}
.y4{bottom:1034.460000px;}
.y4f{bottom:1044.900000px;}
.y28{bottom:1047.060000px;}
.y6c{bottom:1052.820000px;}
.y129{bottom:1068.120000px;}
.y3{bottom:1069.380000px;}
.y4e{bottom:1076.040000px;}
.ye8{bottom:1076.580000px;}
.y27{bottom:1078.020000px;}
.y6b{bottom:1088.820000px;}
.y128{bottom:1103.760000px;}
.y4d{bottom:1107.000000px;}
.y26{bottom:1109.160000px;}
.y127{bottom:1124.460000px;}
.y6a{bottom:1124.820000px;}
.y2{bottom:1137.060000px;}
.y4c{bottom:1138.680000px;}
.yfe{bottom:1139.760000px;}
.y25{bottom:1140.120000px;}
.y23{bottom:1185.879000px;}
.y22{bottom:1203.879000px;}
.y21{bottom:1221.879000px;}
.y20{bottom:1239.879000px;}
.h2b{height:20.700000px;}
.h2e{height:20.701500px;}
.h17{height:28.050000px;}
.h14{height:28.764255px;}
.h16{height:30.362341px;}
.hf{height:32.550000px;}
.hc{height:35.306583px;}
.h2a{height:35.998500px;}
.h29{height:36.000000px;}
.h1f{height:40.638107px;}
.h11{height:40.658335px;}
.h2f{height:41.400000px;}
.h9{height:41.689453px;}
.h2d{height:42.086250px;}
.h19{height:42.802294px;}
.h30{height:44.149219px;}
.h5{height:47.344922px;}
.h27{height:48.480681px;}
.h15{height:49.310627px;}
.he{height:49.992188px;}
.h7{height:52.696393px;}
.h25{height:65.010937px;}
.h2c{height:66.757500px;}
.h28{height:68.324766px;}
.h18{height:68.572201px;}
.h1e{height:69.665999px;}
.h12{height:69.700676px;}
.hd{height:70.628906px;}
.h2{height:70.664062px;}
.h26{height:72.000000px;}
.h6{height:72.562500px;}
.h1a{height:73.412306px;}
.hb{height:74.681367px;}
.h24{height:74.681967px;}
.h4{height:74.704922px;}
.ha{height:75.093750px;}
.h8{height:76.424062px;}
.h13{height:78.329055px;}
.h20{height:78.329655px;}
.h21{height:80.472842px;}
.h1c{height:83.545307px;}
.h3{height:84.898125px;}
.h1b{height:96.052073px;}
.h10{height:96.052489px;}
.h1d{height:96.053089px;}
.h22{height:892.980000px;}
.h23{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:53.100000px;}
.wb{width:63.720000px;}
.w10{width:73.798500px;}
.w1a{width:84.420000px;}
.wd{width:85.140000px;}
.w17{width:92.158500px;}
.w11{width:94.858500px;}
.w1b{width:94.860000px;}
.w1d{width:102.780000px;}
.w14{width:103.321500px;}
.w1e{width:103.680000px;}
.w20{width:105.658500px;}
.w16{width:106.560000px;}
.w13{width:109.801500px;}
.w1f{width:112.138500px;}
.w15{width:113.220000px;}
.we{width:113.760000px;}
.w18{width:114.121500px;}
.w1c{width:114.298500px;}
.w12{width:116.100000px;}
.w3{width:117.000000px;}
.w19{width:117.900000px;}
.wf{width:118.078500px;}
.w8{width:127.620000px;}
.w9{width:148.860000px;}
.wa{width:191.340000px;}
.w4{width:237.375000px;}
.w2{width:238.500000px;}
.w5{width:415.051500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w6{width:1262.880000px;}
.w7{width:1263.000000px;}
.x0{left:0.000000px;}
.x4f{left:8.100000px;}
.x74{left:9.540000px;}
.x2f{left:10.863600px;}
.x18{left:12.374850px;}
.x65{left:13.860000px;}
.x73{left:14.940000px;}
.x9{left:16.116000px;}
.x56{left:17.460000px;}
.x34{left:19.573200px;}
.x5f{left:21.420000px;}
.x5a{left:22.680000px;}
.x69{left:24.120000px;}
.x50{left:25.560000px;}
.x1e{left:26.923350px;}
.x59{left:28.080000px;}
.x52{left:30.240000px;}
.x5b{left:37.080000px;}
.x3d{left:38.116050px;}
.x5d{left:41.220000px;}
.x4b{left:42.660000px;}
.x54{left:44.100000px;}
.x2e{left:50.757750px;}
.x5e{left:54.360000px;}
.x61{left:56.880000px;}
.x2d{left:60.871800px;}
.x5c{left:66.240000px;}
.x33{left:69.581400px;}
.x36{left:83.347800px;}
.x20{left:95.679600px;}
.x1f{left:105.651300px;}
.x60{left:107.100000px;}
.x49{left:114.480000px;}
.x6c{left:115.740000px;}
.x1a{left:117.140400px;}
.x3c{left:123.897750px;}
.x6a{left:125.280000px;}
.x3{left:127.620000px;}
.x2{left:128.880000px;}
.x2c{left:135.696750px;}
.x19{left:138.046650px;}
.x1c{left:143.859150px;}
.x2b{left:145.810800px;}
.x22{left:152.162250px;}
.x16{left:154.453050px;}
.x17{left:156.656100px;}
.x44{left:159.660000px;}
.x8{left:165.060000px;}
.x1b{left:167.624850px;}
.x11{left:177.120000px;}
.xa{left:180.720000px;}
.x15{left:181.740000px;}
.x12{left:188.100000px;}
.x3b{left:194.227650px;}
.x13{left:197.280000px;}
.x14{left:207.540000px;}
.x25{left:209.700000px;}
.x26{left:220.680000px;}
.x23{left:222.538950px;}
.x4{left:224.820000px;}
.x5{left:235.980000px;}
.x4a{left:255.240000px;}
.x3a{left:261.654300px;}
.x32{left:276.263100px;}
.x3f{left:285.300000px;}
.x38{left:291.574800px;}
.x21{left:293.220000px;}
.x40{left:296.460000px;}
.x31{left:302.484600px;}
.x37{left:312.458400px;}
.x35{left:319.575600px;}
.x27{left:328.378200px;}
.x2a{left:330.579150px;}
.xf{left:333.000000px;}
.x39{left:341.536200px;}
.x30{left:355.864200px;}
.xd{left:361.080000px;}
.x51{left:382.860000px;}
.x48{left:389.700000px;}
.x29{left:393.276600px;}
.x10{left:397.620000px;}
.x28{left:401.143050px;}
.xe{left:403.560000px;}
.x62{left:415.080000px;}
.x24{left:419.040000px;}
.x1d{left:420.120000px;}
.x6d{left:425.700000px;}
.x4c{left:428.220000px;}
.x63{left:452.340000px;}
.x64{left:510.840000px;}
.xb{left:519.120000px;}
.x6e{left:521.460000px;}
.xc{left:529.020000px;}
.x3e{left:542.700000px;}
.x53{left:574.200000px;}
.x4d{left:627.480000px;}
.x6f{left:636.480000px;}
.x41{left:682.920000px;}
.x55{left:691.200000px;}
.x42{left:698.580000px;}
.x6{left:714.060000px;}
.x7{left:725.040000px;}
.x66{left:738.360000px;}
.x70{left:739.980000px;}
.x43{left:747.360000px;}
.x57{left:754.920000px;}
.x1{left:756.360000px;}
.x75{left:765.360000px;}
.x58{left:808.020000px;}
.x4e{left:832.860000px;}
.x67{left:842.400000px;}
.x71{left:844.380000px;}
.x46{left:956.160000px;}
.x72{left:957.240000px;}
.x47{left:967.320000px;}
.x68{left:1063.620000px;}
.x6b{left:1080.360000px;}
.x45{left:1138.500000px;}
@media print{
.va{vertical-align:-29.458560pt;}
.v9{vertical-align:-28.270368pt;}
.v3{vertical-align:-24.320000pt;}
.v5{vertical-align:-22.262435pt;}
.vc{vertical-align:-21.120533pt;}
.v1{vertical-align:-5.120000pt;}
.vd{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:1.280000pt;}
.v4{vertical-align:5.120000pt;}
.vb{vertical-align:21.120533pt;}
.v2{vertical-align:24.320000pt;}
.v8{vertical-align:28.270901pt;}
.v7{vertical-align:38.139733pt;}
.v6{vertical-align:44.057600pt;}
.ls3e{letter-spacing:-1.472000pt;}
.ls26{letter-spacing:-1.280000pt;}
.ls63{letter-spacing:-1.059840pt;}
.ls1a{letter-spacing:-0.896000pt;}
.ls35{letter-spacing:-0.832000pt;}
.ls61{letter-spacing:-0.647680pt;}
.ls27{letter-spacing:-0.640000pt;}
.ls3d{letter-spacing:-0.512000pt;}
.ls54{letter-spacing:-0.471680pt;}
.ls65{letter-spacing:-0.412160pt;}
.ls17{letter-spacing:-0.384000pt;}
.ls36{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.300160pt;}
.ls13{letter-spacing:-0.299520pt;}
.ls70{letter-spacing:-0.294400pt;}
.ls53{letter-spacing:-0.257280pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls37{letter-spacing:-0.128640pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls6f{letter-spacing:-0.117760pt;}
.ls12{letter-spacing:-0.074880pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:0.000000pt;}
.ls68{letter-spacing:0.040320pt;}
.ls3{letter-spacing:0.064000pt;}
.ls6b{letter-spacing:0.079360pt;}
.ls60{letter-spacing:0.117760pt;}
.ls45{letter-spacing:0.126255pt;}
.ls5{letter-spacing:0.128000pt;}
.ls4f{letter-spacing:0.135680pt;}
.ls2f{letter-spacing:0.138880pt;}
.ls31{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.161280pt;}
.ls9{letter-spacing:0.171520pt;}
.ls47{letter-spacing:0.189381pt;}
.ls52{letter-spacing:0.189382pt;}
.lsd{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.199040pt;}
.ls46{letter-spacing:0.214400pt;}
.ls6e{letter-spacing:0.235520pt;}
.lse{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.262400pt;}
.ls67{letter-spacing:0.271360pt;}
.ls62{letter-spacing:0.294400pt;}
.ls11{letter-spacing:0.299520pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.343040pt;}
.ls64{letter-spacing:0.353280pt;}
.ls16{letter-spacing:0.384000pt;}
.ls66{letter-spacing:0.439040pt;}
.ls3a{letter-spacing:0.441600pt;}
.ls22{letter-spacing:0.448000pt;}
.ls18{letter-spacing:0.512000pt;}
.ls1f{letter-spacing:0.569600pt;}
.lsa{letter-spacing:0.640000pt;}
.ls28{letter-spacing:0.646400pt;}
.ls48{letter-spacing:0.704000pt;}
.ls5c{letter-spacing:0.768000pt;}
.ls4{letter-spacing:0.801280pt;}
.ls33{letter-spacing:0.839040pt;}
.ls34{letter-spacing:1.152000pt;}
.ls7{letter-spacing:1.280000pt;}
.ls58{letter-spacing:1.430400pt;}
.ls6{letter-spacing:1.920000pt;}
.ls4e{letter-spacing:2.069760pt;}
.ls51{letter-spacing:2.070400pt;}
.ls50{letter-spacing:2.088320pt;}
.ls57{letter-spacing:2.095360pt;}
.ls29{letter-spacing:2.560000pt;}
.ls2d{letter-spacing:2.566400pt;}
.ls59{letter-spacing:2.702720pt;}
.ls5a{letter-spacing:2.710400pt;}
.ls5b{letter-spacing:2.721920pt;}
.ls56{letter-spacing:2.735360pt;}
.ls23{letter-spacing:3.200000pt;}
.ls38{letter-spacing:3.840000pt;}
.lsb{letter-spacing:4.480000pt;}
.ls2{letter-spacing:5.120000pt;}
.ls5d{letter-spacing:5.760000pt;}
.ls55{letter-spacing:6.400000pt;}
.ls24{letter-spacing:7.040000pt;}
.ls3c{letter-spacing:7.680000pt;}
.ls30{letter-spacing:7.908561pt;}
.ls32{letter-spacing:8.241823pt;}
.lsc{letter-spacing:8.320000pt;}
.ls3f{letter-spacing:8.960000pt;}
.ls25{letter-spacing:10.240000pt;}
.ls8{letter-spacing:11.520000pt;}
.ls2e{letter-spacing:11.526400pt;}
.ls21{letter-spacing:17.280000pt;}
.ls3b{letter-spacing:17.920000pt;}
.ls20{letter-spacing:18.688000pt;}
.ls4c{letter-spacing:19.200000pt;}
.lsf{letter-spacing:19.840000pt;}
.ls2a{letter-spacing:24.320000pt;}
.ls4d{letter-spacing:26.240000pt;}
.ls39{letter-spacing:28.160000pt;}
.ls5e{letter-spacing:29.440000pt;}
.ls6d{letter-spacing:55.040000pt;}
.ls6a{letter-spacing:55.680000pt;}
.ls6c{letter-spacing:88.960000pt;}
.ls69{letter-spacing:89.600000pt;}
.ls40{letter-spacing:142.365589pt;}
.ls42{letter-spacing:145.128820pt;}
.ls44{letter-spacing:150.067548pt;}
.ls43{letter-spacing:156.354704pt;}
.ls1e{letter-spacing:176.000000pt;}
.ls49{letter-spacing:181.296640pt;}
.ls4a{letter-spacing:520.355327pt;}
.ls41{letter-spacing:623.213058pt;}
.ls5f{letter-spacing:752.000000pt;}
.ls4b{letter-spacing:1312.195528pt;}
.wsc7{word-spacing:-58.880000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1{word-spacing:-18.420480pt;}
.ws5c{word-spacing:-17.152000pt;}
.wsac{word-spacing:-16.768000pt;}
.ws3e{word-spacing:-16.640000pt;}
.ws90{word-spacing:-16.622267pt;}
.ws8{word-spacing:-16.512000pt;}
.ws3d{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.384000pt;}
.wsd{word-spacing:-16.256000pt;}
.ws5b{word-spacing:-16.192000pt;}
.ws3b{word-spacing:-16.128000pt;}
.ws5d{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws93{word-spacing:-15.971114pt;}
.ws5a{word-spacing:-15.936000pt;}
.ws8c{word-spacing:-15.908122pt;}
.ws7{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws8b{word-spacing:-15.781867pt;}
.ws92{word-spacing:-15.781733pt;}
.ws3{word-spacing:-15.744000pt;}
.ws5f{word-spacing:-15.680000pt;}
.ws88{word-spacing:-15.616000pt;}
.wsca{word-spacing:-15.488000pt;}
.ws76{word-spacing:-15.360000pt;}
.ws5e{word-spacing:-15.168000pt;}
.wsc2{word-spacing:-15.073280pt;}
.wsc0{word-spacing:-15.014400pt;}
.wsc8{word-spacing:-14.955520pt;}
.wsc3{word-spacing:-14.837760pt;}
.ws3c{word-spacing:-14.720000pt;}
.wsc9{word-spacing:-14.602240pt;}
.wsbd{word-spacing:-14.528000pt;}
.wsc4{word-spacing:-14.307840pt;}
.wsbe{word-spacing:-14.072320pt;}
.wsc1{word-spacing:-13.660160pt;}
.wse{word-spacing:-13.333333pt;}
.wsa{word-spacing:-11.063040pt;}
.ws9{word-spacing:-10.891520pt;}
.ws5{word-spacing:-10.720000pt;}
.ws9b{word-spacing:-10.462720pt;}
.wsb{word-spacing:-10.419840pt;}
.ws9c{word-spacing:-10.248320pt;}
.ws8e{word-spacing:-9.696267pt;}
.wsbf{word-spacing:-9.280000pt;}
.ws8a{word-spacing:-9.206000pt;}
.wscd{word-spacing:-3.968000pt;}
.ws6e{word-spacing:-3.840000pt;}
.ws58{word-spacing:-3.584000pt;}
.ws85{word-spacing:-3.328000pt;}
.ws45{word-spacing:-3.200000pt;}
.wsab{word-spacing:-2.944000pt;}
.ws61{word-spacing:-2.688000pt;}
.ws62{word-spacing:-2.560000pt;}
.wsb5{word-spacing:-2.368000pt;}
.wsaf{word-spacing:-2.304000pt;}
.ws6f{word-spacing:-2.048000pt;}
.ws83{word-spacing:-1.984000pt;}
.ws43{word-spacing:-1.920000pt;}
.ws47{word-spacing:-1.728000pt;}
.ws42{word-spacing:-1.664000pt;}
.ws4a{word-spacing:-1.408000pt;}
.ws49{word-spacing:-1.280000pt;}
.ws11{word-spacing:-1.123200pt;}
.ws71{word-spacing:-1.024000pt;}
.ws65{word-spacing:-0.768000pt;}
.wsae{word-spacing:-0.704000pt;}
.wsc6{word-spacing:-0.647680pt;}
.ws3f{word-spacing:-0.640000pt;}
.wsf{word-spacing:-0.449280pt;}
.wsb8{word-spacing:-0.448000pt;}
.ws6b{word-spacing:-0.384000pt;}
.wsaa{word-spacing:-0.343040pt;}
.ws7a{word-spacing:-0.256000pt;}
.ws98{word-spacing:-0.214400pt;}
.ws69{word-spacing:-0.192000pt;}
.ws9f{word-spacing:-0.189382pt;}
.ws15{word-spacing:-0.171520pt;}
.ws1f{word-spacing:-0.128000pt;}
.wsc5{word-spacing:-0.117760pt;}
.ws70{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws86{word-spacing:0.064000pt;}
.ws10{word-spacing:0.074880pt;}
.ws14{word-spacing:0.128000pt;}
.ws75{word-spacing:0.128640pt;}
.ws13{word-spacing:0.149760pt;}
.ws3a{word-spacing:0.192000pt;}
.ws1a{word-spacing:0.256000pt;}
.wscc{word-spacing:0.294400pt;}
.ws12{word-spacing:0.299520pt;}
.ws74{word-spacing:0.320000pt;}
.ws16{word-spacing:0.384000pt;}
.wscb{word-spacing:0.412160pt;}
.ws60{word-spacing:0.512000pt;}
.ws2e{word-spacing:0.640000pt;}
.ws73{word-spacing:0.832000pt;}
.ws2d{word-spacing:0.896000pt;}
.ws26{word-spacing:1.152000pt;}
.wsbc{word-spacing:1.216000pt;}
.ws27{word-spacing:1.280000pt;}
.ws84{word-spacing:1.472000pt;}
.ws78{word-spacing:1.536000pt;}
.ws59{word-spacing:1.792000pt;}
.ws21{word-spacing:1.920000pt;}
.ws22{word-spacing:2.176000pt;}
.ws87{word-spacing:2.432000pt;}
.ws44{word-spacing:2.560000pt;}
.wsb6{word-spacing:2.688000pt;}
.wsce{word-spacing:2.752000pt;}
.ws63{word-spacing:2.816000pt;}
.ws46{word-spacing:3.200000pt;}
.ws50{word-spacing:3.456000pt;}
.ws53{word-spacing:3.712000pt;}
.ws2f{word-spacing:3.840000pt;}
.ws30{word-spacing:4.096000pt;}
.ws23{word-spacing:4.352000pt;}
.ws25{word-spacing:4.480000pt;}
.wsb3{word-spacing:4.631040pt;}
.wsb7{word-spacing:4.672000pt;}
.ws24{word-spacing:4.736000pt;}
.ws64{word-spacing:4.992000pt;}
.ws19{word-spacing:5.120000pt;}
.ws17{word-spacing:5.376000pt;}
.wsb9{word-spacing:5.632000pt;}
.ws82{word-spacing:5.760000pt;}
.ws18{word-spacing:6.016000pt;}
.wsb2{word-spacing:6.272000pt;}
.wsb1{word-spacing:6.400000pt;}
.wsb4{word-spacing:6.656000pt;}
.ws55{word-spacing:6.912000pt;}
.ws4e{word-spacing:7.040000pt;}
.wsa9{word-spacing:7.232000pt;}
.ws4d{word-spacing:7.296000pt;}
.ws54{word-spacing:7.680000pt;}
.wsad{word-spacing:7.936000pt;}
.ws31{word-spacing:8.192000pt;}
.ws33{word-spacing:8.320000pt;}
.ws81{word-spacing:8.576000pt;}
.ws79{word-spacing:8.832000pt;}
.ws95{word-spacing:8.960000pt;}
.ws32{word-spacing:9.216000pt;}
.ws6c{word-spacing:9.600000pt;}
.ws6d{word-spacing:9.856000pt;}
.wsb0{word-spacing:10.112000pt;}
.ws1e{word-spacing:10.240000pt;}
.ws20{word-spacing:10.496000pt;}
.ws6a{word-spacing:10.752000pt;}
.ws48{word-spacing:10.880000pt;}
.ws4f{word-spacing:11.136000pt;}
.ws2a{word-spacing:11.392000pt;}
.ws2c{word-spacing:11.520000pt;}
.ws2b{word-spacing:11.648000pt;}
.ws72{word-spacing:11.776000pt;}
.ws99{word-spacing:12.160000pt;}
.ws9e{word-spacing:12.416000pt;}
.ws7d{word-spacing:12.800000pt;}
.wsa4{word-spacing:13.056000pt;}
.wsa8{word-spacing:13.312000pt;}
.ws41{word-spacing:13.440000pt;}
.ws40{word-spacing:13.568000pt;}
.ws7e{word-spacing:13.696000pt;}
.ws77{word-spacing:13.952000pt;}
.ws1b{word-spacing:14.080000pt;}
.ws7c{word-spacing:14.336000pt;}
.ws56{word-spacing:14.720000pt;}
.ws57{word-spacing:14.976000pt;}
.ws34{word-spacing:15.872000pt;}
.ws36{word-spacing:16.000000pt;}
.ws35{word-spacing:16.064000pt;}
.ws37{word-spacing:16.256000pt;}
.ws97{word-spacing:16.896000pt;}
.ws96{word-spacing:17.280000pt;}
.ws4b{word-spacing:17.920000pt;}
.ws4c{word-spacing:18.176000pt;}
.wsa0{word-spacing:19.200000pt;}
.ws39{word-spacing:19.456000pt;}
.ws38{word-spacing:19.840000pt;}
.ws9d{word-spacing:20.096000pt;}
.ws51{word-spacing:20.480000pt;}
.ws52{word-spacing:20.736000pt;}
.ws7b{word-spacing:20.992000pt;}
.ws1c{word-spacing:22.272000pt;}
.ws1d{word-spacing:22.400000pt;}
.ws28{word-spacing:23.552000pt;}
.ws29{word-spacing:23.936000pt;}
.ws68{word-spacing:24.192000pt;}
.ws66{word-spacing:24.512000pt;}
.ws67{word-spacing:24.576000pt;}
.wsa1{word-spacing:26.112000pt;}
.wsa3{word-spacing:26.240000pt;}
.wsa2{word-spacing:26.496000pt;}
.ws80{word-spacing:27.392000pt;}
.ws7f{word-spacing:28.416000pt;}
.wsbb{word-spacing:28.800000pt;}
.wsba{word-spacing:29.440000pt;}
.wsa6{word-spacing:38.400000pt;}
.wsa7{word-spacing:38.592000pt;}
.wsa5{word-spacing:38.656000pt;}
.ws8d{word-spacing:211.652367pt;}
.ws8f{word-spacing:279.187591pt;}
.ws94{word-spacing:431.377030pt;}
.ws89{word-spacing:466.250304pt;}
.ws91{word-spacing:471.820030pt;}
.ws9a{word-spacing:887.558229pt;}
._1c{margin-left:-306.894179pt;}
._26{margin-left:-305.913119pt;}
._17{margin-left:-227.624493pt;}
._22{margin-left:-220.881140pt;}
._2a{margin-left:-179.210641pt;}
._13{margin-left:-176.000000pt;}
._24{margin-left:-173.662194pt;}
._1b{margin-left:-171.072804pt;}
._19{margin-left:-167.784915pt;}
._20{margin-left:-162.998191pt;}
._1a{margin-left:-158.544633pt;}
._1d{margin-left:-156.966446pt;}
._25{margin-left:-146.012597pt;}
._1f{margin-left:-143.876569pt;}
._1e{margin-left:-140.198213pt;}
._23{margin-left:-114.386003pt;}
._21{margin-left:-105.485106pt;}
._16{margin-left:-102.705758pt;}
._18{margin-left:-97.773925pt;}
._27{margin-left:-76.160000pt;}
._15{margin-left:-27.618000pt;}
._14{margin-left:-18.038784pt;}
._30{margin-left:-8.704000pt;}
._9{margin-left:-4.224000pt;}
._d{margin-left:-3.109888pt;}
._0{margin-left:-1.752192pt;}
._1{width:1.317888pt;}
._5{width:2.250496pt;}
._2{width:3.349760pt;}
._c{width:4.489984pt;}
._4{width:5.474688pt;}
._8{width:7.220864pt;}
._6{width:8.126720pt;}
._b{width:9.792000pt;}
._7{width:10.816000pt;}
._3{width:11.736192pt;}
._29{width:12.634112pt;}
._2d{width:13.923840pt;}
._2b{width:19.294592pt;}
._28{width:20.288000pt;}
._2f{width:21.376000pt;}
._a{width:23.898112pt;}
._12{width:27.392000pt;}
._2c{width:39.140608pt;}
._34{width:60.273920pt;}
._e{width:91.073597pt;}
._45{width:92.672000pt;}
._46{width:93.952000pt;}
._3b{width:96.512000pt;}
._35{width:99.072000pt;}
._4d{width:100.352000pt;}
._3e{width:101.848192pt;}
._4c{width:115.904000pt;}
._41{width:117.632000pt;}
._4a{width:125.652480pt;}
._40{width:127.872000pt;}
._3d{width:129.984000pt;}
._11{width:134.260224pt;}
._4e{width:135.744000pt;}
._3f{width:138.944000pt;}
._4b{width:144.600192pt;}
._48{width:147.328000pt;}
._3a{width:149.184000pt;}
._36{width:158.720000pt;}
._3c{width:159.872000pt;}
._49{width:164.352000pt;}
._31{width:166.177024pt;}
._f{width:168.477824pt;}
._33{width:172.975070pt;}
._10{width:176.000000pt;}
._42{width:177.920000pt;}
._47{width:189.312000pt;}
._44{width:190.656000pt;}
._43{width:195.200000pt;}
._37{width:197.760000pt;}
._39{width:202.944000pt;}
._38{width:214.912000pt;}
._32{width:286.678094pt;}
._2e{width:752.000000pt;}
.fs8{font-size:36.824000pt;}
.fs12{font-size:37.120000pt;}
.fsc{font-size:38.785067pt;}
.fsa{font-size:38.869869pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:45.199489pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs10{font-size:58.880000pt;}
.fs11{font-size:62.064970pt;}
.fsf{font-size:63.126933pt;}
.fs9{font-size:63.127467pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:66.489067pt;}
.fs4{font-size:67.461923pt;}
.fs1{font-size:74.880000pt;}
.fsb{font-size:87.786133pt;}
.fse{font-size:122.965867pt;}
.fs7{font-size:122.966400pt;}
.y0{bottom:0.000000pt;}
.y107{bottom:3.520000pt;}
.y118{bottom:3.840000pt;}
.y96{bottom:4.155467pt;}
.y111{bottom:4.800000pt;}
.y8e{bottom:5.260667pt;}
.yc3{bottom:5.263733pt;}
.yc4{bottom:5.263867pt;}
.y97{bottom:8.310933pt;}
.y95{bottom:8.397733pt;}
.y8d{bottom:9.206133pt;}
.ya5{bottom:9.206400pt;}
.yb4{bottom:9.207067pt;}
.yb5{bottom:9.207200pt;}
.yb6{bottom:9.207333pt;}
.yb7{bottom:9.207467pt;}
.yb8{bottom:9.207600pt;}
.yb9{bottom:9.207733pt;}
.yba{bottom:9.207867pt;}
.ybb{bottom:9.208133pt;}
.ybc{bottom:9.208267pt;}
.ybd{bottom:9.208400pt;}
.ybe{bottom:9.208533pt;}
.ybf{bottom:9.208667pt;}
.yc0{bottom:9.208800pt;}
.yc1{bottom:9.208933pt;}
.yc7{bottom:9.209733pt;}
.yc8{bottom:9.209867pt;}
.yc9{bottom:9.210000pt;}
.yca{bottom:9.210133pt;}
.ycb{bottom:9.210267pt;}
.ycc{bottom:9.210400pt;}
.y8b{bottom:9.370533pt;}
.ya3{bottom:9.370667pt;}
.yb0{bottom:9.370933pt;}
.ya7{bottom:16.274125pt;}
.y8f{bottom:16.275067pt;}
.yc6{bottom:16.278533pt;}
.y8c{bottom:18.740933pt;}
.y90{bottom:18.741067pt;}
.ya4{bottom:18.741200pt;}
.ya6{bottom:18.741333pt;}
.yb1{bottom:18.741600pt;}
.yb2{bottom:18.741733pt;}
.yb3{bottom:18.741867pt;}
.yc2{bottom:18.743867pt;}
.yc5{bottom:18.744400pt;}
.y117{bottom:22.240000pt;}
.y24{bottom:51.840000pt;}
.y1{bottom:70.240000pt;}
.y46{bottom:102.720000pt;}
.y1f{bottom:103.840000pt;}
.ya9{bottom:108.320000pt;}
.y69{bottom:112.960000pt;}
.ye0{bottom:113.440000pt;}
.ye7{bottom:123.200000pt;}
.y4a{bottom:125.440000pt;}
.y45{bottom:130.400000pt;}
.y4b{bottom:130.720000pt;}
.y1e{bottom:131.360000pt;}
.yfd{bottom:131.840000pt;}
.y85{bottom:135.840000pt;}
.ya2{bottom:136.413333pt;}
.ydf{bottom:142.240000pt;}
.y68{bottom:144.960000pt;}
.ya8{bottom:145.760000pt;}
.ye6{bottom:151.200000pt;}
.y48{bottom:154.880000pt;}
.y44{bottom:157.920000pt;}
.y1d{bottom:159.040000pt;}
.yfc{bottom:159.360000pt;}
.y49{bottom:160.160000pt;}
.y84{bottom:167.840000pt;}
.y126{bottom:168.160000pt;}
.yde{bottom:170.400000pt;}
.ya1{bottom:172.320000pt;}
.y67{bottom:176.960000pt;}
.ye5{bottom:180.160000pt;}
.y47{bottom:184.320000pt;}
.y43{bottom:185.600000pt;}
.y1c{bottom:186.560000pt;}
.yfb{bottom:187.040000pt;}
.y125{bottom:187.680000pt;}
.ydd{bottom:199.360000pt;}
.y83{bottom:199.840000pt;}
.ya0{bottom:204.320000pt;}
.yfa{bottom:205.760000pt;}
.ye4{bottom:207.680000pt;}
.y66{bottom:208.960000pt;}
.y42{bottom:213.120000pt;}
.y1b{bottom:214.240000pt;}
.ydc{bottom:226.880000pt;}
.y82{bottom:231.840000pt;}
.y124{bottom:233.920000pt;}
.ye3{bottom:234.558240pt;}
.y9f{bottom:236.320000pt;}
.yf9{bottom:237.760000pt;}
.y41{bottom:240.800000pt;}
.y65{bottom:240.960000pt;}
.y1a{bottom:241.440000pt;}
.ydb{bottom:254.560000pt;}
.y123{bottom:260.480000pt;}
.y81{bottom:263.840000pt;}
.ye2{bottom:265.280000pt;}
.y40{bottom:268.320000pt;}
.yf8{bottom:269.760000pt;}
.y64{bottom:272.960000pt;}
.y13c{bottom:278.400000pt;}
.y122{bottom:280.160000pt;}
.yda{bottom:282.080000pt;}
.ye1{bottom:294.720000pt;}
.y80{bottom:295.840000pt;}
.y3f{bottom:296.000000pt;}
.y19{bottom:296.960000pt;}
.y9e{bottom:300.320000pt;}
.yf7{bottom:301.760000pt;}
.y121{bottom:303.205760pt;}
.y63{bottom:304.960000pt;}
.yd9{bottom:309.760000pt;}
.y120{bottom:321.120000pt;}
.y3e{bottom:323.520000pt;}
.y7f{bottom:327.840000pt;}
.y18{bottom:328.960000pt;}
.y9d{bottom:332.320000pt;}
.yf6{bottom:333.440000pt;}
.y62{bottom:336.960000pt;}
.yd8{bottom:337.280000pt;}
.y11f{bottom:338.880000pt;}
.y10e{bottom:340.800133pt;}
.y3d{bottom:351.200000pt;}
.y101{bottom:356.320000pt;}
.y10d{bottom:359.200133pt;}
.y7e{bottom:359.840000pt;}
.y9c{bottom:364.320000pt;}
.yd7{bottom:364.960000pt;}
.yf5{bottom:365.440000pt;}
.y61{bottom:368.960000pt;}
.y11e{bottom:370.880000pt;}
.y3c{bottom:378.720000pt;}
.y100{bottom:388.320000pt;}
.y10c{bottom:389.280000pt;}
.y7d{bottom:391.840000pt;}
.yd6{bottom:392.480000pt;}
.y17{bottom:392.960000pt;}
.y9b{bottom:396.320000pt;}
.yf4{bottom:397.440000pt;}
.y60{bottom:400.960000pt;}
.y11d{bottom:403.032960pt;}
.y3b{bottom:406.240000pt;}
.yd5{bottom:420.160000pt;}
.y11c{bottom:420.800000pt;}
.y10b{bottom:421.280000pt;}
.y7c{bottom:423.840000pt;}
.y16{bottom:424.960000pt;}
.y9a{bottom:428.320000pt;}
.yf3{bottom:429.440000pt;}
.y5f{bottom:432.960000pt;}
.y3a{bottom:433.920000pt;}
.y11b{bottom:443.040000pt;}
.yd4{bottom:447.680000pt;}
.yff{bottom:447.840000pt;}
.y10a{bottom:453.280000pt;}
.y7b{bottom:455.840000pt;}
.y15{bottom:456.960000pt;}
.y99{bottom:460.320000pt;}
.y39{bottom:461.440000pt;}
.yf2{bottom:461.760000pt;}
.y11a{bottom:462.560000pt;}
.y5e{bottom:464.960000pt;}
.yd3{bottom:475.360000pt;}
.y116{bottom:481.600000pt;}
.y136{bottom:483.040000pt;}
.y109{bottom:485.280000pt;}
.y14{bottom:487.680000pt;}
.y7a{bottom:487.840000pt;}
.y13{bottom:488.960000pt;}
.y38{bottom:489.120000pt;}
.y98{bottom:492.320000pt;}
.yf1{bottom:493.760000pt;}
.y115{bottom:494.400000pt;}
.y119{bottom:494.720000pt;}
.y5d{bottom:496.960000pt;}
.y135{bottom:501.440000pt;}
.yd2{bottom:502.880000pt;}
.y37{bottom:516.640000pt;}
.y138{bottom:517.440000pt;}
.y106{bottom:518.400000pt;}
.y114{bottom:519.040000pt;}
.y79{bottom:519.840000pt;}
.y94{bottom:520.413333pt;}
.y12{bottom:520.960000pt;}
.yf0{bottom:525.760000pt;}
.y93{bottom:528.480000pt;}
.y5c{bottom:528.960000pt;}
.yd1{bottom:530.400000pt;}
.y137{bottom:532.000000pt;}
.y134{bottom:533.440000pt;}
.y36{bottom:544.320000pt;}
.y113{bottom:545.760000pt;}
.y78{bottom:551.840000pt;}
.y11{bottom:552.960000pt;}
.y108{bottom:553.600000pt;}
.y105{bottom:553.920000pt;}
.y92{bottom:556.320000pt;}
.yef{bottom:557.760000pt;}
.yd0{bottom:558.080000pt;}
.y110{bottom:565.280000pt;}
.y133{bottom:565.440000pt;}
.y112{bottom:568.800000pt;}
.y5b{bottom:569.760000pt;}
.y35{bottom:571.840000pt;}
.y13b{bottom:577.120000pt;}
.y77{bottom:583.840000pt;}
.y8a{bottom:584.413333pt;}
.y10{bottom:584.960000pt;}
.ycf{bottom:585.600000pt;}
.y10f{bottom:588.160000pt;}
.y104{bottom:588.160133pt;}
.yee{bottom:589.760000pt;}
.y91{bottom:593.760000pt;}
.y132{bottom:597.440000pt;}
.y5a{bottom:597.760000pt;}
.y34{bottom:599.520000pt;}
.y13a{bottom:609.120000pt;}
.yce{bottom:613.280000pt;}
.y76{bottom:615.840000pt;}
.yf{bottom:616.960000pt;}
.y103{bottom:620.160000pt;}
.y89{bottom:620.320000pt;}
.yed{bottom:621.760000pt;}
.y59{bottom:625.280000pt;}
.y33{bottom:627.040000pt;}
.y131{bottom:629.440000pt;}
.yaf{bottom:636.880000pt;}
.y139{bottom:637.280000pt;}
.ycd{bottom:646.240000pt;}
.y75{bottom:647.520000pt;}
.ye{bottom:648.960000pt;}
.y102{bottom:652.160000pt;}
.y88{bottom:652.320000pt;}
.y58{bottom:652.960000pt;}
.yec{bottom:653.760000pt;}
.y32{bottom:654.720000pt;}
.y130{bottom:660.160800pt;}
.yae{bottom:679.040000pt;}
.y74{bottom:679.840000pt;}
.y57{bottom:680.480000pt;}
.yd{bottom:680.640000pt;}
.y31{bottom:682.240000pt;}
.y87{bottom:684.000000pt;}
.yeb{bottom:685.760000pt;}
.y12f{bottom:693.440000pt;}
.yad{bottom:706.720000pt;}
.y56{bottom:708.160000pt;}
.y30{bottom:709.920000pt;}
.y73{bottom:711.840000pt;}
.yea{bottom:717.440000pt;}
.y86{bottom:725.440000pt;}
.yac{bottom:734.240000pt;}
.y55{bottom:735.680000pt;}
.y2f{bottom:737.440000pt;}
.y72{bottom:743.840000pt;}
.yc{bottom:744.960000pt;}
.ye9{bottom:749.440000pt;}
.y12e{bottom:757.440000pt;}
.yab{bottom:761.920000pt;}
.yb{bottom:763.360000pt;}
.y2e{bottom:765.120000pt;}
.y71{bottom:775.840000pt;}
.ya{bottom:787.840000pt;}
.yaa{bottom:789.440000pt;}
.y54{bottom:790.880000pt;}
.y2d{bottom:792.640000pt;}
.y70{bottom:807.840000pt;}
.y53{bottom:818.400000pt;}
.y9{bottom:818.880000pt;}
.y2c{bottom:820.320000pt;}
.y12d{bottom:821.440000pt;}
.y6f{bottom:839.840000pt;}
.y8{bottom:843.840000pt;}
.y52{bottom:846.080000pt;}
.y2b{bottom:847.840000pt;}
.y12c{bottom:852.160000pt;}
.y7{bottom:856.640000pt;}
.y6e{bottom:871.840000pt;}
.y51{bottom:873.600000pt;}
.y2a{bottom:875.520000pt;}
.y6{bottom:881.760000pt;}
.y12b{bottom:885.440000pt;}
.y5{bottom:894.560000pt;}
.y50{bottom:901.280000pt;}
.y29{bottom:903.040000pt;}
.y6d{bottom:903.840000pt;}
.y12a{bottom:917.440000pt;}
.y4{bottom:919.520000pt;}
.y4f{bottom:928.800000pt;}
.y28{bottom:930.720000pt;}
.y6c{bottom:935.840000pt;}
.y129{bottom:949.440000pt;}
.y3{bottom:950.560000pt;}
.y4e{bottom:956.480000pt;}
.ye8{bottom:956.960000pt;}
.y27{bottom:958.240000pt;}
.y6b{bottom:967.840000pt;}
.y128{bottom:981.120000pt;}
.y4d{bottom:984.000000pt;}
.y26{bottom:985.920000pt;}
.y127{bottom:999.520000pt;}
.y6a{bottom:999.840000pt;}
.y2{bottom:1010.720000pt;}
.y4c{bottom:1012.160000pt;}
.yfe{bottom:1013.120000pt;}
.y25{bottom:1013.440000pt;}
.y23{bottom:1054.114667pt;}
.y22{bottom:1070.114667pt;}
.y21{bottom:1086.114667pt;}
.y20{bottom:1102.114667pt;}
.h2b{height:18.400000pt;}
.h2e{height:18.401333pt;}
.h17{height:24.933333pt;}
.h14{height:25.568227pt;}
.h16{height:26.988747pt;}
.hf{height:28.933333pt;}
.hc{height:31.383629pt;}
.h2a{height:31.998667pt;}
.h29{height:32.000000pt;}
.h1f{height:36.122762pt;}
.h11{height:36.140742pt;}
.h2f{height:36.800000pt;}
.h9{height:37.057292pt;}
.h2d{height:37.410000pt;}
.h19{height:38.046484pt;}
.h30{height:39.243750pt;}
.h5{height:42.084375pt;}
.h27{height:43.093939pt;}
.h15{height:43.831669pt;}
.he{height:44.437500pt;}
.h7{height:46.841238pt;}
.h25{height:57.787500pt;}
.h2c{height:59.340000pt;}
.h28{height:60.733125pt;}
.h18{height:60.953067pt;}
.h1e{height:61.925332pt;}
.h12{height:61.956156pt;}
.hd{height:62.781250pt;}
.h2{height:62.812500pt;}
.h26{height:64.000000pt;}
.h6{height:64.500000pt;}
.h1a{height:65.255383pt;}
.hb{height:66.383438pt;}
.h24{height:66.383971pt;}
.h4{height:66.404375pt;}
.ha{height:66.750000pt;}
.h8{height:67.932500pt;}
.h13{height:69.625827pt;}
.h20{height:69.626360pt;}
.h21{height:71.531415pt;}
.h1c{height:74.262495pt;}
.h3{height:75.465000pt;}
.h1b{height:85.379620pt;}
.h10{height:85.379991pt;}
.h1d{height:85.380524pt;}
.h22{height:793.760000pt;}
.h23{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:47.200000pt;}
.wb{width:56.640000pt;}
.w10{width:65.598667pt;}
.w1a{width:75.040000pt;}
.wd{width:75.680000pt;}
.w17{width:81.918667pt;}
.w11{width:84.318667pt;}
.w1b{width:84.320000pt;}
.w1d{width:91.360000pt;}
.w14{width:91.841333pt;}
.w1e{width:92.160000pt;}
.w20{width:93.918667pt;}
.w16{width:94.720000pt;}
.w13{width:97.601333pt;}
.w1f{width:99.678667pt;}
.w15{width:100.640000pt;}
.we{width:101.120000pt;}
.w18{width:101.441333pt;}
.w1c{width:101.598667pt;}
.w12{width:103.200000pt;}
.w3{width:104.000000pt;}
.w19{width:104.800000pt;}
.wf{width:104.958667pt;}
.w8{width:113.440000pt;}
.w9{width:132.320000pt;}
.wa{width:170.080000pt;}
.w4{width:211.000000pt;}
.w2{width:212.000000pt;}
.w5{width:368.934667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w6{width:1122.560000pt;}
.w7{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x4f{left:7.200000pt;}
.x74{left:8.480000pt;}
.x2f{left:9.656533pt;}
.x18{left:10.999867pt;}
.x65{left:12.320000pt;}
.x73{left:13.280000pt;}
.x9{left:14.325333pt;}
.x56{left:15.520000pt;}
.x34{left:17.398400pt;}
.x5f{left:19.040000pt;}
.x5a{left:20.160000pt;}
.x69{left:21.440000pt;}
.x50{left:22.720000pt;}
.x1e{left:23.931867pt;}
.x59{left:24.960000pt;}
.x52{left:26.880000pt;}
.x5b{left:32.960000pt;}
.x3d{left:33.880933pt;}
.x5d{left:36.640000pt;}
.x4b{left:37.920000pt;}
.x54{left:39.200000pt;}
.x2e{left:45.118000pt;}
.x5e{left:48.320000pt;}
.x61{left:50.560000pt;}
.x2d{left:54.108267pt;}
.x5c{left:58.880000pt;}
.x33{left:61.850133pt;}
.x36{left:74.086933pt;}
.x20{left:85.048533pt;}
.x1f{left:93.912267pt;}
.x60{left:95.200000pt;}
.x49{left:101.760000pt;}
.x6c{left:102.880000pt;}
.x1a{left:104.124800pt;}
.x3c{left:110.131333pt;}
.x6a{left:111.360000pt;}
.x3{left:113.440000pt;}
.x2{left:114.560000pt;}
.x2c{left:120.619333pt;}
.x19{left:122.708133pt;}
.x1c{left:127.874800pt;}
.x2b{left:129.609600pt;}
.x22{left:135.255333pt;}
.x16{left:137.291600pt;}
.x17{left:139.249867pt;}
.x44{left:141.920000pt;}
.x8{left:146.720000pt;}
.x1b{left:148.999867pt;}
.x11{left:157.440000pt;}
.xa{left:160.640000pt;}
.x15{left:161.546667pt;}
.x12{left:167.200000pt;}
.x3b{left:172.646800pt;}
.x13{left:175.360000pt;}
.x14{left:184.480000pt;}
.x25{left:186.400000pt;}
.x26{left:196.160000pt;}
.x23{left:197.812400pt;}
.x4{left:199.840000pt;}
.x5{left:209.760000pt;}
.x4a{left:226.880000pt;}
.x3a{left:232.581600pt;}
.x32{left:245.567200pt;}
.x3f{left:253.600000pt;}
.x38{left:259.177600pt;}
.x21{left:260.640000pt;}
.x40{left:263.520000pt;}
.x31{left:268.875200pt;}
.x37{left:277.740800pt;}
.x35{left:284.067200pt;}
.x27{left:291.891733pt;}
.x2a{left:293.848133pt;}
.xf{left:296.000000pt;}
.x39{left:303.587733pt;}
.x30{left:316.323733pt;}
.xd{left:320.960000pt;}
.x51{left:340.320000pt;}
.x48{left:346.400000pt;}
.x29{left:349.579200pt;}
.x10{left:353.440000pt;}
.x28{left:356.571600pt;}
.xe{left:358.720000pt;}
.x62{left:368.960000pt;}
.x24{left:372.480000pt;}
.x1d{left:373.440000pt;}
.x6d{left:378.400000pt;}
.x4c{left:380.640000pt;}
.x63{left:402.080000pt;}
.x64{left:454.080000pt;}
.xb{left:461.440000pt;}
.x6e{left:463.520000pt;}
.xc{left:470.240000pt;}
.x3e{left:482.400000pt;}
.x53{left:510.400000pt;}
.x4d{left:557.760000pt;}
.x6f{left:565.760000pt;}
.x41{left:607.040000pt;}
.x55{left:614.400000pt;}
.x42{left:620.960000pt;}
.x6{left:634.720000pt;}
.x7{left:644.480000pt;}
.x66{left:656.320000pt;}
.x70{left:657.760000pt;}
.x43{left:664.320000pt;}
.x57{left:671.040000pt;}
.x1{left:672.320000pt;}
.x75{left:680.320000pt;}
.x58{left:718.240000pt;}
.x4e{left:740.320000pt;}
.x67{left:748.800000pt;}
.x71{left:750.560000pt;}
.x46{left:849.920000pt;}
.x72{left:850.880000pt;}
.x47{left:859.840000pt;}
.x68{left:945.440000pt;}
.x6b{left:960.320000pt;}
.x45{left:1012.000000pt;}
}




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