
    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_b10e930b7a9c482592ac564e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_862a5b14485116cd37287d25.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_821f0e97faca42facb4fd8b8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d353d53cdb12b16eadeb986a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.728027;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_05da1de1887ce0bf9ae41baa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_64ecba16b736dd91f3882571.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_42aea7f6e73def8a3033bdbf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_284ae798668002ba65c4e5ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8bc32cd052743ad80868a439.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_34d01e495c6592205a382821.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.920410;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_b70a9ad868b17f4839dacad7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v4{vertical-align:22.610400px;}
.v1{vertical-align:30.381600px;}
.ls54{letter-spacing:-4.440000px;}
.ls88{letter-spacing:-2.880000px;}
.ls89{letter-spacing:-2.304000px;}
.ls35{letter-spacing:-1.740000px;}
.ls86{letter-spacing:-1.632000px;}
.ls44{letter-spacing:-1.554000px;}
.ls85{letter-spacing:-1.344000px;}
.ls53{letter-spacing:-1.020000px;}
.ls3{letter-spacing:-0.780000px;}
.ls47{letter-spacing:-0.294000px;}
.ls45{letter-spacing:-0.252000px;}
.ls37{letter-spacing:-0.240000px;}
.ls5{letter-spacing:-0.225000px;}
.ls70{letter-spacing:-0.192000px;}
.ls34{letter-spacing:-0.180000px;}
.ls43{letter-spacing:-0.168000px;}
.ls41{letter-spacing:-0.126000px;}
.ls4{letter-spacing:-0.120000px;}
.ls87{letter-spacing:-0.096000px;}
.ls42{letter-spacing:-0.084000px;}
.ls36{letter-spacing:-0.060000px;}
.ls71{letter-spacing:-0.048000px;}
.ls46{letter-spacing:-0.042000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.ls2b{letter-spacing:0.060000px;}
.ls64{letter-spacing:0.096000px;}
.ls40{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.180000px;}
.ls61{letter-spacing:0.192000px;}
.ls38{letter-spacing:0.240000px;}
.ls6f{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.300000px;}
.ls72{letter-spacing:0.336000px;}
.ls2a{letter-spacing:0.360000px;}
.ls73{letter-spacing:0.384000px;}
.ls24{letter-spacing:0.420000px;}
.ls82{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.480000px;}
.ls77{letter-spacing:0.528000px;}
.ls14{letter-spacing:0.540000px;}
.ls67{letter-spacing:0.576000px;}
.ls11{letter-spacing:0.600000px;}
.ls60{letter-spacing:0.624000px;}
.ls1e{letter-spacing:0.660000px;}
.ls65{letter-spacing:0.672000px;}
.ls20{letter-spacing:0.720000px;}
.ls8d{letter-spacing:0.768000px;}
.ls3c{letter-spacing:0.780000px;}
.ls6c{letter-spacing:0.816000px;}
.ls27{letter-spacing:0.840000px;}
.ls7b{letter-spacing:0.864000px;}
.ls2c{letter-spacing:0.900000px;}
.ls63{letter-spacing:0.912000px;}
.ls2d{letter-spacing:0.960000px;}
.ls7d{letter-spacing:1.008000px;}
.ls19{letter-spacing:1.020000px;}
.ls62{letter-spacing:1.056000px;}
.lse{letter-spacing:1.080000px;}
.ls6d{letter-spacing:1.104000px;}
.ls49{letter-spacing:1.140000px;}
.ls6b{letter-spacing:1.152000px;}
.ls8b{letter-spacing:1.192200px;}
.ls6{letter-spacing:1.200000px;}
.ls66{letter-spacing:1.248000px;}
.ls4a{letter-spacing:1.260000px;}
.ls76{letter-spacing:1.296000px;}
.lsa{letter-spacing:1.320000px;}
.ls7e{letter-spacing:1.344000px;}
.ls23{letter-spacing:1.380000px;}
.ls79{letter-spacing:1.392000px;}
.ls4d{letter-spacing:1.440000px;}
.ls7a{letter-spacing:1.488000px;}
.lsd{letter-spacing:1.500000px;}
.ls74{letter-spacing:1.536000px;}
.ls1c{letter-spacing:1.560000px;}
.ls8c{letter-spacing:1.584000px;}
.ls3a{letter-spacing:1.620000px;}
.ls78{letter-spacing:1.632000px;}
.ls18{letter-spacing:1.680000px;}
.ls5f{letter-spacing:1.728000px;}
.lsc{letter-spacing:1.740000px;}
.ls6e{letter-spacing:1.776000px;}
.ls9{letter-spacing:1.800000px;}
.ls51{letter-spacing:1.860000px;}
.ls4b{letter-spacing:1.920000px;}
.ls7f{letter-spacing:1.968000px;}
.ls26{letter-spacing:1.980000px;}
.ls7c{letter-spacing:2.016000px;}
.ls33{letter-spacing:2.040000px;}
.ls8a{letter-spacing:2.064000px;}
.ls7{letter-spacing:2.100000px;}
.ls12{letter-spacing:2.160000px;}
.ls83{letter-spacing:2.208000px;}
.ls16{letter-spacing:2.220000px;}
.ls1d{letter-spacing:2.280000px;}
.ls59{letter-spacing:2.340000px;}
.ls8e{letter-spacing:2.352000px;}
.ls17{letter-spacing:2.400000px;}
.lsb{letter-spacing:2.460000px;}
.ls84{letter-spacing:2.496000px;}
.ls21{letter-spacing:2.520000px;}
.ls22{letter-spacing:2.580000px;}
.ls8{letter-spacing:2.640000px;}
.ls13{letter-spacing:2.700000px;}
.ls5a{letter-spacing:2.760000px;}
.ls50{letter-spacing:2.820000px;}
.ls28{letter-spacing:2.880000px;}
.ls3b{letter-spacing:2.940000px;}
.ls69{letter-spacing:2.976000px;}
.ls4f{letter-spacing:3.000000px;}
.ls81{letter-spacing:3.024000px;}
.ls39{letter-spacing:3.060000px;}
.ls80{letter-spacing:3.072000px;}
.ls25{letter-spacing:3.120000px;}
.ls2f{letter-spacing:3.180000px;}
.ls30{letter-spacing:3.240000px;}
.ls75{letter-spacing:3.264000px;}
.ls15{letter-spacing:3.300000px;}
.ls4c{letter-spacing:3.360000px;}
.ls4e{letter-spacing:3.420000px;}
.ls6a{letter-spacing:3.456000px;}
.ls1f{letter-spacing:3.480000px;}
.ls48{letter-spacing:3.540000px;}
.ls32{letter-spacing:3.600000px;}
.ls3e{letter-spacing:3.780000px;}
.ls55{letter-spacing:3.840000px;}
.ls1b{letter-spacing:3.900000px;}
.ls29{letter-spacing:3.960000px;}
.ls5c{letter-spacing:4.020000px;}
.ls3d{letter-spacing:4.080000px;}
.ls5d{letter-spacing:4.260000px;}
.ls3f{letter-spacing:4.560000px;}
.ls2e{letter-spacing:4.620000px;}
.ls68{letter-spacing:4.656000px;}
.ls56{letter-spacing:4.920000px;}
.ls57{letter-spacing:5.160000px;}
.ls31{letter-spacing:5.340000px;}
.ls52{letter-spacing:5.640000px;}
.ls58{letter-spacing:6.000000px;}
.ls5b{letter-spacing:7.380000px;}
.ls5e{letter-spacing:8.400000px;}
.ls0{letter-spacing:59.532876px;}
.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;}
}
.ws51{word-spacing:-17.100000px;}
.ws5a{word-spacing:-17.040000px;}
.ws1{word-spacing:-16.680000px;}
.ws5c{word-spacing:-16.656000px;}
.ws9{word-spacing:-15.540000px;}
.ws7e{word-spacing:-15.072000px;}
.ws3d{word-spacing:-14.940000px;}
.ws7b{word-spacing:-14.400000px;}
.ws77{word-spacing:-13.536000px;}
.ws3{word-spacing:-13.344000px;}
.ws78{word-spacing:-13.296000px;}
.ws5f{word-spacing:-13.200000px;}
.ws98{word-spacing:-13.056000px;}
.ws5d{word-spacing:-12.816000px;}
.ws5b{word-spacing:-12.672000px;}
.ws79{word-spacing:-12.624000px;}
.ws76{word-spacing:-12.384000px;}
.ws5e{word-spacing:-12.288000px;}
.ws2{word-spacing:-12.285000px;}
.ws74{word-spacing:-12.000000px;}
.ws75{word-spacing:-11.952000px;}
.ws7d{word-spacing:-11.904000px;}
.ws7a{word-spacing:-10.656000px;}
.ws2c{word-spacing:-10.500000px;}
.ws7c{word-spacing:-10.368000px;}
.ws0{word-spacing:-10.210662px;}
.ws80{word-spacing:-9.696000px;}
.ws7f{word-spacing:-9.120000px;}
.ws6d{word-spacing:-4.656000px;}
.ws3b{word-spacing:-3.420000px;}
.ws95{word-spacing:-3.072000px;}
.ws5{word-spacing:-2.886000px;}
.ws46{word-spacing:-2.880000px;}
.ws99{word-spacing:-2.640000px;}
.ws8e{word-spacing:-2.400000px;}
.ws6{word-spacing:-2.331000px;}
.ws27{word-spacing:-2.310000px;}
.ws42{word-spacing:-2.220000px;}
.ws9a{word-spacing:-2.208000px;}
.ws3f{word-spacing:-2.100000px;}
.ws14{word-spacing:-2.040000px;}
.ws97{word-spacing:-1.920000px;}
.ws2a{word-spacing:-1.554000px;}
.ws87{word-spacing:-1.536000px;}
.ws30{word-spacing:-1.500000px;}
.ws53{word-spacing:-1.440000px;}
.ws8b{word-spacing:-1.392000px;}
.ws92{word-spacing:-1.344000px;}
.ws88{word-spacing:-1.296000px;}
.ws65{word-spacing:-1.200000px;}
.ws89{word-spacing:-1.104000px;}
.ws54{word-spacing:-1.080000px;}
.ws67{word-spacing:-1.056000px;}
.ws90{word-spacing:-1.008000px;}
.ws83{word-spacing:-0.960000px;}
.ws70{word-spacing:-0.912000px;}
.ws1f{word-spacing:-0.900000px;}
.ws71{word-spacing:-0.864000px;}
.ws6f{word-spacing:-0.816000px;}
.ws45{word-spacing:-0.780000px;}
.ws28{word-spacing:-0.756000px;}
.ws64{word-spacing:-0.720000px;}
.ws10{word-spacing:-0.660000px;}
.ws8a{word-spacing:-0.624000px;}
.ws8f{word-spacing:-0.576000px;}
.ws31{word-spacing:-0.480000px;}
.ws96{word-spacing:-0.432000px;}
.ws41{word-spacing:-0.420000px;}
.ws85{word-spacing:-0.384000px;}
.ws15{word-spacing:-0.360000px;}
.ws84{word-spacing:-0.336000px;}
.wse{word-spacing:-0.300000px;}
.ws73{word-spacing:-0.288000px;}
.ws1b{word-spacing:-0.240000px;}
.ws68{word-spacing:-0.192000px;}
.ws23{word-spacing:-0.120000px;}
.ws22{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws4e{word-spacing:0.060000px;}
.ws29{word-spacing:0.084000px;}
.ws94{word-spacing:0.096000px;}
.ws7{word-spacing:0.120000px;}
.wsd{word-spacing:0.180000px;}
.ws6a{word-spacing:0.192000px;}
.ws8{word-spacing:0.225000px;}
.ws37{word-spacing:0.240000px;}
.ws93{word-spacing:0.336000px;}
.ws39{word-spacing:0.360000px;}
.ws3e{word-spacing:0.420000px;}
.ws8c{word-spacing:0.432000px;}
.ws3c{word-spacing:0.480000px;}
.ws59{word-spacing:0.600000px;}
.ws9b{word-spacing:0.624000px;}
.ws3a{word-spacing:0.660000px;}
.ws4b{word-spacing:0.720000px;}
.ws38{word-spacing:0.780000px;}
.ws47{word-spacing:0.840000px;}
.ws20{word-spacing:0.900000px;}
.ws9c{word-spacing:0.912000px;}
.ws40{word-spacing:1.020000px;}
.ws18{word-spacing:1.080000px;}
.ws33{word-spacing:1.260000px;}
.ws8d{word-spacing:1.296000px;}
.ws72{word-spacing:1.344000px;}
.ws35{word-spacing:1.440000px;}
.ws48{word-spacing:1.536000px;}
.ws2e{word-spacing:1.560000px;}
.ws91{word-spacing:1.584000px;}
.ws1c{word-spacing:1.620000px;}
.ws57{word-spacing:1.680000px;}
.ws11{word-spacing:1.740000px;}
.ws6b{word-spacing:1.824000px;}
.ws2f{word-spacing:1.920000px;}
.ws21{word-spacing:1.980000px;}
.ws81{word-spacing:2.016000px;}
.ws4f{word-spacing:2.100000px;}
.ws49{word-spacing:2.400000px;}
.ws43{word-spacing:2.520000px;}
.ws4c{word-spacing:2.580000px;}
.ws50{word-spacing:2.640000px;}
.ws13{word-spacing:2.820000px;}
.ws69{word-spacing:2.928000px;}
.ws6c{word-spacing:2.976000px;}
.ws56{word-spacing:3.060000px;}
.ws32{word-spacing:3.120000px;}
.ws2d{word-spacing:3.180000px;}
.wsf{word-spacing:3.240000px;}
.ws6e{word-spacing:3.264000px;}
.ws58{word-spacing:3.360000px;}
.ws1e{word-spacing:3.480000px;}
.ws82{word-spacing:3.696000px;}
.ws4d{word-spacing:3.720000px;}
.ws63{word-spacing:3.744000px;}
.ws24{word-spacing:3.840000px;}
.ws62{word-spacing:3.936000px;}
.ws55{word-spacing:3.960000px;}
.ws66{word-spacing:3.984000px;}
.ws1a{word-spacing:4.080000px;}
.ws16{word-spacing:4.260000px;}
.ws17{word-spacing:4.320000px;}
.ws1d{word-spacing:4.440000px;}
.ws4a{word-spacing:4.500000px;}
.wsc{word-spacing:4.560000px;}
.ws36{word-spacing:4.620000px;}
.ws34{word-spacing:4.680000px;}
.ws44{word-spacing:4.740000px;}
.ws12{word-spacing:4.860000px;}
.wsb{word-spacing:4.920000px;}
.wsa{word-spacing:4.980000px;}
.ws60{word-spacing:5.460000px;}
.ws61{word-spacing:5.520000px;}
.ws86{word-spacing:6.384000px;}
.ws52{word-spacing:26.592000px;}
.ws26{word-spacing:88.242000px;}
.ws2b{word-spacing:124.152000px;}
.ws25{word-spacing:218.652000px;}
.ws19{word-spacing:359.352000px;}
._1e{margin-left:-2898.096000px;}
._14{margin-left:-2874.288000px;}
._6{margin-left:-7.560000px;}
._3d{margin-left:-6.522000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-4.260000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.080000px;}
._7{width:1.056000px;}
._2{width:2.328000px;}
._9{width:4.200000px;}
._8{width:5.280000px;}
._a{width:7.080000px;}
._2f{width:8.340000px;}
._25{width:50.190000px;}
._20{width:52.500000px;}
._3{width:59.525814px;}
._11{width:61.152000px;}
._2a{width:66.486000px;}
._28{width:68.838000px;}
._12{width:73.542000px;}
._22{width:75.852000px;}
._2e{width:78.162000px;}
._19{width:80.514000px;}
._2d{width:82.152000px;}
._34{width:86.208000px;}
._1a{width:94.080000px;}
._b{width:98.448000px;}
._13{width:103.152000px;}
._29{width:111.300000px;}
._2c{width:113.652000px;}
._10{width:115.080000px;}
._37{width:117.846000px;}
._39{width:126.240000px;}
._1b{width:129.906000px;}
._36{width:132.816000px;}
._16{width:134.652000px;}
._1f{width:138.054000px;}
._18{width:145.152000px;}
._2b{width:156.786000px;}
._1c{width:166.152000px;}
._23{width:176.652000px;}
._38{width:181.104000px;}
._3c{width:182.208000px;}
._1d{width:188.244000px;}
._30{width:204.864000px;}
._3b{width:211.536000px;}
._d{width:224.532000px;}
._15{width:229.152000px;}
._e{width:250.782000px;}
._24{width:253.554000px;}
._26{width:274.512000px;}
._35{width:279.792000px;}
._3a{width:294.480000px;}
._c{width:307.818000px;}
._27{width:309.540000px;}
._f{width:349.188000px;}
._21{width:379.554000px;}
._17{width:421.554000px;}
._32{width:427.872000px;}
._33{width:457.872000px;}
._31{width:514.368000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:27.984000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y37b{bottom:80.263500px;}
.y2a3{bottom:83.035200px;}
.y29f{bottom:83.770350px;}
.y2ca{bottom:85.279200px;}
.y2c{bottom:88.023000px;}
.y339{bottom:89.263500px;}
.y150{bottom:90.162150px;}
.y14d{bottom:90.172650px;}
.y14a{bottom:90.183150px;}
.y22f{bottom:90.187200px;}
.y2ef{bottom:93.544650px;}
.y5c{bottom:94.048200px;}
.y2a6{bottom:94.739850px;}
.y37a{bottom:95.263500px;}
.yb7{bottom:97.453950px;}
.y2a2{bottom:98.779200px;}
.y29e{bottom:101.770350px;}
.y2b{bottom:103.023000px;}
.y338{bottom:104.263500px;}
.y1d4{bottom:104.930100px;}
.y1ce{bottom:104.951100px;}
.y14f{bottom:105.166650px;}
.y14c{bottom:105.177150px;}
.y149{bottom:105.187650px;}
.y22e{bottom:105.191700px;}
.y2ee{bottom:109.792650px;}
.y379{bottom:110.263500px;}
.y5b{bottom:112.048200px;}
.yb6{bottom:112.458450px;}
.y337{bottom:119.263500px;}
.y29d{bottom:119.770350px;}
.y1d3{bottom:119.934600px;}
.y1cd{bottom:119.955600px;}
.y1c5{bottom:119.987100px;}
.y286{bottom:120.165600px;}
.y14e{bottom:120.171150px;}
.y14b{bottom:120.181650px;}
.y148{bottom:120.192150px;}
.y22d{bottom:120.196200px;}
.y378{bottom:125.263500px;}
.y2ed{bottom:126.292650px;}
.yb5{bottom:127.462950px;}
.y5a{bottom:130.048200px;}
.y336{bottom:134.263500px;}
.y1d2{bottom:134.939100px;}
.y1cc{bottom:134.960100px;}
.y142{bottom:134.965650px;}
.y1c4{bottom:134.991600px;}
.y233{bottom:135.169200px;}
.y285{bottom:135.170100px;}
.y22c{bottom:135.200700px;}
.y29c{bottom:137.770350px;}
.y377{bottom:140.263500px;}
.yb4{bottom:142.467450px;}
.y2ec{bottom:142.792650px;}
.y59{bottom:148.048200px;}
.y335{bottom:149.263500px;}
.y1d1{bottom:149.943600px;}
.y1cb{bottom:149.964600px;}
.y141{bottom:149.970150px;}
.y1c8{bottom:149.975100px;}
.y1c3{bottom:149.996100px;}
.y137{bottom:150.001650px;}
.y28d{bottom:150.143100px;}
.y232{bottom:150.173700px;}
.y284{bottom:150.174600px;}
.y22b{bottom:150.205200px;}
.y228{bottom:150.215700px;}
.y376{bottom:155.263500px;}
.y29b{bottom:155.770350px;}
.ybd{bottom:157.429950px;}
.yb3{bottom:157.471950px;}
.yad{bottom:157.492950px;}
.y2eb{bottom:159.040650px;}
.y334{bottom:164.263500px;}
.y147{bottom:164.943150px;}
.y1d0{bottom:164.948100px;}
.y1ca{bottom:164.969100px;}
.y140{bottom:164.974650px;}
.y1c7{bottom:164.979600px;}
.y1c2{bottom:165.000600px;}
.y136{bottom:165.006150px;}
.y28c{bottom:165.147600px;}
.y289{bottom:165.158100px;}
.y231{bottom:165.178200px;}
.y283{bottom:165.179100px;}
.y22a{bottom:165.209700px;}
.y227{bottom:165.220200px;}
.y58{bottom:166.048200px;}
.y375{bottom:170.263500px;}
.ybc{bottom:172.434450px;}
.yb2{bottom:172.476450px;}
.yac{bottom:172.497450px;}
.y29a{bottom:173.770350px;}
.y2fb{bottom:173.772600px;}
.y2ea{bottom:175.540650px;}
.y333{bottom:179.263500px;}
.y146{bottom:179.947650px;}
.y1cf{bottom:179.952600px;}
.y1c9{bottom:179.973600px;}
.y13f{bottom:179.979150px;}
.y1c6{bottom:179.984100px;}
.y13b{bottom:179.989650px;}
.y1c1{bottom:180.005100px;}
.y135{bottom:180.010650px;}
.y28b{bottom:180.152100px;}
.y288{bottom:180.162600px;}
.y230{bottom:180.182700px;}
.y282{bottom:180.183600px;}
.y229{bottom:180.214200px;}
.y226{bottom:180.224700px;}
.y57{bottom:184.048200px;}
.y374{bottom:185.263500px;}
.ybb{bottom:187.438950px;}
.yb1{bottom:187.480950px;}
.yab{bottom:187.501950px;}
.ya7{bottom:187.512450px;}
.y2fa{bottom:191.367600px;}
.y299{bottom:191.770350px;}
.y2e9{bottom:191.788650px;}
.y332{bottom:194.263500px;}
.y1c0{bottom:194.757600px;}
.y145{bottom:194.952150px;}
.y225{bottom:194.977200px;}
.y13e{bottom:194.983650px;}
.y13a{bottom:194.994150px;}
.y134{bottom:195.015150px;}
.y28a{bottom:195.156600px;}
.y287{bottom:195.167100px;}
.y281{bottom:195.188100px;}
.y2a{bottom:198.409200px;}
.y373{bottom:200.263500px;}
.y56{bottom:202.048200px;}
.yba{bottom:202.443450px;}
.yb0{bottom:202.485450px;}
.yaa{bottom:202.506450px;}
.ya6{bottom:202.516950px;}
.y2e8{bottom:208.036650px;}
.y331{bottom:209.263500px;}
.y1bf{bottom:209.762100px;}
.y298{bottom:209.770350px;}
.y280{bottom:209.940600px;}
.y144{bottom:209.956650px;}
.y224{bottom:209.981700px;}
.y13d{bottom:209.988150px;}
.y139{bottom:209.998650px;}
.y133{bottom:210.019650px;}
.y372{bottom:215.263500px;}
.y29{bottom:216.409200px;}
.yb9{bottom:217.447950px;}
.yaf{bottom:217.489950px;}
.ya9{bottom:217.510950px;}
.ya5{bottom:217.521450px;}
.y55{bottom:220.048200px;}
.y330{bottom:224.263500px;}
.y2e7{bottom:224.536650px;}
.y1be{bottom:224.766600px;}
.y27f{bottom:224.945100px;}
.y143{bottom:224.961150px;}
.y223{bottom:224.986200px;}
.y13c{bottom:224.992650px;}
.y138{bottom:225.003150px;}
.y132{bottom:225.024150px;}
.y218{bottom:225.028200px;}
.y297{bottom:227.770350px;}
.y2f9{bottom:227.772600px;}
.y371{bottom:230.263500px;}
.yb8{bottom:232.452450px;}
.yae{bottom:232.494450px;}
.ya8{bottom:232.515450px;}
.ya4{bottom:232.525950px;}
.y28{bottom:234.409200px;}
.y54{bottom:238.048200px;}
.y32f{bottom:239.263500px;}
.y1bd{bottom:239.771100px;}
.y131{bottom:239.776650px;}
.y27e{bottom:239.949600px;}
.y222{bottom:239.990700px;}
.y217{bottom:240.032700px;}
.y2e6{bottom:240.784650px;}
.y370{bottom:245.263500px;}
.y2f8{bottom:245.367600px;}
.y296{bottom:245.770350px;}
.ya1{bottom:247.278450px;}
.y27{bottom:252.409200px;}
.y32e{bottom:254.263500px;}
.y1bc{bottom:254.775600px;}
.y130{bottom:254.781150px;}
.y12d{bottom:254.791650px;}
.y1b3{bottom:254.807100px;}
.y27d{bottom:254.954100px;}
.y221{bottom:254.995200px;}
.y216{bottom:255.037200px;}
.y53{bottom:256.048200px;}
.y2e5{bottom:257.032650px;}
.y36f{bottom:260.263500px;}
.ya0{bottom:262.282950px;}
.y295{bottom:263.770350px;}
.y32d{bottom:269.263500px;}
.y1bb{bottom:269.780100px;}
.y12f{bottom:269.785650px;}
.y12c{bottom:269.796150px;}
.y1b2{bottom:269.811600px;}
.y27c{bottom:269.958600px;}
.y275{bottom:269.979600px;}
.y271{bottom:269.990100px;}
.y220{bottom:269.999700px;}
.y215{bottom:270.041700px;}
.y26{bottom:270.409200px;}
.y52{bottom:274.048200px;}
.y36e{bottom:275.263500px;}
.ya3{bottom:277.276950px;}
.y9f{bottom:277.287450px;}
.y2f7{bottom:281.367600px;}
.y294{bottom:281.770350px;}
.y32c{bottom:284.263500px;}
.y1ba{bottom:284.784600px;}
.y12e{bottom:284.790150px;}
.y12b{bottom:284.800650px;}
.y1b1{bottom:284.816100px;}
.y27b{bottom:284.963100px;}
.y278{bottom:284.973600px;}
.y274{bottom:284.984100px;}
.y270{bottom:284.994600px;}
.y21f{bottom:285.004200px;}
.y214{bottom:285.046200px;}
.y25{bottom:288.409200px;}
.y2e4{bottom:288.544650px;}
.y36d{bottom:290.263500px;}
.y51{bottom:292.048200px;}
.ya2{bottom:292.281450px;}
.y9e{bottom:292.291950px;}
.y32b{bottom:299.263500px;}
.y12a{bottom:299.553150px;}
.y293{bottom:299.770350px;}
.y1b9{bottom:299.789100px;}
.y1b6{bottom:299.799600px;}
.y1b0{bottom:299.820600px;}
.y27a{bottom:299.967600px;}
.y277{bottom:299.978100px;}
.y273{bottom:299.988600px;}
.y26f{bottom:299.999100px;}
.y21e{bottom:300.008700px;}
.y21b{bottom:300.019200px;}
.y213{bottom:300.050700px;}
.y36c{bottom:305.263500px;}
.y24{bottom:306.409200px;}
.y50{bottom:310.048200px;}
.y32a{bottom:314.263500px;}
.y129{bottom:314.557650px;}
.y1b8{bottom:314.793600px;}
.y1b5{bottom:314.804100px;}
.y1af{bottom:314.825100px;}
.y279{bottom:314.972100px;}
.y276{bottom:314.982600px;}
.y272{bottom:314.993100px;}
.y26e{bottom:315.003600px;}
.y21d{bottom:315.013200px;}
.y21a{bottom:315.023700px;}
.y212{bottom:315.055200px;}
.y292{bottom:317.770350px;}
.y2f6{bottom:317.772600px;}
.y36b{bottom:320.263500px;}
.y9d{bottom:323.056950px;}
.y2e3{bottom:323.440350px;}
.y23{bottom:324.409200px;}
.y4f{bottom:328.048200px;}
.y329{bottom:329.263500px;}
.y128{bottom:329.310150px;}
.y26a{bottom:329.766600px;}
.y1b7{bottom:329.798100px;}
.y1b4{bottom:329.808600px;}
.y1ae{bottom:329.829600px;}
.y21c{bottom:330.017700px;}
.y219{bottom:330.028200px;}
.y211{bottom:330.059700px;}
.y36a{bottom:335.263500px;}
.y2f5{bottom:335.367600px;}
.y291{bottom:335.770350px;}
.y22{bottom:342.409200px;}
.y328{bottom:344.263500px;}
.y127{bottom:344.314650px;}
.y123{bottom:344.325150px;}
.y11f{bottom:344.335650px;}
.y1aa{bottom:344.592600px;}
.y269{bottom:344.771100px;}
.y261{bottom:344.802600px;}
.y210{bottom:344.812200px;}
.y4e{bottom:346.048200px;}
.y369{bottom:350.263500px;}
.y290{bottom:353.770350px;}
.y9c{bottom:357.460350px;}
.y1a9{bottom:359.230950px;}
.y327{bottom:359.263500px;}
.y126{bottom:359.319150px;}
.y122{bottom:359.329650px;}
.y11e{bottom:359.340150px;}
.y268{bottom:359.775600px;}
.y260{bottom:359.807100px;}
.y20f{bottom:359.816700px;}
.y21{bottom:360.409200px;}
.y4d{bottom:364.048200px;}
.y368{bottom:365.263500px;}
.y2f0{bottom:370.072650px;}
.y2e2{bottom:371.635350px;}
.y28f{bottom:371.770350px;}
.y2f4{bottom:371.772600px;}
.y1a8{bottom:374.235450px;}
.y326{bottom:374.263500px;}
.y125{bottom:374.323650px;}
.y121{bottom:374.334150px;}
.y11c{bottom:374.344650px;}
.y1ad{bottom:374.580600px;}
.y26d{bottom:374.759100px;}
.y267{bottom:374.780100px;}
.y264{bottom:374.790600px;}
.y25f{bottom:374.811600px;}
.y20e{bottom:374.821200px;}
.y20b{bottom:374.831700px;}
.y20{bottom:378.409200px;}
.y367{bottom:380.263500px;}
.y4c{bottom:382.048200px;}
.y11b{bottom:388.987950px;}
.y1a7{bottom:389.239950px;}
.y325{bottom:389.263500px;}
.y124{bottom:389.328150px;}
.y120{bottom:389.338650px;}
.y11d{bottom:389.349150px;}
.y208{bottom:389.523450px;}
.y1ac{bottom:389.585100px;}
.y2e1{bottom:389.635350px;}
.y26c{bottom:389.763600px;}
.y28e{bottom:389.770350px;}
.y2f3{bottom:389.772600px;}
.y266{bottom:389.784600px;}
.y263{bottom:389.795100px;}
.y25e{bottom:389.816100px;}
.y20d{bottom:389.825700px;}
.y20a{bottom:389.836200px;}
.y366{bottom:395.263500px;}
.y1f{bottom:396.409200px;}
.y4b{bottom:400.048200px;}
.y11a{bottom:403.740450px;}
.y115{bottom:403.761450px;}
.y1a6{bottom:404.244450px;}
.y324{bottom:404.263500px;}
.y207{bottom:404.527950px;}
.y1ab{bottom:404.589600px;}
.y26b{bottom:404.768100px;}
.y265{bottom:404.789100px;}
.y262{bottom:404.799600px;}
.y25d{bottom:404.820600px;}
.y20c{bottom:404.830200px;}
.y209{bottom:404.840700px;}
.y2e0{bottom:407.635350px;}
.y87{bottom:407.770350px;}
.y2c9{bottom:407.772600px;}
.y9b{bottom:407.920350px;}
.y365{bottom:410.263500px;}
.y1e{bottom:414.409200px;}
.y4a{bottom:418.048200px;}
.y119{bottom:418.744950px;}
.y114{bottom:418.765950px;}
.y19d{bottom:419.028450px;}
.y323{bottom:419.263500px;}
.y206{bottom:419.280450px;}
.y25c{bottom:419.573100px;}
.y364{bottom:425.263500px;}
.y2df{bottom:425.635350px;}
.y86{bottom:425.770350px;}
.y2c8{bottom:425.772600px;}
.y9a{bottom:425.920350px;}
.y1d{bottom:432.409200px;}
.y118{bottom:433.749450px;}
.y113{bottom:433.770450px;}
.y19c{bottom:434.032950px;}
.y322{bottom:434.263500px;}
.y205{bottom:434.284950px;}
.y25b{bottom:434.577600px;}
.y257{bottom:434.588100px;}
.y49{bottom:436.048200px;}
.y363{bottom:440.263500px;}
.y2f2{bottom:443.367600px;}
.y2de{bottom:443.635350px;}
.y85{bottom:443.770350px;}
.y2c7{bottom:443.772600px;}
.y99{bottom:443.920350px;}
.y2cb{bottom:447.865650px;}
.y117{bottom:448.753950px;}
.y112{bottom:448.774950px;}
.y19b{bottom:449.037450px;}
.y321{bottom:449.263500px;}
.y204{bottom:449.289450px;}
.y200{bottom:449.299950px;}
.y25a{bottom:449.582100px;}
.y256{bottom:449.592600px;}
.y1c{bottom:450.409200px;}
.y48{bottom:454.048200px;}
.y362{bottom:455.263500px;}
.y2dd{bottom:461.635350px;}
.y84{bottom:461.770350px;}
.y2c6{bottom:461.772600px;}
.y98{bottom:461.920350px;}
.y116{bottom:463.758450px;}
.y111{bottom:463.779450px;}
.y1a2{bottom:464.010450px;}
.y19a{bottom:464.041950px;}
.y320{bottom:464.263500px;}
.y255{bottom:464.272950px;}
.y203{bottom:464.293950px;}
.y1ff{bottom:464.304450px;}
.y1fc{bottom:464.314950px;}
.y259{bottom:464.586600px;}
.y1b{bottom:468.409200px;}
.y361{bottom:470.263500px;}
.y47{bottom:472.048200px;}
.y10e{bottom:478.542450px;}
.y1a1{bottom:479.014950px;}
.y199{bottom:479.046450px;}
.y195{bottom:479.056950px;}
.y31f{bottom:479.263500px;}
.y254{bottom:479.277450px;}
.y202{bottom:479.298450px;}
.y1fe{bottom:479.308950px;}
.y1fb{bottom:479.319450px;}
.y258{bottom:479.591100px;}
.y2dc{bottom:479.635350px;}
.y83{bottom:479.770350px;}
.y2c5{bottom:479.772600px;}
.y97{bottom:479.920350px;}
.y360{bottom:485.263500px;}
.y1a{bottom:486.409200px;}
.y46{bottom:490.048200px;}
.y10d{bottom:493.546950px;}
.y1a5{bottom:493.998450px;}
.y1a0{bottom:494.019450px;}
.y198{bottom:494.050950px;}
.y194{bottom:494.061450px;}
.y24f{bottom:494.082450px;}
.y31e{bottom:494.263500px;}
.y201{bottom:494.302950px;}
.y1fd{bottom:494.313450px;}
.y1fa{bottom:494.323950px;}
.y2db{bottom:497.635350px;}
.y82{bottom:497.770350px;}
.y2c4{bottom:497.772600px;}
.y96{bottom:497.920350px;}
.y35f{bottom:500.263500px;}
.y19{bottom:504.409200px;}
.y45{bottom:508.048200px;}
.y10c{bottom:508.551450px;}
.y1a4{bottom:509.002950px;}
.y19f{bottom:509.023950px;}
.y197{bottom:509.055450px;}
.y193{bottom:509.065950px;}
.y1f9{bottom:509.076450px;}
.y1f5{bottom:509.086950px;}
.y1f1{bottom:509.097450px;}
.y31d{bottom:509.263500px;}
.y35e{bottom:515.263500px;}
.y2da{bottom:515.635350px;}
.y81{bottom:515.770350px;}
.y2c3{bottom:515.772600px;}
.y95{bottom:515.920350px;}
.y18{bottom:522.409200px;}
.y110{bottom:523.534950px;}
.y10b{bottom:523.555950px;}
.y1a3{bottom:524.007450px;}
.y19e{bottom:524.028450px;}
.y196{bottom:524.059950px;}
.y192{bottom:524.070450px;}
.y1f8{bottom:524.080950px;}
.y1f4{bottom:524.091450px;}
.y1f0{bottom:524.101950px;}
.y31c{bottom:524.263500px;}
.y44{bottom:526.048200px;}
.y35d{bottom:530.263500px;}
.y2d9{bottom:533.635350px;}
.y80{bottom:533.770350px;}
.y2c2{bottom:533.772600px;}
.y94{bottom:533.920350px;}
.y10f{bottom:538.539450px;}
.y10a{bottom:538.560450px;}
.y187{bottom:538.864950px;}
.y253{bottom:539.064450px;}
.y251{bottom:539.074950px;}
.y1f7{bottom:539.085450px;}
.y1f3{bottom:539.095950px;}
.y1ef{bottom:539.106450px;}
.y31b{bottom:539.263500px;}
.y17{bottom:540.409200px;}
.y43{bottom:544.048200px;}
.y35c{bottom:545.263500px;}
.y7f{bottom:551.770350px;}
.y2c1{bottom:551.772600px;}
.y93{bottom:551.920350px;}
.y107{bottom:553.312950px;}
.y191{bottom:553.827450px;}
.y18c{bottom:553.848450px;}
.y186{bottom:553.869450px;}
.y252{bottom:554.068950px;}
.y250{bottom:554.079450px;}
.y1f6{bottom:554.089950px;}
.y1f2{bottom:554.100450px;}
.y1ee{bottom:554.110950px;}
.y31a{bottom:554.263500px;}
.y16{bottom:558.409200px;}
.y35b{bottom:560.263500px;}
.y42{bottom:562.048200px;}
.y106{bottom:568.317450px;}
.y101{bottom:568.338450px;}
.y190{bottom:568.831950px;}
.y18b{bottom:568.852950px;}
.y1ed{bottom:568.863450px;}
.y185{bottom:568.873950px;}
.y2d8{bottom:569.230350px;}
.y319{bottom:569.263500px;}
.y7e{bottom:569.770350px;}
.y2c0{bottom:569.772600px;}
.y92{bottom:569.920350px;}
.y35a{bottom:575.263500px;}
.y15{bottom:576.409200px;}
.y41{bottom:580.048200px;}
.y105{bottom:583.321950px;}
.y100{bottom:583.342950px;}
.y18f{bottom:583.836450px;}
.y18a{bottom:583.857450px;}
.y1ec{bottom:583.867950px;}
.y184{bottom:583.878450px;}
.y1e9{bottom:583.888950px;}
.y318{bottom:584.263500px;}
.y7d{bottom:587.770350px;}
.y2bf{bottom:587.772600px;}
.y91{bottom:587.920350px;}
.y359{bottom:590.263500px;}
.y14{bottom:594.409200px;}
.y40{bottom:598.048200px;}
.y104{bottom:598.326450px;}
.yff{bottom:598.347450px;}
.y18e{bottom:598.840950px;}
.y189{bottom:598.861950px;}
.y1eb{bottom:598.872450px;}
.y183{bottom:598.882950px;}
.y1e8{bottom:598.893450px;}
.y317{bottom:599.263500px;}
.y358{bottom:605.263500px;}
.y7c{bottom:605.770350px;}
.y2be{bottom:605.772600px;}
.y90{bottom:605.920350px;}
.y13{bottom:612.409200px;}
.y109{bottom:613.309950px;}
.y103{bottom:613.330950px;}
.yfe{bottom:613.351950px;}
.y18d{bottom:613.845450px;}
.y188{bottom:613.866450px;}
.y1ea{bottom:613.876950px;}
.y182{bottom:613.887450px;}
.y1e7{bottom:613.897950px;}
.y316{bottom:614.263500px;}
.y3f{bottom:616.048200px;}
.y357{bottom:620.263500px;}
.y2f1{bottom:623.367600px;}
.y7b{bottom:623.770350px;}
.y2bd{bottom:623.772600px;}
.y8f{bottom:623.920350px;}
.y108{bottom:628.314450px;}
.y102{bottom:628.335450px;}
.yfd{bottom:628.356450px;}
.y17e{bottom:628.650450px;}
.y1e3{bottom:628.671450px;}
.y24e{bottom:628.849950px;}
.y24b{bottom:628.881450px;}
.y248{bottom:628.902450px;}
.y315{bottom:629.263500px;}
.y3e{bottom:634.048200px;}
.y356{bottom:635.263500px;}
.y7a{bottom:641.770350px;}
.y2bc{bottom:641.772600px;}
.y8e{bottom:641.920350px;}
.yf6{bottom:643.119450px;}
.y17d{bottom:643.654950px;}
.y178{bottom:643.675950px;}
.y1e2{bottom:643.686450px;}
.y24d{bottom:643.854450px;}
.y24a{bottom:643.885950px;}
.y247{bottom:643.906950px;}
.y314{bottom:644.263500px;}
.y355{bottom:650.263500px;}
.y3d{bottom:652.048200px;}
.y12{bottom:657.567300px;}
.yf5{bottom:658.123950px;}
.y1e6{bottom:658.648950px;}
.y17c{bottom:658.659450px;}
.y177{bottom:658.680450px;}
.y1e1{bottom:658.690950px;}
.y24c{bottom:658.858950px;}
.y249{bottom:658.890450px;}
.y246{bottom:658.911450px;}
.y313{bottom:659.263500px;}
.y79{bottom:659.770350px;}
.y2bb{bottom:659.772600px;}
.y8d{bottom:659.920350px;}
.y354{bottom:665.263500px;}
.y11{bottom:670.018050px;}
.y3c{bottom:670.048200px;}
.yf4{bottom:673.128450px;}
.yed{bottom:673.159950px;}
.y181{bottom:673.642950px;}
.y1e5{bottom:673.653450px;}
.y17b{bottom:673.663950px;}
.y244{bottom:673.674450px;}
.y176{bottom:673.684950px;}
.y1e0{bottom:673.695450px;}
.y312{bottom:674.263500px;}
.y2d7{bottom:677.635350px;}
.y78{bottom:677.770350px;}
.y2ba{bottom:677.772600px;}
.y8c{bottom:677.920350px;}
.y353{bottom:680.263500px;}
.y3b{bottom:688.048200px;}
.yf3{bottom:688.132950px;}
.yec{bottom:688.164450px;}
.ye6{bottom:688.185450px;}
.y180{bottom:688.647450px;}
.y1e4{bottom:688.657950px;}
.y17a{bottom:688.668450px;}
.y243{bottom:688.678950px;}
.y175{bottom:688.689450px;}
.y1df{bottom:688.699950px;}
.y311{bottom:689.263500px;}
.y352{bottom:695.263500px;}
.y2d6{bottom:695.635350px;}
.y77{bottom:695.770350px;}
.y2b9{bottom:695.772600px;}
.y8b{bottom:695.920350px;}
.yf2{bottom:703.137450px;}
.yeb{bottom:703.168950px;}
.ye5{bottom:703.189950px;}
.y1de{bottom:703.473450px;}
.y17f{bottom:703.651950px;}
.y179{bottom:703.672950px;}
.y242{bottom:703.683450px;}
.y174{bottom:703.693950px;}
.y23f{bottom:703.704450px;}
.y310{bottom:704.263500px;}
.y3a{bottom:706.048200px;}
.y10{bottom:707.158800px;}
.y351{bottom:710.263500px;}
.y2d5{bottom:713.635350px;}
.y76{bottom:713.770350px;}
.y2b8{bottom:713.772600px;}
.y8a{bottom:713.920350px;}
.yf{bottom:715.233600px;}
.yf1{bottom:718.141950px;}
.yea{bottom:718.173450px;}
.ye4{bottom:718.194450px;}
.y16b{bottom:718.477950px;}
.y245{bottom:718.677450px;}
.y241{bottom:718.687950px;}
.y240{bottom:718.698450px;}
.y23e{bottom:718.708950px;}
.y30f{bottom:719.263500px;}
.y39{bottom:724.048200px;}
.y350{bottom:725.263500px;}
.y2d4{bottom:731.635350px;}
.y75{bottom:731.770350px;}
.y2b7{bottom:731.772600px;}
.y89{bottom:731.920350px;}
.yfc{bottom:733.104450px;}
.yf9{bottom:733.114950px;}
.yf0{bottom:733.146450px;}
.ye9{bottom:733.177950px;}
.ye3{bottom:733.198950px;}
.y16a{bottom:733.482450px;}
.ye{bottom:734.158800px;}
.y30e{bottom:734.263500px;}
.y34f{bottom:740.263500px;}
.y38{bottom:742.048200px;}
.yd{bottom:742.233600px;}
.yfb{bottom:748.108950px;}
.yf8{bottom:748.119450px;}
.yef{bottom:748.150950px;}
.ye8{bottom:748.182450px;}
.ye2{bottom:748.203450px;}
.y173{bottom:748.444950px;}
.y169{bottom:748.486950px;}
.y30d{bottom:749.263500px;}
.y2d3{bottom:749.635350px;}
.y74{bottom:749.770350px;}
.y2b6{bottom:749.772600px;}
.y34e{bottom:755.263500px;}
.y37{bottom:760.048200px;}
.yc{bottom:761.158800px;}
.yfa{bottom:763.113450px;}
.yf7{bottom:763.123950px;}
.yee{bottom:763.155450px;}
.ye7{bottom:763.186950px;}
.ye1{bottom:763.207950px;}
.y172{bottom:763.449450px;}
.y23d{bottom:763.470450px;}
.y168{bottom:763.491450px;}
.y30c{bottom:764.263500px;}
.y88{bottom:767.515350px;}
.y2d2{bottom:767.635350px;}
.y73{bottom:767.770350px;}
.y2b5{bottom:767.772600px;}
.yb{bottom:769.233600px;}
.y34d{bottom:770.263500px;}
.yd5{bottom:778.012950px;}
.y36{bottom:778.048200px;}
.y171{bottom:778.453950px;}
.y16e{bottom:778.464450px;}
.y23c{bottom:778.474950px;}
.y167{bottom:778.495950px;}
.y30b{bottom:779.263500px;}
.y34c{bottom:785.263500px;}
.y2d1{bottom:785.635350px;}
.y72{bottom:785.770350px;}
.y2b4{bottom:785.772600px;}
.ya{bottom:788.158950px;}
.yd4{bottom:793.017450px;}
.y170{bottom:793.458450px;}
.y16d{bottom:793.468950px;}
.y23b{bottom:793.479450px;}
.y166{bottom:793.500450px;}
.y30a{bottom:794.263500px;}
.y35{bottom:796.048200px;}
.y34b{bottom:800.263500px;}
.y9{bottom:801.658950px;}
.y2d0{bottom:803.635350px;}
.y71{bottom:803.770350px;}
.y2b3{bottom:803.772600px;}
.yd3{bottom:808.021950px;}
.y16f{bottom:808.462950px;}
.y16c{bottom:808.473450px;}
.y23a{bottom:808.483950px;}
.y165{bottom:808.504950px;}
.y309{bottom:809.263500px;}
.y34{bottom:814.048200px;}
.y34a{bottom:815.263500px;}
.y2cf{bottom:821.635350px;}
.y70{bottom:821.770350px;}
.y2b2{bottom:821.772600px;}
.ye0{bottom:822.963450px;}
.yd2{bottom:823.026450px;}
.y1dd{bottom:823.257450px;}
.y15f{bottom:823.278450px;}
.y239{bottom:823.288950px;}
.y308{bottom:824.263500px;}
.y349{bottom:830.263500px;}
.y8{bottom:830.380950px;}
.y33{bottom:832.048200px;}
.ydf{bottom:837.967950px;}
.yd1{bottom:838.030950px;}
.y1dc{bottom:838.261950px;}
.y15e{bottom:838.282950px;}
.y238{bottom:838.293450px;}
.y307{bottom:839.263500px;}
.y2ce{bottom:839.635350px;}
.y6f{bottom:839.770350px;}
.y2b1{bottom:839.772600px;}
.y348{bottom:845.263500px;}
.y32{bottom:850.048200px;}
.y7{bottom:851.380950px;}
.yde{bottom:852.972450px;}
.yd0{bottom:853.035450px;}
.yc7{bottom:853.066950px;}
.y162{bottom:853.266450px;}
.y1da{bottom:853.276950px;}
.y15d{bottom:853.287450px;}
.y237{bottom:853.297950px;}
.y306{bottom:854.263500px;}
.y2cd{bottom:857.635350px;}
.y6e{bottom:857.770350px;}
.y2b0{bottom:857.772600px;}
.y347{bottom:860.263500px;}
.ydd{bottom:867.976950px;}
.ycf{bottom:868.039950px;}
.y31{bottom:868.048200px;}
.yc6{bottom:868.071450px;}
.y164{bottom:868.260450px;}
.y161{bottom:868.270950px;}
.y1d9{bottom:868.281450px;}
.y15c{bottom:868.291950px;}
.y236{bottom:868.302450px;}
.y305{bottom:869.263500px;}
.y346{bottom:875.263500px;}
.y2a1{bottom:875.365350px;}
.y6d{bottom:875.770350px;}
.y2af{bottom:875.772600px;}
.ydc{bottom:882.981450px;}
.yce{bottom:883.044450px;}
.yc5{bottom:883.075950px;}
.y163{bottom:883.264950px;}
.y160{bottom:883.275450px;}
.y1d8{bottom:883.285950px;}
.y15b{bottom:883.296450px;}
.y235{bottom:883.306950px;}
.y304{bottom:884.263500px;}
.y5e{bottom:886.048200px;}
.y345{bottom:890.263500px;}
.y2cc{bottom:893.230350px;}
.y6c{bottom:893.770350px;}
.y2ae{bottom:893.772600px;}
.y6{bottom:897.543600px;}
.ydb{bottom:897.985950px;}
.ycd{bottom:898.048950px;}
.y156{bottom:898.059450px;}
.yc4{bottom:898.080450px;}
.y1db{bottom:898.279950px;}
.y1d7{bottom:898.290450px;}
.y234{bottom:898.311450px;}
.y303{bottom:899.263500px;}
.y30{bottom:903.643200px;}
.y5d{bottom:904.048200px;}
.y344{bottom:905.263500px;}
.y2a0{bottom:911.230350px;}
.y6b{bottom:911.770350px;}
.y2ad{bottom:911.772600px;}
.yda{bottom:912.990450px;}
.y1d6{bottom:913.042950px;}
.ycc{bottom:913.053450px;}
.y155{bottom:913.063950px;}
.yc3{bottom:913.084950px;}
.y302{bottom:914.263500px;}
.y343{bottom:920.263500px;}
.yd9{bottom:927.994950px;}
.y1d5{bottom:928.047450px;}
.ycb{bottom:928.057950px;}
.y154{bottom:928.068450px;}
.yc2{bottom:928.089450px;}
.y301{bottom:929.263500px;}
.y6a{bottom:929.770350px;}
.y2ac{bottom:929.772600px;}
.y5{bottom:934.004400px;}
.y342{bottom:935.263500px;}
.yd8{bottom:942.999450px;}
.y159{bottom:943.051950px;}
.yca{bottom:943.062450px;}
.y153{bottom:943.072950px;}
.yc1{bottom:943.093950px;}
.y300{bottom:944.263500px;}
.y69{bottom:947.770350px;}
.y2ab{bottom:947.772600px;}
.y341{bottom:950.263500px;}
.yd7{bottom:958.003950px;}
.y158{bottom:958.056450px;}
.yc9{bottom:958.066950px;}
.y152{bottom:958.077450px;}
.yc0{bottom:958.098450px;}
.y2ff{bottom:959.263500px;}
.y340{bottom:965.263500px;}
.y68{bottom:965.770350px;}
.y2aa{bottom:965.772600px;}
.y4{bottom:970.465200px;}
.yd6{bottom:973.008450px;}
.y15a{bottom:973.050450px;}
.y157{bottom:973.060950px;}
.yc8{bottom:973.071450px;}
.y151{bottom:973.081950px;}
.ybf{bottom:973.102950px;}
.y2fe{bottom:974.263500px;}
.y33f{bottom:980.263500px;}
.y61{bottom:980.323200px;}
.y67{bottom:983.770350px;}
.y2a9{bottom:983.772600px;}
.y2fd{bottom:989.263500px;}
.y33e{bottom:995.263500px;}
.y66{bottom:1001.770350px;}
.y2a8{bottom:1001.772600px;}
.ybe{bottom:1003.489950px;}
.y2fc{bottom:1004.263500px;}
.y3{bottom:1006.926000px;}
.y60{bottom:1007.668200px;}
.y33d{bottom:1010.263500px;}
.y65{bottom:1019.770350px;}
.y33c{bottom:1025.263500px;}
.y5f{bottom:1025.668200px;}
.y2a5{bottom:1037.367600px;}
.y64{bottom:1037.770350px;}
.y33b{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y2a7{bottom:1132.415850px;}
.y62{bottom:1132.418700px;}
.y63{bottom:1132.421700px;}
.y2a4{bottom:1132.423200px;}
.y33a{bottom:1132.423500px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.393066px;}
.h12{height:29.182617px;}
.h2{height:30.577148px;}
.hb{height:32.761230px;}
.h7{height:32.805176px;}
.h15{height:33.328125px;}
.h14{height:33.351562px;}
.hd{height:34.945312px;}
.hc{height:34.992188px;}
.h11{height:36.852539px;}
.hf{height:41.689453px;}
.h13{height:42.117188px;}
.h9{height:43.681641px;}
.h10{height:43.728834px;}
.ha{height:43.740234px;}
.he{height:52.646484px;}
.h16{height:54.266484px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:70.582650px;}
.x7{left:76.535400px;}
.x1e{left:78.661350px;}
.xc{left:85.028550px;}
.x5{left:96.094500px;}
.x1{left:97.795200px;}
.x13{left:99.921300px;}
.x35{left:102.047400px;}
.x4{left:106.299150px;}
.x9{left:110.558550px;}
.x1f{left:121.186350px;}
.x37{left:123.307050px;}
.x3{left:125.427900px;}
.x10{left:131.815350px;}
.x14{left:142.446300px;}
.x8{left:190.553550px;}
.x20{left:193.468350px;}
.x2e{left:198.860400px;}
.x21{left:201.973350px;}
.x15{left:214.728300px;}
.x16{left:223.233300px;}
.x31{left:261.505350px;}
.x22{left:338.032350px;}
.x23{left:346.537350px;}
.x17{left:359.292300px;}
.x18{left:367.797300px;}
.x6{left:455.041500px;}
.xa{left:457.088550px;}
.x24{left:465.596850px;}
.x28{left:474.112350px;}
.x11{left:478.345350px;}
.x36{left:482.595750px;}
.x19{left:486.856800px;}
.xb{left:491.093550px;}
.x34{left:503.858400px;}
.x32{left:507.745350px;}
.x12{left:512.365350px;}
.x29{left:542.141850px;}
.x2a{left:546.550350px;}
.x25{left:550.636350px;}
.x2f{left:570.665400px;}
.x1a{left:571.896300px;}
.x30{left:580.405350px;}
.x33{left:596.110350px;}
.x2c{left:612.916350px;}
.xf{left:663.492300px;}
.x26{left:669.695850px;}
.x27{left:678.200850px;}
.x1b{left:690.955800px;}
.x2{left:693.365400px;}
.x1c{left:699.460800px;}
.x2b{left:721.715400px;}
.xd{left:728.391600px;}
.x2d{left:743.868150px;}
.x1d{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v4{vertical-align:20.098133pt;}
.v1{vertical-align:27.005867pt;}
.ls54{letter-spacing:-3.946667pt;}
.ls88{letter-spacing:-2.560000pt;}
.ls89{letter-spacing:-2.048000pt;}
.ls35{letter-spacing:-1.546667pt;}
.ls86{letter-spacing:-1.450667pt;}
.ls44{letter-spacing:-1.381333pt;}
.ls85{letter-spacing:-1.194667pt;}
.ls53{letter-spacing:-0.906667pt;}
.ls3{letter-spacing:-0.693333pt;}
.ls47{letter-spacing:-0.261333pt;}
.ls45{letter-spacing:-0.224000pt;}
.ls37{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:-0.200000pt;}
.ls70{letter-spacing:-0.170667pt;}
.ls34{letter-spacing:-0.160000pt;}
.ls43{letter-spacing:-0.149333pt;}
.ls41{letter-spacing:-0.112000pt;}
.ls4{letter-spacing:-0.106667pt;}
.ls87{letter-spacing:-0.085333pt;}
.ls42{letter-spacing:-0.074667pt;}
.ls36{letter-spacing:-0.053333pt;}
.ls71{letter-spacing:-0.042667pt;}
.ls46{letter-spacing:-0.037333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.ls2b{letter-spacing:0.053333pt;}
.ls64{letter-spacing:0.085333pt;}
.ls40{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls61{letter-spacing:0.170667pt;}
.ls38{letter-spacing:0.213333pt;}
.ls6f{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.266667pt;}
.ls72{letter-spacing:0.298667pt;}
.ls2a{letter-spacing:0.320000pt;}
.ls73{letter-spacing:0.341333pt;}
.ls24{letter-spacing:0.373333pt;}
.ls82{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.426667pt;}
.ls77{letter-spacing:0.469333pt;}
.ls14{letter-spacing:0.480000pt;}
.ls67{letter-spacing:0.512000pt;}
.ls11{letter-spacing:0.533333pt;}
.ls60{letter-spacing:0.554667pt;}
.ls1e{letter-spacing:0.586667pt;}
.ls65{letter-spacing:0.597333pt;}
.ls20{letter-spacing:0.640000pt;}
.ls8d{letter-spacing:0.682667pt;}
.ls3c{letter-spacing:0.693333pt;}
.ls6c{letter-spacing:0.725333pt;}
.ls27{letter-spacing:0.746667pt;}
.ls7b{letter-spacing:0.768000pt;}
.ls2c{letter-spacing:0.800000pt;}
.ls63{letter-spacing:0.810667pt;}
.ls2d{letter-spacing:0.853333pt;}
.ls7d{letter-spacing:0.896000pt;}
.ls19{letter-spacing:0.906667pt;}
.ls62{letter-spacing:0.938667pt;}
.lse{letter-spacing:0.960000pt;}
.ls6d{letter-spacing:0.981333pt;}
.ls49{letter-spacing:1.013333pt;}
.ls6b{letter-spacing:1.024000pt;}
.ls8b{letter-spacing:1.059733pt;}
.ls6{letter-spacing:1.066667pt;}
.ls66{letter-spacing:1.109333pt;}
.ls4a{letter-spacing:1.120000pt;}
.ls76{letter-spacing:1.152000pt;}
.lsa{letter-spacing:1.173333pt;}
.ls7e{letter-spacing:1.194667pt;}
.ls23{letter-spacing:1.226667pt;}
.ls79{letter-spacing:1.237333pt;}
.ls4d{letter-spacing:1.280000pt;}
.ls7a{letter-spacing:1.322667pt;}
.lsd{letter-spacing:1.333333pt;}
.ls74{letter-spacing:1.365333pt;}
.ls1c{letter-spacing:1.386667pt;}
.ls8c{letter-spacing:1.408000pt;}
.ls3a{letter-spacing:1.440000pt;}
.ls78{letter-spacing:1.450667pt;}
.ls18{letter-spacing:1.493333pt;}
.ls5f{letter-spacing:1.536000pt;}
.lsc{letter-spacing:1.546667pt;}
.ls6e{letter-spacing:1.578667pt;}
.ls9{letter-spacing:1.600000pt;}
.ls51{letter-spacing:1.653333pt;}
.ls4b{letter-spacing:1.706667pt;}
.ls7f{letter-spacing:1.749333pt;}
.ls26{letter-spacing:1.760000pt;}
.ls7c{letter-spacing:1.792000pt;}
.ls33{letter-spacing:1.813333pt;}
.ls8a{letter-spacing:1.834667pt;}
.ls7{letter-spacing:1.866667pt;}
.ls12{letter-spacing:1.920000pt;}
.ls83{letter-spacing:1.962667pt;}
.ls16{letter-spacing:1.973333pt;}
.ls1d{letter-spacing:2.026667pt;}
.ls59{letter-spacing:2.080000pt;}
.ls8e{letter-spacing:2.090667pt;}
.ls17{letter-spacing:2.133333pt;}
.lsb{letter-spacing:2.186667pt;}
.ls84{letter-spacing:2.218667pt;}
.ls21{letter-spacing:2.240000pt;}
.ls22{letter-spacing:2.293333pt;}
.ls8{letter-spacing:2.346667pt;}
.ls13{letter-spacing:2.400000pt;}
.ls5a{letter-spacing:2.453333pt;}
.ls50{letter-spacing:2.506667pt;}
.ls28{letter-spacing:2.560000pt;}
.ls3b{letter-spacing:2.613333pt;}
.ls69{letter-spacing:2.645333pt;}
.ls4f{letter-spacing:2.666667pt;}
.ls81{letter-spacing:2.688000pt;}
.ls39{letter-spacing:2.720000pt;}
.ls80{letter-spacing:2.730667pt;}
.ls25{letter-spacing:2.773333pt;}
.ls2f{letter-spacing:2.826667pt;}
.ls30{letter-spacing:2.880000pt;}
.ls75{letter-spacing:2.901333pt;}
.ls15{letter-spacing:2.933333pt;}
.ls4c{letter-spacing:2.986667pt;}
.ls4e{letter-spacing:3.040000pt;}
.ls6a{letter-spacing:3.072000pt;}
.ls1f{letter-spacing:3.093333pt;}
.ls48{letter-spacing:3.146667pt;}
.ls32{letter-spacing:3.200000pt;}
.ls3e{letter-spacing:3.360000pt;}
.ls55{letter-spacing:3.413333pt;}
.ls1b{letter-spacing:3.466667pt;}
.ls29{letter-spacing:3.520000pt;}
.ls5c{letter-spacing:3.573333pt;}
.ls3d{letter-spacing:3.626667pt;}
.ls5d{letter-spacing:3.786667pt;}
.ls3f{letter-spacing:4.053333pt;}
.ls2e{letter-spacing:4.106667pt;}
.ls68{letter-spacing:4.138667pt;}
.ls56{letter-spacing:4.373333pt;}
.ls57{letter-spacing:4.586667pt;}
.ls31{letter-spacing:4.746667pt;}
.ls52{letter-spacing:5.013333pt;}
.ls58{letter-spacing:5.333333pt;}
.ls5b{letter-spacing:6.560000pt;}
.ls5e{letter-spacing:7.466667pt;}
.ls0{letter-spacing:52.918112pt;}
.ws51{word-spacing:-15.200000pt;}
.ws5a{word-spacing:-15.146667pt;}
.ws1{word-spacing:-14.826667pt;}
.ws5c{word-spacing:-14.805333pt;}
.ws9{word-spacing:-13.813333pt;}
.ws7e{word-spacing:-13.397333pt;}
.ws3d{word-spacing:-13.280000pt;}
.ws7b{word-spacing:-12.800000pt;}
.ws77{word-spacing:-12.032000pt;}
.ws3{word-spacing:-11.861333pt;}
.ws78{word-spacing:-11.818667pt;}
.ws5f{word-spacing:-11.733333pt;}
.ws98{word-spacing:-11.605333pt;}
.ws5d{word-spacing:-11.392000pt;}
.ws5b{word-spacing:-11.264000pt;}
.ws79{word-spacing:-11.221333pt;}
.ws76{word-spacing:-11.008000pt;}
.ws5e{word-spacing:-10.922667pt;}
.ws2{word-spacing:-10.920000pt;}
.ws74{word-spacing:-10.666667pt;}
.ws75{word-spacing:-10.624000pt;}
.ws7d{word-spacing:-10.581333pt;}
.ws7a{word-spacing:-9.472000pt;}
.ws2c{word-spacing:-9.333333pt;}
.ws7c{word-spacing:-9.216000pt;}
.ws0{word-spacing:-9.076144pt;}
.ws80{word-spacing:-8.618667pt;}
.ws7f{word-spacing:-8.106667pt;}
.ws6d{word-spacing:-4.138667pt;}
.ws3b{word-spacing:-3.040000pt;}
.ws95{word-spacing:-2.730667pt;}
.ws5{word-spacing:-2.565333pt;}
.ws46{word-spacing:-2.560000pt;}
.ws99{word-spacing:-2.346667pt;}
.ws8e{word-spacing:-2.133333pt;}
.ws6{word-spacing:-2.072000pt;}
.ws27{word-spacing:-2.053333pt;}
.ws42{word-spacing:-1.973333pt;}
.ws9a{word-spacing:-1.962667pt;}
.ws3f{word-spacing:-1.866667pt;}
.ws14{word-spacing:-1.813333pt;}
.ws97{word-spacing:-1.706667pt;}
.ws2a{word-spacing:-1.381333pt;}
.ws87{word-spacing:-1.365333pt;}
.ws30{word-spacing:-1.333333pt;}
.ws53{word-spacing:-1.280000pt;}
.ws8b{word-spacing:-1.237333pt;}
.ws92{word-spacing:-1.194667pt;}
.ws88{word-spacing:-1.152000pt;}
.ws65{word-spacing:-1.066667pt;}
.ws89{word-spacing:-0.981333pt;}
.ws54{word-spacing:-0.960000pt;}
.ws67{word-spacing:-0.938667pt;}
.ws90{word-spacing:-0.896000pt;}
.ws83{word-spacing:-0.853333pt;}
.ws70{word-spacing:-0.810667pt;}
.ws1f{word-spacing:-0.800000pt;}
.ws71{word-spacing:-0.768000pt;}
.ws6f{word-spacing:-0.725333pt;}
.ws45{word-spacing:-0.693333pt;}
.ws28{word-spacing:-0.672000pt;}
.ws64{word-spacing:-0.640000pt;}
.ws10{word-spacing:-0.586667pt;}
.ws8a{word-spacing:-0.554667pt;}
.ws8f{word-spacing:-0.512000pt;}
.ws31{word-spacing:-0.426667pt;}
.ws96{word-spacing:-0.384000pt;}
.ws41{word-spacing:-0.373333pt;}
.ws85{word-spacing:-0.341333pt;}
.ws15{word-spacing:-0.320000pt;}
.ws84{word-spacing:-0.298667pt;}
.wse{word-spacing:-0.266667pt;}
.ws73{word-spacing:-0.256000pt;}
.ws1b{word-spacing:-0.213333pt;}
.ws68{word-spacing:-0.170667pt;}
.ws23{word-spacing:-0.106667pt;}
.ws22{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.053333pt;}
.ws29{word-spacing:0.074667pt;}
.ws94{word-spacing:0.085333pt;}
.ws7{word-spacing:0.106667pt;}
.wsd{word-spacing:0.160000pt;}
.ws6a{word-spacing:0.170667pt;}
.ws8{word-spacing:0.200000pt;}
.ws37{word-spacing:0.213333pt;}
.ws93{word-spacing:0.298667pt;}
.ws39{word-spacing:0.320000pt;}
.ws3e{word-spacing:0.373333pt;}
.ws8c{word-spacing:0.384000pt;}
.ws3c{word-spacing:0.426667pt;}
.ws59{word-spacing:0.533333pt;}
.ws9b{word-spacing:0.554667pt;}
.ws3a{word-spacing:0.586667pt;}
.ws4b{word-spacing:0.640000pt;}
.ws38{word-spacing:0.693333pt;}
.ws47{word-spacing:0.746667pt;}
.ws20{word-spacing:0.800000pt;}
.ws9c{word-spacing:0.810667pt;}
.ws40{word-spacing:0.906667pt;}
.ws18{word-spacing:0.960000pt;}
.ws33{word-spacing:1.120000pt;}
.ws8d{word-spacing:1.152000pt;}
.ws72{word-spacing:1.194667pt;}
.ws35{word-spacing:1.280000pt;}
.ws48{word-spacing:1.365333pt;}
.ws2e{word-spacing:1.386667pt;}
.ws91{word-spacing:1.408000pt;}
.ws1c{word-spacing:1.440000pt;}
.ws57{word-spacing:1.493333pt;}
.ws11{word-spacing:1.546667pt;}
.ws6b{word-spacing:1.621333pt;}
.ws2f{word-spacing:1.706667pt;}
.ws21{word-spacing:1.760000pt;}
.ws81{word-spacing:1.792000pt;}
.ws4f{word-spacing:1.866667pt;}
.ws49{word-spacing:2.133333pt;}
.ws43{word-spacing:2.240000pt;}
.ws4c{word-spacing:2.293333pt;}
.ws50{word-spacing:2.346667pt;}
.ws13{word-spacing:2.506667pt;}
.ws69{word-spacing:2.602667pt;}
.ws6c{word-spacing:2.645333pt;}
.ws56{word-spacing:2.720000pt;}
.ws32{word-spacing:2.773333pt;}
.ws2d{word-spacing:2.826667pt;}
.wsf{word-spacing:2.880000pt;}
.ws6e{word-spacing:2.901333pt;}
.ws58{word-spacing:2.986667pt;}
.ws1e{word-spacing:3.093333pt;}
.ws82{word-spacing:3.285333pt;}
.ws4d{word-spacing:3.306667pt;}
.ws63{word-spacing:3.328000pt;}
.ws24{word-spacing:3.413333pt;}
.ws62{word-spacing:3.498667pt;}
.ws55{word-spacing:3.520000pt;}
.ws66{word-spacing:3.541333pt;}
.ws1a{word-spacing:3.626667pt;}
.ws16{word-spacing:3.786667pt;}
.ws17{word-spacing:3.840000pt;}
.ws1d{word-spacing:3.946667pt;}
.ws4a{word-spacing:4.000000pt;}
.wsc{word-spacing:4.053333pt;}
.ws36{word-spacing:4.106667pt;}
.ws34{word-spacing:4.160000pt;}
.ws44{word-spacing:4.213333pt;}
.ws12{word-spacing:4.320000pt;}
.wsb{word-spacing:4.373333pt;}
.wsa{word-spacing:4.426667pt;}
.ws60{word-spacing:4.853333pt;}
.ws61{word-spacing:4.906667pt;}
.ws86{word-spacing:5.674667pt;}
.ws52{word-spacing:23.637333pt;}
.ws26{word-spacing:78.437333pt;}
.ws2b{word-spacing:110.357333pt;}
.ws25{word-spacing:194.357333pt;}
.ws19{word-spacing:319.424000pt;}
._1e{margin-left:-2576.085333pt;}
._14{margin-left:-2554.922667pt;}
._6{margin-left:-6.720000pt;}
._3d{margin-left:-5.797333pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.786667pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.960000pt;}
._7{width:0.938667pt;}
._2{width:2.069333pt;}
._9{width:3.733333pt;}
._8{width:4.693333pt;}
._a{width:6.293333pt;}
._2f{width:7.413333pt;}
._25{width:44.613333pt;}
._20{width:46.666667pt;}
._3{width:52.911835pt;}
._11{width:54.357333pt;}
._2a{width:59.098667pt;}
._28{width:61.189333pt;}
._12{width:65.370667pt;}
._22{width:67.424000pt;}
._2e{width:69.477333pt;}
._19{width:71.568000pt;}
._2d{width:73.024000pt;}
._34{width:76.629333pt;}
._1a{width:83.626667pt;}
._b{width:87.509333pt;}
._13{width:91.690667pt;}
._29{width:98.933333pt;}
._2c{width:101.024000pt;}
._10{width:102.293333pt;}
._37{width:104.752000pt;}
._39{width:112.213333pt;}
._1b{width:115.472000pt;}
._36{width:118.058667pt;}
._16{width:119.690667pt;}
._1f{width:122.714667pt;}
._18{width:129.024000pt;}
._2b{width:139.365333pt;}
._1c{width:147.690667pt;}
._23{width:157.024000pt;}
._38{width:160.981333pt;}
._3c{width:161.962667pt;}
._1d{width:167.328000pt;}
._30{width:182.101333pt;}
._3b{width:188.032000pt;}
._d{width:199.584000pt;}
._15{width:203.690667pt;}
._e{width:222.917333pt;}
._24{width:225.381333pt;}
._26{width:244.010667pt;}
._35{width:248.704000pt;}
._3a{width:261.760000pt;}
._c{width:273.616000pt;}
._27{width:275.146667pt;}
._f{width:310.389333pt;}
._21{width:337.381333pt;}
._17{width:374.714667pt;}
._32{width:380.330667pt;}
._33{width:406.997333pt;}
._31{width:457.216000pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:24.874667pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y37b{bottom:71.345333pt;}
.y2a3{bottom:73.809067pt;}
.y29f{bottom:74.462533pt;}
.y2ca{bottom:75.803733pt;}
.y2c{bottom:78.242667pt;}
.y339{bottom:79.345333pt;}
.y150{bottom:80.144133pt;}
.y14d{bottom:80.153467pt;}
.y14a{bottom:80.162800pt;}
.y22f{bottom:80.166400pt;}
.y2ef{bottom:83.150800pt;}
.y5c{bottom:83.598400pt;}
.y2a6{bottom:84.213200pt;}
.y37a{bottom:84.678667pt;}
.yb7{bottom:86.625733pt;}
.y2a2{bottom:87.803733pt;}
.y29e{bottom:90.462533pt;}
.y2b{bottom:91.576000pt;}
.y338{bottom:92.678667pt;}
.y1d4{bottom:93.271200pt;}
.y1ce{bottom:93.289867pt;}
.y14f{bottom:93.481467pt;}
.y14c{bottom:93.490800pt;}
.y149{bottom:93.500133pt;}
.y22e{bottom:93.503733pt;}
.y2ee{bottom:97.593467pt;}
.y379{bottom:98.012000pt;}
.y5b{bottom:99.598400pt;}
.yb6{bottom:99.963067pt;}
.y337{bottom:106.012000pt;}
.y29d{bottom:106.462533pt;}
.y1d3{bottom:106.608533pt;}
.y1cd{bottom:106.627200pt;}
.y1c5{bottom:106.655200pt;}
.y286{bottom:106.813867pt;}
.y14e{bottom:106.818800pt;}
.y14b{bottom:106.828133pt;}
.y148{bottom:106.837467pt;}
.y22d{bottom:106.841067pt;}
.y378{bottom:111.345333pt;}
.y2ed{bottom:112.260133pt;}
.yb5{bottom:113.300400pt;}
.y5a{bottom:115.598400pt;}
.y336{bottom:119.345333pt;}
.y1d2{bottom:119.945867pt;}
.y1cc{bottom:119.964533pt;}
.y142{bottom:119.969467pt;}
.y1c4{bottom:119.992533pt;}
.y233{bottom:120.150400pt;}
.y285{bottom:120.151200pt;}
.y22c{bottom:120.178400pt;}
.y29c{bottom:122.462533pt;}
.y377{bottom:124.678667pt;}
.yb4{bottom:126.637733pt;}
.y2ec{bottom:126.926800pt;}
.y59{bottom:131.598400pt;}
.y335{bottom:132.678667pt;}
.y1d1{bottom:133.283200pt;}
.y1cb{bottom:133.301867pt;}
.y141{bottom:133.306800pt;}
.y1c8{bottom:133.311200pt;}
.y1c3{bottom:133.329867pt;}
.y137{bottom:133.334800pt;}
.y28d{bottom:133.460533pt;}
.y232{bottom:133.487733pt;}
.y284{bottom:133.488533pt;}
.y22b{bottom:133.515733pt;}
.y228{bottom:133.525067pt;}
.y376{bottom:138.012000pt;}
.y29b{bottom:138.462533pt;}
.ybd{bottom:139.937733pt;}
.yb3{bottom:139.975067pt;}
.yad{bottom:139.993733pt;}
.y2eb{bottom:141.369467pt;}
.y334{bottom:146.012000pt;}
.y147{bottom:146.616133pt;}
.y1d0{bottom:146.620533pt;}
.y1ca{bottom:146.639200pt;}
.y140{bottom:146.644133pt;}
.y1c7{bottom:146.648533pt;}
.y1c2{bottom:146.667200pt;}
.y136{bottom:146.672133pt;}
.y28c{bottom:146.797867pt;}
.y289{bottom:146.807200pt;}
.y231{bottom:146.825067pt;}
.y283{bottom:146.825867pt;}
.y22a{bottom:146.853067pt;}
.y227{bottom:146.862400pt;}
.y58{bottom:147.598400pt;}
.y375{bottom:151.345333pt;}
.ybc{bottom:153.275067pt;}
.yb2{bottom:153.312400pt;}
.yac{bottom:153.331067pt;}
.y29a{bottom:154.462533pt;}
.y2fb{bottom:154.464533pt;}
.y2ea{bottom:156.036133pt;}
.y333{bottom:159.345333pt;}
.y146{bottom:159.953467pt;}
.y1cf{bottom:159.957867pt;}
.y1c9{bottom:159.976533pt;}
.y13f{bottom:159.981467pt;}
.y1c6{bottom:159.985867pt;}
.y13b{bottom:159.990800pt;}
.y1c1{bottom:160.004533pt;}
.y135{bottom:160.009467pt;}
.y28b{bottom:160.135200pt;}
.y288{bottom:160.144533pt;}
.y230{bottom:160.162400pt;}
.y282{bottom:160.163200pt;}
.y229{bottom:160.190400pt;}
.y226{bottom:160.199733pt;}
.y57{bottom:163.598400pt;}
.y374{bottom:164.678667pt;}
.ybb{bottom:166.612400pt;}
.yb1{bottom:166.649733pt;}
.yab{bottom:166.668400pt;}
.ya7{bottom:166.677733pt;}
.y2fa{bottom:170.104533pt;}
.y299{bottom:170.462533pt;}
.y2e9{bottom:170.478800pt;}
.y332{bottom:172.678667pt;}
.y1c0{bottom:173.117867pt;}
.y145{bottom:173.290800pt;}
.y225{bottom:173.313067pt;}
.y13e{bottom:173.318800pt;}
.y13a{bottom:173.328133pt;}
.y134{bottom:173.346800pt;}
.y28a{bottom:173.472533pt;}
.y287{bottom:173.481867pt;}
.y281{bottom:173.500533pt;}
.y2a{bottom:176.363733pt;}
.y373{bottom:178.012000pt;}
.y56{bottom:179.598400pt;}
.yba{bottom:179.949733pt;}
.yb0{bottom:179.987067pt;}
.yaa{bottom:180.005733pt;}
.ya6{bottom:180.015067pt;}
.y2e8{bottom:184.921467pt;}
.y331{bottom:186.012000pt;}
.y1bf{bottom:186.455200pt;}
.y298{bottom:186.462533pt;}
.y280{bottom:186.613867pt;}
.y144{bottom:186.628133pt;}
.y224{bottom:186.650400pt;}
.y13d{bottom:186.656133pt;}
.y139{bottom:186.665467pt;}
.y133{bottom:186.684133pt;}
.y372{bottom:191.345333pt;}
.y29{bottom:192.363733pt;}
.yb9{bottom:193.287067pt;}
.yaf{bottom:193.324400pt;}
.ya9{bottom:193.343067pt;}
.ya5{bottom:193.352400pt;}
.y55{bottom:195.598400pt;}
.y330{bottom:199.345333pt;}
.y2e7{bottom:199.588133pt;}
.y1be{bottom:199.792533pt;}
.y27f{bottom:199.951200pt;}
.y143{bottom:199.965467pt;}
.y223{bottom:199.987733pt;}
.y13c{bottom:199.993467pt;}
.y138{bottom:200.002800pt;}
.y132{bottom:200.021467pt;}
.y218{bottom:200.025067pt;}
.y297{bottom:202.462533pt;}
.y2f9{bottom:202.464533pt;}
.y371{bottom:204.678667pt;}
.yb8{bottom:206.624400pt;}
.yae{bottom:206.661733pt;}
.ya8{bottom:206.680400pt;}
.ya4{bottom:206.689733pt;}
.y28{bottom:208.363733pt;}
.y54{bottom:211.598400pt;}
.y32f{bottom:212.678667pt;}
.y1bd{bottom:213.129867pt;}
.y131{bottom:213.134800pt;}
.y27e{bottom:213.288533pt;}
.y222{bottom:213.325067pt;}
.y217{bottom:213.362400pt;}
.y2e6{bottom:214.030800pt;}
.y370{bottom:218.012000pt;}
.y2f8{bottom:218.104533pt;}
.y296{bottom:218.462533pt;}
.ya1{bottom:219.803067pt;}
.y27{bottom:224.363733pt;}
.y32e{bottom:226.012000pt;}
.y1bc{bottom:226.467200pt;}
.y130{bottom:226.472133pt;}
.y12d{bottom:226.481467pt;}
.y1b3{bottom:226.495200pt;}
.y27d{bottom:226.625867pt;}
.y221{bottom:226.662400pt;}
.y216{bottom:226.699733pt;}
.y53{bottom:227.598400pt;}
.y2e5{bottom:228.473467pt;}
.y36f{bottom:231.345333pt;}
.ya0{bottom:233.140400pt;}
.y295{bottom:234.462533pt;}
.y32d{bottom:239.345333pt;}
.y1bb{bottom:239.804533pt;}
.y12f{bottom:239.809467pt;}
.y12c{bottom:239.818800pt;}
.y1b2{bottom:239.832533pt;}
.y27c{bottom:239.963200pt;}
.y275{bottom:239.981867pt;}
.y271{bottom:239.991200pt;}
.y220{bottom:239.999733pt;}
.y215{bottom:240.037067pt;}
.y26{bottom:240.363733pt;}
.y52{bottom:243.598400pt;}
.y36e{bottom:244.678667pt;}
.ya3{bottom:246.468400pt;}
.y9f{bottom:246.477733pt;}
.y2f7{bottom:250.104533pt;}
.y294{bottom:250.462533pt;}
.y32c{bottom:252.678667pt;}
.y1ba{bottom:253.141867pt;}
.y12e{bottom:253.146800pt;}
.y12b{bottom:253.156133pt;}
.y1b1{bottom:253.169867pt;}
.y27b{bottom:253.300533pt;}
.y278{bottom:253.309867pt;}
.y274{bottom:253.319200pt;}
.y270{bottom:253.328533pt;}
.y21f{bottom:253.337067pt;}
.y214{bottom:253.374400pt;}
.y25{bottom:256.363733pt;}
.y2e4{bottom:256.484133pt;}
.y36d{bottom:258.012000pt;}
.y51{bottom:259.598400pt;}
.ya2{bottom:259.805733pt;}
.y9e{bottom:259.815067pt;}
.y32b{bottom:266.012000pt;}
.y12a{bottom:266.269467pt;}
.y293{bottom:266.462533pt;}
.y1b9{bottom:266.479200pt;}
.y1b6{bottom:266.488533pt;}
.y1b0{bottom:266.507200pt;}
.y27a{bottom:266.637867pt;}
.y277{bottom:266.647200pt;}
.y273{bottom:266.656533pt;}
.y26f{bottom:266.665867pt;}
.y21e{bottom:266.674400pt;}
.y21b{bottom:266.683733pt;}
.y213{bottom:266.711733pt;}
.y36c{bottom:271.345333pt;}
.y24{bottom:272.363733pt;}
.y50{bottom:275.598400pt;}
.y32a{bottom:279.345333pt;}
.y129{bottom:279.606800pt;}
.y1b8{bottom:279.816533pt;}
.y1b5{bottom:279.825867pt;}
.y1af{bottom:279.844533pt;}
.y279{bottom:279.975200pt;}
.y276{bottom:279.984533pt;}
.y272{bottom:279.993867pt;}
.y26e{bottom:280.003200pt;}
.y21d{bottom:280.011733pt;}
.y21a{bottom:280.021067pt;}
.y212{bottom:280.049067pt;}
.y292{bottom:282.462533pt;}
.y2f6{bottom:282.464533pt;}
.y36b{bottom:284.678667pt;}
.y9d{bottom:287.161733pt;}
.y2e3{bottom:287.502533pt;}
.y23{bottom:288.363733pt;}
.y4f{bottom:291.598400pt;}
.y329{bottom:292.678667pt;}
.y128{bottom:292.720133pt;}
.y26a{bottom:293.125867pt;}
.y1b7{bottom:293.153867pt;}
.y1b4{bottom:293.163200pt;}
.y1ae{bottom:293.181867pt;}
.y21c{bottom:293.349067pt;}
.y219{bottom:293.358400pt;}
.y211{bottom:293.386400pt;}
.y36a{bottom:298.012000pt;}
.y2f5{bottom:298.104533pt;}
.y291{bottom:298.462533pt;}
.y22{bottom:304.363733pt;}
.y328{bottom:306.012000pt;}
.y127{bottom:306.057467pt;}
.y123{bottom:306.066800pt;}
.y11f{bottom:306.076133pt;}
.y1aa{bottom:306.304533pt;}
.y269{bottom:306.463200pt;}
.y261{bottom:306.491200pt;}
.y210{bottom:306.499733pt;}
.y4e{bottom:307.598400pt;}
.y369{bottom:311.345333pt;}
.y290{bottom:314.462533pt;}
.y9c{bottom:317.742533pt;}
.y1a9{bottom:319.316400pt;}
.y327{bottom:319.345333pt;}
.y126{bottom:319.394800pt;}
.y122{bottom:319.404133pt;}
.y11e{bottom:319.413467pt;}
.y268{bottom:319.800533pt;}
.y260{bottom:319.828533pt;}
.y20f{bottom:319.837067pt;}
.y21{bottom:320.363733pt;}
.y4d{bottom:323.598400pt;}
.y368{bottom:324.678667pt;}
.y2f0{bottom:328.953467pt;}
.y2e2{bottom:330.342533pt;}
.y28f{bottom:330.462533pt;}
.y2f4{bottom:330.464533pt;}
.y1a8{bottom:332.653733pt;}
.y326{bottom:332.678667pt;}
.y125{bottom:332.732133pt;}
.y121{bottom:332.741467pt;}
.y11c{bottom:332.750800pt;}
.y1ad{bottom:332.960533pt;}
.y26d{bottom:333.119200pt;}
.y267{bottom:333.137867pt;}
.y264{bottom:333.147200pt;}
.y25f{bottom:333.165867pt;}
.y20e{bottom:333.174400pt;}
.y20b{bottom:333.183733pt;}
.y20{bottom:336.363733pt;}
.y367{bottom:338.012000pt;}
.y4c{bottom:339.598400pt;}
.y11b{bottom:345.767067pt;}
.y1a7{bottom:345.991067pt;}
.y325{bottom:346.012000pt;}
.y124{bottom:346.069467pt;}
.y120{bottom:346.078800pt;}
.y11d{bottom:346.088133pt;}
.y208{bottom:346.243067pt;}
.y1ac{bottom:346.297867pt;}
.y2e1{bottom:346.342533pt;}
.y26c{bottom:346.456533pt;}
.y28e{bottom:346.462533pt;}
.y2f3{bottom:346.464533pt;}
.y266{bottom:346.475200pt;}
.y263{bottom:346.484533pt;}
.y25e{bottom:346.503200pt;}
.y20d{bottom:346.511733pt;}
.y20a{bottom:346.521067pt;}
.y366{bottom:351.345333pt;}
.y1f{bottom:352.363733pt;}
.y4b{bottom:355.598400pt;}
.y11a{bottom:358.880400pt;}
.y115{bottom:358.899067pt;}
.y1a6{bottom:359.328400pt;}
.y324{bottom:359.345333pt;}
.y207{bottom:359.580400pt;}
.y1ab{bottom:359.635200pt;}
.y26b{bottom:359.793867pt;}
.y265{bottom:359.812533pt;}
.y262{bottom:359.821867pt;}
.y25d{bottom:359.840533pt;}
.y20c{bottom:359.849067pt;}
.y209{bottom:359.858400pt;}
.y2e0{bottom:362.342533pt;}
.y87{bottom:362.462533pt;}
.y2c9{bottom:362.464533pt;}
.y9b{bottom:362.595867pt;}
.y365{bottom:364.678667pt;}
.y1e{bottom:368.363733pt;}
.y4a{bottom:371.598400pt;}
.y119{bottom:372.217733pt;}
.y114{bottom:372.236400pt;}
.y19d{bottom:372.469733pt;}
.y323{bottom:372.678667pt;}
.y206{bottom:372.693733pt;}
.y25c{bottom:372.953867pt;}
.y364{bottom:378.012000pt;}
.y2df{bottom:378.342533pt;}
.y86{bottom:378.462533pt;}
.y2c8{bottom:378.464533pt;}
.y9a{bottom:378.595867pt;}
.y1d{bottom:384.363733pt;}
.y118{bottom:385.555067pt;}
.y113{bottom:385.573733pt;}
.y19c{bottom:385.807067pt;}
.y322{bottom:386.012000pt;}
.y205{bottom:386.031067pt;}
.y25b{bottom:386.291200pt;}
.y257{bottom:386.300533pt;}
.y49{bottom:387.598400pt;}
.y363{bottom:391.345333pt;}
.y2f2{bottom:394.104533pt;}
.y2de{bottom:394.342533pt;}
.y85{bottom:394.462533pt;}
.y2c7{bottom:394.464533pt;}
.y99{bottom:394.595867pt;}
.y2cb{bottom:398.102800pt;}
.y117{bottom:398.892400pt;}
.y112{bottom:398.911067pt;}
.y19b{bottom:399.144400pt;}
.y321{bottom:399.345333pt;}
.y204{bottom:399.368400pt;}
.y200{bottom:399.377733pt;}
.y25a{bottom:399.628533pt;}
.y256{bottom:399.637867pt;}
.y1c{bottom:400.363733pt;}
.y48{bottom:403.598400pt;}
.y362{bottom:404.678667pt;}
.y2dd{bottom:410.342533pt;}
.y84{bottom:410.462533pt;}
.y2c6{bottom:410.464533pt;}
.y98{bottom:410.595867pt;}
.y116{bottom:412.229733pt;}
.y111{bottom:412.248400pt;}
.y1a2{bottom:412.453733pt;}
.y19a{bottom:412.481733pt;}
.y320{bottom:412.678667pt;}
.y255{bottom:412.687067pt;}
.y203{bottom:412.705733pt;}
.y1ff{bottom:412.715067pt;}
.y1fc{bottom:412.724400pt;}
.y259{bottom:412.965867pt;}
.y1b{bottom:416.363733pt;}
.y361{bottom:418.012000pt;}
.y47{bottom:419.598400pt;}
.y10e{bottom:425.371067pt;}
.y1a1{bottom:425.791067pt;}
.y199{bottom:425.819067pt;}
.y195{bottom:425.828400pt;}
.y31f{bottom:426.012000pt;}
.y254{bottom:426.024400pt;}
.y202{bottom:426.043067pt;}
.y1fe{bottom:426.052400pt;}
.y1fb{bottom:426.061733pt;}
.y258{bottom:426.303200pt;}
.y2dc{bottom:426.342533pt;}
.y83{bottom:426.462533pt;}
.y2c5{bottom:426.464533pt;}
.y97{bottom:426.595867pt;}
.y360{bottom:431.345333pt;}
.y1a{bottom:432.363733pt;}
.y46{bottom:435.598400pt;}
.y10d{bottom:438.708400pt;}
.y1a5{bottom:439.109733pt;}
.y1a0{bottom:439.128400pt;}
.y198{bottom:439.156400pt;}
.y194{bottom:439.165733pt;}
.y24f{bottom:439.184400pt;}
.y31e{bottom:439.345333pt;}
.y201{bottom:439.380400pt;}
.y1fd{bottom:439.389733pt;}
.y1fa{bottom:439.399067pt;}
.y2db{bottom:442.342533pt;}
.y82{bottom:442.462533pt;}
.y2c4{bottom:442.464533pt;}
.y96{bottom:442.595867pt;}
.y35f{bottom:444.678667pt;}
.y19{bottom:448.363733pt;}
.y45{bottom:451.598400pt;}
.y10c{bottom:452.045733pt;}
.y1a4{bottom:452.447067pt;}
.y19f{bottom:452.465733pt;}
.y197{bottom:452.493733pt;}
.y193{bottom:452.503067pt;}
.y1f9{bottom:452.512400pt;}
.y1f5{bottom:452.521733pt;}
.y1f1{bottom:452.531067pt;}
.y31d{bottom:452.678667pt;}
.y35e{bottom:458.012000pt;}
.y2da{bottom:458.342533pt;}
.y81{bottom:458.462533pt;}
.y2c3{bottom:458.464533pt;}
.y95{bottom:458.595867pt;}
.y18{bottom:464.363733pt;}
.y110{bottom:465.364400pt;}
.y10b{bottom:465.383067pt;}
.y1a3{bottom:465.784400pt;}
.y19e{bottom:465.803067pt;}
.y196{bottom:465.831067pt;}
.y192{bottom:465.840400pt;}
.y1f8{bottom:465.849733pt;}
.y1f4{bottom:465.859067pt;}
.y1f0{bottom:465.868400pt;}
.y31c{bottom:466.012000pt;}
.y44{bottom:467.598400pt;}
.y35d{bottom:471.345333pt;}
.y2d9{bottom:474.342533pt;}
.y80{bottom:474.462533pt;}
.y2c2{bottom:474.464533pt;}
.y94{bottom:474.595867pt;}
.y10f{bottom:478.701733pt;}
.y10a{bottom:478.720400pt;}
.y187{bottom:478.991067pt;}
.y253{bottom:479.168400pt;}
.y251{bottom:479.177733pt;}
.y1f7{bottom:479.187067pt;}
.y1f3{bottom:479.196400pt;}
.y1ef{bottom:479.205733pt;}
.y31b{bottom:479.345333pt;}
.y17{bottom:480.363733pt;}
.y43{bottom:483.598400pt;}
.y35c{bottom:484.678667pt;}
.y7f{bottom:490.462533pt;}
.y2c1{bottom:490.464533pt;}
.y93{bottom:490.595867pt;}
.y107{bottom:491.833733pt;}
.y191{bottom:492.291067pt;}
.y18c{bottom:492.309733pt;}
.y186{bottom:492.328400pt;}
.y252{bottom:492.505733pt;}
.y250{bottom:492.515067pt;}
.y1f6{bottom:492.524400pt;}
.y1f2{bottom:492.533733pt;}
.y1ee{bottom:492.543067pt;}
.y31a{bottom:492.678667pt;}
.y16{bottom:496.363733pt;}
.y35b{bottom:498.012000pt;}
.y42{bottom:499.598400pt;}
.y106{bottom:505.171067pt;}
.y101{bottom:505.189733pt;}
.y190{bottom:505.628400pt;}
.y18b{bottom:505.647067pt;}
.y1ed{bottom:505.656400pt;}
.y185{bottom:505.665733pt;}
.y2d8{bottom:505.982533pt;}
.y319{bottom:506.012000pt;}
.y7e{bottom:506.462533pt;}
.y2c0{bottom:506.464533pt;}
.y92{bottom:506.595867pt;}
.y35a{bottom:511.345333pt;}
.y15{bottom:512.363733pt;}
.y41{bottom:515.598400pt;}
.y105{bottom:518.508400pt;}
.y100{bottom:518.527067pt;}
.y18f{bottom:518.965733pt;}
.y18a{bottom:518.984400pt;}
.y1ec{bottom:518.993733pt;}
.y184{bottom:519.003067pt;}
.y1e9{bottom:519.012400pt;}
.y318{bottom:519.345333pt;}
.y7d{bottom:522.462533pt;}
.y2bf{bottom:522.464533pt;}
.y91{bottom:522.595867pt;}
.y359{bottom:524.678667pt;}
.y14{bottom:528.363733pt;}
.y40{bottom:531.598400pt;}
.y104{bottom:531.845733pt;}
.yff{bottom:531.864400pt;}
.y18e{bottom:532.303067pt;}
.y189{bottom:532.321733pt;}
.y1eb{bottom:532.331067pt;}
.y183{bottom:532.340400pt;}
.y1e8{bottom:532.349733pt;}
.y317{bottom:532.678667pt;}
.y358{bottom:538.012000pt;}
.y7c{bottom:538.462533pt;}
.y2be{bottom:538.464533pt;}
.y90{bottom:538.595867pt;}
.y13{bottom:544.363733pt;}
.y109{bottom:545.164400pt;}
.y103{bottom:545.183067pt;}
.yfe{bottom:545.201733pt;}
.y18d{bottom:545.640400pt;}
.y188{bottom:545.659067pt;}
.y1ea{bottom:545.668400pt;}
.y182{bottom:545.677733pt;}
.y1e7{bottom:545.687067pt;}
.y316{bottom:546.012000pt;}
.y3f{bottom:547.598400pt;}
.y357{bottom:551.345333pt;}
.y2f1{bottom:554.104533pt;}
.y7b{bottom:554.462533pt;}
.y2bd{bottom:554.464533pt;}
.y8f{bottom:554.595867pt;}
.y108{bottom:558.501733pt;}
.y102{bottom:558.520400pt;}
.yfd{bottom:558.539067pt;}
.y17e{bottom:558.800400pt;}
.y1e3{bottom:558.819067pt;}
.y24e{bottom:558.977733pt;}
.y24b{bottom:559.005733pt;}
.y248{bottom:559.024400pt;}
.y315{bottom:559.345333pt;}
.y3e{bottom:563.598400pt;}
.y356{bottom:564.678667pt;}
.y7a{bottom:570.462533pt;}
.y2bc{bottom:570.464533pt;}
.y8e{bottom:570.595867pt;}
.yf6{bottom:571.661733pt;}
.y17d{bottom:572.137733pt;}
.y178{bottom:572.156400pt;}
.y1e2{bottom:572.165733pt;}
.y24d{bottom:572.315067pt;}
.y24a{bottom:572.343067pt;}
.y247{bottom:572.361733pt;}
.y314{bottom:572.678667pt;}
.y355{bottom:578.012000pt;}
.y3d{bottom:579.598400pt;}
.y12{bottom:584.504267pt;}
.yf5{bottom:584.999067pt;}
.y1e6{bottom:585.465733pt;}
.y17c{bottom:585.475067pt;}
.y177{bottom:585.493733pt;}
.y1e1{bottom:585.503067pt;}
.y24c{bottom:585.652400pt;}
.y249{bottom:585.680400pt;}
.y246{bottom:585.699067pt;}
.y313{bottom:586.012000pt;}
.y79{bottom:586.462533pt;}
.y2bb{bottom:586.464533pt;}
.y8d{bottom:586.595867pt;}
.y354{bottom:591.345333pt;}
.y11{bottom:595.571600pt;}
.y3c{bottom:595.598400pt;}
.yf4{bottom:598.336400pt;}
.yed{bottom:598.364400pt;}
.y181{bottom:598.793733pt;}
.y1e5{bottom:598.803067pt;}
.y17b{bottom:598.812400pt;}
.y244{bottom:598.821733pt;}
.y176{bottom:598.831067pt;}
.y1e0{bottom:598.840400pt;}
.y312{bottom:599.345333pt;}
.y2d7{bottom:602.342533pt;}
.y78{bottom:602.462533pt;}
.y2ba{bottom:602.464533pt;}
.y8c{bottom:602.595867pt;}
.y353{bottom:604.678667pt;}
.y3b{bottom:611.598400pt;}
.yf3{bottom:611.673733pt;}
.yec{bottom:611.701733pt;}
.ye6{bottom:611.720400pt;}
.y180{bottom:612.131067pt;}
.y1e4{bottom:612.140400pt;}
.y17a{bottom:612.149733pt;}
.y243{bottom:612.159067pt;}
.y175{bottom:612.168400pt;}
.y1df{bottom:612.177733pt;}
.y311{bottom:612.678667pt;}
.y352{bottom:618.012000pt;}
.y2d6{bottom:618.342533pt;}
.y77{bottom:618.462533pt;}
.y2b9{bottom:618.464533pt;}
.y8b{bottom:618.595867pt;}
.yf2{bottom:625.011067pt;}
.yeb{bottom:625.039067pt;}
.ye5{bottom:625.057733pt;}
.y1de{bottom:625.309733pt;}
.y17f{bottom:625.468400pt;}
.y179{bottom:625.487067pt;}
.y242{bottom:625.496400pt;}
.y174{bottom:625.505733pt;}
.y23f{bottom:625.515067pt;}
.y310{bottom:626.012000pt;}
.y3a{bottom:627.598400pt;}
.y10{bottom:628.585600pt;}
.y351{bottom:631.345333pt;}
.y2d5{bottom:634.342533pt;}
.y76{bottom:634.462533pt;}
.y2b8{bottom:634.464533pt;}
.y8a{bottom:634.595867pt;}
.yf{bottom:635.763200pt;}
.yf1{bottom:638.348400pt;}
.yea{bottom:638.376400pt;}
.ye4{bottom:638.395067pt;}
.y16b{bottom:638.647067pt;}
.y245{bottom:638.824400pt;}
.y241{bottom:638.833733pt;}
.y240{bottom:638.843067pt;}
.y23e{bottom:638.852400pt;}
.y30f{bottom:639.345333pt;}
.y39{bottom:643.598400pt;}
.y350{bottom:644.678667pt;}
.y2d4{bottom:650.342533pt;}
.y75{bottom:650.462533pt;}
.y2b7{bottom:650.464533pt;}
.y89{bottom:650.595867pt;}
.yfc{bottom:651.648400pt;}
.yf9{bottom:651.657733pt;}
.yf0{bottom:651.685733pt;}
.ye9{bottom:651.713733pt;}
.ye3{bottom:651.732400pt;}
.y16a{bottom:651.984400pt;}
.ye{bottom:652.585600pt;}
.y30e{bottom:652.678667pt;}
.y34f{bottom:658.012000pt;}
.y38{bottom:659.598400pt;}
.yd{bottom:659.763200pt;}
.yfb{bottom:664.985733pt;}
.yf8{bottom:664.995067pt;}
.yef{bottom:665.023067pt;}
.ye8{bottom:665.051067pt;}
.ye2{bottom:665.069733pt;}
.y173{bottom:665.284400pt;}
.y169{bottom:665.321733pt;}
.y30d{bottom:666.012000pt;}
.y2d3{bottom:666.342533pt;}
.y74{bottom:666.462533pt;}
.y2b6{bottom:666.464533pt;}
.y34e{bottom:671.345333pt;}
.y37{bottom:675.598400pt;}
.yc{bottom:676.585600pt;}
.yfa{bottom:678.323067pt;}
.yf7{bottom:678.332400pt;}
.yee{bottom:678.360400pt;}
.ye7{bottom:678.388400pt;}
.ye1{bottom:678.407067pt;}
.y172{bottom:678.621733pt;}
.y23d{bottom:678.640400pt;}
.y168{bottom:678.659067pt;}
.y30c{bottom:679.345333pt;}
.y88{bottom:682.235867pt;}
.y2d2{bottom:682.342533pt;}
.y73{bottom:682.462533pt;}
.y2b5{bottom:682.464533pt;}
.yb{bottom:683.763200pt;}
.y34d{bottom:684.678667pt;}
.yd5{bottom:691.567067pt;}
.y36{bottom:691.598400pt;}
.y171{bottom:691.959067pt;}
.y16e{bottom:691.968400pt;}
.y23c{bottom:691.977733pt;}
.y167{bottom:691.996400pt;}
.y30b{bottom:692.678667pt;}
.y34c{bottom:698.012000pt;}
.y2d1{bottom:698.342533pt;}
.y72{bottom:698.462533pt;}
.y2b4{bottom:698.464533pt;}
.ya{bottom:700.585733pt;}
.yd4{bottom:704.904400pt;}
.y170{bottom:705.296400pt;}
.y16d{bottom:705.305733pt;}
.y23b{bottom:705.315067pt;}
.y166{bottom:705.333733pt;}
.y30a{bottom:706.012000pt;}
.y35{bottom:707.598400pt;}
.y34b{bottom:711.345333pt;}
.y9{bottom:712.585733pt;}
.y2d0{bottom:714.342533pt;}
.y71{bottom:714.462533pt;}
.y2b3{bottom:714.464533pt;}
.yd3{bottom:718.241733pt;}
.y16f{bottom:718.633733pt;}
.y16c{bottom:718.643067pt;}
.y23a{bottom:718.652400pt;}
.y165{bottom:718.671067pt;}
.y309{bottom:719.345333pt;}
.y34{bottom:723.598400pt;}
.y34a{bottom:724.678667pt;}
.y2cf{bottom:730.342533pt;}
.y70{bottom:730.462533pt;}
.y2b2{bottom:730.464533pt;}
.ye0{bottom:731.523067pt;}
.yd2{bottom:731.579067pt;}
.y1dd{bottom:731.784400pt;}
.y15f{bottom:731.803067pt;}
.y239{bottom:731.812400pt;}
.y308{bottom:732.678667pt;}
.y349{bottom:738.012000pt;}
.y8{bottom:738.116400pt;}
.y33{bottom:739.598400pt;}
.ydf{bottom:744.860400pt;}
.yd1{bottom:744.916400pt;}
.y1dc{bottom:745.121733pt;}
.y15e{bottom:745.140400pt;}
.y238{bottom:745.149733pt;}
.y307{bottom:746.012000pt;}
.y2ce{bottom:746.342533pt;}
.y6f{bottom:746.462533pt;}
.y2b1{bottom:746.464533pt;}
.y348{bottom:751.345333pt;}
.y32{bottom:755.598400pt;}
.y7{bottom:756.783067pt;}
.yde{bottom:758.197733pt;}
.yd0{bottom:758.253733pt;}
.yc7{bottom:758.281733pt;}
.y162{bottom:758.459067pt;}
.y1da{bottom:758.468400pt;}
.y15d{bottom:758.477733pt;}
.y237{bottom:758.487067pt;}
.y306{bottom:759.345333pt;}
.y2cd{bottom:762.342533pt;}
.y6e{bottom:762.462533pt;}
.y2b0{bottom:762.464533pt;}
.y347{bottom:764.678667pt;}
.ydd{bottom:771.535067pt;}
.ycf{bottom:771.591067pt;}
.y31{bottom:771.598400pt;}
.yc6{bottom:771.619067pt;}
.y164{bottom:771.787067pt;}
.y161{bottom:771.796400pt;}
.y1d9{bottom:771.805733pt;}
.y15c{bottom:771.815067pt;}
.y236{bottom:771.824400pt;}
.y305{bottom:772.678667pt;}
.y346{bottom:778.012000pt;}
.y2a1{bottom:778.102533pt;}
.y6d{bottom:778.462533pt;}
.y2af{bottom:778.464533pt;}
.ydc{bottom:784.872400pt;}
.yce{bottom:784.928400pt;}
.yc5{bottom:784.956400pt;}
.y163{bottom:785.124400pt;}
.y160{bottom:785.133733pt;}
.y1d8{bottom:785.143067pt;}
.y15b{bottom:785.152400pt;}
.y235{bottom:785.161733pt;}
.y304{bottom:786.012000pt;}
.y5e{bottom:787.598400pt;}
.y345{bottom:791.345333pt;}
.y2cc{bottom:793.982533pt;}
.y6c{bottom:794.462533pt;}
.y2ae{bottom:794.464533pt;}
.y6{bottom:797.816533pt;}
.ydb{bottom:798.209733pt;}
.ycd{bottom:798.265733pt;}
.y156{bottom:798.275067pt;}
.yc4{bottom:798.293733pt;}
.y1db{bottom:798.471067pt;}
.y1d7{bottom:798.480400pt;}
.y234{bottom:798.499067pt;}
.y303{bottom:799.345333pt;}
.y30{bottom:803.238400pt;}
.y5d{bottom:803.598400pt;}
.y344{bottom:804.678667pt;}
.y2a0{bottom:809.982533pt;}
.y6b{bottom:810.462533pt;}
.y2ad{bottom:810.464533pt;}
.yda{bottom:811.547067pt;}
.y1d6{bottom:811.593733pt;}
.ycc{bottom:811.603067pt;}
.y155{bottom:811.612400pt;}
.yc3{bottom:811.631067pt;}
.y302{bottom:812.678667pt;}
.y343{bottom:818.012000pt;}
.yd9{bottom:824.884400pt;}
.y1d5{bottom:824.931067pt;}
.ycb{bottom:824.940400pt;}
.y154{bottom:824.949733pt;}
.yc2{bottom:824.968400pt;}
.y301{bottom:826.012000pt;}
.y6a{bottom:826.462533pt;}
.y2ac{bottom:826.464533pt;}
.y5{bottom:830.226133pt;}
.y342{bottom:831.345333pt;}
.yd8{bottom:838.221733pt;}
.y159{bottom:838.268400pt;}
.yca{bottom:838.277733pt;}
.y153{bottom:838.287067pt;}
.yc1{bottom:838.305733pt;}
.y300{bottom:839.345333pt;}
.y69{bottom:842.462533pt;}
.y2ab{bottom:842.464533pt;}
.y341{bottom:844.678667pt;}
.yd7{bottom:851.559067pt;}
.y158{bottom:851.605733pt;}
.yc9{bottom:851.615067pt;}
.y152{bottom:851.624400pt;}
.yc0{bottom:851.643067pt;}
.y2ff{bottom:852.678667pt;}
.y340{bottom:858.012000pt;}
.y68{bottom:858.462533pt;}
.y2aa{bottom:858.464533pt;}
.y4{bottom:862.635733pt;}
.yd6{bottom:864.896400pt;}
.y15a{bottom:864.933733pt;}
.y157{bottom:864.943067pt;}
.yc8{bottom:864.952400pt;}
.y151{bottom:864.961733pt;}
.ybf{bottom:864.980400pt;}
.y2fe{bottom:866.012000pt;}
.y33f{bottom:871.345333pt;}
.y61{bottom:871.398400pt;}
.y67{bottom:874.462533pt;}
.y2a9{bottom:874.464533pt;}
.y2fd{bottom:879.345333pt;}
.y33e{bottom:884.678667pt;}
.y66{bottom:890.462533pt;}
.y2a8{bottom:890.464533pt;}
.ybe{bottom:891.991067pt;}
.y2fc{bottom:892.678667pt;}
.y3{bottom:895.045333pt;}
.y60{bottom:895.705067pt;}
.y33d{bottom:898.012000pt;}
.y65{bottom:906.462533pt;}
.y33c{bottom:911.345333pt;}
.y5f{bottom:911.705067pt;}
.y2a5{bottom:922.104533pt;}
.y64{bottom:922.462533pt;}
.y33b{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y2a7{bottom:1006.591867pt;}
.y62{bottom:1006.594400pt;}
.y63{bottom:1006.597067pt;}
.y2a4{bottom:1006.598400pt;}
.y33a{bottom:1006.598667pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.238281pt;}
.h12{height:25.940104pt;}
.h2{height:27.179688pt;}
.hb{height:29.121094pt;}
.h7{height:29.160156pt;}
.h15{height:29.625000pt;}
.h14{height:29.645833pt;}
.hd{height:31.062500pt;}
.hc{height:31.104167pt;}
.h11{height:32.757812pt;}
.hf{height:37.057292pt;}
.h13{height:37.437500pt;}
.h9{height:38.828125pt;}
.h10{height:38.870075pt;}
.ha{height:38.880208pt;}
.he{height:46.796875pt;}
.h16{height:48.236875pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:62.740133pt;}
.x7{left:68.031467pt;}
.x1e{left:69.921200pt;}
.xc{left:75.580933pt;}
.x5{left:85.417333pt;}
.x1{left:86.929067pt;}
.x13{left:88.818933pt;}
.x35{left:90.708800pt;}
.x4{left:94.488133pt;}
.x9{left:98.274267pt;}
.x1f{left:107.721200pt;}
.x37{left:109.606267pt;}
.x3{left:111.491467pt;}
.x10{left:117.169200pt;}
.x14{left:126.618933pt;}
.x8{left:169.380933pt;}
.x20{left:171.971867pt;}
.x2e{left:176.764800pt;}
.x21{left:179.531867pt;}
.x15{left:190.869600pt;}
.x16{left:198.429600pt;}
.x31{left:232.449200pt;}
.x22{left:300.473200pt;}
.x23{left:308.033200pt;}
.x17{left:319.370933pt;}
.x18{left:326.930933pt;}
.x6{left:404.481333pt;}
.xa{left:406.300933pt;}
.x24{left:413.863867pt;}
.x28{left:421.433200pt;}
.x11{left:425.195867pt;}
.x36{left:428.974000pt;}
.x19{left:432.761600pt;}
.xb{left:436.527600pt;}
.x34{left:447.874133pt;}
.x32{left:451.329200pt;}
.x12{left:455.435867pt;}
.x29{left:481.903867pt;}
.x2a{left:485.822533pt;}
.x25{left:489.454533pt;}
.x2f{left:507.258133pt;}
.x1a{left:508.352267pt;}
.x30{left:515.915867pt;}
.x33{left:529.875867pt;}
.x2c{left:544.814533pt;}
.xf{left:589.770933pt;}
.x26{left:595.285200pt;}
.x27{left:602.845200pt;}
.x1b{left:614.182933pt;}
.x2{left:616.324800pt;}
.x1c{left:621.742933pt;}
.x2b{left:641.524800pt;}
.xd{left:647.459200pt;}
.x2d{left:661.216133pt;}
.x1d{left:666.356800pt;}
}




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