
    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_ebe846e8104d933b28a1f504.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8d3e802f0f70edabbf1caef6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_403c53e2da6e76e3dad7bf1d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_cf89c3feec4ca63d0fbc7252.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_34fa757776bf9bf97d9d5fc7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a5ead56acabc4ccc1b131a31.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8a09f62f1ab598897b0b0be6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.930664;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_9e85df73bf2077670bc1be89.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-134.657640px;}
.v4{vertical-align:-27.000000px;}
.v3{vertical-align:-20.880000px;}
.v6{vertical-align:-15.840000px;}
.v8{vertical-align:-1.080000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.080000px;}
.v7{vertical-align:11.160000px;}
.v5{vertical-align:13.895400px;}
.v2{vertical-align:27.000000px;}
.ls85{letter-spacing:-3.240000px;}
.ls88{letter-spacing:-2.520000px;}
.ls87{letter-spacing:-1.080000px;}
.ls86{letter-spacing:-0.720000px;}
.ls30{letter-spacing:-0.661320px;}
.ls8{letter-spacing:-0.576000px;}
.ls31{letter-spacing:-0.480960px;}
.ls36{letter-spacing:-0.432000px;}
.ls3f{letter-spacing:-0.360000px;}
.ls23{letter-spacing:-0.288000px;}
.ls32{letter-spacing:-0.240480px;}
.ls3b{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.180360px;}
.ls4c{letter-spacing:-0.162000px;}
.ls7{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.137880px;}
.ls19{letter-spacing:-0.120240px;}
.lsf{letter-spacing:-0.072000px;}
.ls24{letter-spacing:-0.065880px;}
.ls18{letter-spacing:-0.060120px;}
.ls4{letter-spacing:0.000000px;}
.ls7b{letter-spacing:0.009360px;}
.ls4b{letter-spacing:0.054000px;}
.ls71{letter-spacing:0.057600px;}
.ls82{letter-spacing:0.059400px;}
.ls29{letter-spacing:0.060120px;}
.ls78{letter-spacing:0.064800px;}
.ls33{letter-spacing:0.065880px;}
.ls6{letter-spacing:0.072000px;}
.ls67{letter-spacing:0.079200px;}
.ls70{letter-spacing:0.086400px;}
.ls8a{letter-spacing:0.094680px;}
.ls4d{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.120240px;}
.ls6e{letter-spacing:0.129600px;}
.ls1{letter-spacing:0.137880px;}
.ls9{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.151200px;}
.ls79{letter-spacing:0.158400px;}
.ls26{letter-spacing:0.165600px;}
.ls14{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.180360px;}
.ls2f{letter-spacing:0.191520px;}
.ls5e{letter-spacing:0.197640px;}
.ls80{letter-spacing:0.255960px;}
.lsd{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.372276px;}
.ls89{letter-spacing:0.419400px;}
.ls20{letter-spacing:0.420840px;}
.ls6f{letter-spacing:0.432000px;}
.ls7a{letter-spacing:0.540000px;}
.ls34{letter-spacing:0.720000px;}
.ls38{letter-spacing:1.080000px;}
.ls50{letter-spacing:1.094400px;}
.ls21{letter-spacing:1.142280px;}
.ls60{letter-spacing:1.440000px;}
.ls45{letter-spacing:1.800000px;}
.ls10{letter-spacing:1.807200px;}
.ls47{letter-spacing:1.839672px;}
.ls46{letter-spacing:1.863720px;}
.ls1b{letter-spacing:2.160000px;}
.ls68{letter-spacing:2.167200px;}
.ls2d{letter-spacing:2.356704px;}
.ls53{letter-spacing:2.520000px;}
.ls73{letter-spacing:2.527200px;}
.ls28{letter-spacing:2.585160px;}
.ls1c{letter-spacing:2.880000px;}
.ls3e{letter-spacing:2.887200px;}
.ls72{letter-spacing:2.894400px;}
.ls61{letter-spacing:3.240000px;}
.ls37{letter-spacing:3.600000px;}
.ls65{letter-spacing:3.621600px;}
.ls2a{letter-spacing:3.661308px;}
.ls3d{letter-spacing:3.952800px;}
.ls63{letter-spacing:3.960000px;}
.ls66{letter-spacing:4.320000px;}
.lse{letter-spacing:4.680000px;}
.ls59{letter-spacing:5.040000px;}
.ls48{letter-spacing:5.110200px;}
.ls49{letter-spacing:5.170320px;}
.ls35{letter-spacing:5.400000px;}
.ls2e{letter-spacing:5.470920px;}
.lsa{letter-spacing:5.760000px;}
.ls5d{letter-spacing:6.120000px;}
.ls6d{letter-spacing:6.480000px;}
.ls4e{letter-spacing:6.840000px;}
.ls6a{letter-spacing:6.847200px;}
.ls2b{letter-spacing:6.913800px;}
.ls6b{letter-spacing:7.200000px;}
.ls5a{letter-spacing:7.228800px;}
.ls76{letter-spacing:7.560000px;}
.ls3a{letter-spacing:7.920000px;}
.ls41{letter-spacing:8.280000px;}
.ls7e{letter-spacing:8.640000px;}
.ls44{letter-spacing:9.000000px;}
.ls4a{letter-spacing:9.360000px;}
.ls6c{letter-spacing:9.720000px;}
.ls77{letter-spacing:10.080000px;}
.ls7c{letter-spacing:10.440000px;}
.ls62{letter-spacing:10.800000px;}
.lsb{letter-spacing:11.160000px;}
.ls15{letter-spacing:11.242440px;}
.ls84{letter-spacing:11.862720px;}
.ls5f{letter-spacing:11.872800px;}
.ls75{letter-spacing:12.240000px;}
.ls2c{letter-spacing:13.046040px;}
.ls43{letter-spacing:13.320000px;}
.ls64{letter-spacing:14.760000px;}
.lsc{letter-spacing:15.120000px;}
.ls83{letter-spacing:15.480000px;}
.ls69{letter-spacing:16.200000px;}
.ls40{letter-spacing:16.214400px;}
.ls7d{letter-spacing:17.280000px;}
.ls22{letter-spacing:17.374680px;}
.ls4f{letter-spacing:17.640000px;}
.ls81{letter-spacing:18.000000px;}
.ls5c{letter-spacing:18.007200px;}
.ls51{letter-spacing:18.144000px;}
.ls7f{letter-spacing:18.360000px;}
.ls5b{letter-spacing:18.367200px;}
.ls3c{letter-spacing:20.160000px;}
.ls1f{letter-spacing:20.520000px;}
.ls74{letter-spacing:20.887200px;}
.ls39{letter-spacing:21.240000px;}
.ls57{letter-spacing:21.960000px;}
.ls52{letter-spacing:22.104000px;}
.ls54{letter-spacing:26.064000px;}
.ls42{letter-spacing:28.800000px;}
.ls55{letter-spacing:30.024000px;}
.ls1e{letter-spacing:32.400000px;}
.ls11{letter-spacing:33.984000px;}
.ls58{letter-spacing:34.560000px;}
.ls13{letter-spacing:54.144000px;}
.ls1d{letter-spacing:54.864000px;}
.ls56{letter-spacing:63.864000px;}
.ls3{letter-spacing:99.973440px;}
.ls27{letter-spacing:194.400000px;}
.ls12{letter-spacing:197.511120px;}
.ls2{letter-spacing:2376.249480px;}
.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;}
}
.ws0{word-spacing:-34.332120px;}
.ws9{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.wsb{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.wscf{word-spacing:-17.784000px;}
.wsce{word-spacing:-17.712000px;}
.wsed{word-spacing:-17.640000px;}
.ws8{word-spacing:-17.424000px;}
.ws56{word-spacing:-16.470000px;}
.ws169{word-spacing:-15.480000px;}
.ws33{word-spacing:-15.210360px;}
.ws34{word-spacing:-15.030000px;}
.ws7a{word-spacing:-14.969880px;}
.wsa7{word-spacing:-14.909760px;}
.ws7b{word-spacing:-14.849640px;}
.ws16c{word-spacing:-14.549040px;}
.wse3{word-spacing:-12.258000px;}
.ws79{word-spacing:-12.161520px;}
.ws166{word-spacing:-11.970000px;}
.ws32{word-spacing:-9.720000px;}
.ws16a{word-spacing:-6.840000px;}
.ws97{word-spacing:-4.392000px;}
.wsa6{word-spacing:-4.320000px;}
.ws98{word-spacing:-4.032000px;}
.wsfa{word-spacing:-3.960000px;}
.ws148{word-spacing:-3.816000px;}
.ws131{word-spacing:-3.744000px;}
.ws99{word-spacing:-3.672000px;}
.wsf8{word-spacing:-3.600000px;}
.ws15f{word-spacing:-3.528000px;}
.wsdf{word-spacing:-3.426840px;}
.wsba{word-spacing:-3.384000px;}
.ws10c{word-spacing:-3.359880px;}
.ws73{word-spacing:-3.312000px;}
.ws72{word-spacing:-3.240000px;}
.ws5e{word-spacing:-2.952000px;}
.wse9{word-spacing:-2.880000px;}
.ws14e{word-spacing:-2.808000px;}
.ws110{word-spacing:-2.701080px;}
.ws10a{word-spacing:-2.664000px;}
.ws86{word-spacing:-2.645280px;}
.ws10f{word-spacing:-2.635200px;}
.ws6f{word-spacing:-2.592000px;}
.ws167{word-spacing:-2.585160px;}
.wsbf{word-spacing:-2.520000px;}
.ws139{word-spacing:-2.448000px;}
.ws10e{word-spacing:-2.371680px;}
.ws102{word-spacing:-2.304000px;}
.ws16{word-spacing:-2.232000px;}
.ws15{word-spacing:-2.160000px;}
.ws13f{word-spacing:-2.088000px;}
.ws15e{word-spacing:-1.944000px;}
.ws27{word-spacing:-1.872000px;}
.ws26{word-spacing:-1.800000px;}
.ws124{word-spacing:-1.728000px;}
.ws51{word-spacing:-1.623240px;}
.wsa4{word-spacing:-1.584000px;}
.ws23{word-spacing:-1.512000px;}
.ws7d{word-spacing:-1.440000px;}
.ws84{word-spacing:-1.262520px;}
.ws9e{word-spacing:-1.224000px;}
.ws24{word-spacing:-1.152000px;}
.ws4e{word-spacing:-1.142280px;}
.wsa9{word-spacing:-1.080000px;}
.ws12f{word-spacing:-1.008000px;}
.ws15c{word-spacing:-0.864000px;}
.wsa1{word-spacing:-0.792000px;}
.ws63{word-spacing:-0.720000px;}
.ws127{word-spacing:-0.648000px;}
.ws8d{word-spacing:-0.541080px;}
.ws59{word-spacing:-0.504000px;}
.ws115{word-spacing:-0.461160px;}
.ws13{word-spacing:-0.432000px;}
.ws8e{word-spacing:-0.420840px;}
.ws3{word-spacing:-0.413640px;}
.ws14{word-spacing:-0.360000px;}
.ws130{word-spacing:-0.288000px;}
.ws168{word-spacing:-0.191520px;}
.ws69{word-spacing:-0.180360px;}
.ws39{word-spacing:-0.144000px;}
.ws55{word-spacing:-0.131760px;}
.ws85{word-spacing:-0.120240px;}
.ws5{word-spacing:-0.072000px;}
.ws94{word-spacing:-0.065880px;}
.ws50{word-spacing:-0.060120px;}
.wse6{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws52{word-spacing:0.060120px;}
.ws5d{word-spacing:0.065880px;}
.ws9f{word-spacing:0.072000px;}
.ws48{word-spacing:0.120240px;}
.ws116{word-spacing:0.131760px;}
.ws1{word-spacing:0.137880px;}
.ws7{word-spacing:0.144000px;}
.ws66{word-spacing:0.180360px;}
.wsc3{word-spacing:0.216000px;}
.ws8c{word-spacing:0.240480px;}
.ws4{word-spacing:0.275760px;}
.ws58{word-spacing:0.288000px;}
.ws65{word-spacing:0.300600px;}
.ws3a{word-spacing:0.360000px;}
.ws14f{word-spacing:0.432000px;}
.wsfd{word-spacing:0.504000px;}
.ws64{word-spacing:0.541080px;}
.ws134{word-spacing:0.576000px;}
.ws12{word-spacing:0.648000px;}
.wsaa{word-spacing:0.720000px;}
.ws88{word-spacing:0.781560px;}
.ws150{word-spacing:0.792000px;}
.ws12a{word-spacing:0.936000px;}
.ws60{word-spacing:1.008000px;}
.ws67{word-spacing:1.022040px;}
.ws25{word-spacing:1.080000px;}
.wsa0{word-spacing:1.152000px;}
.ws14b{word-spacing:1.296000px;}
.ws10d{word-spacing:1.317600px;}
.ws49{word-spacing:1.322640px;}
.ws5f{word-spacing:1.368000px;}
.wsde{word-spacing:1.382760px;}
.ws22{word-spacing:1.440000px;}
.ws154{word-spacing:1.512000px;}
.ws8a{word-spacing:1.563120px;}
.ws117{word-spacing:1.581120px;}
.ws53{word-spacing:1.683360px;}
.wsbc{word-spacing:1.728000px;}
.ws7e{word-spacing:1.800000px;}
.ws15a{word-spacing:1.872000px;}
.ws47{word-spacing:1.923840px;}
.wsdd{word-spacing:1.983960px;}
.ws96{word-spacing:2.016000px;}
.ws4a{word-spacing:2.044080px;}
.ws2d{word-spacing:2.088000px;}
.ws57{word-spacing:2.160000px;}
.ws14c{word-spacing:2.232000px;}
.ws90{word-spacing:2.284560px;}
.ws11f{word-spacing:2.305800px;}
.wsc4{word-spacing:2.376000px;}
.ws82{word-spacing:2.404800px;}
.ws2c{word-spacing:2.448000px;}
.ws77{word-spacing:2.520000px;}
.ws153{word-spacing:2.592000px;}
.ws92{word-spacing:2.645280px;}
.ws83{word-spacing:2.705400px;}
.wsa8{word-spacing:2.736000px;}
.ws46{word-spacing:2.765520px;}
.ws3b{word-spacing:2.808000px;}
.ws91{word-spacing:2.825640px;}
.ws3c{word-spacing:2.880000px;}
.ws11c{word-spacing:3.030480px;}
.ws8f{word-spacing:3.066120px;}
.wsb8{word-spacing:3.096000px;}
.ws1f{word-spacing:3.168000px;}
.ws10{word-spacing:3.240000px;}
.ws6b{word-spacing:3.366720px;}
.ws137{word-spacing:3.456000px;}
.ws11e{word-spacing:3.491640px;}
.wsa2{word-spacing:3.528000px;}
.wsad{word-spacing:3.600000px;}
.ws136{word-spacing:3.672000px;}
.ws11d{word-spacing:3.755160px;}
.ws20{word-spacing:3.888000px;}
.ws21{word-spacing:3.960000px;}
.ws4f{word-spacing:4.088160px;}
.ws100{word-spacing:4.176000px;}
.ws74{word-spacing:4.248000px;}
.ws2b{word-spacing:4.320000px;}
.ws125{word-spacing:4.392000px;}
.wsb5{word-spacing:4.536000px;}
.ws76{word-spacing:4.608000px;}
.ws2a{word-spacing:4.680000px;}
.ws54{word-spacing:4.809600px;}
.ws106{word-spacing:4.896000px;}
.ws68{word-spacing:4.929840px;}
.ws11a{word-spacing:4.941000px;}
.wsb7{word-spacing:4.968000px;}
.wsab{word-spacing:5.040000px;}
.ws151{word-spacing:5.112000px;}
.wse1{word-spacing:5.170320px;}
.ws113{word-spacing:5.204520px;}
.wse0{word-spacing:5.230440px;}
.ws16b{word-spacing:5.256000px;}
.ws118{word-spacing:5.270400px;}
.ws9d{word-spacing:5.328000px;}
.ws9c{word-spacing:5.400000px;}
.ws119{word-spacing:5.533920px;}
.ws128{word-spacing:5.616000px;}
.ws36{word-spacing:5.688000px;}
.wsd{word-spacing:5.760000px;}
.ws152{word-spacing:5.832000px;}
.ws93{word-spacing:5.891760px;}
.wsc0{word-spacing:6.048000px;}
.ws3d{word-spacing:6.120000px;}
.ws38{word-spacing:6.408000px;}
.ws40{word-spacing:6.480000px;}
.ws138{word-spacing:6.552000px;}
.ws89{word-spacing:6.733440px;}
.ws41{word-spacing:6.768000px;}
.ws7f{word-spacing:6.840000px;}
.ws14a{word-spacing:6.912000px;}
.wsfe{word-spacing:7.056000px;}
.ws6d{word-spacing:7.128000px;}
.ws6e{word-spacing:7.200000px;}
.wse4{word-spacing:7.488000px;}
.wsaf{word-spacing:7.560000px;}
.ws12d{word-spacing:7.632000px;}
.ws87{word-spacing:7.755480px;}
.wsc7{word-spacing:7.848000px;}
.wsc8{word-spacing:7.920000px;}
.ws13a{word-spacing:7.992000px;}
.wsff{word-spacing:8.136000px;}
.ws1e{word-spacing:8.208000px;}
.wsd3{word-spacing:8.280000px;}
.ws143{word-spacing:8.352000px;}
.ws104{word-spacing:8.496000px;}
.ws1d{word-spacing:8.568000px;}
.ws17{word-spacing:8.640000px;}
.ws3f{word-spacing:8.928000px;}
.wsa3{word-spacing:9.000000px;}
.ws162{word-spacing:9.216000px;}
.ws3e{word-spacing:9.288000px;}
.ws9a{word-spacing:9.360000px;}
.ws135{word-spacing:9.432000px;}
.wse5{word-spacing:9.576000px;}
.ws2f{word-spacing:9.648000px;}
.ws2e{word-spacing:9.720000px;}
.wsca{word-spacing:9.936000px;}
.wsf0{word-spacing:10.008000px;}
.ws7c{word-spacing:10.080000px;}
.ws161{word-spacing:10.152000px;}
.wsdc{word-spacing:10.368000px;}
.wsb2{word-spacing:10.440000px;}
.wsb9{word-spacing:10.728000px;}
.wsef{word-spacing:10.800000px;}
.ws45{word-spacing:11.062080px;}
.wsb1{word-spacing:11.088000px;}
.wse{word-spacing:11.160000px;}
.ws6c{word-spacing:11.302560px;}
.ws13b{word-spacing:11.376000px;}
.wsf7{word-spacing:11.448000px;}
.wscb{word-spacing:11.520000px;}
.ws14d{word-spacing:11.592000px;}
.wse7{word-spacing:11.736000px;}
.ws4d{word-spacing:11.783520px;}
.ws37{word-spacing:11.808000px;}
.ws42{word-spacing:11.880000px;}
.ws163{word-spacing:11.952000px;}
.ws4b{word-spacing:12.024000px;}
.ws4c{word-spacing:12.144240px;}
.ws28{word-spacing:12.168000px;}
.wsac{word-spacing:12.240000px;}
.wsea{word-spacing:12.528000px;}
.ws80{word-spacing:12.600000px;}
.ws146{word-spacing:12.672000px;}
.ws109{word-spacing:12.816000px;}
.wsee{word-spacing:12.888000px;}
.ws43{word-spacing:12.960000px;}
.ws8b{word-spacing:13.106160px;}
.ws111{word-spacing:13.241880px;}
.ws78{word-spacing:13.248000px;}
.wsec{word-spacing:13.320000px;}
.ws112{word-spacing:13.505400px;}
.ws145{word-spacing:13.608000px;}
.wsd6{word-spacing:13.680000px;}
.wsb4{word-spacing:13.968000px;}
.wsb3{word-spacing:14.040000px;}
.ws18{word-spacing:14.328000px;}
.ws133{word-spacing:14.400000px;}
.ws147{word-spacing:14.472000px;}
.wscd{word-spacing:14.616000px;}
.ws35{word-spacing:14.688000px;}
.ws132{word-spacing:14.760000px;}
.wsbb{word-spacing:15.048000px;}
.ws11{word-spacing:15.120000px;}
.ws75{word-spacing:15.408000px;}
.wsd2{word-spacing:15.480000px;}
.ws157{word-spacing:15.552000px;}
.ws31{word-spacing:15.768000px;}
.ws156{word-spacing:15.840000px;}
.ws29{word-spacing:16.128000px;}
.ws149{word-spacing:16.200000px;}
.ws141{word-spacing:16.272000px;}
.ws140{word-spacing:16.344000px;}
.ws11b{word-spacing:16.470000px;}
.ws158{word-spacing:16.488000px;}
.ws12b{word-spacing:16.560000px;}
.ws1b{word-spacing:16.848000px;}
.ws1c{word-spacing:16.920000px;}
.ws1a{word-spacing:16.992000px;}
.ws44{word-spacing:17.280000px;}
.ws6a{word-spacing:17.434800px;}
.ws121{word-spacing:17.524080px;}
.ws30{word-spacing:17.568000px;}
.wsa5{word-spacing:17.640000px;}
.ws155{word-spacing:17.712000px;}
.wsd8{word-spacing:17.928000px;}
.wsd7{word-spacing:18.000000px;}
.ws105{word-spacing:18.288000px;}
.ws108{word-spacing:18.360000px;}
.ws9b{word-spacing:18.720000px;}
.ws129{word-spacing:19.008000px;}
.ws15d{word-spacing:19.080000px;}
.wsf{word-spacing:19.368000px;}
.ws144{word-spacing:19.440000px;}
.ws107{word-spacing:19.728000px;}
.ws13d{word-spacing:19.800000px;}
.ws164{word-spacing:19.872000px;}
.ws62{word-spacing:20.088000px;}
.wscc{word-spacing:20.160000px;}
.ws61{word-spacing:20.448000px;}
.wsb0{word-spacing:20.520000px;}
.ws160{word-spacing:20.808000px;}
.ws15b{word-spacing:20.880000px;}
.wsc6{word-spacing:21.168000px;}
.wsc5{word-spacing:21.240000px;}
.wsf5{word-spacing:21.528000px;}
.wsc1{word-spacing:21.600000px;}
.wsae{word-spacing:21.888000px;}
.wsfc{word-spacing:21.960000px;}
.ws10b{word-spacing:22.248000px;}
.ws81{word-spacing:22.608000px;}
.ws165{word-spacing:22.752000px;}
.ws123{word-spacing:23.328000px;}
.ws70{word-spacing:24.048000px;}
.wsf2{word-spacing:24.408000px;}
.wsf3{word-spacing:24.480000px;}
.wsfb{word-spacing:24.768000px;}
.ws19{word-spacing:24.840000px;}
.wsbd{word-spacing:25.848000px;}
.wsbe{word-spacing:25.920000px;}
.wseb{word-spacing:26.280000px;}
.wse8{word-spacing:26.568000px;}
.ws122{word-spacing:26.640000px;}
.wsc2{word-spacing:26.928000px;}
.ws12e{word-spacing:27.072000px;}
.ws159{word-spacing:28.008000px;}
.wsd4{word-spacing:28.728000px;}
.ws126{word-spacing:29.088000px;}
.wsb6{word-spacing:29.160000px;}
.wsf6{word-spacing:29.520000px;}
.ws120{word-spacing:29.711880px;}
.ws95{word-spacing:29.808000px;}
.ws142{word-spacing:30.528000px;}
.wsf9{word-spacing:30.960000px;}
.wsc9{word-spacing:32.040000px;}
.ws13c{word-spacing:32.400000px;}
.ws5c{word-spacing:32.616000px;}
.ws5b{word-spacing:32.688000px;}
.ws5a{word-spacing:32.760000px;}
.wsd5{word-spacing:33.120000px;}
.ws12c{word-spacing:33.912000px;}
.wsf4{word-spacing:34.200000px;}
.ws101{word-spacing:34.560000px;}
.ws71{word-spacing:36.360000px;}
.wsf1{word-spacing:37.440000px;}
.ws13e{word-spacing:41.760000px;}
.wsd1{word-spacing:56.492388px;}
.ws103{word-spacing:56.880000px;}
.ws114{word-spacing:66.868200px;}
.wsd0{word-spacing:71.837436px;}
.wsd9{word-spacing:81.068688px;}
.wsda{word-spacing:81.364332px;}
.wsdb{word-spacing:96.093792px;}
.wse2{word-spacing:1876.460400px;}
._19{margin-left:-18.000000px;}
._8{margin-left:-16.848000px;}
._7{margin-left:-15.575040px;}
._2{margin-left:-13.487040px;}
._3{margin-left:-11.975040px;}
._5{margin-left:-10.800000px;}
._4{margin-left:-8.349120px;}
._6{margin-left:-6.696000px;}
._9{margin-left:-4.824000px;}
._13{margin-left:-3.767040px;}
._a{margin-left:-2.304000px;}
._1{margin-left:-1.034100px;}
._0{width:1.103040px;}
._c{width:2.500200px;}
._b{width:4.464000px;}
._e{width:6.096960px;}
._16{width:7.180200px;}
._d{width:9.006300px;}
._11{width:10.695600px;}
._f{width:11.746080px;}
._18{width:14.256000px;}
._12{width:15.486300px;}
._14{width:21.816000px;}
._15{width:23.976000px;}
._17{width:32.976000px;}
._10{width:194.400000px;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(46,116,181);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(82,82,82);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:47.880000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs9{font-size:90.000000px;}
.fs0{font-size:137.880000px;}
.fs2{font-size:150.120000px;}
.fs8{font-size:299.880000px;}
.fsa{font-size:479.880000px;}
.y0{bottom:0.000000px;}
.y69{bottom:5.490000px;}
.y67{bottom:5.580000px;}
.y6a{bottom:5.670000px;}
.y6c{bottom:5.760000px;}
.yd6{bottom:14.220000px;}
.y11a{bottom:14.309850px;}
.yc1{bottom:14.310000px;}
.yd7{bottom:14.400000px;}
.yc3{bottom:14.490000px;}
.y125{bottom:21.240000px;}
.y20b{bottom:57.531060px;}
.y18a{bottom:57.549870px;}
.y36b{bottom:57.562920px;}
.y352{bottom:57.566340px;}
.y388{bottom:57.571110px;}
.y350{bottom:57.579840px;}
.y37{bottom:57.600720px;}
.y3d9{bottom:57.601710px;}
.y390{bottom:57.606210px;}
.y3db{bottom:57.813390px;}
.y232{bottom:57.818430px;}
.y257{bottom:57.829860px;}
.y20a{bottom:77.690340px;}
.y189{bottom:77.709150px;}
.y36a{bottom:77.722200px;}
.y351{bottom:77.725620px;}
.y387{bottom:77.730390px;}
.y34f{bottom:77.739120px;}
.y36{bottom:77.760000px;}
.y3d8{bottom:77.760990px;}
.y38f{bottom:77.765490px;}
.y3da{bottom:77.972670px;}
.y231{bottom:77.977710px;}
.y256{bottom:77.989140px;}
.y5b{bottom:109.786680px;}
.y12e{bottom:109.795680px;}
.ye1{bottom:110.520000px;}
.y28c{bottom:111.420000px;}
.y273{bottom:111.420450px;}
.y2d5{bottom:111.600000px;}
.y2ca{bottom:112.680000px;}
.y38a{bottom:112.860000px;}
.y188{bottom:113.712570px;}
.y33f{bottom:114.030000px;}
.y39d{bottom:115.020000px;}
.y3c{bottom:115.290000px;}
.y3b2{bottom:115.380000px;}
.y39{bottom:115.470000px;}
.y3b1{bottom:119.340000px;}
.y255{bottom:121.189950px;}
.y9f{bottom:123.660000px;}
.y34e{bottom:124.184520px;}
.y14{bottom:124.740000px;}
.y5a{bottom:126.981000px;}
.y19e{bottom:127.260000px;}
.y1e5{bottom:127.923390px;}
.y39e{bottom:128.070000px;}
.y386{bottom:132.180210px;}
.y12d{bottom:132.210000px;}
.y105{bottom:132.570000px;}
.y38e{bottom:136.448100px;}
.ya0{bottom:136.620000px;}
.y2a1{bottom:138.150000px;}
.y3d7{bottom:138.420000px;}
.y2b7{bottom:138.600000px;}
.y30b{bottom:138.780000px;}
.y3c8{bottom:138.870000px;}
.y1c0{bottom:139.410000px;}
.y230{bottom:139.443750px;}
.y272{bottom:140.572350px;}
.ye0{bottom:141.570000px;}
.y1c3{bottom:142.025940px;}
.y28b{bottom:142.470000px;}
.y2d4{bottom:142.650000px;}
.y2c9{bottom:143.730000px;}
.y187{bottom:143.869140px;}
.y321{bottom:143.910000px;}
.y59{bottom:144.265500px;}
.y33e{bottom:145.080000px;}
.y209{bottom:145.102050px;}
.y3b{bottom:146.340000px;}
.y3ad{bottom:146.430000px;}
.y35{bottom:146.520000px;}
.y254{bottom:150.341850px;}
.y3d3{bottom:150.390000px;}
.y3b0{bottom:150.480000px;}
.yb5{bottom:151.470000px;}
.y34d{bottom:154.423440px;}
.y13{bottom:155.790000px;}
.y1e4{bottom:156.367080px;}
.y19d{bottom:158.310000px;}
.y104{bottom:162.270000px;}
.y385{bottom:162.336780px;}
.y369{bottom:163.679130px;}
.y140{bottom:164.520000px;}
.y38d{bottom:165.600000px;}
.y58{bottom:166.770000px;}
.y22f{bottom:168.595650px;}
.y2a0{bottom:169.200000px;}
.y2b6{bottom:169.650000px;}
.y271{bottom:169.724250px;}
.y30a{bottom:169.830000px;}
.y3c7{bottom:169.920000px;}
.y165{bottom:170.280000px;}
.y1bf{bottom:170.460000px;}
.ydf{bottom:172.620000px;}
.y1a0{bottom:172.710000px;}
.y28a{bottom:173.520000px;}
.y208{bottom:173.628090px;}
.y2d3{bottom:173.700000px;}
.y186{bottom:174.108060px;}
.y2c8{bottom:174.780000px;}
.y320{bottom:174.960000px;}
.y1c2{bottom:175.772970px;}
.y33d{bottom:176.130000px;}
.y4b{bottom:177.390000px;}
.y3ac{bottom:177.480000px;}
.y34{bottom:177.570000px;}
.y57{bottom:178.713360px;}
.y81{bottom:178.726680px;}
.y253{bottom:179.493750px;}
.y3bd{bottom:181.440000px;}
.yb4{bottom:182.520000px;}
.y34c{bottom:184.580010px;}
.y1e3{bottom:184.810770px;}
.y12{bottom:186.840000px;}
.y19c{bottom:189.360000px;}
.y103{bottom:191.880000px;}
.y384{bottom:192.575700px;}
.y368{bottom:193.835700px;}
.y13f{bottom:195.570000px;}
.y56{bottom:195.997860px;}
.y80{bottom:196.011180px;}
.y22e{bottom:197.747550px;}
.y270{bottom:198.793800px;}
.y29f{bottom:200.250000px;}
.y2b5{bottom:200.700000px;}
.y309{bottom:200.880000px;}
.y3c6{bottom:200.970000px;}
.y164{bottom:201.330000px;}
.y1be{bottom:201.510000px;}
.y207{bottom:202.071780px;}
.yde{bottom:203.670000px;}
.y185{bottom:204.346980px;}
.y289{bottom:204.570000px;}
.y2d2{bottom:204.750000px;}
.y2c7{bottom:205.830000px;}
.y31f{bottom:206.010000px;}
.y33c{bottom:207.180000px;}
.y19f{bottom:208.080000px;}
.y4a{bottom:208.440000px;}
.y39c{bottom:208.530000px;}
.y33{bottom:208.620000px;}
.y252{bottom:208.645650px;}
.y1c1{bottom:209.520000px;}
.y3cd{bottom:212.490000px;}
.y3ce{bottom:212.580000px;}
.y55{bottom:213.282360px;}
.y7f{bottom:213.295680px;}
.y1e2{bottom:213.336810px;}
.yb3{bottom:213.570000px;}
.y34b{bottom:214.818930px;}
.y102{bottom:218.970000px;}
.y19b{bottom:220.410000px;}
.y383{bottom:222.814620px;}
.y367{bottom:224.074620px;}
.y13e{bottom:226.620000px;}
.y22d{bottom:226.817100px;}
.y26f{bottom:227.945700px;}
.y54{bottom:230.476680px;}
.y206{bottom:230.515470px;}
.y29e{bottom:231.300000px;}
.y2b4{bottom:231.750000px;}
.y308{bottom:231.930000px;}
.y3c5{bottom:232.020000px;}
.y163{bottom:232.380000px;}
.y1bd{bottom:232.560000px;}
.y184{bottom:234.503550px;}
.ydd{bottom:234.720000px;}
.y38c{bottom:235.530000px;}
.y288{bottom:235.620000px;}
.y7e{bottom:235.710000px;}
.y2d1{bottom:235.800000px;}
.y2c6{bottom:236.880000px;}
.y31e{bottom:237.060000px;}
.y251{bottom:237.797550px;}
.y33b{bottom:238.230000px;}
.y49{bottom:239.490000px;}
.y39b{bottom:239.580000px;}
.y32{bottom:239.670000px;}
.y1e1{bottom:241.780500px;}
.yb2{bottom:244.620000px;}
.y34a{bottom:245.057850px;}
.y53{bottom:247.761180px;}
.y98{bottom:247.765500px;}
.y12f{bottom:248.760000px;}
.y11{bottom:250.329420px;}
.y19a{bottom:251.460000px;}
.y101{bottom:251.550000px;}
.y382{bottom:252.971190px;}
.y366{bottom:254.313540px;}
.y22c{bottom:255.969000px;}
.y26e{bottom:257.097600px;}
.y13d{bottom:257.670000px;}
.y205{bottom:258.959160px;}
.y29d{bottom:262.350000px;}
.y2b3{bottom:262.800000px;}
.y307{bottom:262.980000px;}
.y3c4{bottom:263.070000px;}
.y162{bottom:263.430000px;}
.y1bc{bottom:263.610000px;}
.y183{bottom:264.742470px;}
.y52{bottom:265.045680px;}
.ydc{bottom:265.770000px;}
.y2d0{bottom:266.580000px;}
.y287{bottom:266.670000px;}
.y2ef{bottom:266.850000px;}
.y250{bottom:266.867100px;}
.y2c5{bottom:267.930000px;}
.y31d{bottom:268.110000px;}
.y33a{bottom:269.280000px;}
.y1e0{bottom:270.224190px;}
.y97{bottom:270.270000px;}
.y48{bottom:270.540000px;}
.y3aa{bottom:270.630000px;}
.y31{bottom:270.720000px;}
.y3cb{bottom:274.680000px;}
.y349{bottom:275.214420px;}
.yb1{bottom:275.670000px;}
.y96{bottom:282.231000px;}
.y199{bottom:282.510000px;}
.y381{bottom:283.210110px;}
.y100{bottom:284.040000px;}
.y365{bottom:284.470110px;}
.y22b{bottom:285.120900px;}
.y26d{bottom:286.249500px;}
.y204{bottom:287.402850px;}
.y51{bottom:287.460000px;}
.y13c{bottom:288.720000px;}
.y29c{bottom:293.400000px;}
.y2b2{bottom:293.850000px;}
.y306{bottom:294.030000px;}
.y3c3{bottom:294.120000px;}
.y161{bottom:294.480000px;}
.y12c{bottom:294.570000px;}
.y1bb{bottom:294.660000px;}
.y182{bottom:294.981390px;}
.y24f{bottom:296.019000px;}
.ydb{bottom:296.820000px;}
.y286{bottom:297.720000px;}
.y2ee{bottom:297.900000px;}
.y1df{bottom:298.667880px;}
.y2c4{bottom:298.980000px;}
.y2cf{bottom:299.160000px;}
.y95{bottom:299.515500px;}
.y339{bottom:300.330000px;}
.y5c{bottom:300.510000px;}
.y47{bottom:301.590000px;}
.y39a{bottom:301.680000px;}
.y30{bottom:301.770000px;}
.y10{bottom:302.533650px;}
.y348{bottom:305.453340px;}
.y3ca{bottom:305.730000px;}
.yb0{bottom:306.720000px;}
.y380{bottom:313.449030px;}
.y198{bottom:313.560000px;}
.y22a{bottom:314.272800px;}
.y364{bottom:314.709030px;}
.yda{bottom:314.910000px;}
.y26c{bottom:315.401400px;}
.y203{bottom:315.928890px;}
.yff{bottom:316.620000px;}
.y13b{bottom:319.770000px;}
.y94{bottom:322.020000px;}
.y29b{bottom:324.450000px;}
.y2b1{bottom:324.900000px;}
.y305{bottom:325.080000px;}
.y181{bottom:325.137960px;}
.y3c2{bottom:325.170000px;}
.y24e{bottom:325.170900px;}
.y160{bottom:325.530000px;}
.y12b{bottom:325.620000px;}
.y1ba{bottom:325.710000px;}
.y1de{bottom:327.193920px;}
.yf8{bottom:327.870000px;}
.y30d{bottom:328.680000px;}
.y285{bottom:328.770000px;}
.y2ed{bottom:328.950000px;}
.y2c3{bottom:330.030000px;}
.y31c{bottom:330.210000px;}
.y338{bottom:331.380000px;}
.y46{bottom:332.640000px;}
.y3a3{bottom:332.730000px;}
.y2f{bottom:332.820000px;}
.y93{bottom:333.981000px;}
.y347{bottom:335.692260px;}
.y7d{bottom:335.880000px;}
.yaf{bottom:337.770000px;}
.y229{bottom:343.424700px;}
.y37f{bottom:343.605600px;}
.y202{bottom:344.372580px;}
.y26b{bottom:344.470950px;}
.y197{bottom:344.610000px;}
.y363{bottom:344.947950px;}
.yf7{bottom:345.960000px;}
.yd9{bottom:347.400000px;}
.yfe{bottom:349.200000px;}
.y13a{bottom:350.730000px;}
.y92{bottom:351.265500px;}
.y24d{bottom:354.322800px;}
.yf{bottom:354.625290px;}
.y3c1{bottom:354.870000px;}
.y180{bottom:355.376880px;}
.y29a{bottom:355.500000px;}
.y1dd{bottom:355.637610px;}
.y2b0{bottom:355.950000px;}
.y304{bottom:356.130000px;}
.y15f{bottom:356.580000px;}
.y12a{bottom:356.670000px;}
.y1b9{bottom:356.760000px;}
.y284{bottom:359.820000px;}
.y2ec{bottom:360.000000px;}
.y2c2{bottom:361.080000px;}
.y30c{bottom:361.260000px;}
.y337{bottom:362.430000px;}
.y2ce{bottom:362.610000px;}
.y45{bottom:363.690000px;}
.y399{bottom:363.780000px;}
.y2e{bottom:363.870000px;}
.y346{bottom:365.848830px;}
.y7c{bottom:366.930000px;}
.yae{bottom:368.820000px;}
.y228{bottom:372.494250px;}
.y201{bottom:372.816270px;}
.y26a{bottom:373.622850px;}
.y91{bottom:373.770000px;}
.y37e{bottom:373.844520px;}
.y362{bottom:375.104520px;}
.y196{bottom:375.660000px;}
.yf6{bottom:378.450000px;}
.yd8{bottom:379.980000px;}
.y139{bottom:381.780000px;}
.y24c{bottom:383.392350px;}
.y1dc{bottom:384.081300px;}
.y17f{bottom:385.615800px;}
.y90{bottom:385.726680px;}
.y299{bottom:386.730000px;}
.y2af{bottom:387.180000px;}
.y15e{bottom:387.630000px;}
.y129{bottom:387.720000px;}
.y1b8{bottom:387.810000px;}
.y283{bottom:390.870000px;}
.y50{bottom:390.960000px;}
.y2eb{bottom:391.050000px;}
.y2c1{bottom:392.130000px;}
.y31b{bottom:392.310000px;}
.y336{bottom:393.480000px;}
.y2cd{bottom:393.660000px;}
.y44{bottom:394.740000px;}
.y3a9{bottom:394.830000px;}
.y2d{bottom:394.920000px;}
.y345{bottom:396.087750px;}
.yfd{bottom:396.180000px;}
.y7b{bottom:397.800000px;}
.y3d2{bottom:398.880000px;}
.yad{bottom:399.870000px;}
.y200{bottom:401.259960px;}
.y227{bottom:401.646150px;}
.y269{bottom:402.774750px;}
.y8f{bottom:403.011180px;}
.y37d{bottom:404.083440px;}
.y361{bottom:405.343440px;}
.y195{bottom:406.710000px;}
.ye{bottom:406.716930px;}
.yf5{bottom:411.030000px;}
.y1db{bottom:412.524990px;}
.y24b{bottom:412.544250px;}
.yd5{bottom:412.560000px;}
.y138{bottom:412.830000px;}
.y17e{bottom:415.854720px;}
.y298{bottom:416.880000px;}
.y2ae{bottom:417.960000px;}
.y303{bottom:418.230000px;}
.y15d{bottom:418.680000px;}
.y128{bottom:418.770000px;}
.y1b7{bottom:418.860000px;}
.y8e{bottom:420.295680px;}
.y282{bottom:421.920000px;}
.y2ea{bottom:422.100000px;}
.y2c0{bottom:423.180000px;}
.y4f{bottom:423.270000px;}
.y31a{bottom:423.360000px;}
.y335{bottom:424.440000px;}
.y2cc{bottom:424.620000px;}
.y43{bottom:425.790000px;}
.y3bc{bottom:425.880000px;}
.y2c{bottom:425.970000px;}
.y344{bottom:426.326670px;}
.yfc{bottom:427.230000px;}
.y7a{bottom:429.030000px;}
.y1ff{bottom:429.786000px;}
.y3c9{bottom:429.840000px;}
.y226{bottom:430.798050px;}
.yac{bottom:430.920000px;}
.y268{bottom:431.926650px;}
.y37c{bottom:434.240010px;}
.y360{bottom:435.582360px;}
.y194{bottom:437.760000px;}
.y1da{bottom:440.968680px;}
.y24a{bottom:441.696150px;}
.y8d{bottom:442.710000px;}
.yf4{bottom:443.520000px;}
.y137{bottom:443.880000px;}
.yd4{bottom:445.050000px;}
.y17d{bottom:446.011290px;}
.y297{bottom:447.750000px;}
.y302{bottom:449.280000px;}
.y15c{bottom:449.730000px;}
.y127{bottom:449.820000px;}
.y1b6{bottom:449.910000px;}
.y2ad{bottom:450.540000px;}
.y281{bottom:452.970000px;}
.y2e9{bottom:453.150000px;}
.y2bf{bottom:454.230000px;}
.y319{bottom:454.410000px;}
.y8c{bottom:454.761180px;}
.y2cb{bottom:455.490000px;}
.y4e{bottom:455.670000px;}
.y343{bottom:456.565590px;}
.y42{bottom:456.840000px;}
.y2b{bottom:457.020000px;}
.y1fe{bottom:458.229690px;}
.yfb{bottom:458.280000px;}
.yd{bottom:458.808570px;}
.y225{bottom:459.949950px;}
.y79{bottom:460.080000px;}
.y267{bottom:460.996200px;}
.yab{bottom:461.970000px;}
.y37b{bottom:464.478930px;}
.y35f{bottom:465.821280px;}
.y193{bottom:468.810000px;}
.y1d9{bottom:469.494720px;}
.y249{bottom:470.848050px;}
.y8b{bottom:471.955500px;}
.y136{bottom:474.930000px;}
.yf3{bottom:476.100000px;}
.y17c{bottom:476.250210px;}
.yd3{bottom:477.630000px;}
.y32b{bottom:480.150000px;}
.y296{bottom:480.330000px;}
.y15b{bottom:480.780000px;}
.y126{bottom:480.870000px;}
.y1b5{bottom:480.960000px;}
.y2ac{bottom:481.590000px;}
.y280{bottom:484.020000px;}
.y2e8{bottom:484.200000px;}
.y2be{bottom:485.280000px;}
.y318{bottom:485.460000px;}
.y334{bottom:486.540000px;}
.y1fd{bottom:486.673380px;}
.y342{bottom:486.722160px;}
.y41{bottom:487.890000px;}
.y3ae{bottom:487.980000px;}
.y2a{bottom:488.070000px;}
.y224{bottom:489.019500px;}
.yfa{bottom:489.330000px;}
.y266{bottom:490.148100px;}
.y78{bottom:491.130000px;}
.y3d1{bottom:492.030000px;}
.yaa{bottom:493.020000px;}
.y8a{bottom:494.460000px;}
.y37a{bottom:494.717850px;}
.y35e{bottom:495.977850px;}
.y1d8{bottom:497.938410px;}
.y124{bottom:498.870000px;}
.y192{bottom:499.860000px;}
.y248{bottom:499.999950px;}
.y135{bottom:505.980000px;}
.y17b{bottom:506.489130px;}
.y99{bottom:507.510000px;}
.yf2{bottom:508.680000px;}
.yd2{bottom:510.120000px;}
.yc{bottom:510.900210px;}
.y295{bottom:511.110000px;}
.y301{bottom:511.380000px;}
.y15a{bottom:511.830000px;}
.y1b4{bottom:512.010000px;}
.y2ab{bottom:512.640000px;}
.y27f{bottom:515.070000px;}
.y1fc{bottom:515.117070px;}
.y2e7{bottom:515.250000px;}
.yf9{bottom:516.330000px;}
.y317{bottom:516.510000px;}
.y341{bottom:516.961080px;}
.y333{bottom:517.590000px;}
.y223{bottom:518.171400px;}
.y40{bottom:518.940000px;}
.y398{bottom:519.030000px;}
.y29{bottom:519.120000px;}
.y265{bottom:519.300000px;}
.y77{bottom:522.180000px;}
.ya9{bottom:523.980000px;}
.y379{bottom:524.956770px;}
.y35d{bottom:526.216770px;}
.y1d7{bottom:526.382100px;}
.y247{bottom:529.069500px;}
.y191{bottom:530.910000px;}
.y123{bottom:531.450000px;}
.y110{bottom:533.882550px;}
.y17a{bottom:536.645700px;}
.y134{bottom:537.030000px;}
.yf1{bottom:541.170000px;}
.y300{bottom:542.430000px;}
.yd1{bottom:542.700000px;}
.y159{bottom:542.880000px;}
.y1b3{bottom:543.060000px;}
.y2aa{bottom:543.420000px;}
.y1fb{bottom:543.560760px;}
.y294{bottom:543.690000px;}
.y27e{bottom:546.120000px;}
.y2e6{bottom:546.300000px;}
.y340{bottom:547.200000px;}
.y222{bottom:547.323300px;}
.y2bd{bottom:547.380000px;}
.y316{bottom:547.560000px;}
.y332{bottom:548.640000px;}
.y3f{bottom:549.990000px;}
.y3ab{bottom:550.080000px;}
.y89{bottom:550.169850px;}
.y28{bottom:550.170000px;}
.y76{bottom:553.230000px;}
.y3d6{bottom:554.040000px;}
.y3a8{bottom:554.130000px;}
.y1d6{bottom:554.825790px;}
.ya8{bottom:555.030000px;}
.y378{bottom:555.113340px;}
.y35c{bottom:556.455690px;}
.y246{bottom:558.221400px;}
.y264{bottom:558.450000px;}
.yb{bottom:562.991850px;}
.y122{bottom:564.030000px;}
.y179{bottom:566.884620px;}
.y133{bottom:568.080000px;}
.y1fa{bottom:572.086800px;}
.y158{bottom:573.120000px;}
.y190{bottom:573.390000px;}
.y2ff{bottom:573.480000px;}
.yf0{bottom:573.750000px;}
.y1b2{bottom:574.110000px;}
.y293{bottom:574.470000px;}
.yd0{bottom:575.280000px;}
.y2a9{bottom:576.000000px;}
.y221{bottom:576.475200px;}
.y27d{bottom:577.350000px;}
.y2bc{bottom:578.430000px;}
.y315{bottom:578.610000px;}
.y331{bottom:579.690000px;}
.y3e{bottom:581.040000px;}
.y396{bottom:581.130000px;}
.y88{bottom:581.219850px;}
.y27{bottom:581.220000px;}
.y1d5{bottom:583.351830px;}
.y75{bottom:584.280000px;}
.y397{bottom:585.180000px;}
.y377{bottom:585.352260px;}
.ya7{bottom:586.080000px;}
.y35b{bottom:586.612260px;}
.y245{bottom:587.373300px;}
.y263{bottom:589.500000px;}
.y121{bottom:596.520000px;}
.y178{bottom:597.123540px;}
.y132{bottom:599.130000px;}
.y1f9{bottom:600.530490px;}
.y32a{bottom:604.260000px;}
.y2fe{bottom:604.530000px;}
.y1b1{bottom:605.160000px;}
.y220{bottom:605.627100px;}
.yef{bottom:606.330000px;}
.y2a8{bottom:606.870000px;}
.y292{bottom:607.050000px;}
.y106{bottom:607.214250px;}
.ycf{bottom:607.770000px;}
.y27c{bottom:608.130000px;}
.y2e5{bottom:608.400000px;}
.y2bb{bottom:609.660000px;}
.y330{bottom:610.740000px;}
.ya6{bottom:611.640000px;}
.y1d4{bottom:611.795520px;}
.y3d{bottom:612.090000px;}
.y3ba{bottom:612.180000px;}
.y87{bottom:612.269850px;}
.y26{bottom:612.270000px;}
.ya{bottom:615.083490px;}
.y74{bottom:615.330000px;}
.y376{bottom:615.591180px;}
.y3bb{bottom:616.230000px;}
.y244{bottom:616.525200px;}
.y35a{bottom:616.851180px;}
.y262{bottom:620.550000px;}
.y177{bottom:627.280110px;}
.ybf{bottom:628.701150px;}
.y1f8{bottom:628.974180px;}
.y120{bottom:629.100000px;}
.y131{bottom:630.180000px;}
.y21f{bottom:634.696650px;}
.y2fd{bottom:635.580000px;}
.y1b0{bottom:636.210000px;}
.y329{bottom:636.840000px;}
.y291{bottom:637.920000px;}
.yee{bottom:638.820000px;}
.y2a7{bottom:639.450000px;}
.y1d3{bottom:640.239210px;}
.yce{bottom:640.350000px;}
.y27b{bottom:640.710000px;}
.y32f{bottom:641.790000px;}
.y9b{bottom:643.140000px;}
.y395{bottom:643.230000px;}
.y86{bottom:643.319850px;}
.y25{bottom:643.320000px;}
.y243{bottom:645.677100px;}
.y375{bottom:645.747750px;}
.y73{bottom:646.380000px;}
.y359{bottom:647.090100px;}
.y261{bottom:651.600000px;}
.y1f7{bottom:657.417870px;}
.y176{bottom:657.519030px;}
.y107{bottom:657.684990px;}
.yb6{bottom:659.743950px;}
.y130{bottom:661.230000px;}
.y72{bottom:663.660000px;}
.y21e{bottom:663.848550px;}
.y2fc{bottom:666.360000px;}
.y9{bottom:667.175130px;}
.y1af{bottom:667.260000px;}
.y328{bottom:667.620000px;}
.y1d2{bottom:668.682900px;}
.y2a6{bottom:670.230000px;}
.y290{bottom:670.500000px;}
.yed{bottom:671.400000px;}
.y389{bottom:671.490000px;}
.y27a{bottom:671.760000px;}
.y32e{bottom:673.020000px;}
.y9a{bottom:674.190000px;}
.y3b9{bottom:674.280000px;}
.y85{bottom:674.369850px;}
.y24{bottom:674.370000px;}
.y242{bottom:674.746650px;}
.y11f{bottom:674.820000px;}
.y374{bottom:675.986670px;}
.y358{bottom:677.246670px;}
.y3cc{bottom:678.240000px;}
.y260{bottom:682.650000px;}
.yb7{bottom:683.145660px;}
.y1f6{bottom:685.943910px;}
.y71{bottom:686.790000px;}
.ycd{bottom:687.420000px;}
.y175{bottom:687.757950px;}
.y21d{bottom:693.000450px;}
.y141{bottom:695.404200px;}
.y1d1{bottom:697.126590px;}
.y1ae{bottom:698.310000px;}
.y2fb{bottom:698.940000px;}
.y157{bottom:699.148950px;}
.y327{bottom:700.200000px;}
.y28f{bottom:701.280000px;}
.y2e4{bottom:701.550000px;}
.y279{bottom:702.540000px;}
.y2a5{bottom:702.810000px;}
.y241{bottom:703.898550px;}
.y32d{bottom:704.070000px;}
.y11e{bottom:704.520000px;}
.ya5{bottom:705.240000px;}
.y394{bottom:705.330000px;}
.y84{bottom:705.419850px;}
.y23{bottom:705.420000px;}
.y373{bottom:706.225590px;}
.yb8{bottom:706.547370px;}
.y357{bottom:707.485590px;}
.y108{bottom:708.155730px;}
.y70{bottom:709.830000px;}
.y3b8{bottom:712.074240px;}
.y25f{bottom:713.700000px;}
.y1f5{bottom:714.387600px;}
.y156{bottom:715.632450px;}
.y174{bottom:717.914520px;}
.ycc{bottom:718.470000px;}
.y8{bottom:719.379360px;}
.y21c{bottom:722.152350px;}
.y18f{bottom:723.330000px;}
.y1d0{bottom:725.652630px;}
.y1ad{bottom:729.360000px;}
.yb9{bottom:729.949080px;}
.y2fa{bottom:729.990000px;}
.y326{bottom:730.980000px;}
.y11d{bottom:731.520000px;}
.y2e3{bottom:732.510000px;}
.y6f{bottom:732.960000px;}
.y240{bottom:733.050450px;}
.y2a4{bottom:733.590000px;}
.y28e{bottom:733.860000px;}
.y32c{bottom:734.940000px;}
.y278{bottom:735.120000px;}
.ya4{bottom:736.290000px;}
.y3a2{bottom:736.380000px;}
.y372{bottom:736.382160px;}
.y83{bottom:736.469850px;}
.y22{bottom:736.470000px;}
.y356{bottom:737.724510px;}
.y142{bottom:739.427700px;}
.y3d0{bottom:740.340000px;}
.y3a7{bottom:740.430000px;}
.y1f4{bottom:742.831290px;}
.y25e{bottom:744.660000px;}
.y155{bottom:747.253950px;}
.y173{bottom:748.153440px;}
.yec{bottom:749.520000px;}
.y21b{bottom:751.304250px;}
.yba{bottom:753.350790px;}
.y1cf{bottom:754.096320px;}
.y6e{bottom:756.000000px;}
.y109{bottom:758.626470px;}
.y1ac{bottom:760.410000px;}
.y2f9{bottom:760.860000px;}
.y23f{bottom:762.202350px;}
.y2e2{bottom:763.560000px;}
.y11c{bottom:764.100000px;}
.y18e{bottom:764.460000px;}
.y28d{bottom:764.640000px;}
.y314{bottom:764.910000px;}
.y277{bottom:766.170000px;}
.y371{bottom:766.621080px;}
.y9e{bottom:767.340000px;}
.y3b7{bottom:767.429850px;}
.y3bf{bottom:767.430000px;}
.y82{bottom:767.519850px;}
.y21{bottom:767.520000px;}
.y355{bottom:767.881080px;}
.ycb{bottom:769.050000px;}
.y1f3{bottom:771.274980px;}
.y3c0{bottom:771.480000px;}
.y25d{bottom:775.800000px;}
.ybb{bottom:776.752500px;}
.y172{bottom:778.392360px;}
.y154{bottom:778.875300px;}
.y6d{bottom:779.130000px;}
.y21a{bottom:780.373800px;}
.y1ce{bottom:782.540010px;}
.y143{bottom:783.451200px;}
.y23e{bottom:791.354250px;}
.y1ab{bottom:791.460000px;}
.y2f8{bottom:791.910000px;}
.y7{bottom:793.088280px;}
.y325{bottom:794.430000px;}
.y2e1{bottom:794.610000px;}
.y313{bottom:795.960000px;}
.y11b{bottom:796.590000px;}
.y370{bottom:796.860000px;}
.y2a3{bottom:797.040000px;}
.y276{bottom:797.220000px;}
.y354{bottom:798.120000px;}
.ya3{bottom:798.300000px;}
.y3a1{bottom:798.389850px;}
.y3b6{bottom:798.390000px;}
.y393{bottom:798.479850px;}
.y20{bottom:798.480000px;}
.y1f2{bottom:799.718670px;}
.yeb{bottom:800.100000px;}
.ybc{bottom:800.154210px;}
.yca{bottom:801.540000px;}
.y6b{bottom:802.170000px;}
.y18d{bottom:805.680000px;}
.y25c{bottom:806.850000px;}
.y171{bottom:808.631280px;}
.y10a{bottom:809.097210px;}
.y219{bottom:809.525700px;}
.y153{bottom:810.496800px;}
.y1cd{bottom:810.983700px;}
.y23d{bottom:820.423800px;}
.y1aa{bottom:822.510000px;}
.y2f7{bottom:822.870000px;}
.ybd{bottom:823.555920px;}
.y68{bottom:825.300000px;}
.y2e0{bottom:825.660000px;}
.y312{bottom:827.010000px;}
.y144{bottom:827.474700px;}
.y2a2{bottom:828.000000px;}
.y1f1{bottom:828.244710px;}
.y275{bottom:828.270000px;}
.y119{bottom:829.170000px;}
.ya2{bottom:829.350000px;}
.y3cf{bottom:829.440000px;}
.y1f{bottom:829.530000px;}
.yea{bottom:832.590000px;}
.yc9{bottom:834.120000px;}
.y25b{bottom:837.900000px;}
.y218{bottom:838.677600px;}
.y170{bottom:838.787850px;}
.y1cc{bottom:839.509740px;}
.y152{bottom:842.118150px;}
.y18c{bottom:846.900000px;}
.ybe{bottom:846.957630px;}
.y66{bottom:848.340000px;}
.y23c{bottom:849.575700px;}
.y1a9{bottom:853.560000px;}
.y2f6{bottom:855.450000px;}
.y1f0{bottom:856.688400px;}
.y2df{bottom:856.710000px;}
.y6{bottom:857.790000px;}
.y311{bottom:858.060000px;}
.y274{bottom:859.050000px;}
.y2ba{bottom:859.320000px;}
.y10b{bottom:859.567950px;}
.y20f{bottom:860.400000px;}
.y3a6{bottom:860.490000px;}
.y1e{bottom:860.580000px;}
.y118{bottom:861.750000px;}
.y3b5{bottom:864.540000px;}
.ye9{bottom:865.170000px;}
.yc8{bottom:866.700000px;}
.y217{bottom:867.829500px;}
.y1cb{bottom:867.953430px;}
.y25a{bottom:868.950000px;}
.y16f{bottom:869.026770px;}
.y145{bottom:871.498200px;}
.y151{bottom:873.739500px;}
.y23b{bottom:878.727600px;}
.y1a8{bottom:884.610000px;}
.y1ef{bottom:885.132090px;}
.y65{bottom:885.240000px;}
.y2f5{bottom:886.230000px;}
.y2de{bottom:887.760000px;}
.y310{bottom:889.110000px;}
.y353{bottom:890.100000px;}
.y2b9{bottom:890.370000px;}
.y4d{bottom:891.450000px;}
.y392{bottom:891.540000px;}
.y1d{bottom:891.630000px;}
.y3b4{bottom:895.500000px;}
.y3d5{bottom:895.590000px;}
.y1ca{bottom:896.397120px;}
.y216{bottom:896.981400px;}
.ye8{bottom:897.750000px;}
.yc7{bottom:899.190000px;}
.y16e{bottom:899.265690px;}
.y259{bottom:900.000000px;}
.y5{bottom:904.582530px;}
.y150{bottom:905.361000px;}
.y117{bottom:907.380000px;}
.y23a{bottom:907.879500px;}
.y10c{bottom:910.038690px;}
.y1ee{bottom:913.575780px;}
.y146{bottom:915.521700px;}
.y1a7{bottom:915.660000px;}
.y64{bottom:916.290000px;}
.y2dd{bottom:918.810000px;}
.y36f{bottom:919.890000px;}
.y30f{bottom:920.160000px;}
.y2b8{bottom:921.150000px;}
.y20e{bottom:922.500000px;}
.y3be{bottom:922.590000px;}
.y1c{bottom:922.680000px;}
.y1c9{bottom:924.840810px;}
.y215{bottom:926.050950px;}
.y258{bottom:926.910000px;}
.y16d{bottom:929.422260px;}
.ye7{bottom:930.240000px;}
.yc6{bottom:931.770000px;}
.y18b{bottom:934.290000px;}
.y14f{bottom:936.982500px;}
.y239{bottom:937.031400px;}
.y116{bottom:937.080000px;}
.y1ed{bottom:942.101820px;}
.y4{bottom:945.884340px;}
.y1a6{bottom:946.710000px;}
.y63{bottom:947.340000px;}
.y2f4{bottom:949.680000px;}
.y2dc{bottom:949.860000px;}
.y324{bottom:950.940000px;}
.y30e{bottom:951.210000px;}
.y36e{bottom:952.470000px;}
.y1c8{bottom:953.284500px;}
.y20d{bottom:953.550000px;}
.y3a0{bottom:953.640000px;}
.y1b{bottom:953.730000px;}
.y214{bottom:955.202850px;}
.y3d4{bottom:957.690000px;}
.y147{bottom:959.545200px;}
.y16c{bottom:959.661180px;}
.y10d{bottom:960.509430px;}
.ye6{bottom:962.820000px;}
.y115{bottom:964.170000px;}
.yc5{bottom:964.350000px;}
.y238{bottom:966.100950px;}
.y14e{bottom:968.603850px;}
.y1ec{bottom:970.545510px;}
.y1a5{bottom:977.670000px;}
.y62{bottom:978.300000px;}
.y2db{bottom:980.730000px;}
.y1c7{bottom:981.810540px;}
.y2f3{bottom:982.260000px;}
.y323{bottom:983.520000px;}
.y213{bottom:984.354750px;}
.y9d{bottom:984.600000px;}
.y391{bottom:984.690000px;}
.y1a{bottom:984.780000px;}
.y3af{bottom:988.740000px;}
.y16b{bottom:989.900100px;}
.y237{bottom:995.252850px;}
.ye5{bottom:995.400000px;}
.y114{bottom:996.750000px;}
.yc4{bottom:996.840000px;}
.y1eb{bottom:998.989200px;}
.y14d{bottom:1000.225200px;}
.y148{bottom:1003.568700px;}
.y3{bottom:1005.379560px;}
.y1a4{bottom:1008.720000px;}
.y61{bottom:1010.610000px;}
.y10e{bottom:1010.980170px;}
.y2f2{bottom:1013.040000px;}
.y2da{bottom:1013.310000px;}
.y212{bottom:1013.506650px;}
.y1c6{bottom:1014.388200px;}
.y322{bottom:1014.570000px;}
.ya1{bottom:1015.650000px;}
.y39f{bottom:1015.740000px;}
.y19{bottom:1015.830000px;}
.y16a{bottom:1020.056670px;}
.y236{bottom:1024.404750px;}
.y1ea{bottom:1027.432890px;}
.ye4{bottom:1027.890000px;}
.y113{bottom:1029.240000px;}
.yc2{bottom:1029.420000px;}
.y14c{bottom:1031.846700px;}
.y1a3{bottom:1039.770000px;}
.y211{bottom:1042.658550px;}
.y60{bottom:1043.010000px;}
.y2d9{bottom:1044.090000px;}
.y36d{bottom:1045.440000px;}
.y2f1{bottom:1045.620000px;}
.y20c{bottom:1046.700000px;}
.y1c5{bottom:1046.784690px;}
.y3a5{bottom:1046.790000px;}
.y18{bottom:1046.880000px;}
.y149{bottom:1047.592200px;}
.y169{bottom:1050.295590px;}
.y235{bottom:1053.556650px;}
.y1e9{bottom:1055.876580px;}
.ye3{bottom:1060.470000px;}
.y10f{bottom:1061.450910px;}
.y112{bottom:1061.820000px;}
.yc0{bottom:1062.000000px;}
.y14b{bottom:1063.468050px;}
.y2{bottom:1064.874780px;}
.y1a2{bottom:1070.820000px;}
.y210{bottom:1071.728100px;}
.y5f{bottom:1074.060000px;}
.y36c{bottom:1076.400000px;}
.y38b{bottom:1076.490000px;}
.y2d8{bottom:1076.670000px;}
.y9c{bottom:1077.750000px;}
.y3a4{bottom:1077.840000px;}
.y17{bottom:1077.930000px;}
.y1c4{bottom:1079.280000px;}
.y168{bottom:1080.534510px;}
.y234{bottom:1082.708550px;}
.y1e8{bottom:1084.402620px;}
.y14a{bottom:1091.615700px;}
.ye2{bottom:1093.050000px;}
.y111{bottom:1094.400000px;}
.y1a1{bottom:1100.880000px;}
.y5e{bottom:1106.370000px;}
.y2f0{bottom:1107.540000px;}
.y2d7{bottom:1107.720000px;}
.y4c{bottom:1108.800000px;}
.y3a{bottom:1108.890000px;}
.y16{bottom:1108.980000px;}
.y167{bottom:1110.691080px;}
.y233{bottom:1111.778100px;}
.y1e7{bottom:1112.846310px;}
.y1{bottom:1124.370000px;}
.y2d6{bottom:1138.500000px;}
.y5d{bottom:1138.680000px;}
.y38{bottom:1139.850000px;}
.y3b3{bottom:1139.940000px;}
.y15{bottom:1140.030000px;}
.y166{bottom:1140.930000px;}
.y1e6{bottom:1141.290000px;}
.he{height:22.320000px;}
.hd{height:22.321500px;}
.hc{height:22.410000px;}
.h12{height:30.960000px;}
.h11{height:31.050000px;}
.ha{height:38.158594px;}
.h14{height:38.759766px;}
.h13{height:46.991602px;}
.h6{height:47.286914px;}
.h26{height:47.374642px;}
.h21{height:50.027344px;}
.h1c{height:50.387344px;}
.h19{height:51.679688px;}
.h15{height:52.655166px;}
.h20{height:54.824062px;}
.h22{height:55.184062px;}
.h1e{height:58.151602px;}
.h23{height:58.511602px;}
.hb{height:59.004492px;}
.h3{height:60.589687px;}
.h17{height:64.599609px;}
.h1a{height:64.657617px;}
.h8{height:70.628906px;}
.h5{height:70.664062px;}
.h1d{height:71.024063px;}
.h1f{height:71.384063px;}
.h7{height:72.562500px;}
.h10{height:73.991002px;}
.hf{height:73.991602px;}
.h25{height:73.992202px;}
.h24{height:74.351002px;}
.h1b{height:74.351602px;}
.h9{height:75.093750px;}
.h2{height:138.957188px;}
.h4{height:147.334570px;}
.h16{height:215.245898px;}
.h18{height:483.629062px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w20{width:73.440000px;}
.w25{width:73.890000px;}
.w9{width:85.500000px;}
.w8{width:85.501500px;}
.w3{width:86.218500px;}
.w4{width:86.220000px;}
.w2c{width:87.300000px;}
.w2f{width:87.840000px;}
.wb{width:89.100000px;}
.w6{width:89.910000px;}
.w1f{width:95.130000px;}
.wa{width:96.390000px;}
.w5{width:97.200000px;}
.w2a{width:99.900000px;}
.w30{width:100.351500px;}
.w14{width:101.790000px;}
.w2b{width:102.420000px;}
.w31{width:102.600000px;}
.w34{width:102.690000px;}
.w2d{width:102.960000px;}
.w35{width:103.050000px;}
.w15{width:103.680000px;}
.w19{width:103.770000px;}
.w1e{width:103.950000px;}
.w1a{width:104.131500px;}
.w33{width:104.401500px;}
.w36{width:104.850000px;}
.w18{width:104.941500px;}
.w1d{width:105.481500px;}
.w17{width:105.570000px;}
.w1c{width:106.110000px;}
.w16{width:109.710000px;}
.w32{width:109.801500px;}
.w2e{width:110.160000px;}
.w1b{width:110.250000px;}
.w24{width:114.661500px;}
.w29{width:114.840000px;}
.w22{width:115.380000px;}
.w21{width:115.470000px;}
.w23{width:115.471500px;}
.w28{width:115.830000px;}
.w27{width:115.920000px;}
.w26{width:116.010000px;}
.wd{width:120.240000px;}
.wf{width:120.330000px;}
.w13{width:120.508500px;}
.w10{width:120.600000px;}
.w12{width:120.780000px;}
.wc{width:121.770000px;}
.we{width:123.841500px;}
.w11{width:124.381500px;}
.w7{width:191.250000px;}
.w2{width:191.611500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:8.100000px;}
.x25{left:9.450000px;}
.x12{left:10.620000px;}
.x18{left:14.130000px;}
.x36{left:15.480000px;}
.x35{left:17.190000px;}
.x39{left:18.360000px;}
.x42{left:19.710000px;}
.x34{left:21.780000px;}
.x32{left:23.310000px;}
.x33{left:25.110000px;}
.x1a{left:26.730000px;}
.x1b{left:28.710000px;}
.x24{left:30.420000px;}
.x20{left:33.390000px;}
.x37{left:34.830000px;}
.x23{left:36.900000px;}
.x38{left:39.240000px;}
.x4e{left:40.860000px;}
.x1e{left:42.750000px;}
.x1d{left:44.460000px;}
.x4f{left:45.720000px;}
.x3f{left:46.800000px;}
.x1c{left:48.150000px;}
.x46{left:49.680000px;}
.x3b{left:51.030000px;}
.x49{left:52.200000px;}
.x3a{left:53.820000px;}
.x2e{left:55.620000px;}
.x1f{left:58.140000px;}
.x19{left:59.670000px;}
.x22{left:61.200000px;}
.x21{left:66.690000px;}
.x10{left:95.670000px;}
.x7{left:127.629270px;}
.x43{left:135.780330px;}
.x2c{left:139.860000px;}
.x54{left:141.996600px;}
.x2{left:143.083530px;}
.x6{left:144.180000px;}
.xc0{left:145.710000px;}
.x53{left:148.841100px;}
.x5e{left:154.620000px;}
.x8f{left:159.480000px;}
.x92{left:162.270000px;}
.x1{left:163.800000px;}
.x8c{left:169.920000px;}
.x86{left:171.990000px;}
.x84{left:173.070000px;}
.x4{left:174.864870px;}
.xc6{left:176.130000px;}
.xd{left:180.720000px;}
.xa2{left:183.150000px;}
.x3{left:184.482000px;}
.xb2{left:194.580000px;}
.x7d{left:201.150000px;}
.xe{left:207.720000px;}
.xba{left:210.420000px;}
.x70{left:213.390000px;}
.x83{left:218.340000px;}
.x44{left:223.470000px;}
.x7b{left:225.720000px;}
.x81{left:226.800000px;}
.x4b{left:228.330000px;}
.x3d{left:230.130000px;}
.x87{left:232.470000px;}
.xf{left:234.720000px;}
.x5f{left:236.070000px;}
.xa9{left:238.950000px;}
.x9a{left:241.380000px;}
.x7c{left:245.970000px;}
.x73{left:247.410000px;}
.x7a{left:249.120000px;}
.xc9{left:251.460000px;}
.x79{left:253.710000px;}
.x75{left:256.230000px;}
.x76{left:258.120000px;}
.xbb{left:259.200000px;}
.x56{left:260.820000px;}
.x2d{left:262.350000px;}
.x78{left:265.770000px;}
.xa7{left:266.940000px;}
.xa4{left:273.060000px;}
.xb3{left:277.470000px;}
.x82{left:279.000000px;}
.x93{left:280.980000px;}
.xbd{left:282.510000px;}
.x68{left:284.940000px;}
.x7f{left:286.020000px;}
.x26{left:287.100000px;}
.x80{left:289.260000px;}
.x88{left:291.060000px;}
.x69{left:292.140000px;}
.xc1{left:293.850000px;}
.x63{left:295.290000px;}
.x6d{left:297.090000px;}
.x45{left:298.440000px;}
.x7e{left:302.760000px;}
.x8d{left:306.360000px;}
.x90{left:310.954320px;}
.x6b{left:313.380000px;}
.x77{left:315.270000px;}
.x11{left:319.230000px;}
.x96{left:321.750000px;}
.x6a{left:324.540000px;}
.x65{left:327.600000px;}
.xc4{left:329.940000px;}
.x4c{left:332.280000px;}
.x3e{left:335.340000px;}
.xc2{left:337.950000px;}
.xac{left:340.560000px;}
.x59{left:341.730000px;}
.x97{left:343.620000px;}
.x57{left:344.790000px;}
.xcc{left:346.050000px;}
.x2a{left:347.099880px;}
.x94{left:349.290000px;}
.x9e{left:353.340000px;}
.x29{left:354.599850px;}
.xce{left:359.370000px;}
.x8e{left:361.530000px;}
.x66{left:362.700000px;}
.x60{left:364.770000px;}
.x2b{left:366.675750px;}
.x5a{left:367.830000px;}
.xbe{left:373.410000px;}
.xc8{left:375.840000px;}
.x89{left:377.370000px;}
.xa8{left:379.440000px;}
.x2f{left:384.120000px;}
.xb5{left:387.180000px;}
.xca{left:389.970000px;}
.xb6{left:396.270000px;}
.xa5{left:398.250000px;}
.xad{left:403.470000px;}
.x13{left:405.450000px;}
.xc5{left:408.510000px;}
.xbc{left:411.210000px;}
.xc{left:414.000000px;}
.x47{left:415.440000px;}
.xb7{left:419.310000px;}
.x85{left:421.470000px;}
.xbf{left:432.540000px;}
.xae{left:434.880000px;}
.x74{left:440.100000px;}
.x95{left:441.450000px;}
.x4d{left:443.520000px;}
.x5{left:446.487660px;}
.xaf{left:451.260000px;}
.x64{left:452.970000px;}
.xcd{left:462.600000px;}
.x67{left:470.520000px;}
.xc3{left:471.780000px;}
.xb8{left:474.480000px;}
.x72{left:478.170000px;}
.x5c{left:479.518020px;}
.x9f{left:485.730000px;}
.x98{left:487.890000px;}
.x14{left:491.670000px;}
.x9b{left:498.870000px;}
.x5b{left:503.010000px;}
.x30{left:509.490000px;}
.x99{left:514.080000px;}
.xb4{left:520.380000px;}
.x9c{left:522.000000px;}
.x48{left:532.350000px;}
.xb0{left:536.760000px;}
.x6c{left:545.220000px;}
.x9d{left:547.290000px;}
.x50{left:549.990000px;}
.x40{left:553.680000px;}
.x28{left:555.660000px;}
.xb1{left:562.950000px;}
.xa6{left:572.580000px;}
.x58{left:574.470000px;}
.xa3{left:580.860000px;}
.x71{left:585.000000px;}
.x16{left:588.870000px;}
.xcb{left:593.640000px;}
.xa0{left:598.500000px;}
.xa{left:601.380000px;}
.x8b{left:605.880000px;}
.x6e{left:615.240000px;}
.x9{left:616.590000px;}
.xa1{left:620.550000px;}
.x55{left:627.851700px;}
.x31{left:631.260000px;}
.x4a{left:649.260000px;}
.xaa{left:658.260000px;}
.x41{left:660.150000px;}
.x51{left:661.230000px;}
.x6f{left:671.760000px;}
.xb9{left:677.070000px;}
.x17{left:678.780000px;}
.x8a{left:684.720000px;}
.xab{left:698.670000px;}
.x61{left:699.840000px;}
.x91{left:726.570000px;}
.x62{left:732.150000px;}
.x5d{left:740.340000px;}
.xc7{left:746.910000px;}
.x27{left:748.710000px;}
.xb{left:757.080000px;}
.x52{left:760.410000px;}
.x3c{left:762.120000px;}
.x8{left:765.450000px;}
@media print{
.v1{vertical-align:-119.695680pt;}
.v4{vertical-align:-24.000000pt;}
.v3{vertical-align:-18.560000pt;}
.v6{vertical-align:-14.080000pt;}
.v8{vertical-align:-0.960000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:0.960000pt;}
.v7{vertical-align:9.920000pt;}
.v5{vertical-align:12.351467pt;}
.v2{vertical-align:24.000000pt;}
.ls85{letter-spacing:-2.880000pt;}
.ls88{letter-spacing:-2.240000pt;}
.ls87{letter-spacing:-0.960000pt;}
.ls86{letter-spacing:-0.640000pt;}
.ls30{letter-spacing:-0.587840pt;}
.ls8{letter-spacing:-0.512000pt;}
.ls31{letter-spacing:-0.427520pt;}
.ls36{letter-spacing:-0.384000pt;}
.ls3f{letter-spacing:-0.320000pt;}
.ls23{letter-spacing:-0.256000pt;}
.ls32{letter-spacing:-0.213760pt;}
.ls3b{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.160320pt;}
.ls4c{letter-spacing:-0.144000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.122560pt;}
.ls19{letter-spacing:-0.106880pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls24{letter-spacing:-0.058560pt;}
.ls18{letter-spacing:-0.053440pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7b{letter-spacing:0.008320pt;}
.ls4b{letter-spacing:0.048000pt;}
.ls71{letter-spacing:0.051200pt;}
.ls82{letter-spacing:0.052800pt;}
.ls29{letter-spacing:0.053440pt;}
.ls78{letter-spacing:0.057600pt;}
.ls33{letter-spacing:0.058560pt;}
.ls6{letter-spacing:0.064000pt;}
.ls67{letter-spacing:0.070400pt;}
.ls70{letter-spacing:0.076800pt;}
.ls8a{letter-spacing:0.084160pt;}
.ls4d{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.106880pt;}
.ls6e{letter-spacing:0.115200pt;}
.ls1{letter-spacing:0.122560pt;}
.ls9{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.134400pt;}
.ls79{letter-spacing:0.140800pt;}
.ls26{letter-spacing:0.147200pt;}
.ls14{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.160320pt;}
.ls2f{letter-spacing:0.170240pt;}
.ls5e{letter-spacing:0.175680pt;}
.ls80{letter-spacing:0.227520pt;}
.lsd{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.330912pt;}
.ls89{letter-spacing:0.372800pt;}
.ls20{letter-spacing:0.374080pt;}
.ls6f{letter-spacing:0.384000pt;}
.ls7a{letter-spacing:0.480000pt;}
.ls34{letter-spacing:0.640000pt;}
.ls38{letter-spacing:0.960000pt;}
.ls50{letter-spacing:0.972800pt;}
.ls21{letter-spacing:1.015360pt;}
.ls60{letter-spacing:1.280000pt;}
.ls45{letter-spacing:1.600000pt;}
.ls10{letter-spacing:1.606400pt;}
.ls47{letter-spacing:1.635264pt;}
.ls46{letter-spacing:1.656640pt;}
.ls1b{letter-spacing:1.920000pt;}
.ls68{letter-spacing:1.926400pt;}
.ls2d{letter-spacing:2.094848pt;}
.ls53{letter-spacing:2.240000pt;}
.ls73{letter-spacing:2.246400pt;}
.ls28{letter-spacing:2.297920pt;}
.ls1c{letter-spacing:2.560000pt;}
.ls3e{letter-spacing:2.566400pt;}
.ls72{letter-spacing:2.572800pt;}
.ls61{letter-spacing:2.880000pt;}
.ls37{letter-spacing:3.200000pt;}
.ls65{letter-spacing:3.219200pt;}
.ls2a{letter-spacing:3.254496pt;}
.ls3d{letter-spacing:3.513600pt;}
.ls63{letter-spacing:3.520000pt;}
.ls66{letter-spacing:3.840000pt;}
.lse{letter-spacing:4.160000pt;}
.ls59{letter-spacing:4.480000pt;}
.ls48{letter-spacing:4.542400pt;}
.ls49{letter-spacing:4.595840pt;}
.ls35{letter-spacing:4.800000pt;}
.ls2e{letter-spacing:4.863040pt;}
.lsa{letter-spacing:5.120000pt;}
.ls5d{letter-spacing:5.440000pt;}
.ls6d{letter-spacing:5.760000pt;}
.ls4e{letter-spacing:6.080000pt;}
.ls6a{letter-spacing:6.086400pt;}
.ls2b{letter-spacing:6.145600pt;}
.ls6b{letter-spacing:6.400000pt;}
.ls5a{letter-spacing:6.425600pt;}
.ls76{letter-spacing:6.720000pt;}
.ls3a{letter-spacing:7.040000pt;}
.ls41{letter-spacing:7.360000pt;}
.ls7e{letter-spacing:7.680000pt;}
.ls44{letter-spacing:8.000000pt;}
.ls4a{letter-spacing:8.320000pt;}
.ls6c{letter-spacing:8.640000pt;}
.ls77{letter-spacing:8.960000pt;}
.ls7c{letter-spacing:9.280000pt;}
.ls62{letter-spacing:9.600000pt;}
.lsb{letter-spacing:9.920000pt;}
.ls15{letter-spacing:9.993280pt;}
.ls84{letter-spacing:10.544640pt;}
.ls5f{letter-spacing:10.553600pt;}
.ls75{letter-spacing:10.880000pt;}
.ls2c{letter-spacing:11.596480pt;}
.ls43{letter-spacing:11.840000pt;}
.ls64{letter-spacing:13.120000pt;}
.lsc{letter-spacing:13.440000pt;}
.ls83{letter-spacing:13.760000pt;}
.ls69{letter-spacing:14.400000pt;}
.ls40{letter-spacing:14.412800pt;}
.ls7d{letter-spacing:15.360000pt;}
.ls22{letter-spacing:15.444160pt;}
.ls4f{letter-spacing:15.680000pt;}
.ls81{letter-spacing:16.000000pt;}
.ls5c{letter-spacing:16.006400pt;}
.ls51{letter-spacing:16.128000pt;}
.ls7f{letter-spacing:16.320000pt;}
.ls5b{letter-spacing:16.326400pt;}
.ls3c{letter-spacing:17.920000pt;}
.ls1f{letter-spacing:18.240000pt;}
.ls74{letter-spacing:18.566400pt;}
.ls39{letter-spacing:18.880000pt;}
.ls57{letter-spacing:19.520000pt;}
.ls52{letter-spacing:19.648000pt;}
.ls54{letter-spacing:23.168000pt;}
.ls42{letter-spacing:25.600000pt;}
.ls55{letter-spacing:26.688000pt;}
.ls1e{letter-spacing:28.800000pt;}
.ls11{letter-spacing:30.208000pt;}
.ls58{letter-spacing:30.720000pt;}
.ls13{letter-spacing:48.128000pt;}
.ls1d{letter-spacing:48.768000pt;}
.ls56{letter-spacing:56.768000pt;}
.ls3{letter-spacing:88.865280pt;}
.ls27{letter-spacing:172.800000pt;}
.ls12{letter-spacing:175.565440pt;}
.ls2{letter-spacing:2112.221760pt;}
.ws0{word-spacing:-30.517440pt;}
.ws9{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.wsb{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.wscf{word-spacing:-15.808000pt;}
.wsce{word-spacing:-15.744000pt;}
.wsed{word-spacing:-15.680000pt;}
.ws8{word-spacing:-15.488000pt;}
.ws56{word-spacing:-14.640000pt;}
.ws169{word-spacing:-13.760000pt;}
.ws33{word-spacing:-13.520320pt;}
.ws34{word-spacing:-13.360000pt;}
.ws7a{word-spacing:-13.306560pt;}
.wsa7{word-spacing:-13.253120pt;}
.ws7b{word-spacing:-13.199680pt;}
.ws16c{word-spacing:-12.932480pt;}
.wse3{word-spacing:-10.896000pt;}
.ws79{word-spacing:-10.810240pt;}
.ws166{word-spacing:-10.640000pt;}
.ws32{word-spacing:-8.640000pt;}
.ws16a{word-spacing:-6.080000pt;}
.ws97{word-spacing:-3.904000pt;}
.wsa6{word-spacing:-3.840000pt;}
.ws98{word-spacing:-3.584000pt;}
.wsfa{word-spacing:-3.520000pt;}
.ws148{word-spacing:-3.392000pt;}
.ws131{word-spacing:-3.328000pt;}
.ws99{word-spacing:-3.264000pt;}
.wsf8{word-spacing:-3.200000pt;}
.ws15f{word-spacing:-3.136000pt;}
.wsdf{word-spacing:-3.046080pt;}
.wsba{word-spacing:-3.008000pt;}
.ws10c{word-spacing:-2.986560pt;}
.ws73{word-spacing:-2.944000pt;}
.ws72{word-spacing:-2.880000pt;}
.ws5e{word-spacing:-2.624000pt;}
.wse9{word-spacing:-2.560000pt;}
.ws14e{word-spacing:-2.496000pt;}
.ws110{word-spacing:-2.400960pt;}
.ws10a{word-spacing:-2.368000pt;}
.ws86{word-spacing:-2.351360pt;}
.ws10f{word-spacing:-2.342400pt;}
.ws6f{word-spacing:-2.304000pt;}
.ws167{word-spacing:-2.297920pt;}
.wsbf{word-spacing:-2.240000pt;}
.ws139{word-spacing:-2.176000pt;}
.ws10e{word-spacing:-2.108160pt;}
.ws102{word-spacing:-2.048000pt;}
.ws16{word-spacing:-1.984000pt;}
.ws15{word-spacing:-1.920000pt;}
.ws13f{word-spacing:-1.856000pt;}
.ws15e{word-spacing:-1.728000pt;}
.ws27{word-spacing:-1.664000pt;}
.ws26{word-spacing:-1.600000pt;}
.ws124{word-spacing:-1.536000pt;}
.ws51{word-spacing:-1.442880pt;}
.wsa4{word-spacing:-1.408000pt;}
.ws23{word-spacing:-1.344000pt;}
.ws7d{word-spacing:-1.280000pt;}
.ws84{word-spacing:-1.122240pt;}
.ws9e{word-spacing:-1.088000pt;}
.ws24{word-spacing:-1.024000pt;}
.ws4e{word-spacing:-1.015360pt;}
.wsa9{word-spacing:-0.960000pt;}
.ws12f{word-spacing:-0.896000pt;}
.ws15c{word-spacing:-0.768000pt;}
.wsa1{word-spacing:-0.704000pt;}
.ws63{word-spacing:-0.640000pt;}
.ws127{word-spacing:-0.576000pt;}
.ws8d{word-spacing:-0.480960pt;}
.ws59{word-spacing:-0.448000pt;}
.ws115{word-spacing:-0.409920pt;}
.ws13{word-spacing:-0.384000pt;}
.ws8e{word-spacing:-0.374080pt;}
.ws3{word-spacing:-0.367680pt;}
.ws14{word-spacing:-0.320000pt;}
.ws130{word-spacing:-0.256000pt;}
.ws168{word-spacing:-0.170240pt;}
.ws69{word-spacing:-0.160320pt;}
.ws39{word-spacing:-0.128000pt;}
.ws55{word-spacing:-0.117120pt;}
.ws85{word-spacing:-0.106880pt;}
.ws5{word-spacing:-0.064000pt;}
.ws94{word-spacing:-0.058560pt;}
.ws50{word-spacing:-0.053440pt;}
.wse6{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws52{word-spacing:0.053440pt;}
.ws5d{word-spacing:0.058560pt;}
.ws9f{word-spacing:0.064000pt;}
.ws48{word-spacing:0.106880pt;}
.ws116{word-spacing:0.117120pt;}
.ws1{word-spacing:0.122560pt;}
.ws7{word-spacing:0.128000pt;}
.ws66{word-spacing:0.160320pt;}
.wsc3{word-spacing:0.192000pt;}
.ws8c{word-spacing:0.213760pt;}
.ws4{word-spacing:0.245120pt;}
.ws58{word-spacing:0.256000pt;}
.ws65{word-spacing:0.267200pt;}
.ws3a{word-spacing:0.320000pt;}
.ws14f{word-spacing:0.384000pt;}
.wsfd{word-spacing:0.448000pt;}
.ws64{word-spacing:0.480960pt;}
.ws134{word-spacing:0.512000pt;}
.ws12{word-spacing:0.576000pt;}
.wsaa{word-spacing:0.640000pt;}
.ws88{word-spacing:0.694720pt;}
.ws150{word-spacing:0.704000pt;}
.ws12a{word-spacing:0.832000pt;}
.ws60{word-spacing:0.896000pt;}
.ws67{word-spacing:0.908480pt;}
.ws25{word-spacing:0.960000pt;}
.wsa0{word-spacing:1.024000pt;}
.ws14b{word-spacing:1.152000pt;}
.ws10d{word-spacing:1.171200pt;}
.ws49{word-spacing:1.175680pt;}
.ws5f{word-spacing:1.216000pt;}
.wsde{word-spacing:1.229120pt;}
.ws22{word-spacing:1.280000pt;}
.ws154{word-spacing:1.344000pt;}
.ws8a{word-spacing:1.389440pt;}
.ws117{word-spacing:1.405440pt;}
.ws53{word-spacing:1.496320pt;}
.wsbc{word-spacing:1.536000pt;}
.ws7e{word-spacing:1.600000pt;}
.ws15a{word-spacing:1.664000pt;}
.ws47{word-spacing:1.710080pt;}
.wsdd{word-spacing:1.763520pt;}
.ws96{word-spacing:1.792000pt;}
.ws4a{word-spacing:1.816960pt;}
.ws2d{word-spacing:1.856000pt;}
.ws57{word-spacing:1.920000pt;}
.ws14c{word-spacing:1.984000pt;}
.ws90{word-spacing:2.030720pt;}
.ws11f{word-spacing:2.049600pt;}
.wsc4{word-spacing:2.112000pt;}
.ws82{word-spacing:2.137600pt;}
.ws2c{word-spacing:2.176000pt;}
.ws77{word-spacing:2.240000pt;}
.ws153{word-spacing:2.304000pt;}
.ws92{word-spacing:2.351360pt;}
.ws83{word-spacing:2.404800pt;}
.wsa8{word-spacing:2.432000pt;}
.ws46{word-spacing:2.458240pt;}
.ws3b{word-spacing:2.496000pt;}
.ws91{word-spacing:2.511680pt;}
.ws3c{word-spacing:2.560000pt;}
.ws11c{word-spacing:2.693760pt;}
.ws8f{word-spacing:2.725440pt;}
.wsb8{word-spacing:2.752000pt;}
.ws1f{word-spacing:2.816000pt;}
.ws10{word-spacing:2.880000pt;}
.ws6b{word-spacing:2.992640pt;}
.ws137{word-spacing:3.072000pt;}
.ws11e{word-spacing:3.103680pt;}
.wsa2{word-spacing:3.136000pt;}
.wsad{word-spacing:3.200000pt;}
.ws136{word-spacing:3.264000pt;}
.ws11d{word-spacing:3.337920pt;}
.ws20{word-spacing:3.456000pt;}
.ws21{word-spacing:3.520000pt;}
.ws4f{word-spacing:3.633920pt;}
.ws100{word-spacing:3.712000pt;}
.ws74{word-spacing:3.776000pt;}
.ws2b{word-spacing:3.840000pt;}
.ws125{word-spacing:3.904000pt;}
.wsb5{word-spacing:4.032000pt;}
.ws76{word-spacing:4.096000pt;}
.ws2a{word-spacing:4.160000pt;}
.ws54{word-spacing:4.275200pt;}
.ws106{word-spacing:4.352000pt;}
.ws68{word-spacing:4.382080pt;}
.ws11a{word-spacing:4.392000pt;}
.wsb7{word-spacing:4.416000pt;}
.wsab{word-spacing:4.480000pt;}
.ws151{word-spacing:4.544000pt;}
.wse1{word-spacing:4.595840pt;}
.ws113{word-spacing:4.626240pt;}
.wse0{word-spacing:4.649280pt;}
.ws16b{word-spacing:4.672000pt;}
.ws118{word-spacing:4.684800pt;}
.ws9d{word-spacing:4.736000pt;}
.ws9c{word-spacing:4.800000pt;}
.ws119{word-spacing:4.919040pt;}
.ws128{word-spacing:4.992000pt;}
.ws36{word-spacing:5.056000pt;}
.wsd{word-spacing:5.120000pt;}
.ws152{word-spacing:5.184000pt;}
.ws93{word-spacing:5.237120pt;}
.wsc0{word-spacing:5.376000pt;}
.ws3d{word-spacing:5.440000pt;}
.ws38{word-spacing:5.696000pt;}
.ws40{word-spacing:5.760000pt;}
.ws138{word-spacing:5.824000pt;}
.ws89{word-spacing:5.985280pt;}
.ws41{word-spacing:6.016000pt;}
.ws7f{word-spacing:6.080000pt;}
.ws14a{word-spacing:6.144000pt;}
.wsfe{word-spacing:6.272000pt;}
.ws6d{word-spacing:6.336000pt;}
.ws6e{word-spacing:6.400000pt;}
.wse4{word-spacing:6.656000pt;}
.wsaf{word-spacing:6.720000pt;}
.ws12d{word-spacing:6.784000pt;}
.ws87{word-spacing:6.893760pt;}
.wsc7{word-spacing:6.976000pt;}
.wsc8{word-spacing:7.040000pt;}
.ws13a{word-spacing:7.104000pt;}
.wsff{word-spacing:7.232000pt;}
.ws1e{word-spacing:7.296000pt;}
.wsd3{word-spacing:7.360000pt;}
.ws143{word-spacing:7.424000pt;}
.ws104{word-spacing:7.552000pt;}
.ws1d{word-spacing:7.616000pt;}
.ws17{word-spacing:7.680000pt;}
.ws3f{word-spacing:7.936000pt;}
.wsa3{word-spacing:8.000000pt;}
.ws162{word-spacing:8.192000pt;}
.ws3e{word-spacing:8.256000pt;}
.ws9a{word-spacing:8.320000pt;}
.ws135{word-spacing:8.384000pt;}
.wse5{word-spacing:8.512000pt;}
.ws2f{word-spacing:8.576000pt;}
.ws2e{word-spacing:8.640000pt;}
.wsca{word-spacing:8.832000pt;}
.wsf0{word-spacing:8.896000pt;}
.ws7c{word-spacing:8.960000pt;}
.ws161{word-spacing:9.024000pt;}
.wsdc{word-spacing:9.216000pt;}
.wsb2{word-spacing:9.280000pt;}
.wsb9{word-spacing:9.536000pt;}
.wsef{word-spacing:9.600000pt;}
.ws45{word-spacing:9.832960pt;}
.wsb1{word-spacing:9.856000pt;}
.wse{word-spacing:9.920000pt;}
.ws6c{word-spacing:10.046720pt;}
.ws13b{word-spacing:10.112000pt;}
.wsf7{word-spacing:10.176000pt;}
.wscb{word-spacing:10.240000pt;}
.ws14d{word-spacing:10.304000pt;}
.wse7{word-spacing:10.432000pt;}
.ws4d{word-spacing:10.474240pt;}
.ws37{word-spacing:10.496000pt;}
.ws42{word-spacing:10.560000pt;}
.ws163{word-spacing:10.624000pt;}
.ws4b{word-spacing:10.688000pt;}
.ws4c{word-spacing:10.794880pt;}
.ws28{word-spacing:10.816000pt;}
.wsac{word-spacing:10.880000pt;}
.wsea{word-spacing:11.136000pt;}
.ws80{word-spacing:11.200000pt;}
.ws146{word-spacing:11.264000pt;}
.ws109{word-spacing:11.392000pt;}
.wsee{word-spacing:11.456000pt;}
.ws43{word-spacing:11.520000pt;}
.ws8b{word-spacing:11.649920pt;}
.ws111{word-spacing:11.770560pt;}
.ws78{word-spacing:11.776000pt;}
.wsec{word-spacing:11.840000pt;}
.ws112{word-spacing:12.004800pt;}
.ws145{word-spacing:12.096000pt;}
.wsd6{word-spacing:12.160000pt;}
.wsb4{word-spacing:12.416000pt;}
.wsb3{word-spacing:12.480000pt;}
.ws18{word-spacing:12.736000pt;}
.ws133{word-spacing:12.800000pt;}
.ws147{word-spacing:12.864000pt;}
.wscd{word-spacing:12.992000pt;}
.ws35{word-spacing:13.056000pt;}
.ws132{word-spacing:13.120000pt;}
.wsbb{word-spacing:13.376000pt;}
.ws11{word-spacing:13.440000pt;}
.ws75{word-spacing:13.696000pt;}
.wsd2{word-spacing:13.760000pt;}
.ws157{word-spacing:13.824000pt;}
.ws31{word-spacing:14.016000pt;}
.ws156{word-spacing:14.080000pt;}
.ws29{word-spacing:14.336000pt;}
.ws149{word-spacing:14.400000pt;}
.ws141{word-spacing:14.464000pt;}
.ws140{word-spacing:14.528000pt;}
.ws11b{word-spacing:14.640000pt;}
.ws158{word-spacing:14.656000pt;}
.ws12b{word-spacing:14.720000pt;}
.ws1b{word-spacing:14.976000pt;}
.ws1c{word-spacing:15.040000pt;}
.ws1a{word-spacing:15.104000pt;}
.ws44{word-spacing:15.360000pt;}
.ws6a{word-spacing:15.497600pt;}
.ws121{word-spacing:15.576960pt;}
.ws30{word-spacing:15.616000pt;}
.wsa5{word-spacing:15.680000pt;}
.ws155{word-spacing:15.744000pt;}
.wsd8{word-spacing:15.936000pt;}
.wsd7{word-spacing:16.000000pt;}
.ws105{word-spacing:16.256000pt;}
.ws108{word-spacing:16.320000pt;}
.ws9b{word-spacing:16.640000pt;}
.ws129{word-spacing:16.896000pt;}
.ws15d{word-spacing:16.960000pt;}
.wsf{word-spacing:17.216000pt;}
.ws144{word-spacing:17.280000pt;}
.ws107{word-spacing:17.536000pt;}
.ws13d{word-spacing:17.600000pt;}
.ws164{word-spacing:17.664000pt;}
.ws62{word-spacing:17.856000pt;}
.wscc{word-spacing:17.920000pt;}
.ws61{word-spacing:18.176000pt;}
.wsb0{word-spacing:18.240000pt;}
.ws160{word-spacing:18.496000pt;}
.ws15b{word-spacing:18.560000pt;}
.wsc6{word-spacing:18.816000pt;}
.wsc5{word-spacing:18.880000pt;}
.wsf5{word-spacing:19.136000pt;}
.wsc1{word-spacing:19.200000pt;}
.wsae{word-spacing:19.456000pt;}
.wsfc{word-spacing:19.520000pt;}
.ws10b{word-spacing:19.776000pt;}
.ws81{word-spacing:20.096000pt;}
.ws165{word-spacing:20.224000pt;}
.ws123{word-spacing:20.736000pt;}
.ws70{word-spacing:21.376000pt;}
.wsf2{word-spacing:21.696000pt;}
.wsf3{word-spacing:21.760000pt;}
.wsfb{word-spacing:22.016000pt;}
.ws19{word-spacing:22.080000pt;}
.wsbd{word-spacing:22.976000pt;}
.wsbe{word-spacing:23.040000pt;}
.wseb{word-spacing:23.360000pt;}
.wse8{word-spacing:23.616000pt;}
.ws122{word-spacing:23.680000pt;}
.wsc2{word-spacing:23.936000pt;}
.ws12e{word-spacing:24.064000pt;}
.ws159{word-spacing:24.896000pt;}
.wsd4{word-spacing:25.536000pt;}
.ws126{word-spacing:25.856000pt;}
.wsb6{word-spacing:25.920000pt;}
.wsf6{word-spacing:26.240000pt;}
.ws120{word-spacing:26.410560pt;}
.ws95{word-spacing:26.496000pt;}
.ws142{word-spacing:27.136000pt;}
.wsf9{word-spacing:27.520000pt;}
.wsc9{word-spacing:28.480000pt;}
.ws13c{word-spacing:28.800000pt;}
.ws5c{word-spacing:28.992000pt;}
.ws5b{word-spacing:29.056000pt;}
.ws5a{word-spacing:29.120000pt;}
.wsd5{word-spacing:29.440000pt;}
.ws12c{word-spacing:30.144000pt;}
.wsf4{word-spacing:30.400000pt;}
.ws101{word-spacing:30.720000pt;}
.ws71{word-spacing:32.320000pt;}
.wsf1{word-spacing:33.280000pt;}
.ws13e{word-spacing:37.120000pt;}
.wsd1{word-spacing:50.215456pt;}
.ws103{word-spacing:50.560000pt;}
.ws114{word-spacing:59.438400pt;}
.wsd0{word-spacing:63.855499pt;}
.wsd9{word-spacing:72.061056pt;}
.wsda{word-spacing:72.323851pt;}
.wsdb{word-spacing:85.416704pt;}
.wse2{word-spacing:1667.964800pt;}
._19{margin-left:-16.000000pt;}
._8{margin-left:-14.976000pt;}
._7{margin-left:-13.844480pt;}
._2{margin-left:-11.988480pt;}
._3{margin-left:-10.644480pt;}
._5{margin-left:-9.600000pt;}
._4{margin-left:-7.421440pt;}
._6{margin-left:-5.952000pt;}
._9{margin-left:-4.288000pt;}
._13{margin-left:-3.348480pt;}
._a{margin-left:-2.048000pt;}
._1{margin-left:-0.919200pt;}
._0{width:0.980480pt;}
._c{width:2.222400pt;}
._b{width:3.968000pt;}
._e{width:5.419520pt;}
._16{width:6.382400pt;}
._d{width:8.005600pt;}
._11{width:9.507200pt;}
._f{width:10.440960pt;}
._18{width:12.672000pt;}
._12{width:13.765600pt;}
._14{width:19.392000pt;}
._15{width:21.312000pt;}
._17{width:29.312000pt;}
._10{width:172.800000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.560000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs9{font-size:80.000000pt;}
.fs0{font-size:122.560000pt;}
.fs2{font-size:133.440000pt;}
.fs8{font-size:266.560000pt;}
.fsa{font-size:426.560000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:4.880000pt;}
.y67{bottom:4.960000pt;}
.y6a{bottom:5.040000pt;}
.y6c{bottom:5.120000pt;}
.yd6{bottom:12.640000pt;}
.y11a{bottom:12.719867pt;}
.yc1{bottom:12.720000pt;}
.yd7{bottom:12.800000pt;}
.yc3{bottom:12.880000pt;}
.y125{bottom:18.880000pt;}
.y20b{bottom:51.138720pt;}
.y18a{bottom:51.155440pt;}
.y36b{bottom:51.167040pt;}
.y352{bottom:51.170080pt;}
.y388{bottom:51.174320pt;}
.y350{bottom:51.182080pt;}
.y37{bottom:51.200640pt;}
.y3d9{bottom:51.201520pt;}
.y390{bottom:51.205520pt;}
.y3db{bottom:51.389680pt;}
.y232{bottom:51.394160pt;}
.y257{bottom:51.404320pt;}
.y20a{bottom:69.058080pt;}
.y189{bottom:69.074800pt;}
.y36a{bottom:69.086400pt;}
.y351{bottom:69.089440pt;}
.y387{bottom:69.093680pt;}
.y34f{bottom:69.101440pt;}
.y36{bottom:69.120000pt;}
.y3d8{bottom:69.120880pt;}
.y38f{bottom:69.124880pt;}
.y3da{bottom:69.309040pt;}
.y231{bottom:69.313520pt;}
.y256{bottom:69.323680pt;}
.y5b{bottom:97.588160pt;}
.y12e{bottom:97.596160pt;}
.ye1{bottom:98.240000pt;}
.y28c{bottom:99.040000pt;}
.y273{bottom:99.040400pt;}
.y2d5{bottom:99.200000pt;}
.y2ca{bottom:100.160000pt;}
.y38a{bottom:100.320000pt;}
.y188{bottom:101.077840pt;}
.y33f{bottom:101.360000pt;}
.y39d{bottom:102.240000pt;}
.y3c{bottom:102.480000pt;}
.y3b2{bottom:102.560000pt;}
.y39{bottom:102.640000pt;}
.y3b1{bottom:106.080000pt;}
.y255{bottom:107.724400pt;}
.y9f{bottom:109.920000pt;}
.y34e{bottom:110.386240pt;}
.y14{bottom:110.880000pt;}
.y5a{bottom:112.872000pt;}
.y19e{bottom:113.120000pt;}
.y1e5{bottom:113.709680pt;}
.y39e{bottom:113.840000pt;}
.y386{bottom:117.493520pt;}
.y12d{bottom:117.520000pt;}
.y105{bottom:117.840000pt;}
.y38e{bottom:121.287200pt;}
.ya0{bottom:121.440000pt;}
.y2a1{bottom:122.800000pt;}
.y3d7{bottom:123.040000pt;}
.y2b7{bottom:123.200000pt;}
.y30b{bottom:123.360000pt;}
.y3c8{bottom:123.440000pt;}
.y1c0{bottom:123.920000pt;}
.y230{bottom:123.950000pt;}
.y272{bottom:124.953200pt;}
.ye0{bottom:125.840000pt;}
.y1c3{bottom:126.245280pt;}
.y28b{bottom:126.640000pt;}
.y2d4{bottom:126.800000pt;}
.y2c9{bottom:127.760000pt;}
.y187{bottom:127.883680pt;}
.y321{bottom:127.920000pt;}
.y59{bottom:128.236000pt;}
.y33e{bottom:128.960000pt;}
.y209{bottom:128.979600pt;}
.y3b{bottom:130.080000pt;}
.y3ad{bottom:130.160000pt;}
.y35{bottom:130.240000pt;}
.y254{bottom:133.637200pt;}
.y3d3{bottom:133.680000pt;}
.y3b0{bottom:133.760000pt;}
.yb5{bottom:134.640000pt;}
.y34d{bottom:137.265280pt;}
.y13{bottom:138.480000pt;}
.y1e4{bottom:138.992960pt;}
.y19d{bottom:140.720000pt;}
.y104{bottom:144.240000pt;}
.y385{bottom:144.299360pt;}
.y369{bottom:145.492560pt;}
.y140{bottom:146.240000pt;}
.y38d{bottom:147.200000pt;}
.y58{bottom:148.240000pt;}
.y22f{bottom:149.862800pt;}
.y2a0{bottom:150.400000pt;}
.y2b6{bottom:150.800000pt;}
.y271{bottom:150.866000pt;}
.y30a{bottom:150.960000pt;}
.y3c7{bottom:151.040000pt;}
.y165{bottom:151.360000pt;}
.y1bf{bottom:151.520000pt;}
.ydf{bottom:153.440000pt;}
.y1a0{bottom:153.520000pt;}
.y28a{bottom:154.240000pt;}
.y208{bottom:154.336080pt;}
.y2d3{bottom:154.400000pt;}
.y186{bottom:154.762720pt;}
.y2c8{bottom:155.360000pt;}
.y320{bottom:155.520000pt;}
.y1c2{bottom:156.242640pt;}
.y33d{bottom:156.560000pt;}
.y4b{bottom:157.680000pt;}
.y3ac{bottom:157.760000pt;}
.y34{bottom:157.840000pt;}
.y57{bottom:158.856320pt;}
.y81{bottom:158.868160pt;}
.y253{bottom:159.550000pt;}
.y3bd{bottom:161.280000pt;}
.yb4{bottom:162.240000pt;}
.y34c{bottom:164.071120pt;}
.y1e3{bottom:164.276240pt;}
.y12{bottom:166.080000pt;}
.y19c{bottom:168.320000pt;}
.y103{bottom:170.560000pt;}
.y384{bottom:171.178400pt;}
.y368{bottom:172.298400pt;}
.y13f{bottom:173.840000pt;}
.y56{bottom:174.220320pt;}
.y80{bottom:174.232160pt;}
.y22e{bottom:175.775600pt;}
.y270{bottom:176.705600pt;}
.y29f{bottom:178.000000pt;}
.y2b5{bottom:178.400000pt;}
.y309{bottom:178.560000pt;}
.y3c6{bottom:178.640000pt;}
.y164{bottom:178.960000pt;}
.y1be{bottom:179.120000pt;}
.y207{bottom:179.619360pt;}
.yde{bottom:181.040000pt;}
.y185{bottom:181.641760pt;}
.y289{bottom:181.840000pt;}
.y2d2{bottom:182.000000pt;}
.y2c7{bottom:182.960000pt;}
.y31f{bottom:183.120000pt;}
.y33c{bottom:184.160000pt;}
.y19f{bottom:184.960000pt;}
.y4a{bottom:185.280000pt;}
.y39c{bottom:185.360000pt;}
.y33{bottom:185.440000pt;}
.y252{bottom:185.462800pt;}
.y1c1{bottom:186.240000pt;}
.y3cd{bottom:188.880000pt;}
.y3ce{bottom:188.960000pt;}
.y55{bottom:189.584320pt;}
.y7f{bottom:189.596160pt;}
.y1e2{bottom:189.632720pt;}
.yb3{bottom:189.840000pt;}
.y34b{bottom:190.950160pt;}
.y102{bottom:194.640000pt;}
.y19b{bottom:195.920000pt;}
.y383{bottom:198.057440pt;}
.y367{bottom:199.177440pt;}
.y13e{bottom:201.440000pt;}
.y22d{bottom:201.615200pt;}
.y26f{bottom:202.618400pt;}
.y54{bottom:204.868160pt;}
.y206{bottom:204.902640pt;}
.y29e{bottom:205.600000pt;}
.y2b4{bottom:206.000000pt;}
.y308{bottom:206.160000pt;}
.y3c5{bottom:206.240000pt;}
.y163{bottom:206.560000pt;}
.y1bd{bottom:206.720000pt;}
.y184{bottom:208.447600pt;}
.ydd{bottom:208.640000pt;}
.y38c{bottom:209.360000pt;}
.y288{bottom:209.440000pt;}
.y7e{bottom:209.520000pt;}
.y2d1{bottom:209.600000pt;}
.y2c6{bottom:210.560000pt;}
.y31e{bottom:210.720000pt;}
.y251{bottom:211.375600pt;}
.y33b{bottom:211.760000pt;}
.y49{bottom:212.880000pt;}
.y39b{bottom:212.960000pt;}
.y32{bottom:213.040000pt;}
.y1e1{bottom:214.916000pt;}
.yb2{bottom:217.440000pt;}
.y34a{bottom:217.829200pt;}
.y53{bottom:220.232160pt;}
.y98{bottom:220.236000pt;}
.y12f{bottom:221.120000pt;}
.y11{bottom:222.515040pt;}
.y19a{bottom:223.520000pt;}
.y101{bottom:223.600000pt;}
.y382{bottom:224.863280pt;}
.y366{bottom:226.056480pt;}
.y22c{bottom:227.528000pt;}
.y26e{bottom:228.531200pt;}
.y13d{bottom:229.040000pt;}
.y205{bottom:230.185920pt;}
.y29d{bottom:233.200000pt;}
.y2b3{bottom:233.600000pt;}
.y307{bottom:233.760000pt;}
.y3c4{bottom:233.840000pt;}
.y162{bottom:234.160000pt;}
.y1bc{bottom:234.320000pt;}
.y183{bottom:235.326640pt;}
.y52{bottom:235.596160pt;}
.ydc{bottom:236.240000pt;}
.y2d0{bottom:236.960000pt;}
.y287{bottom:237.040000pt;}
.y2ef{bottom:237.200000pt;}
.y250{bottom:237.215200pt;}
.y2c5{bottom:238.160000pt;}
.y31d{bottom:238.320000pt;}
.y33a{bottom:239.360000pt;}
.y1e0{bottom:240.199280pt;}
.y97{bottom:240.240000pt;}
.y48{bottom:240.480000pt;}
.y3aa{bottom:240.560000pt;}
.y31{bottom:240.640000pt;}
.y3cb{bottom:244.160000pt;}
.y349{bottom:244.635040pt;}
.yb1{bottom:245.040000pt;}
.y96{bottom:250.872000pt;}
.y199{bottom:251.120000pt;}
.y381{bottom:251.742320pt;}
.y100{bottom:252.480000pt;}
.y365{bottom:252.862320pt;}
.y22b{bottom:253.440800pt;}
.y26d{bottom:254.444000pt;}
.y204{bottom:255.469200pt;}
.y51{bottom:255.520000pt;}
.y13c{bottom:256.640000pt;}
.y29c{bottom:260.800000pt;}
.y2b2{bottom:261.200000pt;}
.y306{bottom:261.360000pt;}
.y3c3{bottom:261.440000pt;}
.y161{bottom:261.760000pt;}
.y12c{bottom:261.840000pt;}
.y1bb{bottom:261.920000pt;}
.y182{bottom:262.205680pt;}
.y24f{bottom:263.128000pt;}
.ydb{bottom:263.840000pt;}
.y286{bottom:264.640000pt;}
.y2ee{bottom:264.800000pt;}
.y1df{bottom:265.482560pt;}
.y2c4{bottom:265.760000pt;}
.y2cf{bottom:265.920000pt;}
.y95{bottom:266.236000pt;}
.y339{bottom:266.960000pt;}
.y5c{bottom:267.120000pt;}
.y47{bottom:268.080000pt;}
.y39a{bottom:268.160000pt;}
.y30{bottom:268.240000pt;}
.y10{bottom:268.918800pt;}
.y348{bottom:271.514080pt;}
.y3ca{bottom:271.760000pt;}
.yb0{bottom:272.640000pt;}
.y380{bottom:278.621360pt;}
.y198{bottom:278.720000pt;}
.y22a{bottom:279.353600pt;}
.y364{bottom:279.741360pt;}
.yda{bottom:279.920000pt;}
.y26c{bottom:280.356800pt;}
.y203{bottom:280.825680pt;}
.yff{bottom:281.440000pt;}
.y13b{bottom:284.240000pt;}
.y94{bottom:286.240000pt;}
.y29b{bottom:288.400000pt;}
.y2b1{bottom:288.800000pt;}
.y305{bottom:288.960000pt;}
.y181{bottom:289.011520pt;}
.y3c2{bottom:289.040000pt;}
.y24e{bottom:289.040800pt;}
.y160{bottom:289.360000pt;}
.y12b{bottom:289.440000pt;}
.y1ba{bottom:289.520000pt;}
.y1de{bottom:290.839040pt;}
.yf8{bottom:291.440000pt;}
.y30d{bottom:292.160000pt;}
.y285{bottom:292.240000pt;}
.y2ed{bottom:292.400000pt;}
.y2c3{bottom:293.360000pt;}
.y31c{bottom:293.520000pt;}
.y338{bottom:294.560000pt;}
.y46{bottom:295.680000pt;}
.y3a3{bottom:295.760000pt;}
.y2f{bottom:295.840000pt;}
.y93{bottom:296.872000pt;}
.y347{bottom:298.393120pt;}
.y7d{bottom:298.560000pt;}
.yaf{bottom:300.240000pt;}
.y229{bottom:305.266400pt;}
.y37f{bottom:305.427200pt;}
.y202{bottom:306.108960pt;}
.y26b{bottom:306.196400pt;}
.y197{bottom:306.320000pt;}
.y363{bottom:306.620400pt;}
.yf7{bottom:307.520000pt;}
.yd9{bottom:308.800000pt;}
.yfe{bottom:310.400000pt;}
.y13a{bottom:311.760000pt;}
.y92{bottom:312.236000pt;}
.y24d{bottom:314.953600pt;}
.yf{bottom:315.222480pt;}
.y3c1{bottom:315.440000pt;}
.y180{bottom:315.890560pt;}
.y29a{bottom:316.000000pt;}
.y1dd{bottom:316.122320pt;}
.y2b0{bottom:316.400000pt;}
.y304{bottom:316.560000pt;}
.y15f{bottom:316.960000pt;}
.y12a{bottom:317.040000pt;}
.y1b9{bottom:317.120000pt;}
.y284{bottom:319.840000pt;}
.y2ec{bottom:320.000000pt;}
.y2c2{bottom:320.960000pt;}
.y30c{bottom:321.120000pt;}
.y337{bottom:322.160000pt;}
.y2ce{bottom:322.320000pt;}
.y45{bottom:323.280000pt;}
.y399{bottom:323.360000pt;}
.y2e{bottom:323.440000pt;}
.y346{bottom:325.198960pt;}
.y7c{bottom:326.160000pt;}
.yae{bottom:327.840000pt;}
.y228{bottom:331.106000pt;}
.y201{bottom:331.392240pt;}
.y26a{bottom:332.109200pt;}
.y91{bottom:332.240000pt;}
.y37e{bottom:332.306240pt;}
.y362{bottom:333.426240pt;}
.y196{bottom:333.920000pt;}
.yf6{bottom:336.400000pt;}
.yd8{bottom:337.760000pt;}
.y139{bottom:339.360000pt;}
.y24c{bottom:340.793200pt;}
.y1dc{bottom:341.405600pt;}
.y17f{bottom:342.769600pt;}
.y90{bottom:342.868160pt;}
.y299{bottom:343.760000pt;}
.y2af{bottom:344.160000pt;}
.y15e{bottom:344.560000pt;}
.y129{bottom:344.640000pt;}
.y1b8{bottom:344.720000pt;}
.y283{bottom:347.440000pt;}
.y50{bottom:347.520000pt;}
.y2eb{bottom:347.600000pt;}
.y2c1{bottom:348.560000pt;}
.y31b{bottom:348.720000pt;}
.y336{bottom:349.760000pt;}
.y2cd{bottom:349.920000pt;}
.y44{bottom:350.880000pt;}
.y3a9{bottom:350.960000pt;}
.y2d{bottom:351.040000pt;}
.y345{bottom:352.078000pt;}
.yfd{bottom:352.160000pt;}
.y7b{bottom:353.600000pt;}
.y3d2{bottom:354.560000pt;}
.yad{bottom:355.440000pt;}
.y200{bottom:356.675520pt;}
.y227{bottom:357.018800pt;}
.y269{bottom:358.022000pt;}
.y8f{bottom:358.232160pt;}
.y37d{bottom:359.185280pt;}
.y361{bottom:360.305280pt;}
.y195{bottom:361.520000pt;}
.ye{bottom:361.526160pt;}
.yf5{bottom:365.360000pt;}
.y1db{bottom:366.688880pt;}
.y24b{bottom:366.706000pt;}
.yd5{bottom:366.720000pt;}
.y138{bottom:366.960000pt;}
.y17e{bottom:369.648640pt;}
.y298{bottom:370.560000pt;}
.y2ae{bottom:371.520000pt;}
.y303{bottom:371.760000pt;}
.y15d{bottom:372.160000pt;}
.y128{bottom:372.240000pt;}
.y1b7{bottom:372.320000pt;}
.y8e{bottom:373.596160pt;}
.y282{bottom:375.040000pt;}
.y2ea{bottom:375.200000pt;}
.y2c0{bottom:376.160000pt;}
.y4f{bottom:376.240000pt;}
.y31a{bottom:376.320000pt;}
.y335{bottom:377.280000pt;}
.y2cc{bottom:377.440000pt;}
.y43{bottom:378.480000pt;}
.y3bc{bottom:378.560000pt;}
.y2c{bottom:378.640000pt;}
.y344{bottom:378.957040pt;}
.yfc{bottom:379.760000pt;}
.y7a{bottom:381.360000pt;}
.y1ff{bottom:382.032000pt;}
.y3c9{bottom:382.080000pt;}
.y226{bottom:382.931600pt;}
.yac{bottom:383.040000pt;}
.y268{bottom:383.934800pt;}
.y37c{bottom:385.991120pt;}
.y360{bottom:387.184320pt;}
.y194{bottom:389.120000pt;}
.y1da{bottom:391.972160pt;}
.y24a{bottom:392.618800pt;}
.y8d{bottom:393.520000pt;}
.yf4{bottom:394.240000pt;}
.y137{bottom:394.560000pt;}
.yd4{bottom:395.600000pt;}
.y17d{bottom:396.454480pt;}
.y297{bottom:398.000000pt;}
.y302{bottom:399.360000pt;}
.y15c{bottom:399.760000pt;}
.y127{bottom:399.840000pt;}
.y1b6{bottom:399.920000pt;}
.y2ad{bottom:400.480000pt;}
.y281{bottom:402.640000pt;}
.y2e9{bottom:402.800000pt;}
.y2bf{bottom:403.760000pt;}
.y319{bottom:403.920000pt;}
.y8c{bottom:404.232160pt;}
.y2cb{bottom:404.880000pt;}
.y4e{bottom:405.040000pt;}
.y343{bottom:405.836080pt;}
.y42{bottom:406.080000pt;}
.y2b{bottom:406.240000pt;}
.y1fe{bottom:407.315280pt;}
.yfb{bottom:407.360000pt;}
.yd{bottom:407.829840pt;}
.y225{bottom:408.844400pt;}
.y79{bottom:408.960000pt;}
.y267{bottom:409.774400pt;}
.yab{bottom:410.640000pt;}
.y37b{bottom:412.870160pt;}
.y35f{bottom:414.063360pt;}
.y193{bottom:416.720000pt;}
.y1d9{bottom:417.328640pt;}
.y249{bottom:418.531600pt;}
.y8b{bottom:419.516000pt;}
.y136{bottom:422.160000pt;}
.yf3{bottom:423.200000pt;}
.y17c{bottom:423.333520pt;}
.yd3{bottom:424.560000pt;}
.y32b{bottom:426.800000pt;}
.y296{bottom:426.960000pt;}
.y15b{bottom:427.360000pt;}
.y126{bottom:427.440000pt;}
.y1b5{bottom:427.520000pt;}
.y2ac{bottom:428.080000pt;}
.y280{bottom:430.240000pt;}
.y2e8{bottom:430.400000pt;}
.y2be{bottom:431.360000pt;}
.y318{bottom:431.520000pt;}
.y334{bottom:432.480000pt;}
.y1fd{bottom:432.598560pt;}
.y342{bottom:432.641920pt;}
.y41{bottom:433.680000pt;}
.y3ae{bottom:433.760000pt;}
.y2a{bottom:433.840000pt;}
.y224{bottom:434.684000pt;}
.yfa{bottom:434.960000pt;}
.y266{bottom:435.687200pt;}
.y78{bottom:436.560000pt;}
.y3d1{bottom:437.360000pt;}
.yaa{bottom:438.240000pt;}
.y8a{bottom:439.520000pt;}
.y37a{bottom:439.749200pt;}
.y35e{bottom:440.869200pt;}
.y1d8{bottom:442.611920pt;}
.y124{bottom:443.440000pt;}
.y192{bottom:444.320000pt;}
.y248{bottom:444.444400pt;}
.y135{bottom:449.760000pt;}
.y17b{bottom:450.212560pt;}
.y99{bottom:451.120000pt;}
.yf2{bottom:452.160000pt;}
.yd2{bottom:453.440000pt;}
.yc{bottom:454.133520pt;}
.y295{bottom:454.320000pt;}
.y301{bottom:454.560000pt;}
.y15a{bottom:454.960000pt;}
.y1b4{bottom:455.120000pt;}
.y2ab{bottom:455.680000pt;}
.y27f{bottom:457.840000pt;}
.y1fc{bottom:457.881840pt;}
.y2e7{bottom:458.000000pt;}
.yf9{bottom:458.960000pt;}
.y317{bottom:459.120000pt;}
.y341{bottom:459.520960pt;}
.y333{bottom:460.080000pt;}
.y223{bottom:460.596800pt;}
.y40{bottom:461.280000pt;}
.y398{bottom:461.360000pt;}
.y29{bottom:461.440000pt;}
.y265{bottom:461.600000pt;}
.y77{bottom:464.160000pt;}
.ya9{bottom:465.760000pt;}
.y379{bottom:466.628240pt;}
.y35d{bottom:467.748240pt;}
.y1d7{bottom:467.895200pt;}
.y247{bottom:470.284000pt;}
.y191{bottom:471.920000pt;}
.y123{bottom:472.400000pt;}
.y110{bottom:474.562267pt;}
.y17a{bottom:477.018400pt;}
.y134{bottom:477.360000pt;}
.yf1{bottom:481.040000pt;}
.y300{bottom:482.160000pt;}
.yd1{bottom:482.400000pt;}
.y159{bottom:482.560000pt;}
.y1b3{bottom:482.720000pt;}
.y2aa{bottom:483.040000pt;}
.y1fb{bottom:483.165120pt;}
.y294{bottom:483.280000pt;}
.y27e{bottom:485.440000pt;}
.y2e6{bottom:485.600000pt;}
.y340{bottom:486.400000pt;}
.y222{bottom:486.509600pt;}
.y2bd{bottom:486.560000pt;}
.y316{bottom:486.720000pt;}
.y332{bottom:487.680000pt;}
.y3f{bottom:488.880000pt;}
.y3ab{bottom:488.960000pt;}
.y89{bottom:489.039867pt;}
.y28{bottom:489.040000pt;}
.y76{bottom:491.760000pt;}
.y3d6{bottom:492.480000pt;}
.y3a8{bottom:492.560000pt;}
.y1d6{bottom:493.178480pt;}
.ya8{bottom:493.360000pt;}
.y378{bottom:493.434080pt;}
.y35c{bottom:494.627280pt;}
.y246{bottom:496.196800pt;}
.y264{bottom:496.400000pt;}
.yb{bottom:500.437200pt;}
.y122{bottom:501.360000pt;}
.y179{bottom:503.897440pt;}
.y133{bottom:504.960000pt;}
.y1fa{bottom:508.521600pt;}
.y158{bottom:509.440000pt;}
.y190{bottom:509.680000pt;}
.y2ff{bottom:509.760000pt;}
.yf0{bottom:510.000000pt;}
.y1b2{bottom:510.320000pt;}
.y293{bottom:510.640000pt;}
.yd0{bottom:511.360000pt;}
.y2a9{bottom:512.000000pt;}
.y221{bottom:512.422400pt;}
.y27d{bottom:513.200000pt;}
.y2bc{bottom:514.160000pt;}
.y315{bottom:514.320000pt;}
.y331{bottom:515.280000pt;}
.y3e{bottom:516.480000pt;}
.y396{bottom:516.560000pt;}
.y88{bottom:516.639867pt;}
.y27{bottom:516.640000pt;}
.y1d5{bottom:518.534960pt;}
.y75{bottom:519.360000pt;}
.y397{bottom:520.160000pt;}
.y377{bottom:520.313120pt;}
.ya7{bottom:520.960000pt;}
.y35b{bottom:521.433120pt;}
.y245{bottom:522.109600pt;}
.y263{bottom:524.000000pt;}
.y121{bottom:530.240000pt;}
.y178{bottom:530.776480pt;}
.y132{bottom:532.560000pt;}
.y1f9{bottom:533.804880pt;}
.y32a{bottom:537.120000pt;}
.y2fe{bottom:537.360000pt;}
.y1b1{bottom:537.920000pt;}
.y220{bottom:538.335200pt;}
.yef{bottom:538.960000pt;}
.y2a8{bottom:539.440000pt;}
.y292{bottom:539.600000pt;}
.y106{bottom:539.746000pt;}
.ycf{bottom:540.240000pt;}
.y27c{bottom:540.560000pt;}
.y2e5{bottom:540.800000pt;}
.y2bb{bottom:541.920000pt;}
.y330{bottom:542.880000pt;}
.ya6{bottom:543.680000pt;}
.y1d4{bottom:543.818240pt;}
.y3d{bottom:544.080000pt;}
.y3ba{bottom:544.160000pt;}
.y87{bottom:544.239867pt;}
.y26{bottom:544.240000pt;}
.ya{bottom:546.740880pt;}
.y74{bottom:546.960000pt;}
.y376{bottom:547.192160pt;}
.y3bb{bottom:547.760000pt;}
.y244{bottom:548.022400pt;}
.y35a{bottom:548.312160pt;}
.y262{bottom:551.600000pt;}
.y177{bottom:557.582320pt;}
.ybf{bottom:558.845467pt;}
.y1f8{bottom:559.088160pt;}
.y120{bottom:559.200000pt;}
.y131{bottom:560.160000pt;}
.y21f{bottom:564.174800pt;}
.y2fd{bottom:564.960000pt;}
.y1b0{bottom:565.520000pt;}
.y329{bottom:566.080000pt;}
.y291{bottom:567.040000pt;}
.yee{bottom:567.840000pt;}
.y2a7{bottom:568.400000pt;}
.y1d3{bottom:569.101520pt;}
.yce{bottom:569.200000pt;}
.y27b{bottom:569.520000pt;}
.y32f{bottom:570.480000pt;}
.y9b{bottom:571.680000pt;}
.y395{bottom:571.760000pt;}
.y86{bottom:571.839867pt;}
.y25{bottom:571.840000pt;}
.y243{bottom:573.935200pt;}
.y375{bottom:573.998000pt;}
.y73{bottom:574.560000pt;}
.y359{bottom:575.191200pt;}
.y261{bottom:579.200000pt;}
.y1f7{bottom:584.371440pt;}
.y176{bottom:584.461360pt;}
.y107{bottom:584.608880pt;}
.yb6{bottom:586.439067pt;}
.y130{bottom:587.760000pt;}
.y72{bottom:589.920000pt;}
.y21e{bottom:590.087600pt;}
.y2fc{bottom:592.320000pt;}
.y9{bottom:593.044560pt;}
.y1af{bottom:593.120000pt;}
.y328{bottom:593.440000pt;}
.y1d2{bottom:594.384800pt;}
.y2a6{bottom:595.760000pt;}
.y290{bottom:596.000000pt;}
.yed{bottom:596.800000pt;}
.y389{bottom:596.880000pt;}
.y27a{bottom:597.120000pt;}
.y32e{bottom:598.240000pt;}
.y9a{bottom:599.280000pt;}
.y3b9{bottom:599.360000pt;}
.y85{bottom:599.439867pt;}
.y24{bottom:599.440000pt;}
.y242{bottom:599.774800pt;}
.y11f{bottom:599.840000pt;}
.y374{bottom:600.877040pt;}
.y358{bottom:601.997040pt;}
.y3cc{bottom:602.880000pt;}
.y260{bottom:606.800000pt;}
.yb7{bottom:607.240587pt;}
.y1f6{bottom:609.727920pt;}
.y71{bottom:610.480000pt;}
.ycd{bottom:611.040000pt;}
.y175{bottom:611.340400pt;}
.y21d{bottom:616.000400pt;}
.y141{bottom:618.137067pt;}
.y1d1{bottom:619.668080pt;}
.y1ae{bottom:620.720000pt;}
.y2fb{bottom:621.280000pt;}
.y157{bottom:621.465733pt;}
.y327{bottom:622.400000pt;}
.y28f{bottom:623.360000pt;}
.y2e4{bottom:623.600000pt;}
.y279{bottom:624.480000pt;}
.y2a5{bottom:624.720000pt;}
.y241{bottom:625.687600pt;}
.y32d{bottom:625.840000pt;}
.y11e{bottom:626.240000pt;}
.ya5{bottom:626.880000pt;}
.y394{bottom:626.960000pt;}
.y84{bottom:627.039867pt;}
.y23{bottom:627.040000pt;}
.y373{bottom:627.756080pt;}
.yb8{bottom:628.042107pt;}
.y357{bottom:628.876080pt;}
.y108{bottom:629.471760pt;}
.y70{bottom:630.960000pt;}
.y3b8{bottom:632.954880pt;}
.y25f{bottom:634.400000pt;}
.y1f5{bottom:635.011200pt;}
.y156{bottom:636.117733pt;}
.y174{bottom:638.146240pt;}
.ycc{bottom:638.640000pt;}
.y8{bottom:639.448320pt;}
.y21c{bottom:641.913200pt;}
.y18f{bottom:642.960000pt;}
.y1d0{bottom:645.024560pt;}
.y1ad{bottom:648.320000pt;}
.yb9{bottom:648.843627pt;}
.y2fa{bottom:648.880000pt;}
.y326{bottom:649.760000pt;}
.y11d{bottom:650.240000pt;}
.y2e3{bottom:651.120000pt;}
.y6f{bottom:651.520000pt;}
.y240{bottom:651.600400pt;}
.y2a4{bottom:652.080000pt;}
.y28e{bottom:652.320000pt;}
.y32c{bottom:653.280000pt;}
.y278{bottom:653.440000pt;}
.ya4{bottom:654.480000pt;}
.y3a2{bottom:654.560000pt;}
.y372{bottom:654.561920pt;}
.y83{bottom:654.639867pt;}
.y22{bottom:654.640000pt;}
.y356{bottom:655.755120pt;}
.y142{bottom:657.269067pt;}
.y3d0{bottom:658.080000pt;}
.y3a7{bottom:658.160000pt;}
.y1f4{bottom:660.294480pt;}
.y25e{bottom:661.920000pt;}
.y155{bottom:664.225733pt;}
.y173{bottom:665.025280pt;}
.yec{bottom:666.240000pt;}
.y21b{bottom:667.826000pt;}
.yba{bottom:669.645147pt;}
.y1cf{bottom:670.307840pt;}
.y6e{bottom:672.000000pt;}
.y109{bottom:674.334640pt;}
.y1ac{bottom:675.920000pt;}
.y2f9{bottom:676.320000pt;}
.y23f{bottom:677.513200pt;}
.y2e2{bottom:678.720000pt;}
.y11c{bottom:679.200000pt;}
.y18e{bottom:679.520000pt;}
.y28d{bottom:679.680000pt;}
.y314{bottom:679.920000pt;}
.y277{bottom:681.040000pt;}
.y371{bottom:681.440960pt;}
.y9e{bottom:682.080000pt;}
.y3b7{bottom:682.159867pt;}
.y3bf{bottom:682.160000pt;}
.y82{bottom:682.239867pt;}
.y21{bottom:682.240000pt;}
.y355{bottom:682.560960pt;}
.ycb{bottom:683.600000pt;}
.y1f3{bottom:685.577760pt;}
.y3c0{bottom:685.760000pt;}
.y25d{bottom:689.600000pt;}
.ybb{bottom:690.446667pt;}
.y172{bottom:691.904320pt;}
.y154{bottom:692.333600pt;}
.y6d{bottom:692.560000pt;}
.y21a{bottom:693.665600pt;}
.y1ce{bottom:695.591120pt;}
.y143{bottom:696.401067pt;}
.y23e{bottom:703.426000pt;}
.y1ab{bottom:703.520000pt;}
.y2f8{bottom:703.920000pt;}
.y7{bottom:704.967360pt;}
.y325{bottom:706.160000pt;}
.y2e1{bottom:706.320000pt;}
.y313{bottom:707.520000pt;}
.y11b{bottom:708.080000pt;}
.y370{bottom:708.320000pt;}
.y2a3{bottom:708.480000pt;}
.y276{bottom:708.640000pt;}
.y354{bottom:709.440000pt;}
.ya3{bottom:709.600000pt;}
.y3a1{bottom:709.679867pt;}
.y3b6{bottom:709.680000pt;}
.y393{bottom:709.759867pt;}
.y20{bottom:709.760000pt;}
.y1f2{bottom:710.861040pt;}
.yeb{bottom:711.200000pt;}
.ybc{bottom:711.248187pt;}
.yca{bottom:712.480000pt;}
.y6b{bottom:713.040000pt;}
.y18d{bottom:716.160000pt;}
.y25c{bottom:717.200000pt;}
.y171{bottom:718.783360pt;}
.y10a{bottom:719.197520pt;}
.y219{bottom:719.578400pt;}
.y153{bottom:720.441600pt;}
.y1cd{bottom:720.874400pt;}
.y23d{bottom:729.265600pt;}
.y1aa{bottom:731.120000pt;}
.y2f7{bottom:731.440000pt;}
.ybd{bottom:732.049707pt;}
.y68{bottom:733.600000pt;}
.y2e0{bottom:733.920000pt;}
.y312{bottom:735.120000pt;}
.y144{bottom:735.533067pt;}
.y2a2{bottom:736.000000pt;}
.y1f1{bottom:736.217520pt;}
.y275{bottom:736.240000pt;}
.y119{bottom:737.040000pt;}
.ya2{bottom:737.200000pt;}
.y3cf{bottom:737.280000pt;}
.y1f{bottom:737.360000pt;}
.yea{bottom:740.080000pt;}
.yc9{bottom:741.440000pt;}
.y25b{bottom:744.800000pt;}
.y218{bottom:745.491200pt;}
.y170{bottom:745.589200pt;}
.y1cc{bottom:746.230880pt;}
.y152{bottom:748.549467pt;}
.y18c{bottom:752.800000pt;}
.ybe{bottom:752.851227pt;}
.y66{bottom:754.080000pt;}
.y23c{bottom:755.178400pt;}
.y1a9{bottom:758.720000pt;}
.y2f6{bottom:760.400000pt;}
.y1f0{bottom:761.500800pt;}
.y2df{bottom:761.520000pt;}
.y6{bottom:762.480000pt;}
.y311{bottom:762.720000pt;}
.y274{bottom:763.600000pt;}
.y2ba{bottom:763.840000pt;}
.y10b{bottom:764.060400pt;}
.y20f{bottom:764.800000pt;}
.y3a6{bottom:764.880000pt;}
.y1e{bottom:764.960000pt;}
.y118{bottom:766.000000pt;}
.y3b5{bottom:768.480000pt;}
.ye9{bottom:769.040000pt;}
.yc8{bottom:770.400000pt;}
.y217{bottom:771.404000pt;}
.y1cb{bottom:771.514160pt;}
.y25a{bottom:772.400000pt;}
.y16f{bottom:772.468240pt;}
.y145{bottom:774.665067pt;}
.y151{bottom:776.657333pt;}
.y23b{bottom:781.091200pt;}
.y1a8{bottom:786.320000pt;}
.y1ef{bottom:786.784080pt;}
.y65{bottom:786.880000pt;}
.y2f5{bottom:787.760000pt;}
.y2de{bottom:789.120000pt;}
.y310{bottom:790.320000pt;}
.y353{bottom:791.200000pt;}
.y2b9{bottom:791.440000pt;}
.y4d{bottom:792.400000pt;}
.y392{bottom:792.480000pt;}
.y1d{bottom:792.560000pt;}
.y3b4{bottom:796.000000pt;}
.y3d5{bottom:796.080000pt;}
.y1ca{bottom:796.797440pt;}
.y216{bottom:797.316800pt;}
.ye8{bottom:798.000000pt;}
.yc7{bottom:799.280000pt;}
.y16e{bottom:799.347280pt;}
.y259{bottom:800.000000pt;}
.y5{bottom:804.073360pt;}
.y150{bottom:804.765333pt;}
.y117{bottom:806.560000pt;}
.y23a{bottom:807.004000pt;}
.y10c{bottom:808.923280pt;}
.y1ee{bottom:812.067360pt;}
.y146{bottom:813.797067pt;}
.y1a7{bottom:813.920000pt;}
.y64{bottom:814.480000pt;}
.y2dd{bottom:816.720000pt;}
.y36f{bottom:817.680000pt;}
.y30f{bottom:817.920000pt;}
.y2b8{bottom:818.800000pt;}
.y20e{bottom:820.000000pt;}
.y3be{bottom:820.080000pt;}
.y1c{bottom:820.160000pt;}
.y1c9{bottom:822.080720pt;}
.y215{bottom:823.156400pt;}
.y258{bottom:823.920000pt;}
.y16d{bottom:826.153120pt;}
.ye7{bottom:826.880000pt;}
.yc6{bottom:828.240000pt;}
.y18b{bottom:830.480000pt;}
.y14f{bottom:832.873333pt;}
.y239{bottom:832.916800pt;}
.y116{bottom:832.960000pt;}
.y1ed{bottom:837.423840pt;}
.y4{bottom:840.786080pt;}
.y1a6{bottom:841.520000pt;}
.y63{bottom:842.080000pt;}
.y2f4{bottom:844.160000pt;}
.y2dc{bottom:844.320000pt;}
.y324{bottom:845.280000pt;}
.y30e{bottom:845.520000pt;}
.y36e{bottom:846.640000pt;}
.y1c8{bottom:847.364000pt;}
.y20d{bottom:847.600000pt;}
.y3a0{bottom:847.680000pt;}
.y1b{bottom:847.760000pt;}
.y214{bottom:849.069200pt;}
.y3d4{bottom:851.280000pt;}
.y147{bottom:852.929067pt;}
.y16c{bottom:853.032160pt;}
.y10d{bottom:853.786160pt;}
.ye6{bottom:855.840000pt;}
.y115{bottom:857.040000pt;}
.yc5{bottom:857.200000pt;}
.y238{bottom:858.756400pt;}
.y14e{bottom:860.981200pt;}
.y1ec{bottom:862.707120pt;}
.y1a5{bottom:869.040000pt;}
.y62{bottom:869.600000pt;}
.y2db{bottom:871.760000pt;}
.y1c7{bottom:872.720480pt;}
.y2f3{bottom:873.120000pt;}
.y323{bottom:874.240000pt;}
.y213{bottom:874.982000pt;}
.y9d{bottom:875.200000pt;}
.y391{bottom:875.280000pt;}
.y1a{bottom:875.360000pt;}
.y3af{bottom:878.880000pt;}
.y16b{bottom:879.911200pt;}
.y237{bottom:884.669200pt;}
.ye5{bottom:884.800000pt;}
.y114{bottom:886.000000pt;}
.yc4{bottom:886.080000pt;}
.y1eb{bottom:887.990400pt;}
.y14d{bottom:889.089067pt;}
.y148{bottom:892.061067pt;}
.y3{bottom:893.670720pt;}
.y1a4{bottom:896.640000pt;}
.y61{bottom:898.320000pt;}
.y10e{bottom:898.649040pt;}
.y2f2{bottom:900.480000pt;}
.y2da{bottom:900.720000pt;}
.y212{bottom:900.894800pt;}
.y1c6{bottom:901.678400pt;}
.y322{bottom:901.840000pt;}
.ya1{bottom:902.800000pt;}
.y39f{bottom:902.880000pt;}
.y19{bottom:902.960000pt;}
.y16a{bottom:906.717040pt;}
.y236{bottom:910.582000pt;}
.y1ea{bottom:913.273680pt;}
.ye4{bottom:913.680000pt;}
.y113{bottom:914.880000pt;}
.yc2{bottom:915.040000pt;}
.y14c{bottom:917.197067pt;}
.y1a3{bottom:924.240000pt;}
.y211{bottom:926.807600pt;}
.y60{bottom:927.120000pt;}
.y2d9{bottom:928.080000pt;}
.y36d{bottom:929.280000pt;}
.y2f1{bottom:929.440000pt;}
.y20c{bottom:930.400000pt;}
.y1c5{bottom:930.475280pt;}
.y3a5{bottom:930.480000pt;}
.y18{bottom:930.560000pt;}
.y149{bottom:931.193067pt;}
.y169{bottom:933.596080pt;}
.y235{bottom:936.494800pt;}
.y1e9{bottom:938.556960pt;}
.ye3{bottom:942.640000pt;}
.y10f{bottom:943.511920pt;}
.y112{bottom:943.840000pt;}
.yc0{bottom:944.000000pt;}
.y14b{bottom:945.304933pt;}
.y2{bottom:946.555360pt;}
.y1a2{bottom:951.840000pt;}
.y210{bottom:952.647200pt;}
.y5f{bottom:954.720000pt;}
.y36c{bottom:956.800000pt;}
.y38b{bottom:956.880000pt;}
.y2d8{bottom:957.040000pt;}
.y9c{bottom:958.000000pt;}
.y3a4{bottom:958.080000pt;}
.y17{bottom:958.160000pt;}
.y1c4{bottom:959.360000pt;}
.y168{bottom:960.475120pt;}
.y234{bottom:962.407600pt;}
.y1e8{bottom:963.913440pt;}
.y14a{bottom:970.325067pt;}
.ye2{bottom:971.600000pt;}
.y111{bottom:972.800000pt;}
.y1a1{bottom:978.560000pt;}
.y5e{bottom:983.440000pt;}
.y2f0{bottom:984.480000pt;}
.y2d7{bottom:984.640000pt;}
.y4c{bottom:985.600000pt;}
.y3a{bottom:985.680000pt;}
.y16{bottom:985.760000pt;}
.y167{bottom:987.280960pt;}
.y233{bottom:988.247200pt;}
.y1e7{bottom:989.196720pt;}
.y1{bottom:999.440000pt;}
.y2d6{bottom:1012.000000pt;}
.y5d{bottom:1012.160000pt;}
.y38{bottom:1013.200000pt;}
.y3b3{bottom:1013.280000pt;}
.y15{bottom:1013.360000pt;}
.y166{bottom:1014.160000pt;}
.y1e6{bottom:1014.480000pt;}
.he{height:19.840000pt;}
.hd{height:19.841333pt;}
.hc{height:19.920000pt;}
.h12{height:27.520000pt;}
.h11{height:27.600000pt;}
.ha{height:33.918750pt;}
.h14{height:34.453125pt;}
.h13{height:41.770312pt;}
.h6{height:42.032812pt;}
.h26{height:42.110793pt;}
.h21{height:44.468750pt;}
.h1c{height:44.788750pt;}
.h19{height:45.937500pt;}
.h15{height:46.804592pt;}
.h20{height:48.732500pt;}
.h22{height:49.052500pt;}
.h1e{height:51.690312pt;}
.h23{height:52.010312pt;}
.hb{height:52.448437pt;}
.h3{height:53.857500pt;}
.h17{height:57.421875pt;}
.h1a{height:57.473437pt;}
.h8{height:62.781250pt;}
.h5{height:62.812500pt;}
.h1d{height:63.132500pt;}
.h1f{height:63.452500pt;}
.h7{height:64.500000pt;}
.h10{height:65.769779pt;}
.hf{height:65.770312pt;}
.h25{height:65.770846pt;}
.h24{height:66.089779pt;}
.h1b{height:66.090313pt;}
.h9{height:66.750000pt;}
.h2{height:123.517500pt;}
.h4{height:130.964063pt;}
.h16{height:191.329687pt;}
.h18{height:429.892500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w20{width:65.280000pt;}
.w25{width:65.680000pt;}
.w9{width:76.000000pt;}
.w8{width:76.001333pt;}
.w3{width:76.638667pt;}
.w4{width:76.640000pt;}
.w2c{width:77.600000pt;}
.w2f{width:78.080000pt;}
.wb{width:79.200000pt;}
.w6{width:79.920000pt;}
.w1f{width:84.560000pt;}
.wa{width:85.680000pt;}
.w5{width:86.400000pt;}
.w2a{width:88.800000pt;}
.w30{width:89.201333pt;}
.w14{width:90.480000pt;}
.w2b{width:91.040000pt;}
.w31{width:91.200000pt;}
.w34{width:91.280000pt;}
.w2d{width:91.520000pt;}
.w35{width:91.600000pt;}
.w15{width:92.160000pt;}
.w19{width:92.240000pt;}
.w1e{width:92.400000pt;}
.w1a{width:92.561333pt;}
.w33{width:92.801333pt;}
.w36{width:93.200000pt;}
.w18{width:93.281333pt;}
.w1d{width:93.761333pt;}
.w17{width:93.840000pt;}
.w1c{width:94.320000pt;}
.w16{width:97.520000pt;}
.w32{width:97.601333pt;}
.w2e{width:97.920000pt;}
.w1b{width:98.000000pt;}
.w24{width:101.921333pt;}
.w29{width:102.080000pt;}
.w22{width:102.560000pt;}
.w21{width:102.640000pt;}
.w23{width:102.641333pt;}
.w28{width:102.960000pt;}
.w27{width:103.040000pt;}
.w26{width:103.120000pt;}
.wd{width:106.880000pt;}
.wf{width:106.960000pt;}
.w13{width:107.118667pt;}
.w10{width:107.200000pt;}
.w12{width:107.360000pt;}
.wc{width:108.240000pt;}
.we{width:110.081333pt;}
.w11{width:110.561333pt;}
.w7{width:170.000000pt;}
.w2{width:170.321333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.200000pt;}
.x25{left:8.400000pt;}
.x12{left:9.440000pt;}
.x18{left:12.560000pt;}
.x36{left:13.760000pt;}
.x35{left:15.280000pt;}
.x39{left:16.320000pt;}
.x42{left:17.520000pt;}
.x34{left:19.360000pt;}
.x32{left:20.720000pt;}
.x33{left:22.320000pt;}
.x1a{left:23.760000pt;}
.x1b{left:25.520000pt;}
.x24{left:27.040000pt;}
.x20{left:29.680000pt;}
.x37{left:30.960000pt;}
.x23{left:32.800000pt;}
.x38{left:34.880000pt;}
.x4e{left:36.320000pt;}
.x1e{left:38.000000pt;}
.x1d{left:39.520000pt;}
.x4f{left:40.640000pt;}
.x3f{left:41.600000pt;}
.x1c{left:42.800000pt;}
.x46{left:44.160000pt;}
.x3b{left:45.360000pt;}
.x49{left:46.400000pt;}
.x3a{left:47.840000pt;}
.x2e{left:49.440000pt;}
.x1f{left:51.680000pt;}
.x19{left:53.040000pt;}
.x22{left:54.400000pt;}
.x21{left:59.280000pt;}
.x10{left:85.040000pt;}
.x7{left:113.448240pt;}
.x43{left:120.693627pt;}
.x2c{left:124.320000pt;}
.x54{left:126.219200pt;}
.x2{left:127.185360pt;}
.x6{left:128.160000pt;}
.xc0{left:129.520000pt;}
.x53{left:132.303200pt;}
.x5e{left:137.440000pt;}
.x8f{left:141.760000pt;}
.x92{left:144.240000pt;}
.x1{left:145.600000pt;}
.x8c{left:151.040000pt;}
.x86{left:152.880000pt;}
.x84{left:153.840000pt;}
.x4{left:155.435440pt;}
.xc6{left:156.560000pt;}
.xd{left:160.640000pt;}
.xa2{left:162.800000pt;}
.x3{left:163.984000pt;}
.xb2{left:172.960000pt;}
.x7d{left:178.800000pt;}
.xe{left:184.640000pt;}
.xba{left:187.040000pt;}
.x70{left:189.680000pt;}
.x83{left:194.080000pt;}
.x44{left:198.640000pt;}
.x7b{left:200.640000pt;}
.x81{left:201.600000pt;}
.x4b{left:202.960000pt;}
.x3d{left:204.560000pt;}
.x87{left:206.640000pt;}
.xf{left:208.640000pt;}
.x5f{left:209.840000pt;}
.xa9{left:212.400000pt;}
.x9a{left:214.560000pt;}
.x7c{left:218.640000pt;}
.x73{left:219.920000pt;}
.x7a{left:221.440000pt;}
.xc9{left:223.520000pt;}
.x79{left:225.520000pt;}
.x75{left:227.760000pt;}
.x76{left:229.440000pt;}
.xbb{left:230.400000pt;}
.x56{left:231.840000pt;}
.x2d{left:233.200000pt;}
.x78{left:236.240000pt;}
.xa7{left:237.280000pt;}
.xa4{left:242.720000pt;}
.xb3{left:246.640000pt;}
.x82{left:248.000000pt;}
.x93{left:249.760000pt;}
.xbd{left:251.120000pt;}
.x68{left:253.280000pt;}
.x7f{left:254.240000pt;}
.x26{left:255.200000pt;}
.x80{left:257.120000pt;}
.x88{left:258.720000pt;}
.x69{left:259.680000pt;}
.xc1{left:261.200000pt;}
.x63{left:262.480000pt;}
.x6d{left:264.080000pt;}
.x45{left:265.280000pt;}
.x7e{left:269.120000pt;}
.x8d{left:272.320000pt;}
.x90{left:276.403840pt;}
.x6b{left:278.560000pt;}
.x77{left:280.240000pt;}
.x11{left:283.760000pt;}
.x96{left:286.000000pt;}
.x6a{left:288.480000pt;}
.x65{left:291.200000pt;}
.xc4{left:293.280000pt;}
.x4c{left:295.360000pt;}
.x3e{left:298.080000pt;}
.xc2{left:300.400000pt;}
.xac{left:302.720000pt;}
.x59{left:303.760000pt;}
.x97{left:305.440000pt;}
.x57{left:306.480000pt;}
.xcc{left:307.600000pt;}
.x2a{left:308.533227pt;}
.x94{left:310.480000pt;}
.x9e{left:314.080000pt;}
.x29{left:315.199867pt;}
.xce{left:319.440000pt;}
.x8e{left:321.360000pt;}
.x66{left:322.400000pt;}
.x60{left:324.240000pt;}
.x2b{left:325.934000pt;}
.x5a{left:326.960000pt;}
.xbe{left:331.920000pt;}
.xc8{left:334.080000pt;}
.x89{left:335.440000pt;}
.xa8{left:337.280000pt;}
.x2f{left:341.440000pt;}
.xb5{left:344.160000pt;}
.xca{left:346.640000pt;}
.xb6{left:352.240000pt;}
.xa5{left:354.000000pt;}
.xad{left:358.640000pt;}
.x13{left:360.400000pt;}
.xc5{left:363.120000pt;}
.xbc{left:365.520000pt;}
.xc{left:368.000000pt;}
.x47{left:369.280000pt;}
.xb7{left:372.720000pt;}
.x85{left:374.640000pt;}
.xbf{left:384.480000pt;}
.xae{left:386.560000pt;}
.x74{left:391.200000pt;}
.x95{left:392.400000pt;}
.x4d{left:394.240000pt;}
.x5{left:396.877920pt;}
.xaf{left:401.120000pt;}
.x64{left:402.640000pt;}
.xcd{left:411.200000pt;}
.x67{left:418.240000pt;}
.xc3{left:419.360000pt;}
.xb8{left:421.760000pt;}
.x72{left:425.040000pt;}
.x5c{left:426.238240pt;}
.x9f{left:431.760000pt;}
.x98{left:433.680000pt;}
.x14{left:437.040000pt;}
.x9b{left:443.440000pt;}
.x5b{left:447.120000pt;}
.x30{left:452.880000pt;}
.x99{left:456.960000pt;}
.xb4{left:462.560000pt;}
.x9c{left:464.000000pt;}
.x48{left:473.200000pt;}
.xb0{left:477.120000pt;}
.x6c{left:484.640000pt;}
.x9d{left:486.480000pt;}
.x50{left:488.880000pt;}
.x40{left:492.160000pt;}
.x28{left:493.920000pt;}
.xb1{left:500.400000pt;}
.xa6{left:508.960000pt;}
.x58{left:510.640000pt;}
.xa3{left:516.320000pt;}
.x71{left:520.000000pt;}
.x16{left:523.440000pt;}
.xcb{left:527.680000pt;}
.xa0{left:532.000000pt;}
.xa{left:534.560000pt;}
.x8b{left:538.560000pt;}
.x6e{left:546.880000pt;}
.x9{left:548.080000pt;}
.xa1{left:551.600000pt;}
.x55{left:558.090400pt;}
.x31{left:561.120000pt;}
.x4a{left:577.120000pt;}
.xaa{left:585.120000pt;}
.x41{left:586.800000pt;}
.x51{left:587.760000pt;}
.x6f{left:597.120000pt;}
.xb9{left:601.840000pt;}
.x17{left:603.360000pt;}
.x8a{left:608.640000pt;}
.xab{left:621.040000pt;}
.x61{left:622.080000pt;}
.x91{left:645.840000pt;}
.x62{left:650.800000pt;}
.x5d{left:658.080000pt;}
.xc7{left:663.920000pt;}
.x27{left:665.520000pt;}
.xb{left:672.960000pt;}
.x52{left:675.920000pt;}
.x3c{left:677.440000pt;}
.x8{left:680.400000pt;}
}




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