
    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_ff86d0eecb2c1c52b430a43d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_7b6ffb5a613b714690f4fdb3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_f692ad4e90bbef9e04bfcb02.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_c0763de228f3184072c15446.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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_5a174dd8da4a5cebf36dd27a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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_c724bc09daca8fb964a3e84d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.922852;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_dbaee13426752509507e1197.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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_cbd07a3537808a38d3fa6046.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1d1db9b6bfd82d9142c55f02.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c29b5713df4760a0986af02e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e97927eca7218dafefc81d1b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7856d0fa4b3665ac7e205117.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_66ece801d605d5c0a5df243b.woff2')format("woff");}.fff{font-family:fff;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_96a61588aec01e4890a0ee71.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.592000;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);}
.m2{transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250307,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);}
.v8{vertical-align:-91.440000px;}
.v9{vertical-align:-86.412960px;}
.va{vertical-align:-72.727920px;}
.v6{vertical-align:-69.142320px;}
.vb{vertical-align:-67.615920px;}
.v7{vertical-align:-59.760000px;}
.v2{vertical-align:-15.120000px;}
.v3{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:27.360000px;}
.v4{vertical-align:48.262320px;}
.ls4a{letter-spacing:-2.408182px;}
.ls67{letter-spacing:-2.031840px;}
.ls4d{letter-spacing:-1.806136px;}
.ls5f{letter-spacing:-1.494000px;}
.ls61{letter-spacing:-1.374480px;}
.ls5e{letter-spacing:-1.314720px;}
.ls60{letter-spacing:-1.195200px;}
.ls48{letter-spacing:-1.149359px;}
.ls4b{letter-spacing:-1.039897px;}
.ls2c{letter-spacing:-0.936000px;}
.ls53{letter-spacing:-0.868320px;}
.lse{letter-spacing:-0.864000px;}
.ls4c{letter-spacing:-0.820971px;}
.ls3e{letter-spacing:-0.792000px;}
.ls63{letter-spacing:-0.776880px;}
.ls2a{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.673920px;}
.ls65{letter-spacing:-0.657360px;}
.ls47{letter-spacing:-0.656777px;}
.ls4e{letter-spacing:-0.656774px;}
.ls3d{letter-spacing:-0.648000px;}
.ls62{letter-spacing:-0.597600px;}
.ls10{letter-spacing:-0.576000px;}
.ls51{letter-spacing:-0.504000px;}
.ls55{letter-spacing:-0.482400px;}
.ls36{letter-spacing:-0.432000px;}
.ls66{letter-spacing:-0.418320px;}
.ls14{letter-spacing:-0.397440px;}
.ls2b{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.336960px;}
.ls13{letter-spacing:-0.331200px;}
.ls15{letter-spacing:-0.298800px;}
.ls52{letter-spacing:-0.289440px;}
.ls37{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.287280px;}
.ls21{letter-spacing:-0.263520px;}
.ls54{letter-spacing:-0.241200px;}
.ls2d{letter-spacing:-0.239040px;}
.lsf{letter-spacing:-0.216000px;}
.ls35{letter-spacing:-0.191520px;}
.ls31{letter-spacing:-0.179280px;}
.ls27{letter-spacing:-0.168480px;}
.ls68{letter-spacing:-0.162000px;}
.ls3b{letter-spacing:-0.144720px;}
.ls46{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.132480px;}
.ls2f{letter-spacing:-0.119520px;}
.ls49{letter-spacing:-0.109463px;}
.ls44{letter-spacing:-0.095760px;}
.ls22{letter-spacing:-0.084240px;}
.ls29{letter-spacing:-0.072000px;}
.ls5d{letter-spacing:-0.066240px;}
.ls16{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.007440px;}
.ls9{letter-spacing:0.048240px;}
.lsc{letter-spacing:0.059760px;}
.ls19{letter-spacing:0.072000px;}
.ls4f{letter-spacing:0.079200px;}
.ls18{letter-spacing:0.084240px;}
.ls50{letter-spacing:0.086400px;}
.ls58{letter-spacing:0.100800px;}
.lsb{letter-spacing:0.119520px;}
.ls17{letter-spacing:0.131760px;}
.ls38{letter-spacing:0.136800px;}
.ls2{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.168480px;}
.ls1f{letter-spacing:0.179280px;}
.ls57{letter-spacing:0.191520px;}
.ls4{letter-spacing:0.192000px;}
.ls3a{letter-spacing:0.192960px;}
.ls20{letter-spacing:0.215136px;}
.lsd{letter-spacing:0.216000px;}
.ls39{letter-spacing:0.217440px;}
.ls2e{letter-spacing:0.239040px;}
.ls56{letter-spacing:0.241200px;}
.ls24{letter-spacing:0.252720px;}
.ls8{letter-spacing:0.264960px;}
.ls5c{letter-spacing:0.270000px;}
.lsa{letter-spacing:0.270720px;}
.ls32{letter-spacing:0.287280px;}
.ls1{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.298800px;}
.ls11{letter-spacing:0.336960px;}
.ls3c{letter-spacing:0.337680px;}
.ls34{letter-spacing:0.360000px;}
.ls40{letter-spacing:0.411768px;}
.ls3{letter-spacing:0.430560px;}
.ls6{letter-spacing:0.470304px;}
.ls41{letter-spacing:0.478800px;}
.ls43{letter-spacing:0.537120px;}
.ls33{letter-spacing:0.574560px;}
.ls64{letter-spacing:0.717120px;}
.ls5a{letter-spacing:0.836640px;}
.ls59{letter-spacing:0.956160px;}
.ls1d{letter-spacing:1.440000px;}
.ls42{letter-spacing:4.464000px;}
.ls7{letter-spacing:8.942400px;}
.ls1a{letter-spacing:10.080000px;}
.ls45{letter-spacing:11.586960px;}
.ls1e{letter-spacing:12.240000px;}
.ls1c{letter-spacing:14.400000px;}
.ls1b{letter-spacing:29.520000px;}
.ls3f{letter-spacing:38.304000px;}
.ls5b{letter-spacing:443.598480px;}
.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;}
}
.ws1{word-spacing:-60.264000px;}
.ws7{word-spacing:-53.634720px;}
.ws6{word-spacing:-53.442720px;}
.ws8{word-spacing:-52.866720px;}
.ws7f{word-spacing:-23.940000px;}
.ws7d{word-spacing:-23.844240px;}
.ws9{word-spacing:-23.755680px;}
.ws63{word-spacing:-23.748480px;}
.ws32{word-spacing:-23.652720px;}
.ws30{word-spacing:-21.144240px;}
.ws31{word-spacing:-20.891520px;}
.ws2f{word-spacing:-20.386080px;}
.ws3{word-spacing:-20.304000px;}
.ws4{word-spacing:-20.160000px;}
.ws2{word-spacing:-20.016000px;}
.ws5{word-spacing:-19.800000px;}
.ws2e{word-spacing:-19.440000px;}
.wsb{word-spacing:-18.414720px;}
.ws67{word-spacing:-18.360000px;}
.ws36{word-spacing:-18.288000px;}
.ws38{word-spacing:-18.216000px;}
.ws92{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.083520px;}
.ws37{word-spacing:-18.072000px;}
.ws33{word-spacing:-18.000000px;}
.ws35{word-spacing:-17.928000px;}
.ws9e{word-spacing:-17.856000px;}
.ws34{word-spacing:-17.784000px;}
.ws66{word-spacing:-17.712000px;}
.ws7a{word-spacing:-17.640000px;}
.ws65{word-spacing:-17.568000px;}
.ws73{word-spacing:-17.352000px;}
.ws64{word-spacing:-17.280000px;}
.ws74{word-spacing:-17.208000px;}
.ws39{word-spacing:-17.064000px;}
.ws3c{word-spacing:-15.238800px;}
.wsa0{word-spacing:-15.102720px;}
.wsa1{word-spacing:-15.036480px;}
.ws3d{word-spacing:-14.940000px;}
.ws3b{word-spacing:-14.880240px;}
.ws3e{word-spacing:-14.820480px;}
.wsa3{word-spacing:-14.461920px;}
.wsa6{word-spacing:-14.342400px;}
.wsa7{word-spacing:-13.864320px;}
.wsf{word-spacing:-13.744800px;}
.wsa9{word-spacing:-13.685040px;}
.ws11{word-spacing:-13.625280px;}
.ws82{word-spacing:-13.573387px;}
.wsa8{word-spacing:-13.565520px;}
.wse{word-spacing:-13.326480px;}
.wsa4{word-spacing:-13.027680px;}
.ws80{word-spacing:-13.026073px;}
.wsa5{word-spacing:-12.848400px;}
.ws83{word-spacing:-12.642953px;}
.ws6f{word-spacing:-12.397680px;}
.wsac{word-spacing:-12.312000px;}
.wsa2{word-spacing:-12.310560px;}
.wsab{word-spacing:-12.150000px;}
.ws99{word-spacing:-12.108240px;}
.ws97{word-spacing:-12.060000px;}
.ws94{word-spacing:-11.915280px;}
.ws96{word-spacing:-11.818800px;}
.ws9a{word-spacing:-11.770560px;}
.wsc{word-spacing:-11.609280px;}
.wsaa{word-spacing:-11.593440px;}
.ws98{word-spacing:-11.577600px;}
.ws81{word-spacing:-11.274668px;}
.ws95{word-spacing:-11.191680px;}
.wsd{word-spacing:-11.046960px;}
.ws6e{word-spacing:-10.440000px;}
.ws3a{word-spacing:-9.720000px;}
.ws10{word-spacing:-6.894720px;}
.ws29{word-spacing:-3.841920px;}
.ws25{word-spacing:-3.179520px;}
.ws21{word-spacing:-2.450880px;}
.ws44{word-spacing:-1.095120px;}
.ws7c{word-spacing:-1.080000px;}
.ws18{word-spacing:-1.074000px;}
.ws71{word-spacing:-1.008000px;}
.ws2a{word-spacing:-0.993600px;}
.ws15{word-spacing:-0.984000px;}
.ws6a{word-spacing:-0.792000px;}
.ws68{word-spacing:-0.720000px;}
.ws78{word-spacing:-0.670320px;}
.ws17{word-spacing:-0.654000px;}
.ws77{word-spacing:-0.648000px;}
.ws8a{word-spacing:-0.504000px;}
.ws79{word-spacing:-0.478800px;}
.ws43{word-spacing:-0.421200px;}
.ws16{word-spacing:-0.384000px;}
.ws69{word-spacing:-0.360000px;}
.ws45{word-spacing:-0.336960px;}
.wsb4{word-spacing:-0.324000px;}
.ws1d{word-spacing:-0.288000px;}
.ws20{word-spacing:-0.264960px;}
.ws9c{word-spacing:-0.241200px;}
.ws70{word-spacing:-0.216000px;}
.ws14{word-spacing:-0.192000px;}
.ws1e{word-spacing:-0.180000px;}
.ws12{word-spacing:-0.144000px;}
.ws41{word-spacing:-0.131760px;}
.ws62{word-spacing:-0.119520px;}
.ws4d{word-spacing:-0.072000px;}
.ws2c{word-spacing:-0.059760px;}
.ws0{word-spacing:0.000000px;}
.ws2d{word-spacing:0.059760px;}
.ws5e{word-spacing:0.072000px;}
.ws42{word-spacing:0.084240px;}
.ws6b{word-spacing:0.095760px;}
.wsb3{word-spacing:0.108000px;}
.ws8d{word-spacing:0.109463px;}
.ws60{word-spacing:0.119520px;}
.ws23{word-spacing:0.132480px;}
.ws8b{word-spacing:0.144000px;}
.ws61{word-spacing:0.179280px;}
.ws6d{word-spacing:0.216000px;}
.ws40{word-spacing:0.263520px;}
.ws6c{word-spacing:0.287280px;}
.ws75{word-spacing:0.288000px;}
.ws9d{word-spacing:0.289440px;}
.wsb2{word-spacing:0.298800px;}
.ws46{word-spacing:0.336960px;}
.ws72{word-spacing:0.337680px;}
.ws5b{word-spacing:0.360000px;}
.ws1a{word-spacing:0.384000px;}
.ws3f{word-spacing:0.395280px;}
.ws27{word-spacing:0.397440px;}
.ws5f{word-spacing:0.418320px;}
.ws1c{word-spacing:0.420000px;}
.ws4f{word-spacing:0.432000px;}
.ws1b{word-spacing:0.444000px;}
.ws1f{word-spacing:0.463680px;}
.ws9b{word-spacing:0.482400px;}
.ws93{word-spacing:0.504000px;}
.ws7b{word-spacing:0.576000px;}
.ws76{word-spacing:0.648000px;}
.ws8f{word-spacing:0.656777px;}
.wsb0{word-spacing:0.657360px;}
.ws2b{word-spacing:0.662400px;}
.wsaf{word-spacing:0.717120px;}
.ws4e{word-spacing:0.720000px;}
.ws7e{word-spacing:0.792000px;}
.ws90{word-spacing:0.820971px;}
.ws9f{word-spacing:0.861840px;}
.ws19{word-spacing:0.900000px;}
.ws13{word-spacing:1.008000px;}
.ws8e{word-spacing:1.039897px;}
.ws8c{word-spacing:1.149359px;}
.ws51{word-spacing:1.152000px;}
.ws24{word-spacing:1.192320px;}
.wsad{word-spacing:1.195200px;}
.ws91{word-spacing:1.354597px;}
.ws5a{word-spacing:1.368000px;}
.wsae{word-spacing:1.374480px;}
.ws50{word-spacing:1.440000px;}
.ws59{word-spacing:1.512000px;}
.ws26{word-spacing:1.920960px;}
.wsb1{word-spacing:2.031840px;}
.ws56{word-spacing:2.592000px;}
.ws5d{word-spacing:2.880000px;}
.ws47{word-spacing:3.528000px;}
.ws48{word-spacing:3.600000px;}
.ws49{word-spacing:4.752000px;}
.ws28{word-spacing:4.769280px;}
.ws4a{word-spacing:5.040000px;}
.ws54{word-spacing:5.760000px;}
.ws22{word-spacing:9.074880px;}
.ws4c{word-spacing:9.792000px;}
.ws4b{word-spacing:10.152000px;}
.ws5c{word-spacing:12.240000px;}
.ws57{word-spacing:14.112000px;}
.ws58{word-spacing:14.400000px;}
.ws55{word-spacing:18.000000px;}
.ws53{word-spacing:29.232000px;}
.ws52{word-spacing:29.520000px;}
.ws89{word-spacing:73.723196px;}
.ws87{word-spacing:91.346707px;}
.ws84{word-spacing:111.761519px;}
.ws85{word-spacing:178.916947px;}
.ws88{word-spacing:181.653517px;}
.ws86{word-spacing:206.282647px;}
._22{margin-left:-15.102720px;}
._21{margin-left:-13.625280px;}
._9{margin-left:-3.229153px;}
._0{margin-left:-1.440000px;}
._2{width:1.009440px;}
._1{width:2.016000px;}
._3{width:3.850560px;}
._6{width:9.646560px;}
._8{width:14.398560px;}
._7{width:28.800000px;}
._4{width:39.740400px;}
._5{width:50.486400px;}
._20{width:82.794240px;}
._12{width:103.886490px;}
._c{width:114.826477px;}
._1b{width:153.241628px;}
._13{width:164.194200px;}
._1f{width:172.398437px;}
._d{width:177.877050px;}
._17{width:183.235254px;}
._1c{width:186.081287px;}
._1e{width:194.296470px;}
._f{width:197.033040px;}
._e{width:199.769610px;}
._18{width:207.979320px;}
._15{width:210.710417px;}
._1a{width:213.780848px;}
._14{width:218.925600px;}
._b{width:221.662170px;}
._16{width:227.463698px;}
._11{width:235.345020px;}
._1d{width:238.196526px;}
._19{width:240.921330px;}
._a{width:244.023038px;}
._10{width:249.027870px;}
.fc5{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc1{color:rgb(227,5,19);}
.fc4{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:30.240000px;}
.fsb{font-size:38.880000px;}
.fs13{font-size:41.048400px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fse{font-size:45.360000px;}
.fsa{font-size:48.240000px;}
.fs14{font-size:54.000000px;}
.fs12{font-size:54.731400px;}
.fsc{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs10{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.fs11{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fsf{font-size:131.760000px;}
.fs6{font-size:192.240000px;}
.fs5{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y101{bottom:3.420900px;}
.yff{bottom:3.421545px;}
.yfa{bottom:3.421650px;}
.yfd{bottom:3.421740px;}
.y24{bottom:3.780000px;}
.y6d{bottom:3.960000px;}
.y10e{bottom:4.105200px;}
.y22{bottom:12.420000px;}
.yfe{bottom:21.209250px;}
.yfc{bottom:21.209445px;}
.y10d{bottom:21.892950px;}
.yfb{bottom:38.997150px;}
.y10c{bottom:39.680655px;}
.y6c{bottom:53.100000px;}
.y6b{bottom:57.240000px;}
.y10b{bottom:57.468360px;}
.y5{bottom:66.525004px;}
.y10a{bottom:75.256065px;}
.y3d{bottom:91.440000px;}
.y109{bottom:93.043770px;}
.y4{bottom:97.125005px;}
.y1aa{bottom:105.300000px;}
.y108{bottom:110.831475px;}
.y3c{bottom:114.474420px;}
.y1a9{bottom:121.855500px;}
.y107{bottom:128.619180px;}
.y168{bottom:130.864860px;}
.y6a{bottom:131.566140px;}
.y164{bottom:133.560000px;}
.yb4{bottom:133.920000px;}
.y3b{bottom:135.540000px;}
.y1a8{bottom:138.420000px;}
.y20{bottom:139.264499px;}
.y127{bottom:139.860000px;}
.y148{bottom:140.760000px;}
.ydd{bottom:140.940000px;}
.yb3{bottom:145.080000px;}
.y106{bottom:146.406885px;}
.y167{bottom:147.420000px;}
.yb5{bottom:147.780000px;}
.y3a{bottom:148.320000px;}
.y69{bottom:148.493160px;}
.y163{bottom:153.720000px;}
.y1a7{bottom:154.980000px;}
.y12d{bottom:159.840000px;}
.y126{bottom:160.020000px;}
.y147{bottom:160.920000px;}
.ydc{bottom:161.280000px;}
.y105{bottom:164.194590px;}
.y68{bottom:165.225960px;}
.y9c{bottom:167.940000px;}
.y1a6{bottom:171.355500px;}
.y110{bottom:172.260000px;}
.y162{bottom:174.060000px;}
.y166{bottom:174.420000px;}
.y17a{bottom:177.660000px;}
.y125{bottom:180.360000px;}
.y146{bottom:181.260000px;}
.ydb{bottom:181.440000px;}
.y104{bottom:181.982445px;}
.y67{bottom:182.152980px;}
.y165{bottom:185.580000px;}
.y10f{bottom:187.740000px;}
.y9b{bottom:188.280000px;}
.y102{bottom:188.352000px;}
.y12c{bottom:189.180000px;}
.y161{bottom:194.220000px;}
.y17{bottom:196.933500px;}
.y179{bottom:197.820000px;}
.y39{bottom:199.388160px;}
.y103{bottom:199.770150px;}
.y124{bottom:200.520000px;}
.y145{bottom:201.420000px;}
.yda{bottom:201.780000px;}
.y66{bottom:202.860000px;}
.y1a5{bottom:204.823980px;}
.y9a{bottom:208.440000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y12b{bottom:213.660000px;}
.y160{bottom:214.560000px;}
.y65{bottom:216.000000px;}
.y178{bottom:218.160000px;}
.y38{bottom:220.452480px;}
.y123{bottom:220.860000px;}
.y144{bottom:221.760000px;}
.yd9{bottom:221.940000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y1a4{bottom:222.826680px;}
.y99{bottom:228.780000px;}
.y1d{bottom:234.718504px;}
.y15f{bottom:234.720000px;}
.y14{bottom:234.733496px;}
.y177{bottom:238.320000px;}
.y122{bottom:241.020000px;}
.y37{bottom:241.516800px;}
.y143{bottom:241.920000px;}
.yd8{bottom:242.280000px;}
.y98{bottom:248.940000px;}
.y15e{bottom:255.060000px;}
.y176{bottom:258.660000px;}
.y1a3{bottom:259.011360px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y121{bottom:261.360000px;}
.y142{bottom:262.260000px;}
.y36{bottom:262.398960px;}
.y64{bottom:262.440000px;}
.y97{bottom:269.280000px;}
.yc6{bottom:270.900000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y15d{bottom:275.220000px;}
.y175{bottom:278.820000px;}
.y120{bottom:281.520000px;}
.y141{bottom:282.420000px;}
.y63{bottom:282.780000px;}
.y35{bottom:283.463280px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y96{bottom:289.440000px;}
.y15c{bottom:295.560000px;}
.yc5{bottom:296.280000px;}
.y174{bottom:299.160000px;}
.y11f{bottom:301.860000px;}
.y140{bottom:302.760000px;}
.y62{bottom:302.940000px;}
.y1a2{bottom:303.114240px;}
.y34{bottom:304.527600px;}
.y95{bottom:309.780000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y15b{bottom:315.720000px;}
.yc4{bottom:316.440000px;}
.y173{bottom:319.320000px;}
.y11e{bottom:322.020000px;}
.y18{bottom:322.918500px;}
.y13f{bottom:322.920000px;}
.yf{bottom:322.933500px;}
.y61{bottom:323.280000px;}
.y33{bottom:325.409760px;}
.y94{bottom:329.940000px;}
.y15a{bottom:336.060000px;}
.yc3{bottom:336.780000px;}
.y172{bottom:339.660000px;}
.y11d{bottom:342.360000px;}
.y13e{bottom:343.260000px;}
.y60{bottom:343.440000px;}
.y32{bottom:346.474080px;}
.y1a1{bottom:346.500000px;}
.ye{bottom:348.133500px;}
.y93{bottom:350.280000px;}
.y159{bottom:356.220000px;}
.yc2{bottom:356.940000px;}
.y171{bottom:359.820000px;}
.y11c{bottom:362.520000px;}
.y13d{bottom:363.420000px;}
.y1a0{bottom:363.597300px;}
.y5f{bottom:363.780000px;}
.y31{bottom:367.538400px;}
.y92{bottom:370.440000px;}
.y158{bottom:376.560000px;}
.yc1{bottom:377.280000px;}
.y170{bottom:380.160000px;}
.y11b{bottom:382.860000px;}
.y13c{bottom:383.760000px;}
.y5e{bottom:383.940000px;}
.yd{bottom:386.785499px;}
.y30{bottom:388.420560px;}
.y91{bottom:390.780000px;}
.y157{bottom:396.720000px;}
.yc0{bottom:397.440000px;}
.y16f{bottom:400.320000px;}
.y100{bottom:402.489000px;}
.y11a{bottom:403.020000px;}
.y13b{bottom:403.920000px;}
.y5d{bottom:404.280000px;}
.y19f{bottom:404.460000px;}
.yc{bottom:408.044999px;}
.y2f{bottom:409.484880px;}
.y90{bottom:410.940000px;}
.y156{bottom:417.060000px;}
.ybf{bottom:417.780000px;}
.yf9{bottom:420.276000px;}
.y16e{bottom:420.660000px;}
.y19e{bottom:423.169740px;}
.y119{bottom:423.360000px;}
.y5c{bottom:424.440000px;}
.y2e{bottom:430.549200px;}
.y8f{bottom:431.280000px;}
.y13a{bottom:433.080000px;}
.y155{bottom:437.220000px;}
.ybe{bottom:437.940000px;}
.y16d{bottom:440.820000px;}
.y19d{bottom:441.172440px;}
.y118{bottom:443.520000px;}
.y5b{bottom:444.780000px;}
.y2d{bottom:451.431360px;}
.y8e{bottom:451.440000px;}
.y139{bottom:453.420000px;}
.y154{bottom:457.560000px;}
.ybd{bottom:458.280000px;}
.y16c{bottom:461.160000px;}
.y117{bottom:463.860000px;}
.y5a{bottom:464.940000px;}
.y8d{bottom:471.780000px;}
.y2c{bottom:472.495680px;}
.y138{bottom:473.760000px;}
.y153{bottom:477.720000px;}
.ybc{bottom:478.440000px;}
.y16b{bottom:481.320000px;}
.y116{bottom:484.020000px;}
.y59{bottom:485.280000px;}
.yf8{bottom:487.440000px;}
.y19c{bottom:491.580000px;}
.y8c{bottom:491.940000px;}
.y2b{bottom:493.560000px;}
.y137{bottom:493.920000px;}
.y152{bottom:498.060000px;}
.ybb{bottom:498.780000px;}
.y16a{bottom:501.660000px;}
.y115{bottom:504.360000px;}
.y58{bottom:505.440000px;}
.y19b{bottom:507.240000px;}
.yf7{bottom:507.780000px;}
.y8b{bottom:512.280000px;}
.y136{bottom:514.260000px;}
.y169{bottom:517.140000px;}
.y151{bottom:518.220000px;}
.yba{bottom:518.940000px;}
.yb{bottom:520.864502px;}
.y114{bottom:524.520000px;}
.y57{bottom:525.780000px;}
.yf6{bottom:527.940000px;}
.y8a{bottom:532.440000px;}
.y135{bottom:534.420000px;}
.y2a{bottom:536.760000px;}
.y19a{bottom:538.020000px;}
.y150{bottom:538.560000px;}
.ya{bottom:538.864499px;}
.yb9{bottom:539.280000px;}
.y113{bottom:544.860000px;}
.y56{bottom:545.940000px;}
.yf5{bottom:548.280000px;}
.y89{bottom:552.780000px;}
.y134{bottom:554.760000px;}
.y9{bottom:556.864499px;}
.y14f{bottom:558.720000px;}
.yb8{bottom:559.440000px;}
.y112{bottom:565.020000px;}
.y55{bottom:566.280000px;}
.y199{bottom:566.461620px;}
.yf4{bottom:568.440000px;}
.y88{bottom:572.940000px;}
.y133{bottom:574.920000px;}
.y14e{bottom:579.060000px;}
.yb7{bottom:579.780000px;}
.y111{bottom:580.680000px;}
.y54{bottom:586.440000px;}
.yf3{bottom:588.780000px;}
.yb2{bottom:593.280000px;}
.y87{bottom:594.900000px;}
.y132{bottom:595.260000px;}
.y14d{bottom:599.220000px;}
.y198{bottom:599.404320px;}
.yb6{bottom:599.940000px;}
.y53{bottom:606.780000px;}
.yf2{bottom:608.940000px;}
.yb1{bottom:613.440000px;}
.y131{bottom:615.420000px;}
.y14c{bottom:619.200000px;}
.y86{bottom:620.280000px;}
.y52{bottom:626.940000px;}
.yf1{bottom:629.280000px;}
.yb0{bottom:633.780000px;}
.y130{bottom:635.760000px;}
.y14b{bottom:639.720000px;}
.y85{bottom:640.440000px;}
.y29{bottom:641.700000px;}
.y12a{bottom:643.680000px;}
.y8{bottom:645.510000px;}
.yd7{bottom:647.280000px;}
.y51{bottom:648.180000px;}
.yf0{bottom:649.440000px;}
.y197{bottom:651.604680px;}
.yaf{bottom:653.940000px;}
.y84{bottom:660.780000px;}
.y12f{bottom:664.920000px;}
.y14a{bottom:665.100000px;}
.y7{bottom:666.771000px;}
.yd6{bottom:667.440000px;}
.yef{bottom:669.780000px;}
.y50{bottom:672.480000px;}
.y129{bottom:672.840000px;}
.yae{bottom:674.280000px;}
.y196{bottom:677.884140px;}
.y83{bottom:680.940000px;}
.y17e{bottom:682.555680px;}
.yd5{bottom:687.780000px;}
.y28{bottom:688.680000px;}
.y12e{bottom:689.580000px;}
.yee{bottom:689.940000px;}
.yad{bottom:694.440000px;}
.y128{bottom:697.680000px;}
.y4f{bottom:697.860000px;}
.y149{bottom:698.760000px;}
.y82{bottom:701.280000px;}
.y195{bottom:703.984320px;}
.yd4{bottom:707.940000px;}
.y17d{bottom:709.560000px;}
.yed{bottom:710.280000px;}
.yac{bottom:714.780000px;}
.y4e{bottom:719.075520px;}
.y81{bottom:721.440000px;}
.y6{bottom:726.298500px;}
.yd3{bottom:728.280000px;}
.y194{bottom:730.263780px;}
.yec{bottom:730.440000px;}
.yab{bottom:734.940000px;}
.y80{bottom:741.780000px;}
.y4d{bottom:742.662720px;}
.y27{bottom:743.940000px;}
.yd2{bottom:748.440000px;}
.yeb{bottom:750.780000px;}
.y3{bottom:752.599495px;}
.yaa{bottom:755.280000px;}
.y193{bottom:756.543240px;}
.y7f{bottom:761.940000px;}
.y4c{bottom:766.249920px;}
.yd1{bottom:768.780000px;}
.yea{bottom:770.940000px;}
.ya9{bottom:775.440000px;}
.y7e{bottom:782.280000px;}
.y192{bottom:782.643420px;}
.yd0{bottom:788.940000px;}
.y4b{bottom:789.837120px;}
.ye9{bottom:791.280000px;}
.ya8{bottom:795.780000px;}
.y26{bottom:799.200000px;}
.y7d{bottom:802.440000px;}
.y191{bottom:808.922880px;}
.ycf{bottom:809.280000px;}
.ye8{bottom:811.440000px;}
.y4a{bottom:813.592800px;}
.ya7{bottom:815.940000px;}
.y7c{bottom:822.780000px;}
.yce{bottom:829.440000px;}
.ye7{bottom:831.780000px;}
.y190{bottom:835.202340px;}
.ya6{bottom:836.280000px;}
.y49{bottom:837.180000px;}
.y7b{bottom:842.940000px;}
.ycd{bottom:849.780000px;}
.ye6{bottom:851.940000px;}
.y25{bottom:854.280000px;}
.ya5{bottom:856.440000px;}
.y48{bottom:859.860000px;}
.y18f{bottom:861.302520px;}
.y7a{bottom:863.280000px;}
.ycc{bottom:869.940000px;}
.ye5{bottom:872.280000px;}
.ya4{bottom:876.780000px;}
.y2{bottom:879.369000px;}
.y47{bottom:881.092800px;}
.y79{bottom:883.440000px;}
.y18e{bottom:887.581980px;}
.ycb{bottom:890.280000px;}
.ye4{bottom:892.440000px;}
.ya3{bottom:896.940000px;}
.y78{bottom:903.780000px;}
.y46{bottom:904.680000px;}
.yca{bottom:910.440000px;}
.ye3{bottom:912.780000px;}
.y18d{bottom:913.682160px;}
.ya2{bottom:917.280000px;}
.y77{bottom:923.940000px;}
.yc9{bottom:930.780000px;}
.y45{bottom:931.314420px;}
.yde{bottom:932.400000px;}
.ye2{bottom:932.940000px;}
.ya1{bottom:937.440000px;}
.y18c{bottom:939.961620px;}
.y76{bottom:944.280000px;}
.yc8{bottom:950.940000px;}
.ye1{bottom:953.280000px;}
.y23{bottom:956.880000px;}
.ya0{bottom:957.780000px;}
.y75{bottom:964.440000px;}
.y18b{bottom:966.241080px;}
.y1{bottom:966.726000px;}
.y44{bottom:968.404860px;}
.y17c{bottom:971.280000px;}
.yc7{bottom:972.900000px;}
.ye0{bottom:973.440000px;}
.y9f{bottom:977.940000px;}
.y74{bottom:984.780000px;}
.y184{bottom:991.440000px;}
.y18a{bottom:992.341260px;}
.y17b{bottom:993.060000px;}
.ydf{bottom:995.400000px;}
.y9e{bottom:998.280000px;}
.y21{bottom:1000.080000px;}
.y73{bottom:1004.940000px;}
.y43{bottom:1005.660000px;}
.y183{bottom:1011.780000px;}
.y9d{bottom:1018.440000px;}
.y189{bottom:1018.620720px;}
.y72{bottom:1025.280000px;}
.y182{bottom:1031.940000px;}
.y42{bottom:1038.780000px;}
.y188{bottom:1044.900180px;}
.y71{bottom:1045.440000px;}
.y181{bottom:1052.280000px;}
.y41{bottom:1058.940000px;}
.y70{bottom:1065.780000px;}
.y187{bottom:1071.000360px;}
.y180{bottom:1072.440000px;}
.y40{bottom:1079.280000px;}
.y6f{bottom:1087.555680px;}
.y17f{bottom:1092.780000px;}
.y186{bottom:1097.279820px;}
.y3f{bottom:1099.440000px;}
.y6e{bottom:1114.560000px;}
.y3e{bottom:1119.780000px;}
.y185{bottom:1123.380000px;}
.h26{height:17.103000px;}
.h20{height:20.701500px;}
.h22{height:28.132734px;}
.h13{height:28.445273px;}
.hb{height:29.700000px;}
.h15{height:31.325273px;}
.h7{height:32.130000px;}
.h29{height:34.353983px;}
.h1e{height:34.893984px;}
.h12{height:35.167148px;}
.h25{height:36.478692px;}
.h2b{height:40.372734px;}
.h14{height:43.565273px;}
.h27{height:45.805478px;}
.h6{height:45.900000px;}
.h1b{height:47.988281px;}
.h3{height:48.195000px;}
.h10{height:48.224531px;}
.h1d{height:48.656250px;}
.h1f{height:50.013984px;}
.hc{height:52.417969px;}
.h24{height:52.680000px;}
.he{height:54.162422px;}
.h11{height:54.369782px;}
.h2{height:55.080000px;}
.h2a{height:55.437187px;}
.h19{height:56.146289px;}
.h33{height:57.618000px;}
.h16{height:60.257812px;}
.hf{height:61.329023px;}
.h21{height:62.309531px;}
.h9{height:63.000000px;}
.h2d{height:63.763920px;}
.h31{height:63.774720px;}
.h30{height:63.804960px;}
.h1c{height:63.824414px;}
.h32{height:64.779840px;}
.h23{height:69.715898px;}
.h1a{height:70.501641px;}
.h2f{height:70.678080px;}
.h2e{height:76.824000px;}
.h5{height:78.030000px;}
.h17{height:110.271797px;}
.h18{height:113.340758px;}
.h4{height:119.055004px;}
.hd{height:139.955977px;}
.ha{height:157.253906px;}
.h28{height:284.604000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.h2c{height:1263.060000px;}
.w5{width:8.998500px;}
.w6{width:18.000000px;}
.w8{width:63.018000px;}
.wc{width:64.389000px;}
.wf{width:69.181500px;}
.wb{width:69.183000px;}
.wa{width:71.238000px;}
.wd{width:73.977000px;}
.w9{width:79.458000px;}
.we{width:80.142000px;}
.w7{width:636.343500px;}
.w2{width:637.794021px;}
.w4{width:771.841500px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.w11{width:894.000000px;}
.w10{width:894.060000px;}
.x0{left:0.000000px;}
.x18{left:2.055075px;}
.x20{left:3.425250px;}
.x1f{left:4.794525px;}
.x1c{left:6.850725px;}
.x1d{left:8.905650px;}
.x25{left:10.274100px;}
.x22{left:13.699200px;}
.x15{left:15.754050px;}
.x19{left:17.809500px;}
.x17{left:20.549400px;}
.x1b{left:23.975100px;}
.x26{left:25.343550px;}
.x5{left:84.960000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x2c{left:117.000000px;}
.x6{left:127.620000px;}
.xd{left:137.871000px;}
.x12{left:154.620000px;}
.x2b{left:161.640000px;}
.x13{left:180.720000px;}
.x16{left:188.703000px;}
.x4{left:203.484001px;}
.x9{left:207.026280px;}
.x8{left:228.601980px;}
.x2d{left:231.305940px;}
.x1a{left:252.405000px;}
.x7{left:284.040000px;}
.x1e{left:332.548500px;}
.x10{left:343.620000px;}
.xb{left:363.065580px;}
.xc{left:371.152620px;}
.xf{left:403.920000px;}
.xe{left:411.819480px;}
.xa{left:446.400000px;}
.x3{left:454.959000px;}
.x21{left:474.339000px;}
.x23{left:539.412000px;}
.x24{left:614.074500px;}
.x27{left:694.902000px;}
.x14{left:747.360000px;}
.x11{left:756.360000px;}
.x29{left:758.700000px;}
.x2a{left:763.380000px;}
.x28{left:765.360000px;}
@media print{
.v8{vertical-align:-81.280000pt;}
.v9{vertical-align:-76.811520pt;}
.va{vertical-align:-64.647040pt;}
.v6{vertical-align:-61.459840pt;}
.vb{vertical-align:-60.103040pt;}
.v7{vertical-align:-53.120000pt;}
.v2{vertical-align:-13.440000pt;}
.v3{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:24.320000pt;}
.v4{vertical-align:42.899840pt;}
.ls4a{letter-spacing:-2.140606pt;}
.ls67{letter-spacing:-1.806080pt;}
.ls4d{letter-spacing:-1.605454pt;}
.ls5f{letter-spacing:-1.328000pt;}
.ls61{letter-spacing:-1.221760pt;}
.ls5e{letter-spacing:-1.168640pt;}
.ls60{letter-spacing:-1.062400pt;}
.ls48{letter-spacing:-1.021653pt;}
.ls4b{letter-spacing:-0.924353pt;}
.ls2c{letter-spacing:-0.832000pt;}
.ls53{letter-spacing:-0.771840pt;}
.lse{letter-spacing:-0.768000pt;}
.ls4c{letter-spacing:-0.729752pt;}
.ls3e{letter-spacing:-0.704000pt;}
.ls63{letter-spacing:-0.690560pt;}
.ls2a{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.599040pt;}
.ls65{letter-spacing:-0.584320pt;}
.ls47{letter-spacing:-0.583802pt;}
.ls4e{letter-spacing:-0.583799pt;}
.ls3d{letter-spacing:-0.576000pt;}
.ls62{letter-spacing:-0.531200pt;}
.ls10{letter-spacing:-0.512000pt;}
.ls51{letter-spacing:-0.448000pt;}
.ls55{letter-spacing:-0.428800pt;}
.ls36{letter-spacing:-0.384000pt;}
.ls66{letter-spacing:-0.371840pt;}
.ls14{letter-spacing:-0.353280pt;}
.ls2b{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.299520pt;}
.ls13{letter-spacing:-0.294400pt;}
.ls15{letter-spacing:-0.265600pt;}
.ls52{letter-spacing:-0.257280pt;}
.ls37{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.255360pt;}
.ls21{letter-spacing:-0.234240pt;}
.ls54{letter-spacing:-0.214400pt;}
.ls2d{letter-spacing:-0.212480pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls35{letter-spacing:-0.170240pt;}
.ls31{letter-spacing:-0.159360pt;}
.ls27{letter-spacing:-0.149760pt;}
.ls68{letter-spacing:-0.144000pt;}
.ls3b{letter-spacing:-0.128640pt;}
.ls46{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.117760pt;}
.ls2f{letter-spacing:-0.106240pt;}
.ls49{letter-spacing:-0.097300pt;}
.ls44{letter-spacing:-0.085120pt;}
.ls22{letter-spacing:-0.074880pt;}
.ls29{letter-spacing:-0.064000pt;}
.ls5d{letter-spacing:-0.058880pt;}
.ls16{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.006613pt;}
.ls9{letter-spacing:0.042880pt;}
.lsc{letter-spacing:0.053120pt;}
.ls19{letter-spacing:0.064000pt;}
.ls4f{letter-spacing:0.070400pt;}
.ls18{letter-spacing:0.074880pt;}
.ls50{letter-spacing:0.076800pt;}
.ls58{letter-spacing:0.089600pt;}
.lsb{letter-spacing:0.106240pt;}
.ls17{letter-spacing:0.117120pt;}
.ls38{letter-spacing:0.121600pt;}
.ls2{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.149760pt;}
.ls1f{letter-spacing:0.159360pt;}
.ls57{letter-spacing:0.170240pt;}
.ls4{letter-spacing:0.170667pt;}
.ls3a{letter-spacing:0.171520pt;}
.ls20{letter-spacing:0.191232pt;}
.lsd{letter-spacing:0.192000pt;}
.ls39{letter-spacing:0.193280pt;}
.ls2e{letter-spacing:0.212480pt;}
.ls56{letter-spacing:0.214400pt;}
.ls24{letter-spacing:0.224640pt;}
.ls8{letter-spacing:0.235520pt;}
.ls5c{letter-spacing:0.240000pt;}
.lsa{letter-spacing:0.240640pt;}
.ls32{letter-spacing:0.255360pt;}
.ls1{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.265600pt;}
.ls11{letter-spacing:0.299520pt;}
.ls3c{letter-spacing:0.300160pt;}
.ls34{letter-spacing:0.320000pt;}
.ls40{letter-spacing:0.366016pt;}
.ls3{letter-spacing:0.382720pt;}
.ls6{letter-spacing:0.418048pt;}
.ls41{letter-spacing:0.425600pt;}
.ls43{letter-spacing:0.477440pt;}
.ls33{letter-spacing:0.510720pt;}
.ls64{letter-spacing:0.637440pt;}
.ls5a{letter-spacing:0.743680pt;}
.ls59{letter-spacing:0.849920pt;}
.ls1d{letter-spacing:1.280000pt;}
.ls42{letter-spacing:3.968000pt;}
.ls7{letter-spacing:7.948800pt;}
.ls1a{letter-spacing:8.960000pt;}
.ls45{letter-spacing:10.299520pt;}
.ls1e{letter-spacing:10.880000pt;}
.ls1c{letter-spacing:12.800000pt;}
.ls1b{letter-spacing:26.240000pt;}
.ls3f{letter-spacing:34.048000pt;}
.ls5b{letter-spacing:394.309760pt;}
.ws1{word-spacing:-53.568000pt;}
.ws7{word-spacing:-47.675307pt;}
.ws6{word-spacing:-47.504640pt;}
.ws8{word-spacing:-46.992640pt;}
.ws7f{word-spacing:-21.280000pt;}
.ws7d{word-spacing:-21.194880pt;}
.ws9{word-spacing:-21.116160pt;}
.ws63{word-spacing:-21.109760pt;}
.ws32{word-spacing:-21.024640pt;}
.ws30{word-spacing:-18.794880pt;}
.ws31{word-spacing:-18.570240pt;}
.ws2f{word-spacing:-18.120960pt;}
.ws3{word-spacing:-18.048000pt;}
.ws4{word-spacing:-17.920000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws5{word-spacing:-17.600000pt;}
.ws2e{word-spacing:-17.280000pt;}
.wsb{word-spacing:-16.368640pt;}
.ws67{word-spacing:-16.320000pt;}
.ws36{word-spacing:-16.256000pt;}
.ws38{word-spacing:-16.192000pt;}
.ws92{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.074240pt;}
.ws37{word-spacing:-16.064000pt;}
.ws33{word-spacing:-16.000000pt;}
.ws35{word-spacing:-15.936000pt;}
.ws9e{word-spacing:-15.872000pt;}
.ws34{word-spacing:-15.808000pt;}
.ws66{word-spacing:-15.744000pt;}
.ws7a{word-spacing:-15.680000pt;}
.ws65{word-spacing:-15.616000pt;}
.ws73{word-spacing:-15.424000pt;}
.ws64{word-spacing:-15.360000pt;}
.ws74{word-spacing:-15.296000pt;}
.ws39{word-spacing:-15.168000pt;}
.ws3c{word-spacing:-13.545600pt;}
.wsa0{word-spacing:-13.424640pt;}
.wsa1{word-spacing:-13.365760pt;}
.ws3d{word-spacing:-13.280000pt;}
.ws3b{word-spacing:-13.226880pt;}
.ws3e{word-spacing:-13.173760pt;}
.wsa3{word-spacing:-12.855040pt;}
.wsa6{word-spacing:-12.748800pt;}
.wsa7{word-spacing:-12.323840pt;}
.wsf{word-spacing:-12.217600pt;}
.wsa9{word-spacing:-12.164480pt;}
.ws11{word-spacing:-12.111360pt;}
.ws82{word-spacing:-12.065233pt;}
.wsa8{word-spacing:-12.058240pt;}
.wse{word-spacing:-11.845760pt;}
.wsa4{word-spacing:-11.580160pt;}
.ws80{word-spacing:-11.578732pt;}
.wsa5{word-spacing:-11.420800pt;}
.ws83{word-spacing:-11.238181pt;}
.ws6f{word-spacing:-11.020160pt;}
.wsac{word-spacing:-10.944000pt;}
.wsa2{word-spacing:-10.942720pt;}
.wsab{word-spacing:-10.800000pt;}
.ws99{word-spacing:-10.762880pt;}
.ws97{word-spacing:-10.720000pt;}
.ws94{word-spacing:-10.591360pt;}
.ws96{word-spacing:-10.505600pt;}
.ws9a{word-spacing:-10.462720pt;}
.wsc{word-spacing:-10.319360pt;}
.wsaa{word-spacing:-10.305280pt;}
.ws98{word-spacing:-10.291200pt;}
.ws81{word-spacing:-10.021927pt;}
.ws95{word-spacing:-9.948160pt;}
.wsd{word-spacing:-9.819520pt;}
.ws6e{word-spacing:-9.280000pt;}
.ws3a{word-spacing:-8.640000pt;}
.ws10{word-spacing:-6.128640pt;}
.ws29{word-spacing:-3.415040pt;}
.ws25{word-spacing:-2.826240pt;}
.ws21{word-spacing:-2.178560pt;}
.ws44{word-spacing:-0.973440pt;}
.ws7c{word-spacing:-0.960000pt;}
.ws18{word-spacing:-0.954667pt;}
.ws71{word-spacing:-0.896000pt;}
.ws2a{word-spacing:-0.883200pt;}
.ws15{word-spacing:-0.874667pt;}
.ws6a{word-spacing:-0.704000pt;}
.ws68{word-spacing:-0.640000pt;}
.ws78{word-spacing:-0.595840pt;}
.ws17{word-spacing:-0.581333pt;}
.ws77{word-spacing:-0.576000pt;}
.ws8a{word-spacing:-0.448000pt;}
.ws79{word-spacing:-0.425600pt;}
.ws43{word-spacing:-0.374400pt;}
.ws16{word-spacing:-0.341333pt;}
.ws69{word-spacing:-0.320000pt;}
.ws45{word-spacing:-0.299520pt;}
.wsb4{word-spacing:-0.288000pt;}
.ws1d{word-spacing:-0.256000pt;}
.ws20{word-spacing:-0.235520pt;}
.ws9c{word-spacing:-0.214400pt;}
.ws70{word-spacing:-0.192000pt;}
.ws14{word-spacing:-0.170667pt;}
.ws1e{word-spacing:-0.160000pt;}
.ws12{word-spacing:-0.128000pt;}
.ws41{word-spacing:-0.117120pt;}
.ws62{word-spacing:-0.106240pt;}
.ws4d{word-spacing:-0.064000pt;}
.ws2c{word-spacing:-0.053120pt;}
.ws0{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.053120pt;}
.ws5e{word-spacing:0.064000pt;}
.ws42{word-spacing:0.074880pt;}
.ws6b{word-spacing:0.085120pt;}
.wsb3{word-spacing:0.096000pt;}
.ws8d{word-spacing:0.097300pt;}
.ws60{word-spacing:0.106240pt;}
.ws23{word-spacing:0.117760pt;}
.ws8b{word-spacing:0.128000pt;}
.ws61{word-spacing:0.159360pt;}
.ws6d{word-spacing:0.192000pt;}
.ws40{word-spacing:0.234240pt;}
.ws6c{word-spacing:0.255360pt;}
.ws75{word-spacing:0.256000pt;}
.ws9d{word-spacing:0.257280pt;}
.wsb2{word-spacing:0.265600pt;}
.ws46{word-spacing:0.299520pt;}
.ws72{word-spacing:0.300160pt;}
.ws5b{word-spacing:0.320000pt;}
.ws1a{word-spacing:0.341333pt;}
.ws3f{word-spacing:0.351360pt;}
.ws27{word-spacing:0.353280pt;}
.ws5f{word-spacing:0.371840pt;}
.ws1c{word-spacing:0.373333pt;}
.ws4f{word-spacing:0.384000pt;}
.ws1b{word-spacing:0.394667pt;}
.ws1f{word-spacing:0.412160pt;}
.ws9b{word-spacing:0.428800pt;}
.ws93{word-spacing:0.448000pt;}
.ws7b{word-spacing:0.512000pt;}
.ws76{word-spacing:0.576000pt;}
.ws8f{word-spacing:0.583802pt;}
.wsb0{word-spacing:0.584320pt;}
.ws2b{word-spacing:0.588800pt;}
.wsaf{word-spacing:0.637440pt;}
.ws4e{word-spacing:0.640000pt;}
.ws7e{word-spacing:0.704000pt;}
.ws90{word-spacing:0.729752pt;}
.ws9f{word-spacing:0.766080pt;}
.ws19{word-spacing:0.800000pt;}
.ws13{word-spacing:0.896000pt;}
.ws8e{word-spacing:0.924353pt;}
.ws8c{word-spacing:1.021653pt;}
.ws51{word-spacing:1.024000pt;}
.ws24{word-spacing:1.059840pt;}
.wsad{word-spacing:1.062400pt;}
.ws91{word-spacing:1.204086pt;}
.ws5a{word-spacing:1.216000pt;}
.wsae{word-spacing:1.221760pt;}
.ws50{word-spacing:1.280000pt;}
.ws59{word-spacing:1.344000pt;}
.ws26{word-spacing:1.707520pt;}
.wsb1{word-spacing:1.806080pt;}
.ws56{word-spacing:2.304000pt;}
.ws5d{word-spacing:2.560000pt;}
.ws47{word-spacing:3.136000pt;}
.ws48{word-spacing:3.200000pt;}
.ws49{word-spacing:4.224000pt;}
.ws28{word-spacing:4.239360pt;}
.ws4a{word-spacing:4.480000pt;}
.ws54{word-spacing:5.120000pt;}
.ws22{word-spacing:8.066560pt;}
.ws4c{word-spacing:8.704000pt;}
.ws4b{word-spacing:9.024000pt;}
.ws5c{word-spacing:10.880000pt;}
.ws57{word-spacing:12.544000pt;}
.ws58{word-spacing:12.800000pt;}
.ws55{word-spacing:16.000000pt;}
.ws53{word-spacing:25.984000pt;}
.ws52{word-spacing:26.240000pt;}
.ws89{word-spacing:65.531730pt;}
.ws87{word-spacing:81.197073pt;}
.ws84{word-spacing:99.343572pt;}
.ws85{word-spacing:159.037286pt;}
.ws88{word-spacing:161.469793pt;}
.ws86{word-spacing:183.362353pt;}
._22{margin-left:-13.424640pt;}
._21{margin-left:-12.111360pt;}
._9{margin-left:-2.870358pt;}
._0{margin-left:-1.280000pt;}
._2{width:0.897280pt;}
._1{width:1.792000pt;}
._3{width:3.422720pt;}
._6{width:8.574720pt;}
._8{width:12.798720pt;}
._7{width:25.600000pt;}
._4{width:35.324800pt;}
._5{width:44.876800pt;}
._20{width:73.594880pt;}
._12{width:92.343546pt;}
._c{width:102.067980pt;}
._1b{width:136.214780pt;}
._13{width:145.950400pt;}
._1f{width:153.243055pt;}
._d{width:158.112933pt;}
._17{width:162.875781pt;}
._1c{width:165.405588pt;}
._1e{width:172.707973pt;}
._f{width:175.140480pt;}
._e{width:177.572987pt;}
._18{width:184.870507pt;}
._15{width:187.298148pt;}
._1a{width:190.027421pt;}
._14{width:194.600533pt;}
._b{width:197.033040pt;}
._16{width:202.189954pt;}
._11{width:209.195573pt;}
._1d{width:211.730245pt;}
._19{width:214.152294pt;}
._a{width:216.909367pt;}
._10{width:221.358107pt;}
.fsd{font-size:26.880000pt;}
.fsb{font-size:34.560000pt;}
.fs13{font-size:36.487467pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fse{font-size:40.320000pt;}
.fsa{font-size:42.880000pt;}
.fs14{font-size:48.000000pt;}
.fs12{font-size:48.650133pt;}
.fsc{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs10{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.fs11{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fsf{font-size:117.120000pt;}
.fs6{font-size:170.880000pt;}
.fs5{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y101{bottom:3.040800pt;}
.yff{bottom:3.041373pt;}
.yfa{bottom:3.041467pt;}
.yfd{bottom:3.041547pt;}
.y24{bottom:3.360000pt;}
.y6d{bottom:3.520000pt;}
.y10e{bottom:3.649067pt;}
.y22{bottom:11.040000pt;}
.yfe{bottom:18.852667pt;}
.yfc{bottom:18.852840pt;}
.y10d{bottom:19.460400pt;}
.yfb{bottom:34.664133pt;}
.y10c{bottom:35.271693pt;}
.y6c{bottom:47.200000pt;}
.y6b{bottom:50.880000pt;}
.y10b{bottom:51.082987pt;}
.y5{bottom:59.133337pt;}
.y10a{bottom:66.894280pt;}
.y3d{bottom:81.280000pt;}
.y109{bottom:82.705573pt;}
.y4{bottom:86.333337pt;}
.y1aa{bottom:93.600000pt;}
.y108{bottom:98.516867pt;}
.y3c{bottom:101.755040pt;}
.y1a9{bottom:108.316000pt;}
.y107{bottom:114.328160pt;}
.y168{bottom:116.324320pt;}
.y6a{bottom:116.947680pt;}
.y164{bottom:118.720000pt;}
.yb4{bottom:119.040000pt;}
.y3b{bottom:120.480000pt;}
.y1a8{bottom:123.040000pt;}
.y20{bottom:123.790666pt;}
.y127{bottom:124.320000pt;}
.y148{bottom:125.120000pt;}
.ydd{bottom:125.280000pt;}
.yb3{bottom:128.960000pt;}
.y106{bottom:130.139453pt;}
.y167{bottom:131.040000pt;}
.yb5{bottom:131.360000pt;}
.y3a{bottom:131.840000pt;}
.y69{bottom:131.993920pt;}
.y163{bottom:136.640000pt;}
.y1a7{bottom:137.760000pt;}
.y12d{bottom:142.080000pt;}
.y126{bottom:142.240000pt;}
.y147{bottom:143.040000pt;}
.ydc{bottom:143.360000pt;}
.y105{bottom:145.950747pt;}
.y68{bottom:146.867520pt;}
.y9c{bottom:149.280000pt;}
.y1a6{bottom:152.316000pt;}
.y110{bottom:153.120000pt;}
.y162{bottom:154.720000pt;}
.y166{bottom:155.040000pt;}
.y17a{bottom:157.920000pt;}
.y125{bottom:160.320000pt;}
.y146{bottom:161.120000pt;}
.ydb{bottom:161.280000pt;}
.y104{bottom:161.762173pt;}
.y67{bottom:161.913760pt;}
.y165{bottom:164.960000pt;}
.y10f{bottom:166.880000pt;}
.y9b{bottom:167.360000pt;}
.y102{bottom:167.424000pt;}
.y12c{bottom:168.160000pt;}
.y161{bottom:172.640000pt;}
.y17{bottom:175.052000pt;}
.y179{bottom:175.840000pt;}
.y39{bottom:177.233920pt;}
.y103{bottom:177.573467pt;}
.y124{bottom:178.240000pt;}
.y145{bottom:179.040000pt;}
.yda{bottom:179.360000pt;}
.y66{bottom:180.320000pt;}
.y1a5{bottom:182.065760pt;}
.y9a{bottom:185.280000pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y12b{bottom:189.920000pt;}
.y160{bottom:190.720000pt;}
.y65{bottom:192.000000pt;}
.y178{bottom:193.920000pt;}
.y38{bottom:195.957760pt;}
.y123{bottom:196.320000pt;}
.y144{bottom:197.120000pt;}
.yd9{bottom:197.280000pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y1a4{bottom:198.068160pt;}
.y99{bottom:203.360000pt;}
.y1d{bottom:208.638670pt;}
.y15f{bottom:208.640000pt;}
.y14{bottom:208.651996pt;}
.y177{bottom:211.840000pt;}
.y122{bottom:214.240000pt;}
.y37{bottom:214.681600pt;}
.y143{bottom:215.040000pt;}
.yd8{bottom:215.360000pt;}
.y98{bottom:221.280000pt;}
.y15e{bottom:226.720000pt;}
.y176{bottom:229.920000pt;}
.y1a3{bottom:230.232320pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y121{bottom:232.320000pt;}
.y142{bottom:233.120000pt;}
.y36{bottom:233.243520pt;}
.y64{bottom:233.280000pt;}
.y97{bottom:239.360000pt;}
.yc6{bottom:240.800000pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y15d{bottom:244.640000pt;}
.y175{bottom:247.840000pt;}
.y120{bottom:250.240000pt;}
.y141{bottom:251.040000pt;}
.y63{bottom:251.360000pt;}
.y35{bottom:251.967360pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y96{bottom:257.280000pt;}
.y15c{bottom:262.720000pt;}
.yc5{bottom:263.360000pt;}
.y174{bottom:265.920000pt;}
.y11f{bottom:268.320000pt;}
.y140{bottom:269.120000pt;}
.y62{bottom:269.280000pt;}
.y1a2{bottom:269.434880pt;}
.y34{bottom:270.691200pt;}
.y95{bottom:275.360000pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y15b{bottom:280.640000pt;}
.yc4{bottom:281.280000pt;}
.y173{bottom:283.840000pt;}
.y11e{bottom:286.240000pt;}
.y18{bottom:287.038667pt;}
.y13f{bottom:287.040000pt;}
.yf{bottom:287.052000pt;}
.y61{bottom:287.360000pt;}
.y33{bottom:289.253120pt;}
.y94{bottom:293.280000pt;}
.y15a{bottom:298.720000pt;}
.yc3{bottom:299.360000pt;}
.y172{bottom:301.920000pt;}
.y11d{bottom:304.320000pt;}
.y13e{bottom:305.120000pt;}
.y60{bottom:305.280000pt;}
.y32{bottom:307.976960pt;}
.y1a1{bottom:308.000000pt;}
.ye{bottom:309.452000pt;}
.y93{bottom:311.360000pt;}
.y159{bottom:316.640000pt;}
.yc2{bottom:317.280000pt;}
.y171{bottom:319.840000pt;}
.y11c{bottom:322.240000pt;}
.y13d{bottom:323.040000pt;}
.y1a0{bottom:323.197600pt;}
.y5f{bottom:323.360000pt;}
.y31{bottom:326.700800pt;}
.y92{bottom:329.280000pt;}
.y158{bottom:334.720000pt;}
.yc1{bottom:335.360000pt;}
.y170{bottom:337.920000pt;}
.y11b{bottom:340.320000pt;}
.y13c{bottom:341.120000pt;}
.y5e{bottom:341.280000pt;}
.yd{bottom:343.809333pt;}
.y30{bottom:345.262720pt;}
.y91{bottom:347.360000pt;}
.y157{bottom:352.640000pt;}
.yc0{bottom:353.280000pt;}
.y16f{bottom:355.840000pt;}
.y100{bottom:357.768000pt;}
.y11a{bottom:358.240000pt;}
.y13b{bottom:359.040000pt;}
.y5d{bottom:359.360000pt;}
.y19f{bottom:359.520000pt;}
.yc{bottom:362.706666pt;}
.y2f{bottom:363.986560pt;}
.y90{bottom:365.280000pt;}
.y156{bottom:370.720000pt;}
.ybf{bottom:371.360000pt;}
.yf9{bottom:373.578667pt;}
.y16e{bottom:373.920000pt;}
.y19e{bottom:376.150880pt;}
.y119{bottom:376.320000pt;}
.y5c{bottom:377.280000pt;}
.y2e{bottom:382.710400pt;}
.y8f{bottom:383.360000pt;}
.y13a{bottom:384.960000pt;}
.y155{bottom:388.640000pt;}
.ybe{bottom:389.280000pt;}
.y16d{bottom:391.840000pt;}
.y19d{bottom:392.153280pt;}
.y118{bottom:394.240000pt;}
.y5b{bottom:395.360000pt;}
.y2d{bottom:401.272320pt;}
.y8e{bottom:401.280000pt;}
.y139{bottom:403.040000pt;}
.y154{bottom:406.720000pt;}
.ybd{bottom:407.360000pt;}
.y16c{bottom:409.920000pt;}
.y117{bottom:412.320000pt;}
.y5a{bottom:413.280000pt;}
.y8d{bottom:419.360000pt;}
.y2c{bottom:419.996160pt;}
.y138{bottom:421.120000pt;}
.y153{bottom:424.640000pt;}
.ybc{bottom:425.280000pt;}
.y16b{bottom:427.840000pt;}
.y116{bottom:430.240000pt;}
.y59{bottom:431.360000pt;}
.yf8{bottom:433.280000pt;}
.y19c{bottom:436.960000pt;}
.y8c{bottom:437.280000pt;}
.y2b{bottom:438.720000pt;}
.y137{bottom:439.040000pt;}
.y152{bottom:442.720000pt;}
.ybb{bottom:443.360000pt;}
.y16a{bottom:445.920000pt;}
.y115{bottom:448.320000pt;}
.y58{bottom:449.280000pt;}
.y19b{bottom:450.880000pt;}
.yf7{bottom:451.360000pt;}
.y8b{bottom:455.360000pt;}
.y136{bottom:457.120000pt;}
.y169{bottom:459.680000pt;}
.y151{bottom:460.640000pt;}
.yba{bottom:461.280000pt;}
.yb{bottom:462.990669pt;}
.y114{bottom:466.240000pt;}
.y57{bottom:467.360000pt;}
.yf6{bottom:469.280000pt;}
.y8a{bottom:473.280000pt;}
.y135{bottom:475.040000pt;}
.y2a{bottom:477.120000pt;}
.y19a{bottom:478.240000pt;}
.y150{bottom:478.720000pt;}
.ya{bottom:478.990666pt;}
.yb9{bottom:479.360000pt;}
.y113{bottom:484.320000pt;}
.y56{bottom:485.280000pt;}
.yf5{bottom:487.360000pt;}
.y89{bottom:491.360000pt;}
.y134{bottom:493.120000pt;}
.y9{bottom:494.990666pt;}
.y14f{bottom:496.640000pt;}
.yb8{bottom:497.280000pt;}
.y112{bottom:502.240000pt;}
.y55{bottom:503.360000pt;}
.y199{bottom:503.521440pt;}
.yf4{bottom:505.280000pt;}
.y88{bottom:509.280000pt;}
.y133{bottom:511.040000pt;}
.y14e{bottom:514.720000pt;}
.yb7{bottom:515.360000pt;}
.y111{bottom:516.160000pt;}
.y54{bottom:521.280000pt;}
.yf3{bottom:523.360000pt;}
.yb2{bottom:527.360000pt;}
.y87{bottom:528.800000pt;}
.y132{bottom:529.120000pt;}
.y14d{bottom:532.640000pt;}
.y198{bottom:532.803840pt;}
.yb6{bottom:533.280000pt;}
.y53{bottom:539.360000pt;}
.yf2{bottom:541.280000pt;}
.yb1{bottom:545.280000pt;}
.y131{bottom:547.040000pt;}
.y14c{bottom:550.400000pt;}
.y86{bottom:551.360000pt;}
.y52{bottom:557.280000pt;}
.yf1{bottom:559.360000pt;}
.yb0{bottom:563.360000pt;}
.y130{bottom:565.120000pt;}
.y14b{bottom:568.640000pt;}
.y85{bottom:569.280000pt;}
.y29{bottom:570.400000pt;}
.y12a{bottom:572.160000pt;}
.y8{bottom:573.786667pt;}
.yd7{bottom:575.360000pt;}
.y51{bottom:576.160000pt;}
.yf0{bottom:577.280000pt;}
.y197{bottom:579.204160pt;}
.yaf{bottom:581.280000pt;}
.y84{bottom:587.360000pt;}
.y12f{bottom:591.040000pt;}
.y14a{bottom:591.200000pt;}
.y7{bottom:592.685334pt;}
.yd6{bottom:593.280000pt;}
.yef{bottom:595.360000pt;}
.y50{bottom:597.760000pt;}
.y129{bottom:598.080000pt;}
.yae{bottom:599.360000pt;}
.y196{bottom:602.563680pt;}
.y83{bottom:605.280000pt;}
.y17e{bottom:606.716160pt;}
.yd5{bottom:611.360000pt;}
.y28{bottom:612.160000pt;}
.y12e{bottom:612.960000pt;}
.yee{bottom:613.280000pt;}
.yad{bottom:617.280000pt;}
.y128{bottom:620.160000pt;}
.y4f{bottom:620.320000pt;}
.y149{bottom:621.120000pt;}
.y82{bottom:623.360000pt;}
.y195{bottom:625.763840pt;}
.yd4{bottom:629.280000pt;}
.y17d{bottom:630.720000pt;}
.yed{bottom:631.360000pt;}
.yac{bottom:635.360000pt;}
.y4e{bottom:639.178240pt;}
.y81{bottom:641.280000pt;}
.y6{bottom:645.598667pt;}
.yd3{bottom:647.360000pt;}
.y194{bottom:649.123360pt;}
.yec{bottom:649.280000pt;}
.yab{bottom:653.280000pt;}
.y80{bottom:659.360000pt;}
.y4d{bottom:660.144640pt;}
.y27{bottom:661.280000pt;}
.yd2{bottom:665.280000pt;}
.yeb{bottom:667.360000pt;}
.y3{bottom:668.977329pt;}
.yaa{bottom:671.360000pt;}
.y193{bottom:672.482880pt;}
.y7f{bottom:677.280000pt;}
.y4c{bottom:681.111040pt;}
.yd1{bottom:683.360000pt;}
.yea{bottom:685.280000pt;}
.ya9{bottom:689.280000pt;}
.y7e{bottom:695.360000pt;}
.y192{bottom:695.683040pt;}
.yd0{bottom:701.280000pt;}
.y4b{bottom:702.077440pt;}
.ye9{bottom:703.360000pt;}
.ya8{bottom:707.360000pt;}
.y26{bottom:710.400000pt;}
.y7d{bottom:713.280000pt;}
.y191{bottom:719.042560pt;}
.ycf{bottom:719.360000pt;}
.ye8{bottom:721.280000pt;}
.y4a{bottom:723.193600pt;}
.ya7{bottom:725.280000pt;}
.y7c{bottom:731.360000pt;}
.yce{bottom:737.280000pt;}
.ye7{bottom:739.360000pt;}
.y190{bottom:742.402080pt;}
.ya6{bottom:743.360000pt;}
.y49{bottom:744.160000pt;}
.y7b{bottom:749.280000pt;}
.ycd{bottom:755.360000pt;}
.ye6{bottom:757.280000pt;}
.y25{bottom:759.360000pt;}
.ya5{bottom:761.280000pt;}
.y48{bottom:764.320000pt;}
.y18f{bottom:765.602240pt;}
.y7a{bottom:767.360000pt;}
.ycc{bottom:773.280000pt;}
.ye5{bottom:775.360000pt;}
.ya4{bottom:779.360000pt;}
.y2{bottom:781.661334pt;}
.y47{bottom:783.193600pt;}
.y79{bottom:785.280000pt;}
.y18e{bottom:788.961760pt;}
.ycb{bottom:791.360000pt;}
.ye4{bottom:793.280000pt;}
.ya3{bottom:797.280000pt;}
.y78{bottom:803.360000pt;}
.y46{bottom:804.160000pt;}
.yca{bottom:809.280000pt;}
.ye3{bottom:811.360000pt;}
.y18d{bottom:812.161920pt;}
.ya2{bottom:815.360000pt;}
.y77{bottom:821.280000pt;}
.yc9{bottom:827.360000pt;}
.y45{bottom:827.835040pt;}
.yde{bottom:828.800000pt;}
.ye2{bottom:829.280000pt;}
.ya1{bottom:833.280000pt;}
.y18c{bottom:835.521440pt;}
.y76{bottom:839.360000pt;}
.yc8{bottom:845.280000pt;}
.ye1{bottom:847.360000pt;}
.y23{bottom:850.560000pt;}
.ya0{bottom:851.360000pt;}
.y75{bottom:857.280000pt;}
.y18b{bottom:858.880960pt;}
.y1{bottom:859.312000pt;}
.y44{bottom:860.804320pt;}
.y17c{bottom:863.360000pt;}
.yc7{bottom:864.800000pt;}
.ye0{bottom:865.280000pt;}
.y9f{bottom:869.280000pt;}
.y74{bottom:875.360000pt;}
.y184{bottom:881.280000pt;}
.y18a{bottom:882.081120pt;}
.y17b{bottom:882.720000pt;}
.ydf{bottom:884.800000pt;}
.y9e{bottom:887.360000pt;}
.y21{bottom:888.960000pt;}
.y73{bottom:893.280000pt;}
.y43{bottom:893.920000pt;}
.y183{bottom:899.360000pt;}
.y9d{bottom:905.280000pt;}
.y189{bottom:905.440640pt;}
.y72{bottom:911.360000pt;}
.y182{bottom:917.280000pt;}
.y42{bottom:923.360000pt;}
.y188{bottom:928.800160pt;}
.y71{bottom:929.280000pt;}
.y181{bottom:935.360000pt;}
.y41{bottom:941.280000pt;}
.y70{bottom:947.360000pt;}
.y187{bottom:952.000320pt;}
.y180{bottom:953.280000pt;}
.y40{bottom:959.360000pt;}
.y6f{bottom:966.716160pt;}
.y17f{bottom:971.360000pt;}
.y186{bottom:975.359840pt;}
.y3f{bottom:977.280000pt;}
.y6e{bottom:990.720000pt;}
.y3e{bottom:995.360000pt;}
.y185{bottom:998.560000pt;}
.h26{height:15.202667pt;}
.h20{height:18.401333pt;}
.h22{height:25.006875pt;}
.h13{height:25.284687pt;}
.hb{height:26.400000pt;}
.h15{height:27.844687pt;}
.h7{height:28.560000pt;}
.h29{height:30.536874pt;}
.h1e{height:31.016875pt;}
.h12{height:31.259687pt;}
.h25{height:32.425504pt;}
.h2b{height:35.886875pt;}
.h14{height:38.724688pt;}
.h27{height:40.715981pt;}
.h6{height:40.800000pt;}
.h1b{height:42.656250pt;}
.h3{height:42.840000pt;}
.h10{height:42.866250pt;}
.h1d{height:43.250000pt;}
.h1f{height:44.456875pt;}
.hc{height:46.593750pt;}
.h24{height:46.826667pt;}
.he{height:48.144375pt;}
.h11{height:48.328695pt;}
.h2{height:48.960000pt;}
.h2a{height:49.277500pt;}
.h19{height:49.907812pt;}
.h33{height:51.216000pt;}
.h16{height:53.562500pt;}
.hf{height:54.514687pt;}
.h21{height:55.386250pt;}
.h9{height:56.000000pt;}
.h2d{height:56.679040pt;}
.h31{height:56.688640pt;}
.h30{height:56.715520pt;}
.h1c{height:56.732813pt;}
.h32{height:57.582080pt;}
.h23{height:61.969687pt;}
.h1a{height:62.668125pt;}
.h2f{height:62.824960pt;}
.h2e{height:68.288000pt;}
.h5{height:69.360000pt;}
.h17{height:98.019375pt;}
.h18{height:100.747340pt;}
.h4{height:105.826671pt;}
.hd{height:124.405313pt;}
.ha{height:139.781250pt;}
.h28{height:252.981333pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h2c{height:1122.720000pt;}
.w5{width:7.998667pt;}
.w6{width:16.000000pt;}
.w8{width:56.016000pt;}
.wc{width:57.234667pt;}
.wf{width:61.494667pt;}
.wb{width:61.496000pt;}
.wa{width:63.322667pt;}
.wd{width:65.757333pt;}
.w9{width:70.629333pt;}
.we{width:71.237333pt;}
.w7{width:565.638667pt;}
.w2{width:566.928019pt;}
.w4{width:686.081333pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.w11{width:794.666667pt;}
.w10{width:794.720000pt;}
.x0{left:0.000000pt;}
.x18{left:1.826733pt;}
.x20{left:3.044667pt;}
.x1f{left:4.261800pt;}
.x1c{left:6.089533pt;}
.x1d{left:7.916133pt;}
.x25{left:9.132533pt;}
.x22{left:12.177067pt;}
.x15{left:14.003600pt;}
.x19{left:15.830667pt;}
.x17{left:18.266133pt;}
.x1b{left:21.311200pt;}
.x26{left:22.527600pt;}
.x5{left:75.520000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x2c{left:104.000000pt;}
.x6{left:113.440000pt;}
.xd{left:122.552000pt;}
.x12{left:137.440000pt;}
.x2b{left:143.680000pt;}
.x13{left:160.640000pt;}
.x16{left:167.736000pt;}
.x4{left:180.874667pt;}
.x9{left:184.023360pt;}
.x8{left:203.201760pt;}
.x2d{left:205.605280pt;}
.x1a{left:224.360000pt;}
.x7{left:252.480000pt;}
.x1e{left:295.598667pt;}
.x10{left:305.440000pt;}
.xb{left:322.724960pt;}
.xc{left:329.913440pt;}
.xf{left:359.040000pt;}
.xe{left:366.061760pt;}
.xa{left:396.800000pt;}
.x3{left:404.408000pt;}
.x21{left:421.634667pt;}
.x23{left:479.477333pt;}
.x24{left:545.844000pt;}
.x27{left:617.690667pt;}
.x14{left:664.320000pt;}
.x11{left:672.320000pt;}
.x29{left:674.400000pt;}
.x2a{left:678.560000pt;}
.x28{left:680.320000pt;}
}




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