
    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_289fa31c6368bbc0d9058254.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.083000;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_a8ce63c43ffe173cc8bcc174.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_125961e149b6191782ea106a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.947000;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_17774918c873b11710a817bc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.856934;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_f21ef8d1d56377bb3f3757d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_36642de3b061c90e535aaccc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.083000;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_b08ad6d1a14d5e816dc3d9a6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.955000;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_01b9dd5e24a9d45b5cf1271f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904785;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_74705c5fac4cf269331c98a5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.904785;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_906d0c6544887be7dfe36ad3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d6692340c6b2697a231fd9fa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_74705c5fac4cf269331c98a5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.904785;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.000000px;}
.v4{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.987520px;}
.v6{vertical-align:17.982600px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:30.000000px;}
.lsd{letter-spacing:-1.620000px;}
.ls24{letter-spacing:-1.140000px;}
.ls1b{letter-spacing:-0.967680px;}
.ls12{letter-spacing:-0.960000px;}
.ls20{letter-spacing:-0.907200px;}
.ls3{letter-spacing:-0.858000px;}
.lsc{letter-spacing:-0.780000px;}
.ls13{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.702000px;}
.ls23{letter-spacing:-0.660000px;}
.ls7{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.540000px;}
.ls25{letter-spacing:-0.483840px;}
.ls26{letter-spacing:-0.423360px;}
.ls5{letter-spacing:-0.420000px;}
.lsa{letter-spacing:-0.378000px;}
.ls8{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.302400px;}
.ls4{letter-spacing:-0.300000px;}
.ls1c{letter-spacing:-0.241920px;}
.ls11{letter-spacing:-0.240000px;}
.lsb{letter-spacing:-0.060000px;}
.ls28{letter-spacing:-0.051000px;}
.ls1{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000240px;}
.ls1e{letter-spacing:0.181440px;}
.ls2{letter-spacing:0.234000px;}
.ls1f{letter-spacing:0.241920px;}
.lse{letter-spacing:0.480000px;}
.ls27{letter-spacing:1.022020px;}
.ls0{letter-spacing:2.574000px;}
.ls10{letter-spacing:3.363540px;}
.ls22{letter-spacing:6.553800px;}
.ls21{letter-spacing:11.513400px;}
.ls15{letter-spacing:12.337920px;}
.ls14{letter-spacing:19.656000px;}
.lsf{letter-spacing:21.723000px;}
.ls17{letter-spacing:260.656680px;}
.ls16{letter-spacing:270.629880px;}
.ls19{letter-spacing:284.116920px;}
.ls18{letter-spacing:361.718760px;}
.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;}
}
.ws5{word-spacing:-54.000000px;}
.wsdc{word-spacing:-15.120000px;}
.ws41{word-spacing:-14.100000px;}
.ws1{word-spacing:-13.620000px;}
.ws10a{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.320000px;}
.wsa{word-spacing:-13.140000px;}
.ws12e{word-spacing:-13.020000px;}
.ws11e{word-spacing:-12.960000px;}
.ws14e{word-spacing:-12.720000px;}
.ws109{word-spacing:-12.480000px;}
.ws8{word-spacing:-12.258000px;}
.wsdd{word-spacing:-11.988000px;}
.ws6{word-spacing:-11.718000px;}
.ws14f{word-spacing:-11.577000px;}
.ws0{word-spacing:-10.416000px;}
.ws7{word-spacing:-8.172000px;}
.ws95{word-spacing:-7.940460px;}
.ws4{word-spacing:-7.812000px;}
.ws10b{word-spacing:-7.146414px;}
.ws1a6{word-spacing:-5.610000px;}
.ws12{word-spacing:-5.160000px;}
.ws11f{word-spacing:-5.100000px;}
.ws87{word-spacing:-5.040000px;}
.ws11{word-spacing:-4.800000px;}
.wsca{word-spacing:-4.620000px;}
.ws10d{word-spacing:-4.440000px;}
.wsf7{word-spacing:-4.380000px;}
.wsde{word-spacing:-4.200000px;}
.ws130{word-spacing:-4.080000px;}
.ws47{word-spacing:-3.960000px;}
.ws4b{word-spacing:-3.720000px;}
.ws16a{word-spacing:-3.672000px;}
.ws16d{word-spacing:-3.519000px;}
.ws103{word-spacing:-3.510000px;}
.ws156{word-spacing:-3.366000px;}
.ws7d{word-spacing:-3.360000px;}
.ws102{word-spacing:-3.348000px;}
.wsf4{word-spacing:-3.300000px;}
.ws5e{word-spacing:-3.240000px;}
.ws155{word-spacing:-3.213000px;}
.ws13b{word-spacing:-3.120000px;}
.ws90{word-spacing:-3.000000px;}
.ws91{word-spacing:-2.940000px;}
.ws13a{word-spacing:-2.880000px;}
.ws18f{word-spacing:-2.856000px;}
.wsae{word-spacing:-2.820000px;}
.ws137{word-spacing:-2.760000px;}
.ws84{word-spacing:-2.700000px;}
.wsaa{word-spacing:-2.640000px;}
.ws1a3{word-spacing:-2.550000px;}
.wsfb{word-spacing:-2.520000px;}
.ws14d{word-spacing:-2.460000px;}
.ws37{word-spacing:-2.376000px;}
.ws13d{word-spacing:-2.340000px;}
.ws169{word-spacing:-2.244000px;}
.wsf1{word-spacing:-2.220000px;}
.ws188{word-spacing:-2.193000px;}
.ws83{word-spacing:-2.160000px;}
.wsda{word-spacing:-2.100000px;}
.ws187{word-spacing:-2.091000px;}
.wsd9{word-spacing:-2.040000px;}
.ws13f{word-spacing:-1.980000px;}
.ws85{word-spacing:-1.920000px;}
.ws11d{word-spacing:-1.890000px;}
.ws19b{word-spacing:-1.887000px;}
.ws80{word-spacing:-1.860000px;}
.ws184{word-spacing:-1.836000px;}
.ws8f{word-spacing:-1.800000px;}
.ws142{word-spacing:-1.740000px;}
.ws4c{word-spacing:-1.680000px;}
.wse5{word-spacing:-1.620000px;}
.wsc1{word-spacing:-1.560000px;}
.wsed{word-spacing:-1.440000px;}
.ws14a{word-spacing:-1.380000px;}
.ws159{word-spacing:-1.377000px;}
.wsd4{word-spacing:-1.320000px;}
.ws11c{word-spacing:-1.296000px;}
.ws19a{word-spacing:-1.275000px;}
.ws8c{word-spacing:-1.260000px;}
.ws1af{word-spacing:-1.224000px;}
.wsb9{word-spacing:-1.200000px;}
.ws59{word-spacing:-1.020000px;}
.wse3{word-spacing:-0.960000px;}
.ws11b{word-spacing:-0.918000px;}
.wsc7{word-spacing:-0.900000px;}
.wsaf{word-spacing:-0.840000px;}
.ws19f{word-spacing:-0.816000px;}
.ws148{word-spacing:-0.780000px;}
.ws13{word-spacing:-0.720000px;}
.ws1b9{word-spacing:-0.612000px;}
.wsf9{word-spacing:-0.600000px;}
.ws163{word-spacing:-0.459000px;}
.ws1a9{word-spacing:-0.408000px;}
.wscd{word-spacing:-0.360000px;}
.ws2{word-spacing:-0.312000px;}
.ws1a7{word-spacing:-0.306000px;}
.ws3b{word-spacing:-0.270000px;}
.ws100{word-spacing:-0.241920px;}
.ws33{word-spacing:-0.240000px;}
.ws117{word-spacing:-0.216000px;}
.ws1ab{word-spacing:-0.204000px;}
.wsff{word-spacing:-0.181440px;}
.ws118{word-spacing:-0.162000px;}
.ws15d{word-spacing:-0.153000px;}
.wsd1{word-spacing:-0.120000px;}
.wsc{word-spacing:-0.054000px;}
.wsb{word-spacing:0.000000px;}
.ws81{word-spacing:0.060000px;}
.ws196{word-spacing:0.153000px;}
.wscc{word-spacing:0.180000px;}
.ws114{word-spacing:0.240000px;}
.wsfd{word-spacing:0.241920px;}
.wsd{word-spacing:0.300000px;}
.wsfe{word-spacing:0.302400px;}
.ws161{word-spacing:0.306000px;}
.ws189{word-spacing:0.357000px;}
.wse9{word-spacing:0.360000px;}
.ws3d{word-spacing:0.378000px;}
.ws2c{word-spacing:0.420000px;}
.wsc9{word-spacing:0.480000px;}
.ws10{word-spacing:0.540000px;}
.ws2e{word-spacing:0.600000px;}
.wsd2{word-spacing:0.660000px;}
.wscb{word-spacing:0.720000px;}
.ws3e{word-spacing:0.756000px;}
.ws3{word-spacing:0.780000px;}
.ws101{word-spacing:0.907200px;}
.ws12d{word-spacing:0.918000px;}
.ws43{word-spacing:0.960000px;}
.wsfc{word-spacing:0.967680px;}
.ws62{word-spacing:1.020000px;}
.ws3a{word-spacing:1.026000px;}
.ws13e{word-spacing:1.140000px;}
.wsd0{word-spacing:1.260000px;}
.ws38{word-spacing:1.296000px;}
.ws1aa{word-spacing:1.326000px;}
.ws108{word-spacing:1.350000px;}
.ws14{word-spacing:1.440000px;}
.wsf8{word-spacing:1.500000px;}
.ws3c{word-spacing:1.512000px;}
.wsce{word-spacing:1.560000px;}
.ws7a{word-spacing:1.620000px;}
.ws74{word-spacing:1.680000px;}
.ws4a{word-spacing:1.740000px;}
.ws2a{word-spacing:1.860000px;}
.ws17c{word-spacing:1.887000px;}
.ws16{word-spacing:1.920000px;}
.ws44{word-spacing:1.980000px;}
.ws17b{word-spacing:1.989000px;}
.ws39{word-spacing:1.998000px;}
.ws25{word-spacing:2.040000px;}
.ws18{word-spacing:2.100000px;}
.ws158{word-spacing:2.142000px;}
.wse8{word-spacing:2.160000px;}
.ws119{word-spacing:2.214000px;}
.ws66{word-spacing:2.220000px;}
.ws138{word-spacing:2.280000px;}
.ws18e{word-spacing:2.295000px;}
.ws11a{word-spacing:2.322000px;}
.ws16c{word-spacing:2.397000px;}
.ws4d{word-spacing:2.400000px;}
.ws12b{word-spacing:2.430000px;}
.ws199{word-spacing:2.499000px;}
.ws23{word-spacing:2.520000px;}
.ws12c{word-spacing:2.538000px;}
.ws1b2{word-spacing:2.550000px;}
.ws24{word-spacing:2.580000px;}
.ws12a{word-spacing:2.592000px;}
.ws64{word-spacing:2.820000px;}
.ws5c{word-spacing:2.880000px;}
.ws194{word-spacing:2.907000px;}
.ws7f{word-spacing:2.940000px;}
.wsbe{word-spacing:3.000000px;}
.ws1b5{word-spacing:3.009000px;}
.ws6f{word-spacing:3.060000px;}
.ws89{word-spacing:3.120000px;}
.ws124{word-spacing:3.240000px;}
.wsad{word-spacing:3.300000px;}
.ws8a{word-spacing:3.360000px;}
.ws65{word-spacing:3.420000px;}
.ws29{word-spacing:3.480000px;}
.ws18d{word-spacing:3.519000px;}
.ws8b{word-spacing:3.600000px;}
.ws53{word-spacing:3.660000px;}
.ws34{word-spacing:3.720000px;}
.ws1b3{word-spacing:3.825000px;}
.ws92{word-spacing:3.900000px;}
.ws3f{word-spacing:3.942000px;}
.ws88{word-spacing:4.020000px;}
.ws197{word-spacing:4.029000px;}
.ws45{word-spacing:4.080000px;}
.ws171{word-spacing:4.131000px;}
.ws1b0{word-spacing:4.182000px;}
.ws9a{word-spacing:4.200000px;}
.ws128{word-spacing:4.266000px;}
.ws1b1{word-spacing:4.284000px;}
.wsb0{word-spacing:4.380000px;}
.ws129{word-spacing:4.428000px;}
.ws15e{word-spacing:4.437000px;}
.ws120{word-spacing:4.440000px;}
.wsc3{word-spacing:4.500000px;}
.wsf0{word-spacing:4.560000px;}
.wsc5{word-spacing:4.620000px;}
.ws141{word-spacing:4.680000px;}
.wse7{word-spacing:4.740000px;}
.ws181{word-spacing:4.845000px;}
.ws9b{word-spacing:4.860000px;}
.wsc8{word-spacing:4.920000px;}
.ws183{word-spacing:4.947000px;}
.ws106{word-spacing:4.968000px;}
.ws147{word-spacing:4.980000px;}
.ws162{word-spacing:4.998000px;}
.ws1ad{word-spacing:5.100000px;}
.ws40{word-spacing:5.130000px;}
.wsbc{word-spacing:5.160000px;}
.ws152{word-spacing:5.202000px;}
.ws150{word-spacing:5.253000px;}
.wsb2{word-spacing:5.280000px;}
.wsc4{word-spacing:5.340000px;}
.ws107{word-spacing:5.346000px;}
.ws15{word-spacing:5.400000px;}
.ws179{word-spacing:5.457000px;}
.ws116{word-spacing:5.520000px;}
.ws170{word-spacing:5.610000px;}
.ws17{word-spacing:5.640000px;}
.wsd8{word-spacing:5.700000px;}
.ws16b{word-spacing:5.712000px;}
.wsc2{word-spacing:5.760000px;}
.ws72{word-spacing:5.880000px;}
.wsc6{word-spacing:5.940000px;}
.ws125{word-spacing:6.000000px;}
.ws164{word-spacing:6.018000px;}
.ws5b{word-spacing:6.120000px;}
.ws35{word-spacing:6.156000px;}
.ws50{word-spacing:6.180000px;}
.ws173{word-spacing:6.222000px;}
.wse4{word-spacing:6.240000px;}
.ws93{word-spacing:6.300000px;}
.ws104{word-spacing:6.318000px;}
.ws36{word-spacing:6.372000px;}
.ws52{word-spacing:6.420000px;}
.wsc0{word-spacing:6.480000px;}
.ws190{word-spacing:6.528000px;}
.ws19d{word-spacing:6.630000px;}
.ws86{word-spacing:6.660000px;}
.wsab{word-spacing:6.720000px;}
.wscf{word-spacing:6.780000px;}
.ws191{word-spacing:6.783000px;}
.wsd7{word-spacing:6.840000px;}
.ws61{word-spacing:6.900000px;}
.ws105{word-spacing:6.912000px;}
.wsa8{word-spacing:6.960000px;}
.ws60{word-spacing:7.020000px;}
.wsa4{word-spacing:7.080000px;}
.ws4e{word-spacing:7.140000px;}
.ws143{word-spacing:7.200000px;}
.wsf3{word-spacing:7.260000px;}
.ws55{word-spacing:7.320000px;}
.ws10f{word-spacing:7.500000px;}
.wsd3{word-spacing:7.560000px;}
.ws127{word-spacing:7.860000px;}
.ws10e{word-spacing:7.920000px;}
.wsbd{word-spacing:7.980000px;}
.ws182{word-spacing:8.007000px;}
.ws49{word-spacing:8.040000px;}
.wsfa{word-spacing:8.100000px;}
.ws1b4{word-spacing:8.211000px;}
.ws18b{word-spacing:8.262000px;}
.ws168{word-spacing:8.364000px;}
.ws126{word-spacing:8.580000px;}
.ws17e{word-spacing:8.721000px;}
.ws132{word-spacing:8.820000px;}
.ws17d{word-spacing:8.874000px;}
.ws136{word-spacing:9.060000px;}
.ws1a{word-spacing:9.120000px;}
.ws77{word-spacing:9.180000px;}
.ws16f{word-spacing:9.231000px;}
.ws21{word-spacing:9.240000px;}
.wsb7{word-spacing:9.300000px;}
.ws14b{word-spacing:9.420000px;}
.ws58{word-spacing:9.540000px;}
.ws4f{word-spacing:9.720000px;}
.ws6a{word-spacing:9.780000px;}
.ws6c{word-spacing:9.900000px;}
.wsd6{word-spacing:9.960000px;}
.ws133{word-spacing:10.020000px;}
.wsbf{word-spacing:10.080000px;}
.ws7c{word-spacing:10.140000px;}
.ws7b{word-spacing:10.200000px;}
.ws18a{word-spacing:10.251000px;}
.wsa5{word-spacing:10.260000px;}
.ws6b{word-spacing:10.320000px;}
.ws54{word-spacing:10.380000px;}
.ws13c{word-spacing:10.440000px;}
.wse0{word-spacing:10.500000px;}
.wsf{word-spacing:10.560000px;}
.wsdf{word-spacing:10.620000px;}
.ws1a8{word-spacing:10.659000px;}
.ws69{word-spacing:10.680000px;}
.ws8d{word-spacing:10.740000px;}
.ws180{word-spacing:10.761000px;}
.wsa7{word-spacing:10.860000px;}
.ws166{word-spacing:10.863000px;}
.wsa9{word-spacing:10.920000px;}
.ws22{word-spacing:11.040000px;}
.wsb1{word-spacing:11.280000px;}
.ws140{word-spacing:11.340000px;}
.wsa6{word-spacing:11.400000px;}
.ws46{word-spacing:11.460000px;}
.ws113{word-spacing:11.520000px;}
.ws51{word-spacing:11.640000px;}
.ws178{word-spacing:11.679000px;}
.wsba{word-spacing:11.760000px;}
.wsac{word-spacing:11.820000px;}
.ws9d{word-spacing:11.880000px;}
.ws6e{word-spacing:11.940000px;}
.ws195{word-spacing:11.985000px;}
.ws28{word-spacing:12.000000px;}
.ws112{word-spacing:12.060000px;}
.ws15c{word-spacing:12.138000px;}
.ws70{word-spacing:12.180000px;}
.wsea{word-spacing:12.240000px;}
.ws15a{word-spacing:12.342000px;}
.wseb{word-spacing:12.360000px;}
.ws9e{word-spacing:12.420000px;}
.ws165{word-spacing:12.444000px;}
.wsb5{word-spacing:12.480000px;}
.wsf5{word-spacing:12.540000px;}
.ws135{word-spacing:12.720000px;}
.ws7e{word-spacing:12.840000px;}
.ws131{word-spacing:12.900000px;}
.ws63{word-spacing:12.960000px;}
.ws12f{word-spacing:13.020000px;}
.ws1a0{word-spacing:13.056000px;}
.ws10c{word-spacing:13.140000px;}
.ws5f{word-spacing:13.200000px;}
.ws153{word-spacing:13.311000px;}
.ws111{word-spacing:13.380000px;}
.ws123{word-spacing:13.440000px;}
.wsb8{word-spacing:13.560000px;}
.ws20{word-spacing:13.680000px;}
.ws14c{word-spacing:13.740000px;}
.wse1{word-spacing:13.800000px;}
.ws1a2{word-spacing:13.821000px;}
.wsb3{word-spacing:13.920000px;}
.ws48{word-spacing:14.160000px;}
.ws30{word-spacing:14.220000px;}
.ws115{word-spacing:14.280000px;}
.ws56{word-spacing:14.400000px;}
.ws185{word-spacing:14.433000px;}
.wsa0{word-spacing:14.520000px;}
.ws172{word-spacing:14.535000px;}
.wsa1{word-spacing:14.640000px;}
.ws19{word-spacing:14.820000px;}
.ws18c{word-spacing:14.841000px;}
.wsf6{word-spacing:15.120000px;}
.ws32{word-spacing:15.180000px;}
.ws17f{word-spacing:15.249000px;}
.ws122{word-spacing:15.300000px;}
.ws5a{word-spacing:15.360000px;}
.ws1e{word-spacing:15.420000px;}
.ws157{word-spacing:15.504000px;}
.ws9f{word-spacing:15.540000px;}
.ws31{word-spacing:15.660000px;}
.ws146{word-spacing:15.780000px;}
.ws1a1{word-spacing:15.810000px;}
.ws1b6{word-spacing:16.014000px;}
.wsd5{word-spacing:16.080000px;}
.wse2{word-spacing:16.200000px;}
.ws16e{word-spacing:16.320000px;}
.ws5d{word-spacing:16.560000px;}
.ws121{word-spacing:16.740000px;}
.wsec{word-spacing:16.800000px;}
.ws134{word-spacing:16.860000px;}
.ws1d{word-spacing:16.920000px;}
.ws110{word-spacing:17.160000px;}
.ws8e{word-spacing:17.220000px;}
.wsef{word-spacing:17.340000px;}
.wsb6{word-spacing:17.520000px;}
.ws144{word-spacing:17.580000px;}
.ws26{word-spacing:17.700000px;}
.wsdb{word-spacing:18.720000px;}
.ws68{word-spacing:18.900000px;}
.wsbb{word-spacing:19.260000px;}
.ws76{word-spacing:19.380000px;}
.ws75{word-spacing:19.560000px;}
.ws1ae{word-spacing:19.584000px;}
.wsa3{word-spacing:19.620000px;}
.ws67{word-spacing:19.800000px;}
.wsa2{word-spacing:20.040000px;}
.ws1b7{word-spacing:20.247000px;}
.ws19c{word-spacing:20.298000px;}
.ws94{word-spacing:20.400000px;}
.ws19e{word-spacing:20.502000px;}
.ws139{word-spacing:20.520000px;}
.ws27{word-spacing:20.700000px;}
.ws193{word-spacing:20.757000px;}
.ws1a4{word-spacing:20.808000px;}
.wsee{word-spacing:20.820000px;}
.ws1a5{word-spacing:20.910000px;}
.ws2f{word-spacing:21.540000px;}
.ws15f{word-spacing:21.675000px;}
.ws96{word-spacing:21.720000px;}
.ws15b{word-spacing:21.828000px;}
.ws97{word-spacing:21.900000px;}
.ws160{word-spacing:22.185000px;}
.ws192{word-spacing:22.440000px;}
.ws17a{word-spacing:22.491000px;}
.ws98{word-spacing:22.500000px;}
.ws6d{word-spacing:22.980000px;}
.ws57{word-spacing:23.160000px;}
.ws9c{word-spacing:23.280000px;}
.ws99{word-spacing:23.760000px;}
.ws1c{word-spacing:23.880000px;}
.ws2d{word-spacing:24.240000px;}
.ws1b8{word-spacing:24.378000px;}
.ws145{word-spacing:24.480000px;}
.ws2b{word-spacing:24.600000px;}
.wse6{word-spacing:24.960000px;}
.ws79{word-spacing:26.700000px;}
.ws78{word-spacing:26.940000px;}
.ws73{word-spacing:27.180000px;}
.ws167{word-spacing:28.101000px;}
.wsb4{word-spacing:28.200000px;}
.ws42{word-spacing:29.160000px;}
.ws1b{word-spacing:29.940000px;}
.wsf2{word-spacing:30.120000px;}
.ws176{word-spacing:30.243000px;}
.ws198{word-spacing:30.906000px;}
.ws1ac{word-spacing:31.059000px;}
.ws149{word-spacing:31.440000px;}
.ws71{word-spacing:32.040000px;}
.ws174{word-spacing:32.079000px;}
.ws151{word-spacing:32.283000px;}
.ws177{word-spacing:33.150000px;}
.ws175{word-spacing:42.228000px;}
.ws1f{word-spacing:42.540000px;}
.ws186{word-spacing:46.512000px;}
.ws82{word-spacing:46.680000px;}
.ws154{word-spacing:46.920000px;}
.wse{word-spacing:49.800000px;}
._11{margin-left:-17.880000px;}
._f{margin-left:-11.592000px;}
._12{margin-left:-7.944600px;}
._3{margin-left:-6.138000px;}
._a{margin-left:-5.133000px;}
._1{margin-left:-3.792000px;}
._5{margin-left:-2.333400px;}
._0{margin-left:-1.152000px;}
._2{width:1.104000px;}
._4{width:2.458800px;}
._18{width:4.039200px;}
._9{width:6.009600px;}
._b{width:7.981800px;}
._e{width:9.973748px;}
._13{width:11.242200px;}
._10{width:15.457200px;}
._c{width:18.966757px;}
._8{width:22.188000px;}
._7{width:25.347000px;}
._d{width:26.972738px;}
._14{width:29.577600px;}
._6{width:43.371600px;}
._16{width:92.897280px;}
._17{width:97.493760px;}
._15{width:237.955320px;}
.fc1{color:rgb(153,212,32);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:31.482000px;}
.fs6{font-size:34.980000px;}
.fs5{font-size:36.000000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs7{font-size:60.480000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y143{bottom:1.400130px;}
.y16e{bottom:7.514100px;}
.y144{bottom:14.723250px;}
.y32{bottom:27.527850px;}
.y1{bottom:63.779550px;}
.yf{bottom:83.353950px;}
.y16f{bottom:89.260350px;}
.y1b7{bottom:97.977150px;}
.y23{bottom:106.299150px;}
.yfd{bottom:106.299300px;}
.y1a0{bottom:107.127900px;}
.y154{bottom:107.134050px;}
.y14b{bottom:122.799150px;}
.y221{bottom:122.908650px;}
.y253{bottom:122.942250px;}
.yca{bottom:124.323900px;}
.y1ee{bottom:124.380450px;}
.yfc{bottom:124.405800px;}
.y67{bottom:124.487400px;}
.y98{bottom:124.677300px;}
.y22{bottom:124.740150px;}
.y192{bottom:124.786350px;}
.y153{bottom:125.134050px;}
.y14a{bottom:139.299150px;}
.y220{bottom:139.518000px;}
.y252{bottom:139.585350px;}
.yc9{bottom:142.348500px;}
.yfb{bottom:142.512300px;}
.y66{bottom:142.675650px;}
.y97{bottom:143.055300px;}
.y152{bottom:143.134050px;}
.y21{bottom:143.181150px;}
.y191{bottom:143.273550px;}
.y184{bottom:143.717550px;}
.y149{bottom:155.799150px;}
.y21f{bottom:156.127350px;}
.yc8{bottom:160.373250px;}
.y1ed{bottom:160.543050px;}
.y65{bottom:160.863900px;}
.y151{bottom:161.134050px;}
.y96{bottom:161.433450px;}
.y20{bottom:161.622150px;}
.y190{bottom:161.760750px;}
.y251{bottom:162.606450px;}
.y148{bottom:172.299150px;}
.y21e{bottom:172.736700px;}
.y1ec{bottom:178.024350px;}
.yc7{bottom:178.397850px;}
.yfa{bottom:178.725150px;}
.y64{bottom:179.052150px;}
.y150{bottom:179.134050px;}
.y250{bottom:179.249550px;}
.y95{bottom:179.811750px;}
.y1f{bottom:180.063150px;}
.y18f{bottom:180.247800px;}
.y141{bottom:192.744000px;}
.y21d{bottom:194.448450px;}
.y1eb{bottom:195.505500px;}
.y24f{bottom:195.892650px;}
.yc6{bottom:196.422600px;}
.yf9{bottom:196.831650px;}
.y14f{bottom:197.134050px;}
.y63{bottom:197.240400px;}
.y94{bottom:198.189750px;}
.y1e{bottom:198.504000px;}
.y18e{bottom:198.735000px;}
.y21c{bottom:211.057800px;}
.y24e{bottom:212.535750px;}
.y1ea{bottom:212.986800px;}
.y137{bottom:213.648900px;}
.yc5{bottom:214.447350px;}
.yf8{bottom:214.938150px;}
.y14e{bottom:215.134050px;}
.y62{bottom:215.428650px;}
.y93{bottom:216.567900px;}
.y1d{bottom:216.945000px;}
.y18d{bottom:217.222200px;}
.y21b{bottom:227.667150px;}
.y1e9{bottom:230.468100px;}
.yc4{bottom:232.471950px;}
.yf7{bottom:233.044500px;}
.y14d{bottom:233.134050px;}
.y61{bottom:233.616900px;}
.y1c{bottom:235.386000px;}
.y24d{bottom:235.556700px;}
.y18c{bottom:235.709400px;}
.y92{bottom:239.197950px;}
.y138{bottom:239.201700px;}
.y1e8{bottom:247.949400px;}
.y21a{bottom:249.378900px;}
.yc3{bottom:250.496700px;}
.y14c{bottom:251.134050px;}
.yf6{bottom:251.151000px;}
.y60{bottom:251.805150px;}
.y24c{bottom:251.899800px;}
.y1b{bottom:253.827000px;}
.y91{bottom:257.576100px;}
.y139{bottom:265.117380px;}
.y219{bottom:265.988250px;}
.y24b{bottom:268.242900px;}
.yf5{bottom:269.257500px;}
.y5f{bottom:269.993250px;}
.y1a{bottom:272.267850px;}
.yc2{bottom:272.773350px;}
.y90{bottom:275.954250px;}
.y142{bottom:277.884450px;}
.y218{bottom:282.597600px;}
.y1e7{bottom:282.911850px;}
.y24a{bottom:284.586000px;}
.yf4{bottom:287.364000px;}
.y5e{bottom:288.181500px;}
.y1bd{bottom:288.414000px;}
.y18b{bottom:289.364550px;}
.y13a{bottom:290.670180px;}
.y19{bottom:290.708850px;}
.yc1{bottom:290.798100px;}
.y8f{bottom:294.332400px;}
.y1a9{bottom:296.880150px;}
.y177{bottom:297.730200px;}
.y1e6{bottom:300.393150px;}
.y15b{bottom:303.046350px;}
.y217{bottom:304.309350px;}
.y1bc{bottom:304.914000px;}
.yf3{bottom:305.470350px;}
.y18a{bottom:305.864550px;}
.y5d{bottom:306.369750px;}
.y19a{bottom:307.298100px;}
.y249{bottom:307.306950px;}
.yc0{bottom:308.822700px;}
.y18{bottom:309.149850px;}
.y8e{bottom:312.710400px;}
.y13b{bottom:316.222980px;}
.y1e5{bottom:317.874450px;}
.y216{bottom:320.918700px;}
.y1bb{bottom:321.414000px;}
.y189{bottom:322.364550px;}
.yf2{bottom:323.576850px;}
.y248{bottom:323.650050px;}
.y5c{bottom:324.558000px;}
.ybf{bottom:326.847450px;}
.y17{bottom:327.590850px;}
.y8d{bottom:331.088550px;}
.y1e4{bottom:335.355600px;}
.y215{bottom:337.528050px;}
.y188{bottom:338.864550px;}
.y247{bottom:339.993150px;}
.yf1{bottom:341.683350px;}
.y1a8{bottom:341.857500px;}
.y13c{bottom:342.138660px;}
.y5b{bottom:342.746250px;}
.ybe{bottom:344.872200px;}
.y16{bottom:346.031850px;}
.y1b6{bottom:348.936000px;}
.y8c{bottom:349.466700px;}
.y1e3{bottom:352.836900px;}
.y214{bottom:354.137400px;}
.y246{bottom:356.336250px;}
.y176{bottom:359.310000px;}
.yf0{bottom:359.789850px;}
.y5a{bottom:360.934500px;}
.ybd{bottom:362.896800px;}
.y15{bottom:364.472700px;}
.y183{bottom:366.919500px;}
.y13d{bottom:367.691460px;}
.y8b{bottom:367.844850px;}
.y1b4{bottom:370.150410px;}
.y1b1{bottom:370.165530px;}
.y1ae{bottom:370.180650px;}
.y1ab{bottom:370.195770px;}
.y1e2{bottom:370.318200px;}
.y213{bottom:375.849150px;}
.y1b3{bottom:376.636890px;}
.y1b0{bottom:376.652010px;}
.y1ad{bottom:376.667130px;}
.y1aa{bottom:376.682250px;}
.yef{bottom:377.896200px;}
.y245{bottom:379.057200px;}
.y59{bottom:379.122750px;}
.ybc{bottom:380.921550px;}
.y14{bottom:382.913700px;}
.y8a{bottom:386.223000px;}
.y1b5{bottom:387.069690px;}
.y1b2{bottom:387.084810px;}
.y1af{bottom:387.099930px;}
.y1ac{bottom:387.115050px;}
.y1e1{bottom:387.799350px;}
.y181{bottom:388.149030px;}
.y17e{bottom:388.164150px;}
.y17b{bottom:388.179270px;}
.y179{bottom:388.194390px;}
.y212{bottom:392.458500px;}
.y13e{bottom:393.607140px;}
.y180{bottom:394.635510px;}
.y17d{bottom:394.650630px;}
.y178{bottom:394.665750px;}
.y244{bottom:395.400300px;}
.yee{bottom:396.002700px;}
.y58{bottom:397.311000px;}
.ybb{bottom:398.946300px;}
.y13{bottom:401.354700px;}
.y89{bottom:404.601000px;}
.y182{bottom:405.068310px;}
.y17f{bottom:405.083430px;}
.y17c{bottom:405.098550px;}
.y17a{bottom:405.113670px;}
.y1e0{bottom:405.280650px;}
.y243{bottom:411.743400px;}
.yed{bottom:414.109200px;}
.y211{bottom:414.170250px;}
.y57{bottom:415.499250px;}
.yba{bottom:416.970900px;}
.y147{bottom:417.769050px;}
.y13f{bottom:419.159940px;}
.y12{bottom:419.795700px;}
.y1df{bottom:422.761950px;}
.y88{bottom:422.979150px;}
.y210{bottom:430.779600px;}
.yec{bottom:432.215700px;}
.y56{bottom:433.687350px;}
.y242{bottom:434.464500px;}
.yb9{bottom:434.995650px;}
.y11{bottom:438.236550px;}
.y1a1{bottom:440.015550px;}
.y1de{bottom:440.243250px;}
.y146{bottom:440.448450px;}
.y87{bottom:441.357300px;}
.y140{bottom:444.712740px;}
.y20f{bottom:447.388950px;}
.yeb{bottom:450.322200px;}
.y241{bottom:450.807600px;}
.y55{bottom:451.875600px;}
.yb8{bottom:453.020250px;}
.y10{bottom:456.677550px;}
.y1dd{bottom:457.724400px;}
.y170{bottom:458.000550px;}
.y275{bottom:458.199450px;}
.y86{bottom:459.735450px;}
.y145{bottom:462.769050px;}
.y20e{bottom:463.998300px;}
.y240{bottom:467.150550px;}
.y1a2{bottom:468.093390px;}
.yea{bottom:468.428550px;}
.y54{bottom:470.063850px;}
.yb7{bottom:471.045000px;}
.y274{bottom:474.699450px;}
.y1dc{bottom:475.205700px;}
.y85{bottom:478.113450px;}
.y20d{bottom:485.710050px;}
.ye9{bottom:486.535050px;}
.y53{bottom:488.252100px;}
.yb6{bottom:489.069750px;}
.y23f{bottom:489.871650px;}
.y171{bottom:491.113350px;}
.y273{bottom:491.199450px;}
.y1db{bottom:492.687000px;}
.y84{bottom:496.491600px;}
.y1a3{bottom:496.534110px;}
.y20c{bottom:502.319400px;}
.ye8{bottom:504.641550px;}
.y23e{bottom:506.214750px;}
.y52{bottom:506.440350px;}
.yb5{bottom:507.094350px;}
.y272{bottom:507.699450px;}
.y2f{bottom:510.102150px;}
.y83{bottom:514.869750px;}
.y20b{bottom:518.928750px;}
.y23d{bottom:522.557850px;}
.ye7{bottom:522.748050px;}
.y27b{bottom:524.199450px;}
.y172{bottom:524.226150px;}
.y51{bottom:524.628600px;}
.y1a4{bottom:524.974830px;}
.yb4{bottom:525.119100px;}
.y136{bottom:525.381750px;}
.y11a{bottom:525.381900px;}
.y1da{bottom:527.649450px;}
.y271{bottom:530.577450px;}
.y82{bottom:533.247900px;}
.y20a{bottom:540.640350px;}
.y27a{bottom:540.699450px;}
.ye6{bottom:540.854400px;}
.y50{bottom:542.816850px;}
.y2e{bottom:543.102150px;}
.yb3{bottom:543.143850px;}
.y119{bottom:543.397650px;}
.y135{bottom:543.544050px;}
.y1d9{bottom:545.130750px;}
.y23c{bottom:545.278800px;}
.y270{bottom:547.077450px;}
.y81{bottom:551.626050px;}
.y1a5{bottom:553.415550px;}
.y209{bottom:557.249700px;}
.y173{bottom:557.338950px;}
.y2d{bottom:559.602150px;}
.y4f{bottom:561.005100px;}
.yb2{bottom:561.168450px;}
.y118{bottom:561.413250px;}
.y23b{bottom:561.621900px;}
.y134{bottom:561.706350px;}
.y1d8{bottom:562.612050px;}
.ye5{bottom:563.212950px;}
.y26f{bottom:563.577450px;}
.y80{bottom:570.004050px;}
.y208{bottom:573.859200px;}
.y2c{bottom:576.102150px;}
.y23a{bottom:577.965000px;}
.y4e{bottom:579.193200px;}
.y117{bottom:579.428850px;}
.y133{bottom:579.868500px;}
.y26e{bottom:580.077450px;}
.y1d7{bottom:580.093350px;}
.ye4{bottom:581.319300px;}
.y1a6{bottom:581.856270px;}
.y207{bottom:590.468550px;}
.y174{bottom:590.814630px;}
.y2b{bottom:592.602150px;}
.y7f{bottom:592.634250px;}
.y279{bottom:596.577450px;}
.y4d{bottom:597.381450px;}
.y116{bottom:597.444450px;}
.y1d6{bottom:597.574500px;}
.y132{bottom:598.030800px;}
.ye3{bottom:599.425800px;}
.y239{bottom:600.685950px;}
.yb1{bottom:601.469850px;}
.y26d{bottom:602.955450px;}
.y2a{bottom:609.102150px;}
.y1a7{bottom:610.296990px;}
.y206{bottom:612.180150px;}
.y278{bottom:613.077450px;}
.y1d5{bottom:615.055800px;}
.y115{bottom:615.460200px;}
.y4c{bottom:615.569700px;}
.y131{bottom:616.193100px;}
.y238{bottom:617.029050px;}
.ye2{bottom:617.532300px;}
.y26c{bottom:619.455450px;}
.yb0{bottom:619.494600px;}
.y175{bottom:623.927430px;}
.y29{bottom:625.602150px;}
.y205{bottom:628.789650px;}
.y7e{bottom:629.390400px;}
.y1d4{bottom:632.537100px;}
.y237{bottom:633.372150px;}
.y114{bottom:633.475800px;}
.y4b{bottom:633.757950px;}
.y130{bottom:634.355250px;}
.ye1{bottom:635.638800px;}
.y26b{bottom:635.955450px;}
.yaf{bottom:637.519200px;}
.y28{bottom:642.102150px;}
.y204{bottom:645.399000px;}
.y7d{bottom:647.768550px;}
.y236{bottom:649.715250px;}
.y1d3{bottom:650.018400px;}
.y113{bottom:651.491400px;}
.y4a{bottom:651.946200px;}
.y26a{bottom:652.455450px;}
.y12f{bottom:652.517550px;}
.ye0{bottom:653.745150px;}
.yae{bottom:655.543950px;}
.y27{bottom:658.602150px;}
.y7c{bottom:666.146700px;}
.y203{bottom:667.110600px;}
.y1d2{bottom:667.499550px;}
.y269{bottom:668.955450px;}
.y112{bottom:669.507000px;}
.y49{bottom:670.134450px;}
.y12e{bottom:670.679850px;}
.ydf{bottom:671.851650px;}
.y235{bottom:672.436350px;}
.yad{bottom:673.568550px;}
.y26{bottom:675.102150px;}
.y202{bottom:683.720100px;}
.y7b{bottom:684.524850px;}
.y1d1{bottom:684.980850px;}
.y111{bottom:687.522600px;}
.y48{bottom:688.322700px;}
.y234{bottom:688.779300px;}
.y12d{bottom:688.842150px;}
.yde{bottom:689.958150px;}
.y1ba{bottom:691.500600px;}
.yac{bottom:691.593300px;}
.y25{bottom:691.602150px;}
.y268{bottom:691.833300px;}
.y187{bottom:695.327400px;}
.y201{bottom:700.329450px;}
.y1d0{bottom:702.462000px;}
.y7a{bottom:702.903000px;}
.y233{bottom:705.122400px;}
.y110{bottom:705.538350px;}
.y47{bottom:706.510950px;}
.y12c{bottom:707.004300px;}
.y1b9{bottom:708.000600px;}
.ydd{bottom:708.064650px;}
.y24{bottom:708.102150px;}
.y267{bottom:708.333300px;}
.yab{bottom:709.618050px;}
.y186{bottom:711.827400px;}
.y1cf{bottom:719.943300px;}
.y79{bottom:721.281000px;}
.y232{bottom:721.465500px;}
.y200{bottom:722.041050px;}
.y10f{bottom:723.553950px;}
.y1b8{bottom:724.500600px;}
.y46{bottom:724.699200px;}
.y266{bottom:724.833300px;}
.y12b{bottom:725.166600px;}
.ydc{bottom:726.171000px;}
.yaa{bottom:727.642800px;}
.y185{bottom:728.327400px;}
.y1ce{bottom:737.424600px;}
.y231{bottom:737.808600px;}
.y1ff{bottom:738.650550px;}
.y78{bottom:739.659150px;}
.y265{bottom:741.333300px;}
.y10e{bottom:741.569550px;}
.y45{bottom:742.887300px;}
.y12a{bottom:743.328900px;}
.ydb{bottom:744.277500px;}
.y199{bottom:744.945000px;}
.ya9{bottom:745.667400px;}
.y15a{bottom:748.771500px;}
.y19f{bottom:752.325300px;}
.y30{bottom:754.138500px;}
.y1cd{bottom:754.905900px;}
.y1fe{bottom:755.259900px;}
.y77{bottom:758.037300px;}
.y10d{bottom:759.585150px;}
.y230{bottom:760.529700px;}
.y44{bottom:761.075550px;}
.y129{bottom:761.491050px;}
.yda{bottom:762.384000px;}
.ya8{bottom:763.692150px;}
.y264{bottom:764.211300px;}
.y1fd{bottom:771.869250px;}
.y1cc{bottom:772.387050px;}
.y19c{bottom:773.586420px;}
.y76{bottom:776.415450px;}
.y22f{bottom:776.872800px;}
.y16c{bottom:777.469770px;}
.y169{bottom:777.484890px;}
.y166{bottom:777.500010px;}
.y163{bottom:777.515130px;}
.y160{bottom:777.530250px;}
.y15d{bottom:777.545370px;}
.y10c{bottom:777.600900px;}
.y43{bottom:779.263800px;}
.y128{bottom:779.653350px;}
.y19e{bottom:780.057780px;}
.y19b{bottom:780.072900px;}
.yd9{bottom:780.490500px;}
.y263{bottom:780.711300px;}
.ya7{bottom:781.716750px;}
.y16b{bottom:783.956250px;}
.y168{bottom:783.971370px;}
.y165{bottom:783.986490px;}
.y162{bottom:784.001610px;}
.y15f{bottom:784.016730px;}
.y15c{bottom:784.031850px;}
.y1fc{bottom:788.478450px;}
.y1cb{bottom:789.868350px;}
.y19d{bottom:790.505700px;}
.y22e{bottom:793.215750px;}
.y16d{bottom:794.389050px;}
.y16a{bottom:794.404170px;}
.y167{bottom:794.419290px;}
.y164{bottom:794.434410px;}
.y161{bottom:794.449530px;}
.y15e{bottom:794.464650px;}
.y75{bottom:794.793600px;}
.y10b{bottom:795.616500px;}
.y262{bottom:797.211300px;}
.y42{bottom:797.452050px;}
.y127{bottom:797.815650px;}
.yd8{bottom:798.596850px;}
.ya6{bottom:799.741500px;}
.y1ca{bottom:807.349650px;}
.ye{bottom:807.675000px;}
.y22d{bottom:809.558850px;}
.y1fb{bottom:810.190200px;}
.y74{bottom:813.171600px;}
.y41{bottom:815.640300px;}
.yd7{bottom:816.703350px;}
.ya5{bottom:817.766250px;}
.y10a{bottom:817.884150px;}
.y261{bottom:820.089300px;}
.yd{bottom:823.875000px;}
.y1c9{bottom:824.830950px;}
.y1fa{bottom:826.799700px;}
.y73{bottom:831.549750px;}
.y22c{bottom:832.279950px;}
.y40{bottom:833.828550px;}
.y126{bottom:834.140100px;}
.yd6{bottom:834.809850px;}
.ya4{bottom:835.791000px;}
.y109{bottom:835.899750px;}
.y260{bottom:836.589300px;}
.yc{bottom:840.075000px;}
.y1c8{bottom:842.312100px;}
.y193{bottom:843.405600px;}
.y1f9{bottom:843.408900px;}
.y155{bottom:847.365150px;}
.y22b{bottom:848.623050px;}
.yb{bottom:848.775000px;}
.y72{bottom:849.927900px;}
.y3f{bottom:852.016800px;}
.y125{bottom:852.302400px;}
.yd5{bottom:852.916200px;}
.y25f{bottom:853.089300px;}
.ya3{bottom:853.815600px;}
.y108{bottom:853.915350px;}
.y1c7{bottom:859.793400px;}
.y1f8{bottom:860.018400px;}
.y22a{bottom:864.966000px;}
.y71{bottom:868.306050px;}
.y25e{bottom:869.589300px;}
.y3e{bottom:870.205050px;}
.y124{bottom:870.464700px;}
.yd4{bottom:871.022700px;}
.ya2{bottom:871.840350px;}
.y107{bottom:871.930950px;}
.y1c6{bottom:877.274700px;}
.y194{bottom:877.969920px;}
.y229{bottom:881.309100px;}
.y1f7{bottom:881.730150px;}
.ya{bottom:884.775000px;}
.y70{bottom:886.684050px;}
.y156{bottom:888.037950px;}
.y3d{bottom:888.393150px;}
.y123{bottom:888.627000px;}
.yd3{bottom:889.129050px;}
.ya1{bottom:889.864950px;}
.y106{bottom:889.946550px;}
.y25d{bottom:892.467150px;}
.y1f6{bottom:898.339350px;}
.y228{bottom:904.030200px;}
.y6f{bottom:905.062200px;}
.y3c{bottom:906.581400px;}
.y122{bottom:906.789300px;}
.yd2{bottom:907.235550px;}
.ya0{bottom:907.889700px;}
.y105{bottom:907.962300px;}
.y9{bottom:908.175000px;}
.y25c{bottom:908.967150px;}
.y1c5{bottom:912.237150px;}
.y195{bottom:912.897120px;}
.y1f5{bottom:914.948850px;}
.y227{bottom:920.373300px;}
.y6e{bottom:923.440350px;}
.y3b{bottom:924.769650px;}
.y121{bottom:924.951450px;}
.yd1{bottom:925.342050px;}
.y25b{bottom:925.467150px;}
.y9f{bottom:925.914450px;}
.y104{bottom:925.977750px;}
.y157{bottom:929.073630px;}
.y1c4{bottom:929.718450px;}
.y8{bottom:931.575000px;}
.y1f4{bottom:936.660600px;}
.y226{bottom:936.716250px;}
.y6d{bottom:941.818500px;}
.y277{bottom:941.967150px;}
.y3a{bottom:942.957900px;}
.y120{bottom:943.113750px;}
.yd0{bottom:943.448550px;}
.y9e{bottom:943.939200px;}
.y103{bottom:943.993500px;}
.y1c3{bottom:947.199750px;}
.y196{bottom:947.824320px;}
.y25a{bottom:948.345150px;}
.y225{bottom:953.059350px;}
.y1f3{bottom:953.269800px;}
.y6c{bottom:960.196800px;}
.y39{bottom:961.146150px;}
.y11f{bottom:961.276050px;}
.ycf{bottom:961.555050px;}
.y9d{bottom:961.963800px;}
.y102{bottom:962.009100px;}
.y1c2{bottom:964.681050px;}
.y259{bottom:964.845150px;}
.y1f2{bottom:969.879300px;}
.y158{bottom:970.109310px;}
.y224{bottom:975.780450px;}
.y6b{bottom:978.574800px;}
.y38{bottom:979.334400px;}
.y11e{bottom:979.438350px;}
.yce{bottom:979.661550px;}
.y9c{bottom:979.988550px;}
.y101{bottom:980.024850px;}
.y258{bottom:981.345150px;}
.y1c1{bottom:982.162200px;}
.y197{bottom:982.388640px;}
.y1f1{bottom:991.591050px;}
.y223{bottom:992.123400px;}
.y6a{bottom:996.952950px;}
.y37{bottom:997.522650px;}
.y11d{bottom:997.600500px;}
.ycd{bottom:997.767900px;}
.y276{bottom:997.845150px;}
.y9b{bottom:998.013300px;}
.y100{bottom:998.040450px;}
.y1c0{bottom:999.643500px;}
.y31{bottom:1001.552100px;}
.y257{bottom:1004.223150px;}
.y7{bottom:1007.866950px;}
.y1f0{bottom:1008.200250px;}
.y222{bottom:1008.466500px;}
.y159{bottom:1011.144990px;}
.y69{bottom:1015.331100px;}
.y36{bottom:1015.710900px;}
.y11c{bottom:1015.762800px;}
.ycc{bottom:1015.874400px;}
.y9a{bottom:1016.037900px;}
.yff{bottom:1016.056050px;}
.y1bf{bottom:1017.124800px;}
.y198{bottom:1017.315840px;}
.y256{bottom:1020.723150px;}
.y1ef{bottom:1024.809600px;}
.y6{bottom:1025.866950px;}
.y2{bottom:1032.197250px;}
.y68{bottom:1033.709250px;}
.y35{bottom:1033.899150px;}
.y11b{bottom:1033.925100px;}
.ycb{bottom:1033.980900px;}
.y99{bottom:1034.062650px;}
.yfe{bottom:1034.071650px;}
.y1be{bottom:1034.606100px;}
.y255{bottom:1037.223150px;}
.y5{bottom:1043.866950px;}
.y34{bottom:1052.087250px;}
.y254{bottom:1053.723150px;}
.y3{bottom:1059.967050px;}
.y4{bottom:1061.866950px;}
.y33{bottom:1094.607000px;}
.h8{height:29.196000px;}
.h3{height:34.272000px;}
.hb{height:38.928000px;}
.h14{height:41.361000px;}
.hd{height:41.550469px;}
.hc{height:42.360000px;}
.ha{height:42.840000px;}
.h9{height:43.794000px;}
.h4{height:47.124000px;}
.hf{height:47.537989px;}
.h5{height:48.660000px;}
.h2{height:53.526000px;}
.h6{height:55.692000px;}
.h7{height:55.704000px;}
.he{height:290.835000px;}
.h13{height:307.843500px;}
.h11{height:308.692500px;}
.h10{height:314.220000px;}
.h12{height:318.048000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w2{width:529.795500px;}
.w3{width:645.024000px;}
.w5{width:653.529000px;}
.w4{width:659.905500px;}
.w6{width:669.685500px;}
.w0{width:829.134000px;}
.w1{width:829.500000px;}
.x0{left:0.000000px;}
.x35{left:10.961700px;}
.x17{left:12.511650px;}
.x4f{left:23.329050px;}
.x15{left:24.633900px;}
.x1b{left:26.290500px;}
.x38{left:31.154850px;}
.x65{left:33.400350px;}
.xc{left:53.149650px;}
.x8{left:58.717050px;}
.x16{left:63.265500px;}
.x34{left:71.325000px;}
.xb{left:73.872450px;}
.x64{left:79.725000px;}
.x7d{left:82.913400px;}
.x37{left:84.613500px;}
.x4e{left:87.802500px;}
.xa{left:89.424000px;}
.x1a{left:92.055000px;}
.x5{left:104.706450px;}
.x9{left:109.539150px;}
.x4d{left:111.131550px;}
.x6{left:113.871600px;}
.x36{left:115.768350px;}
.x19{left:118.345500px;}
.xe{left:128.775000px;}
.x14{left:149.668500px;}
.x63{left:156.867000px;}
.x50{left:157.970700px;}
.x4c{left:161.379900px;}
.x39{left:162.566550px;}
.x1c{left:164.950200px;}
.x7c{left:166.301400px;}
.x66{left:167.443950px;}
.x13{left:174.302400px;}
.x51{left:182.858220px;}
.x3a{left:187.378470px;}
.x1d{left:189.369000px;}
.x67{left:192.301230px;}
.x52{left:207.745740px;}
.x3b{left:212.190390px;}
.x1e{left:213.787800px;}
.x68{left:217.158510px;}
.x10{left:230.270850px;}
.x53{left:232.633260px;}
.x3c{left:237.002310px;}
.x1f{left:238.206600px;}
.x69{left:242.015790px;}
.x18{left:247.081050px;}
.x54{left:257.520780px;}
.x20{left:262.625400px;}
.x2{left:266.490300px;}
.x3{left:268.836600px;}
.x55{left:282.408300px;}
.x21{left:287.044200px;}
.x7{left:291.972000px;}
.x56{left:307.295820px;}
.xf{left:309.654900px;}
.x22{left:311.463000px;}
.x6a{left:316.587630px;}
.x11{left:320.571150px;}
.x57{left:332.183340px;}
.x23{left:335.881800px;}
.x6b{left:341.444910px;}
.x58{left:357.070860px;}
.x24{left:360.300600px;}
.x6c{left:366.302190px;}
.x59{left:381.958380px;}
.x25{left:384.719400px;}
.x3d{left:385.873830px;}
.x6d{left:391.159470px;}
.x5a{left:406.845900px;}
.x26{left:409.138200px;}
.x3e{left:410.685750px;}
.x6e{left:416.016750px;}
.xd{left:429.448800px;}
.x5b{left:431.733420px;}
.x27{left:433.557000px;}
.x3f{left:435.497670px;}
.x6f{left:440.874030px;}
.x12{left:450.708600px;}
.x5c{left:456.620940px;}
.x28{left:457.975800px;}
.x7e{left:459.212550px;}
.x40{left:460.309590px;}
.x70{left:465.731310px;}
.x29{left:482.394600px;}
.x41{left:485.121510px;}
.x71{left:490.588590px;}
.x2a{left:506.813400px;}
.x42{left:509.933430px;}
.x72{left:515.445870px;}
.x2b{left:531.232200px;}
.x43{left:534.745350px;}
.x73{left:540.303150px;}
.x2c{left:555.651000px;}
.x44{left:559.557270px;}
.x74{left:565.160430px;}
.x2d{left:580.069800px;}
.x45{left:584.369190px;}
.x75{left:590.017710px;}
.x2e{left:604.488600px;}
.x5d{left:605.946060px;}
.x46{left:609.181110px;}
.x4{left:611.433000px;}
.x76{left:614.874990px;}
.x2f{left:628.907400px;}
.x5e{left:630.833580px;}
.x47{left:633.993030px;}
.x77{left:639.732270px;}
.x30{left:653.326200px;}
.x5f{left:655.721100px;}
.x48{left:658.804950px;}
.x78{left:664.589550px;}
.x31{left:677.745000px;}
.x60{left:680.608620px;}
.x49{left:683.616870px;}
.x79{left:689.446830px;}
.x32{left:702.163800px;}
.x61{left:705.496140px;}
.x4a{left:708.428790px;}
.x7a{left:714.304110px;}
.x33{left:726.582600px;}
.x62{left:730.383660px;}
.x4b{left:733.240710px;}
.x7b{left:739.161390px;}
.x1{left:752.224500px;}
@media print{
.v2{vertical-align:-26.666667pt;}
.v4{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.322240pt;}
.v6{vertical-align:15.984533pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:26.666667pt;}
.lsd{letter-spacing:-1.440000pt;}
.ls24{letter-spacing:-1.013333pt;}
.ls1b{letter-spacing:-0.860160pt;}
.ls12{letter-spacing:-0.853333pt;}
.ls20{letter-spacing:-0.806400pt;}
.ls3{letter-spacing:-0.762667pt;}
.lsc{letter-spacing:-0.693333pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.624000pt;}
.ls23{letter-spacing:-0.586667pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls25{letter-spacing:-0.430080pt;}
.ls26{letter-spacing:-0.376320pt;}
.ls5{letter-spacing:-0.373333pt;}
.lsa{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.268800pt;}
.ls4{letter-spacing:-0.266667pt;}
.ls1c{letter-spacing:-0.215040pt;}
.ls11{letter-spacing:-0.213333pt;}
.lsb{letter-spacing:-0.053333pt;}
.ls28{letter-spacing:-0.045333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000213pt;}
.ls1e{letter-spacing:0.161280pt;}
.ls2{letter-spacing:0.208000pt;}
.ls1f{letter-spacing:0.215040pt;}
.lse{letter-spacing:0.426667pt;}
.ls27{letter-spacing:0.908463pt;}
.ls0{letter-spacing:2.288000pt;}
.ls10{letter-spacing:2.989813pt;}
.ls22{letter-spacing:5.825600pt;}
.ls21{letter-spacing:10.234133pt;}
.ls15{letter-spacing:10.967040pt;}
.ls14{letter-spacing:17.472000pt;}
.lsf{letter-spacing:19.309333pt;}
.ls17{letter-spacing:231.694827pt;}
.ls16{letter-spacing:240.559893pt;}
.ls19{letter-spacing:252.548373pt;}
.ls18{letter-spacing:321.527787pt;}
.ws5{word-spacing:-48.000000pt;}
.wsdc{word-spacing:-13.440000pt;}
.ws41{word-spacing:-12.533333pt;}
.ws1{word-spacing:-12.106667pt;}
.ws10a{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.840000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws12e{word-spacing:-11.573333pt;}
.ws11e{word-spacing:-11.520000pt;}
.ws14e{word-spacing:-11.306667pt;}
.ws109{word-spacing:-11.093333pt;}
.ws8{word-spacing:-10.896000pt;}
.wsdd{word-spacing:-10.656000pt;}
.ws6{word-spacing:-10.416000pt;}
.ws14f{word-spacing:-10.290667pt;}
.ws0{word-spacing:-9.258667pt;}
.ws7{word-spacing:-7.264000pt;}
.ws95{word-spacing:-7.058187pt;}
.ws4{word-spacing:-6.944000pt;}
.ws10b{word-spacing:-6.352368pt;}
.ws1a6{word-spacing:-4.986667pt;}
.ws12{word-spacing:-4.586667pt;}
.ws11f{word-spacing:-4.533333pt;}
.ws87{word-spacing:-4.480000pt;}
.ws11{word-spacing:-4.266667pt;}
.wsca{word-spacing:-4.106667pt;}
.ws10d{word-spacing:-3.946667pt;}
.wsf7{word-spacing:-3.893333pt;}
.wsde{word-spacing:-3.733333pt;}
.ws130{word-spacing:-3.626667pt;}
.ws47{word-spacing:-3.520000pt;}
.ws4b{word-spacing:-3.306667pt;}
.ws16a{word-spacing:-3.264000pt;}
.ws16d{word-spacing:-3.128000pt;}
.ws103{word-spacing:-3.120000pt;}
.ws156{word-spacing:-2.992000pt;}
.ws7d{word-spacing:-2.986667pt;}
.ws102{word-spacing:-2.976000pt;}
.wsf4{word-spacing:-2.933333pt;}
.ws5e{word-spacing:-2.880000pt;}
.ws155{word-spacing:-2.856000pt;}
.ws13b{word-spacing:-2.773333pt;}
.ws90{word-spacing:-2.666667pt;}
.ws91{word-spacing:-2.613333pt;}
.ws13a{word-spacing:-2.560000pt;}
.ws18f{word-spacing:-2.538667pt;}
.wsae{word-spacing:-2.506667pt;}
.ws137{word-spacing:-2.453333pt;}
.ws84{word-spacing:-2.400000pt;}
.wsaa{word-spacing:-2.346667pt;}
.ws1a3{word-spacing:-2.266667pt;}
.wsfb{word-spacing:-2.240000pt;}
.ws14d{word-spacing:-2.186667pt;}
.ws37{word-spacing:-2.112000pt;}
.ws13d{word-spacing:-2.080000pt;}
.ws169{word-spacing:-1.994667pt;}
.wsf1{word-spacing:-1.973333pt;}
.ws188{word-spacing:-1.949333pt;}
.ws83{word-spacing:-1.920000pt;}
.wsda{word-spacing:-1.866667pt;}
.ws187{word-spacing:-1.858667pt;}
.wsd9{word-spacing:-1.813333pt;}
.ws13f{word-spacing:-1.760000pt;}
.ws85{word-spacing:-1.706667pt;}
.ws11d{word-spacing:-1.680000pt;}
.ws19b{word-spacing:-1.677333pt;}
.ws80{word-spacing:-1.653333pt;}
.ws184{word-spacing:-1.632000pt;}
.ws8f{word-spacing:-1.600000pt;}
.ws142{word-spacing:-1.546667pt;}
.ws4c{word-spacing:-1.493333pt;}
.wse5{word-spacing:-1.440000pt;}
.wsc1{word-spacing:-1.386667pt;}
.wsed{word-spacing:-1.280000pt;}
.ws14a{word-spacing:-1.226667pt;}
.ws159{word-spacing:-1.224000pt;}
.wsd4{word-spacing:-1.173333pt;}
.ws11c{word-spacing:-1.152000pt;}
.ws19a{word-spacing:-1.133333pt;}
.ws8c{word-spacing:-1.120000pt;}
.ws1af{word-spacing:-1.088000pt;}
.wsb9{word-spacing:-1.066667pt;}
.ws59{word-spacing:-0.906667pt;}
.wse3{word-spacing:-0.853333pt;}
.ws11b{word-spacing:-0.816000pt;}
.wsc7{word-spacing:-0.800000pt;}
.wsaf{word-spacing:-0.746667pt;}
.ws19f{word-spacing:-0.725333pt;}
.ws148{word-spacing:-0.693333pt;}
.ws13{word-spacing:-0.640000pt;}
.ws1b9{word-spacing:-0.544000pt;}
.wsf9{word-spacing:-0.533333pt;}
.ws163{word-spacing:-0.408000pt;}
.ws1a9{word-spacing:-0.362667pt;}
.wscd{word-spacing:-0.320000pt;}
.ws2{word-spacing:-0.277333pt;}
.ws1a7{word-spacing:-0.272000pt;}
.ws3b{word-spacing:-0.240000pt;}
.ws100{word-spacing:-0.215040pt;}
.ws33{word-spacing:-0.213333pt;}
.ws117{word-spacing:-0.192000pt;}
.ws1ab{word-spacing:-0.181333pt;}
.wsff{word-spacing:-0.161280pt;}
.ws118{word-spacing:-0.144000pt;}
.ws15d{word-spacing:-0.136000pt;}
.wsd1{word-spacing:-0.106667pt;}
.wsc{word-spacing:-0.048000pt;}
.wsb{word-spacing:0.000000pt;}
.ws81{word-spacing:0.053333pt;}
.ws196{word-spacing:0.136000pt;}
.wscc{word-spacing:0.160000pt;}
.ws114{word-spacing:0.213333pt;}
.wsfd{word-spacing:0.215040pt;}
.wsd{word-spacing:0.266667pt;}
.wsfe{word-spacing:0.268800pt;}
.ws161{word-spacing:0.272000pt;}
.ws189{word-spacing:0.317333pt;}
.wse9{word-spacing:0.320000pt;}
.ws3d{word-spacing:0.336000pt;}
.ws2c{word-spacing:0.373333pt;}
.wsc9{word-spacing:0.426667pt;}
.ws10{word-spacing:0.480000pt;}
.ws2e{word-spacing:0.533333pt;}
.wsd2{word-spacing:0.586667pt;}
.wscb{word-spacing:0.640000pt;}
.ws3e{word-spacing:0.672000pt;}
.ws3{word-spacing:0.693333pt;}
.ws101{word-spacing:0.806400pt;}
.ws12d{word-spacing:0.816000pt;}
.ws43{word-spacing:0.853333pt;}
.wsfc{word-spacing:0.860160pt;}
.ws62{word-spacing:0.906667pt;}
.ws3a{word-spacing:0.912000pt;}
.ws13e{word-spacing:1.013333pt;}
.wsd0{word-spacing:1.120000pt;}
.ws38{word-spacing:1.152000pt;}
.ws1aa{word-spacing:1.178667pt;}
.ws108{word-spacing:1.200000pt;}
.ws14{word-spacing:1.280000pt;}
.wsf8{word-spacing:1.333333pt;}
.ws3c{word-spacing:1.344000pt;}
.wsce{word-spacing:1.386667pt;}
.ws7a{word-spacing:1.440000pt;}
.ws74{word-spacing:1.493333pt;}
.ws4a{word-spacing:1.546667pt;}
.ws2a{word-spacing:1.653333pt;}
.ws17c{word-spacing:1.677333pt;}
.ws16{word-spacing:1.706667pt;}
.ws44{word-spacing:1.760000pt;}
.ws17b{word-spacing:1.768000pt;}
.ws39{word-spacing:1.776000pt;}
.ws25{word-spacing:1.813333pt;}
.ws18{word-spacing:1.866667pt;}
.ws158{word-spacing:1.904000pt;}
.wse8{word-spacing:1.920000pt;}
.ws119{word-spacing:1.968000pt;}
.ws66{word-spacing:1.973333pt;}
.ws138{word-spacing:2.026667pt;}
.ws18e{word-spacing:2.040000pt;}
.ws11a{word-spacing:2.064000pt;}
.ws16c{word-spacing:2.130667pt;}
.ws4d{word-spacing:2.133333pt;}
.ws12b{word-spacing:2.160000pt;}
.ws199{word-spacing:2.221333pt;}
.ws23{word-spacing:2.240000pt;}
.ws12c{word-spacing:2.256000pt;}
.ws1b2{word-spacing:2.266667pt;}
.ws24{word-spacing:2.293333pt;}
.ws12a{word-spacing:2.304000pt;}
.ws64{word-spacing:2.506667pt;}
.ws5c{word-spacing:2.560000pt;}
.ws194{word-spacing:2.584000pt;}
.ws7f{word-spacing:2.613333pt;}
.wsbe{word-spacing:2.666667pt;}
.ws1b5{word-spacing:2.674667pt;}
.ws6f{word-spacing:2.720000pt;}
.ws89{word-spacing:2.773333pt;}
.ws124{word-spacing:2.880000pt;}
.wsad{word-spacing:2.933333pt;}
.ws8a{word-spacing:2.986667pt;}
.ws65{word-spacing:3.040000pt;}
.ws29{word-spacing:3.093333pt;}
.ws18d{word-spacing:3.128000pt;}
.ws8b{word-spacing:3.200000pt;}
.ws53{word-spacing:3.253333pt;}
.ws34{word-spacing:3.306667pt;}
.ws1b3{word-spacing:3.400000pt;}
.ws92{word-spacing:3.466667pt;}
.ws3f{word-spacing:3.504000pt;}
.ws88{word-spacing:3.573333pt;}
.ws197{word-spacing:3.581333pt;}
.ws45{word-spacing:3.626667pt;}
.ws171{word-spacing:3.672000pt;}
.ws1b0{word-spacing:3.717333pt;}
.ws9a{word-spacing:3.733333pt;}
.ws128{word-spacing:3.792000pt;}
.ws1b1{word-spacing:3.808000pt;}
.wsb0{word-spacing:3.893333pt;}
.ws129{word-spacing:3.936000pt;}
.ws15e{word-spacing:3.944000pt;}
.ws120{word-spacing:3.946667pt;}
.wsc3{word-spacing:4.000000pt;}
.wsf0{word-spacing:4.053333pt;}
.wsc5{word-spacing:4.106667pt;}
.ws141{word-spacing:4.160000pt;}
.wse7{word-spacing:4.213333pt;}
.ws181{word-spacing:4.306667pt;}
.ws9b{word-spacing:4.320000pt;}
.wsc8{word-spacing:4.373333pt;}
.ws183{word-spacing:4.397333pt;}
.ws106{word-spacing:4.416000pt;}
.ws147{word-spacing:4.426667pt;}
.ws162{word-spacing:4.442667pt;}
.ws1ad{word-spacing:4.533333pt;}
.ws40{word-spacing:4.560000pt;}
.wsbc{word-spacing:4.586667pt;}
.ws152{word-spacing:4.624000pt;}
.ws150{word-spacing:4.669333pt;}
.wsb2{word-spacing:4.693333pt;}
.wsc4{word-spacing:4.746667pt;}
.ws107{word-spacing:4.752000pt;}
.ws15{word-spacing:4.800000pt;}
.ws179{word-spacing:4.850667pt;}
.ws116{word-spacing:4.906667pt;}
.ws170{word-spacing:4.986667pt;}
.ws17{word-spacing:5.013333pt;}
.wsd8{word-spacing:5.066667pt;}
.ws16b{word-spacing:5.077333pt;}
.wsc2{word-spacing:5.120000pt;}
.ws72{word-spacing:5.226667pt;}
.wsc6{word-spacing:5.280000pt;}
.ws125{word-spacing:5.333333pt;}
.ws164{word-spacing:5.349333pt;}
.ws5b{word-spacing:5.440000pt;}
.ws35{word-spacing:5.472000pt;}
.ws50{word-spacing:5.493333pt;}
.ws173{word-spacing:5.530667pt;}
.wse4{word-spacing:5.546667pt;}
.ws93{word-spacing:5.600000pt;}
.ws104{word-spacing:5.616000pt;}
.ws36{word-spacing:5.664000pt;}
.ws52{word-spacing:5.706667pt;}
.wsc0{word-spacing:5.760000pt;}
.ws190{word-spacing:5.802667pt;}
.ws19d{word-spacing:5.893333pt;}
.ws86{word-spacing:5.920000pt;}
.wsab{word-spacing:5.973333pt;}
.wscf{word-spacing:6.026667pt;}
.ws191{word-spacing:6.029333pt;}
.wsd7{word-spacing:6.080000pt;}
.ws61{word-spacing:6.133333pt;}
.ws105{word-spacing:6.144000pt;}
.wsa8{word-spacing:6.186667pt;}
.ws60{word-spacing:6.240000pt;}
.wsa4{word-spacing:6.293333pt;}
.ws4e{word-spacing:6.346667pt;}
.ws143{word-spacing:6.400000pt;}
.wsf3{word-spacing:6.453333pt;}
.ws55{word-spacing:6.506667pt;}
.ws10f{word-spacing:6.666667pt;}
.wsd3{word-spacing:6.720000pt;}
.ws127{word-spacing:6.986667pt;}
.ws10e{word-spacing:7.040000pt;}
.wsbd{word-spacing:7.093333pt;}
.ws182{word-spacing:7.117333pt;}
.ws49{word-spacing:7.146667pt;}
.wsfa{word-spacing:7.200000pt;}
.ws1b4{word-spacing:7.298667pt;}
.ws18b{word-spacing:7.344000pt;}
.ws168{word-spacing:7.434667pt;}
.ws126{word-spacing:7.626667pt;}
.ws17e{word-spacing:7.752000pt;}
.ws132{word-spacing:7.840000pt;}
.ws17d{word-spacing:7.888000pt;}
.ws136{word-spacing:8.053333pt;}
.ws1a{word-spacing:8.106667pt;}
.ws77{word-spacing:8.160000pt;}
.ws16f{word-spacing:8.205333pt;}
.ws21{word-spacing:8.213333pt;}
.wsb7{word-spacing:8.266667pt;}
.ws14b{word-spacing:8.373333pt;}
.ws58{word-spacing:8.480000pt;}
.ws4f{word-spacing:8.640000pt;}
.ws6a{word-spacing:8.693333pt;}
.ws6c{word-spacing:8.800000pt;}
.wsd6{word-spacing:8.853333pt;}
.ws133{word-spacing:8.906667pt;}
.wsbf{word-spacing:8.960000pt;}
.ws7c{word-spacing:9.013333pt;}
.ws7b{word-spacing:9.066667pt;}
.ws18a{word-spacing:9.112000pt;}
.wsa5{word-spacing:9.120000pt;}
.ws6b{word-spacing:9.173333pt;}
.ws54{word-spacing:9.226667pt;}
.ws13c{word-spacing:9.280000pt;}
.wse0{word-spacing:9.333333pt;}
.wsf{word-spacing:9.386667pt;}
.wsdf{word-spacing:9.440000pt;}
.ws1a8{word-spacing:9.474667pt;}
.ws69{word-spacing:9.493333pt;}
.ws8d{word-spacing:9.546667pt;}
.ws180{word-spacing:9.565333pt;}
.wsa7{word-spacing:9.653333pt;}
.ws166{word-spacing:9.656000pt;}
.wsa9{word-spacing:9.706667pt;}
.ws22{word-spacing:9.813333pt;}
.wsb1{word-spacing:10.026667pt;}
.ws140{word-spacing:10.080000pt;}
.wsa6{word-spacing:10.133333pt;}
.ws46{word-spacing:10.186667pt;}
.ws113{word-spacing:10.240000pt;}
.ws51{word-spacing:10.346667pt;}
.ws178{word-spacing:10.381333pt;}
.wsba{word-spacing:10.453333pt;}
.wsac{word-spacing:10.506667pt;}
.ws9d{word-spacing:10.560000pt;}
.ws6e{word-spacing:10.613333pt;}
.ws195{word-spacing:10.653333pt;}
.ws28{word-spacing:10.666667pt;}
.ws112{word-spacing:10.720000pt;}
.ws15c{word-spacing:10.789333pt;}
.ws70{word-spacing:10.826667pt;}
.wsea{word-spacing:10.880000pt;}
.ws15a{word-spacing:10.970667pt;}
.wseb{word-spacing:10.986667pt;}
.ws9e{word-spacing:11.040000pt;}
.ws165{word-spacing:11.061333pt;}
.wsb5{word-spacing:11.093333pt;}
.wsf5{word-spacing:11.146667pt;}
.ws135{word-spacing:11.306667pt;}
.ws7e{word-spacing:11.413333pt;}
.ws131{word-spacing:11.466667pt;}
.ws63{word-spacing:11.520000pt;}
.ws12f{word-spacing:11.573333pt;}
.ws1a0{word-spacing:11.605333pt;}
.ws10c{word-spacing:11.680000pt;}
.ws5f{word-spacing:11.733333pt;}
.ws153{word-spacing:11.832000pt;}
.ws111{word-spacing:11.893333pt;}
.ws123{word-spacing:11.946667pt;}
.wsb8{word-spacing:12.053333pt;}
.ws20{word-spacing:12.160000pt;}
.ws14c{word-spacing:12.213333pt;}
.wse1{word-spacing:12.266667pt;}
.ws1a2{word-spacing:12.285333pt;}
.wsb3{word-spacing:12.373333pt;}
.ws48{word-spacing:12.586667pt;}
.ws30{word-spacing:12.640000pt;}
.ws115{word-spacing:12.693333pt;}
.ws56{word-spacing:12.800000pt;}
.ws185{word-spacing:12.829333pt;}
.wsa0{word-spacing:12.906667pt;}
.ws172{word-spacing:12.920000pt;}
.wsa1{word-spacing:13.013333pt;}
.ws19{word-spacing:13.173333pt;}
.ws18c{word-spacing:13.192000pt;}
.wsf6{word-spacing:13.440000pt;}
.ws32{word-spacing:13.493333pt;}
.ws17f{word-spacing:13.554667pt;}
.ws122{word-spacing:13.600000pt;}
.ws5a{word-spacing:13.653333pt;}
.ws1e{word-spacing:13.706667pt;}
.ws157{word-spacing:13.781333pt;}
.ws9f{word-spacing:13.813333pt;}
.ws31{word-spacing:13.920000pt;}
.ws146{word-spacing:14.026667pt;}
.ws1a1{word-spacing:14.053333pt;}
.ws1b6{word-spacing:14.234667pt;}
.wsd5{word-spacing:14.293333pt;}
.wse2{word-spacing:14.400000pt;}
.ws16e{word-spacing:14.506667pt;}
.ws5d{word-spacing:14.720000pt;}
.ws121{word-spacing:14.880000pt;}
.wsec{word-spacing:14.933333pt;}
.ws134{word-spacing:14.986667pt;}
.ws1d{word-spacing:15.040000pt;}
.ws110{word-spacing:15.253333pt;}
.ws8e{word-spacing:15.306667pt;}
.wsef{word-spacing:15.413333pt;}
.wsb6{word-spacing:15.573333pt;}
.ws144{word-spacing:15.626667pt;}
.ws26{word-spacing:15.733333pt;}
.wsdb{word-spacing:16.640000pt;}
.ws68{word-spacing:16.800000pt;}
.wsbb{word-spacing:17.120000pt;}
.ws76{word-spacing:17.226667pt;}
.ws75{word-spacing:17.386667pt;}
.ws1ae{word-spacing:17.408000pt;}
.wsa3{word-spacing:17.440000pt;}
.ws67{word-spacing:17.600000pt;}
.wsa2{word-spacing:17.813333pt;}
.ws1b7{word-spacing:17.997333pt;}
.ws19c{word-spacing:18.042667pt;}
.ws94{word-spacing:18.133333pt;}
.ws19e{word-spacing:18.224000pt;}
.ws139{word-spacing:18.240000pt;}
.ws27{word-spacing:18.400000pt;}
.ws193{word-spacing:18.450667pt;}
.ws1a4{word-spacing:18.496000pt;}
.wsee{word-spacing:18.506667pt;}
.ws1a5{word-spacing:18.586667pt;}
.ws2f{word-spacing:19.146667pt;}
.ws15f{word-spacing:19.266667pt;}
.ws96{word-spacing:19.306667pt;}
.ws15b{word-spacing:19.402667pt;}
.ws97{word-spacing:19.466667pt;}
.ws160{word-spacing:19.720000pt;}
.ws192{word-spacing:19.946667pt;}
.ws17a{word-spacing:19.992000pt;}
.ws98{word-spacing:20.000000pt;}
.ws6d{word-spacing:20.426667pt;}
.ws57{word-spacing:20.586667pt;}
.ws9c{word-spacing:20.693333pt;}
.ws99{word-spacing:21.120000pt;}
.ws1c{word-spacing:21.226667pt;}
.ws2d{word-spacing:21.546667pt;}
.ws1b8{word-spacing:21.669333pt;}
.ws145{word-spacing:21.760000pt;}
.ws2b{word-spacing:21.866667pt;}
.wse6{word-spacing:22.186667pt;}
.ws79{word-spacing:23.733333pt;}
.ws78{word-spacing:23.946667pt;}
.ws73{word-spacing:24.160000pt;}
.ws167{word-spacing:24.978667pt;}
.wsb4{word-spacing:25.066667pt;}
.ws42{word-spacing:25.920000pt;}
.ws1b{word-spacing:26.613333pt;}
.wsf2{word-spacing:26.773333pt;}
.ws176{word-spacing:26.882667pt;}
.ws198{word-spacing:27.472000pt;}
.ws1ac{word-spacing:27.608000pt;}
.ws149{word-spacing:27.946667pt;}
.ws71{word-spacing:28.480000pt;}
.ws174{word-spacing:28.514667pt;}
.ws151{word-spacing:28.696000pt;}
.ws177{word-spacing:29.466667pt;}
.ws175{word-spacing:37.536000pt;}
.ws1f{word-spacing:37.813333pt;}
.ws186{word-spacing:41.344000pt;}
.ws82{word-spacing:41.493333pt;}
.ws154{word-spacing:41.706667pt;}
.wse{word-spacing:44.266667pt;}
._11{margin-left:-15.893333pt;}
._f{margin-left:-10.304000pt;}
._12{margin-left:-7.061867pt;}
._3{margin-left:-5.456000pt;}
._a{margin-left:-4.562667pt;}
._1{margin-left:-3.370667pt;}
._5{margin-left:-2.074133pt;}
._0{margin-left:-1.024000pt;}
._2{width:0.981333pt;}
._4{width:2.185600pt;}
._18{width:3.590400pt;}
._9{width:5.341867pt;}
._b{width:7.094933pt;}
._e{width:8.865553pt;}
._13{width:9.993067pt;}
._10{width:13.739733pt;}
._c{width:16.859340pt;}
._8{width:19.722667pt;}
._7{width:22.530667pt;}
._d{width:23.975767pt;}
._14{width:26.291200pt;}
._6{width:38.552533pt;}
._16{width:82.575360pt;}
._17{width:86.661120pt;}
._15{width:211.515840pt;}
.fs8{font-size:27.984000pt;}
.fs6{font-size:31.093333pt;}
.fs5{font-size:32.000000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs7{font-size:53.760000pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y143{bottom:1.244560pt;}
.y16e{bottom:6.679200pt;}
.y144{bottom:13.087333pt;}
.y32{bottom:24.469200pt;}
.y1{bottom:56.692933pt;}
.yf{bottom:74.092400pt;}
.y16f{bottom:79.342533pt;}
.y1b7{bottom:87.090800pt;}
.y23{bottom:94.488133pt;}
.yfd{bottom:94.488267pt;}
.y1a0{bottom:95.224800pt;}
.y154{bottom:95.230267pt;}
.y14b{bottom:109.154800pt;}
.y221{bottom:109.252133pt;}
.y253{bottom:109.282000pt;}
.yca{bottom:110.510133pt;}
.y1ee{bottom:110.560400pt;}
.yfc{bottom:110.582933pt;}
.y67{bottom:110.655467pt;}
.y98{bottom:110.824267pt;}
.y22{bottom:110.880133pt;}
.y192{bottom:110.921200pt;}
.y153{bottom:111.230267pt;}
.y14a{bottom:123.821467pt;}
.y220{bottom:124.016000pt;}
.y252{bottom:124.075867pt;}
.yc9{bottom:126.532000pt;}
.yfb{bottom:126.677600pt;}
.y66{bottom:126.822800pt;}
.y97{bottom:127.160267pt;}
.y152{bottom:127.230267pt;}
.y21{bottom:127.272133pt;}
.y191{bottom:127.354267pt;}
.y184{bottom:127.748933pt;}
.y149{bottom:138.488133pt;}
.y21f{bottom:138.779867pt;}
.yc8{bottom:142.554000pt;}
.y1ed{bottom:142.704933pt;}
.y65{bottom:142.990133pt;}
.y151{bottom:143.230267pt;}
.y96{bottom:143.496400pt;}
.y20{bottom:143.664133pt;}
.y190{bottom:143.787333pt;}
.y251{bottom:144.539067pt;}
.y148{bottom:153.154800pt;}
.y21e{bottom:153.543733pt;}
.y1ec{bottom:158.243867pt;}
.yc7{bottom:158.575867pt;}
.yfa{bottom:158.866800pt;}
.y64{bottom:159.157467pt;}
.y150{bottom:159.230267pt;}
.y250{bottom:159.332933pt;}
.y95{bottom:159.832667pt;}
.y1f{bottom:160.056133pt;}
.y18f{bottom:160.220267pt;}
.y141{bottom:171.328000pt;}
.y21d{bottom:172.843067pt;}
.y1eb{bottom:173.782667pt;}
.y24f{bottom:174.126800pt;}
.yc6{bottom:174.597867pt;}
.yf9{bottom:174.961467pt;}
.y14f{bottom:175.230267pt;}
.y63{bottom:175.324800pt;}
.y94{bottom:176.168667pt;}
.y1e{bottom:176.448000pt;}
.y18e{bottom:176.653333pt;}
.y21c{bottom:187.606933pt;}
.y24e{bottom:188.920667pt;}
.y1ea{bottom:189.321600pt;}
.y137{bottom:189.910133pt;}
.yc5{bottom:190.619867pt;}
.yf8{bottom:191.056133pt;}
.y14e{bottom:191.230267pt;}
.y62{bottom:191.492133pt;}
.y93{bottom:192.504800pt;}
.y1d{bottom:192.840000pt;}
.y18d{bottom:193.086400pt;}
.y21b{bottom:202.370800pt;}
.y1e9{bottom:204.860533pt;}
.yc4{bottom:206.641733pt;}
.yf7{bottom:207.150667pt;}
.y14d{bottom:207.230267pt;}
.y61{bottom:207.659467pt;}
.y1c{bottom:209.232000pt;}
.y24d{bottom:209.383733pt;}
.y18c{bottom:209.519467pt;}
.y92{bottom:212.620400pt;}
.y138{bottom:212.623733pt;}
.y1e8{bottom:220.399467pt;}
.y21a{bottom:221.670133pt;}
.yc3{bottom:222.663733pt;}
.y14c{bottom:223.230267pt;}
.yf6{bottom:223.245333pt;}
.y60{bottom:223.826800pt;}
.y24c{bottom:223.910933pt;}
.y1b{bottom:225.624000pt;}
.y91{bottom:228.956533pt;}
.y139{bottom:235.659893pt;}
.y219{bottom:236.434000pt;}
.y24b{bottom:238.438133pt;}
.yf5{bottom:239.340000pt;}
.y5f{bottom:239.994000pt;}
.y1a{bottom:242.015867pt;}
.yc2{bottom:242.465200pt;}
.y90{bottom:245.292667pt;}
.y142{bottom:247.008400pt;}
.y218{bottom:251.197867pt;}
.y1e7{bottom:251.477200pt;}
.y24a{bottom:252.965333pt;}
.yf4{bottom:255.434667pt;}
.y5e{bottom:256.161333pt;}
.y1bd{bottom:256.368000pt;}
.y18b{bottom:257.212933pt;}
.y13a{bottom:258.373493pt;}
.y19{bottom:258.407867pt;}
.yc1{bottom:258.487200pt;}
.y8f{bottom:261.628800pt;}
.y1a9{bottom:263.893467pt;}
.y177{bottom:264.649067pt;}
.y1e6{bottom:267.016133pt;}
.y15b{bottom:269.374533pt;}
.y217{bottom:270.497200pt;}
.y1bc{bottom:271.034667pt;}
.yf3{bottom:271.529200pt;}
.y18a{bottom:271.879600pt;}
.y5d{bottom:272.328667pt;}
.y19a{bottom:273.153867pt;}
.y249{bottom:273.161733pt;}
.yc0{bottom:274.509067pt;}
.y18{bottom:274.799867pt;}
.y8e{bottom:277.964800pt;}
.y13b{bottom:281.087093pt;}
.y1e5{bottom:282.555067pt;}
.y216{bottom:285.261067pt;}
.y1bb{bottom:285.701333pt;}
.y189{bottom:286.546267pt;}
.yf2{bottom:287.623867pt;}
.y248{bottom:287.688933pt;}
.y5c{bottom:288.496000pt;}
.ybf{bottom:290.531067pt;}
.y17{bottom:291.191867pt;}
.y8d{bottom:294.300933pt;}
.y1e4{bottom:298.093867pt;}
.y215{bottom:300.024933pt;}
.y188{bottom:301.212933pt;}
.y247{bottom:302.216133pt;}
.yf1{bottom:303.718533pt;}
.y1a8{bottom:303.873333pt;}
.y13c{bottom:304.123253pt;}
.y5b{bottom:304.663333pt;}
.ybe{bottom:306.553067pt;}
.y16{bottom:307.583867pt;}
.y1b6{bottom:310.165333pt;}
.y8c{bottom:310.637067pt;}
.y1e3{bottom:313.632800pt;}
.y214{bottom:314.788800pt;}
.y246{bottom:316.743333pt;}
.y176{bottom:319.386667pt;}
.yf0{bottom:319.813200pt;}
.y5a{bottom:320.830667pt;}
.ybd{bottom:322.574933pt;}
.y15{bottom:323.975733pt;}
.y183{bottom:326.150667pt;}
.y13d{bottom:326.836853pt;}
.y8b{bottom:326.973200pt;}
.y1b4{bottom:329.022587pt;}
.y1b1{bottom:329.036027pt;}
.y1ae{bottom:329.049467pt;}
.y1ab{bottom:329.062907pt;}
.y1e2{bottom:329.171733pt;}
.y213{bottom:334.088133pt;}
.y1b3{bottom:334.788347pt;}
.y1b0{bottom:334.801787pt;}
.y1ad{bottom:334.815227pt;}
.y1aa{bottom:334.828667pt;}
.yef{bottom:335.907733pt;}
.y245{bottom:336.939733pt;}
.y59{bottom:336.998000pt;}
.ybc{bottom:338.596933pt;}
.y14{bottom:340.367733pt;}
.y8a{bottom:343.309333pt;}
.y1b5{bottom:344.061947pt;}
.y1b2{bottom:344.075387pt;}
.y1af{bottom:344.088827pt;}
.y1ac{bottom:344.102267pt;}
.y1e1{bottom:344.710533pt;}
.y181{bottom:345.021360pt;}
.y17e{bottom:345.034800pt;}
.y17b{bottom:345.048240pt;}
.y179{bottom:345.061680pt;}
.y212{bottom:348.852000pt;}
.y13e{bottom:349.873013pt;}
.y180{bottom:350.787120pt;}
.y17d{bottom:350.800560pt;}
.y178{bottom:350.814000pt;}
.y244{bottom:351.466933pt;}
.yee{bottom:352.002400pt;}
.y58{bottom:353.165333pt;}
.ybb{bottom:354.618933pt;}
.y13{bottom:356.759733pt;}
.y89{bottom:359.645333pt;}
.y182{bottom:360.060720pt;}
.y17f{bottom:360.074160pt;}
.y17c{bottom:360.087600pt;}
.y17a{bottom:360.101040pt;}
.y1e0{bottom:360.249467pt;}
.y243{bottom:365.994133pt;}
.yed{bottom:368.097067pt;}
.y211{bottom:368.151333pt;}
.y57{bottom:369.332667pt;}
.yba{bottom:370.640800pt;}
.y147{bottom:371.350267pt;}
.y13f{bottom:372.586613pt;}
.y12{bottom:373.151733pt;}
.y1df{bottom:375.788400pt;}
.y88{bottom:375.981467pt;}
.y210{bottom:382.915200pt;}
.yec{bottom:384.191733pt;}
.y56{bottom:385.499867pt;}
.y242{bottom:386.190667pt;}
.yb9{bottom:386.662800pt;}
.y11{bottom:389.543600pt;}
.y1a1{bottom:391.124933pt;}
.y1de{bottom:391.327333pt;}
.y146{bottom:391.509733pt;}
.y87{bottom:392.317600pt;}
.y140{bottom:395.300213pt;}
.y20f{bottom:397.679067pt;}
.yeb{bottom:400.286400pt;}
.y241{bottom:400.717867pt;}
.y55{bottom:401.667200pt;}
.yb8{bottom:402.684667pt;}
.y10{bottom:405.935600pt;}
.y1dd{bottom:406.866133pt;}
.y170{bottom:407.111600pt;}
.y275{bottom:407.288400pt;}
.y86{bottom:408.653733pt;}
.y145{bottom:411.350267pt;}
.y20e{bottom:412.442933pt;}
.y240{bottom:415.244933pt;}
.y1a2{bottom:416.083013pt;}
.yea{bottom:416.380933pt;}
.y54{bottom:417.834533pt;}
.yb7{bottom:418.706667pt;}
.y274{bottom:421.955067pt;}
.y1dc{bottom:422.405067pt;}
.y85{bottom:424.989733pt;}
.y20d{bottom:431.742267pt;}
.ye9{bottom:432.475600pt;}
.y53{bottom:434.001867pt;}
.yb6{bottom:434.728667pt;}
.y23f{bottom:435.441467pt;}
.y171{bottom:436.545200pt;}
.y273{bottom:436.621733pt;}
.y1db{bottom:437.944000pt;}
.y84{bottom:441.325867pt;}
.y1a3{bottom:441.363653pt;}
.y20c{bottom:446.506133pt;}
.ye8{bottom:448.570267pt;}
.y23e{bottom:449.968667pt;}
.y52{bottom:450.169200pt;}
.yb5{bottom:450.750533pt;}
.y272{bottom:451.288400pt;}
.y2f{bottom:453.424133pt;}
.y83{bottom:457.662000pt;}
.y20b{bottom:461.270000pt;}
.y23d{bottom:464.495867pt;}
.ye7{bottom:464.664933pt;}
.y27b{bottom:465.955067pt;}
.y172{bottom:465.978800pt;}
.y51{bottom:466.336533pt;}
.y1a4{bottom:466.644293pt;}
.yb4{bottom:466.772533pt;}
.y136{bottom:467.006000pt;}
.y11a{bottom:467.006133pt;}
.y1da{bottom:469.021733pt;}
.y271{bottom:471.624400pt;}
.y82{bottom:473.998133pt;}
.y20a{bottom:480.569200pt;}
.y27a{bottom:480.621733pt;}
.ye6{bottom:480.759467pt;}
.y50{bottom:482.503867pt;}
.y2e{bottom:482.757467pt;}
.yb3{bottom:482.794533pt;}
.y119{bottom:483.020133pt;}
.y135{bottom:483.150267pt;}
.y1d9{bottom:484.560667pt;}
.y23c{bottom:484.692267pt;}
.y270{bottom:486.291067pt;}
.y81{bottom:490.334267pt;}
.y1a5{bottom:491.924933pt;}
.y209{bottom:495.333067pt;}
.y173{bottom:495.412400pt;}
.y2d{bottom:497.424133pt;}
.y4f{bottom:498.671200pt;}
.yb2{bottom:498.816400pt;}
.y118{bottom:499.034000pt;}
.y23b{bottom:499.219467pt;}
.y134{bottom:499.294533pt;}
.y1d8{bottom:500.099600pt;}
.ye5{bottom:500.633733pt;}
.y26f{bottom:500.957733pt;}
.y80{bottom:506.670267pt;}
.y208{bottom:510.097067pt;}
.y2c{bottom:512.090800pt;}
.y23a{bottom:513.746667pt;}
.y4e{bottom:514.838400pt;}
.y117{bottom:515.047867pt;}
.y133{bottom:515.438667pt;}
.y26e{bottom:515.624400pt;}
.y1d7{bottom:515.638533pt;}
.ye4{bottom:516.728267pt;}
.y1a6{bottom:517.205573pt;}
.y207{bottom:524.860933pt;}
.y174{bottom:525.168560pt;}
.y2b{bottom:526.757467pt;}
.y7f{bottom:526.786000pt;}
.y279{bottom:530.291067pt;}
.y4d{bottom:531.005733pt;}
.y116{bottom:531.061733pt;}
.y1d6{bottom:531.177333pt;}
.y132{bottom:531.582933pt;}
.ye3{bottom:532.822933pt;}
.y239{bottom:533.943067pt;}
.yb1{bottom:534.639867pt;}
.y26d{bottom:535.960400pt;}
.y2a{bottom:541.424133pt;}
.y1a7{bottom:542.486213pt;}
.y206{bottom:544.160133pt;}
.y278{bottom:544.957733pt;}
.y1d5{bottom:546.716267pt;}
.y115{bottom:547.075733pt;}
.y4c{bottom:547.173067pt;}
.y131{bottom:547.727200pt;}
.y238{bottom:548.470267pt;}
.ye2{bottom:548.917600pt;}
.y26c{bottom:550.627067pt;}
.yb0{bottom:550.661867pt;}
.y175{bottom:554.602160pt;}
.y29{bottom:556.090800pt;}
.y205{bottom:558.924133pt;}
.y7e{bottom:559.458133pt;}
.y1d4{bottom:562.255200pt;}
.y237{bottom:562.997467pt;}
.y114{bottom:563.089600pt;}
.y4b{bottom:563.340400pt;}
.y130{bottom:563.871333pt;}
.ye1{bottom:565.012267pt;}
.y26b{bottom:565.293733pt;}
.yaf{bottom:566.683733pt;}
.y28{bottom:570.757467pt;}
.y204{bottom:573.688000pt;}
.y7d{bottom:575.794267pt;}
.y236{bottom:577.524667pt;}
.y1d3{bottom:577.794133pt;}
.y113{bottom:579.103467pt;}
.y4a{bottom:579.507733pt;}
.y26a{bottom:579.960400pt;}
.y12f{bottom:580.015600pt;}
.ye0{bottom:581.106800pt;}
.yae{bottom:582.705733pt;}
.y27{bottom:585.424133pt;}
.y7c{bottom:592.130400pt;}
.y203{bottom:592.987200pt;}
.y1d2{bottom:593.332933pt;}
.y269{bottom:594.627067pt;}
.y112{bottom:595.117333pt;}
.y49{bottom:595.675067pt;}
.y12e{bottom:596.159867pt;}
.ydf{bottom:597.201467pt;}
.y235{bottom:597.721200pt;}
.yad{bottom:598.727600pt;}
.y26{bottom:600.090800pt;}
.y202{bottom:607.751200pt;}
.y7b{bottom:608.466533pt;}
.y1d1{bottom:608.871867pt;}
.y111{bottom:611.131200pt;}
.y48{bottom:611.842400pt;}
.y234{bottom:612.248267pt;}
.y12d{bottom:612.304133pt;}
.yde{bottom:613.296133pt;}
.y1ba{bottom:614.667200pt;}
.yac{bottom:614.749600pt;}
.y25{bottom:614.757467pt;}
.y268{bottom:614.962933pt;}
.y187{bottom:618.068800pt;}
.y201{bottom:622.515067pt;}
.y1d0{bottom:624.410667pt;}
.y7a{bottom:624.802667pt;}
.y233{bottom:626.775467pt;}
.y110{bottom:627.145200pt;}
.y47{bottom:628.009733pt;}
.y12c{bottom:628.448267pt;}
.y1b9{bottom:629.333867pt;}
.ydd{bottom:629.390800pt;}
.y24{bottom:629.424133pt;}
.y267{bottom:629.629600pt;}
.yab{bottom:630.771600pt;}
.y186{bottom:632.735467pt;}
.y1cf{bottom:639.949600pt;}
.y79{bottom:641.138667pt;}
.y232{bottom:641.302667pt;}
.y200{bottom:641.814267pt;}
.y10f{bottom:643.159067pt;}
.y1b8{bottom:644.000533pt;}
.y46{bottom:644.177067pt;}
.y266{bottom:644.296267pt;}
.y12b{bottom:644.592533pt;}
.ydc{bottom:645.485333pt;}
.yaa{bottom:646.793600pt;}
.y185{bottom:647.402133pt;}
.y1ce{bottom:655.488533pt;}
.y231{bottom:655.829867pt;}
.y1ff{bottom:656.578267pt;}
.y78{bottom:657.474800pt;}
.y265{bottom:658.962933pt;}
.y10e{bottom:659.172933pt;}
.y45{bottom:660.344267pt;}
.y12a{bottom:660.736800pt;}
.ydb{bottom:661.580000pt;}
.y199{bottom:662.173333pt;}
.ya9{bottom:662.815467pt;}
.y15a{bottom:665.574667pt;}
.y19f{bottom:668.733600pt;}
.y30{bottom:670.345333pt;}
.y1cd{bottom:671.027467pt;}
.y1fe{bottom:671.342133pt;}
.y77{bottom:673.810933pt;}
.y10d{bottom:675.186800pt;}
.y230{bottom:676.026400pt;}
.y44{bottom:676.511600pt;}
.y129{bottom:676.880933pt;}
.yda{bottom:677.674667pt;}
.ya8{bottom:678.837467pt;}
.y264{bottom:679.298933pt;}
.y1fd{bottom:686.106000pt;}
.y1cc{bottom:686.566267pt;}
.y19c{bottom:687.632373pt;}
.y76{bottom:690.147067pt;}
.y22f{bottom:690.553600pt;}
.y16c{bottom:691.084240pt;}
.y169{bottom:691.097680pt;}
.y166{bottom:691.111120pt;}
.y163{bottom:691.124560pt;}
.y160{bottom:691.138000pt;}
.y15d{bottom:691.151440pt;}
.y10c{bottom:691.200800pt;}
.y43{bottom:692.678933pt;}
.y128{bottom:693.025200pt;}
.y19e{bottom:693.384693pt;}
.y19b{bottom:693.398133pt;}
.yd9{bottom:693.769333pt;}
.y263{bottom:693.965600pt;}
.ya7{bottom:694.859333pt;}
.y16b{bottom:696.850000pt;}
.y168{bottom:696.863440pt;}
.y165{bottom:696.876880pt;}
.y162{bottom:696.890320pt;}
.y15f{bottom:696.903760pt;}
.y15c{bottom:696.917200pt;}
.y1fc{bottom:700.869733pt;}
.y1cb{bottom:702.105200pt;}
.y19d{bottom:702.671733pt;}
.y22e{bottom:705.080667pt;}
.y16d{bottom:706.123600pt;}
.y16a{bottom:706.137040pt;}
.y167{bottom:706.150480pt;}
.y164{bottom:706.163920pt;}
.y161{bottom:706.177360pt;}
.y15e{bottom:706.190800pt;}
.y75{bottom:706.483200pt;}
.y10b{bottom:707.214667pt;}
.y262{bottom:708.632267pt;}
.y42{bottom:708.846267pt;}
.y127{bottom:709.169467pt;}
.yd8{bottom:709.863867pt;}
.ya6{bottom:710.881333pt;}
.y1ca{bottom:717.644133pt;}
.ye{bottom:717.933333pt;}
.y22d{bottom:719.607867pt;}
.y1fb{bottom:720.169067pt;}
.y74{bottom:722.819200pt;}
.y41{bottom:725.013600pt;}
.yd7{bottom:725.958533pt;}
.ya5{bottom:726.903333pt;}
.y10a{bottom:727.008133pt;}
.y261{bottom:728.968267pt;}
.yd{bottom:732.333333pt;}
.y1c9{bottom:733.183067pt;}
.y1fa{bottom:734.933067pt;}
.y73{bottom:739.155333pt;}
.y22c{bottom:739.804400pt;}
.y40{bottom:741.180933pt;}
.y126{bottom:741.457867pt;}
.yd6{bottom:742.053200pt;}
.ya4{bottom:742.925333pt;}
.y109{bottom:743.022000pt;}
.y260{bottom:743.634933pt;}
.yc{bottom:746.733333pt;}
.y1c8{bottom:748.721867pt;}
.y193{bottom:749.693867pt;}
.y1f9{bottom:749.696800pt;}
.y155{bottom:753.213467pt;}
.y22b{bottom:754.331600pt;}
.yb{bottom:754.466667pt;}
.y72{bottom:755.491467pt;}
.y3f{bottom:757.348267pt;}
.y125{bottom:757.602133pt;}
.yd5{bottom:758.147733pt;}
.y25f{bottom:758.301600pt;}
.ya3{bottom:758.947200pt;}
.y108{bottom:759.035867pt;}
.y1c7{bottom:764.260800pt;}
.y1f8{bottom:764.460800pt;}
.y22a{bottom:768.858667pt;}
.y71{bottom:771.827600pt;}
.y25e{bottom:772.968267pt;}
.y3e{bottom:773.515600pt;}
.y124{bottom:773.746400pt;}
.yd4{bottom:774.242400pt;}
.ya2{bottom:774.969200pt;}
.y107{bottom:775.049733pt;}
.y1c6{bottom:779.799733pt;}
.y194{bottom:780.417707pt;}
.y229{bottom:783.385867pt;}
.y1f7{bottom:783.760133pt;}
.ya{bottom:786.466667pt;}
.y70{bottom:788.163600pt;}
.y156{bottom:789.367067pt;}
.y3d{bottom:789.682800pt;}
.y123{bottom:789.890667pt;}
.yd3{bottom:790.336933pt;}
.ya1{bottom:790.991067pt;}
.y106{bottom:791.063600pt;}
.y25d{bottom:793.304133pt;}
.y1f6{bottom:798.523867pt;}
.y228{bottom:803.582400pt;}
.y6f{bottom:804.499733pt;}
.y3c{bottom:805.850133pt;}
.y122{bottom:806.034933pt;}
.yd2{bottom:806.431600pt;}
.ya0{bottom:807.013067pt;}
.y105{bottom:807.077600pt;}
.y9{bottom:807.266667pt;}
.y25c{bottom:807.970800pt;}
.y1c5{bottom:810.877467pt;}
.y195{bottom:811.464107pt;}
.y1f5{bottom:813.287867pt;}
.y227{bottom:818.109600pt;}
.y6e{bottom:820.835867pt;}
.y3b{bottom:822.017467pt;}
.y121{bottom:822.179067pt;}
.yd1{bottom:822.526267pt;}
.y25b{bottom:822.637467pt;}
.y9f{bottom:823.035067pt;}
.y104{bottom:823.091333pt;}
.y157{bottom:825.843227pt;}
.y1c4{bottom:826.416400pt;}
.y8{bottom:828.066667pt;}
.y1f4{bottom:832.587200pt;}
.y226{bottom:832.636667pt;}
.y6d{bottom:837.172000pt;}
.y277{bottom:837.304133pt;}
.y3a{bottom:838.184800pt;}
.y120{bottom:838.323333pt;}
.yd0{bottom:838.620933pt;}
.y9e{bottom:839.057067pt;}
.y103{bottom:839.105333pt;}
.y1c3{bottom:841.955333pt;}
.y196{bottom:842.510507pt;}
.y25a{bottom:842.973467pt;}
.y225{bottom:847.163867pt;}
.y1f3{bottom:847.350933pt;}
.y6c{bottom:853.508267pt;}
.y39{bottom:854.352133pt;}
.y11f{bottom:854.467600pt;}
.ycf{bottom:854.715600pt;}
.y9d{bottom:855.078933pt;}
.y102{bottom:855.119200pt;}
.y1c2{bottom:857.494267pt;}
.y259{bottom:857.640133pt;}
.y1f2{bottom:862.114933pt;}
.y158{bottom:862.319387pt;}
.y224{bottom:867.360400pt;}
.y6b{bottom:869.844267pt;}
.y38{bottom:870.519467pt;}
.y11e{bottom:870.611867pt;}
.yce{bottom:870.810267pt;}
.y9c{bottom:871.100933pt;}
.y101{bottom:871.133200pt;}
.y258{bottom:872.306800pt;}
.y1c1{bottom:873.033067pt;}
.y197{bottom:873.234347pt;}
.y1f1{bottom:881.414267pt;}
.y223{bottom:881.887467pt;}
.y6a{bottom:886.180400pt;}
.y37{bottom:886.686800pt;}
.y11d{bottom:886.756000pt;}
.ycd{bottom:886.904800pt;}
.y276{bottom:886.973467pt;}
.y9b{bottom:887.122933pt;}
.y100{bottom:887.147067pt;}
.y1c0{bottom:888.572000pt;}
.y31{bottom:890.268533pt;}
.y257{bottom:892.642800pt;}
.y7{bottom:895.881733pt;}
.y1f0{bottom:896.178000pt;}
.y222{bottom:896.414667pt;}
.y159{bottom:898.795547pt;}
.y69{bottom:902.516533pt;}
.y36{bottom:902.854133pt;}
.y11c{bottom:902.900267pt;}
.ycc{bottom:902.999467pt;}
.y9a{bottom:903.144800pt;}
.yff{bottom:903.160933pt;}
.y1bf{bottom:904.110933pt;}
.y198{bottom:904.280747pt;}
.y256{bottom:907.309467pt;}
.y1ef{bottom:910.941867pt;}
.y6{bottom:911.881733pt;}
.y2{bottom:917.508667pt;}
.y68{bottom:918.852667pt;}
.y35{bottom:919.021467pt;}
.y11b{bottom:919.044533pt;}
.ycb{bottom:919.094133pt;}
.y99{bottom:919.166800pt;}
.yfe{bottom:919.174800pt;}
.y1be{bottom:919.649867pt;}
.y255{bottom:921.976133pt;}
.y5{bottom:927.881733pt;}
.y34{bottom:935.188667pt;}
.y254{bottom:936.642800pt;}
.y3{bottom:942.192933pt;}
.y4{bottom:943.881733pt;}
.y33{bottom:972.984000pt;}
.h8{height:25.952000pt;}
.h3{height:30.464000pt;}
.hb{height:34.602667pt;}
.h14{height:36.765333pt;}
.hd{height:36.933750pt;}
.hc{height:37.653333pt;}
.ha{height:38.080000pt;}
.h9{height:38.928000pt;}
.h4{height:41.888000pt;}
.hf{height:42.255990pt;}
.h5{height:43.253333pt;}
.h2{height:47.578667pt;}
.h6{height:49.504000pt;}
.h7{height:49.514667pt;}
.he{height:258.520000pt;}
.h13{height:273.638667pt;}
.h11{height:274.393333pt;}
.h10{height:279.306667pt;}
.h12{height:282.709333pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w2{width:470.929333pt;}
.w3{width:573.354667pt;}
.w5{width:580.914667pt;}
.w4{width:586.582667pt;}
.w6{width:595.276000pt;}
.w0{width:737.008000pt;}
.w1{width:737.333333pt;}
.x0{left:0.000000pt;}
.x35{left:9.743733pt;}
.x17{left:11.121467pt;}
.x4f{left:20.736933pt;}
.x15{left:21.896800pt;}
.x1b{left:23.369333pt;}
.x38{left:27.693200pt;}
.x65{left:29.689200pt;}
.xc{left:47.244133pt;}
.x8{left:52.192933pt;}
.x16{left:56.236000pt;}
.x34{left:63.400000pt;}
.xb{left:65.664400pt;}
.x64{left:70.866667pt;}
.x7d{left:73.700800pt;}
.x37{left:75.212000pt;}
.x4e{left:78.046667pt;}
.xa{left:79.488000pt;}
.x1a{left:81.826667pt;}
.x5{left:93.072400pt;}
.x9{left:97.368133pt;}
.x4d{left:98.783600pt;}
.x6{left:101.219200pt;}
.x36{left:102.905200pt;}
.x19{left:105.196000pt;}
.xe{left:114.466667pt;}
.x14{left:133.038667pt;}
.x63{left:139.437333pt;}
.x50{left:140.418400pt;}
.x4c{left:143.448800pt;}
.x39{left:144.503600pt;}
.x1c{left:146.622400pt;}
.x7c{left:147.823467pt;}
.x66{left:148.839067pt;}
.x13{left:154.935467pt;}
.x51{left:162.540640pt;}
.x3a{left:166.558640pt;}
.x1d{left:168.328000pt;}
.x67{left:170.934427pt;}
.x52{left:184.662880pt;}
.x3b{left:188.613680pt;}
.x1e{left:190.033600pt;}
.x68{left:193.029787pt;}
.x10{left:204.685200pt;}
.x53{left:206.785120pt;}
.x3c{left:210.668720pt;}
.x1f{left:211.739200pt;}
.x69{left:215.125147pt;}
.x18{left:219.627600pt;}
.x54{left:228.907360pt;}
.x20{left:233.444800pt;}
.x2{left:236.880267pt;}
.x3{left:238.965867pt;}
.x55{left:251.029600pt;}
.x21{left:255.150400pt;}
.x7{left:259.530667pt;}
.x56{left:273.151840pt;}
.xf{left:275.248800pt;}
.x22{left:276.856000pt;}
.x6a{left:281.411227pt;}
.x11{left:284.952133pt;}
.x57{left:295.274080pt;}
.x23{left:298.561600pt;}
.x6b{left:303.506587pt;}
.x58{left:317.396320pt;}
.x24{left:320.267200pt;}
.x6c{left:325.601947pt;}
.x59{left:339.518560pt;}
.x25{left:341.972800pt;}
.x3d{left:342.998960pt;}
.x6d{left:347.697307pt;}
.x5a{left:361.640800pt;}
.x26{left:363.678400pt;}
.x3e{left:365.054000pt;}
.x6e{left:369.792667pt;}
.xd{left:381.732267pt;}
.x5b{left:383.763040pt;}
.x27{left:385.384000pt;}
.x3f{left:387.109040pt;}
.x6f{left:391.888027pt;}
.x12{left:400.629867pt;}
.x5c{left:405.885280pt;}
.x28{left:407.089600pt;}
.x7e{left:408.188933pt;}
.x40{left:409.164080pt;}
.x70{left:413.983387pt;}
.x29{left:428.795200pt;}
.x41{left:431.219120pt;}
.x71{left:436.078747pt;}
.x2a{left:450.500800pt;}
.x42{left:453.274160pt;}
.x72{left:458.174107pt;}
.x2b{left:472.206400pt;}
.x43{left:475.329200pt;}
.x73{left:480.269467pt;}
.x2c{left:493.912000pt;}
.x44{left:497.384240pt;}
.x74{left:502.364827pt;}
.x2d{left:515.617600pt;}
.x45{left:519.439280pt;}
.x75{left:524.460187pt;}
.x2e{left:537.323200pt;}
.x5d{left:538.618720pt;}
.x46{left:541.494320pt;}
.x4{left:543.496000pt;}
.x76{left:546.555547pt;}
.x2f{left:559.028800pt;}
.x5e{left:560.740960pt;}
.x47{left:563.549360pt;}
.x77{left:568.650907pt;}
.x30{left:580.734400pt;}
.x5f{left:582.863200pt;}
.x48{left:585.604400pt;}
.x78{left:590.746267pt;}
.x31{left:602.440000pt;}
.x60{left:604.985440pt;}
.x49{left:607.659440pt;}
.x79{left:612.841627pt;}
.x32{left:624.145600pt;}
.x61{left:627.107680pt;}
.x4a{left:629.714480pt;}
.x7a{left:634.936987pt;}
.x33{left:645.851200pt;}
.x62{left:649.229920pt;}
.x4b{left:651.769520pt;}
.x7b{left:657.032347pt;}
.x1{left:668.644000pt;}
}




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