
    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_d8c1ef4ad6bf32db6870c37e.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_730db4b3e216b3f3d6205750.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_bba6d28ab3da462a493d3951.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ed8ebb9ee47bc4ab6f6ffae9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_0ff6577d3c557da7d8d78058.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_f72dfd70a645014dc229eb3a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e24e92cd77f93ecc7a62fff8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e956f616d19547dd91f0f277.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_820404e865e2c1c4d370f66d.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_538383a4e3936702b7dbccb5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e38d79f45899c576c093cdf3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.091309;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_28b10b105e521113ab9f1fa2.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d2ae5eb307960569cdbd268c.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3af8beba612d8db5428eb236.woff2')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_f21b6ab60b7f73992a4a5d14.woff2')format("woff");}.fff{font-family:fff;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2ba3dae94ce1d725f74d434a.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_57475f351ff7ad4b07975da3.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.091309;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:ff12;src:url('chunks/assets/font_bb85fbfac9db123df30fe673.woff2')format("woff");}.ff12{font-family:ff12;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;}
@font-face{font-family:ff13;src:url('chunks/assets/font_57475f351ff7ad4b07975da3.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.091309;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:ff14;src:url('chunks/assets/font_7c2412a074c9e653d297384d.woff2')format("woff");}.ff14{font-family:ff14;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;}
@font-face{font-family:ff15;src:url('chunks/assets/font_767eec9e9cb48c95316886b7.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.091309;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:ff16;src:url('chunks/assets/font_25d7e0e15eff87d87c7a899f.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_a656a370708ad5542816e7f3.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_846f313e33310b9cfc2559fc.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.091309;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:ff19;src:url('chunks/assets/font_25d7e0e15eff87d87c7a899f.woff2')format("woff");}.ff19{font-family:ff19;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;}
.m2{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);}
.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);}
.v5{vertical-align:-36.633000px;}
.v2{vertical-align:-21.701400px;}
.v4{vertical-align:-11.883000px;}
.vd{vertical-align:-9.357600px;}
.vb{vertical-align:-4.476672px;}
.v7{vertical-align:-1.681229px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.681229px;}
.v8{vertical-align:3.024000px;}
.vc{vertical-align:22.610400px;}
.va{vertical-align:25.367808px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.v9{vertical-align:39.466752px;}
.ls94{letter-spacing:-2.640000px;}
.ls5f{letter-spacing:-0.864000px;}
.lse{letter-spacing:-0.780000px;}
.ls44{letter-spacing:-0.600000px;}
.lsa0{letter-spacing:-0.528000px;}
.lsf{letter-spacing:-0.480000px;}
.ls9e{letter-spacing:-0.432000px;}
.ls66{letter-spacing:-0.360000px;}
.ls6f{letter-spacing:-0.300000px;}
.ls35{letter-spacing:-0.240000px;}
.ls93{letter-spacing:-0.192000px;}
.ls37{letter-spacing:-0.180000px;}
.ls92{letter-spacing:-0.144000px;}
.ls34{letter-spacing:-0.120000px;}
.ls9f{letter-spacing:-0.096000px;}
.ls64{letter-spacing:-0.083402px;}
.ls63{letter-spacing:-0.083401px;}
.ls32{letter-spacing:-0.060000px;}
.ls7a{letter-spacing:-0.048000px;}
.lsd{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.001800px;}
.ls1{letter-spacing:0.004140px;}
.ls67{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.005076px;}
.ls4f{letter-spacing:0.009600px;}
.ls62{letter-spacing:0.041701px;}
.ls60{letter-spacing:0.048000px;}
.ls8{letter-spacing:0.060000px;}
.ls61{letter-spacing:0.096000px;}
.ls28{letter-spacing:0.120000px;}
.ls98{letter-spacing:0.144000px;}
.ls52{letter-spacing:0.173760px;}
.ls48{letter-spacing:0.174900px;}
.ls11{letter-spacing:0.180000px;}
.ls7b{letter-spacing:0.192000px;}
.ls4c{letter-spacing:0.210960px;}
.ls12{letter-spacing:0.240000px;}
.ls47{letter-spacing:0.244860px;}
.ls82{letter-spacing:0.288000px;}
.ls2c{letter-spacing:0.300000px;}
.ls51{letter-spacing:0.319200px;}
.ls8c{letter-spacing:0.336000px;}
.ls43{letter-spacing:0.360000px;}
.ls58{letter-spacing:0.384000px;}
.ls4b{letter-spacing:0.389400px;}
.ls30{letter-spacing:0.420000px;}
.ls86{letter-spacing:0.432000px;}
.ls9b{letter-spacing:0.446400px;}
.ls1e{letter-spacing:0.480000px;}
.ls7e{letter-spacing:0.528000px;}
.ls1d{letter-spacing:0.540000px;}
.ls5c{letter-spacing:0.576000px;}
.ls2e{letter-spacing:0.600000px;}
.ls7d{letter-spacing:0.624000px;}
.ls46{letter-spacing:0.629640px;}
.ls14{letter-spacing:0.660000px;}
.ls8a{letter-spacing:0.672000px;}
.ls18{letter-spacing:0.720000px;}
.ls89{letter-spacing:0.768000px;}
.ls17{letter-spacing:0.780000px;}
.ls5d{letter-spacing:0.816000px;}
.ls24{letter-spacing:0.840000px;}
.ls8e{letter-spacing:0.864000px;}
.lsc{letter-spacing:0.900000px;}
.ls59{letter-spacing:0.912000px;}
.ls2a{letter-spacing:0.960000px;}
.ls95{letter-spacing:1.008000px;}
.ls13{letter-spacing:1.020000px;}
.ls83{letter-spacing:1.056000px;}
.ls6{letter-spacing:1.080000px;}
.ls7c{letter-spacing:1.104000px;}
.ls16{letter-spacing:1.140000px;}
.ls8b{letter-spacing:1.152000px;}
.ls2{letter-spacing:1.200000px;}
.ls80{letter-spacing:1.248000px;}
.ls15{letter-spacing:1.260000px;}
.ls75{letter-spacing:1.296000px;}
.ls2d{letter-spacing:1.320000px;}
.ls87{letter-spacing:1.344000px;}
.ls3d{letter-spacing:1.380000px;}
.ls78{letter-spacing:1.392000px;}
.ls10{letter-spacing:1.440000px;}
.ls79{letter-spacing:1.488000px;}
.lsb{letter-spacing:1.500000px;}
.ls8d{letter-spacing:1.536000px;}
.ls29{letter-spacing:1.560000px;}
.ls96{letter-spacing:1.584000px;}
.ls45{letter-spacing:1.609080px;}
.ls21{letter-spacing:1.620000px;}
.ls9a{letter-spacing:1.632000px;}
.ls40{letter-spacing:1.680000px;}
.ls8f{letter-spacing:1.728000px;}
.ls3a{letter-spacing:1.740000px;}
.ls73{letter-spacing:1.776000px;}
.lsa{letter-spacing:1.800000px;}
.ls84{letter-spacing:1.824000px;}
.ls1b{letter-spacing:1.860000px;}
.ls74{letter-spacing:1.872000px;}
.ls20{letter-spacing:1.920000px;}
.ls91{letter-spacing:1.968000px;}
.ls19{letter-spacing:1.980000px;}
.ls99{letter-spacing:2.016000px;}
.ls2f{letter-spacing:2.040000px;}
.ls26{letter-spacing:2.100000px;}
.ls36{letter-spacing:2.160000px;}
.ls7f{letter-spacing:2.208000px;}
.ls23{letter-spacing:2.220000px;}
.ls88{letter-spacing:2.256000px;}
.ls5{letter-spacing:2.280000px;}
.ls3f{letter-spacing:2.340000px;}
.ls90{letter-spacing:2.352000px;}
.ls1f{letter-spacing:2.400000px;}
.ls2b{letter-spacing:2.460000px;}
.ls77{letter-spacing:2.496000px;}
.ls3b{letter-spacing:2.520000px;}
.ls3e{letter-spacing:2.580000px;}
.ls9d{letter-spacing:2.592000px;}
.ls6d{letter-spacing:2.640000px;}
.ls22{letter-spacing:2.700000px;}
.ls81{letter-spacing:2.736000px;}
.ls25{letter-spacing:2.760000px;}
.ls57{letter-spacing:2.820000px;}
.ls76{letter-spacing:2.832000px;}
.ls49{letter-spacing:2.880000px;}
.ls39{letter-spacing:2.940000px;}
.ls7{letter-spacing:3.000000px;}
.ls85{letter-spacing:3.024000px;}
.ls53{letter-spacing:3.060000px;}
.ls3{letter-spacing:3.120000px;}
.ls9{letter-spacing:3.180000px;}
.ls38{letter-spacing:3.240000px;}
.ls4{letter-spacing:3.300000px;}
.ls41{letter-spacing:3.360000px;}
.ls4a{letter-spacing:3.420000px;}
.ls97{letter-spacing:3.456000px;}
.ls3c{letter-spacing:3.480000px;}
.ls6b{letter-spacing:3.540000px;}
.ls65{letter-spacing:3.600000px;}
.ls1a{letter-spacing:3.660000px;}
.ls56{letter-spacing:3.780000px;}
.ls27{letter-spacing:3.840000px;}
.ls55{letter-spacing:3.900000px;}
.ls42{letter-spacing:3.960000px;}
.ls6e{letter-spacing:4.020000px;}
.ls33{letter-spacing:4.080000px;}
.ls1c{letter-spacing:4.140000px;}
.ls31{letter-spacing:4.260000px;}
.ls54{letter-spacing:4.380000px;}
.ls4d{letter-spacing:4.500000px;}
.ls9c{letter-spacing:4.704000px;}
.ls70{letter-spacing:4.800000px;}
.ls71{letter-spacing:4.860000px;}
.ls69{letter-spacing:5.100000px;}
.ls6a{letter-spacing:5.220000px;}
.ls6c{letter-spacing:5.880000px;}
.ls72{letter-spacing:6.960000px;}
.ls50{letter-spacing:8.998800px;}
.ls5e{letter-spacing:164.784000px;}
.ls68{letter-spacing:481.011000px;}
.ls5b{letter-spacing:1152.552394px;}
.ls5a{letter-spacing:1154.163571px;}
.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;}
}
.ws39{word-spacing:-24.000000px;}
.ws85{word-spacing:-18.660000px;}
.ws38{word-spacing:-17.700000px;}
.ws81{word-spacing:-17.580000px;}
.ws82{word-spacing:-17.520000px;}
.ws36{word-spacing:-16.980000px;}
.ws48{word-spacing:-16.680000px;}
.ws7d{word-spacing:-16.260000px;}
.wsd{word-spacing:-16.140000px;}
.ws37{word-spacing:-15.900000px;}
.wsc{word-spacing:-15.600000px;}
.ws6d{word-spacing:-15.300000px;}
.ws1{word-spacing:-15.060000px;}
.ws25{word-spacing:-15.000000px;}
.wsaf{word-spacing:-14.016000px;}
.ws97{word-spacing:-13.968000px;}
.wsad{word-spacing:-13.872000px;}
.ws3{word-spacing:-13.344000px;}
.ws94{word-spacing:-12.864000px;}
.wsb1{word-spacing:-12.768000px;}
.ws96{word-spacing:-12.720000px;}
.ws91{word-spacing:-12.528000px;}
.ws2{word-spacing:-12.510000px;}
.ws86{word-spacing:-12.480000px;}
.ws93{word-spacing:-12.336000px;}
.wsb0{word-spacing:-12.240000px;}
.wsae{word-spacing:-12.048000px;}
.ws5c{word-spacing:-12.000000px;}
.ws92{word-spacing:-11.952000px;}
.ws90{word-spacing:-11.760000px;}
.ws67{word-spacing:-10.425300px;}
.ws65{word-spacing:-10.425150px;}
.ws21{word-spacing:-10.354080px;}
.ws0{word-spacing:-10.210662px;}
.ws22{word-spacing:-9.374640px;}
.ws95{word-spacing:-9.360000px;}
.ws23{word-spacing:-8.989860px;}
.ws24{word-spacing:-8.919900px;}
.ws20{word-spacing:-8.745000px;}
.wsb7{word-spacing:-3.456000px;}
.ws5{word-spacing:-2.886000px;}
.ws43{word-spacing:-2.580000px;}
.ws9a{word-spacing:-2.400000px;}
.ws2a{word-spacing:-2.220000px;}
.wsbe{word-spacing:-2.016000px;}
.wsac{word-spacing:-1.968000px;}
.ws8d{word-spacing:-1.872000px;}
.ws9d{word-spacing:-1.776000px;}
.wsc2{word-spacing:-1.536000px;}
.wsbd{word-spacing:-1.344000px;}
.ws1e{word-spacing:-1.140000px;}
.ws6{word-spacing:-1.134000px;}
.wsa4{word-spacing:-0.864000px;}
.ws7f{word-spacing:-0.720000px;}
.ws1d{word-spacing:-0.600000px;}
.ws87{word-spacing:-0.480000px;}
.wsa0{word-spacing:-0.432000px;}
.ws4e{word-spacing:-0.420000px;}
.wsb3{word-spacing:-0.384000px;}
.ws34{word-spacing:-0.360000px;}
.ws1c{word-spacing:-0.300000px;}
.ws9b{word-spacing:-0.288000px;}
.ws58{word-spacing:-0.240000px;}
.ws98{word-spacing:-0.192000px;}
.ws49{word-spacing:-0.180000px;}
.ws1b{word-spacing:-0.120000px;}
.ws9e{word-spacing:-0.096000px;}
.ws10{word-spacing:-0.060000px;}
.ws70{word-spacing:-0.051456px;}
.ws69{word-spacing:-0.048000px;}
.ws79{word-spacing:-0.045648px;}
.ws62{word-spacing:-0.041701px;}
.ws4{word-spacing:0.000000px;}
.wsa3{word-spacing:0.048000px;}
.ws17{word-spacing:0.060000px;}
.ws6b{word-spacing:0.083401px;}
.ws6c{word-spacing:0.083402px;}
.ws8f{word-spacing:0.096000px;}
.ws19{word-spacing:0.120000px;}
.wsbf{word-spacing:0.144000px;}
.ws2c{word-spacing:0.180000px;}
.wsa9{word-spacing:0.192000px;}
.ws18{word-spacing:0.240000px;}
.ws31{word-spacing:0.300000px;}
.wsc3{word-spacing:0.336000px;}
.ws1f{word-spacing:0.360000px;}
.wsb8{word-spacing:0.432000px;}
.ws4d{word-spacing:0.480000px;}
.ws83{word-spacing:0.540000px;}
.ws1a{word-spacing:0.600000px;}
.ws7c{word-spacing:0.624000px;}
.wsa2{word-spacing:0.672000px;}
.ws35{word-spacing:0.720000px;}
.wsa8{word-spacing:0.768000px;}
.ws13{word-spacing:0.780000px;}
.wsab{word-spacing:0.816000px;}
.ws9{word-spacing:0.840000px;}
.ws61{word-spacing:0.864000px;}
.ws84{word-spacing:0.960000px;}
.ws59{word-spacing:1.020000px;}
.ws40{word-spacing:1.080000px;}
.ws33{word-spacing:1.140000px;}
.wsaa{word-spacing:1.200000px;}
.ws4c{word-spacing:1.260000px;}
.ws9f{word-spacing:1.296000px;}
.ws5a{word-spacing:1.320000px;}
.ws74{word-spacing:1.380000px;}
.wsbc{word-spacing:1.392000px;}
.ws2e{word-spacing:1.440000px;}
.wsb2{word-spacing:1.488000px;}
.ws12{word-spacing:1.500000px;}
.wsb6{word-spacing:1.536000px;}
.ws14{word-spacing:1.560000px;}
.ws7e{word-spacing:1.620000px;}
.ws45{word-spacing:1.680000px;}
.wsbb{word-spacing:1.728000px;}
.ws15{word-spacing:1.740000px;}
.wsa7{word-spacing:1.824000px;}
.ws2f{word-spacing:1.920000px;}
.ws29{word-spacing:1.980000px;}
.ws80{word-spacing:2.040000px;}
.ws3e{word-spacing:2.100000px;}
.wsb{word-spacing:2.160000px;}
.wsb5{word-spacing:2.208000px;}
.wsc1{word-spacing:2.256000px;}
.ws28{word-spacing:2.400000px;}
.ws99{word-spacing:2.448000px;}
.wsa6{word-spacing:2.496000px;}
.wsa{word-spacing:2.520000px;}
.ws9c{word-spacing:2.544000px;}
.ws68{word-spacing:2.580000px;}
.ws26{word-spacing:2.640000px;}
.ws60{word-spacing:2.736000px;}
.ws47{word-spacing:2.820000px;}
.ws3c{word-spacing:2.880000px;}
.wsb9{word-spacing:2.928000px;}
.wsf{word-spacing:2.940000px;}
.ws46{word-spacing:3.000000px;}
.ws5b{word-spacing:3.060000px;}
.wsa1{word-spacing:3.072000px;}
.ws3d{word-spacing:3.120000px;}
.wsa5{word-spacing:3.168000px;}
.ws41{word-spacing:3.240000px;}
.wsb4{word-spacing:3.264000px;}
.wsc0{word-spacing:3.312000px;}
.ws3f{word-spacing:3.360000px;}
.ws6a{word-spacing:3.408000px;}
.ws3b{word-spacing:3.420000px;}
.ws8e{word-spacing:3.456000px;}
.ws89{word-spacing:3.480000px;}
.wse{word-spacing:3.540000px;}
.ws5e{word-spacing:3.600000px;}
.wsba{word-spacing:3.696000px;}
.ws30{word-spacing:3.720000px;}
.ws5f{word-spacing:3.744000px;}
.ws42{word-spacing:3.780000px;}
.ws11{word-spacing:3.840000px;}
.ws5d{word-spacing:3.900000px;}
.ws50{word-spacing:3.936000px;}
.ws4a{word-spacing:3.960000px;}
.ws51{word-spacing:3.984000px;}
.ws2b{word-spacing:4.020000px;}
.ws32{word-spacing:4.080000px;}
.ws4b{word-spacing:4.140000px;}
.ws8a{word-spacing:4.200000px;}
.ws44{word-spacing:4.260000px;}
.ws88{word-spacing:4.380000px;}
.ws16{word-spacing:4.440000px;}
.ws27{word-spacing:4.500000px;}
.ws57{word-spacing:4.560000px;}
.ws76{word-spacing:4.620000px;}
.ws3a{word-spacing:4.680000px;}
.ws4f{word-spacing:4.740000px;}
.ws2d{word-spacing:4.800000px;}
.ws75{word-spacing:4.860000px;}
.ws8{word-spacing:4.920000px;}
.ws7{word-spacing:4.980000px;}
.ws8c{word-spacing:5.460000px;}
.ws8b{word-spacing:5.520000px;}
.ws71{word-spacing:132.293376px;}
.ws6f{word-spacing:171.399936px;}
.ws72{word-spacing:212.410368px;}
.ws56{word-spacing:277.501874px;}
.ws55{word-spacing:277.651984px;}
.ws52{word-spacing:279.803549px;}
.ws53{word-spacing:280.003694px;}
.ws78{word-spacing:321.681456px;}
.ws77{word-spacing:347.426928px;}
.ws54{word-spacing:352.328515px;}
.ws7b{word-spacing:418.512000px;}
.ws6e{word-spacing:419.983872px;}
.ws7a{word-spacing:437.520000px;}
.ws63{word-spacing:464.336181px;}
.ws66{word-spacing:464.342862px;}
.ws64{word-spacing:475.762145px;}
.ws73{word-spacing:971.952384px;}
._9{margin-left:-2898.096000px;}
._b{margin-left:-2874.288000px;}
._3c{margin-left:-544.401333px;}
._5{margin-left:-7.560000px;}
._a{margin-left:-6.543000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.465000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.197000px;}
._8{width:1.020000px;}
._d{width:2.820000px;}
._6{width:3.840000px;}
._7{width:5.460000px;}
._c{width:7.560000px;}
._12{width:41.328000px;}
._11{width:45.888000px;}
._10{width:51.312000px;}
._3{width:59.395614px;}
._39{width:65.490000px;}
._3a{width:67.632000px;}
._38{width:71.664000px;}
._13{width:75.312000px;}
._25{width:89.520000px;}
._1c{width:98.688000px;}
._2c{width:101.328000px;}
._1e{width:102.486000px;}
._3f{width:122.583000px;}
._2b{width:124.224000px;}
._20{width:125.568000px;}
._1b{width:127.872000px;}
._19{width:129.744000px;}
._44{width:133.824000px;}
._47{width:135.600000px;}
._3e{width:141.840000px;}
._3d{width:143.856000px;}
._24{width:148.272000px;}
._15{width:149.328000px;}
._4f{width:152.103936px;}
._35{width:153.126000px;}
._26{width:157.536000px;}
._2e{width:159.312000px;}
._1d{width:160.848000px;}
._46{width:162.150000px;}
._33{width:163.296000px;}
._40{width:164.448000px;}
._4d{width:167.988480px;}
._2a{width:169.920000px;}
._48{width:171.942000px;}
._23{width:174.192000px;}
._4e{width:175.722240px;}
._18{width:182.928000px;}
._37{width:184.080000px;}
._43{width:186.528000px;}
._49{width:187.872000px;}
._32{width:191.328000px;}
._21{width:197.568000px;}
._1f{width:198.672000px;}
._42{width:203.424000px;}
._17{width:206.832000px;}
._16{width:208.518000px;}
._31{width:210.960000px;}
._4a{width:214.512000px;}
._28{width:216.672000px;}
._45{width:221.520000px;}
._29{width:223.008000px;}
._22{width:228.288000px;}
._2d{width:233.001000px;}
._41{width:235.734000px;}
._1a{width:237.936000px;}
._36{width:285.072000px;}
._2f{width:293.088000px;}
._30{width:295.728000px;}
._34{width:311.760000px;}
._27{width:317.568000px;}
._50{width:333.139104px;}
._51{width:346.377024px;}
._f{width:352.656000px;}
._52{width:358.930224px;}
._14{width:362.928000px;}
._4b{width:415.713024px;}
._4c{width:424.306176px;}
._55{width:450.864000px;}
._56{width:458.976000px;}
._58{width:466.848000px;}
._3b{width:485.228182px;}
._53{width:490.560000px;}
._5b{width:685.008000px;}
._59{width:698.352000px;}
._e{width:705.744000px;}
._5a{width:727.728000px;}
._54{width:733.056000px;}
._57{width:746.352000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fs14{font-size:27.984000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fsf{font-size:41.700600px;}
.fs11{font-size:41.701200px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs13{font-size:45.648000px;}
.fs9{font-size:48.000000px;}
.fsd{font-size:50.036400px;}
.fs12{font-size:51.456000px;}
.fs10{font-size:56.968800px;}
.fs8{font-size:60.000000px;}
.fse{font-size:60.043800px;}
.fs3{font-size:63.000000px;}
.fsc{font-size:70.051200px;}
.fs1{font-size:78.000000px;}
.fsb{font-size:96.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y168{bottom:0.064350px;}
.y164{bottom:1.069200px;}
.y162{bottom:1.822050px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y2ac{bottom:80.263500px;}
.y269{bottom:83.121900px;}
.y114{bottom:83.190150px;}
.y1c5{bottom:83.236050px;}
.y24b{bottom:83.635350px;}
.y65{bottom:83.770350px;}
.y20e{bottom:83.843550px;}
.y8b{bottom:83.912100px;}
.y21d{bottom:83.920350px;}
.y158{bottom:84.001050px;}
.y22b{bottom:84.070350px;}
.y11a{bottom:84.074700px;}
.yb5{bottom:84.220350px;}
.y1aa{bottom:84.548400px;}
.ye2{bottom:87.653850px;}
.y2c{bottom:88.026750px;}
.y2aa{bottom:95.263500px;}
.y268{bottom:98.121900px;}
.y1c4{bottom:98.980050px;}
.y113{bottom:99.690150px;}
.y119{bottom:99.818700px;}
.y157{bottom:100.501050px;}
.y1a9{bottom:101.048400px;}
.y24a{bottom:101.635350px;}
.y64{bottom:101.770350px;}
.y8a{bottom:101.912100px;}
.y21c{bottom:101.920350px;}
.y22a{bottom:102.070350px;}
.yb4{bottom:102.220350px;}
.y2b{bottom:103.023000px;}
.ye1{bottom:105.653850px;}
.y20d{bottom:109.355550px;}
.y2a9{bottom:110.263500px;}
.y146{bottom:112.783950px;}
.y267{bottom:113.121900px;}
.y1c3{bottom:114.724050px;}
.y118{bottom:115.562700px;}
.y112{bottom:116.190150px;}
.y156{bottom:117.001050px;}
.y1a8{bottom:117.548400px;}
.y195{bottom:119.148900px;}
.y188{bottom:119.149200px;}
.y249{bottom:119.230350px;}
.y63{bottom:119.770350px;}
.y89{bottom:119.912100px;}
.y21b{bottom:119.920350px;}
.y229{bottom:120.070350px;}
.yb3{bottom:120.220350px;}
.ye0{bottom:123.653850px;}
.y177{bottom:124.531950px;}
.y2a8{bottom:125.263500px;}
.y20c{bottom:125.603550px;}
.y266{bottom:128.121900px;}
.y117{bottom:131.306700px;}
.y155{bottom:133.501050px;}
.y1a7{bottom:134.048400px;}
.y1df{bottom:137.665500px;}
.y62{bottom:137.770350px;}
.y88{bottom:137.912100px;}
.y21a{bottom:137.920350px;}
.y228{bottom:138.070350px;}
.yb2{bottom:138.220350px;}
.y2a7{bottom:140.263500px;}
.y1de{bottom:141.605778px;}
.ydf{bottom:141.653850px;}
.y111{bottom:141.702150px;}
.y20b{bottom:141.851550px;}
.y265{bottom:143.121900px;}
.y2a6{bottom:155.263500px;}
.y248{bottom:155.635350px;}
.y61{bottom:155.770350px;}
.y87{bottom:155.912100px;}
.y219{bottom:155.920350px;}
.y227{bottom:156.070350px;}
.yb1{bottom:156.220350px;}
.y127{bottom:156.690000px;}
.y110{bottom:157.950150px;}
.y20a{bottom:158.099550px;}
.y264{bottom:158.121900px;}
.y154{bottom:159.013050px;}
.y1a6{bottom:159.560400px;}
.yde{bottom:159.653850px;}
.y145{bottom:161.292300px;}
.y28{bottom:165.904200px;}
.y1c6{bottom:170.253600px;}
.y2a5{bottom:170.263500px;}
.y263{bottom:173.121900px;}
.y247{bottom:173.635350px;}
.y60{bottom:173.770350px;}
.y86{bottom:173.912100px;}
.y218{bottom:173.920350px;}
.y226{bottom:174.070350px;}
.y10f{bottom:174.198150px;}
.yb0{bottom:174.220350px;}
.y209{bottom:174.347550px;}
.y153{bottom:175.261050px;}
.y1a5{bottom:175.808400px;}
.ydd{bottom:177.653850px;}
.y144{bottom:178.029600px;}
.y27{bottom:183.904200px;}
.y2a4{bottom:185.263500px;}
.y262{bottom:188.121900px;}
.y13e{bottom:189.588750px;}
.y10e{bottom:190.446150px;}
.y208{bottom:190.595550px;}
.y152{bottom:191.509050px;}
.y246{bottom:191.635350px;}
.y5f{bottom:191.770350px;}
.y85{bottom:191.912100px;}
.y217{bottom:191.920350px;}
.y1a4{bottom:192.056400px;}
.yaf{bottom:192.220350px;}
.y13a{bottom:194.980500px;}
.ydc{bottom:195.653850px;}
.y1c7{bottom:197.787300px;}
.y2a3{bottom:200.263500px;}
.y26{bottom:201.904200px;}
.y261{bottom:203.121900px;}
.y10d{bottom:206.694150px;}
.y1e0{bottom:207.305700px;}
.y151{bottom:207.757050px;}
.y1a3{bottom:208.304400px;}
.y13b{bottom:208.340700px;}
.y12e{bottom:208.790100px;}
.y11d{bottom:209.378250px;}
.y245{bottom:209.635350px;}
.y225{bottom:209.665350px;}
.y5e{bottom:209.770350px;}
.y84{bottom:209.912100px;}
.y216{bottom:209.920350px;}
.yae{bottom:210.220350px;}
.ydb{bottom:213.653850px;}
.y2a2{bottom:215.263500px;}
.y260{bottom:218.121900px;}
.y25{bottom:219.904200px;}
.y207{bottom:222.107550px;}
.y10c{bottom:222.942150px;}
.y150{bottom:224.005050px;}
.y1a2{bottom:224.552400px;}
.y13f{bottom:226.202886px;}
.y244{bottom:227.635350px;}
.y224{bottom:227.665350px;}
.y5d{bottom:227.770350px;}
.y83{bottom:227.912100px;}
.y215{bottom:227.920350px;}
.yad{bottom:228.220350px;}
.y2a1{bottom:230.263500px;}
.y25f{bottom:233.121900px;}
.y24{bottom:237.904200px;}
.y1d1{bottom:239.011746px;}
.y1e6{bottom:239.083950px;}
.y1a1{bottom:240.800400px;}
.y2a0{bottom:245.263500px;}
.y243{bottom:245.635350px;}
.y5c{bottom:245.770350px;}
.y82{bottom:245.912100px;}
.yac{bottom:246.220350px;}
.y25e{bottom:248.121900px;}
.y10b{bottom:251.946150px;}
.y14f{bottom:253.009050px;}
.y23{bottom:255.904200px;}
.y206{bottom:257.005350px;}
.yda{bottom:259.553850px;}
.y29f{bottom:260.263500px;}
.y148{bottom:261.054000px;}
.y140{bottom:262.817021px;}
.y25d{bottom:263.121900px;}
.y214{bottom:263.515350px;}
.y242{bottom:263.635350px;}
.y5b{bottom:263.770350px;}
.y81{bottom:263.912100px;}
.y223{bottom:263.920350px;}
.yab{bottom:264.220350px;}
.y1a0{bottom:269.804400px;}
.y186{bottom:273.779100px;}
.y193{bottom:273.781950px;}
.y22{bottom:273.904200px;}
.y29e{bottom:275.263500px;}
.y25c{bottom:278.121900px;}
.y10a{bottom:280.950150px;}
.y241{bottom:281.635350px;}
.y5a{bottom:281.770350px;}
.y80{bottom:281.912100px;}
.y222{bottom:281.920350px;}
.y14e{bottom:282.013050px;}
.yaa{bottom:282.220350px;}
.y1d9{bottom:282.479442px;}
.y29d{bottom:290.263500px;}
.y21{bottom:291.904200px;}
.y25b{bottom:293.121900px;}
.y1da{bottom:298.070610px;}
.y19f{bottom:298.808400px;}
.y141{bottom:299.443666px;}
.y240{bottom:299.635350px;}
.y59{bottom:299.770350px;}
.y7f{bottom:299.912100px;}
.y221{bottom:299.920350px;}
.yd9{bottom:300.053850px;}
.y212{bottom:300.731550px;}
.y1d7{bottom:304.232466px;}
.y29c{bottom:305.263500px;}
.y25a{bottom:308.121900px;}
.y2a{bottom:309.904200px;}
.y109{bottom:313.375350px;}
.y1d8{bottom:313.919058px;}
.y14d{bottom:314.410350px;}
.y211{bottom:316.475550px;}
.y23f{bottom:317.635350px;}
.y58{bottom:317.770350px;}
.ya9{bottom:317.815350px;}
.y7e{bottom:317.912100px;}
.y220{bottom:317.920350px;}
.yd8{bottom:318.053850px;}
.y12b{bottom:320.071800px;}
.y29b{bottom:320.263500px;}
.y259{bottom:323.121900px;}
.y1cd{bottom:324.776034px;}
.y20{bottom:327.501450px;}
.y29{bottom:327.904200px;}
.y19e{bottom:331.199550px;}
.y210{bottom:332.219550px;}
.y29a{bottom:335.263500px;}
.y23e{bottom:335.635350px;}
.y57{bottom:335.770350px;}
.y7d{bottom:335.912100px;}
.y21f{bottom:335.920350px;}
.yd7{bottom:336.053850px;}
.y142{bottom:336.057802px;}
.y258{bottom:338.121900px;}
.y1d3{bottom:340.650450px;}
.y1d6{bottom:346.619346px;}
.y1d0{bottom:347.879778px;}
.y20f{bottom:347.963550px;}
.y139{bottom:347.980800px;}
.y299{bottom:350.263500px;}
.y1c9{bottom:350.568354px;}
.y257{bottom:353.121900px;}
.y23d{bottom:353.635350px;}
.y56{bottom:353.770350px;}
.y7c{bottom:353.920350px;}
.yd6{bottom:354.053850px;}
.ya8{bottom:354.070350px;}
.y108{bottom:354.085350px;}
.y147{bottom:357.124350px;}
.y1d2{bottom:360.267810px;}
.y15d{bottom:361.729050px;}
.y298{bottom:365.263500px;}
.y256{bottom:368.121900px;}
.y1e5{bottom:371.406000px;}
.y23c{bottom:371.635350px;}
.y55{bottom:371.770350px;}
.y7b{bottom:371.920350px;}
.ya7{bottom:372.070350px;}
.y107{bottom:372.085350px;}
.y143{bottom:372.671938px;}
.y1e4{bottom:374.905650px;}
.y15c{bottom:377.473050px;}
.y182{bottom:380.212500px;}
.y297{bottom:380.263500px;}
.y1ca{bottom:382.959906px;}
.y255{bottom:383.121900px;}
.y13d{bottom:385.007789px;}
.ye5{bottom:389.515350px;}
.y23b{bottom:389.635350px;}
.y54{bottom:389.770350px;}
.y7a{bottom:389.920350px;}
.yd5{bottom:390.053850px;}
.ya6{bottom:390.070350px;}
.y15b{bottom:393.217050px;}
.y13c{bottom:394.164450px;}
.y296{bottom:395.263500px;}
.y181{bottom:395.956500px;}
.y254{bottom:398.121900px;}
.y14a{bottom:398.611672px;}
.y1d5{bottom:399.747666px;}
.y1e2{bottom:402.296700px;}
.y1f{bottom:405.527100px;}
.y14c{bottom:406.173475px;}
.y23a{bottom:407.635350px;}
.y106{bottom:407.680350px;}
.y53{bottom:407.770350px;}
.y79{bottom:407.920350px;}
.ya5{bottom:408.070350px;}
.y15a{bottom:408.961050px;}
.y295{bottom:410.263500px;}
.y180{bottom:411.700500px;}
.y253{bottom:413.121900px;}
.y1cb{bottom:419.082018px;}
.y174{bottom:423.010500px;}
.y1db{bottom:424.433682px;}
.y159{bottom:424.705050px;}
.y294{bottom:425.263500px;}
.ye4{bottom:425.380350px;}
.y239{bottom:425.635350px;}
.y52{bottom:425.770350px;}
.y78{bottom:425.920350px;}
.yd4{bottom:426.053850px;}
.ya4{bottom:426.070350px;}
.y17f{bottom:427.444500px;}
.y14b{bottom:427.789200px;}
.y252{bottom:428.121900px;}
.y1e3{bottom:429.934050px;}
.y12a{bottom:431.492250px;}
.y1e{bottom:432.872100px;}
.y293{bottom:440.263500px;}
.y1fb{bottom:441.121074px;}
.y17e{bottom:443.188500px;}
.y238{bottom:443.635350px;}
.y51{bottom:443.770350px;}
.y77{bottom:443.920350px;}
.y105{bottom:443.935350px;}
.yd3{bottom:444.053850px;}
.ya3{bottom:444.070350px;}
.y1d4{bottom:446.881362px;}
.y173{bottom:448.021500px;}
.y129{bottom:448.228800px;}
.y1d{bottom:450.872100px;}
.y176{bottom:451.696350px;}
.y1f2{bottom:454.484526px;}
.y292{bottom:455.263500px;}
.y1cf{bottom:458.767458px;}
.y120{bottom:459.787950px;}
.y1fc{bottom:460.715478px;}
.y251{bottom:461.230350px;}
.y237{bottom:461.635350px;}
.y50{bottom:461.770350px;}
.y76{bottom:461.920350px;}
.y104{bottom:461.935350px;}
.yd2{bottom:462.053850px;}
.ya2{bottom:462.070350px;}
.y175{bottom:465.136350px;}
.y11c{bottom:465.178500px;}
.y1cc{bottom:465.405282px;}
.y185{bottom:466.968000px;}
.y1c{bottom:468.872100px;}
.y291{bottom:470.263500px;}
.y196{bottom:470.382750px;}
.y189{bottom:470.382900px;}
.y16f{bottom:473.328000px;}
.y205{bottom:475.170768px;}
.y161{bottom:476.577000px;}
.y236{bottom:479.635350px;}
.y4f{bottom:479.770350px;}
.y75{bottom:479.920350px;}
.y103{bottom:479.935350px;}
.yd1{bottom:480.053850px;}
.ya1{bottom:480.070350px;}
.y1fa{bottom:480.298470px;}
.y167{bottom:481.418700px;}
.y160{bottom:481.914750px;}
.y194{bottom:482.161350px;}
.y187{bottom:482.162850px;}
.y290{bottom:485.263500px;}
.y1dd{bottom:486.862674px;}
.y1b{bottom:486.872100px;}
.y131{bottom:487.245424px;}
.y121{bottom:491.173282px;}
.y191{bottom:492.044550px;}
.y183{bottom:492.045750px;}
.y1f3{bottom:493.319562px;}
.y235{bottom:497.635350px;}
.y4e{bottom:497.770350px;}
.y74{bottom:497.920350px;}
.y102{bottom:497.935350px;}
.yd0{bottom:498.053850px;}
.ya0{bottom:498.070350px;}
.y28f{bottom:500.263500px;}
.y1a{bottom:504.872100px;}
.y169{bottom:505.008000px;}
.y132{bottom:514.715408px;}
.y28e{bottom:515.263500px;}
.y234{bottom:515.635350px;}
.y4d{bottom:515.770350px;}
.y73{bottom:515.920350px;}
.y101{bottom:515.935350px;}
.ycf{bottom:516.053850px;}
.y9f{bottom:516.070350px;}
.y1ce{bottom:516.822690px;}
.y122{bottom:522.558614px;}
.y128{bottom:522.795300px;}
.y19{bottom:522.872100px;}
.y138{bottom:530.113650px;}
.y28d{bottom:530.263500px;}
.y200{bottom:532.641600px;}
.y250{bottom:533.365350px;}
.y233{bottom:533.635350px;}
.y4c{bottom:533.770350px;}
.y72{bottom:533.920350px;}
.y100{bottom:533.935350px;}
.yce{bottom:534.053850px;}
.y9e{bottom:534.070350px;}
.y1dc{bottom:537.122322px;}
.y18{bottom:540.872100px;}
.y133{bottom:542.172883px;}
.y28c{bottom:545.263500px;}
.y1c8{bottom:551.105250px;}
.y232{bottom:551.635350px;}
.y4b{bottom:551.770350px;}
.y71{bottom:551.920350px;}
.yff{bottom:551.935350px;}
.y9d{bottom:552.070350px;}
.ycd{bottom:552.100350px;}
.y123{bottom:553.943946px;}
.y17{bottom:558.872100px;}
.y28b{bottom:560.263500px;}
.y24f{bottom:569.365350px;}
.y231{bottom:569.635350px;}
.y134{bottom:569.642866px;}
.y4a{bottom:569.770350px;}
.y70{bottom:569.920350px;}
.yfe{bottom:569.935350px;}
.y9c{bottom:570.070350px;}
.ycc{bottom:570.100350px;}
.y170{bottom:572.748000px;}
.y202{bottom:572.994432px;}
.y28a{bottom:575.263500px;}
.y16{bottom:576.872100px;}
.y165{bottom:584.078700px;}
.y204{bottom:584.885736px;}
.y12d{bottom:585.217350px;}
.y124{bottom:585.329278px;}
.y230{bottom:587.635350px;}
.y49{bottom:587.770350px;}
.y6f{bottom:587.920350px;}
.yfd{bottom:587.935350px;}
.y289{bottom:590.263500px;}
.y163{bottom:592.614450px;}
.y15{bottom:594.872100px;}
.y135{bottom:597.100341px;}
.y288{bottom:605.263500px;}
.y19c{bottom:605.582400px;}
.y190{bottom:605.582803px;}
.y22f{bottom:605.635350px;}
.y9b{bottom:605.665350px;}
.ycb{bottom:605.695350px;}
.y48{bottom:605.770350px;}
.y1c2{bottom:605.905350px;}
.y6e{bottom:605.920350px;}
.yfc{bottom:605.935350px;}
.y203{bottom:611.464284px;}
.y12c{bottom:612.673650px;}
.y14{bottom:612.872100px;}
.y1f8{bottom:615.313842px;}
.y184{bottom:616.396939px;}
.y192{bottom:616.397528px;}
.y125{bottom:616.714609px;}
.y1f7{bottom:619.981350px;}
.y287{bottom:620.263500px;}
.y22e{bottom:623.635350px;}
.yca{bottom:623.695350px;}
.y47{bottom:623.770350px;}
.y1c1{bottom:623.905350px;}
.y6d{bottom:623.920350px;}
.yfb{bottom:623.935350px;}
.y136{bottom:624.557815px;}
.y13{bottom:630.872100px;}
.y11b{bottom:631.513050px;}
.y286{bottom:635.263500px;}
.y17c{bottom:640.022100px;}
.y1f0{bottom:641.253318px;}
.y22d{bottom:641.635350px;}
.y46{bottom:641.770350px;}
.y1c0{bottom:641.905350px;}
.y6c{bottom:641.920350px;}
.yfa{bottom:641.935350px;}
.y126{bottom:648.099941px;}
.y12{bottom:648.872100px;}
.y285{bottom:650.263500px;}
.y137{bottom:652.027799px;}
.y130{bottom:654.742652px;}
.y11f{bottom:655.731707px;}
.y17b{bottom:657.374100px;}
.y24e{bottom:659.365350px;}
.y45{bottom:659.770350px;}
.y1bf{bottom:659.905350px;}
.y6b{bottom:659.920350px;}
.yf9{bottom:659.935350px;}
.yc9{bottom:659.950350px;}
.y1fd{bottom:661.874802px;}
.y12f{bottom:664.362150px;}
.y11e{bottom:665.138550px;}
.y284{bottom:665.263500px;}
.y11{bottom:666.872100px;}
.y149{bottom:668.799150px;}
.y15f{bottom:669.892050px;}
.y171{bottom:672.180000px;}
.y17a{bottom:674.726100px;}
.y19b{bottom:676.281900px;}
.y18e{bottom:677.026500px;}
.y22c{bottom:677.230350px;}
.y44{bottom:677.770350px;}
.y1be{bottom:677.905350px;}
.y6a{bottom:677.920350px;}
.yf8{bottom:677.935350px;}
.yc8{bottom:677.950350px;}
.y283{bottom:680.263500px;}
.y10{bottom:684.872100px;}
.y1e8{bottom:689.001126px;}
.y1f4{bottom:690.769986px;}
.y1f6{bottom:691.443294px;}
.y179{bottom:692.078100px;}
.y18d{bottom:694.583520px;}
.y19a{bottom:694.583640px;}
.y282{bottom:695.263500px;}
.y43{bottom:695.770350px;}
.y1bd{bottom:695.905350px;}
.y9a{bottom:695.920350px;}
.yf7{bottom:695.935350px;}
.yc7{bottom:695.950350px;}
.y1ee{bottom:696.327630px;}
.y1f9{bottom:698.587206px;}
.yf{bottom:702.872100px;}
.y18c{bottom:707.093700px;}
.y199{bottom:707.094000px;}
.y178{bottom:708.333450px;}
.y281{bottom:710.263500px;}
.y24d{bottom:713.365350px;}
.y69{bottom:713.515350px;}
.y42{bottom:713.770350px;}
.y1bc{bottom:713.905350px;}
.y99{bottom:713.920350px;}
.yf6{bottom:713.935350px;}
.yc6{bottom:713.950350px;}
.y1ed{bottom:715.853562px;}
.y18b{bottom:716.298270px;}
.y198{bottom:716.298390px;}
.y1f1{bottom:719.699406px;}
.ye{bottom:720.872100px;}
.y280{bottom:725.263500px;}
.y18f{bottom:728.755950px;}
.y19d{bottom:728.757319px;}
.y18a{bottom:728.808450px;}
.y197{bottom:728.808750px;}
.y68{bottom:731.365350px;}
.y41{bottom:731.770350px;}
.y1bb{bottom:731.905350px;}
.y98{bottom:731.920350px;}
.yf5{bottom:731.935350px;}
.yc5{bottom:731.950350px;}
.y1ea{bottom:735.676206px;}
.yd{bottom:738.872100px;}
.y27f{bottom:740.263500px;}
.y201{bottom:742.394160px;}
.y1eb{bottom:742.683174px;}
.y1e9{bottom:742.728822px;}
.y40{bottom:749.770350px;}
.y1ba{bottom:749.905350px;}
.y97{bottom:749.920350px;}
.yf4{bottom:749.935350px;}
.yc4{bottom:749.950350px;}
.y166{bottom:754.022700px;}
.y27e{bottom:755.263500px;}
.yc{bottom:756.872100px;}
.y1ff{bottom:762.699822px;}
.y67{bottom:767.230350px;}
.y3f{bottom:767.770350px;}
.y1b9{bottom:767.905350px;}
.y96{bottom:767.920350px;}
.yf3{bottom:767.935350px;}
.yc3{bottom:767.950350px;}
.y27d{bottom:770.263500px;}
.y1f5{bottom:771.144702px;}
.y172{bottom:771.612000px;}
.yb{bottom:774.872100px;}
.y15e{bottom:780.748050px;}
.y27c{bottom:785.263500px;}
.y3e{bottom:785.770350px;}
.y1b8{bottom:785.905350px;}
.y95{bottom:785.920350px;}
.yf2{bottom:785.935350px;}
.yc2{bottom:785.950350px;}
.y1ec{bottom:787.555158px;}
.y16e{bottom:799.092000px;}
.y27b{bottom:800.263500px;}
.y3d{bottom:803.770350px;}
.y1b7{bottom:803.905350px;}
.y94{bottom:803.920350px;}
.yf1{bottom:803.935350px;}
.yc1{bottom:803.950350px;}
.y1ef{bottom:807.115326px;}
.y1e7{bottom:809.135250px;}
.y16d{bottom:813.492000px;}
.y27a{bottom:815.263500px;}
.ya{bottom:820.030350px;}
.y24c{bottom:821.365350px;}
.y116{bottom:821.515350px;}
.y3c{bottom:821.770350px;}
.y1b6{bottom:821.905350px;}
.y93{bottom:821.920350px;}
.yc0{bottom:821.950350px;}
.y16c{bottom:827.892000px;}
.y279{bottom:830.263500px;}
.y9{bottom:832.481100px;}
.ye3{bottom:839.515350px;}
.yf0{bottom:839.530350px;}
.y3b{bottom:839.770350px;}
.y1b5{bottom:839.905350px;}
.y92{bottom:839.920350px;}
.ybf{bottom:839.950350px;}
.y16b{bottom:842.292000px;}
.y278{bottom:845.263500px;}
.y16a{bottom:856.692000px;}
.y3a{bottom:857.770350px;}
.y1b4{bottom:857.905350px;}
.y91{bottom:857.920350px;}
.ybe{bottom:857.950350px;}
.y277{bottom:860.263500px;}
.y1fe{bottom:863.376486px;}
.y8{bottom:864.196650px;}
.y276{bottom:875.263500px;}
.y21e{bottom:875.515350px;}
.y39{bottom:875.770350px;}
.yef{bottom:875.785350px;}
.y1b3{bottom:875.905350px;}
.y90{bottom:875.920350px;}
.y7{bottom:877.696650px;}
.y275{bottom:890.263500px;}
.ybd{bottom:893.545350px;}
.y38{bottom:893.770350px;}
.yee{bottom:893.785350px;}
.y1b2{bottom:893.905350px;}
.y8f{bottom:893.920350px;}
.y6{bottom:896.622000px;}
.y274{bottom:905.263500px;}
.y37{bottom:911.770350px;}
.yed{bottom:911.785350px;}
.y1b1{bottom:911.905350px;}
.y8e{bottom:911.920350px;}
.y273{bottom:920.263500px;}
.y5{bottom:925.343850px;}
.y36{bottom:929.770350px;}
.yec{bottom:929.785350px;}
.ybc{bottom:929.800350px;}
.y1b0{bottom:929.905350px;}
.y8d{bottom:929.920350px;}
.y272{bottom:935.263500px;}
.y17d{bottom:947.515350px;}
.y35{bottom:947.770350px;}
.y2b1{bottom:947.772600px;}
.yeb{bottom:947.785350px;}
.ybb{bottom:947.800350px;}
.y1af{bottom:947.905350px;}
.y271{bottom:950.263500px;}
.y270{bottom:965.263500px;}
.y8c{bottom:965.515350px;}
.y34{bottom:965.770350px;}
.y2b0{bottom:965.772600px;}
.yea{bottom:965.785350px;}
.yba{bottom:965.800350px;}
.y1ae{bottom:965.905350px;}
.y4{bottom:971.528250px;}
.y26f{bottom:980.263500px;}
.y33{bottom:983.770350px;}
.y2af{bottom:983.772600px;}
.ye9{bottom:983.785350px;}
.yb9{bottom:983.800350px;}
.y26e{bottom:995.263500px;}
.y1ad{bottom:1001.500350px;}
.y32{bottom:1001.770350px;}
.y2ae{bottom:1001.772600px;}
.ye8{bottom:1001.785350px;}
.yb8{bottom:1001.800350px;}
.y3{bottom:1007.989050px;}
.y26d{bottom:1010.263500px;}
.y31{bottom:1019.770350px;}
.ye7{bottom:1019.785350px;}
.yb7{bottom:1019.800350px;}
.y26c{bottom:1025.263500px;}
.y1ac{bottom:1037.365350px;}
.y2ad{bottom:1037.367600px;}
.y30{bottom:1037.770350px;}
.ye6{bottom:1037.785350px;}
.yb6{bottom:1037.800350px;}
.y26b{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y26a{bottom:1132.413900px;}
.y66{bottom:1132.418700px;}
.y1e1{bottom:1132.421700px;}
.y2ab{bottom:1132.423500px;}
.y1ab{bottom:1132.436400px;}
.y115{bottom:1132.446150px;}
.y213{bottom:1132.451550px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h22{height:28.261930px;}
.h25{height:28.262337px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.h2e{height:31.695047px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.h2b{height:34.945312px;}
.hf{height:34.968750px;}
.he{height:34.992188px;}
.h27{height:35.727750px;}
.h20{height:36.508387px;}
.h24{height:36.508912px;}
.h23{height:38.609714px;}
.h2f{height:39.964289px;}
.h2c{height:40.053445px;}
.h13{height:42.023438px;}
.h14{height:42.117188px;}
.h9{height:43.681641px;}
.ha{height:43.710938px;}
.h17{height:43.806282px;}
.h1e{height:45.047438px;}
.h26{height:45.049125px;}
.h30{height:47.110064px;}
.h1c{height:47.476106px;}
.h1b{height:49.157335px;}
.h15{height:50.999189px;}
.hb{height:52.529297px;}
.h19{height:52.567643px;}
.hc{height:52.646484px;}
.h1a{height:52.684916px;}
.h31{height:54.149297px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h11{height:58.854580px;}
.h10{height:58.887580px;}
.h29{height:61.095558px;}
.h12{height:72.316575px;}
.h28{height:75.194502px;}
.h4{height:92.168262px;}
.h16{height:219.697500px;}
.h21{height:282.441000px;}
.h1d{height:397.702500px;}
.h1f{height:432.985500px;}
.h2a{height:433.012500px;}
.h2d{height:511.941000px;}
.h18{height:533.191500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w6{width:223.737000px;}
.w5{width:223.788000px;}
.w2{width:224.977500px;}
.w4{width:225.088500px;}
.wa{width:348.660000px;}
.w9{width:348.661500px;}
.w7{width:475.318500px;}
.w8{width:566.908500px;}
.wb{width:665.775000px;}
.w3{width:718.582500px;}
.wc{width:718.957500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4b{left:8.663250px;}
.x47{left:9.972600px;}
.x1e{left:12.473700px;}
.x1b{left:22.531350px;}
.x44{left:25.624050px;}
.x39{left:63.819750px;}
.xa{left:76.535400px;}
.x57{left:78.663900px;}
.x4a{left:93.362414px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x17{left:99.923850px;}
.x83{left:102.047250px;}
.x2d{left:104.433180px;}
.x4{left:106.299150px;}
.xb{left:110.555400px;}
.x2c{left:112.776750px;}
.x6b{left:124.198500px;}
.x3{left:125.427900px;}
.x29{left:127.287000px;}
.x7e{left:129.966282px;}
.x6{left:131.811000px;}
.x2f{left:134.849700px;}
.x19{left:142.980000px;}
.x59{left:150.269250px;}
.x56{left:157.083900px;}
.x2a{left:162.568950px;}
.x10{left:165.985350px;}
.x1c{left:170.769900px;}
.x5b{left:171.942930px;}
.x43{left:173.632500px;}
.x3b{left:177.027900px;}
.x16{left:178.343850px;}
.x28{left:181.514550px;}
.x1d{left:192.335400px;}
.x42{left:199.256550px;}
.x7c{left:208.298250px;}
.x41{left:209.300550px;}
.x82{left:211.390350px;}
.x5{left:212.876400px;}
.x80{left:216.446418px;}
.x38{left:222.280500px;}
.x5e{left:223.694802px;}
.x14{left:232.360350px;}
.x37{left:238.657650px;}
.x45{left:240.955950px;}
.x73{left:242.543700px;}
.x7b{left:251.844480px;}
.x63{left:255.397632px;}
.x15{left:259.799850px;}
.x71{left:264.762864px;}
.x1a{left:268.991400px;}
.x6d{left:272.500200px;}
.x70{left:276.939468px;}
.x18{left:282.914700px;}
.x3a{left:287.352600px;}
.x2b{left:289.755600px;}
.x64{left:291.262464px;}
.x66{left:296.189376px;}
.x65{left:317.247744px;}
.x24{left:320.149500px;}
.x35{left:325.840650px;}
.x5c{left:328.407762px;}
.x75{left:330.028092px;}
.x5f{left:339.792402px;}
.x4e{left:351.295625px;}
.x34{left:356.230200px;}
.x61{left:364.504146px;}
.x4d{left:375.131550px;}
.x4c{left:380.008350px;}
.x27{left:386.728200px;}
.x7a{left:388.491768px;}
.x33{left:393.857252px;}
.x23{left:396.685500px;}
.x3c{left:399.308400px;}
.x3d{left:401.060400px;}
.x32{left:402.213330px;}
.x3f{left:403.697700px;}
.x5a{left:407.740050px;}
.x31{left:410.556900px;}
.x21{left:423.717000px;}
.x2e{left:425.068500px;}
.x6c{left:427.542900px;}
.x46{left:435.439950px;}
.x6f{left:442.059696px;}
.x5d{left:444.235218px;}
.x50{left:446.457000px;}
.x9{left:455.041500px;}
.xc{left:457.085400px;}
.x4f{left:463.283503px;}
.x3e{left:464.816400px;}
.x25{left:468.412350px;}
.x51{left:476.763300px;}
.x11{left:478.340250px;}
.x7{left:480.471000px;}
.x1f{left:481.696950px;}
.x69{left:483.437760px;}
.x26{left:490.004100px;}
.xd{left:491.105400px;}
.x6a{left:503.093952px;}
.x68{left:510.143424px;}
.x12{left:512.360250px;}
.x60{left:529.008978px;}
.x36{left:549.280650px;}
.x67{left:555.579072px;}
.x30{left:559.905000px;}
.x6e{left:561.189564px;}
.x74{left:563.586084px;}
.x22{left:566.435250px;}
.x78{left:575.294796px;}
.x52{left:578.897250px;}
.x20{left:580.606200px;}
.x55{left:592.641425px;}
.x72{left:595.026144px;}
.x77{left:596.669472px;}
.x58{left:600.685350px;}
.x7f{left:625.908978px;}
.x40{left:626.984550px;}
.x76{left:651.629664px;}
.x79{left:659.800656px;}
.xf{left:663.492300px;}
.x62{left:676.288914px;}
.x2{left:693.365400px;}
.x48{left:705.682050px;}
.x54{left:721.216650px;}
.x49{left:725.200950px;}
.xe{left:728.391600px;}
.x81{left:743.868150px;}
.x53{left:745.053750px;}
.x13{left:749.651400px;}
.x7d{left:770.533254px;}
@media print{
.v5{vertical-align:-32.562667pt;}
.v2{vertical-align:-19.290133pt;}
.v4{vertical-align:-10.562667pt;}
.vd{vertical-align:-8.317867pt;}
.vb{vertical-align:-3.979264pt;}
.v7{vertical-align:-1.494426pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.494426pt;}
.v8{vertical-align:2.688000pt;}
.vc{vertical-align:20.098133pt;}
.va{vertical-align:22.549163pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.v9{vertical-align:35.081557pt;}
.ls94{letter-spacing:-2.346667pt;}
.ls5f{letter-spacing:-0.768000pt;}
.lse{letter-spacing:-0.693333pt;}
.ls44{letter-spacing:-0.533333pt;}
.lsa0{letter-spacing:-0.469333pt;}
.lsf{letter-spacing:-0.426667pt;}
.ls9e{letter-spacing:-0.384000pt;}
.ls66{letter-spacing:-0.320000pt;}
.ls6f{letter-spacing:-0.266667pt;}
.ls35{letter-spacing:-0.213333pt;}
.ls93{letter-spacing:-0.170667pt;}
.ls37{letter-spacing:-0.160000pt;}
.ls92{letter-spacing:-0.128000pt;}
.ls34{letter-spacing:-0.106667pt;}
.ls9f{letter-spacing:-0.085333pt;}
.ls64{letter-spacing:-0.074135pt;}
.ls63{letter-spacing:-0.074134pt;}
.ls32{letter-spacing:-0.053333pt;}
.ls7a{letter-spacing:-0.042667pt;}
.lsd{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.001600pt;}
.ls1{letter-spacing:0.003680pt;}
.ls67{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.004512pt;}
.ls4f{letter-spacing:0.008533pt;}
.ls62{letter-spacing:0.037067pt;}
.ls60{letter-spacing:0.042667pt;}
.ls8{letter-spacing:0.053333pt;}
.ls61{letter-spacing:0.085333pt;}
.ls28{letter-spacing:0.106667pt;}
.ls98{letter-spacing:0.128000pt;}
.ls52{letter-spacing:0.154453pt;}
.ls48{letter-spacing:0.155467pt;}
.ls11{letter-spacing:0.160000pt;}
.ls7b{letter-spacing:0.170667pt;}
.ls4c{letter-spacing:0.187520pt;}
.ls12{letter-spacing:0.213333pt;}
.ls47{letter-spacing:0.217653pt;}
.ls82{letter-spacing:0.256000pt;}
.ls2c{letter-spacing:0.266667pt;}
.ls51{letter-spacing:0.283733pt;}
.ls8c{letter-spacing:0.298667pt;}
.ls43{letter-spacing:0.320000pt;}
.ls58{letter-spacing:0.341333pt;}
.ls4b{letter-spacing:0.346133pt;}
.ls30{letter-spacing:0.373333pt;}
.ls86{letter-spacing:0.384000pt;}
.ls9b{letter-spacing:0.396800pt;}
.ls1e{letter-spacing:0.426667pt;}
.ls7e{letter-spacing:0.469333pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls5c{letter-spacing:0.512000pt;}
.ls2e{letter-spacing:0.533333pt;}
.ls7d{letter-spacing:0.554667pt;}
.ls46{letter-spacing:0.559680pt;}
.ls14{letter-spacing:0.586667pt;}
.ls8a{letter-spacing:0.597333pt;}
.ls18{letter-spacing:0.640000pt;}
.ls89{letter-spacing:0.682667pt;}
.ls17{letter-spacing:0.693333pt;}
.ls5d{letter-spacing:0.725333pt;}
.ls24{letter-spacing:0.746667pt;}
.ls8e{letter-spacing:0.768000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls59{letter-spacing:0.810667pt;}
.ls2a{letter-spacing:0.853333pt;}
.ls95{letter-spacing:0.896000pt;}
.ls13{letter-spacing:0.906667pt;}
.ls83{letter-spacing:0.938667pt;}
.ls6{letter-spacing:0.960000pt;}
.ls7c{letter-spacing:0.981333pt;}
.ls16{letter-spacing:1.013333pt;}
.ls8b{letter-spacing:1.024000pt;}
.ls2{letter-spacing:1.066667pt;}
.ls80{letter-spacing:1.109333pt;}
.ls15{letter-spacing:1.120000pt;}
.ls75{letter-spacing:1.152000pt;}
.ls2d{letter-spacing:1.173333pt;}
.ls87{letter-spacing:1.194667pt;}
.ls3d{letter-spacing:1.226667pt;}
.ls78{letter-spacing:1.237333pt;}
.ls10{letter-spacing:1.280000pt;}
.ls79{letter-spacing:1.322667pt;}
.lsb{letter-spacing:1.333333pt;}
.ls8d{letter-spacing:1.365333pt;}
.ls29{letter-spacing:1.386667pt;}
.ls96{letter-spacing:1.408000pt;}
.ls45{letter-spacing:1.430293pt;}
.ls21{letter-spacing:1.440000pt;}
.ls9a{letter-spacing:1.450667pt;}
.ls40{letter-spacing:1.493333pt;}
.ls8f{letter-spacing:1.536000pt;}
.ls3a{letter-spacing:1.546667pt;}
.ls73{letter-spacing:1.578667pt;}
.lsa{letter-spacing:1.600000pt;}
.ls84{letter-spacing:1.621333pt;}
.ls1b{letter-spacing:1.653333pt;}
.ls74{letter-spacing:1.664000pt;}
.ls20{letter-spacing:1.706667pt;}
.ls91{letter-spacing:1.749333pt;}
.ls19{letter-spacing:1.760000pt;}
.ls99{letter-spacing:1.792000pt;}
.ls2f{letter-spacing:1.813333pt;}
.ls26{letter-spacing:1.866667pt;}
.ls36{letter-spacing:1.920000pt;}
.ls7f{letter-spacing:1.962667pt;}
.ls23{letter-spacing:1.973333pt;}
.ls88{letter-spacing:2.005333pt;}
.ls5{letter-spacing:2.026667pt;}
.ls3f{letter-spacing:2.080000pt;}
.ls90{letter-spacing:2.090667pt;}
.ls1f{letter-spacing:2.133333pt;}
.ls2b{letter-spacing:2.186667pt;}
.ls77{letter-spacing:2.218667pt;}
.ls3b{letter-spacing:2.240000pt;}
.ls3e{letter-spacing:2.293333pt;}
.ls9d{letter-spacing:2.304000pt;}
.ls6d{letter-spacing:2.346667pt;}
.ls22{letter-spacing:2.400000pt;}
.ls81{letter-spacing:2.432000pt;}
.ls25{letter-spacing:2.453333pt;}
.ls57{letter-spacing:2.506667pt;}
.ls76{letter-spacing:2.517333pt;}
.ls49{letter-spacing:2.560000pt;}
.ls39{letter-spacing:2.613333pt;}
.ls7{letter-spacing:2.666667pt;}
.ls85{letter-spacing:2.688000pt;}
.ls53{letter-spacing:2.720000pt;}
.ls3{letter-spacing:2.773333pt;}
.ls9{letter-spacing:2.826667pt;}
.ls38{letter-spacing:2.880000pt;}
.ls4{letter-spacing:2.933333pt;}
.ls41{letter-spacing:2.986667pt;}
.ls4a{letter-spacing:3.040000pt;}
.ls97{letter-spacing:3.072000pt;}
.ls3c{letter-spacing:3.093333pt;}
.ls6b{letter-spacing:3.146667pt;}
.ls65{letter-spacing:3.200000pt;}
.ls1a{letter-spacing:3.253333pt;}
.ls56{letter-spacing:3.360000pt;}
.ls27{letter-spacing:3.413333pt;}
.ls55{letter-spacing:3.466667pt;}
.ls42{letter-spacing:3.520000pt;}
.ls6e{letter-spacing:3.573333pt;}
.ls33{letter-spacing:3.626667pt;}
.ls1c{letter-spacing:3.680000pt;}
.ls31{letter-spacing:3.786667pt;}
.ls54{letter-spacing:3.893333pt;}
.ls4d{letter-spacing:4.000000pt;}
.ls9c{letter-spacing:4.181333pt;}
.ls70{letter-spacing:4.266667pt;}
.ls71{letter-spacing:4.320000pt;}
.ls69{letter-spacing:4.533333pt;}
.ls6a{letter-spacing:4.640000pt;}
.ls6c{letter-spacing:5.226667pt;}
.ls72{letter-spacing:6.186667pt;}
.ls50{letter-spacing:7.998933pt;}
.ls5e{letter-spacing:146.474667pt;}
.ls68{letter-spacing:427.565333pt;}
.ls5b{letter-spacing:1024.491017pt;}
.ls5a{letter-spacing:1025.923174pt;}
.ws39{word-spacing:-21.333333pt;}
.ws85{word-spacing:-16.586667pt;}
.ws38{word-spacing:-15.733333pt;}
.ws81{word-spacing:-15.626667pt;}
.ws82{word-spacing:-15.573333pt;}
.ws36{word-spacing:-15.093333pt;}
.ws48{word-spacing:-14.826667pt;}
.ws7d{word-spacing:-14.453333pt;}
.wsd{word-spacing:-14.346667pt;}
.ws37{word-spacing:-14.133333pt;}
.wsc{word-spacing:-13.866667pt;}
.ws6d{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.386667pt;}
.ws25{word-spacing:-13.333333pt;}
.wsaf{word-spacing:-12.458667pt;}
.ws97{word-spacing:-12.416000pt;}
.wsad{word-spacing:-12.330667pt;}
.ws3{word-spacing:-11.861333pt;}
.ws94{word-spacing:-11.434667pt;}
.wsb1{word-spacing:-11.349333pt;}
.ws96{word-spacing:-11.306667pt;}
.ws91{word-spacing:-11.136000pt;}
.ws2{word-spacing:-11.120000pt;}
.ws86{word-spacing:-11.093333pt;}
.ws93{word-spacing:-10.965333pt;}
.wsb0{word-spacing:-10.880000pt;}
.wsae{word-spacing:-10.709333pt;}
.ws5c{word-spacing:-10.666667pt;}
.ws92{word-spacing:-10.624000pt;}
.ws90{word-spacing:-10.453333pt;}
.ws67{word-spacing:-9.266933pt;}
.ws65{word-spacing:-9.266800pt;}
.ws21{word-spacing:-9.203627pt;}
.ws0{word-spacing:-9.076144pt;}
.ws22{word-spacing:-8.333013pt;}
.ws95{word-spacing:-8.320000pt;}
.ws23{word-spacing:-7.990987pt;}
.ws24{word-spacing:-7.928800pt;}
.ws20{word-spacing:-7.773333pt;}
.wsb7{word-spacing:-3.072000pt;}
.ws5{word-spacing:-2.565333pt;}
.ws43{word-spacing:-2.293333pt;}
.ws9a{word-spacing:-2.133333pt;}
.ws2a{word-spacing:-1.973333pt;}
.wsbe{word-spacing:-1.792000pt;}
.wsac{word-spacing:-1.749333pt;}
.ws8d{word-spacing:-1.664000pt;}
.ws9d{word-spacing:-1.578667pt;}
.wsc2{word-spacing:-1.365333pt;}
.wsbd{word-spacing:-1.194667pt;}
.ws1e{word-spacing:-1.013333pt;}
.ws6{word-spacing:-1.008000pt;}
.wsa4{word-spacing:-0.768000pt;}
.ws7f{word-spacing:-0.640000pt;}
.ws1d{word-spacing:-0.533333pt;}
.ws87{word-spacing:-0.426667pt;}
.wsa0{word-spacing:-0.384000pt;}
.ws4e{word-spacing:-0.373333pt;}
.wsb3{word-spacing:-0.341333pt;}
.ws34{word-spacing:-0.320000pt;}
.ws1c{word-spacing:-0.266667pt;}
.ws9b{word-spacing:-0.256000pt;}
.ws58{word-spacing:-0.213333pt;}
.ws98{word-spacing:-0.170667pt;}
.ws49{word-spacing:-0.160000pt;}
.ws1b{word-spacing:-0.106667pt;}
.ws9e{word-spacing:-0.085333pt;}
.ws10{word-spacing:-0.053333pt;}
.ws70{word-spacing:-0.045739pt;}
.ws69{word-spacing:-0.042667pt;}
.ws79{word-spacing:-0.040576pt;}
.ws62{word-spacing:-0.037067pt;}
.ws4{word-spacing:0.000000pt;}
.wsa3{word-spacing:0.042667pt;}
.ws17{word-spacing:0.053333pt;}
.ws6b{word-spacing:0.074134pt;}
.ws6c{word-spacing:0.074135pt;}
.ws8f{word-spacing:0.085333pt;}
.ws19{word-spacing:0.106667pt;}
.wsbf{word-spacing:0.128000pt;}
.ws2c{word-spacing:0.160000pt;}
.wsa9{word-spacing:0.170667pt;}
.ws18{word-spacing:0.213333pt;}
.ws31{word-spacing:0.266667pt;}
.wsc3{word-spacing:0.298667pt;}
.ws1f{word-spacing:0.320000pt;}
.wsb8{word-spacing:0.384000pt;}
.ws4d{word-spacing:0.426667pt;}
.ws83{word-spacing:0.480000pt;}
.ws1a{word-spacing:0.533333pt;}
.ws7c{word-spacing:0.554667pt;}
.wsa2{word-spacing:0.597333pt;}
.ws35{word-spacing:0.640000pt;}
.wsa8{word-spacing:0.682667pt;}
.ws13{word-spacing:0.693333pt;}
.wsab{word-spacing:0.725333pt;}
.ws9{word-spacing:0.746667pt;}
.ws61{word-spacing:0.768000pt;}
.ws84{word-spacing:0.853333pt;}
.ws59{word-spacing:0.906667pt;}
.ws40{word-spacing:0.960000pt;}
.ws33{word-spacing:1.013333pt;}
.wsaa{word-spacing:1.066667pt;}
.ws4c{word-spacing:1.120000pt;}
.ws9f{word-spacing:1.152000pt;}
.ws5a{word-spacing:1.173333pt;}
.ws74{word-spacing:1.226667pt;}
.wsbc{word-spacing:1.237333pt;}
.ws2e{word-spacing:1.280000pt;}
.wsb2{word-spacing:1.322667pt;}
.ws12{word-spacing:1.333333pt;}
.wsb6{word-spacing:1.365333pt;}
.ws14{word-spacing:1.386667pt;}
.ws7e{word-spacing:1.440000pt;}
.ws45{word-spacing:1.493333pt;}
.wsbb{word-spacing:1.536000pt;}
.ws15{word-spacing:1.546667pt;}
.wsa7{word-spacing:1.621333pt;}
.ws2f{word-spacing:1.706667pt;}
.ws29{word-spacing:1.760000pt;}
.ws80{word-spacing:1.813333pt;}
.ws3e{word-spacing:1.866667pt;}
.wsb{word-spacing:1.920000pt;}
.wsb5{word-spacing:1.962667pt;}
.wsc1{word-spacing:2.005333pt;}
.ws28{word-spacing:2.133333pt;}
.ws99{word-spacing:2.176000pt;}
.wsa6{word-spacing:2.218667pt;}
.wsa{word-spacing:2.240000pt;}
.ws9c{word-spacing:2.261333pt;}
.ws68{word-spacing:2.293333pt;}
.ws26{word-spacing:2.346667pt;}
.ws60{word-spacing:2.432000pt;}
.ws47{word-spacing:2.506667pt;}
.ws3c{word-spacing:2.560000pt;}
.wsb9{word-spacing:2.602667pt;}
.wsf{word-spacing:2.613333pt;}
.ws46{word-spacing:2.666667pt;}
.ws5b{word-spacing:2.720000pt;}
.wsa1{word-spacing:2.730667pt;}
.ws3d{word-spacing:2.773333pt;}
.wsa5{word-spacing:2.816000pt;}
.ws41{word-spacing:2.880000pt;}
.wsb4{word-spacing:2.901333pt;}
.wsc0{word-spacing:2.944000pt;}
.ws3f{word-spacing:2.986667pt;}
.ws6a{word-spacing:3.029333pt;}
.ws3b{word-spacing:3.040000pt;}
.ws8e{word-spacing:3.072000pt;}
.ws89{word-spacing:3.093333pt;}
.wse{word-spacing:3.146667pt;}
.ws5e{word-spacing:3.200000pt;}
.wsba{word-spacing:3.285333pt;}
.ws30{word-spacing:3.306667pt;}
.ws5f{word-spacing:3.328000pt;}
.ws42{word-spacing:3.360000pt;}
.ws11{word-spacing:3.413333pt;}
.ws5d{word-spacing:3.466667pt;}
.ws50{word-spacing:3.498667pt;}
.ws4a{word-spacing:3.520000pt;}
.ws51{word-spacing:3.541333pt;}
.ws2b{word-spacing:3.573333pt;}
.ws32{word-spacing:3.626667pt;}
.ws4b{word-spacing:3.680000pt;}
.ws8a{word-spacing:3.733333pt;}
.ws44{word-spacing:3.786667pt;}
.ws88{word-spacing:3.893333pt;}
.ws16{word-spacing:3.946667pt;}
.ws27{word-spacing:4.000000pt;}
.ws57{word-spacing:4.053333pt;}
.ws76{word-spacing:4.106667pt;}
.ws3a{word-spacing:4.160000pt;}
.ws4f{word-spacing:4.213333pt;}
.ws2d{word-spacing:4.266667pt;}
.ws75{word-spacing:4.320000pt;}
.ws8{word-spacing:4.373333pt;}
.ws7{word-spacing:4.426667pt;}
.ws8c{word-spacing:4.853333pt;}
.ws8b{word-spacing:4.906667pt;}
.ws71{word-spacing:117.594112pt;}
.ws6f{word-spacing:152.355499pt;}
.ws72{word-spacing:188.809216pt;}
.ws56{word-spacing:246.668333pt;}
.ws55{word-spacing:246.801763pt;}
.ws52{word-spacing:248.714266pt;}
.ws53{word-spacing:248.892173pt;}
.ws78{word-spacing:285.939072pt;}
.ws77{word-spacing:308.823936pt;}
.ws54{word-spacing:313.180902pt;}
.ws7b{word-spacing:372.010667pt;}
.ws6e{word-spacing:373.318997pt;}
.ws7a{word-spacing:388.906667pt;}
.ws63{word-spacing:412.743272pt;}
.ws66{word-spacing:412.749211pt;}
.ws64{word-spacing:422.899685pt;}
.ws73{word-spacing:863.957675pt;}
._9{margin-left:-2576.085333pt;}
._b{margin-left:-2554.922667pt;}
._3c{margin-left:-483.912296pt;}
._5{margin-left:-6.720000pt;}
._a{margin-left:-5.816000pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.080000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.064000pt;}
._8{width:0.906667pt;}
._d{width:2.506667pt;}
._6{width:3.413333pt;}
._7{width:4.853333pt;}
._c{width:6.720000pt;}
._12{width:36.736000pt;}
._11{width:40.789333pt;}
._10{width:45.610667pt;}
._3{width:52.796101pt;}
._39{width:58.213333pt;}
._3a{width:60.117333pt;}
._38{width:63.701333pt;}
._13{width:66.944000pt;}
._25{width:79.573333pt;}
._1c{width:87.722667pt;}
._2c{width:90.069333pt;}
._1e{width:91.098667pt;}
._3f{width:108.962667pt;}
._2b{width:110.421333pt;}
._20{width:111.616000pt;}
._1b{width:113.664000pt;}
._19{width:115.328000pt;}
._44{width:118.954667pt;}
._47{width:120.533333pt;}
._3e{width:126.080000pt;}
._3d{width:127.872000pt;}
._24{width:131.797333pt;}
._15{width:132.736000pt;}
._4f{width:135.203499pt;}
._35{width:136.112000pt;}
._26{width:140.032000pt;}
._2e{width:141.610667pt;}
._1d{width:142.976000pt;}
._46{width:144.133333pt;}
._33{width:145.152000pt;}
._40{width:146.176000pt;}
._4d{width:149.323093pt;}
._2a{width:151.040000pt;}
._48{width:152.837333pt;}
._23{width:154.837333pt;}
._4e{width:156.197547pt;}
._18{width:162.602667pt;}
._37{width:163.626667pt;}
._43{width:165.802667pt;}
._49{width:166.997333pt;}
._32{width:170.069333pt;}
._21{width:175.616000pt;}
._1f{width:176.597333pt;}
._42{width:180.821333pt;}
._17{width:183.850667pt;}
._16{width:185.349333pt;}
._31{width:187.520000pt;}
._4a{width:190.677333pt;}
._28{width:192.597333pt;}
._45{width:196.906667pt;}
._29{width:198.229333pt;}
._22{width:202.922667pt;}
._2d{width:207.112000pt;}
._41{width:209.541333pt;}
._1a{width:211.498667pt;}
._36{width:253.397333pt;}
._2f{width:260.522667pt;}
._30{width:262.869333pt;}
._34{width:277.120000pt;}
._27{width:282.282667pt;}
._50{width:296.123648pt;}
._51{width:307.890688pt;}
._f{width:313.472000pt;}
._52{width:319.049088pt;}
._14{width:322.602667pt;}
._4b{width:369.522688pt;}
._4c{width:377.161045pt;}
._55{width:400.768000pt;}
._56{width:407.978667pt;}
._58{width:414.976000pt;}
._3b{width:431.313939pt;}
._53{width:436.053333pt;}
._5b{width:608.896000pt;}
._59{width:620.757333pt;}
._e{width:627.328000pt;}
._5a{width:646.869333pt;}
._54{width:651.605333pt;}
._57{width:663.424000pt;}
.fs5{font-size:23.320000pt;}
.fs14{font-size:24.874667pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fsf{font-size:37.067200pt;}
.fs11{font-size:37.067733pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs13{font-size:40.576000pt;}
.fs9{font-size:42.666667pt;}
.fsd{font-size:44.476800pt;}
.fs12{font-size:45.738667pt;}
.fs10{font-size:50.638933pt;}
.fs8{font-size:53.333333pt;}
.fse{font-size:53.372267pt;}
.fs3{font-size:56.000000pt;}
.fsc{font-size:62.267733pt;}
.fs1{font-size:69.333333pt;}
.fsb{font-size:85.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y168{bottom:0.057200pt;}
.y164{bottom:0.950400pt;}
.y162{bottom:1.619600pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y2ac{bottom:71.345333pt;}
.y269{bottom:73.886133pt;}
.y114{bottom:73.946800pt;}
.y1c5{bottom:73.987600pt;}
.y24b{bottom:74.342533pt;}
.y65{bottom:74.462533pt;}
.y20e{bottom:74.527600pt;}
.y8b{bottom:74.588533pt;}
.y21d{bottom:74.595867pt;}
.y158{bottom:74.667600pt;}
.y22b{bottom:74.729200pt;}
.y11a{bottom:74.733067pt;}
.yb5{bottom:74.862533pt;}
.y1aa{bottom:75.154133pt;}
.ye2{bottom:77.914533pt;}
.y2c{bottom:78.246000pt;}
.y2aa{bottom:84.678667pt;}
.y268{bottom:87.219467pt;}
.y1c4{bottom:87.982267pt;}
.y113{bottom:88.613467pt;}
.y119{bottom:88.727733pt;}
.y157{bottom:89.334267pt;}
.y1a9{bottom:89.820800pt;}
.y24a{bottom:90.342533pt;}
.y64{bottom:90.462533pt;}
.y8a{bottom:90.588533pt;}
.y21c{bottom:90.595867pt;}
.y22a{bottom:90.729200pt;}
.yb4{bottom:90.862533pt;}
.y2b{bottom:91.576000pt;}
.ye1{bottom:93.914533pt;}
.y20d{bottom:97.204933pt;}
.y2a9{bottom:98.012000pt;}
.y146{bottom:100.252400pt;}
.y267{bottom:100.552800pt;}
.y1c3{bottom:101.976933pt;}
.y118{bottom:102.722400pt;}
.y112{bottom:103.280133pt;}
.y156{bottom:104.000933pt;}
.y1a8{bottom:104.487467pt;}
.y195{bottom:105.910133pt;}
.y188{bottom:105.910400pt;}
.y249{bottom:105.982533pt;}
.y63{bottom:106.462533pt;}
.y89{bottom:106.588533pt;}
.y21b{bottom:106.595867pt;}
.y229{bottom:106.729200pt;}
.yb3{bottom:106.862533pt;}
.ye0{bottom:109.914533pt;}
.y177{bottom:110.695067pt;}
.y2a8{bottom:111.345333pt;}
.y20c{bottom:111.647600pt;}
.y266{bottom:113.886133pt;}
.y117{bottom:116.717067pt;}
.y155{bottom:118.667600pt;}
.y1a7{bottom:119.154133pt;}
.y1df{bottom:122.369333pt;}
.y62{bottom:122.462533pt;}
.y88{bottom:122.588533pt;}
.y21a{bottom:122.595867pt;}
.y228{bottom:122.729200pt;}
.yb2{bottom:122.862533pt;}
.y2a7{bottom:124.678667pt;}
.y1de{bottom:125.871803pt;}
.ydf{bottom:125.914533pt;}
.y111{bottom:125.957467pt;}
.y20b{bottom:126.090267pt;}
.y265{bottom:127.219467pt;}
.y2a6{bottom:138.012000pt;}
.y248{bottom:138.342533pt;}
.y61{bottom:138.462533pt;}
.y87{bottom:138.588533pt;}
.y219{bottom:138.595867pt;}
.y227{bottom:138.729200pt;}
.yb1{bottom:138.862533pt;}
.y127{bottom:139.280000pt;}
.y110{bottom:140.400133pt;}
.y20a{bottom:140.532933pt;}
.y264{bottom:140.552800pt;}
.y154{bottom:141.344933pt;}
.y1a6{bottom:141.831467pt;}
.yde{bottom:141.914533pt;}
.y145{bottom:143.370933pt;}
.y28{bottom:147.470400pt;}
.y1c6{bottom:151.336533pt;}
.y2a5{bottom:151.345333pt;}
.y263{bottom:153.886133pt;}
.y247{bottom:154.342533pt;}
.y60{bottom:154.462533pt;}
.y86{bottom:154.588533pt;}
.y218{bottom:154.595867pt;}
.y226{bottom:154.729200pt;}
.y10f{bottom:154.842800pt;}
.yb0{bottom:154.862533pt;}
.y209{bottom:154.975600pt;}
.y153{bottom:155.787600pt;}
.y1a5{bottom:156.274133pt;}
.ydd{bottom:157.914533pt;}
.y144{bottom:158.248533pt;}
.y27{bottom:163.470400pt;}
.y2a4{bottom:164.678667pt;}
.y262{bottom:167.219467pt;}
.y13e{bottom:168.523333pt;}
.y10e{bottom:169.285467pt;}
.y208{bottom:169.418267pt;}
.y152{bottom:170.230267pt;}
.y246{bottom:170.342533pt;}
.y5f{bottom:170.462533pt;}
.y85{bottom:170.588533pt;}
.y217{bottom:170.595867pt;}
.y1a4{bottom:170.716800pt;}
.yaf{bottom:170.862533pt;}
.y13a{bottom:173.316000pt;}
.ydc{bottom:173.914533pt;}
.y1c7{bottom:175.810933pt;}
.y2a3{bottom:178.012000pt;}
.y26{bottom:179.470400pt;}
.y261{bottom:180.552800pt;}
.y10d{bottom:183.728133pt;}
.y1e0{bottom:184.271733pt;}
.y151{bottom:184.672933pt;}
.y1a3{bottom:185.159467pt;}
.y13b{bottom:185.191733pt;}
.y12e{bottom:185.591200pt;}
.y11d{bottom:186.114000pt;}
.y245{bottom:186.342533pt;}
.y225{bottom:186.369200pt;}
.y5e{bottom:186.462533pt;}
.y84{bottom:186.588533pt;}
.y216{bottom:186.595867pt;}
.yae{bottom:186.862533pt;}
.ydb{bottom:189.914533pt;}
.y2a2{bottom:191.345333pt;}
.y260{bottom:193.886133pt;}
.y25{bottom:195.470400pt;}
.y207{bottom:197.428933pt;}
.y10c{bottom:198.170800pt;}
.y150{bottom:199.115600pt;}
.y1a2{bottom:199.602133pt;}
.y13f{bottom:201.069232pt;}
.y244{bottom:202.342533pt;}
.y224{bottom:202.369200pt;}
.y5d{bottom:202.462533pt;}
.y83{bottom:202.588533pt;}
.y215{bottom:202.595867pt;}
.yad{bottom:202.862533pt;}
.y2a1{bottom:204.678667pt;}
.y25f{bottom:207.219467pt;}
.y24{bottom:211.470400pt;}
.y1d1{bottom:212.454885pt;}
.y1e6{bottom:212.519067pt;}
.y1a1{bottom:214.044800pt;}
.y2a0{bottom:218.012000pt;}
.y243{bottom:218.342533pt;}
.y5c{bottom:218.462533pt;}
.y82{bottom:218.588533pt;}
.yac{bottom:218.862533pt;}
.y25e{bottom:220.552800pt;}
.y10b{bottom:223.952133pt;}
.y14f{bottom:224.896933pt;}
.y23{bottom:227.470400pt;}
.y206{bottom:228.449200pt;}
.yda{bottom:230.714533pt;}
.y29f{bottom:231.345333pt;}
.y148{bottom:232.048000pt;}
.y140{bottom:233.615130pt;}
.y25d{bottom:233.886133pt;}
.y214{bottom:234.235867pt;}
.y242{bottom:234.342533pt;}
.y5b{bottom:234.462533pt;}
.y81{bottom:234.588533pt;}
.y223{bottom:234.595867pt;}
.yab{bottom:234.862533pt;}
.y1a0{bottom:239.826133pt;}
.y186{bottom:243.359200pt;}
.y193{bottom:243.361733pt;}
.y22{bottom:243.470400pt;}
.y29e{bottom:244.678667pt;}
.y25c{bottom:247.219467pt;}
.y10a{bottom:249.733467pt;}
.y241{bottom:250.342533pt;}
.y5a{bottom:250.462533pt;}
.y80{bottom:250.588533pt;}
.y222{bottom:250.595867pt;}
.y14e{bottom:250.678267pt;}
.yaa{bottom:250.862533pt;}
.y1d9{bottom:251.092837pt;}
.y29d{bottom:258.012000pt;}
.y21{bottom:259.470400pt;}
.y25b{bottom:260.552800pt;}
.y1da{bottom:264.951653pt;}
.y19f{bottom:265.607467pt;}
.y141{bottom:266.172148pt;}
.y240{bottom:266.342533pt;}
.y59{bottom:266.462533pt;}
.y7f{bottom:266.588533pt;}
.y221{bottom:266.595867pt;}
.yd9{bottom:266.714533pt;}
.y212{bottom:267.316933pt;}
.y1d7{bottom:270.428859pt;}
.y29c{bottom:271.345333pt;}
.y25a{bottom:273.886133pt;}
.y2a{bottom:275.470400pt;}
.y109{bottom:278.555867pt;}
.y1d8{bottom:279.039163pt;}
.y14d{bottom:279.475867pt;}
.y211{bottom:281.311600pt;}
.y23f{bottom:282.342533pt;}
.y58{bottom:282.462533pt;}
.ya9{bottom:282.502533pt;}
.y7e{bottom:282.588533pt;}
.y220{bottom:282.595867pt;}
.yd8{bottom:282.714533pt;}
.y12b{bottom:284.508267pt;}
.y29b{bottom:284.678667pt;}
.y259{bottom:287.219467pt;}
.y1cd{bottom:288.689808pt;}
.y20{bottom:291.112400pt;}
.y29{bottom:291.470400pt;}
.y19e{bottom:294.399600pt;}
.y210{bottom:295.306267pt;}
.y29a{bottom:298.012000pt;}
.y23e{bottom:298.342533pt;}
.y57{bottom:298.462533pt;}
.y7d{bottom:298.588533pt;}
.y21f{bottom:298.595867pt;}
.yd7{bottom:298.714533pt;}
.y142{bottom:298.718046pt;}
.y258{bottom:300.552800pt;}
.y1d3{bottom:302.800400pt;}
.y1d6{bottom:308.106085pt;}
.y1d0{bottom:309.226469pt;}
.y20f{bottom:309.300933pt;}
.y139{bottom:309.316267pt;}
.y299{bottom:311.345333pt;}
.y1c9{bottom:311.616315pt;}
.y257{bottom:313.886133pt;}
.y23d{bottom:314.342533pt;}
.y56{bottom:314.462533pt;}
.y7c{bottom:314.595867pt;}
.yd6{bottom:314.714533pt;}
.ya8{bottom:314.729200pt;}
.y108{bottom:314.742533pt;}
.y147{bottom:317.443867pt;}
.y1d2{bottom:320.238053pt;}
.y15d{bottom:321.536933pt;}
.y298{bottom:324.678667pt;}
.y256{bottom:327.219467pt;}
.y1e5{bottom:330.138667pt;}
.y23c{bottom:330.342533pt;}
.y55{bottom:330.462533pt;}
.y7b{bottom:330.595867pt;}
.ya7{bottom:330.729200pt;}
.y107{bottom:330.742533pt;}
.y143{bottom:331.263945pt;}
.y1e4{bottom:333.249467pt;}
.y15c{bottom:335.531600pt;}
.y182{bottom:337.966667pt;}
.y297{bottom:338.012000pt;}
.y1ca{bottom:340.408805pt;}
.y255{bottom:340.552800pt;}
.y13d{bottom:342.229146pt;}
.ye5{bottom:346.235867pt;}
.y23b{bottom:346.342533pt;}
.y54{bottom:346.462533pt;}
.y7a{bottom:346.595867pt;}
.yd5{bottom:346.714533pt;}
.ya6{bottom:346.729200pt;}
.y15b{bottom:349.526267pt;}
.y13c{bottom:350.368400pt;}
.y296{bottom:351.345333pt;}
.y181{bottom:351.961333pt;}
.y254{bottom:353.886133pt;}
.y14a{bottom:354.321486pt;}
.y1d5{bottom:355.331259pt;}
.y1e2{bottom:357.597067pt;}
.y1f{bottom:360.468533pt;}
.y14c{bottom:361.043089pt;}
.y23a{bottom:362.342533pt;}
.y106{bottom:362.382533pt;}
.y53{bottom:362.462533pt;}
.y79{bottom:362.595867pt;}
.ya5{bottom:362.729200pt;}
.y15a{bottom:363.520933pt;}
.y295{bottom:364.678667pt;}
.y180{bottom:365.956000pt;}
.y253{bottom:367.219467pt;}
.y1cb{bottom:372.517349pt;}
.y174{bottom:376.009333pt;}
.y1db{bottom:377.274384pt;}
.y159{bottom:377.515600pt;}
.y294{bottom:378.012000pt;}
.ye4{bottom:378.115867pt;}
.y239{bottom:378.342533pt;}
.y52{bottom:378.462533pt;}
.y78{bottom:378.595867pt;}
.yd4{bottom:378.714533pt;}
.ya4{bottom:378.729200pt;}
.y17f{bottom:379.950667pt;}
.y14b{bottom:380.257067pt;}
.y252{bottom:380.552800pt;}
.y1e3{bottom:382.163600pt;}
.y12a{bottom:383.548667pt;}
.y1e{bottom:384.775200pt;}
.y293{bottom:391.345333pt;}
.y1fb{bottom:392.107621pt;}
.y17e{bottom:393.945333pt;}
.y238{bottom:394.342533pt;}
.y51{bottom:394.462533pt;}
.y77{bottom:394.595867pt;}
.y105{bottom:394.609200pt;}
.yd3{bottom:394.714533pt;}
.ya3{bottom:394.729200pt;}
.y1d4{bottom:397.227877pt;}
.y173{bottom:398.241333pt;}
.y129{bottom:398.425600pt;}
.y1d{bottom:400.775200pt;}
.y176{bottom:401.507867pt;}
.y1f2{bottom:403.986245pt;}
.y292{bottom:404.678667pt;}
.y1cf{bottom:407.793296pt;}
.y120{bottom:408.700400pt;}
.y1fc{bottom:409.524869pt;}
.y251{bottom:409.982533pt;}
.y237{bottom:410.342533pt;}
.y50{bottom:410.462533pt;}
.y76{bottom:410.595867pt;}
.y104{bottom:410.609200pt;}
.yd2{bottom:410.714533pt;}
.ya2{bottom:410.729200pt;}
.y175{bottom:413.454533pt;}
.y11c{bottom:413.492000pt;}
.y1cc{bottom:413.693584pt;}
.y185{bottom:415.082667pt;}
.y1c{bottom:416.775200pt;}
.y291{bottom:418.012000pt;}
.y196{bottom:418.118000pt;}
.y189{bottom:418.118133pt;}
.y16f{bottom:420.736000pt;}
.y205{bottom:422.374016pt;}
.y161{bottom:423.624000pt;}
.y236{bottom:426.342533pt;}
.y4f{bottom:426.462533pt;}
.y75{bottom:426.595867pt;}
.y103{bottom:426.609200pt;}
.yd1{bottom:426.714533pt;}
.ya1{bottom:426.729200pt;}
.y1fa{bottom:426.931973pt;}
.y167{bottom:427.927733pt;}
.y160{bottom:428.368667pt;}
.y194{bottom:428.587867pt;}
.y187{bottom:428.589200pt;}
.y290{bottom:431.345333pt;}
.y1dd{bottom:432.766821pt;}
.y1b{bottom:432.775200pt;}
.y131{bottom:433.107044pt;}
.y121{bottom:436.598473pt;}
.y191{bottom:437.372933pt;}
.y183{bottom:437.374000pt;}
.y1f3{bottom:438.506277pt;}
.y235{bottom:442.342533pt;}
.y4e{bottom:442.462533pt;}
.y74{bottom:442.595867pt;}
.y102{bottom:442.609200pt;}
.yd0{bottom:442.714533pt;}
.ya0{bottom:442.729200pt;}
.y28f{bottom:444.678667pt;}
.y1a{bottom:448.775200pt;}
.y169{bottom:448.896000pt;}
.y132{bottom:457.524807pt;}
.y28e{bottom:458.012000pt;}
.y234{bottom:458.342533pt;}
.y4d{bottom:458.462533pt;}
.y73{bottom:458.595867pt;}
.y101{bottom:458.609200pt;}
.ycf{bottom:458.714533pt;}
.y9f{bottom:458.729200pt;}
.y1ce{bottom:459.397947pt;}
.y122{bottom:464.496546pt;}
.y128{bottom:464.706933pt;}
.y19{bottom:464.775200pt;}
.y138{bottom:471.212133pt;}
.y28d{bottom:471.345333pt;}
.y200{bottom:473.459200pt;}
.y250{bottom:474.102533pt;}
.y233{bottom:474.342533pt;}
.y4c{bottom:474.462533pt;}
.y72{bottom:474.595867pt;}
.y100{bottom:474.609200pt;}
.yce{bottom:474.714533pt;}
.y9e{bottom:474.729200pt;}
.y1dc{bottom:477.442064pt;}
.y18{bottom:480.775200pt;}
.y133{bottom:481.931451pt;}
.y28c{bottom:484.678667pt;}
.y1c8{bottom:489.871333pt;}
.y232{bottom:490.342533pt;}
.y4b{bottom:490.462533pt;}
.y71{bottom:490.595867pt;}
.yff{bottom:490.609200pt;}
.y9d{bottom:490.729200pt;}
.ycd{bottom:490.755867pt;}
.y123{bottom:492.394618pt;}
.y17{bottom:496.775200pt;}
.y28b{bottom:498.012000pt;}
.y24f{bottom:506.102533pt;}
.y231{bottom:506.342533pt;}
.y134{bottom:506.349214pt;}
.y4a{bottom:506.462533pt;}
.y70{bottom:506.595867pt;}
.yfe{bottom:506.609200pt;}
.y9c{bottom:506.729200pt;}
.ycc{bottom:506.755867pt;}
.y170{bottom:509.109333pt;}
.y202{bottom:509.328384pt;}
.y28a{bottom:511.345333pt;}
.y16{bottom:512.775200pt;}
.y165{bottom:519.181067pt;}
.y204{bottom:519.898432pt;}
.y12d{bottom:520.193200pt;}
.y124{bottom:520.292691pt;}
.y230{bottom:522.342533pt;}
.y49{bottom:522.462533pt;}
.y6f{bottom:522.595867pt;}
.yfd{bottom:522.609200pt;}
.y289{bottom:524.678667pt;}
.y163{bottom:526.768400pt;}
.y15{bottom:528.775200pt;}
.y135{bottom:530.755858pt;}
.y288{bottom:538.012000pt;}
.y19c{bottom:538.295467pt;}
.y190{bottom:538.295825pt;}
.y22f{bottom:538.342533pt;}
.y9b{bottom:538.369200pt;}
.ycb{bottom:538.395867pt;}
.y48{bottom:538.462533pt;}
.y1c2{bottom:538.582533pt;}
.y6e{bottom:538.595867pt;}
.yfc{bottom:538.609200pt;}
.y203{bottom:543.523808pt;}
.y12c{bottom:544.598800pt;}
.y14{bottom:544.775200pt;}
.y1f8{bottom:546.945637pt;}
.y184{bottom:547.908390pt;}
.y192{bottom:547.908914pt;}
.y125{bottom:548.190764pt;}
.y1f7{bottom:551.094533pt;}
.y287{bottom:551.345333pt;}
.y22e{bottom:554.342533pt;}
.yca{bottom:554.395867pt;}
.y47{bottom:554.462533pt;}
.y1c1{bottom:554.582533pt;}
.y6d{bottom:554.595867pt;}
.yfb{bottom:554.609200pt;}
.y136{bottom:555.162502pt;}
.y13{bottom:560.775200pt;}
.y11b{bottom:561.344933pt;}
.y286{bottom:564.678667pt;}
.y17c{bottom:568.908533pt;}
.y1f0{bottom:570.002949pt;}
.y22d{bottom:570.342533pt;}
.y46{bottom:570.462533pt;}
.y1c0{bottom:570.582533pt;}
.y6c{bottom:570.595867pt;}
.yfa{bottom:570.609200pt;}
.y126{bottom:576.088837pt;}
.y12{bottom:576.775200pt;}
.y285{bottom:578.012000pt;}
.y137{bottom:579.580266pt;}
.y130{bottom:581.993469pt;}
.y11f{bottom:582.872628pt;}
.y17b{bottom:584.332533pt;}
.y24e{bottom:586.102533pt;}
.y45{bottom:586.462533pt;}
.y1bf{bottom:586.582533pt;}
.y6b{bottom:586.595867pt;}
.yf9{bottom:586.609200pt;}
.yc9{bottom:586.622533pt;}
.y1fd{bottom:588.333157pt;}
.y12f{bottom:590.544133pt;}
.y11e{bottom:591.234267pt;}
.y284{bottom:591.345333pt;}
.y11{bottom:592.775200pt;}
.y149{bottom:594.488133pt;}
.y15f{bottom:595.459600pt;}
.y171{bottom:597.493333pt;}
.y17a{bottom:599.756533pt;}
.y19b{bottom:601.139467pt;}
.y18e{bottom:601.801333pt;}
.y22c{bottom:601.982533pt;}
.y44{bottom:602.462533pt;}
.y1be{bottom:602.582533pt;}
.y6a{bottom:602.595867pt;}
.yf8{bottom:602.609200pt;}
.yc8{bottom:602.622533pt;}
.y283{bottom:604.678667pt;}
.y10{bottom:608.775200pt;}
.y1e8{bottom:612.445445pt;}
.y1f4{bottom:614.017765pt;}
.y1f6{bottom:614.616261pt;}
.y179{bottom:615.180533pt;}
.y18d{bottom:617.407573pt;}
.y19a{bottom:617.407680pt;}
.y282{bottom:618.012000pt;}
.y43{bottom:618.462533pt;}
.y1bd{bottom:618.582533pt;}
.y9a{bottom:618.595867pt;}
.yf7{bottom:618.609200pt;}
.yc7{bottom:618.622533pt;}
.y1ee{bottom:618.957893pt;}
.y1f9{bottom:620.966405pt;}
.yf{bottom:624.775200pt;}
.y18c{bottom:628.527733pt;}
.y199{bottom:628.528000pt;}
.y178{bottom:629.629733pt;}
.y281{bottom:631.345333pt;}
.y24d{bottom:634.102533pt;}
.y69{bottom:634.235867pt;}
.y42{bottom:634.462533pt;}
.y1bc{bottom:634.582533pt;}
.y99{bottom:634.595867pt;}
.yf6{bottom:634.609200pt;}
.yc6{bottom:634.622533pt;}
.y1ed{bottom:636.314277pt;}
.y18b{bottom:636.709573pt;}
.y198{bottom:636.709680pt;}
.y1f1{bottom:639.732805pt;}
.ye{bottom:640.775200pt;}
.y280{bottom:644.678667pt;}
.y18f{bottom:647.783067pt;}
.y19d{bottom:647.784284pt;}
.y18a{bottom:647.829733pt;}
.y197{bottom:647.830000pt;}
.y68{bottom:650.102533pt;}
.y41{bottom:650.462533pt;}
.y1bb{bottom:650.582533pt;}
.y98{bottom:650.595867pt;}
.yf5{bottom:650.609200pt;}
.yc5{bottom:650.622533pt;}
.y1ea{bottom:653.934405pt;}
.yd{bottom:656.775200pt;}
.y27f{bottom:658.012000pt;}
.y201{bottom:659.905920pt;}
.y1eb{bottom:660.162821pt;}
.y1e9{bottom:660.203397pt;}
.y40{bottom:666.462533pt;}
.y1ba{bottom:666.582533pt;}
.y97{bottom:666.595867pt;}
.yf4{bottom:666.609200pt;}
.yc4{bottom:666.622533pt;}
.y166{bottom:670.242400pt;}
.y27e{bottom:671.345333pt;}
.yc{bottom:672.775200pt;}
.y1ff{bottom:677.955397pt;}
.y67{bottom:681.982533pt;}
.y3f{bottom:682.462533pt;}
.y1b9{bottom:682.582533pt;}
.y96{bottom:682.595867pt;}
.yf3{bottom:682.609200pt;}
.yc3{bottom:682.622533pt;}
.y27d{bottom:684.678667pt;}
.y1f5{bottom:685.461957pt;}
.y172{bottom:685.877333pt;}
.yb{bottom:688.775200pt;}
.y15e{bottom:693.998267pt;}
.y27c{bottom:698.012000pt;}
.y3e{bottom:698.462533pt;}
.y1b8{bottom:698.582533pt;}
.y95{bottom:698.595867pt;}
.yf2{bottom:698.609200pt;}
.yc2{bottom:698.622533pt;}
.y1ec{bottom:700.049029pt;}
.y16e{bottom:710.304000pt;}
.y27b{bottom:711.345333pt;}
.y3d{bottom:714.462533pt;}
.y1b7{bottom:714.582533pt;}
.y94{bottom:714.595867pt;}
.yf1{bottom:714.609200pt;}
.yc1{bottom:714.622533pt;}
.y1ef{bottom:717.435845pt;}
.y1e7{bottom:719.231333pt;}
.y16d{bottom:723.104000pt;}
.y27a{bottom:724.678667pt;}
.ya{bottom:728.915867pt;}
.y24c{bottom:730.102533pt;}
.y116{bottom:730.235867pt;}
.y3c{bottom:730.462533pt;}
.y1b6{bottom:730.582533pt;}
.y93{bottom:730.595867pt;}
.yc0{bottom:730.622533pt;}
.y16c{bottom:735.904000pt;}
.y279{bottom:738.012000pt;}
.y9{bottom:739.983200pt;}
.ye3{bottom:746.235867pt;}
.yf0{bottom:746.249200pt;}
.y3b{bottom:746.462533pt;}
.y1b5{bottom:746.582533pt;}
.y92{bottom:746.595867pt;}
.ybf{bottom:746.622533pt;}
.y16b{bottom:748.704000pt;}
.y278{bottom:751.345333pt;}
.y16a{bottom:761.504000pt;}
.y3a{bottom:762.462533pt;}
.y1b4{bottom:762.582533pt;}
.y91{bottom:762.595867pt;}
.ybe{bottom:762.622533pt;}
.y277{bottom:764.678667pt;}
.y1fe{bottom:767.445765pt;}
.y8{bottom:768.174800pt;}
.y276{bottom:778.012000pt;}
.y21e{bottom:778.235867pt;}
.y39{bottom:778.462533pt;}
.yef{bottom:778.475867pt;}
.y1b3{bottom:778.582533pt;}
.y90{bottom:778.595867pt;}
.y7{bottom:780.174800pt;}
.y275{bottom:791.345333pt;}
.ybd{bottom:794.262533pt;}
.y38{bottom:794.462533pt;}
.yee{bottom:794.475867pt;}
.y1b2{bottom:794.582533pt;}
.y8f{bottom:794.595867pt;}
.y6{bottom:796.997333pt;}
.y274{bottom:804.678667pt;}
.y37{bottom:810.462533pt;}
.yed{bottom:810.475867pt;}
.y1b1{bottom:810.582533pt;}
.y8e{bottom:810.595867pt;}
.y273{bottom:818.012000pt;}
.y5{bottom:822.527867pt;}
.y36{bottom:826.462533pt;}
.yec{bottom:826.475867pt;}
.ybc{bottom:826.489200pt;}
.y1b0{bottom:826.582533pt;}
.y8d{bottom:826.595867pt;}
.y272{bottom:831.345333pt;}
.y17d{bottom:842.235867pt;}
.y35{bottom:842.462533pt;}
.y2b1{bottom:842.464533pt;}
.yeb{bottom:842.475867pt;}
.ybb{bottom:842.489200pt;}
.y1af{bottom:842.582533pt;}
.y271{bottom:844.678667pt;}
.y270{bottom:858.012000pt;}
.y8c{bottom:858.235867pt;}
.y34{bottom:858.462533pt;}
.y2b0{bottom:858.464533pt;}
.yea{bottom:858.475867pt;}
.yba{bottom:858.489200pt;}
.y1ae{bottom:858.582533pt;}
.y4{bottom:863.580667pt;}
.y26f{bottom:871.345333pt;}
.y33{bottom:874.462533pt;}
.y2af{bottom:874.464533pt;}
.ye9{bottom:874.475867pt;}
.yb9{bottom:874.489200pt;}
.y26e{bottom:884.678667pt;}
.y1ad{bottom:890.222533pt;}
.y32{bottom:890.462533pt;}
.y2ae{bottom:890.464533pt;}
.ye8{bottom:890.475867pt;}
.yb8{bottom:890.489200pt;}
.y3{bottom:895.990267pt;}
.y26d{bottom:898.012000pt;}
.y31{bottom:906.462533pt;}
.ye7{bottom:906.475867pt;}
.yb7{bottom:906.489200pt;}
.y26c{bottom:911.345333pt;}
.y1ac{bottom:922.102533pt;}
.y2ad{bottom:922.104533pt;}
.y30{bottom:922.462533pt;}
.ye6{bottom:922.475867pt;}
.yb6{bottom:922.489200pt;}
.y26b{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y26a{bottom:1006.590133pt;}
.y66{bottom:1006.594400pt;}
.y1e1{bottom:1006.597067pt;}
.y2ab{bottom:1006.598667pt;}
.y1ab{bottom:1006.610133pt;}
.y115{bottom:1006.618800pt;}
.y213{bottom:1006.623600pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h22{height:25.121716pt;}
.h25{height:25.122077pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.h2e{height:28.173375pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.h2b{height:31.062500pt;}
.hf{height:31.083333pt;}
.he{height:31.104167pt;}
.h27{height:31.758000pt;}
.h20{height:32.451899pt;}
.h24{height:32.452366pt;}
.h23{height:34.319746pt;}
.h2f{height:35.523812pt;}
.h2c{height:35.603062pt;}
.h13{height:37.354167pt;}
.h14{height:37.437500pt;}
.h9{height:38.828125pt;}
.ha{height:38.854167pt;}
.h17{height:38.938917pt;}
.h1e{height:40.042167pt;}
.h26{height:40.043667pt;}
.h30{height:41.875613pt;}
.h1c{height:42.200983pt;}
.h1b{height:43.695409pt;}
.h15{height:45.332612pt;}
.hb{height:46.692708pt;}
.h19{height:46.726794pt;}
.hc{height:46.796875pt;}
.h1a{height:46.831037pt;}
.h31{height:48.132708pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h11{height:52.315182pt;}
.h10{height:52.344516pt;}
.h29{height:54.307163pt;}
.h12{height:64.281400pt;}
.h28{height:66.839557pt;}
.h4{height:81.927344pt;}
.h16{height:195.286667pt;}
.h21{height:251.058667pt;}
.h1d{height:353.513333pt;}
.h1f{height:384.876000pt;}
.h2a{height:384.900000pt;}
.h2d{height:455.058667pt;}
.h18{height:473.948000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w6{width:198.877333pt;}
.w5{width:198.922667pt;}
.w2{width:199.980000pt;}
.w4{width:200.078667pt;}
.wa{width:309.920000pt;}
.w9{width:309.921333pt;}
.w7{width:422.505333pt;}
.w8{width:503.918667pt;}
.wb{width:591.800000pt;}
.w3{width:638.740000pt;}
.wc{width:639.073333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4b{left:7.700667pt;}
.x47{left:8.864533pt;}
.x1e{left:11.087733pt;}
.x1b{left:20.027867pt;}
.x44{left:22.776933pt;}
.x39{left:56.728667pt;}
.xa{left:68.031467pt;}
.x57{left:69.923467pt;}
.x4a{left:82.988813pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x17{left:88.821200pt;}
.x83{left:90.708667pt;}
.x2d{left:92.829494pt;}
.x4{left:94.488133pt;}
.xb{left:98.271467pt;}
.x2c{left:100.246000pt;}
.x6b{left:110.398667pt;}
.x3{left:111.491467pt;}
.x29{left:113.144000pt;}
.x7e{left:115.525584pt;}
.x6{left:117.165333pt;}
.x2f{left:119.866400pt;}
.x19{left:127.093333pt;}
.x59{left:133.572667pt;}
.x56{left:139.630133pt;}
.x2a{left:144.505733pt;}
.x10{left:147.542533pt;}
.x1c{left:151.795467pt;}
.x5b{left:152.838160pt;}
.x43{left:154.340000pt;}
.x3b{left:157.358133pt;}
.x16{left:158.527867pt;}
.x28{left:161.346267pt;}
.x1d{left:170.964800pt;}
.x42{left:177.116933pt;}
.x7c{left:185.154000pt;}
.x41{left:186.044933pt;}
.x82{left:187.902533pt;}
.x5{left:189.223467pt;}
.x80{left:192.396816pt;}
.x38{left:197.582667pt;}
.x5e{left:198.839824pt;}
.x14{left:206.542533pt;}
.x37{left:212.140133pt;}
.x45{left:214.183067pt;}
.x73{left:215.594400pt;}
.x7b{left:223.861760pt;}
.x63{left:227.020117pt;}
.x15{left:230.933200pt;}
.x71{left:235.344768pt;}
.x1a{left:239.103467pt;}
.x6d{left:242.222400pt;}
.x70{left:246.168416pt;}
.x18{left:251.479733pt;}
.x3a{left:255.424533pt;}
.x2b{left:257.560533pt;}
.x64{left:258.899968pt;}
.x66{left:263.279445pt;}
.x65{left:281.997995pt;}
.x24{left:284.577333pt;}
.x35{left:289.636133pt;}
.x5c{left:291.918011pt;}
.x75{left:293.358304pt;}
.x5f{left:302.037691pt;}
.x4e{left:312.262778pt;}
.x34{left:316.649067pt;}
.x61{left:324.003685pt;}
.x4d{left:333.450267pt;}
.x4c{left:337.785200pt;}
.x27{left:343.758400pt;}
.x7a{left:345.326016pt;}
.x33{left:350.095335pt;}
.x23{left:352.609333pt;}
.x3c{left:354.940800pt;}
.x3d{left:356.498133pt;}
.x32{left:357.522960pt;}
.x3f{left:358.842400pt;}
.x5a{left:362.435600pt;}
.x31{left:364.939467pt;}
.x21{left:376.637333pt;}
.x2e{left:377.838667pt;}
.x6c{left:380.038133pt;}
.x46{left:387.057733pt;}
.x6f{left:392.941952pt;}
.x5d{left:394.875749pt;}
.x50{left:396.850667pt;}
.x9{left:404.481333pt;}
.xc{left:406.298133pt;}
.x4f{left:411.807559pt;}
.x3e{left:413.170133pt;}
.x25{left:416.366533pt;}
.x51{left:423.789600pt;}
.x11{left:425.191333pt;}
.x7{left:427.085333pt;}
.x1f{left:428.175067pt;}
.x69{left:429.722453pt;}
.x26{left:435.559200pt;}
.xd{left:436.538133pt;}
.x6a{left:447.194624pt;}
.x68{left:453.460821pt;}
.x12{left:455.431333pt;}
.x60{left:470.230203pt;}
.x36{left:488.249467pt;}
.x67{left:493.848064pt;}
.x30{left:497.693333pt;}
.x6e{left:498.835168pt;}
.x74{left:500.965408pt;}
.x22{left:503.498000pt;}
.x78{left:511.373152pt;}
.x52{left:514.575333pt;}
.x20{left:516.094400pt;}
.x55{left:526.792378pt;}
.x72{left:528.912128pt;}
.x77{left:530.372864pt;}
.x58{left:533.942533pt;}
.x7f{left:556.363536pt;}
.x40{left:557.319600pt;}
.x76{left:579.226368pt;}
.x79{left:586.489472pt;}
.xf{left:589.770933pt;}
.x62{left:601.145701pt;}
.x2{left:616.324800pt;}
.x48{left:627.272933pt;}
.x54{left:641.081467pt;}
.x49{left:644.623067pt;}
.xe{left:647.459200pt;}
.x81{left:661.216133pt;}
.x53{left:662.270000pt;}
.x13{left:666.356800pt;}
.x7d{left:684.918448pt;}
}




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