
    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_55918b4ee519d184041be9dc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.776855;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_999099e561eaaaafb204fd96.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960938;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_2ef4ff092e5a52f36623e778.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_0ee6fe8b4274812459c818f8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0dd596a2d5c6b4de1cb281e8.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_76e071ddaa4142919112de5e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a746437c0f33f713dce6558e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9ba709f7e64c0fd66c91165e.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.549805;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_d8a4987151095283db9ef8de.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.931152;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_c394733f2a587298a8f69060.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f08084e5fddf9fdb916e6282.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-62.640000px;}
.vc{vertical-align:-26.640000px;}
.v8{vertical-align:-14.400000px;}
.v1{vertical-align:-9.360000px;}
.vf{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:2.880000px;}
.vd{vertical-align:14.400000px;}
.v10{vertical-align:23.760000px;}
.v7{vertical-align:26.640000px;}
.v2{vertical-align:33.840000px;}
.v11{vertical-align:41.040000px;}
.v3{vertical-align:48.240000px;}
.v6{vertical-align:54.720000px;}
.v9{vertical-align:62.640000px;}
.vb{vertical-align:69.120000px;}
.v5{vertical-align:72.720000px;}
.va{vertical-align:102.960000px;}
.ls76{letter-spacing:-2.160000px;}
.ls35{letter-spacing:-1.656000px;}
.ls7d{letter-spacing:-1.512000px;}
.ls1b{letter-spacing:-1.440000px;}
.ls22{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.926640px;}
.ls6{letter-spacing:-0.842400px;}
.ls7e{letter-spacing:-0.792000px;}
.ls8{letter-spacing:-0.720000px;}
.ls77{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.240480px;}
.ls17{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls74{letter-spacing:0.051120px;}
.ls1c{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls60{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.288000px;}
.ls7f{letter-spacing:0.289440px;}
.ls15{letter-spacing:0.336960px;}
.ls18{letter-spacing:0.360000px;}
.ls75{letter-spacing:0.385920px;}
.ls26{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.720000px;}
.ls43{letter-spacing:0.734400px;}
.ls31{letter-spacing:0.864000px;}
.ls2d{letter-spacing:1.224000px;}
.ls48{letter-spacing:1.296000px;}
.ls14{letter-spacing:1.440000px;}
.ls32{letter-spacing:1.728000px;}
.ls33{letter-spacing:1.800000px;}
.ls27{letter-spacing:1.872000px;}
.ls49{letter-spacing:1.944000px;}
.lsf{letter-spacing:2.160000px;}
.ls2f{letter-spacing:2.232000px;}
.ls8a{letter-spacing:2.298960px;}
.ls62{letter-spacing:2.304000px;}
.ls30{letter-spacing:2.376000px;}
.ls89{letter-spacing:2.422080px;}
.ls55{letter-spacing:2.448000px;}
.ls81{letter-spacing:2.468880px;}
.ls8c{letter-spacing:2.741760px;}
.ls5b{letter-spacing:2.801520px;}
.ls20{letter-spacing:2.880000px;}
.ls2c{letter-spacing:3.125520px;}
.ls5d{letter-spacing:3.197520px;}
.ls5e{letter-spacing:3.384000px;}
.ls44{letter-spacing:3.456000px;}
.ls67{letter-spacing:3.521520px;}
.ls23{letter-spacing:3.600000px;}
.ls6f{letter-spacing:3.641040px;}
.ls54{letter-spacing:3.917520px;}
.ls71{letter-spacing:3.939120px;}
.ls6d{letter-spacing:3.972960px;}
.lse{letter-spacing:4.320000px;}
.ls59{letter-spacing:4.361040px;}
.ls2e{letter-spacing:4.424400px;}
.ls57{letter-spacing:4.637520px;}
.ls50{letter-spacing:4.692960px;}
.ls19{letter-spacing:5.040000px;}
.ls56{letter-spacing:5.081040px;}
.ls36{letter-spacing:5.144400px;}
.lsd{letter-spacing:5.760000px;}
.ls7b{letter-spacing:6.132960px;}
.ls4f{letter-spacing:6.480000px;}
.ls70{letter-spacing:6.819120px;}
.ls86{letter-spacing:6.984000px;}
.ls7a{letter-spacing:7.200000px;}
.ls87{letter-spacing:7.560000px;}
.ls3d{letter-spacing:7.920000px;}
.ls1e{letter-spacing:8.640000px;}
.ls1a{letter-spacing:9.360000px;}
.ls88{letter-spacing:9.434880px;}
.ls73{letter-spacing:9.648000px;}
.ls80{letter-spacing:10.080000px;}
.ls13{letter-spacing:10.800000px;}
.ls8b{letter-spacing:11.381760px;}
.ls11{letter-spacing:11.520000px;}
.ls72{letter-spacing:11.527200px;}
.ls66{letter-spacing:11.880000px;}
.ls58{letter-spacing:12.240000px;}
.ls83{letter-spacing:12.600000px;}
.ls7c{letter-spacing:12.960000px;}
.ls3e{letter-spacing:13.680000px;}
.ls78{letter-spacing:13.968000px;}
.ls12{letter-spacing:14.400000px;}
.ls41{letter-spacing:15.120000px;}
.ls40{letter-spacing:15.127200px;}
.lsa{letter-spacing:15.840000px;}
.ls3b{letter-spacing:16.056000px;}
.ls25{letter-spacing:16.454880px;}
.ls3a{letter-spacing:16.848000px;}
.ls24{letter-spacing:17.280000px;}
.ls3f{letter-spacing:18.000000px;}
.ls52{letter-spacing:18.288000px;}
.ls28{letter-spacing:18.641520px;}
.ls34{letter-spacing:19.440000px;}
.ls53{letter-spacing:19.481040px;}
.ls38{letter-spacing:19.656000px;}
.ls2a{letter-spacing:19.872000px;}
.lsb{letter-spacing:20.160000px;}
.lsc{letter-spacing:20.167200px;}
.ls4b{letter-spacing:20.376000px;}
.ls6c{letter-spacing:20.592000px;}
.ls5f{letter-spacing:22.829040px;}
.ls42{letter-spacing:23.040000px;}
.ls63{letter-spacing:23.357520px;}
.ls45{letter-spacing:23.681520px;}
.ls5a{letter-spacing:23.801040px;}
.ls6e{letter-spacing:24.099120px;}
.ls51{letter-spacing:24.132960px;}
.ls4a{letter-spacing:24.536880px;}
.ls37{letter-spacing:24.584400px;}
.ls82{letter-spacing:25.200000px;}
.ls79{letter-spacing:28.080000px;}
.ls1f{letter-spacing:32.400000px;}
.ls2b{letter-spacing:34.056000px;}
.ls6a{letter-spacing:38.880000px;}
.ls64{letter-spacing:39.312000px;}
.ls84{letter-spacing:39.456000px;}
.ls65{letter-spacing:40.752000px;}
.ls39{letter-spacing:41.328000px;}
.ls46{letter-spacing:42.192000px;}
.ls4c{letter-spacing:43.121520px;}
.ls61{letter-spacing:70.272000px;}
.ls85{letter-spacing:71.712000px;}
.ls4d{letter-spacing:76.032000px;}
.ls47{letter-spacing:77.472000px;}
.ls68{letter-spacing:106.992000px;}
.ls5c{letter-spacing:118.512000px;}
.ls6b{letter-spacing:127.872000px;}
.ls29{letter-spacing:151.304400px;}
.ls3c{letter-spacing:260.352000px;}
.ls4e{letter-spacing:317.232000px;}
.ls69{letter-spacing:379.872000px;}
.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;}
}
.ws60{word-spacing:-72.288000px;}
.ws64{word-spacing:-72.144000px;}
.ws63{word-spacing:-72.072000px;}
.ws61{word-spacing:-72.000000px;}
.ws6d{word-spacing:-71.784000px;}
.ws0{word-spacing:-52.560000px;}
.ws62{word-spacing:-51.120000px;}
.ws1{word-spacing:-34.989840px;}
.ws90{word-spacing:-31.536000px;}
.ws8f{word-spacing:-31.248000px;}
.ws83{word-spacing:-31.104000px;}
.ws85{word-spacing:-30.528000px;}
.ws84{word-spacing:-30.456000px;}
.ws8e{word-spacing:-26.711280px;}
.ws3{word-spacing:-26.367120px;}
.ws4{word-spacing:-25.524720px;}
.ws2{word-spacing:-25.440480px;}
.ws10{word-spacing:-21.396960px;}
.ws5{word-spacing:-20.304000px;}
.ws6{word-spacing:-20.016000px;}
.ws7{word-spacing:-19.584000px;}
.ws8d{word-spacing:-18.432000px;}
.ws13{word-spacing:-18.288000px;}
.ws4d{word-spacing:-18.144000px;}
.ws3d{word-spacing:-18.072000px;}
.ws12{word-spacing:-18.000000px;}
.ws9f{word-spacing:-17.928000px;}
.ws91{word-spacing:-17.856000px;}
.ws8c{word-spacing:-17.784000px;}
.ws11{word-spacing:-17.712000px;}
.ws94{word-spacing:-17.568000px;}
.ws65{word-spacing:-17.280000px;}
.ws86{word-spacing:-17.064000px;}
.wsa0{word-spacing:-16.488000px;}
.ws5f{word-spacing:-16.344000px;}
.ws6e{word-spacing:-15.840000px;}
.ws93{word-spacing:-12.445920px;}
.wsbb{word-spacing:-12.349440px;}
.ws92{word-spacing:-12.060000px;}
.wsf{word-spacing:-0.864000px;}
.ws57{word-spacing:-0.720000px;}
.ws14{word-spacing:-0.505440px;}
.wsa{word-spacing:-0.360720px;}
.wsc{word-spacing:-0.288000px;}
.wsb{word-spacing:-0.144000px;}
.ws8{word-spacing:-0.072000px;}
.ws9{word-spacing:0.000000px;}
.ws51{word-spacing:0.072000px;}
.ws49{word-spacing:0.144000px;}
.ws2f{word-spacing:0.216000px;}
.ws15{word-spacing:0.288000px;}
.ws87{word-spacing:0.432000px;}
.wsd{word-spacing:0.576000px;}
.ws9c{word-spacing:0.648000px;}
.ws16{word-spacing:0.720000px;}
.wse{word-spacing:0.864000px;}
.wsaa{word-spacing:0.936000px;}
.ws3f{word-spacing:1.008000px;}
.ws98{word-spacing:1.296000px;}
.ws2e{word-spacing:1.440000px;}
.wsb9{word-spacing:1.656000px;}
.ws31{word-spacing:1.728000px;}
.ws21{word-spacing:2.016000px;}
.ws22{word-spacing:2.160000px;}
.ws99{word-spacing:2.376000px;}
.ws2d{word-spacing:2.448000px;}
.wsac{word-spacing:2.736000px;}
.ws48{word-spacing:2.880000px;}
.ws7e{word-spacing:2.952000px;}
.ws6f{word-spacing:3.168000px;}
.ws47{word-spacing:3.456000px;}
.ws45{word-spacing:3.600000px;}
.wsbe{word-spacing:3.816000px;}
.ws5b{word-spacing:3.888000px;}
.ws2a{word-spacing:4.176000px;}
.ws2b{word-spacing:4.320000px;}
.ws3e{word-spacing:4.608000px;}
.ws5e{word-spacing:4.896000px;}
.ws42{word-spacing:5.040000px;}
.ws5d{word-spacing:5.328000px;}
.ws32{word-spacing:5.616000px;}
.ws9a{word-spacing:5.688000px;}
.ws29{word-spacing:5.760000px;}
.ws9b{word-spacing:5.976000px;}
.ws28{word-spacing:6.048000px;}
.ws43{word-spacing:6.336000px;}
.ws3b{word-spacing:6.480000px;}
.ws6a{word-spacing:6.768000px;}
.ws4b{word-spacing:7.056000px;}
.ws2c{word-spacing:7.200000px;}
.wsa1{word-spacing:7.272000px;}
.wsa5{word-spacing:7.416000px;}
.ws18{word-spacing:7.488000px;}
.ws19{word-spacing:7.776000px;}
.ws33{word-spacing:7.920000px;}
.wsc1{word-spacing:8.136000px;}
.ws69{word-spacing:8.208000px;}
.ws1b{word-spacing:8.496000px;}
.ws1c{word-spacing:8.640000px;}
.ws50{word-spacing:8.928000px;}
.ws30{word-spacing:9.216000px;}
.ws39{word-spacing:9.360000px;}
.wsbd{word-spacing:9.576000px;}
.ws3a{word-spacing:9.648000px;}
.ws4e{word-spacing:9.936000px;}
.ws1d{word-spacing:10.080000px;}
.ws97{word-spacing:10.296000px;}
.ws4f{word-spacing:10.368000px;}
.ws68{word-spacing:10.656000px;}
.ws17{word-spacing:10.800000px;}
.ws88{word-spacing:11.016000px;}
.ws53{word-spacing:11.088000px;}
.ws72{word-spacing:11.376000px;}
.ws35{word-spacing:11.520000px;}
.ws55{word-spacing:11.808000px;}
.ws25{word-spacing:12.096000px;}
.ws26{word-spacing:12.240000px;}
.ws27{word-spacing:12.528000px;}
.wsae{word-spacing:12.816000px;}
.ws3c{word-spacing:12.960000px;}
.ws7f{word-spacing:13.176000px;}
.wsab{word-spacing:13.248000px;}
.ws7a{word-spacing:13.536000px;}
.ws1a{word-spacing:13.680000px;}
.ws59{word-spacing:13.896000px;}
.ws38{word-spacing:13.968000px;}
.ws73{word-spacing:14.256000px;}
.ws37{word-spacing:14.400000px;}
.wsa6{word-spacing:14.616000px;}
.ws36{word-spacing:14.688000px;}
.ws41{word-spacing:14.976000px;}
.ws34{word-spacing:15.120000px;}
.ws82{word-spacing:15.336000px;}
.ws46{word-spacing:15.408000px;}
.ws5a{word-spacing:15.696000px;}
.ws1e{word-spacing:15.840000px;}
.ws20{word-spacing:16.128000px;}
.ws6b{word-spacing:16.560000px;}
.wsb5{word-spacing:16.632000px;}
.wsba{word-spacing:16.776000px;}
.ws1f{word-spacing:16.848000px;}
.ws58{word-spacing:17.280000px;}
.ws9e{word-spacing:17.856000px;}
.ws8b{word-spacing:18.000000px;}
.wsbf{word-spacing:18.216000px;}
.ws9d{word-spacing:18.288000px;}
.ws7c{word-spacing:18.576000px;}
.ws7d{word-spacing:18.720000px;}
.ws56{word-spacing:19.440000px;}
.wsc0{word-spacing:19.656000px;}
.wsa7{word-spacing:19.728000px;}
.wsb4{word-spacing:20.016000px;}
.ws23{word-spacing:20.160000px;}
.ws24{word-spacing:20.448000px;}
.ws80{word-spacing:20.880000px;}
.ws95{word-spacing:21.168000px;}
.ws71{word-spacing:21.600000px;}
.wsa2{word-spacing:22.176000px;}
.wsa3{word-spacing:22.320000px;}
.wsa4{word-spacing:22.608000px;}
.ws89{word-spacing:22.896000px;}
.ws78{word-spacing:23.040000px;}
.ws77{word-spacing:23.328000px;}
.wsad{word-spacing:23.616000px;}
.ws7b{word-spacing:23.760000px;}
.wsb8{word-spacing:24.336000px;}
.wsb3{word-spacing:24.480000px;}
.wsb7{word-spacing:24.696000px;}
.ws6c{word-spacing:24.768000px;}
.ws74{word-spacing:25.200000px;}
.wsbc{word-spacing:25.416000px;}
.ws66{word-spacing:25.920000px;}
.ws81{word-spacing:26.208000px;}
.ws4a{word-spacing:26.640000px;}
.ws54{word-spacing:28.080000px;}
.ws44{word-spacing:28.368000px;}
.wsa8{word-spacing:28.800000px;}
.ws79{word-spacing:29.520000px;}
.ws4c{word-spacing:30.240000px;}
.ws96{word-spacing:30.528000px;}
.ws75{word-spacing:31.248000px;}
.ws76{word-spacing:31.680000px;}
.ws52{word-spacing:32.400000px;}
.ws67{word-spacing:33.840000px;}
.wsa9{word-spacing:34.128000px;}
.wsb6{word-spacing:34.560000px;}
.ws40{word-spacing:36.000000px;}
.ws5c{word-spacing:37.440000px;}
.ws8a{word-spacing:46.800000px;}
.wsb0{word-spacing:56.448000px;}
.ws70{word-spacing:109.440000px;}
.wsb2{word-spacing:151.920000px;}
.wsb1{word-spacing:312.480000px;}
.wsaf{word-spacing:1092.528000px;}
._17{margin-left:-419.400000px;}
._10{margin-left:-299.357928px;}
._14{margin-left:-45.738720px;}
._21{margin-left:-18.754992px;}
._e{margin-left:-12.032136px;}
._15{margin-left:-10.304352px;}
._18{margin-left:-8.854416px;}
._19{margin-left:-7.533576px;}
._1c{margin-left:-6.045768px;}
._d{margin-left:-4.002480px;}
._2{margin-left:-2.745648px;}
._0{margin-left:-1.322640px;}
._1{width:1.592136px;}
._3{width:2.906424px;}
._13{width:4.104000px;}
._f{width:5.274504px;}
._7{width:7.017552px;}
._c{width:8.666640px;}
._8{width:9.864000px;}
._5{width:11.815920px;}
._6{width:13.233456px;}
._9{width:14.904000px;}
._a{width:16.078968px;}
._11{width:19.034640px;}
._4{width:20.160000px;}
._12{width:21.168000px;}
._1a{width:22.741632px;}
._1d{width:25.056000px;}
._b{width:26.856000px;}
._1b{width:28.368000px;}
._1e{width:29.520000px;}
._16{width:31.032000px;}
._1f{width:73.656000px;}
._20{width:1356.480000px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc8{color:rgb(26,26,26);}
.fc7{color:rgb(63,63,63);}
.fc4{color:rgb(13,13,13);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:120.240000px;}
.fs0{font-size:180.000000px;}
.y139{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.ya{bottom:4.500000px;}
.y136{bottom:25.200000px;}
.y9{bottom:54.000000px;}
.y37{bottom:58.500000px;}
.y109{bottom:113.220000px;}
.ydb{bottom:117.180000px;}
.y1ec{bottom:120.420000px;}
.y7e{bottom:120.600000px;}
.y1c6{bottom:122.040000px;}
.y190{bottom:122.220000px;}
.y1ff{bottom:122.940000px;}
.y135{bottom:124.560000px;}
.y1d8{bottom:125.640000px;}
.y1a1{bottom:127.620000px;}
.y36{bottom:128.880000px;}
.y174{bottom:130.320000px;}
.yac{bottom:130.860000px;}
.y1b3{bottom:132.120000px;}
.y69{bottom:132.300000px;}
.y108{bottom:133.920000px;}
.yda{bottom:137.700000px;}
.y1eb{bottom:141.120000px;}
.y7d{bottom:141.300000px;}
.y1c5{bottom:142.740000px;}
.y18f{bottom:142.920000px;}
.y1fe{bottom:143.640000px;}
.y1d7{bottom:146.340000px;}
.y1a0{bottom:148.320000px;}
.y161{bottom:149.040000px;}
.y35{bottom:149.580000px;}
.y12f{bottom:150.480000px;}
.y173{bottom:150.840000px;}
.yab{bottom:151.560000px;}
.y1b2{bottom:152.820000px;}
.y64{bottom:153.000000px;}
.y107{bottom:154.620000px;}
.yd9{bottom:160.740000px;}
.y1ea{bottom:161.820000px;}
.y7c{bottom:162.000000px;}
.y1c4{bottom:163.440000px;}
.y18e{bottom:163.620000px;}
.y1fd{bottom:164.340000px;}
.y1d6{bottom:167.040000px;}
.y19f{bottom:169.020000px;}
.y160{bottom:169.740000px;}
.y34{bottom:170.280000px;}
.y12e{bottom:171.180000px;}
.y172{bottom:171.540000px;}
.yaa{bottom:172.260000px;}
.y1b1{bottom:173.520000px;}
.y63{bottom:173.700000px;}
.y106{bottom:175.320000px;}
.yd8{bottom:182.160000px;}
.y1e9{bottom:182.340000px;}
.y7b{bottom:182.700000px;}
.y1c3{bottom:184.140000px;}
.y18d{bottom:184.320000px;}
.y1fc{bottom:185.040000px;}
.y1d5{bottom:187.740000px;}
.y19e{bottom:189.720000px;}
.y15f{bottom:190.440000px;}
.y33{bottom:190.980000px;}
.y12d{bottom:191.880000px;}
.y171{bottom:192.240000px;}
.ya9{bottom:192.960000px;}
.y1b0{bottom:194.220000px;}
.y62{bottom:194.400000px;}
.y105{bottom:196.020000px;}
.yd7{bottom:202.860000px;}
.y1e8{bottom:203.040000px;}
.y7a{bottom:203.400000px;}
.y1c2{bottom:204.840000px;}
.y18c{bottom:205.020000px;}
.y1fb{bottom:205.740000px;}
.y1d4{bottom:208.440000px;}
.y19d{bottom:210.420000px;}
.y15e{bottom:211.140000px;}
.y32{bottom:211.680000px;}
.y12c{bottom:212.580000px;}
.y170{bottom:212.940000px;}
.ya8{bottom:213.660000px;}
.y1af{bottom:214.920000px;}
.y61{bottom:215.100000px;}
.y104{bottom:216.720000px;}
.yd6{bottom:223.560000px;}
.y1e7{bottom:223.740000px;}
.y79{bottom:224.100000px;}
.y1c1{bottom:225.540000px;}
.y18b{bottom:225.720000px;}
.y1fa{bottom:226.440000px;}
.y1d3{bottom:229.140000px;}
.y19c{bottom:231.120000px;}
.y15d{bottom:231.840000px;}
.y31{bottom:232.380000px;}
.y12b{bottom:233.280000px;}
.y16f{bottom:233.640000px;}
.ya7{bottom:234.360000px;}
.y133{bottom:235.440000px;}
.y1ae{bottom:235.620000px;}
.y60{bottom:235.800000px;}
.y103{bottom:237.420000px;}
.yd5{bottom:244.080000px;}
.y1e6{bottom:244.440000px;}
.y78{bottom:244.800000px;}
.y1c0{bottom:246.240000px;}
.y18a{bottom:246.420000px;}
.y1f9{bottom:247.140000px;}
.y1d2{bottom:249.840000px;}
.y19b{bottom:251.820000px;}
.y15c{bottom:252.540000px;}
.y30{bottom:253.080000px;}
.y12a{bottom:253.980000px;}
.y16e{bottom:254.340000px;}
.ya6{bottom:255.060000px;}
.y132{bottom:256.140000px;}
.y1ad{bottom:256.320000px;}
.y5f{bottom:256.500000px;}
.y102{bottom:258.120000px;}
.y1e5{bottom:265.140000px;}
.y77{bottom:265.500000px;}
.y1bf{bottom:266.940000px;}
.yd4{bottom:267.120000px;}
.y1f8{bottom:267.840000px;}
.y1d1{bottom:270.540000px;}
.y19a{bottom:272.520000px;}
.y15b{bottom:273.240000px;}
.y2f{bottom:273.780000px;}
.y129{bottom:274.680000px;}
.y16d{bottom:275.040000px;}
.ya5{bottom:275.760000px;}
.y1ac{bottom:277.020000px;}
.y5e{bottom:277.200000px;}
.y101{bottom:278.820000px;}
.y1e4{bottom:285.840000px;}
.y76{bottom:286.200000px;}
.y1be{bottom:287.640000px;}
.y189{bottom:287.820000px;}
.yd3{bottom:288.360000px;}
.y1f7{bottom:288.540000px;}
.y1d0{bottom:291.240000px;}
.y199{bottom:293.220000px;}
.y15a{bottom:293.940000px;}
.y2e{bottom:294.480000px;}
.y128{bottom:295.380000px;}
.y16c{bottom:295.740000px;}
.ya4{bottom:296.460000px;}
.y68{bottom:297.540000px;}
.y1ab{bottom:297.720000px;}
.y5d{bottom:297.900000px;}
.y100{bottom:299.520000px;}
.y1e3{bottom:306.540000px;}
.y75{bottom:306.900000px;}
.y1bd{bottom:308.340000px;}
.y188{bottom:308.520000px;}
.y1f6{bottom:309.240000px;}
.yd2{bottom:309.600000px;}
.y1cf{bottom:311.940000px;}
.y198{bottom:313.920000px;}
.y159{bottom:314.640000px;}
.y2d{bottom:315.180000px;}
.y127{bottom:316.080000px;}
.y16b{bottom:316.440000px;}
.ya3{bottom:317.160000px;}
.y67{bottom:318.240000px;}
.y1aa{bottom:318.420000px;}
.y5c{bottom:318.600000px;}
.yff{bottom:320.220000px;}
.y1e2{bottom:327.240000px;}
.y74{bottom:327.600000px;}
.y1bc{bottom:329.040000px;}
.y187{bottom:329.220000px;}
.y1f5{bottom:329.940000px;}
.yd1{bottom:330.300000px;}
.y1ce{bottom:332.640000px;}
.y197{bottom:334.620000px;}
.y158{bottom:335.340000px;}
.y2c{bottom:335.880000px;}
.y126{bottom:336.780000px;}
.y16a{bottom:337.140000px;}
.ya2{bottom:337.860000px;}
.y1a9{bottom:339.120000px;}
.y5b{bottom:339.300000px;}
.yfe{bottom:340.560000px;}
.y1e1{bottom:347.940000px;}
.y73{bottom:348.300000px;}
.y1bb{bottom:349.740000px;}
.y186{bottom:349.920000px;}
.y1f4{bottom:350.640000px;}
.yd0{bottom:353.340000px;}
.y8{bottom:354.960000px;}
.y196{bottom:355.320000px;}
.y157{bottom:356.040000px;}
.y2b{bottom:356.580000px;}
.y125{bottom:357.480000px;}
.y169{bottom:357.840000px;}
.ya1{bottom:358.560000px;}
.y1a8{bottom:359.820000px;}
.y5a{bottom:360.000000px;}
.yfd{bottom:361.620000px;}
.y1e0{bottom:368.640000px;}
.y72{bottom:369.000000px;}
.y185{bottom:370.440000px;}
.y1f3{bottom:371.340000px;}
.y1cd{bottom:374.400000px;}
.ycf{bottom:374.580000px;}
.y195{bottom:376.020000px;}
.y156{bottom:376.740000px;}
.y2a{bottom:377.280000px;}
.y124{bottom:378.180000px;}
.y168{bottom:378.540000px;}
.y7{bottom:378.900000px;}
.ya0{bottom:379.260000px;}
.y59{bottom:380.340000px;}
.y1a7{bottom:380.520000px;}
.y66{bottom:380.700000px;}
.yfc{bottom:382.320000px;}
.y1df{bottom:389.340000px;}
.y71{bottom:389.700000px;}
.y184{bottom:391.140000px;}
.y203{bottom:392.040000px;}
.y1f2{bottom:392.400000px;}
.y1cc{bottom:395.100000px;}
.yce{bottom:396.720000px;}
.y155{bottom:397.440000px;}
.y29{bottom:397.980000px;}
.y123{bottom:398.880000px;}
.y167{bottom:399.240000px;}
.yb3{bottom:399.780000px;}
.y9f{bottom:399.960000px;}
.y58{bottom:401.040000px;}
.y1a6{bottom:401.220000px;}
.y65{bottom:401.400000px;}
.y6{bottom:402.660000px;}
.yfb{bottom:403.020000px;}
.y1de{bottom:410.040000px;}
.y70{bottom:410.400000px;}
.y183{bottom:411.840000px;}
.y1f1{bottom:413.100000px;}
.y1cb{bottom:415.800000px;}
.y193{bottom:417.600000px;}
.y154{bottom:418.140000px;}
.y194{bottom:418.320000px;}
.y28{bottom:418.680000px;}
.y122{bottom:419.580000px;}
.y166{bottom:419.940000px;}
.yb1{bottom:420.480000px;}
.y9e{bottom:420.660000px;}
.yb2{bottom:421.200000px;}
.y1a5{bottom:421.920000px;}
.y57{bottom:422.100000px;}
.yfa{bottom:423.720000px;}
.y1dd{bottom:430.740000px;}
.y6f{bottom:431.100000px;}
.y182{bottom:432.540000px;}
.y1f0{bottom:433.800000px;}
.y1ca{bottom:436.500000px;}
.y153{bottom:438.660000px;}
.y192{bottom:438.840000px;}
.y27{bottom:439.380000px;}
.y121{bottom:440.280000px;}
.y165{bottom:440.640000px;}
.y9d{bottom:441.360000px;}
.yaf{bottom:441.720000px;}
.yb0{bottom:442.440000px;}
.ycd{bottom:442.620000px;}
.y56{bottom:442.800000px;}
.yf9{bottom:444.420000px;}
.y1dc{bottom:451.440000px;}
.y6e{bottom:451.620000px;}
.y1ba{bottom:453.060000px;}
.y181{bottom:453.240000px;}
.y1ef{bottom:454.500000px;}
.y191{bottom:455.220000px;}
.y1c9{bottom:457.200000px;}
.y5{bottom:458.100000px;}
.y152{bottom:459.900000px;}
.y26{bottom:460.080000px;}
.y120{bottom:460.980000px;}
.y164{bottom:461.340000px;}
.y9c{bottom:462.060000px;}
.yae{bottom:462.780000px;}
.y1a4{bottom:463.320000px;}
.y55{bottom:463.500000px;}
.ycc{bottom:464.040000px;}
.yf8{bottom:465.120000px;}
.y1db{bottom:472.140000px;}
.y6d{bottom:472.680000px;}
.y180{bottom:473.940000px;}
.y1b9{bottom:474.120000px;}
.y1ee{bottom:475.200000px;}
.y1c8{bottom:477.900000px;}
.y151{bottom:480.600000px;}
.y25{bottom:480.780000px;}
.y11f{bottom:481.680000px;}
.y4{bottom:481.860000px;}
.y163{bottom:482.040000px;}
.y9b{bottom:482.760000px;}
.y1a3{bottom:484.020000px;}
.y54{bottom:484.200000px;}
.yf7{bottom:485.820000px;}
.ycb{bottom:486.540000px;}
.y1ed{bottom:491.400000px;}
.y1da{bottom:492.840000px;}
.y6c{bottom:493.920000px;}
.y1c7{bottom:494.280000px;}
.y17f{bottom:494.640000px;}
.y1b8{bottom:495.180000px;}
.y202{bottom:495.900000px;}
.y24{bottom:501.480000px;}
.y11e{bottom:502.380000px;}
.y150{bottom:502.740000px;}
.y9a{bottom:503.460000px;}
.y131{bottom:504.540000px;}
.y53{bottom:504.900000px;}
.yf6{bottom:506.520000px;}
.yca{bottom:507.960000px;}
.y1d9{bottom:509.220000px;}
.y17e{bottom:515.340000px;}
.y1b7{bottom:516.420000px;}
.y201{bottom:516.600000px;}
.y162{bottom:519.120000px;}
.y6b{bottom:519.660000px;}
.y23{bottom:522.180000px;}
.y11d{bottom:523.080000px;}
.y14f{bottom:523.440000px;}
.y99{bottom:524.160000px;}
.y52{bottom:525.600000px;}
.y1a2{bottom:527.940000px;}
.yf5{bottom:528.660000px;}
.yc9{bottom:529.920000px;}
.y200{bottom:532.800000px;}
.y1b6{bottom:533.160000px;}
.y17d{bottom:536.040000px;}
.y6a{bottom:536.940000px;}
.y14e{bottom:539.640000px;}
.y22{bottom:542.520000px;}
.y11c{bottom:543.780000px;}
.y98{bottom:544.860000px;}
.yad{bottom:545.940000px;}
.y51{bottom:546.300000px;}
.yf4{bottom:549.360000px;}
.yc8{bottom:550.980000px;}
.y17c{bottom:556.740000px;}
.y11b{bottom:564.480000px;}
.y97{bottom:565.560000px;}
.y50{bottom:567.000000px;}
.yf3{bottom:571.860000px;}
.yc7{bottom:572.220000px;}
.y14d{bottom:576.540000px;}
.y17b{bottom:577.440000px;}
.y21{bottom:584.280000px;}
.y11a{bottom:585.180000px;}
.y96{bottom:586.260000px;}
.y130{bottom:587.340000px;}
.y4f{bottom:587.700000px;}
.yf2{bottom:593.100000px;}
.yc6{bottom:593.280000px;}
.y14c{bottom:597.240000px;}
.y17a{bottom:598.140000px;}
.y20{bottom:604.980000px;}
.y119{bottom:605.880000px;}
.y95{bottom:606.960000px;}
.y4e{bottom:608.400000px;}
.yf1{bottom:614.160000px;}
.yc5{bottom:616.320000px;}
.y14b{bottom:617.940000px;}
.y179{bottom:618.840000px;}
.y1f{bottom:625.680000px;}
.y118{bottom:626.580000px;}
.y94{bottom:627.660000px;}
.y4d{bottom:629.100000px;}
.yf0{bottom:635.400000px;}
.yc4{bottom:637.560000px;}
.y14a{bottom:638.640000px;}
.y178{bottom:639.540000px;}
.y1e{bottom:646.380000px;}
.y117{bottom:647.280000px;}
.y93{bottom:648.360000px;}
.y4c{bottom:649.800000px;}
.yef{bottom:656.100000px;}
.yc3{bottom:658.800000px;}
.y149{bottom:659.340000px;}
.y177{bottom:660.240000px;}
.y1d{bottom:667.080000px;}
.y116{bottom:667.980000px;}
.y92{bottom:669.060000px;}
.y4b{bottom:670.500000px;}
.yee{bottom:676.800000px;}
.yc1{bottom:679.320000px;}
.yc2{bottom:680.040000px;}
.y176{bottom:680.940000px;}
.y1c{bottom:687.780000px;}
.y115{bottom:688.680000px;}
.y91{bottom:689.760000px;}
.y4a{bottom:691.200000px;}
.y175{bottom:697.320000px;}
.yed{bottom:699.840000px;}
.ybf{bottom:700.740000px;}
.yc0{bottom:701.460000px;}
.y1b{bottom:708.480000px;}
.y114{bottom:709.380000px;}
.y90{bottom:710.460000px;}
.y49{bottom:711.900000px;}
.yec{bottom:721.080000px;}
.y148{bottom:721.440000px;}
.ybe{bottom:721.980000px;}
.y1a{bottom:729.180000px;}
.y113{bottom:730.080000px;}
.y8f{bottom:730.980000px;}
.y48{bottom:732.600000px;}
.yeb{bottom:742.140000px;}
.ybc{bottom:744.480000px;}
.ybd{bottom:745.200000px;}
.y19{bottom:749.880000px;}
.y112{bottom:750.780000px;}
.y8e{bottom:751.680000px;}
.y47{bottom:753.300000px;}
.y147{bottom:762.840000px;}
.yea{bottom:763.200000px;}
.ybb{bottom:767.880000px;}
.y18{bottom:770.580000px;}
.y111{bottom:771.480000px;}
.y8d{bottom:772.380000px;}
.y46{bottom:774.000000px;}
.y146{bottom:783.540000px;}
.ye9{bottom:784.440000px;}
.yba{bottom:791.100000px;}
.y17{bottom:791.280000px;}
.y110{bottom:792.180000px;}
.y8c{bottom:793.080000px;}
.y45{bottom:794.700000px;}
.y145{bottom:804.240000px;}
.ye8{bottom:805.140000px;}
.y16{bottom:811.980000px;}
.y10f{bottom:812.880000px;}
.y8b{bottom:813.780000px;}
.yb9{bottom:814.320000px;}
.y44{bottom:815.400000px;}
.y144{bottom:824.940000px;}
.ye7{bottom:825.840000px;}
.y15{bottom:832.680000px;}
.y10e{bottom:833.580000px;}
.y8a{bottom:834.480000px;}
.yb8{bottom:835.740000px;}
.y43{bottom:836.100000px;}
.y143{bottom:845.640000px;}
.ye6{bottom:846.540000px;}
.y14{bottom:853.380000px;}
.y10d{bottom:854.280000px;}
.y89{bottom:855.180000px;}
.yb7{bottom:856.440000px;}
.y42{bottom:856.800000px;}
.y142{bottom:866.340000px;}
.ye5{bottom:867.240000px;}
.y13{bottom:874.080000px;}
.y10c{bottom:874.980000px;}
.y88{bottom:875.880000px;}
.yb6{bottom:877.140000px;}
.y41{bottom:877.500000px;}
.y141{bottom:887.040000px;}
.ye4{bottom:888.480000px;}
.y12{bottom:894.780000px;}
.y10b{bottom:895.680000px;}
.y87{bottom:896.580000px;}
.yb5{bottom:897.840000px;}
.y40{bottom:898.200000px;}
.y140{bottom:907.740000px;}
.ye3{bottom:910.980000px;}
.y11{bottom:915.480000px;}
.y86{bottom:917.640000px;}
.y10a{bottom:918.180000px;}
.yb4{bottom:918.360000px;}
.y3f{bottom:918.900000px;}
.y13f{bottom:928.440000px;}
.ye2{bottom:933.300000px;}
.y10{bottom:936.180000px;}
.y85{bottom:938.880000px;}
.y3e{bottom:939.600000px;}
.y13e{bottom:949.140000px;}
.ye1{bottom:953.820000px;}
.yf{bottom:956.880000px;}
.y84{bottom:959.580000px;}
.y3d{bottom:960.300000px;}
.y13d{bottom:969.840000px;}
.ye0{bottom:975.060000px;}
.ye{bottom:977.580000px;}
.y83{bottom:980.280000px;}
.y3c{bottom:981.000000px;}
.y13c{bottom:990.540000px;}
.ydf{bottom:998.100000px;}
.yd{bottom:998.280000px;}
.y82{bottom:1000.980000px;}
.y3b{bottom:1001.700000px;}
.y13b{bottom:1011.240000px;}
.yc{bottom:1018.980000px;}
.yde{bottom:1019.520000px;}
.y3{bottom:1019.880000px;}
.y81{bottom:1021.680000px;}
.y134{bottom:1022.040000px;}
.y3a{bottom:1022.400000px;}
.y13a{bottom:1031.940000px;}
.ydd{bottom:1040.040000px;}
.y80{bottom:1042.200000px;}
.y1b5{bottom:1042.740000px;}
.y39{bottom:1043.100000px;}
.y138{bottom:1051.380000px;}
.y137{bottom:1055.880000px;}
.yb{bottom:1060.560000px;}
.ydc{bottom:1063.080000px;}
.y7f{bottom:1063.260000px;}
.y1b4{bottom:1063.440000px;}
.y38{bottom:1063.800000px;}
.y2{bottom:1067.940000px;}
.y1{bottom:1129.860000px;}
.h13{height:0.000000px;}
.h7{height:20.700000px;}
.h12{height:20.701500px;}
.h11{height:41.398500px;}
.ha{height:48.796875px;}
.h8{height:50.027344px;}
.h5{height:52.453125px;}
.h9{height:57.092344px;}
.h4{height:64.002656px;}
.h10{height:66.638320px;}
.h3{height:91.354219px;}
.he{height:112.394531px;}
.hf{height:115.274531px;}
.h2{height:136.757812px;}
.hb{height:146.234531px;}
.hd{height:160.634531px;}
.hc{height:215.354531px;}
.h6{height:1188.000000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:9.000000px;}
.w4{width:18.000000px;}
.w5{width:704.160000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x1b{left:1.080000px;}
.x1a{left:106.920000px;}
.x7{left:108.000000px;}
.x4{left:120.060000px;}
.x8{left:162.000000px;}
.x6{left:171.000000px;}
.xf{left:172.620000px;}
.x15{left:208.620000px;}
.x10{left:229.320000px;}
.x16{left:309.960000px;}
.xa{left:332.280000px;}
.x13{left:336.960000px;}
.x12{left:378.540000px;}
.x2{left:387.720000px;}
.xb{left:419.400000px;}
.x3{left:444.240000px;}
.x9{left:445.500000px;}
.x17{left:447.660000px;}
.x1d{left:477.180000px;}
.x1{left:489.960000px;}
.x18{left:498.060000px;}
.xc{left:503.100000px;}
.xd{left:525.780000px;}
.xe{left:548.280000px;}
.x14{left:556.200000px;}
.x11{left:658.080000px;}
.x19{left:792.000000px;}
.x5{left:801.000000px;}
.x1c{left:810.000000px;}
@media print{
.v4{vertical-align:-55.680000pt;}
.vc{vertical-align:-23.680000pt;}
.v8{vertical-align:-12.800000pt;}
.v1{vertical-align:-8.320000pt;}
.vf{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:2.560000pt;}
.vd{vertical-align:12.800000pt;}
.v10{vertical-align:21.120000pt;}
.v7{vertical-align:23.680000pt;}
.v2{vertical-align:30.080000pt;}
.v11{vertical-align:36.480000pt;}
.v3{vertical-align:42.880000pt;}
.v6{vertical-align:48.640000pt;}
.v9{vertical-align:55.680000pt;}
.vb{vertical-align:61.440000pt;}
.v5{vertical-align:64.640000pt;}
.va{vertical-align:91.520000pt;}
.ls76{letter-spacing:-1.920000pt;}
.ls35{letter-spacing:-1.472000pt;}
.ls7d{letter-spacing:-1.344000pt;}
.ls1b{letter-spacing:-1.280000pt;}
.ls22{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.823680pt;}
.ls6{letter-spacing:-0.748800pt;}
.ls7e{letter-spacing:-0.704000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls77{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.213760pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls74{letter-spacing:0.045440pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls60{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls7f{letter-spacing:0.257280pt;}
.ls15{letter-spacing:0.299520pt;}
.ls18{letter-spacing:0.320000pt;}
.ls75{letter-spacing:0.343040pt;}
.ls26{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls43{letter-spacing:0.652800pt;}
.ls31{letter-spacing:0.768000pt;}
.ls2d{letter-spacing:1.088000pt;}
.ls48{letter-spacing:1.152000pt;}
.ls14{letter-spacing:1.280000pt;}
.ls32{letter-spacing:1.536000pt;}
.ls33{letter-spacing:1.600000pt;}
.ls27{letter-spacing:1.664000pt;}
.ls49{letter-spacing:1.728000pt;}
.lsf{letter-spacing:1.920000pt;}
.ls2f{letter-spacing:1.984000pt;}
.ls8a{letter-spacing:2.043520pt;}
.ls62{letter-spacing:2.048000pt;}
.ls30{letter-spacing:2.112000pt;}
.ls89{letter-spacing:2.152960pt;}
.ls55{letter-spacing:2.176000pt;}
.ls81{letter-spacing:2.194560pt;}
.ls8c{letter-spacing:2.437120pt;}
.ls5b{letter-spacing:2.490240pt;}
.ls20{letter-spacing:2.560000pt;}
.ls2c{letter-spacing:2.778240pt;}
.ls5d{letter-spacing:2.842240pt;}
.ls5e{letter-spacing:3.008000pt;}
.ls44{letter-spacing:3.072000pt;}
.ls67{letter-spacing:3.130240pt;}
.ls23{letter-spacing:3.200000pt;}
.ls6f{letter-spacing:3.236480pt;}
.ls54{letter-spacing:3.482240pt;}
.ls71{letter-spacing:3.501440pt;}
.ls6d{letter-spacing:3.531520pt;}
.lse{letter-spacing:3.840000pt;}
.ls59{letter-spacing:3.876480pt;}
.ls2e{letter-spacing:3.932800pt;}
.ls57{letter-spacing:4.122240pt;}
.ls50{letter-spacing:4.171520pt;}
.ls19{letter-spacing:4.480000pt;}
.ls56{letter-spacing:4.516480pt;}
.ls36{letter-spacing:4.572800pt;}
.lsd{letter-spacing:5.120000pt;}
.ls7b{letter-spacing:5.451520pt;}
.ls4f{letter-spacing:5.760000pt;}
.ls70{letter-spacing:6.061440pt;}
.ls86{letter-spacing:6.208000pt;}
.ls7a{letter-spacing:6.400000pt;}
.ls87{letter-spacing:6.720000pt;}
.ls3d{letter-spacing:7.040000pt;}
.ls1e{letter-spacing:7.680000pt;}
.ls1a{letter-spacing:8.320000pt;}
.ls88{letter-spacing:8.386560pt;}
.ls73{letter-spacing:8.576000pt;}
.ls80{letter-spacing:8.960000pt;}
.ls13{letter-spacing:9.600000pt;}
.ls8b{letter-spacing:10.117120pt;}
.ls11{letter-spacing:10.240000pt;}
.ls72{letter-spacing:10.246400pt;}
.ls66{letter-spacing:10.560000pt;}
.ls58{letter-spacing:10.880000pt;}
.ls83{letter-spacing:11.200000pt;}
.ls7c{letter-spacing:11.520000pt;}
.ls3e{letter-spacing:12.160000pt;}
.ls78{letter-spacing:12.416000pt;}
.ls12{letter-spacing:12.800000pt;}
.ls41{letter-spacing:13.440000pt;}
.ls40{letter-spacing:13.446400pt;}
.lsa{letter-spacing:14.080000pt;}
.ls3b{letter-spacing:14.272000pt;}
.ls25{letter-spacing:14.626560pt;}
.ls3a{letter-spacing:14.976000pt;}
.ls24{letter-spacing:15.360000pt;}
.ls3f{letter-spacing:16.000000pt;}
.ls52{letter-spacing:16.256000pt;}
.ls28{letter-spacing:16.570240pt;}
.ls34{letter-spacing:17.280000pt;}
.ls53{letter-spacing:17.316480pt;}
.ls38{letter-spacing:17.472000pt;}
.ls2a{letter-spacing:17.664000pt;}
.lsb{letter-spacing:17.920000pt;}
.lsc{letter-spacing:17.926400pt;}
.ls4b{letter-spacing:18.112000pt;}
.ls6c{letter-spacing:18.304000pt;}
.ls5f{letter-spacing:20.292480pt;}
.ls42{letter-spacing:20.480000pt;}
.ls63{letter-spacing:20.762240pt;}
.ls45{letter-spacing:21.050240pt;}
.ls5a{letter-spacing:21.156480pt;}
.ls6e{letter-spacing:21.421440pt;}
.ls51{letter-spacing:21.451520pt;}
.ls4a{letter-spacing:21.810560pt;}
.ls37{letter-spacing:21.852800pt;}
.ls82{letter-spacing:22.400000pt;}
.ls79{letter-spacing:24.960000pt;}
.ls1f{letter-spacing:28.800000pt;}
.ls2b{letter-spacing:30.272000pt;}
.ls6a{letter-spacing:34.560000pt;}
.ls64{letter-spacing:34.944000pt;}
.ls84{letter-spacing:35.072000pt;}
.ls65{letter-spacing:36.224000pt;}
.ls39{letter-spacing:36.736000pt;}
.ls46{letter-spacing:37.504000pt;}
.ls4c{letter-spacing:38.330240pt;}
.ls61{letter-spacing:62.464000pt;}
.ls85{letter-spacing:63.744000pt;}
.ls4d{letter-spacing:67.584000pt;}
.ls47{letter-spacing:68.864000pt;}
.ls68{letter-spacing:95.104000pt;}
.ls5c{letter-spacing:105.344000pt;}
.ls6b{letter-spacing:113.664000pt;}
.ls29{letter-spacing:134.492800pt;}
.ls3c{letter-spacing:231.424000pt;}
.ls4e{letter-spacing:281.984000pt;}
.ls69{letter-spacing:337.664000pt;}
.ws60{word-spacing:-64.256000pt;}
.ws64{word-spacing:-64.128000pt;}
.ws63{word-spacing:-64.064000pt;}
.ws61{word-spacing:-64.000000pt;}
.ws6d{word-spacing:-63.808000pt;}
.ws0{word-spacing:-46.720000pt;}
.ws62{word-spacing:-45.440000pt;}
.ws1{word-spacing:-31.102080pt;}
.ws90{word-spacing:-28.032000pt;}
.ws8f{word-spacing:-27.776000pt;}
.ws83{word-spacing:-27.648000pt;}
.ws85{word-spacing:-27.136000pt;}
.ws84{word-spacing:-27.072000pt;}
.ws8e{word-spacing:-23.743360pt;}
.ws3{word-spacing:-23.437440pt;}
.ws4{word-spacing:-22.688640pt;}
.ws2{word-spacing:-22.613760pt;}
.ws10{word-spacing:-19.019520pt;}
.ws5{word-spacing:-18.048000pt;}
.ws6{word-spacing:-17.792000pt;}
.ws7{word-spacing:-17.408000pt;}
.ws8d{word-spacing:-16.384000pt;}
.ws13{word-spacing:-16.256000pt;}
.ws4d{word-spacing:-16.128000pt;}
.ws3d{word-spacing:-16.064000pt;}
.ws12{word-spacing:-16.000000pt;}
.ws9f{word-spacing:-15.936000pt;}
.ws91{word-spacing:-15.872000pt;}
.ws8c{word-spacing:-15.808000pt;}
.ws11{word-spacing:-15.744000pt;}
.ws94{word-spacing:-15.616000pt;}
.ws65{word-spacing:-15.360000pt;}
.ws86{word-spacing:-15.168000pt;}
.wsa0{word-spacing:-14.656000pt;}
.ws5f{word-spacing:-14.528000pt;}
.ws6e{word-spacing:-14.080000pt;}
.ws93{word-spacing:-11.063040pt;}
.wsbb{word-spacing:-10.977280pt;}
.ws92{word-spacing:-10.720000pt;}
.wsf{word-spacing:-0.768000pt;}
.ws57{word-spacing:-0.640000pt;}
.ws14{word-spacing:-0.449280pt;}
.wsa{word-spacing:-0.320640pt;}
.wsc{word-spacing:-0.256000pt;}
.wsb{word-spacing:-0.128000pt;}
.ws8{word-spacing:-0.064000pt;}
.ws9{word-spacing:0.000000pt;}
.ws51{word-spacing:0.064000pt;}
.ws49{word-spacing:0.128000pt;}
.ws2f{word-spacing:0.192000pt;}
.ws15{word-spacing:0.256000pt;}
.ws87{word-spacing:0.384000pt;}
.wsd{word-spacing:0.512000pt;}
.ws9c{word-spacing:0.576000pt;}
.ws16{word-spacing:0.640000pt;}
.wse{word-spacing:0.768000pt;}
.wsaa{word-spacing:0.832000pt;}
.ws3f{word-spacing:0.896000pt;}
.ws98{word-spacing:1.152000pt;}
.ws2e{word-spacing:1.280000pt;}
.wsb9{word-spacing:1.472000pt;}
.ws31{word-spacing:1.536000pt;}
.ws21{word-spacing:1.792000pt;}
.ws22{word-spacing:1.920000pt;}
.ws99{word-spacing:2.112000pt;}
.ws2d{word-spacing:2.176000pt;}
.wsac{word-spacing:2.432000pt;}
.ws48{word-spacing:2.560000pt;}
.ws7e{word-spacing:2.624000pt;}
.ws6f{word-spacing:2.816000pt;}
.ws47{word-spacing:3.072000pt;}
.ws45{word-spacing:3.200000pt;}
.wsbe{word-spacing:3.392000pt;}
.ws5b{word-spacing:3.456000pt;}
.ws2a{word-spacing:3.712000pt;}
.ws2b{word-spacing:3.840000pt;}
.ws3e{word-spacing:4.096000pt;}
.ws5e{word-spacing:4.352000pt;}
.ws42{word-spacing:4.480000pt;}
.ws5d{word-spacing:4.736000pt;}
.ws32{word-spacing:4.992000pt;}
.ws9a{word-spacing:5.056000pt;}
.ws29{word-spacing:5.120000pt;}
.ws9b{word-spacing:5.312000pt;}
.ws28{word-spacing:5.376000pt;}
.ws43{word-spacing:5.632000pt;}
.ws3b{word-spacing:5.760000pt;}
.ws6a{word-spacing:6.016000pt;}
.ws4b{word-spacing:6.272000pt;}
.ws2c{word-spacing:6.400000pt;}
.wsa1{word-spacing:6.464000pt;}
.wsa5{word-spacing:6.592000pt;}
.ws18{word-spacing:6.656000pt;}
.ws19{word-spacing:6.912000pt;}
.ws33{word-spacing:7.040000pt;}
.wsc1{word-spacing:7.232000pt;}
.ws69{word-spacing:7.296000pt;}
.ws1b{word-spacing:7.552000pt;}
.ws1c{word-spacing:7.680000pt;}
.ws50{word-spacing:7.936000pt;}
.ws30{word-spacing:8.192000pt;}
.ws39{word-spacing:8.320000pt;}
.wsbd{word-spacing:8.512000pt;}
.ws3a{word-spacing:8.576000pt;}
.ws4e{word-spacing:8.832000pt;}
.ws1d{word-spacing:8.960000pt;}
.ws97{word-spacing:9.152000pt;}
.ws4f{word-spacing:9.216000pt;}
.ws68{word-spacing:9.472000pt;}
.ws17{word-spacing:9.600000pt;}
.ws88{word-spacing:9.792000pt;}
.ws53{word-spacing:9.856000pt;}
.ws72{word-spacing:10.112000pt;}
.ws35{word-spacing:10.240000pt;}
.ws55{word-spacing:10.496000pt;}
.ws25{word-spacing:10.752000pt;}
.ws26{word-spacing:10.880000pt;}
.ws27{word-spacing:11.136000pt;}
.wsae{word-spacing:11.392000pt;}
.ws3c{word-spacing:11.520000pt;}
.ws7f{word-spacing:11.712000pt;}
.wsab{word-spacing:11.776000pt;}
.ws7a{word-spacing:12.032000pt;}
.ws1a{word-spacing:12.160000pt;}
.ws59{word-spacing:12.352000pt;}
.ws38{word-spacing:12.416000pt;}
.ws73{word-spacing:12.672000pt;}
.ws37{word-spacing:12.800000pt;}
.wsa6{word-spacing:12.992000pt;}
.ws36{word-spacing:13.056000pt;}
.ws41{word-spacing:13.312000pt;}
.ws34{word-spacing:13.440000pt;}
.ws82{word-spacing:13.632000pt;}
.ws46{word-spacing:13.696000pt;}
.ws5a{word-spacing:13.952000pt;}
.ws1e{word-spacing:14.080000pt;}
.ws20{word-spacing:14.336000pt;}
.ws6b{word-spacing:14.720000pt;}
.wsb5{word-spacing:14.784000pt;}
.wsba{word-spacing:14.912000pt;}
.ws1f{word-spacing:14.976000pt;}
.ws58{word-spacing:15.360000pt;}
.ws9e{word-spacing:15.872000pt;}
.ws8b{word-spacing:16.000000pt;}
.wsbf{word-spacing:16.192000pt;}
.ws9d{word-spacing:16.256000pt;}
.ws7c{word-spacing:16.512000pt;}
.ws7d{word-spacing:16.640000pt;}
.ws56{word-spacing:17.280000pt;}
.wsc0{word-spacing:17.472000pt;}
.wsa7{word-spacing:17.536000pt;}
.wsb4{word-spacing:17.792000pt;}
.ws23{word-spacing:17.920000pt;}
.ws24{word-spacing:18.176000pt;}
.ws80{word-spacing:18.560000pt;}
.ws95{word-spacing:18.816000pt;}
.ws71{word-spacing:19.200000pt;}
.wsa2{word-spacing:19.712000pt;}
.wsa3{word-spacing:19.840000pt;}
.wsa4{word-spacing:20.096000pt;}
.ws89{word-spacing:20.352000pt;}
.ws78{word-spacing:20.480000pt;}
.ws77{word-spacing:20.736000pt;}
.wsad{word-spacing:20.992000pt;}
.ws7b{word-spacing:21.120000pt;}
.wsb8{word-spacing:21.632000pt;}
.wsb3{word-spacing:21.760000pt;}
.wsb7{word-spacing:21.952000pt;}
.ws6c{word-spacing:22.016000pt;}
.ws74{word-spacing:22.400000pt;}
.wsbc{word-spacing:22.592000pt;}
.ws66{word-spacing:23.040000pt;}
.ws81{word-spacing:23.296000pt;}
.ws4a{word-spacing:23.680000pt;}
.ws54{word-spacing:24.960000pt;}
.ws44{word-spacing:25.216000pt;}
.wsa8{word-spacing:25.600000pt;}
.ws79{word-spacing:26.240000pt;}
.ws4c{word-spacing:26.880000pt;}
.ws96{word-spacing:27.136000pt;}
.ws75{word-spacing:27.776000pt;}
.ws76{word-spacing:28.160000pt;}
.ws52{word-spacing:28.800000pt;}
.ws67{word-spacing:30.080000pt;}
.wsa9{word-spacing:30.336000pt;}
.wsb6{word-spacing:30.720000pt;}
.ws40{word-spacing:32.000000pt;}
.ws5c{word-spacing:33.280000pt;}
.ws8a{word-spacing:41.600000pt;}
.wsb0{word-spacing:50.176000pt;}
.ws70{word-spacing:97.280000pt;}
.wsb2{word-spacing:135.040000pt;}
.wsb1{word-spacing:277.760000pt;}
.wsaf{word-spacing:971.136000pt;}
._17{margin-left:-372.800000pt;}
._10{margin-left:-266.095936pt;}
._14{margin-left:-40.656640pt;}
._21{margin-left:-16.671104pt;}
._e{margin-left:-10.695232pt;}
._15{margin-left:-9.159424pt;}
._18{margin-left:-7.870592pt;}
._19{margin-left:-6.696512pt;}
._1c{margin-left:-5.374016pt;}
._d{margin-left:-3.557760pt;}
._2{margin-left:-2.440576pt;}
._0{margin-left:-1.175680pt;}
._1{width:1.415232pt;}
._3{width:2.583488pt;}
._13{width:3.648000pt;}
._f{width:4.688448pt;}
._7{width:6.237824pt;}
._c{width:7.703680pt;}
._8{width:8.768000pt;}
._5{width:10.503040pt;}
._6{width:11.763072pt;}
._9{width:13.248000pt;}
._a{width:14.292416pt;}
._11{width:16.919680pt;}
._4{width:17.920000pt;}
._12{width:18.816000pt;}
._1a{width:20.214784pt;}
._1d{width:22.272000pt;}
._b{width:23.872000pt;}
._1b{width:25.216000pt;}
._1e{width:26.240000pt;}
._16{width:27.584000pt;}
._1f{width:65.472000pt;}
._20{width:1205.760000pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:106.880000pt;}
.fs0{font-size:160.000000pt;}
.y139{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:4.000000pt;}
.y136{bottom:22.400000pt;}
.y9{bottom:48.000000pt;}
.y37{bottom:52.000000pt;}
.y109{bottom:100.640000pt;}
.ydb{bottom:104.160000pt;}
.y1ec{bottom:107.040000pt;}
.y7e{bottom:107.200000pt;}
.y1c6{bottom:108.480000pt;}
.y190{bottom:108.640000pt;}
.y1ff{bottom:109.280000pt;}
.y135{bottom:110.720000pt;}
.y1d8{bottom:111.680000pt;}
.y1a1{bottom:113.440000pt;}
.y36{bottom:114.560000pt;}
.y174{bottom:115.840000pt;}
.yac{bottom:116.320000pt;}
.y1b3{bottom:117.440000pt;}
.y69{bottom:117.600000pt;}
.y108{bottom:119.040000pt;}
.yda{bottom:122.400000pt;}
.y1eb{bottom:125.440000pt;}
.y7d{bottom:125.600000pt;}
.y1c5{bottom:126.880000pt;}
.y18f{bottom:127.040000pt;}
.y1fe{bottom:127.680000pt;}
.y1d7{bottom:130.080000pt;}
.y1a0{bottom:131.840000pt;}
.y161{bottom:132.480000pt;}
.y35{bottom:132.960000pt;}
.y12f{bottom:133.760000pt;}
.y173{bottom:134.080000pt;}
.yab{bottom:134.720000pt;}
.y1b2{bottom:135.840000pt;}
.y64{bottom:136.000000pt;}
.y107{bottom:137.440000pt;}
.yd9{bottom:142.880000pt;}
.y1ea{bottom:143.840000pt;}
.y7c{bottom:144.000000pt;}
.y1c4{bottom:145.280000pt;}
.y18e{bottom:145.440000pt;}
.y1fd{bottom:146.080000pt;}
.y1d6{bottom:148.480000pt;}
.y19f{bottom:150.240000pt;}
.y160{bottom:150.880000pt;}
.y34{bottom:151.360000pt;}
.y12e{bottom:152.160000pt;}
.y172{bottom:152.480000pt;}
.yaa{bottom:153.120000pt;}
.y1b1{bottom:154.240000pt;}
.y63{bottom:154.400000pt;}
.y106{bottom:155.840000pt;}
.yd8{bottom:161.920000pt;}
.y1e9{bottom:162.080000pt;}
.y7b{bottom:162.400000pt;}
.y1c3{bottom:163.680000pt;}
.y18d{bottom:163.840000pt;}
.y1fc{bottom:164.480000pt;}
.y1d5{bottom:166.880000pt;}
.y19e{bottom:168.640000pt;}
.y15f{bottom:169.280000pt;}
.y33{bottom:169.760000pt;}
.y12d{bottom:170.560000pt;}
.y171{bottom:170.880000pt;}
.ya9{bottom:171.520000pt;}
.y1b0{bottom:172.640000pt;}
.y62{bottom:172.800000pt;}
.y105{bottom:174.240000pt;}
.yd7{bottom:180.320000pt;}
.y1e8{bottom:180.480000pt;}
.y7a{bottom:180.800000pt;}
.y1c2{bottom:182.080000pt;}
.y18c{bottom:182.240000pt;}
.y1fb{bottom:182.880000pt;}
.y1d4{bottom:185.280000pt;}
.y19d{bottom:187.040000pt;}
.y15e{bottom:187.680000pt;}
.y32{bottom:188.160000pt;}
.y12c{bottom:188.960000pt;}
.y170{bottom:189.280000pt;}
.ya8{bottom:189.920000pt;}
.y1af{bottom:191.040000pt;}
.y61{bottom:191.200000pt;}
.y104{bottom:192.640000pt;}
.yd6{bottom:198.720000pt;}
.y1e7{bottom:198.880000pt;}
.y79{bottom:199.200000pt;}
.y1c1{bottom:200.480000pt;}
.y18b{bottom:200.640000pt;}
.y1fa{bottom:201.280000pt;}
.y1d3{bottom:203.680000pt;}
.y19c{bottom:205.440000pt;}
.y15d{bottom:206.080000pt;}
.y31{bottom:206.560000pt;}
.y12b{bottom:207.360000pt;}
.y16f{bottom:207.680000pt;}
.ya7{bottom:208.320000pt;}
.y133{bottom:209.280000pt;}
.y1ae{bottom:209.440000pt;}
.y60{bottom:209.600000pt;}
.y103{bottom:211.040000pt;}
.yd5{bottom:216.960000pt;}
.y1e6{bottom:217.280000pt;}
.y78{bottom:217.600000pt;}
.y1c0{bottom:218.880000pt;}
.y18a{bottom:219.040000pt;}
.y1f9{bottom:219.680000pt;}
.y1d2{bottom:222.080000pt;}
.y19b{bottom:223.840000pt;}
.y15c{bottom:224.480000pt;}
.y30{bottom:224.960000pt;}
.y12a{bottom:225.760000pt;}
.y16e{bottom:226.080000pt;}
.ya6{bottom:226.720000pt;}
.y132{bottom:227.680000pt;}
.y1ad{bottom:227.840000pt;}
.y5f{bottom:228.000000pt;}
.y102{bottom:229.440000pt;}
.y1e5{bottom:235.680000pt;}
.y77{bottom:236.000000pt;}
.y1bf{bottom:237.280000pt;}
.yd4{bottom:237.440000pt;}
.y1f8{bottom:238.080000pt;}
.y1d1{bottom:240.480000pt;}
.y19a{bottom:242.240000pt;}
.y15b{bottom:242.880000pt;}
.y2f{bottom:243.360000pt;}
.y129{bottom:244.160000pt;}
.y16d{bottom:244.480000pt;}
.ya5{bottom:245.120000pt;}
.y1ac{bottom:246.240000pt;}
.y5e{bottom:246.400000pt;}
.y101{bottom:247.840000pt;}
.y1e4{bottom:254.080000pt;}
.y76{bottom:254.400000pt;}
.y1be{bottom:255.680000pt;}
.y189{bottom:255.840000pt;}
.yd3{bottom:256.320000pt;}
.y1f7{bottom:256.480000pt;}
.y1d0{bottom:258.880000pt;}
.y199{bottom:260.640000pt;}
.y15a{bottom:261.280000pt;}
.y2e{bottom:261.760000pt;}
.y128{bottom:262.560000pt;}
.y16c{bottom:262.880000pt;}
.ya4{bottom:263.520000pt;}
.y68{bottom:264.480000pt;}
.y1ab{bottom:264.640000pt;}
.y5d{bottom:264.800000pt;}
.y100{bottom:266.240000pt;}
.y1e3{bottom:272.480000pt;}
.y75{bottom:272.800000pt;}
.y1bd{bottom:274.080000pt;}
.y188{bottom:274.240000pt;}
.y1f6{bottom:274.880000pt;}
.yd2{bottom:275.200000pt;}
.y1cf{bottom:277.280000pt;}
.y198{bottom:279.040000pt;}
.y159{bottom:279.680000pt;}
.y2d{bottom:280.160000pt;}
.y127{bottom:280.960000pt;}
.y16b{bottom:281.280000pt;}
.ya3{bottom:281.920000pt;}
.y67{bottom:282.880000pt;}
.y1aa{bottom:283.040000pt;}
.y5c{bottom:283.200000pt;}
.yff{bottom:284.640000pt;}
.y1e2{bottom:290.880000pt;}
.y74{bottom:291.200000pt;}
.y1bc{bottom:292.480000pt;}
.y187{bottom:292.640000pt;}
.y1f5{bottom:293.280000pt;}
.yd1{bottom:293.600000pt;}
.y1ce{bottom:295.680000pt;}
.y197{bottom:297.440000pt;}
.y158{bottom:298.080000pt;}
.y2c{bottom:298.560000pt;}
.y126{bottom:299.360000pt;}
.y16a{bottom:299.680000pt;}
.ya2{bottom:300.320000pt;}
.y1a9{bottom:301.440000pt;}
.y5b{bottom:301.600000pt;}
.yfe{bottom:302.720000pt;}
.y1e1{bottom:309.280000pt;}
.y73{bottom:309.600000pt;}
.y1bb{bottom:310.880000pt;}
.y186{bottom:311.040000pt;}
.y1f4{bottom:311.680000pt;}
.yd0{bottom:314.080000pt;}
.y8{bottom:315.520000pt;}
.y196{bottom:315.840000pt;}
.y157{bottom:316.480000pt;}
.y2b{bottom:316.960000pt;}
.y125{bottom:317.760000pt;}
.y169{bottom:318.080000pt;}
.ya1{bottom:318.720000pt;}
.y1a8{bottom:319.840000pt;}
.y5a{bottom:320.000000pt;}
.yfd{bottom:321.440000pt;}
.y1e0{bottom:327.680000pt;}
.y72{bottom:328.000000pt;}
.y185{bottom:329.280000pt;}
.y1f3{bottom:330.080000pt;}
.y1cd{bottom:332.800000pt;}
.ycf{bottom:332.960000pt;}
.y195{bottom:334.240000pt;}
.y156{bottom:334.880000pt;}
.y2a{bottom:335.360000pt;}
.y124{bottom:336.160000pt;}
.y168{bottom:336.480000pt;}
.y7{bottom:336.800000pt;}
.ya0{bottom:337.120000pt;}
.y59{bottom:338.080000pt;}
.y1a7{bottom:338.240000pt;}
.y66{bottom:338.400000pt;}
.yfc{bottom:339.840000pt;}
.y1df{bottom:346.080000pt;}
.y71{bottom:346.400000pt;}
.y184{bottom:347.680000pt;}
.y203{bottom:348.480000pt;}
.y1f2{bottom:348.800000pt;}
.y1cc{bottom:351.200000pt;}
.yce{bottom:352.640000pt;}
.y155{bottom:353.280000pt;}
.y29{bottom:353.760000pt;}
.y123{bottom:354.560000pt;}
.y167{bottom:354.880000pt;}
.yb3{bottom:355.360000pt;}
.y9f{bottom:355.520000pt;}
.y58{bottom:356.480000pt;}
.y1a6{bottom:356.640000pt;}
.y65{bottom:356.800000pt;}
.y6{bottom:357.920000pt;}
.yfb{bottom:358.240000pt;}
.y1de{bottom:364.480000pt;}
.y70{bottom:364.800000pt;}
.y183{bottom:366.080000pt;}
.y1f1{bottom:367.200000pt;}
.y1cb{bottom:369.600000pt;}
.y193{bottom:371.200000pt;}
.y154{bottom:371.680000pt;}
.y194{bottom:371.840000pt;}
.y28{bottom:372.160000pt;}
.y122{bottom:372.960000pt;}
.y166{bottom:373.280000pt;}
.yb1{bottom:373.760000pt;}
.y9e{bottom:373.920000pt;}
.yb2{bottom:374.400000pt;}
.y1a5{bottom:375.040000pt;}
.y57{bottom:375.200000pt;}
.yfa{bottom:376.640000pt;}
.y1dd{bottom:382.880000pt;}
.y6f{bottom:383.200000pt;}
.y182{bottom:384.480000pt;}
.y1f0{bottom:385.600000pt;}
.y1ca{bottom:388.000000pt;}
.y153{bottom:389.920000pt;}
.y192{bottom:390.080000pt;}
.y27{bottom:390.560000pt;}
.y121{bottom:391.360000pt;}
.y165{bottom:391.680000pt;}
.y9d{bottom:392.320000pt;}
.yaf{bottom:392.640000pt;}
.yb0{bottom:393.280000pt;}
.ycd{bottom:393.440000pt;}
.y56{bottom:393.600000pt;}
.yf9{bottom:395.040000pt;}
.y1dc{bottom:401.280000pt;}
.y6e{bottom:401.440000pt;}
.y1ba{bottom:402.720000pt;}
.y181{bottom:402.880000pt;}
.y1ef{bottom:404.000000pt;}
.y191{bottom:404.640000pt;}
.y1c9{bottom:406.400000pt;}
.y5{bottom:407.200000pt;}
.y152{bottom:408.800000pt;}
.y26{bottom:408.960000pt;}
.y120{bottom:409.760000pt;}
.y164{bottom:410.080000pt;}
.y9c{bottom:410.720000pt;}
.yae{bottom:411.360000pt;}
.y1a4{bottom:411.840000pt;}
.y55{bottom:412.000000pt;}
.ycc{bottom:412.480000pt;}
.yf8{bottom:413.440000pt;}
.y1db{bottom:419.680000pt;}
.y6d{bottom:420.160000pt;}
.y180{bottom:421.280000pt;}
.y1b9{bottom:421.440000pt;}
.y1ee{bottom:422.400000pt;}
.y1c8{bottom:424.800000pt;}
.y151{bottom:427.200000pt;}
.y25{bottom:427.360000pt;}
.y11f{bottom:428.160000pt;}
.y4{bottom:428.320000pt;}
.y163{bottom:428.480000pt;}
.y9b{bottom:429.120000pt;}
.y1a3{bottom:430.240000pt;}
.y54{bottom:430.400000pt;}
.yf7{bottom:431.840000pt;}
.ycb{bottom:432.480000pt;}
.y1ed{bottom:436.800000pt;}
.y1da{bottom:438.080000pt;}
.y6c{bottom:439.040000pt;}
.y1c7{bottom:439.360000pt;}
.y17f{bottom:439.680000pt;}
.y1b8{bottom:440.160000pt;}
.y202{bottom:440.800000pt;}
.y24{bottom:445.760000pt;}
.y11e{bottom:446.560000pt;}
.y150{bottom:446.880000pt;}
.y9a{bottom:447.520000pt;}
.y131{bottom:448.480000pt;}
.y53{bottom:448.800000pt;}
.yf6{bottom:450.240000pt;}
.yca{bottom:451.520000pt;}
.y1d9{bottom:452.640000pt;}
.y17e{bottom:458.080000pt;}
.y1b7{bottom:459.040000pt;}
.y201{bottom:459.200000pt;}
.y162{bottom:461.440000pt;}
.y6b{bottom:461.920000pt;}
.y23{bottom:464.160000pt;}
.y11d{bottom:464.960000pt;}
.y14f{bottom:465.280000pt;}
.y99{bottom:465.920000pt;}
.y52{bottom:467.200000pt;}
.y1a2{bottom:469.280000pt;}
.yf5{bottom:469.920000pt;}
.yc9{bottom:471.040000pt;}
.y200{bottom:473.600000pt;}
.y1b6{bottom:473.920000pt;}
.y17d{bottom:476.480000pt;}
.y6a{bottom:477.280000pt;}
.y14e{bottom:479.680000pt;}
.y22{bottom:482.240000pt;}
.y11c{bottom:483.360000pt;}
.y98{bottom:484.320000pt;}
.yad{bottom:485.280000pt;}
.y51{bottom:485.600000pt;}
.yf4{bottom:488.320000pt;}
.yc8{bottom:489.760000pt;}
.y17c{bottom:494.880000pt;}
.y11b{bottom:501.760000pt;}
.y97{bottom:502.720000pt;}
.y50{bottom:504.000000pt;}
.yf3{bottom:508.320000pt;}
.yc7{bottom:508.640000pt;}
.y14d{bottom:512.480000pt;}
.y17b{bottom:513.280000pt;}
.y21{bottom:519.360000pt;}
.y11a{bottom:520.160000pt;}
.y96{bottom:521.120000pt;}
.y130{bottom:522.080000pt;}
.y4f{bottom:522.400000pt;}
.yf2{bottom:527.200000pt;}
.yc6{bottom:527.360000pt;}
.y14c{bottom:530.880000pt;}
.y17a{bottom:531.680000pt;}
.y20{bottom:537.760000pt;}
.y119{bottom:538.560000pt;}
.y95{bottom:539.520000pt;}
.y4e{bottom:540.800000pt;}
.yf1{bottom:545.920000pt;}
.yc5{bottom:547.840000pt;}
.y14b{bottom:549.280000pt;}
.y179{bottom:550.080000pt;}
.y1f{bottom:556.160000pt;}
.y118{bottom:556.960000pt;}
.y94{bottom:557.920000pt;}
.y4d{bottom:559.200000pt;}
.yf0{bottom:564.800000pt;}
.yc4{bottom:566.720000pt;}
.y14a{bottom:567.680000pt;}
.y178{bottom:568.480000pt;}
.y1e{bottom:574.560000pt;}
.y117{bottom:575.360000pt;}
.y93{bottom:576.320000pt;}
.y4c{bottom:577.600000pt;}
.yef{bottom:583.200000pt;}
.yc3{bottom:585.600000pt;}
.y149{bottom:586.080000pt;}
.y177{bottom:586.880000pt;}
.y1d{bottom:592.960000pt;}
.y116{bottom:593.760000pt;}
.y92{bottom:594.720000pt;}
.y4b{bottom:596.000000pt;}
.yee{bottom:601.600000pt;}
.yc1{bottom:603.840000pt;}
.yc2{bottom:604.480000pt;}
.y176{bottom:605.280000pt;}
.y1c{bottom:611.360000pt;}
.y115{bottom:612.160000pt;}
.y91{bottom:613.120000pt;}
.y4a{bottom:614.400000pt;}
.y175{bottom:619.840000pt;}
.yed{bottom:622.080000pt;}
.ybf{bottom:622.880000pt;}
.yc0{bottom:623.520000pt;}
.y1b{bottom:629.760000pt;}
.y114{bottom:630.560000pt;}
.y90{bottom:631.520000pt;}
.y49{bottom:632.800000pt;}
.yec{bottom:640.960000pt;}
.y148{bottom:641.280000pt;}
.ybe{bottom:641.760000pt;}
.y1a{bottom:648.160000pt;}
.y113{bottom:648.960000pt;}
.y8f{bottom:649.760000pt;}
.y48{bottom:651.200000pt;}
.yeb{bottom:659.680000pt;}
.ybc{bottom:661.760000pt;}
.ybd{bottom:662.400000pt;}
.y19{bottom:666.560000pt;}
.y112{bottom:667.360000pt;}
.y8e{bottom:668.160000pt;}
.y47{bottom:669.600000pt;}
.y147{bottom:678.080000pt;}
.yea{bottom:678.400000pt;}
.ybb{bottom:682.560000pt;}
.y18{bottom:684.960000pt;}
.y111{bottom:685.760000pt;}
.y8d{bottom:686.560000pt;}
.y46{bottom:688.000000pt;}
.y146{bottom:696.480000pt;}
.ye9{bottom:697.280000pt;}
.yba{bottom:703.200000pt;}
.y17{bottom:703.360000pt;}
.y110{bottom:704.160000pt;}
.y8c{bottom:704.960000pt;}
.y45{bottom:706.400000pt;}
.y145{bottom:714.880000pt;}
.ye8{bottom:715.680000pt;}
.y16{bottom:721.760000pt;}
.y10f{bottom:722.560000pt;}
.y8b{bottom:723.360000pt;}
.yb9{bottom:723.840000pt;}
.y44{bottom:724.800000pt;}
.y144{bottom:733.280000pt;}
.ye7{bottom:734.080000pt;}
.y15{bottom:740.160000pt;}
.y10e{bottom:740.960000pt;}
.y8a{bottom:741.760000pt;}
.yb8{bottom:742.880000pt;}
.y43{bottom:743.200000pt;}
.y143{bottom:751.680000pt;}
.ye6{bottom:752.480000pt;}
.y14{bottom:758.560000pt;}
.y10d{bottom:759.360000pt;}
.y89{bottom:760.160000pt;}
.yb7{bottom:761.280000pt;}
.y42{bottom:761.600000pt;}
.y142{bottom:770.080000pt;}
.ye5{bottom:770.880000pt;}
.y13{bottom:776.960000pt;}
.y10c{bottom:777.760000pt;}
.y88{bottom:778.560000pt;}
.yb6{bottom:779.680000pt;}
.y41{bottom:780.000000pt;}
.y141{bottom:788.480000pt;}
.ye4{bottom:789.760000pt;}
.y12{bottom:795.360000pt;}
.y10b{bottom:796.160000pt;}
.y87{bottom:796.960000pt;}
.yb5{bottom:798.080000pt;}
.y40{bottom:798.400000pt;}
.y140{bottom:806.880000pt;}
.ye3{bottom:809.760000pt;}
.y11{bottom:813.760000pt;}
.y86{bottom:815.680000pt;}
.y10a{bottom:816.160000pt;}
.yb4{bottom:816.320000pt;}
.y3f{bottom:816.800000pt;}
.y13f{bottom:825.280000pt;}
.ye2{bottom:829.600000pt;}
.y10{bottom:832.160000pt;}
.y85{bottom:834.560000pt;}
.y3e{bottom:835.200000pt;}
.y13e{bottom:843.680000pt;}
.ye1{bottom:847.840000pt;}
.yf{bottom:850.560000pt;}
.y84{bottom:852.960000pt;}
.y3d{bottom:853.600000pt;}
.y13d{bottom:862.080000pt;}
.ye0{bottom:866.720000pt;}
.ye{bottom:868.960000pt;}
.y83{bottom:871.360000pt;}
.y3c{bottom:872.000000pt;}
.y13c{bottom:880.480000pt;}
.ydf{bottom:887.200000pt;}
.yd{bottom:887.360000pt;}
.y82{bottom:889.760000pt;}
.y3b{bottom:890.400000pt;}
.y13b{bottom:898.880000pt;}
.yc{bottom:905.760000pt;}
.yde{bottom:906.240000pt;}
.y3{bottom:906.560000pt;}
.y81{bottom:908.160000pt;}
.y134{bottom:908.480000pt;}
.y3a{bottom:908.800000pt;}
.y13a{bottom:917.280000pt;}
.ydd{bottom:924.480000pt;}
.y80{bottom:926.400000pt;}
.y1b5{bottom:926.880000pt;}
.y39{bottom:927.200000pt;}
.y138{bottom:934.560000pt;}
.y137{bottom:938.560000pt;}
.yb{bottom:942.720000pt;}
.ydc{bottom:944.960000pt;}
.y7f{bottom:945.120000pt;}
.y1b4{bottom:945.280000pt;}
.y38{bottom:945.600000pt;}
.y2{bottom:949.280000pt;}
.y1{bottom:1004.320000pt;}
.h13{height:0.000000pt;}
.h7{height:18.400000pt;}
.h12{height:18.401333pt;}
.h11{height:36.798667pt;}
.ha{height:43.375000pt;}
.h8{height:44.468750pt;}
.h5{height:46.625000pt;}
.h9{height:50.748750pt;}
.h4{height:56.891250pt;}
.h10{height:59.234062pt;}
.h3{height:81.203750pt;}
.he{height:99.906250pt;}
.hf{height:102.466250pt;}
.h2{height:121.562500pt;}
.hb{height:129.986250pt;}
.hd{height:142.786250pt;}
.hc{height:191.426250pt;}
.h6{height:1056.000000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:8.000000pt;}
.w4{width:16.000000pt;}
.w5{width:625.920000pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:0.960000pt;}
.x1a{left:95.040000pt;}
.x7{left:96.000000pt;}
.x4{left:106.720000pt;}
.x8{left:144.000000pt;}
.x6{left:152.000000pt;}
.xf{left:153.440000pt;}
.x15{left:185.440000pt;}
.x10{left:203.840000pt;}
.x16{left:275.520000pt;}
.xa{left:295.360000pt;}
.x13{left:299.520000pt;}
.x12{left:336.480000pt;}
.x2{left:344.640000pt;}
.xb{left:372.800000pt;}
.x3{left:394.880000pt;}
.x9{left:396.000000pt;}
.x17{left:397.920000pt;}
.x1d{left:424.160000pt;}
.x1{left:435.520000pt;}
.x18{left:442.720000pt;}
.xc{left:447.200000pt;}
.xd{left:467.360000pt;}
.xe{left:487.360000pt;}
.x14{left:494.400000pt;}
.x11{left:584.960000pt;}
.x19{left:704.000000pt;}
.x5{left:712.000000pt;}
.x1c{left:720.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; }
  