
    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_7b359f263b8ca01b65da05ca.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_86cae876f44ea04da472c102.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_b8bfb4197c1350d60fabd80d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_6f5f78f6577cedfdc41406e0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_e8f694f53456d893c70d7e77.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_abfe2a6bd755572d19e9b72e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c1657a7285509318bf5c8a3b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.986816;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_9998222023195d2c11ac537f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d2a607876d152f933d9669aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0dc82a8ffccc8cb1bbca6e25.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.896973;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-27.360000px;}
.v5{vertical-align:-20.880000px;}
.v6{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.v3{vertical-align:30.240000px;}
.ls4a{letter-spacing:-1.008000px;}
.ls2b{letter-spacing:-0.956160px;}
.ls22{letter-spacing:-0.758160px;}
.ls46{letter-spacing:-0.720000px;}
.ls44{letter-spacing:-0.570240px;}
.ls42{letter-spacing:-0.506880px;}
.ls2c{letter-spacing:-0.358560px;}
.ls18{letter-spacing:-0.336960px;}
.ls47{letter-spacing:-0.316800px;}
.lsf{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.264960px;}
.lsa{letter-spacing:-0.252720px;}
.ls8{letter-spacing:-0.216000px;}
.ls36{letter-spacing:-0.144000px;}
.ls45{letter-spacing:-0.132480px;}
.ls37{letter-spacing:-0.126720px;}
.ls3a{letter-spacing:-0.119520px;}
.ls9{letter-spacing:-0.108000px;}
.ls28{letter-spacing:-0.084240px;}
.lsb{letter-spacing:-0.077760px;}
.ls1a{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.059760px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.054000px;}
.ls25{letter-spacing:0.059760px;}
.ls49{letter-spacing:0.063360px;}
.ls11{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.077760px;}
.ls1b{letter-spacing:0.119520px;}
.ls29{letter-spacing:0.126720px;}
.ls0{letter-spacing:0.132480px;}
.lsd{letter-spacing:0.144000px;}
.ls3d{letter-spacing:0.162000px;}
.ls6{letter-spacing:0.179280px;}
.ls19{letter-spacing:0.190080px;}
.ls1d{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.239040px;}
.ls27{letter-spacing:0.280872px;}
.ls4e{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.336960px;}
.ls16{letter-spacing:0.358560px;}
.ls12{letter-spacing:0.360000px;}
.ls41{letter-spacing:0.378000px;}
.ls33{letter-spacing:0.385920px;}
.ls10{letter-spacing:0.504000px;}
.ls1e{letter-spacing:0.720000px;}
.ls2a{letter-spacing:0.792000px;}
.ls50{letter-spacing:0.864000px;}
.ls40{letter-spacing:0.896400px;}
.ls15{letter-spacing:1.440000px;}
.ls20{letter-spacing:1.613520px;}
.ls3e{letter-spacing:1.620000px;}
.ls2{letter-spacing:2.160000px;}
.ls1f{letter-spacing:2.880000px;}
.ls24{letter-spacing:3.047760px;}
.ls2e{letter-spacing:3.600000px;}
.ls35{letter-spacing:3.607200px;}
.ls3c{letter-spacing:3.780000px;}
.ls34{letter-spacing:4.320000px;}
.ls4f{letter-spacing:5.040000px;}
.ls30{letter-spacing:5.199120px;}
.ls39{letter-spacing:5.760000px;}
.ls23{letter-spacing:6.480000px;}
.ls21{letter-spacing:6.633360px;}
.ls13{letter-spacing:7.200000px;}
.ls31{letter-spacing:7.350480px;}
.ls32{letter-spacing:7.410240px;}
.ls2f{letter-spacing:7.920000px;}
.ls26{letter-spacing:9.367200px;}
.ls3b{letter-spacing:10.260000px;}
.ls4c{letter-spacing:12.240000px;}
.ls14{letter-spacing:12.960000px;}
.ls4d{letter-spacing:18.000000px;}
.ls48{letter-spacing:20.880000px;}
.ls43{letter-spacing:34.842240px;}
.ls4b{letter-spacing:39.600000px;}
.ls2d{letter-spacing:64.224000px;}
.ls38{letter-spacing:195.120000px;}
.ls3f{letter-spacing:846.000000px;}
.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;}
}
.ws3{word-spacing:-26.593920px;}
.ws4{word-spacing:-26.516160px;}
.ws20{word-spacing:-23.081760px;}
.ws36{word-spacing:-22.660560px;}
.ws68{word-spacing:-18.720000px;}
.wsaa{word-spacing:-18.282240px;}
.wsc1{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws67{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.ws22{word-spacing:-17.928000px;}
.wsbb{word-spacing:-17.856000px;}
.ws21{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.wsb0{word-spacing:-15.523200px;}
.ws23{word-spacing:-15.298560px;}
.wsa9{word-spacing:-15.269760px;}
.ws4d{word-spacing:-15.179040px;}
.ws6f{word-spacing:-15.059520px;}
.wsac{word-spacing:-14.999760px;}
.ws37{word-spacing:-14.940000px;}
.ws85{word-spacing:-14.880240px;}
.ws86{word-spacing:-14.820480px;}
.ws70{word-spacing:-14.581440px;}
.ws1{word-spacing:-13.505760px;}
.ws8f{word-spacing:-13.284000px;}
.ws7b{word-spacing:-12.445920px;}
.ws0{word-spacing:-12.204000px;}
.ws2{word-spacing:-11.934000px;}
.ws4c{word-spacing:-9.720000px;}
.wsab{word-spacing:-9.000000px;}
.ws17{word-spacing:-4.320000px;}
.ws3b{word-spacing:-4.032000px;}
.ws33{word-spacing:-3.764880px;}
.wsc7{word-spacing:-3.744000px;}
.ws84{word-spacing:-3.738240px;}
.ws1e{word-spacing:-3.600000px;}
.ws7a{word-spacing:-3.525840px;}
.ws31{word-spacing:-3.312000px;}
.ws8d{word-spacing:-3.047760px;}
.wsb2{word-spacing:-3.041280px;}
.ws1c{word-spacing:-3.024000px;}
.ws50{word-spacing:-2.880000px;}
.ws8a{word-spacing:-2.808720px;}
.ws83{word-spacing:-2.724480px;}
.ws1b{word-spacing:-2.592000px;}
.ws8b{word-spacing:-2.569680px;}
.ws2b{word-spacing:-2.344320px;}
.ws55{word-spacing:-2.330640px;}
.wsba{word-spacing:-2.304000px;}
.ws54{word-spacing:-2.211120px;}
.ws1d{word-spacing:-2.160000px;}
.ws56{word-spacing:-2.091600px;}
.ws6d{word-spacing:-1.872000px;}
.ws9c{word-spacing:-1.782000px;}
.ws73{word-spacing:-1.647360px;}
.ws77{word-spacing:-1.613520px;}
.ws41{word-spacing:-1.584000px;}
.ws28{word-spacing:-1.440000px;}
.ws60{word-spacing:-1.374480px;}
.ws27{word-spacing:-1.152000px;}
.ws34{word-spacing:-0.896400px;}
.wsa8{word-spacing:-0.887040px;}
.ws30{word-spacing:-0.864000px;}
.wsb6{word-spacing:-0.823680px;}
.ws5f{word-spacing:-0.792000px;}
.ws11{word-spacing:-0.720000px;}
.ws62{word-spacing:-0.657360px;}
.ws19{word-spacing:-0.504000px;}
.ws79{word-spacing:-0.478080px;}
.ws1a{word-spacing:-0.432000px;}
.wsc{word-spacing:-0.421200px;}
.ws6c{word-spacing:-0.358560px;}
.wse{word-spacing:-0.288000px;}
.ws57{word-spacing:-0.252720px;}
.ws6b{word-spacing:-0.239040px;}
.ws90{word-spacing:-0.216000px;}
.ws5b{word-spacing:-0.190080px;}
.ws32{word-spacing:-0.179280px;}
.ws52{word-spacing:-0.144000px;}
.ws5a{word-spacing:-0.126720px;}
.ws8c{word-spacing:-0.119520px;}
.ws1f{word-spacing:-0.072000px;}
.ws4f{word-spacing:-0.059760px;}
.ws8{word-spacing:0.000000px;}
.ws35{word-spacing:0.059760px;}
.wsb3{word-spacing:0.072000px;}
.ws7d{word-spacing:0.084240px;}
.ws53{word-spacing:0.119520px;}
.ws80{word-spacing:0.144000px;}
.wsd{word-spacing:0.155520px;}
.wsb{word-spacing:0.162000px;}
.ws4e{word-spacing:0.179280px;}
.ws2e{word-spacing:0.216000px;}
.ws8e{word-spacing:0.239040px;}
.ws9{word-spacing:0.264960px;}
.wsa{word-spacing:0.270000px;}
.ws10{word-spacing:0.288000px;}
.ws88{word-spacing:0.298800px;}
.ws92{word-spacing:0.378000px;}
.ws38{word-spacing:0.421200px;}
.wsaf{word-spacing:0.463680px;}
.ws58{word-spacing:0.506880px;}
.wsf{word-spacing:0.537840px;}
.ws82{word-spacing:0.570240px;}
.wsb7{word-spacing:0.576000px;}
.wsad{word-spacing:0.648000px;}
.wsb8{word-spacing:0.673920px;}
.ws18{word-spacing:0.720000px;}
.ws78{word-spacing:0.776880px;}
.ws66{word-spacing:0.956160px;}
.ws3d{word-spacing:1.008000px;}
.ws45{word-spacing:1.254960px;}
.ws2c{word-spacing:1.267200px;}
.ws81{word-spacing:1.296000px;}
.ws15{word-spacing:1.440000px;}
.ws44{word-spacing:1.494000px;}
.ws24{word-spacing:1.728000px;}
.ws93{word-spacing:1.836000px;}
.wsa1{word-spacing:1.944000px;}
.ws87{word-spacing:1.964160px;}
.ws61{word-spacing:1.972080px;}
.ws14{word-spacing:2.016000px;}
.ws13{word-spacing:2.160000px;}
.ws7e{word-spacing:2.211120px;}
.ws25{word-spacing:2.448000px;}
.ws9d{word-spacing:2.538000px;}
.wsa5{word-spacing:2.661120px;}
.ws46{word-spacing:2.689200px;}
.ws72{word-spacing:2.724480px;}
.ws3e{word-spacing:2.736000px;}
.ws3f{word-spacing:2.880000px;}
.ws47{word-spacing:2.928240px;}
.ws51{word-spacing:3.168000px;}
.ws76{word-spacing:3.406320px;}
.wsb1{word-spacing:3.421440px;}
.ws69{word-spacing:3.456000px;}
.ws12{word-spacing:3.600000px;}
.ws48{word-spacing:3.645360px;}
.ws2f{word-spacing:3.888000px;}
.ws96{word-spacing:3.996000px;}
.wsa3{word-spacing:4.123440px;}
.wsbc{word-spacing:4.176000px;}
.ws6a{word-spacing:4.320000px;}
.ws7f{word-spacing:4.362480px;}
.ws40{word-spacing:4.608000px;}
.ws9f{word-spacing:4.698000px;}
.ws65{word-spacing:4.840560px;}
.wsa2{word-spacing:4.860000px;}
.ws3a{word-spacing:5.040000px;}
.ws75{word-spacing:5.079600px;}
.ws74{word-spacing:5.258880px;}
.ws39{word-spacing:5.328000px;}
.wsb5{word-spacing:5.575680px;}
.ws89{word-spacing:5.616000px;}
.wsae{word-spacing:5.639040px;}
.ws26{word-spacing:5.760000px;}
.wsb9{word-spacing:5.976000px;}
.ws71{word-spacing:6.048000px;}
.ws94{word-spacing:6.264000px;}
.wsa7{word-spacing:6.272640px;}
.ws4a{word-spacing:6.274800px;}
.ws5c{word-spacing:6.336000px;}
.ws49{word-spacing:6.454080px;}
.ws3c{word-spacing:6.480000px;}
.ws4b{word-spacing:6.513840px;}
.ws6e{word-spacing:6.696000px;}
.ws16{word-spacing:6.768000px;}
.ws91{word-spacing:6.858000px;}
.ws59{word-spacing:7.032960px;}
.ws64{word-spacing:7.051680px;}
.wsa6{word-spacing:7.096320px;}
.ws2a{word-spacing:7.200000px;}
.ws63{word-spacing:7.290720px;}
.ws29{word-spacing:7.488000px;}
.ws7c{word-spacing:7.776000px;}
.ws42{word-spacing:7.920000px;}
.wsa4{word-spacing:8.064000px;}
.ws43{word-spacing:8.208000px;}
.wsa0{word-spacing:8.316000px;}
.ws5e{word-spacing:8.640000px;}
.ws5d{word-spacing:8.928000px;}
.ws95{word-spacing:10.476000px;}
.ws9b{word-spacing:11.178000px;}
.ws2d{word-spacing:12.038400px;}
.wsc3{word-spacing:12.528000px;}
.ws97{word-spacing:13.338000px;}
.wsc4{word-spacing:18.000000px;}
.ws9a{word-spacing:18.522000px;}
.wsb4{word-spacing:21.168000px;}
.wsc5{word-spacing:27.360000px;}
.wsc6{word-spacing:27.648000px;}
.ws99{word-spacing:32.076000px;}
.wsc0{word-spacing:36.000000px;}
.wsc2{word-spacing:36.720000px;}
.wsbd{word-spacing:39.600000px;}
.wsbe{word-spacing:39.888000px;}
.ws9e{word-spacing:49.248000px;}
.wsbf{word-spacing:147.600000px;}
.ws98{word-spacing:207.144000px;}
._b{margin-left:-13.857840px;}
._4{margin-left:-4.824000px;}
._6{margin-left:-3.456000px;}
._a{margin-left:-2.090664px;}
._2{margin-left:-1.063800px;}
._3{width:1.374480px;}
._7{width:2.808000px;}
._5{width:4.578840px;}
._8{width:6.215400px;}
._9{width:7.946640px;}
._f{width:27.144000px;}
._d{width:36.144000px;}
._c{width:40.811040px;}
._e{width:50.688000px;}
._1{width:94.338000px;}
._0{width:731.538000px;}
.fcb{color:rgb(0,0,255);}
.fc9{color:rgb(83,129,53);}
.fca{color:rgb(255,0,0);}
.fc8{color:rgb(132,150,176);}
.fc7{color:rgb(153,102,51);}
.fc6{color:rgb(0,0,204);}
.fc5{color:transparent;}
.fc3{color:rgb(118,113,113);}
.fc2{color:rgb(196,89,17);}
.fc4{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fsb{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs9{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs7{font-size:81.360000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.yf1{bottom:-24.120000px;}
.y0{bottom:0.000000px;}
.yf0{bottom:4.679850px;}
.y17a{bottom:14.220000px;}
.y9{bottom:16.020000px;}
.y165{bottom:20.160000px;}
.y166{bottom:20.340000px;}
.yd2{bottom:21.960000px;}
.y168{bottom:40.680000px;}
.y193{bottom:49.860000px;}
.y174{bottom:60.300000px;}
.y16b{bottom:60.480000px;}
.y7{bottom:79.920000px;}
.y17c{bottom:85.680000px;}
.y183{bottom:94.680000px;}
.y192{bottom:103.500000px;}
.y6{bottom:112.680000px;}
.y8{bottom:113.760000px;}
.y5{bottom:145.440000px;}
.yba{bottom:165.371940px;}
.y7c{bottom:165.377520px;}
.y13b{bottom:165.403260px;}
.y56{bottom:165.406140px;}
.y11a{bottom:165.408840px;}
.y95{bottom:165.411720px;}
.y1f9{bottom:166.680000px;}
.y2d{bottom:172.980000px;}
.y1da{bottom:177.133500px;}
.yb9{bottom:182.657520px;}
.y7b{bottom:182.663100px;}
.y13a{bottom:182.688840px;}
.y55{bottom:182.691720px;}
.y119{bottom:182.694420px;}
.y94{bottom:182.697300px;}
.y249{bottom:182.880000px;}
.y2a6{bottom:183.060000px;}
.y163{bottom:185.580000px;}
.y217{bottom:189.180000px;}
.y1f8{bottom:190.440000px;}
.y2c{bottom:193.680000px;}
.y1d9{bottom:196.929000px;}
.y296{bottom:197.820000px;}
.yb8{bottom:199.943100px;}
.y7a{bottom:199.948680px;}
.y139{bottom:199.974420px;}
.y54{bottom:199.977300px;}
.yee{bottom:203.940000px;}
.y118{bottom:205.200000px;}
.y23a{bottom:205.380000px;}
.y248{bottom:206.640000px;}
.y2a5{bottom:206.820000px;}
.y93{bottom:207.540000px;}
.y14e{bottom:207.720000px;}
.y162{bottom:209.340000px;}
.y279{bottom:212.220000px;}
.y216{bottom:213.120000px;}
.y2b{bottom:214.380000px;}
.y1d8{bottom:216.724500px;}
.yb7{bottom:217.228680px;}
.y79{bottom:217.234260px;}
.y117{bottom:217.980000px;}
.y18a{bottom:219.600000px;}
.y295{bottom:221.580000px;}
.y138{bottom:222.480000px;}
.y1f7{bottom:223.380000px;}
.y53{bottom:224.820000px;}
.y92{bottom:225.900000px;}
.yed{bottom:227.700000px;}
.y239{bottom:229.140000px;}
.y1a5{bottom:230.040000px;}
.y247{bottom:230.400000px;}
.y161{bottom:233.100000px;}
.yb6{bottom:234.514260px;}
.y78{bottom:234.519840px;}
.y137{bottom:234.525420px;}
.y278{bottom:236.160000px;}
.y215{bottom:236.880000px;}
.y116{bottom:238.680000px;}
.y2a4{bottom:239.580000px;}
.y14d{bottom:239.931360px;}
.y1d7{bottom:241.020000px;}
.y2a{bottom:247.140000px;}
.y238{bottom:249.840000px;}
.y52{bottom:250.740000px;}
.yec{bottom:251.640000px;}
.yb5{bottom:251.799840px;}
.y77{bottom:251.805420px;}
.y136{bottom:251.811000px;}
.y246{bottom:254.340000px;}
.y294{bottom:254.520000px;}
.y160{bottom:256.860000px;}
.y115{bottom:259.380000px;}
.y14c{bottom:260.634240px;}
.y2a3{bottom:263.520000px;}
.y1d6{bottom:266.760000px;}
.y29{bottom:267.840000px;}
.yb4{bottom:268.906140px;}
.y76{bottom:268.911720px;}
.y135{bottom:268.917300px;}
.y277{bottom:268.920000px;}
.y214{bottom:269.640000px;}
.y237{bottom:270.564480px;}
.y1f6{bottom:270.900000px;}
.y51{bottom:271.440000px;}
.yeb{bottom:275.400000px;}
.y262{bottom:275.940000px;}
.y245{bottom:278.100000px;}
.y293{bottom:278.280000px;}
.y15f{bottom:280.800000px;}
.y14b{bottom:281.337120px;}
.y114{bottom:284.580000px;}
.yb3{bottom:286.191720px;}
.y75{bottom:286.197300px;}
.y2a2{bottom:287.280000px;}
.y1d5{bottom:287.460000px;}
.y236{bottom:291.077280px;}
.y213{bottom:293.400000px;}
.y134{bottom:293.760000px;}
.y1f5{bottom:294.660000px;}
.yd0{bottom:294.840000px;}
.y113{bottom:296.619840px;}
.yea{bottom:299.160000px;}
.y28{bottom:300.600000px;}
.y276{bottom:301.680000px;}
.y14a{bottom:302.040000px;}
.yb2{bottom:303.477300px;}
.y15e{bottom:304.560000px;}
.y50{bottom:308.700000px;}
.y235{bottom:309.071520px;}
.y244{bottom:310.860000px;}
.y74{bottom:311.040000px;}
.y261{bottom:311.580000px;}
.y112{bottom:313.905420px;}
.y91{bottom:313.920000px;}
.ycf{bottom:315.540000px;}
.y212{bottom:317.340000px;}
.y1f4{bottom:318.600000px;}
.y133{bottom:319.680000px;}
.y2a1{bottom:320.040000px;}
.y27{bottom:324.540000px;}
.y275{bottom:325.440000px;}
.y234{bottom:327.065760px;}
.yb1{bottom:328.320000px;}
.y1bf{bottom:328.500000px;}
.y111{bottom:331.011720px;}
.ye9{bottom:331.920000px;}
.y149{bottom:332.280000px;}
.y4f{bottom:332.640000px;}
.y243{bottom:334.620000px;}
.y292{bottom:334.800000px;}
.y260{bottom:335.340000px;}
.yce{bottom:336.240000px;}
.y73{bottom:336.960000px;}
.y90{bottom:337.680000px;}
.y132{bottom:340.380000px;}
.y211{bottom:341.100000px;}
.y1f3{bottom:342.360000px;}
.y2a0{bottom:343.800000px;}
.y233{bottom:345.060000px;}
.y110{bottom:348.297300px;}
.y26{bottom:348.300000px;}
.y1d4{bottom:348.660000px;}
.y15d{bottom:352.080000px;}
.y1be{bottom:352.440000px;}
.yb0{bottom:354.240000px;}
.ye8{bottom:355.860000px;}
.y4e{bottom:356.400000px;}
.ycd{bottom:356.940000px;}
.y72{bottom:357.660000px;}
.y274{bottom:358.380000px;}
.y242{bottom:358.560000px;}
.y291{bottom:358.740000px;}
.y25f{bottom:359.100000px;}
.y8f{bottom:361.440000px;}
.y232{bottom:362.880000px;}
.y210{bottom:364.860000px;}
.y148{bottom:365.040000px;}
.y1f2{bottom:366.120000px;}
.y1a4{bottom:366.300000px;}
.y29f{bottom:367.740000px;}
.y25{bottom:372.060000px;}
.y1d3{bottom:372.420000px;}
.y10f{bottom:373.140000px;}
.y2b9{bottom:374.220000px;}
.yaf{bottom:374.940000px;}
.y1bd{bottom:376.200000px;}
.ycc{bottom:377.640000px;}
.ye7{bottom:379.620000px;}
.y4d{bottom:380.160000px;}
.y273{bottom:382.140000px;}
.y241{bottom:382.320000px;}
.y25e{bottom:383.040000px;}
.y15c{bottom:385.020000px;}
.y8e{bottom:385.200000px;}
.y131{bottom:385.380000px;}
.y20f{bottom:385.560000px;}
.y147{bottom:388.800000px;}
.y290{bottom:391.500000px;}
.y231{bottom:393.300000px;}
.y2b8{bottom:394.920000px;}
.y1f1{bottom:395.280000px;}
.y24{bottom:395.820000px;}
.y1d2{bottom:396.360000px;}
.ycb{bottom:398.340000px;}
.y10e{bottom:399.060000px;}
.y1bc{bottom:399.960000px;}
.y29e{bottom:400.500000px;}
.y1a3{bottom:401.940000px;}
.ye6{bottom:403.380000px;}
.y4c{bottom:403.920000px;}
.y240{bottom:406.080000px;}
.y20e{bottom:406.260000px;}
.y25d{bottom:406.800000px;}
.y15b{bottom:408.780000px;}
.y146{bottom:412.740000px;}
.y272{bottom:414.900000px;}
.y28f{bottom:415.260000px;}
.y2b7{bottom:415.620000px;}
.y230{bottom:417.060000px;}
.y8d{bottom:418.140000px;}
.yca{bottom:419.040000px;}
.y10d{bottom:419.760000px;}
.y1d1{bottom:420.120000px;}
.y1bb{bottom:423.720000px;}
.yae{bottom:423.900000px;}
.y29d{bottom:424.260000px;}
.y1a2{bottom:425.700000px;}
.y20d{bottom:426.797280px;}
.ye5{bottom:427.140000px;}
.y4b{bottom:427.860000px;}
.y23{bottom:428.760000px;}
.y23f{bottom:429.840000px;}
.y25c{bottom:430.560000px;}
.y15a{bottom:432.540000px;}
.y2b6{bottom:436.320000px;}
.y145{bottom:436.500000px;}
.y271{bottom:438.660000px;}
.y1f0{bottom:438.840000px;}
.yc9{bottom:439.740000px;}
.y22f{bottom:440.820000px;}
.y8c{bottom:441.900000px;}
.y130{bottom:442.080000px;}
.y1d0{bottom:443.880000px;}
.y20c{bottom:444.791520px;}
.y1ba{bottom:447.660000px;}
.y28e{bottom:448.020000px;}
.y1a1{bottom:449.460000px;}
.ye4{bottom:451.080000px;}
.y4a{bottom:451.620000px;}
.y159{bottom:452.503260px;}
.y22{bottom:452.520000px;}
.y25b{bottom:454.320000px;}
.yad{bottom:456.660000px;}
.y29c{bottom:457.020000px;}
.y10c{bottom:460.080000px;}
.y144{bottom:460.260000px;}
.yc8{bottom:460.440000px;}
.y270{bottom:462.600000px;}
.y1ef{bottom:462.780000px;}
.y20b{bottom:462.785760px;}
.y22e{bottom:464.580000px;}
.y8b{bottom:465.660000px;}
.y12f{bottom:465.840000px;}
.y158{bottom:469.788840px;}
.y1b9{bottom:471.420000px;}
.y28d{bottom:471.780000px;}
.y1cf{bottom:473.040000px;}
.y1a0{bottom:473.400000px;}
.ye3{bottom:474.840000px;}
.y49{bottom:475.380000px;}
.y2b5{bottom:477.720000px;}
.y25a{bottom:478.080000px;}
.yac{bottom:480.420000px;}
.y10b{bottom:480.780000px;}
.yc7{bottom:481.140000px;}
.y71{bottom:483.660000px;}
.y143{bottom:484.020000px;}
.y21{bottom:485.280000px;}
.y26f{bottom:486.360000px;}
.y1ee{bottom:486.540000px;}
.y157{bottom:487.074420px;}
.y22d{bottom:488.520000px;}
.y8a{bottom:489.420000px;}
.y19f{bottom:497.160000px;}
.ye2{bottom:498.600000px;}
.y48{bottom:499.140000px;}
.y10a{bottom:501.498720px;}
.yc6{bottom:501.840000px;}
.y259{bottom:502.020000px;}
.yab{bottom:504.180000px;}
.y156{bottom:504.360000px;}
.y28c{bottom:504.720000px;}
.y20{bottom:505.980000px;}
.y26e{bottom:510.120000px;}
.y1ed{bottom:510.300000px;}
.y2b4{bottom:510.480000px;}
.y20a{bottom:511.020000px;}
.y22c{bottom:512.280000px;}
.y89{bottom:513.180000px;}
.y70{bottom:516.600000px;}
.y142{bottom:516.780000px;}
.y177{bottom:519.840000px;}
.y109{bottom:522.011520px;}
.ye1{bottom:522.360000px;}
.yc5{bottom:522.540000px;}
.y47{bottom:523.080000px;}
.y258{bottom:525.780000px;}
.y1b8{bottom:527.940000px;}
.y28b{bottom:528.480000px;}
.y19e{bottom:529.920000px;}
.y1ec{bottom:534.060000px;}
.y2b3{bottom:534.240000px;}
.y209{bottom:534.780000px;}
.y22b{bottom:536.040000px;}
.y88{bottom:537.120000px;}
.y29b{bottom:537.480000px;}
.y1f{bottom:538.740000px;}
.y108{bottom:540.005760px;}
.y6f{bottom:540.360000px;}
.y178{bottom:540.540000px;}
.y141{bottom:540.720000px;}
.y26d{bottom:542.880000px;}
.yc4{bottom:543.240000px;}
.ye0{bottom:546.120000px;}
.y12e{bottom:546.300000px;}
.y46{bottom:546.840000px;}
.y19d{bottom:550.620000px;}
.y1b7{bottom:551.880000px;}
.y28a{bottom:552.240000px;}
.y107{bottom:558.000000px;}
.y257{bottom:558.540000px;}
.y22a{bottom:559.800000px;}
.yaa{bottom:560.880000px;}
.y29a{bottom:561.240000px;}
.yc3{bottom:563.940000px;}
.y6e{bottom:564.120000px;}
.y1ce{bottom:564.300000px;}
.y140{bottom:564.480000px;}
.y26c{bottom:566.640000px;}
.y1eb{bottom:567.000000px;}
.y208{bottom:567.540000px;}
.y87{bottom:569.880000px;}
.y12d{bottom:570.060000px;}
.y45{bottom:570.600000px;}
.y1e{bottom:571.680000px;}
.y173{bottom:574.560000px;}
.y1b6{bottom:575.640000px;}
.ydf{bottom:579.060000px;}
.yd1{bottom:581.040000px;}
.y2b2{bottom:581.940000px;}
.y256{bottom:582.300000px;}
.y229{bottom:583.560000px;}
.ya9{bottom:584.640000px;}
.y289{bottom:585.000000px;}
.y189{bottom:585.360000px;}
.y6d{bottom:587.880000px;}
.y1cd{bottom:588.060000px;}
.y106{bottom:588.240000px;}
.y26b{bottom:590.580000px;}
.y1ea{bottom:590.760000px;}
.y44{bottom:591.300000px;}
.y86{bottom:593.640000px;}
.y12c{bottom:593.820000px;}
.y176{bottom:595.260000px;}
.y1d{bottom:595.440000px;}
.y1b5{bottom:599.400000px;}
.y19c{bottom:599.580000px;}
.yde{bottom:602.820000px;}
.yc2{bottom:605.340000px;}
.y255{bottom:606.240000px;}
.y228{bottom:607.500000px;}
.ya8{bottom:608.400000px;}
.y288{bottom:608.940000px;}
.y6c{bottom:611.640000px;}
.y1cc{bottom:611.820000px;}
.y43{bottom:612.000000px;}
.y1e9{bottom:614.520000px;}
.y2b1{bottom:614.700000px;}
.y175{bottom:615.060000px;}
.y207{bottom:615.240000px;}
.y85{bottom:617.400000px;}
.y12b{bottom:617.580000px;}
.y1c{bottom:619.200000px;}
.yc1{bottom:622.080000px;}
.y26a{bottom:623.340000px;}
.y191{bottom:626.040000px;}
.ydd{bottom:626.580000px;}
.y254{bottom:630.000000px;}
.y227{bottom:631.260000px;}
.y1b4{bottom:632.160000px;}
.ya7{bottom:632.340000px;}
.y287{bottom:632.700000px;}
.y42{bottom:632.712960px;}
.y19b{bottom:635.400000px;}
.y6b{bottom:635.580000px;}
.y1cb{bottom:635.760000px;}
.y13f{bottom:635.940000px;}
.y1e8{bottom:638.280000px;}
.y2b0{bottom:638.460000px;}
.y206{bottom:639.000000px;}
.y299{bottom:641.700000px;}
.y1b{bottom:642.960000px;}
.y190{bottom:643.860000px;}
.y105{bottom:644.940000px;}
.y269{bottom:647.100000px;}
.y170{bottom:648.900000px;}
.y84{bottom:650.340000px;}
.y12a{bottom:650.520000px;}
.y19a{bottom:653.220000px;}
.y41{bottom:653.225760px;}
.y253{bottom:653.760000px;}
.ya6{bottom:656.100000px;}
.y1ca{bottom:656.460000px;}
.y6a{bottom:659.340000px;}
.y13e{bottom:659.700000px;}
.y198{bottom:662.040000px;}
.y1e7{bottom:662.220000px;}
.y226{bottom:664.020000px;}
.y286{bottom:665.460000px;}
.y1a{bottom:666.900000px;}
.y104{bottom:668.700000px;}
.y172{bottom:669.780000px;}
.y18f{bottom:670.680000px;}
.y199{bottom:671.040000px;}
.y40{bottom:671.220000px;}
.y205{bottom:671.760000px;}
.y83{bottom:674.100000px;}
.ydc{bottom:674.280000px;}
.y1c9{bottom:677.172960px;}
.y252{bottom:677.520000px;}
.ya5{bottom:679.860000px;}
.y69{bottom:683.100000px;}
.y23e{bottom:683.460000px;}
.y1e6{bottom:685.980000px;}
.y225{bottom:687.780000px;}
.y285{bottom:689.220000px;}
.y171{bottom:689.580000px;}
.y19{bottom:690.660000px;}
.y103{bottom:692.460000px;}
.y2af{bottom:695.160000px;}
.y204{bottom:695.520000px;}
.y18e{bottom:697.500000px;}
.y1c8{bottom:697.511520px;}
.y82{bottom:697.860000px;}
.ydb{bottom:698.040000px;}
.y3f{bottom:701.460000px;}
.ya4{bottom:703.620000px;}
.y268{bottom:703.800000px;}
.y224{bottom:711.720000px;}
.y284{bottom:713.160000px;}
.y1c7{bottom:715.505760px;}
.y197{bottom:715.680000px;}
.y68{bottom:715.860000px;}
.y102{bottom:716.220000px;}
.y1e5{bottom:718.740000px;}
.y2ae{bottom:718.920000px;}
.y203{bottom:719.460000px;}
.y81{bottom:721.620000px;}
.y129{bottom:721.800000px;}
.y298{bottom:722.160000px;}
.y18{bottom:723.420000px;}
.y18d{bottom:724.500000px;}
.y3e{bottom:725.220000px;}
.y1b3{bottom:727.380000px;}
.y267{bottom:727.560000px;}
.yda{bottom:730.800000px;}
.y194{bottom:733.500000px;}
.y223{bottom:735.480000px;}
.ya3{bottom:736.560000px;}
.y67{bottom:739.800000px;}
.y101{bottom:740.160000px;}
.y1e4{bottom:742.500000px;}
.y202{bottom:743.220000px;}
.y16f{bottom:744.300000px;}
.y80{bottom:745.560000px;}
.y128{bottom:745.740000px;}
.y283{bottom:745.920000px;}
.y17{bottom:747.180000px;}
.y18c{bottom:751.320000px;}
.y196{bottom:751.500000px;}
.y2ad{bottom:751.680000px;}
.yd9{bottom:754.560000px;}
.y251{bottom:757.980000px;}
.y3d{bottom:758.160000px;}
.y222{bottom:759.240000px;}
.ya2{bottom:760.320000px;}
.y66{bottom:763.560000px;}
.y1c6{bottom:763.740000px;}
.y100{bottom:763.920000px;}
.y16e{bottom:764.100000px;}
.y7f{bottom:766.260000px;}
.y201{bottom:766.980000px;}
.y195{bottom:769.320000px;}
.y127{bottom:769.500000px;}
.y282{bottom:769.680000px;}
.y16{bottom:771.120000px;}
.y1b2{bottom:775.080000px;}
.y18b{bottom:778.140000px;}
.yd8{bottom:778.500000px;}
.y250{bottom:781.740000px;}
.y3c{bottom:781.920000px;}
.y221{bottom:783.000000px;}
.ya1{bottom:784.080000px;}
.y2ac{bottom:784.440000px;}
.y7e{bottom:786.240000px;}
.y65{bottom:787.320000px;}
.yff{bottom:787.680000px;}
.y1e3{bottom:790.200000px;}
.y200{bottom:790.740000px;}
.y126{bottom:793.260000px;}
.y281{bottom:793.440000px;}
.y16a{bottom:797.940000px;}
.y1b1{bottom:798.840000px;}
.y7d{bottom:800.100000px;}
.yd7{bottom:802.260000px;}
.y297{bottom:802.440000px;}
.y15{bottom:803.880000px;}
.y3b{bottom:805.680000px;}
.y220{bottom:806.940000px;}
.ya0{bottom:807.840000px;}
.y266{bottom:808.020000px;}
.y2ab{bottom:808.380000px;}
.y64{bottom:811.080000px;}
.yfe{bottom:811.440000px;}
.y1e2{bottom:813.960000px;}
.y1ff{bottom:814.680000px;}
.y125{bottom:817.020000px;}
.y182{bottom:817.560000px;}
.y16d{bottom:818.820000px;}
.y14{bottom:824.580000px;}
.yd6{bottom:826.020000px;}
.y280{bottom:826.380000px;}
.y3a{bottom:829.440000px;}
.y9f{bottom:831.600000px;}
.y188{bottom:831.780000px;}
.y1c5{bottom:832.140000px;}
.y63{bottom:835.020000px;}
.y23d{bottom:835.380000px;}
.y1fe{bottom:838.440000px;}
.y16c{bottom:838.620000px;}
.y21f{bottom:838.969920px;}
.y186{bottom:840.780000px;}
.y1e1{bottom:843.120000px;}
.yfd{bottom:844.380000px;}
.yd5{bottom:846.720000px;}
.y124{bottom:849.780000px;}
.y27f{bottom:850.140000px;}
.y9e{bottom:852.300000px;}
.y1c4{bottom:852.852960px;}
.y39{bottom:853.200000px;}
.y1b0{bottom:855.360000px;}
.y13{bottom:857.340000px;}
.y185{bottom:858.600000px;}
.y62{bottom:858.780000px;}
.y23c{bottom:859.140000px;}
.y21e{bottom:859.672800px;}
.yef{bottom:861.300000px;}
.y24f{bottom:862.200000px;}
.y265{bottom:864.540000px;}
.y2aa{bottom:864.900000px;}
.yd4{bottom:867.420000px;}
.y187{bottom:867.600000px;}
.yfc{bottom:868.140000px;}
.y1fd{bottom:871.200000px;}
.y167{bottom:872.460000px;}
.y9d{bottom:873.000000px;}
.y1c3{bottom:873.365760px;}
.y123{bottom:873.720000px;}
.y27e{bottom:873.900000px;}
.y1af{bottom:879.300000px;}
.y21d{bottom:880.375680px;}
.y61{bottom:882.540000px;}
.y23b{bottom:882.900000px;}
.y1e0{bottom:883.620000px;}
.yd3{bottom:884.160000px;}
.y184{bottom:885.420000px;}
.y24e{bottom:885.960000px;}
.y38{bottom:886.140000px;}
.y12{bottom:890.100000px;}
.y1c2{bottom:891.360000px;}
.yfb{bottom:891.900000px;}
.y169{bottom:893.340000px;}
.y9c{bottom:893.537280px;}
.y1fc{bottom:894.960000px;}
.y264{bottom:897.300000px;}
.y122{bottom:897.480000px;}
.y2a9{bottom:897.660000px;}
.y1ae{bottom:900.000000px;}
.y21c{bottom:901.078560px;}
.y1df{bottom:904.320000px;}
.y60{bottom:906.300000px;}
.y27d{bottom:906.660000px;}
.y1c1{bottom:909.180000px;}
.y37{bottom:909.900000px;}
.y9b{bottom:911.531520px;}
.y11{bottom:913.860000px;}
.yfa{bottom:915.660000px;}
.y1fb{bottom:918.900000px;}
.y1ad{bottom:920.730240px;}
.y121{bottom:921.240000px;}
.y2a8{bottom:921.600000px;}
.y21b{bottom:921.781440px;}
.y17b{bottom:924.840000px;}
.y1de{bottom:925.020000px;}
.y164{bottom:928.620000px;}
.y9a{bottom:929.525760px;}
.y5f{bottom:930.240000px;}
.y27c{bottom:930.600000px;}
.yc0{bottom:932.040000px;}
.y36{bottom:933.660000px;}
.y181{bottom:939.060000px;}
.yf9{bottom:939.600000px;}
.y1ac{bottom:941.243040px;}
.y21a{bottom:942.484320px;}
.y1fa{bottom:942.660000px;}
.y120{bottom:945.000000px;}
.y2a7{bottom:945.360000px;}
.y1dd{bottom:945.720000px;}
.y10{bottom:946.800000px;}
.y99{bottom:947.520000px;}
.ybf{bottom:952.740000px;}
.y27b{bottom:954.360000px;}
.y17e{bottom:956.880000px;}
.y35{bottom:957.420000px;}
.y1ab{bottom:959.237280px;}
.y219{bottom:962.997120px;}
.y5e{bottom:963.000000px;}
.yf8{bottom:963.360000px;}
.y1dc{bottom:966.420000px;}
.y263{bottom:968.760000px;}
.yf{bottom:969.300000px;}
.y155{bottom:973.080000px;}
.ybe{bottom:973.440000px;}
.y180{bottom:974.880000px;}
.y11f{bottom:975.240000px;}
.y1aa{bottom:977.057280px;}
.y98{bottom:977.760000px;}
.y27a{bottom:978.120000px;}
.y34{bottom:981.360000px;}
.y17d{bottom:983.700000px;}
.y5d{bottom:986.760000px;}
.yf7{bottom:987.120000px;}
.y24d{bottom:990.180000px;}
.ye{bottom:991.440000px;}
.y17f{bottom:992.700000px;}
.y154{bottom:993.780000px;}
.ybd{bottom:994.140000px;}
.y1a9{bottom:995.051520px;}
.y97{bottom:1001.520000px;}
.y218{bottom:1001.880000px;}
.y5c{bottom:1010.520000px;}
.yf6{bottom:1010.880000px;}
.y33{bottom:1011.420000px;}
.y1a8{bottom:1013.045760px;}
.y24c{bottom:1013.940000px;}
.y153{bottom:1014.480000px;}
.ybc{bottom:1014.660000px;}
.y1db{bottom:1019.880000px;}
.y11e{bottom:1022.940000px;}
.y179{bottom:1023.840000px;}
.y96{bottom:1025.460000px;}
.y1a7{bottom:1031.040000px;}
.yd{bottom:1034.284320px;}
.y5b{bottom:1034.460000px;}
.yf5{bottom:1034.640000px;}
.ybb{bottom:1035.360000px;}
.y24b{bottom:1037.880000px;}
.y13d{bottom:1043.640000px;}
.y152{bottom:1046.701440px;}
.y11d{bottom:1046.880000px;}
.y1a6{bottom:1049.220000px;}
.y32{bottom:1056.060000px;}
.yc{bottom:1058.040000px;}
.y5a{bottom:1058.220000px;}
.yf4{bottom:1058.580000px;}
.y24a{bottom:1061.640000px;}
.y151{bottom:1067.404320px;}
.y13c{bottom:1067.580000px;}
.y11c{bottom:1070.640000px;}
.y31{bottom:1076.760000px;}
.y59{bottom:1081.980000px;}
.y1c0{bottom:1082.340000px;}
.y150{bottom:1087.917120px;}
.yf3{bottom:1091.340000px;}
.y11b{bottom:1094.400000px;}
.y30{bottom:1097.460000px;}
.y58{bottom:1105.740000px;}
.y14f{bottom:1108.620000px;}
.yb{bottom:1108.973160px;}
.yf2{bottom:1115.100000px;}
.y2f{bottom:1118.160000px;}
.ya{bottom:1134.540000px;}
.y57{bottom:1135.980000px;}
.y2e{bottom:1138.860000px;}
.y4{bottom:1171.800000px;}
.y3{bottom:1192.149000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.h18{height:18.720000px;}
.h21{height:26.820000px;}
.h5{height:32.758500px;}
.h1c{height:32.940000px;}
.h14{height:34.114922px;}
.h2a{height:34.435898px;}
.h17{height:36.000000px;}
.h3{height:38.759766px;}
.h16{height:41.493516px;}
.hf{height:42.327773px;}
.h23{height:47.381836px;}
.hd{height:47.520000px;}
.h1d{height:47.961914px;}
.h29{height:48.224531px;}
.h9{height:48.905156px;}
.h1a{height:49.992188px;}
.h10{height:52.435898px;}
.h13{height:53.077852px;}
.h1e{height:54.720000px;}
.hb{height:61.329023px;}
.h2c{height:63.077861px;}
.h19{height:63.100901px;}
.h15{height:63.106661px;}
.h2b{height:63.121781px;}
.he{height:63.123941px;}
.h4{height:63.175781px;}
.h1b{height:63.220421px;}
.h7{height:63.635625px;}
.h27{height:63.828259px;}
.ha{height:63.949219px;}
.h11{height:64.004659px;}
.h8{height:66.581719px;}
.h6{height:68.938594px;}
.h12{height:69.553477px;}
.hc{height:69.687773px;}
.h28{height:73.863824px;}
.h2d{height:73.915664px;}
.h20{height:74.340000px;}
.h1f{height:74.520000px;}
.h2{height:75.600000px;}
.h22{height:98.280000px;}
.h24{height:107.280000px;}
.h26{height:116.100000px;}
.h25{height:232.200000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:38.880000px;}
.w7{width:125.100000px;}
.w9{width:148.680000px;}
.w5{width:263.161500px;}
.wa{width:374.401500px;}
.w6{width:449.098500px;}
.w8{width:523.080000px;}
.w3{width:541.260000px;}
.w4{width:542.700000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:8.100000px;}
.x1a{left:45.540000px;}
.x16{left:73.980000px;}
.x3{left:127.624500px;}
.x1e{left:135.720000px;}
.x1{left:152.640000px;}
.x12{left:154.620000px;}
.x1c{left:159.300000px;}
.x15{left:176.400000px;}
.x13{left:181.620000px;}
.x24{left:221.580000px;}
.x11{left:233.820000px;}
.xe{left:235.620000px;}
.x20{left:252.720000px;}
.x21{left:260.820000px;}
.x18{left:271.260000px;}
.x4{left:297.180000px;}
.x9{left:339.482880px;}
.xf{left:343.620000px;}
.x7{left:375.831000px;}
.x1b{left:390.780000px;}
.x1f{left:398.880000px;}
.x22{left:401.400000px;}
.x23{left:409.500000px;}
.x5{left:466.740000px;}
.xc{left:474.120000px;}
.x19{left:478.261800px;}
.x6{left:515.880000px;}
.x2{left:533.340000px;}
.x8{left:541.620000px;}
.xd{left:579.060000px;}
.xa{left:606.780000px;}
.xb{left:621.540000px;}
.x17{left:725.220000px;}
.x14{left:733.680000px;}
.x10{left:746.280000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v5{vertical-align:-18.560000pt;}
.v6{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.v3{vertical-align:26.880000pt;}
.ls4a{letter-spacing:-0.896000pt;}
.ls2b{letter-spacing:-0.849920pt;}
.ls22{letter-spacing:-0.673920pt;}
.ls46{letter-spacing:-0.640000pt;}
.ls44{letter-spacing:-0.506880pt;}
.ls42{letter-spacing:-0.450560pt;}
.ls2c{letter-spacing:-0.318720pt;}
.ls18{letter-spacing:-0.299520pt;}
.ls47{letter-spacing:-0.281600pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.235520pt;}
.lsa{letter-spacing:-0.224640pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls36{letter-spacing:-0.128000pt;}
.ls45{letter-spacing:-0.117760pt;}
.ls37{letter-spacing:-0.112640pt;}
.ls3a{letter-spacing:-0.106240pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls28{letter-spacing:-0.074880pt;}
.lsb{letter-spacing:-0.069120pt;}
.ls1a{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.053120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.048000pt;}
.ls25{letter-spacing:0.053120pt;}
.ls49{letter-spacing:0.056320pt;}
.ls11{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.069120pt;}
.ls1b{letter-spacing:0.106240pt;}
.ls29{letter-spacing:0.112640pt;}
.ls0{letter-spacing:0.117760pt;}
.lsd{letter-spacing:0.128000pt;}
.ls3d{letter-spacing:0.144000pt;}
.ls6{letter-spacing:0.159360pt;}
.ls19{letter-spacing:0.168960pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.212480pt;}
.ls27{letter-spacing:0.249664pt;}
.ls4e{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.299520pt;}
.ls16{letter-spacing:0.318720pt;}
.ls12{letter-spacing:0.320000pt;}
.ls41{letter-spacing:0.336000pt;}
.ls33{letter-spacing:0.343040pt;}
.ls10{letter-spacing:0.448000pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:0.704000pt;}
.ls50{letter-spacing:0.768000pt;}
.ls40{letter-spacing:0.796800pt;}
.ls15{letter-spacing:1.280000pt;}
.ls20{letter-spacing:1.434240pt;}
.ls3e{letter-spacing:1.440000pt;}
.ls2{letter-spacing:1.920000pt;}
.ls1f{letter-spacing:2.560000pt;}
.ls24{letter-spacing:2.709120pt;}
.ls2e{letter-spacing:3.200000pt;}
.ls35{letter-spacing:3.206400pt;}
.ls3c{letter-spacing:3.360000pt;}
.ls34{letter-spacing:3.840000pt;}
.ls4f{letter-spacing:4.480000pt;}
.ls30{letter-spacing:4.621440pt;}
.ls39{letter-spacing:5.120000pt;}
.ls23{letter-spacing:5.760000pt;}
.ls21{letter-spacing:5.896320pt;}
.ls13{letter-spacing:6.400000pt;}
.ls31{letter-spacing:6.533760pt;}
.ls32{letter-spacing:6.586880pt;}
.ls2f{letter-spacing:7.040000pt;}
.ls26{letter-spacing:8.326400pt;}
.ls3b{letter-spacing:9.120000pt;}
.ls4c{letter-spacing:10.880000pt;}
.ls14{letter-spacing:11.520000pt;}
.ls4d{letter-spacing:16.000000pt;}
.ls48{letter-spacing:18.560000pt;}
.ls43{letter-spacing:30.970880pt;}
.ls4b{letter-spacing:35.200000pt;}
.ls2d{letter-spacing:57.088000pt;}
.ls38{letter-spacing:173.440000pt;}
.ls3f{letter-spacing:752.000000pt;}
.ws3{word-spacing:-23.639040pt;}
.ws4{word-spacing:-23.569920pt;}
.ws20{word-spacing:-20.517120pt;}
.ws36{word-spacing:-20.142720pt;}
.ws68{word-spacing:-16.640000pt;}
.wsaa{word-spacing:-16.250880pt;}
.wsc1{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws67{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws22{word-spacing:-15.936000pt;}
.wsbb{word-spacing:-15.872000pt;}
.ws21{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.wsb0{word-spacing:-13.798400pt;}
.ws23{word-spacing:-13.598720pt;}
.wsa9{word-spacing:-13.573120pt;}
.ws4d{word-spacing:-13.492480pt;}
.ws6f{word-spacing:-13.386240pt;}
.wsac{word-spacing:-13.333120pt;}
.ws37{word-spacing:-13.280000pt;}
.ws85{word-spacing:-13.226880pt;}
.ws86{word-spacing:-13.173760pt;}
.ws70{word-spacing:-12.961280pt;}
.ws1{word-spacing:-12.005120pt;}
.ws8f{word-spacing:-11.808000pt;}
.ws7b{word-spacing:-11.063040pt;}
.ws0{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws4c{word-spacing:-8.640000pt;}
.wsab{word-spacing:-8.000000pt;}
.ws17{word-spacing:-3.840000pt;}
.ws3b{word-spacing:-3.584000pt;}
.ws33{word-spacing:-3.346560pt;}
.wsc7{word-spacing:-3.328000pt;}
.ws84{word-spacing:-3.322880pt;}
.ws1e{word-spacing:-3.200000pt;}
.ws7a{word-spacing:-3.134080pt;}
.ws31{word-spacing:-2.944000pt;}
.ws8d{word-spacing:-2.709120pt;}
.wsb2{word-spacing:-2.703360pt;}
.ws1c{word-spacing:-2.688000pt;}
.ws50{word-spacing:-2.560000pt;}
.ws8a{word-spacing:-2.496640pt;}
.ws83{word-spacing:-2.421760pt;}
.ws1b{word-spacing:-2.304000pt;}
.ws8b{word-spacing:-2.284160pt;}
.ws2b{word-spacing:-2.083840pt;}
.ws55{word-spacing:-2.071680pt;}
.wsba{word-spacing:-2.048000pt;}
.ws54{word-spacing:-1.965440pt;}
.ws1d{word-spacing:-1.920000pt;}
.ws56{word-spacing:-1.859200pt;}
.ws6d{word-spacing:-1.664000pt;}
.ws9c{word-spacing:-1.584000pt;}
.ws73{word-spacing:-1.464320pt;}
.ws77{word-spacing:-1.434240pt;}
.ws41{word-spacing:-1.408000pt;}
.ws28{word-spacing:-1.280000pt;}
.ws60{word-spacing:-1.221760pt;}
.ws27{word-spacing:-1.024000pt;}
.ws34{word-spacing:-0.796800pt;}
.wsa8{word-spacing:-0.788480pt;}
.ws30{word-spacing:-0.768000pt;}
.wsb6{word-spacing:-0.732160pt;}
.ws5f{word-spacing:-0.704000pt;}
.ws11{word-spacing:-0.640000pt;}
.ws62{word-spacing:-0.584320pt;}
.ws19{word-spacing:-0.448000pt;}
.ws79{word-spacing:-0.424960pt;}
.ws1a{word-spacing:-0.384000pt;}
.wsc{word-spacing:-0.374400pt;}
.ws6c{word-spacing:-0.318720pt;}
.wse{word-spacing:-0.256000pt;}
.ws57{word-spacing:-0.224640pt;}
.ws6b{word-spacing:-0.212480pt;}
.ws90{word-spacing:-0.192000pt;}
.ws5b{word-spacing:-0.168960pt;}
.ws32{word-spacing:-0.159360pt;}
.ws52{word-spacing:-0.128000pt;}
.ws5a{word-spacing:-0.112640pt;}
.ws8c{word-spacing:-0.106240pt;}
.ws1f{word-spacing:-0.064000pt;}
.ws4f{word-spacing:-0.053120pt;}
.ws8{word-spacing:0.000000pt;}
.ws35{word-spacing:0.053120pt;}
.wsb3{word-spacing:0.064000pt;}
.ws7d{word-spacing:0.074880pt;}
.ws53{word-spacing:0.106240pt;}
.ws80{word-spacing:0.128000pt;}
.wsd{word-spacing:0.138240pt;}
.wsb{word-spacing:0.144000pt;}
.ws4e{word-spacing:0.159360pt;}
.ws2e{word-spacing:0.192000pt;}
.ws8e{word-spacing:0.212480pt;}
.ws9{word-spacing:0.235520pt;}
.wsa{word-spacing:0.240000pt;}
.ws10{word-spacing:0.256000pt;}
.ws88{word-spacing:0.265600pt;}
.ws92{word-spacing:0.336000pt;}
.ws38{word-spacing:0.374400pt;}
.wsaf{word-spacing:0.412160pt;}
.ws58{word-spacing:0.450560pt;}
.wsf{word-spacing:0.478080pt;}
.ws82{word-spacing:0.506880pt;}
.wsb7{word-spacing:0.512000pt;}
.wsad{word-spacing:0.576000pt;}
.wsb8{word-spacing:0.599040pt;}
.ws18{word-spacing:0.640000pt;}
.ws78{word-spacing:0.690560pt;}
.ws66{word-spacing:0.849920pt;}
.ws3d{word-spacing:0.896000pt;}
.ws45{word-spacing:1.115520pt;}
.ws2c{word-spacing:1.126400pt;}
.ws81{word-spacing:1.152000pt;}
.ws15{word-spacing:1.280000pt;}
.ws44{word-spacing:1.328000pt;}
.ws24{word-spacing:1.536000pt;}
.ws93{word-spacing:1.632000pt;}
.wsa1{word-spacing:1.728000pt;}
.ws87{word-spacing:1.745920pt;}
.ws61{word-spacing:1.752960pt;}
.ws14{word-spacing:1.792000pt;}
.ws13{word-spacing:1.920000pt;}
.ws7e{word-spacing:1.965440pt;}
.ws25{word-spacing:2.176000pt;}
.ws9d{word-spacing:2.256000pt;}
.wsa5{word-spacing:2.365440pt;}
.ws46{word-spacing:2.390400pt;}
.ws72{word-spacing:2.421760pt;}
.ws3e{word-spacing:2.432000pt;}
.ws3f{word-spacing:2.560000pt;}
.ws47{word-spacing:2.602880pt;}
.ws51{word-spacing:2.816000pt;}
.ws76{word-spacing:3.027840pt;}
.wsb1{word-spacing:3.041280pt;}
.ws69{word-spacing:3.072000pt;}
.ws12{word-spacing:3.200000pt;}
.ws48{word-spacing:3.240320pt;}
.ws2f{word-spacing:3.456000pt;}
.ws96{word-spacing:3.552000pt;}
.wsa3{word-spacing:3.665280pt;}
.wsbc{word-spacing:3.712000pt;}
.ws6a{word-spacing:3.840000pt;}
.ws7f{word-spacing:3.877760pt;}
.ws40{word-spacing:4.096000pt;}
.ws9f{word-spacing:4.176000pt;}
.ws65{word-spacing:4.302720pt;}
.wsa2{word-spacing:4.320000pt;}
.ws3a{word-spacing:4.480000pt;}
.ws75{word-spacing:4.515200pt;}
.ws74{word-spacing:4.674560pt;}
.ws39{word-spacing:4.736000pt;}
.wsb5{word-spacing:4.956160pt;}
.ws89{word-spacing:4.992000pt;}
.wsae{word-spacing:5.012480pt;}
.ws26{word-spacing:5.120000pt;}
.wsb9{word-spacing:5.312000pt;}
.ws71{word-spacing:5.376000pt;}
.ws94{word-spacing:5.568000pt;}
.wsa7{word-spacing:5.575680pt;}
.ws4a{word-spacing:5.577600pt;}
.ws5c{word-spacing:5.632000pt;}
.ws49{word-spacing:5.736960pt;}
.ws3c{word-spacing:5.760000pt;}
.ws4b{word-spacing:5.790080pt;}
.ws6e{word-spacing:5.952000pt;}
.ws16{word-spacing:6.016000pt;}
.ws91{word-spacing:6.096000pt;}
.ws59{word-spacing:6.251520pt;}
.ws64{word-spacing:6.268160pt;}
.wsa6{word-spacing:6.307840pt;}
.ws2a{word-spacing:6.400000pt;}
.ws63{word-spacing:6.480640pt;}
.ws29{word-spacing:6.656000pt;}
.ws7c{word-spacing:6.912000pt;}
.ws42{word-spacing:7.040000pt;}
.wsa4{word-spacing:7.168000pt;}
.ws43{word-spacing:7.296000pt;}
.wsa0{word-spacing:7.392000pt;}
.ws5e{word-spacing:7.680000pt;}
.ws5d{word-spacing:7.936000pt;}
.ws95{word-spacing:9.312000pt;}
.ws9b{word-spacing:9.936000pt;}
.ws2d{word-spacing:10.700800pt;}
.wsc3{word-spacing:11.136000pt;}
.ws97{word-spacing:11.856000pt;}
.wsc4{word-spacing:16.000000pt;}
.ws9a{word-spacing:16.464000pt;}
.wsb4{word-spacing:18.816000pt;}
.wsc5{word-spacing:24.320000pt;}
.wsc6{word-spacing:24.576000pt;}
.ws99{word-spacing:28.512000pt;}
.wsc0{word-spacing:32.000000pt;}
.wsc2{word-spacing:32.640000pt;}
.wsbd{word-spacing:35.200000pt;}
.wsbe{word-spacing:35.456000pt;}
.ws9e{word-spacing:43.776000pt;}
.wsbf{word-spacing:131.200000pt;}
.ws98{word-spacing:184.128000pt;}
._b{margin-left:-12.318080pt;}
._4{margin-left:-4.288000pt;}
._6{margin-left:-3.072000pt;}
._a{margin-left:-1.858368pt;}
._2{margin-left:-0.945600pt;}
._3{width:1.221760pt;}
._7{width:2.496000pt;}
._5{width:4.070080pt;}
._8{width:5.524800pt;}
._9{width:7.063680pt;}
._f{width:24.128000pt;}
._d{width:32.128000pt;}
._c{width:36.276480pt;}
._e{width:45.056000pt;}
._1{width:83.856000pt;}
._0{width:650.256000pt;}
.fsb{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs9{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs7{font-size:72.320000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.yf1{bottom:-21.440000pt;}
.y0{bottom:0.000000pt;}
.yf0{bottom:4.159867pt;}
.y17a{bottom:12.640000pt;}
.y9{bottom:14.240000pt;}
.y165{bottom:17.920000pt;}
.y166{bottom:18.080000pt;}
.yd2{bottom:19.520000pt;}
.y168{bottom:36.160000pt;}
.y193{bottom:44.320000pt;}
.y174{bottom:53.600000pt;}
.y16b{bottom:53.760000pt;}
.y7{bottom:71.040000pt;}
.y17c{bottom:76.160000pt;}
.y183{bottom:84.160000pt;}
.y192{bottom:92.000000pt;}
.y6{bottom:100.160000pt;}
.y8{bottom:101.120000pt;}
.y5{bottom:129.280000pt;}
.yba{bottom:146.997280pt;}
.y7c{bottom:147.002240pt;}
.y13b{bottom:147.025120pt;}
.y56{bottom:147.027680pt;}
.y11a{bottom:147.030080pt;}
.y95{bottom:147.032640pt;}
.y1f9{bottom:148.160000pt;}
.y2d{bottom:153.760000pt;}
.y1da{bottom:157.452000pt;}
.yb9{bottom:162.362240pt;}
.y7b{bottom:162.367200pt;}
.y13a{bottom:162.390080pt;}
.y55{bottom:162.392640pt;}
.y119{bottom:162.395040pt;}
.y94{bottom:162.397600pt;}
.y249{bottom:162.560000pt;}
.y2a6{bottom:162.720000pt;}
.y163{bottom:164.960000pt;}
.y217{bottom:168.160000pt;}
.y1f8{bottom:169.280000pt;}
.y2c{bottom:172.160000pt;}
.y1d9{bottom:175.048000pt;}
.y296{bottom:175.840000pt;}
.yb8{bottom:177.727200pt;}
.y7a{bottom:177.732160pt;}
.y139{bottom:177.755040pt;}
.y54{bottom:177.757600pt;}
.yee{bottom:181.280000pt;}
.y118{bottom:182.400000pt;}
.y23a{bottom:182.560000pt;}
.y248{bottom:183.680000pt;}
.y2a5{bottom:183.840000pt;}
.y93{bottom:184.480000pt;}
.y14e{bottom:184.640000pt;}
.y162{bottom:186.080000pt;}
.y279{bottom:188.640000pt;}
.y216{bottom:189.440000pt;}
.y2b{bottom:190.560000pt;}
.y1d8{bottom:192.644000pt;}
.yb7{bottom:193.092160pt;}
.y79{bottom:193.097120pt;}
.y117{bottom:193.760000pt;}
.y18a{bottom:195.200000pt;}
.y295{bottom:196.960000pt;}
.y138{bottom:197.760000pt;}
.y1f7{bottom:198.560000pt;}
.y53{bottom:199.840000pt;}
.y92{bottom:200.800000pt;}
.yed{bottom:202.400000pt;}
.y239{bottom:203.680000pt;}
.y1a5{bottom:204.480000pt;}
.y247{bottom:204.800000pt;}
.y161{bottom:207.200000pt;}
.yb6{bottom:208.457120pt;}
.y78{bottom:208.462080pt;}
.y137{bottom:208.467040pt;}
.y278{bottom:209.920000pt;}
.y215{bottom:210.560000pt;}
.y116{bottom:212.160000pt;}
.y2a4{bottom:212.960000pt;}
.y14d{bottom:213.272320pt;}
.y1d7{bottom:214.240000pt;}
.y2a{bottom:219.680000pt;}
.y238{bottom:222.080000pt;}
.y52{bottom:222.880000pt;}
.yec{bottom:223.680000pt;}
.yb5{bottom:223.822080pt;}
.y77{bottom:223.827040pt;}
.y136{bottom:223.832000pt;}
.y246{bottom:226.080000pt;}
.y294{bottom:226.240000pt;}
.y160{bottom:228.320000pt;}
.y115{bottom:230.560000pt;}
.y14c{bottom:231.674880pt;}
.y2a3{bottom:234.240000pt;}
.y1d6{bottom:237.120000pt;}
.y29{bottom:238.080000pt;}
.yb4{bottom:239.027680pt;}
.y76{bottom:239.032640pt;}
.y135{bottom:239.037600pt;}
.y277{bottom:239.040000pt;}
.y214{bottom:239.680000pt;}
.y237{bottom:240.501760pt;}
.y1f6{bottom:240.800000pt;}
.y51{bottom:241.280000pt;}
.yeb{bottom:244.800000pt;}
.y262{bottom:245.280000pt;}
.y245{bottom:247.200000pt;}
.y293{bottom:247.360000pt;}
.y15f{bottom:249.600000pt;}
.y14b{bottom:250.077440pt;}
.y114{bottom:252.960000pt;}
.yb3{bottom:254.392640pt;}
.y75{bottom:254.397600pt;}
.y2a2{bottom:255.360000pt;}
.y1d5{bottom:255.520000pt;}
.y236{bottom:258.735360pt;}
.y213{bottom:260.800000pt;}
.y134{bottom:261.120000pt;}
.y1f5{bottom:261.920000pt;}
.yd0{bottom:262.080000pt;}
.y113{bottom:263.662080pt;}
.yea{bottom:265.920000pt;}
.y28{bottom:267.200000pt;}
.y276{bottom:268.160000pt;}
.y14a{bottom:268.480000pt;}
.yb2{bottom:269.757600pt;}
.y15e{bottom:270.720000pt;}
.y50{bottom:274.400000pt;}
.y235{bottom:274.730240pt;}
.y244{bottom:276.320000pt;}
.y74{bottom:276.480000pt;}
.y261{bottom:276.960000pt;}
.y112{bottom:279.027040pt;}
.y91{bottom:279.040000pt;}
.ycf{bottom:280.480000pt;}
.y212{bottom:282.080000pt;}
.y1f4{bottom:283.200000pt;}
.y133{bottom:284.160000pt;}
.y2a1{bottom:284.480000pt;}
.y27{bottom:288.480000pt;}
.y275{bottom:289.280000pt;}
.y234{bottom:290.725120pt;}
.yb1{bottom:291.840000pt;}
.y1bf{bottom:292.000000pt;}
.y111{bottom:294.232640pt;}
.ye9{bottom:295.040000pt;}
.y149{bottom:295.360000pt;}
.y4f{bottom:295.680000pt;}
.y243{bottom:297.440000pt;}
.y292{bottom:297.600000pt;}
.y260{bottom:298.080000pt;}
.yce{bottom:298.880000pt;}
.y73{bottom:299.520000pt;}
.y90{bottom:300.160000pt;}
.y132{bottom:302.560000pt;}
.y211{bottom:303.200000pt;}
.y1f3{bottom:304.320000pt;}
.y2a0{bottom:305.600000pt;}
.y233{bottom:306.720000pt;}
.y110{bottom:309.597600pt;}
.y26{bottom:309.600000pt;}
.y1d4{bottom:309.920000pt;}
.y15d{bottom:312.960000pt;}
.y1be{bottom:313.280000pt;}
.yb0{bottom:314.880000pt;}
.ye8{bottom:316.320000pt;}
.y4e{bottom:316.800000pt;}
.ycd{bottom:317.280000pt;}
.y72{bottom:317.920000pt;}
.y274{bottom:318.560000pt;}
.y242{bottom:318.720000pt;}
.y291{bottom:318.880000pt;}
.y25f{bottom:319.200000pt;}
.y8f{bottom:321.280000pt;}
.y232{bottom:322.560000pt;}
.y210{bottom:324.320000pt;}
.y148{bottom:324.480000pt;}
.y1f2{bottom:325.440000pt;}
.y1a4{bottom:325.600000pt;}
.y29f{bottom:326.880000pt;}
.y25{bottom:330.720000pt;}
.y1d3{bottom:331.040000pt;}
.y10f{bottom:331.680000pt;}
.y2b9{bottom:332.640000pt;}
.yaf{bottom:333.280000pt;}
.y1bd{bottom:334.400000pt;}
.ycc{bottom:335.680000pt;}
.ye7{bottom:337.440000pt;}
.y4d{bottom:337.920000pt;}
.y273{bottom:339.680000pt;}
.y241{bottom:339.840000pt;}
.y25e{bottom:340.480000pt;}
.y15c{bottom:342.240000pt;}
.y8e{bottom:342.400000pt;}
.y131{bottom:342.560000pt;}
.y20f{bottom:342.720000pt;}
.y147{bottom:345.600000pt;}
.y290{bottom:348.000000pt;}
.y231{bottom:349.600000pt;}
.y2b8{bottom:351.040000pt;}
.y1f1{bottom:351.360000pt;}
.y24{bottom:351.840000pt;}
.y1d2{bottom:352.320000pt;}
.ycb{bottom:354.080000pt;}
.y10e{bottom:354.720000pt;}
.y1bc{bottom:355.520000pt;}
.y29e{bottom:356.000000pt;}
.y1a3{bottom:357.280000pt;}
.ye6{bottom:358.560000pt;}
.y4c{bottom:359.040000pt;}
.y240{bottom:360.960000pt;}
.y20e{bottom:361.120000pt;}
.y25d{bottom:361.600000pt;}
.y15b{bottom:363.360000pt;}
.y146{bottom:366.880000pt;}
.y272{bottom:368.800000pt;}
.y28f{bottom:369.120000pt;}
.y2b7{bottom:369.440000pt;}
.y230{bottom:370.720000pt;}
.y8d{bottom:371.680000pt;}
.yca{bottom:372.480000pt;}
.y10d{bottom:373.120000pt;}
.y1d1{bottom:373.440000pt;}
.y1bb{bottom:376.640000pt;}
.yae{bottom:376.800000pt;}
.y29d{bottom:377.120000pt;}
.y1a2{bottom:378.400000pt;}
.y20d{bottom:379.375360pt;}
.ye5{bottom:379.680000pt;}
.y4b{bottom:380.320000pt;}
.y23{bottom:381.120000pt;}
.y23f{bottom:382.080000pt;}
.y25c{bottom:382.720000pt;}
.y15a{bottom:384.480000pt;}
.y2b6{bottom:387.840000pt;}
.y145{bottom:388.000000pt;}
.y271{bottom:389.920000pt;}
.y1f0{bottom:390.080000pt;}
.yc9{bottom:390.880000pt;}
.y22f{bottom:391.840000pt;}
.y8c{bottom:392.800000pt;}
.y130{bottom:392.960000pt;}
.y1d0{bottom:394.560000pt;}
.y20c{bottom:395.370240pt;}
.y1ba{bottom:397.920000pt;}
.y28e{bottom:398.240000pt;}
.y1a1{bottom:399.520000pt;}
.ye4{bottom:400.960000pt;}
.y4a{bottom:401.440000pt;}
.y159{bottom:402.225120pt;}
.y22{bottom:402.240000pt;}
.y25b{bottom:403.840000pt;}
.yad{bottom:405.920000pt;}
.y29c{bottom:406.240000pt;}
.y10c{bottom:408.960000pt;}
.y144{bottom:409.120000pt;}
.yc8{bottom:409.280000pt;}
.y270{bottom:411.200000pt;}
.y1ef{bottom:411.360000pt;}
.y20b{bottom:411.365120pt;}
.y22e{bottom:412.960000pt;}
.y8b{bottom:413.920000pt;}
.y12f{bottom:414.080000pt;}
.y158{bottom:417.590080pt;}
.y1b9{bottom:419.040000pt;}
.y28d{bottom:419.360000pt;}
.y1cf{bottom:420.480000pt;}
.y1a0{bottom:420.800000pt;}
.ye3{bottom:422.080000pt;}
.y49{bottom:422.560000pt;}
.y2b5{bottom:424.640000pt;}
.y25a{bottom:424.960000pt;}
.yac{bottom:427.040000pt;}
.y10b{bottom:427.360000pt;}
.yc7{bottom:427.680000pt;}
.y71{bottom:429.920000pt;}
.y143{bottom:430.240000pt;}
.y21{bottom:431.360000pt;}
.y26f{bottom:432.320000pt;}
.y1ee{bottom:432.480000pt;}
.y157{bottom:432.955040pt;}
.y22d{bottom:434.240000pt;}
.y8a{bottom:435.040000pt;}
.y19f{bottom:441.920000pt;}
.ye2{bottom:443.200000pt;}
.y48{bottom:443.680000pt;}
.y10a{bottom:445.776640pt;}
.yc6{bottom:446.080000pt;}
.y259{bottom:446.240000pt;}
.yab{bottom:448.160000pt;}
.y156{bottom:448.320000pt;}
.y28c{bottom:448.640000pt;}
.y20{bottom:449.760000pt;}
.y26e{bottom:453.440000pt;}
.y1ed{bottom:453.600000pt;}
.y2b4{bottom:453.760000pt;}
.y20a{bottom:454.240000pt;}
.y22c{bottom:455.360000pt;}
.y89{bottom:456.160000pt;}
.y70{bottom:459.200000pt;}
.y142{bottom:459.360000pt;}
.y177{bottom:462.080000pt;}
.y109{bottom:464.010240pt;}
.ye1{bottom:464.320000pt;}
.yc5{bottom:464.480000pt;}
.y47{bottom:464.960000pt;}
.y258{bottom:467.360000pt;}
.y1b8{bottom:469.280000pt;}
.y28b{bottom:469.760000pt;}
.y19e{bottom:471.040000pt;}
.y1ec{bottom:474.720000pt;}
.y2b3{bottom:474.880000pt;}
.y209{bottom:475.360000pt;}
.y22b{bottom:476.480000pt;}
.y88{bottom:477.440000pt;}
.y29b{bottom:477.760000pt;}
.y1f{bottom:478.880000pt;}
.y108{bottom:480.005120pt;}
.y6f{bottom:480.320000pt;}
.y178{bottom:480.480000pt;}
.y141{bottom:480.640000pt;}
.y26d{bottom:482.560000pt;}
.yc4{bottom:482.880000pt;}
.ye0{bottom:485.440000pt;}
.y12e{bottom:485.600000pt;}
.y46{bottom:486.080000pt;}
.y19d{bottom:489.440000pt;}
.y1b7{bottom:490.560000pt;}
.y28a{bottom:490.880000pt;}
.y107{bottom:496.000000pt;}
.y257{bottom:496.480000pt;}
.y22a{bottom:497.600000pt;}
.yaa{bottom:498.560000pt;}
.y29a{bottom:498.880000pt;}
.yc3{bottom:501.280000pt;}
.y6e{bottom:501.440000pt;}
.y1ce{bottom:501.600000pt;}
.y140{bottom:501.760000pt;}
.y26c{bottom:503.680000pt;}
.y1eb{bottom:504.000000pt;}
.y208{bottom:504.480000pt;}
.y87{bottom:506.560000pt;}
.y12d{bottom:506.720000pt;}
.y45{bottom:507.200000pt;}
.y1e{bottom:508.160000pt;}
.y173{bottom:510.720000pt;}
.y1b6{bottom:511.680000pt;}
.ydf{bottom:514.720000pt;}
.yd1{bottom:516.480000pt;}
.y2b2{bottom:517.280000pt;}
.y256{bottom:517.600000pt;}
.y229{bottom:518.720000pt;}
.ya9{bottom:519.680000pt;}
.y289{bottom:520.000000pt;}
.y189{bottom:520.320000pt;}
.y6d{bottom:522.560000pt;}
.y1cd{bottom:522.720000pt;}
.y106{bottom:522.880000pt;}
.y26b{bottom:524.960000pt;}
.y1ea{bottom:525.120000pt;}
.y44{bottom:525.600000pt;}
.y86{bottom:527.680000pt;}
.y12c{bottom:527.840000pt;}
.y176{bottom:529.120000pt;}
.y1d{bottom:529.280000pt;}
.y1b5{bottom:532.800000pt;}
.y19c{bottom:532.960000pt;}
.yde{bottom:535.840000pt;}
.yc2{bottom:538.080000pt;}
.y255{bottom:538.880000pt;}
.y228{bottom:540.000000pt;}
.ya8{bottom:540.800000pt;}
.y288{bottom:541.280000pt;}
.y6c{bottom:543.680000pt;}
.y1cc{bottom:543.840000pt;}
.y43{bottom:544.000000pt;}
.y1e9{bottom:546.240000pt;}
.y2b1{bottom:546.400000pt;}
.y175{bottom:546.720000pt;}
.y207{bottom:546.880000pt;}
.y85{bottom:548.800000pt;}
.y12b{bottom:548.960000pt;}
.y1c{bottom:550.400000pt;}
.yc1{bottom:552.960000pt;}
.y26a{bottom:554.080000pt;}
.y191{bottom:556.480000pt;}
.ydd{bottom:556.960000pt;}
.y254{bottom:560.000000pt;}
.y227{bottom:561.120000pt;}
.y1b4{bottom:561.920000pt;}
.ya7{bottom:562.080000pt;}
.y287{bottom:562.400000pt;}
.y42{bottom:562.411520pt;}
.y19b{bottom:564.800000pt;}
.y6b{bottom:564.960000pt;}
.y1cb{bottom:565.120000pt;}
.y13f{bottom:565.280000pt;}
.y1e8{bottom:567.360000pt;}
.y2b0{bottom:567.520000pt;}
.y206{bottom:568.000000pt;}
.y299{bottom:570.400000pt;}
.y1b{bottom:571.520000pt;}
.y190{bottom:572.320000pt;}
.y105{bottom:573.280000pt;}
.y269{bottom:575.200000pt;}
.y170{bottom:576.800000pt;}
.y84{bottom:578.080000pt;}
.y12a{bottom:578.240000pt;}
.y19a{bottom:580.640000pt;}
.y41{bottom:580.645120pt;}
.y253{bottom:581.120000pt;}
.ya6{bottom:583.200000pt;}
.y1ca{bottom:583.520000pt;}
.y6a{bottom:586.080000pt;}
.y13e{bottom:586.400000pt;}
.y198{bottom:588.480000pt;}
.y1e7{bottom:588.640000pt;}
.y226{bottom:590.240000pt;}
.y286{bottom:591.520000pt;}
.y1a{bottom:592.800000pt;}
.y104{bottom:594.400000pt;}
.y172{bottom:595.360000pt;}
.y18f{bottom:596.160000pt;}
.y199{bottom:596.480000pt;}
.y40{bottom:596.640000pt;}
.y205{bottom:597.120000pt;}
.y83{bottom:599.200000pt;}
.ydc{bottom:599.360000pt;}
.y1c9{bottom:601.931520pt;}
.y252{bottom:602.240000pt;}
.ya5{bottom:604.320000pt;}
.y69{bottom:607.200000pt;}
.y23e{bottom:607.520000pt;}
.y1e6{bottom:609.760000pt;}
.y225{bottom:611.360000pt;}
.y285{bottom:612.640000pt;}
.y171{bottom:612.960000pt;}
.y19{bottom:613.920000pt;}
.y103{bottom:615.520000pt;}
.y2af{bottom:617.920000pt;}
.y204{bottom:618.240000pt;}
.y18e{bottom:620.000000pt;}
.y1c8{bottom:620.010240pt;}
.y82{bottom:620.320000pt;}
.ydb{bottom:620.480000pt;}
.y3f{bottom:623.520000pt;}
.ya4{bottom:625.440000pt;}
.y268{bottom:625.600000pt;}
.y224{bottom:632.640000pt;}
.y284{bottom:633.920000pt;}
.y1c7{bottom:636.005120pt;}
.y197{bottom:636.160000pt;}
.y68{bottom:636.320000pt;}
.y102{bottom:636.640000pt;}
.y1e5{bottom:638.880000pt;}
.y2ae{bottom:639.040000pt;}
.y203{bottom:639.520000pt;}
.y81{bottom:641.440000pt;}
.y129{bottom:641.600000pt;}
.y298{bottom:641.920000pt;}
.y18{bottom:643.040000pt;}
.y18d{bottom:644.000000pt;}
.y3e{bottom:644.640000pt;}
.y1b3{bottom:646.560000pt;}
.y267{bottom:646.720000pt;}
.yda{bottom:649.600000pt;}
.y194{bottom:652.000000pt;}
.y223{bottom:653.760000pt;}
.ya3{bottom:654.720000pt;}
.y67{bottom:657.600000pt;}
.y101{bottom:657.920000pt;}
.y1e4{bottom:660.000000pt;}
.y202{bottom:660.640000pt;}
.y16f{bottom:661.600000pt;}
.y80{bottom:662.720000pt;}
.y128{bottom:662.880000pt;}
.y283{bottom:663.040000pt;}
.y17{bottom:664.160000pt;}
.y18c{bottom:667.840000pt;}
.y196{bottom:668.000000pt;}
.y2ad{bottom:668.160000pt;}
.yd9{bottom:670.720000pt;}
.y251{bottom:673.760000pt;}
.y3d{bottom:673.920000pt;}
.y222{bottom:674.880000pt;}
.ya2{bottom:675.840000pt;}
.y66{bottom:678.720000pt;}
.y1c6{bottom:678.880000pt;}
.y100{bottom:679.040000pt;}
.y16e{bottom:679.200000pt;}
.y7f{bottom:681.120000pt;}
.y201{bottom:681.760000pt;}
.y195{bottom:683.840000pt;}
.y127{bottom:684.000000pt;}
.y282{bottom:684.160000pt;}
.y16{bottom:685.440000pt;}
.y1b2{bottom:688.960000pt;}
.y18b{bottom:691.680000pt;}
.yd8{bottom:692.000000pt;}
.y250{bottom:694.880000pt;}
.y3c{bottom:695.040000pt;}
.y221{bottom:696.000000pt;}
.ya1{bottom:696.960000pt;}
.y2ac{bottom:697.280000pt;}
.y7e{bottom:698.880000pt;}
.y65{bottom:699.840000pt;}
.yff{bottom:700.160000pt;}
.y1e3{bottom:702.400000pt;}
.y200{bottom:702.880000pt;}
.y126{bottom:705.120000pt;}
.y281{bottom:705.280000pt;}
.y16a{bottom:709.280000pt;}
.y1b1{bottom:710.080000pt;}
.y7d{bottom:711.200000pt;}
.yd7{bottom:713.120000pt;}
.y297{bottom:713.280000pt;}
.y15{bottom:714.560000pt;}
.y3b{bottom:716.160000pt;}
.y220{bottom:717.280000pt;}
.ya0{bottom:718.080000pt;}
.y266{bottom:718.240000pt;}
.y2ab{bottom:718.560000pt;}
.y64{bottom:720.960000pt;}
.yfe{bottom:721.280000pt;}
.y1e2{bottom:723.520000pt;}
.y1ff{bottom:724.160000pt;}
.y125{bottom:726.240000pt;}
.y182{bottom:726.720000pt;}
.y16d{bottom:727.840000pt;}
.y14{bottom:732.960000pt;}
.yd6{bottom:734.240000pt;}
.y280{bottom:734.560000pt;}
.y3a{bottom:737.280000pt;}
.y9f{bottom:739.200000pt;}
.y188{bottom:739.360000pt;}
.y1c5{bottom:739.680000pt;}
.y63{bottom:742.240000pt;}
.y23d{bottom:742.560000pt;}
.y1fe{bottom:745.280000pt;}
.y16c{bottom:745.440000pt;}
.y21f{bottom:745.751040pt;}
.y186{bottom:747.360000pt;}
.y1e1{bottom:749.440000pt;}
.yfd{bottom:750.560000pt;}
.yd5{bottom:752.640000pt;}
.y124{bottom:755.360000pt;}
.y27f{bottom:755.680000pt;}
.y9e{bottom:757.600000pt;}
.y1c4{bottom:758.091520pt;}
.y39{bottom:758.400000pt;}
.y1b0{bottom:760.320000pt;}
.y13{bottom:762.080000pt;}
.y185{bottom:763.200000pt;}
.y62{bottom:763.360000pt;}
.y23c{bottom:763.680000pt;}
.y21e{bottom:764.153600pt;}
.yef{bottom:765.600000pt;}
.y24f{bottom:766.400000pt;}
.y265{bottom:768.480000pt;}
.y2aa{bottom:768.800000pt;}
.yd4{bottom:771.040000pt;}
.y187{bottom:771.200000pt;}
.yfc{bottom:771.680000pt;}
.y1fd{bottom:774.400000pt;}
.y167{bottom:775.520000pt;}
.y9d{bottom:776.000000pt;}
.y1c3{bottom:776.325120pt;}
.y123{bottom:776.640000pt;}
.y27e{bottom:776.800000pt;}
.y1af{bottom:781.600000pt;}
.y21d{bottom:782.556160pt;}
.y61{bottom:784.480000pt;}
.y23b{bottom:784.800000pt;}
.y1e0{bottom:785.440000pt;}
.yd3{bottom:785.920000pt;}
.y184{bottom:787.040000pt;}
.y24e{bottom:787.520000pt;}
.y38{bottom:787.680000pt;}
.y12{bottom:791.200000pt;}
.y1c2{bottom:792.320000pt;}
.yfb{bottom:792.800000pt;}
.y169{bottom:794.080000pt;}
.y9c{bottom:794.255360pt;}
.y1fc{bottom:795.520000pt;}
.y264{bottom:797.600000pt;}
.y122{bottom:797.760000pt;}
.y2a9{bottom:797.920000pt;}
.y1ae{bottom:800.000000pt;}
.y21c{bottom:800.958720pt;}
.y1df{bottom:803.840000pt;}
.y60{bottom:805.600000pt;}
.y27d{bottom:805.920000pt;}
.y1c1{bottom:808.160000pt;}
.y37{bottom:808.800000pt;}
.y9b{bottom:810.250240pt;}
.y11{bottom:812.320000pt;}
.yfa{bottom:813.920000pt;}
.y1fb{bottom:816.800000pt;}
.y1ad{bottom:818.426880pt;}
.y121{bottom:818.880000pt;}
.y2a8{bottom:819.200000pt;}
.y21b{bottom:819.361280pt;}
.y17b{bottom:822.080000pt;}
.y1de{bottom:822.240000pt;}
.y164{bottom:825.440000pt;}
.y9a{bottom:826.245120pt;}
.y5f{bottom:826.880000pt;}
.y27c{bottom:827.200000pt;}
.yc0{bottom:828.480000pt;}
.y36{bottom:829.920000pt;}
.y181{bottom:834.720000pt;}
.yf9{bottom:835.200000pt;}
.y1ac{bottom:836.660480pt;}
.y21a{bottom:837.763840pt;}
.y1fa{bottom:837.920000pt;}
.y120{bottom:840.000000pt;}
.y2a7{bottom:840.320000pt;}
.y1dd{bottom:840.640000pt;}
.y10{bottom:841.600000pt;}
.y99{bottom:842.240000pt;}
.ybf{bottom:846.880000pt;}
.y27b{bottom:848.320000pt;}
.y17e{bottom:850.560000pt;}
.y35{bottom:851.040000pt;}
.y1ab{bottom:852.655360pt;}
.y219{bottom:855.997440pt;}
.y5e{bottom:856.000000pt;}
.yf8{bottom:856.320000pt;}
.y1dc{bottom:859.040000pt;}
.y263{bottom:861.120000pt;}
.yf{bottom:861.600000pt;}
.y155{bottom:864.960000pt;}
.ybe{bottom:865.280000pt;}
.y180{bottom:866.560000pt;}
.y11f{bottom:866.880000pt;}
.y1aa{bottom:868.495360pt;}
.y98{bottom:869.120000pt;}
.y27a{bottom:869.440000pt;}
.y34{bottom:872.320000pt;}
.y17d{bottom:874.400000pt;}
.y5d{bottom:877.120000pt;}
.yf7{bottom:877.440000pt;}
.y24d{bottom:880.160000pt;}
.ye{bottom:881.280000pt;}
.y17f{bottom:882.400000pt;}
.y154{bottom:883.360000pt;}
.ybd{bottom:883.680000pt;}
.y1a9{bottom:884.490240pt;}
.y97{bottom:890.240000pt;}
.y218{bottom:890.560000pt;}
.y5c{bottom:898.240000pt;}
.yf6{bottom:898.560000pt;}
.y33{bottom:899.040000pt;}
.y1a8{bottom:900.485120pt;}
.y24c{bottom:901.280000pt;}
.y153{bottom:901.760000pt;}
.ybc{bottom:901.920000pt;}
.y1db{bottom:906.560000pt;}
.y11e{bottom:909.280000pt;}
.y179{bottom:910.080000pt;}
.y96{bottom:911.520000pt;}
.y1a7{bottom:916.480000pt;}
.yd{bottom:919.363840pt;}
.y5b{bottom:919.520000pt;}
.yf5{bottom:919.680000pt;}
.ybb{bottom:920.320000pt;}
.y24b{bottom:922.560000pt;}
.y13d{bottom:927.680000pt;}
.y152{bottom:930.401280pt;}
.y11d{bottom:930.560000pt;}
.y1a6{bottom:932.640000pt;}
.y32{bottom:938.720000pt;}
.yc{bottom:940.480000pt;}
.y5a{bottom:940.640000pt;}
.yf4{bottom:940.960000pt;}
.y24a{bottom:943.680000pt;}
.y151{bottom:948.803840pt;}
.y13c{bottom:948.960000pt;}
.y11c{bottom:951.680000pt;}
.y31{bottom:957.120000pt;}
.y59{bottom:961.760000pt;}
.y1c0{bottom:962.080000pt;}
.y150{bottom:967.037440pt;}
.yf3{bottom:970.080000pt;}
.y11b{bottom:972.800000pt;}
.y30{bottom:975.520000pt;}
.y58{bottom:982.880000pt;}
.y14f{bottom:985.440000pt;}
.yb{bottom:985.753920pt;}
.yf2{bottom:991.200000pt;}
.y2f{bottom:993.920000pt;}
.ya{bottom:1008.480000pt;}
.y57{bottom:1009.760000pt;}
.y2e{bottom:1012.320000pt;}
.y4{bottom:1041.600000pt;}
.y3{bottom:1059.688000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.h18{height:16.640000pt;}
.h21{height:23.840000pt;}
.h5{height:29.118667pt;}
.h1c{height:29.280000pt;}
.h14{height:30.324375pt;}
.h2a{height:30.609688pt;}
.h17{height:32.000000pt;}
.h3{height:34.453125pt;}
.h16{height:36.883125pt;}
.hf{height:37.624687pt;}
.h23{height:42.117188pt;}
.hd{height:42.240000pt;}
.h1d{height:42.632812pt;}
.h29{height:42.866250pt;}
.h9{height:43.471250pt;}
.h1a{height:44.437500pt;}
.h10{height:46.609688pt;}
.h13{height:47.180312pt;}
.h1e{height:48.640000pt;}
.hb{height:54.514687pt;}
.h2c{height:56.069210pt;}
.h19{height:56.089690pt;}
.h15{height:56.094810pt;}
.h2b{height:56.108250pt;}
.he{height:56.110170pt;}
.h4{height:56.156250pt;}
.h1b{height:56.195930pt;}
.h7{height:56.565000pt;}
.h27{height:56.736230pt;}
.ha{height:56.843750pt;}
.h11{height:56.893030pt;}
.h8{height:59.183750pt;}
.h6{height:61.278750pt;}
.h12{height:61.825312pt;}
.hc{height:61.944688pt;}
.h28{height:65.656732pt;}
.h2d{height:65.702812pt;}
.h20{height:66.080000pt;}
.h1f{height:66.240000pt;}
.h2{height:67.200000pt;}
.h22{height:87.360000pt;}
.h24{height:95.360000pt;}
.h26{height:103.200000pt;}
.h25{height:206.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:34.560000pt;}
.w7{width:111.200000pt;}
.w9{width:132.160000pt;}
.w5{width:233.921333pt;}
.wa{width:332.801333pt;}
.w6{width:399.198667pt;}
.w8{width:464.960000pt;}
.w3{width:481.120000pt;}
.w4{width:482.400000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:7.200000pt;}
.x1a{left:40.480000pt;}
.x16{left:65.760000pt;}
.x3{left:113.444000pt;}
.x1e{left:120.640000pt;}
.x1{left:135.680000pt;}
.x12{left:137.440000pt;}
.x1c{left:141.600000pt;}
.x15{left:156.800000pt;}
.x13{left:161.440000pt;}
.x24{left:196.960000pt;}
.x11{left:207.840000pt;}
.xe{left:209.440000pt;}
.x20{left:224.640000pt;}
.x21{left:231.840000pt;}
.x18{left:241.120000pt;}
.x4{left:264.160000pt;}
.x9{left:301.762560pt;}
.xf{left:305.440000pt;}
.x7{left:334.072000pt;}
.x1b{left:347.360000pt;}
.x1f{left:354.560000pt;}
.x22{left:356.800000pt;}
.x23{left:364.000000pt;}
.x5{left:414.880000pt;}
.xc{left:421.440000pt;}
.x19{left:425.121600pt;}
.x6{left:458.560000pt;}
.x2{left:474.080000pt;}
.x8{left:481.440000pt;}
.xd{left:514.720000pt;}
.xa{left:539.360000pt;}
.xb{left:552.480000pt;}
.x17{left:644.640000pt;}
.x14{left:652.160000pt;}
.x10{left:663.360000pt;}
}




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