
    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_7708b16320597e9700ce3b0c.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_f316b0131355edf56b54c12c.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_079265b890c89274e135bb6c.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_1c50b9b44669b45bdc3f987b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bc226dc050930e2718f3b7d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.863281;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_18f58f880b8489ae8c96b363.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_e7bbd8de9cc68a4b42f47710.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_c1a8644a7616dbb584c15a9b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e45b555ad728a2c465f1d022.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bba81be165c37d5d1c410fc6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.699707;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_b6ae2edf423de1ef3c519407.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740723;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_f22527813c778e149d8cfea5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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);}
.m3{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);}
.m4{transform:matrix(0.159523,0.192490,-0.192490,0.159523,0,0);-ms-transform:matrix(0.159523,0.192490,-0.192490,0.159523,0,0);-webkit-transform:matrix(0.159523,0.192490,-0.192490,0.159523,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);}
.v2{vertical-align:-16.471800px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:7.175134px;}
.v1{vertical-align:22.655400px;}
.ls68{letter-spacing:-3.552000px;}
.lsa7{letter-spacing:-2.880000px;}
.ls74{letter-spacing:-2.220000px;}
.ls73{letter-spacing:-1.500000px;}
.ls77{letter-spacing:-1.080000px;}
.ls21{letter-spacing:-0.960000px;}
.ls6f{letter-spacing:-0.540000px;}
.ls82{letter-spacing:-0.384000px;}
.ls7c{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.300000px;}
.lsbf{letter-spacing:-0.240000px;}
.ls54{letter-spacing:-0.192000px;}
.ls4e{letter-spacing:-0.180000px;}
.ls1e{letter-spacing:-0.168000px;}
.lsab{letter-spacing:-0.144000px;}
.ls78{letter-spacing:-0.120000px;}
.lsad{letter-spacing:-0.096000px;}
.ls1f{letter-spacing:-0.084000px;}
.ls4d{letter-spacing:-0.060000px;}
.lsac{letter-spacing:-0.048000px;}
.ls20{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004800px;}
.ls2a{letter-spacing:0.060000px;}
.ls5b{letter-spacing:0.061855px;}
.ls81{letter-spacing:0.096000px;}
.ls4a{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.180000px;}
.ls31{letter-spacing:0.240000px;}
.lsb{letter-spacing:0.288000px;}
.ls57{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.336000px;}
.ls79{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.384000px;}
.ls17{letter-spacing:0.420000px;}
.lsa1{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.528000px;}
.ls3c{letter-spacing:0.540000px;}
.ls8d{letter-spacing:0.576000px;}
.lse{letter-spacing:0.600000px;}
.ls8{letter-spacing:0.624000px;}
.ls41{letter-spacing:0.660000px;}
.lsb1{letter-spacing:0.672000px;}
.ls61{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.768000px;}
.ls38{letter-spacing:0.780000px;}
.ls83{letter-spacing:0.816000px;}
.ls35{letter-spacing:0.840000px;}
.ls4{letter-spacing:0.864000px;}
.ls6d{letter-spacing:0.900000px;}
.ls96{letter-spacing:0.912000px;}
.ls60{letter-spacing:0.960000px;}
.ls95{letter-spacing:1.008000px;}
.ls39{letter-spacing:1.020000px;}
.ls9f{letter-spacing:1.056000px;}
.ls16{letter-spacing:1.080000px;}
.ls8e{letter-spacing:1.104000px;}
.ls1b{letter-spacing:1.140000px;}
.ls36{letter-spacing:1.200000px;}
.ls2b{letter-spacing:1.260000px;}
.ls9{letter-spacing:1.296000px;}
.ls3a{letter-spacing:1.320000px;}
.lsa6{letter-spacing:1.344000px;}
.ls5d{letter-spacing:1.380000px;}
.ls90{letter-spacing:1.392000px;}
.ls5f{letter-spacing:1.440000px;}
.lsb4{letter-spacing:1.488000px;}
.ls1d{letter-spacing:1.500000px;}
.ls93{letter-spacing:1.536000px;}
.ls13{letter-spacing:1.560000px;}
.lsb5{letter-spacing:1.584000px;}
.ls26{letter-spacing:1.620000px;}
.ls94{letter-spacing:1.632000px;}
.ls15{letter-spacing:1.680000px;}
.ls5a{letter-spacing:1.740000px;}
.lsa3{letter-spacing:1.776000px;}
.ls23{letter-spacing:1.800000px;}
.ls9e{letter-spacing:1.824000px;}
.ls42{letter-spacing:1.860000px;}
.ls87{letter-spacing:1.872000px;}
.ls3d{letter-spacing:1.920000px;}
.ls29{letter-spacing:1.980000px;}
.ls9a{letter-spacing:2.016000px;}
.ls49{letter-spacing:2.040000px;}
.ls9d{letter-spacing:2.064000px;}
.ls3e{letter-spacing:2.100000px;}
.ls34{letter-spacing:2.160000px;}
.ls14{letter-spacing:2.220000px;}
.ls1{letter-spacing:2.256000px;}
.ls53{letter-spacing:2.280000px;}
.ls2{letter-spacing:2.304000px;}
.ls30{letter-spacing:2.340000px;}
.ls32{letter-spacing:2.400000px;}
.ls24{letter-spacing:2.460000px;}
.lsa8{letter-spacing:2.496000px;}
.ls69{letter-spacing:2.520000px;}
.ls97{letter-spacing:2.544000px;}
.ls18{letter-spacing:2.580000px;}
.lsaf{letter-spacing:2.592000px;}
.ls37{letter-spacing:2.640000px;}
.lsa0{letter-spacing:2.688000px;}
.ls6b{letter-spacing:2.700000px;}
.ls45{letter-spacing:2.760000px;}
.ls98{letter-spacing:2.784000px;}
.ls44{letter-spacing:2.820000px;}
.ls4b{letter-spacing:2.880000px;}
.lsb0{letter-spacing:2.928000px;}
.ls58{letter-spacing:2.940000px;}
.ls43{letter-spacing:3.000000px;}
.ls9c{letter-spacing:3.024000px;}
.ls27{letter-spacing:3.060000px;}
.lsae{letter-spacing:3.072000px;}
.ls12{letter-spacing:3.120000px;}
.ls11{letter-spacing:3.180000px;}
.ls99{letter-spacing:3.216000px;}
.ls2c{letter-spacing:3.240000px;}
.lsa4{letter-spacing:3.264000px;}
.ls84{letter-spacing:3.312000px;}
.ls76{letter-spacing:3.360000px;}
.ls2e{letter-spacing:3.420000px;}
.lsb2{letter-spacing:3.456000px;}
.ls3b{letter-spacing:3.480000px;}
.ls33{letter-spacing:3.540000px;}
.lsa2{letter-spacing:3.552000px;}
.ls10{letter-spacing:3.600000px;}
.ls6c{letter-spacing:3.660000px;}
.ls8b{letter-spacing:3.696000px;}
.ls7f{letter-spacing:3.720000px;}
.ls91{letter-spacing:3.744000px;}
.ls3f{letter-spacing:3.780000px;}
.ls6a{letter-spacing:3.840000px;}
.lsa5{letter-spacing:3.888000px;}
.ls52{letter-spacing:3.900000px;}
.lsb3{letter-spacing:3.936000px;}
.ls2d{letter-spacing:3.960000px;}
.lsba{letter-spacing:4.020000px;}
.ls4c{letter-spacing:4.080000px;}
.ls51{letter-spacing:4.140000px;}
.ls50{letter-spacing:4.200000px;}
.ls88{letter-spacing:4.224000px;}
.ls2f{letter-spacing:4.260000px;}
.ls1c{letter-spacing:4.320000px;}
.ls47{letter-spacing:4.380000px;}
.ls5c{letter-spacing:4.440000px;}
.ls46{letter-spacing:4.500000px;}
.ls8c{letter-spacing:4.512000px;}
.lsb9{letter-spacing:4.560000px;}
.ls89{letter-spacing:4.608000px;}
.lsbe{letter-spacing:4.620000px;}
.ls92{letter-spacing:4.656000px;}
.ls64{letter-spacing:4.680000px;}
.ls65{letter-spacing:4.740000px;}
.ls8f{letter-spacing:4.800000px;}
.ls86{letter-spacing:4.848000px;}
.ls1a{letter-spacing:4.860000px;}
.ls55{letter-spacing:4.920000px;}
.ls9b{letter-spacing:4.944000px;}
.lsa9{letter-spacing:4.992000px;}
.ls8a{letter-spacing:5.040000px;}
.ls7d{letter-spacing:5.220000px;}
.lsd{letter-spacing:5.280000px;}
.ls48{letter-spacing:5.340000px;}
.ls5e{letter-spacing:5.400000px;}
.lsb8{letter-spacing:5.460000px;}
.ls85{letter-spacing:5.520000px;}
.ls80{letter-spacing:5.580000px;}
.ls7e{letter-spacing:5.640000px;}
.ls56{letter-spacing:5.760000px;}
.lsaa{letter-spacing:5.808000px;}
.ls25{letter-spacing:5.820000px;}
.ls7b{letter-spacing:5.880000px;}
.ls59{letter-spacing:6.000000px;}
.ls72{letter-spacing:6.060000px;}
.ls62{letter-spacing:6.120000px;}
.ls7a{letter-spacing:6.360000px;}
.ls28{letter-spacing:6.420000px;}
.lsb7{letter-spacing:6.480000px;}
.ls40{letter-spacing:6.780000px;}
.ls75{letter-spacing:6.900000px;}
.ls63{letter-spacing:7.140000px;}
.ls66{letter-spacing:7.260000px;}
.lsbd{letter-spacing:7.320000px;}
.lsb6{letter-spacing:8.304000px;}
.lsc{letter-spacing:8.400000px;}
.lsbb{letter-spacing:8.640000px;}
.lsbc{letter-spacing:9.720000px;}
.ls4f{letter-spacing:29.836965px;}
.ls67{letter-spacing:335.328000px;}
.ls70{letter-spacing:381.936000px;}
.ls6e{letter-spacing:385.152000px;}
.ls71{letter-spacing:483.552000px;}
.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;}
}
.ws71{word-spacing:-60.000000px;}
.wsbd{word-spacing:-48.000000px;}
.wsab{word-spacing:-23.580000px;}
.ws6e{word-spacing:-22.440000px;}
.ws25{word-spacing:-21.060000px;}
.ws22{word-spacing:-20.460000px;}
.ws21{word-spacing:-20.220000px;}
.ws23{word-spacing:-20.100000px;}
.ws6f{word-spacing:-19.740000px;}
.wsac{word-spacing:-19.260000px;}
.wsc0{word-spacing:-18.384000px;}
.wsc5{word-spacing:-18.288000px;}
.ws9b{word-spacing:-18.060000px;}
.wsc4{word-spacing:-18.000000px;}
.wsc1{word-spacing:-17.856000px;}
.ws5b{word-spacing:-17.640000px;}
.ws9c{word-spacing:-17.520000px;}
.ws26{word-spacing:-17.340000px;}
.wsf4{word-spacing:-17.280000px;}
.ws4a{word-spacing:-17.195579px;}
.wsad{word-spacing:-17.184000px;}
.ws9a{word-spacing:-16.980000px;}
.wsc7{word-spacing:-16.944000px;}
.ws24{word-spacing:-16.740000px;}
.ws70{word-spacing:-16.680000px;}
.wsbc{word-spacing:-16.656000px;}
.wsf3{word-spacing:-16.272000px;}
.wsf7{word-spacing:-16.032000px;}
.wsbe{word-spacing:-15.216000px;}
.wsf2{word-spacing:-14.880000px;}
.wsc3{word-spacing:-14.784000px;}
.wsc2{word-spacing:-14.544000px;}
.ws45{word-spacing:-14.356142px;}
.wsc6{word-spacing:-13.968000px;}
.ws49{word-spacing:-13.728000px;}
.wsf5{word-spacing:-13.680000px;}
.wsf8{word-spacing:-13.488000px;}
.wsbf{word-spacing:-13.344000px;}
.wsf6{word-spacing:-13.200000px;}
.ws41{word-spacing:-13.152000px;}
.ws42{word-spacing:-12.729175px;}
.ws1{word-spacing:-12.384000px;}
.ws0{word-spacing:-11.008800px;}
.wsff{word-spacing:-8.304000px;}
.ws103{word-spacing:-7.320000px;}
.ws6a{word-spacing:-7.260000px;}
.wsd4{word-spacing:-5.808000px;}
.wsb2{word-spacing:-5.640000px;}
.wsca{word-spacing:-5.520000px;}
.ws104{word-spacing:-5.460000px;}
.ws60{word-spacing:-5.400000px;}
.ws102{word-spacing:-5.340000px;}
.ws105{word-spacing:-5.280000px;}
.ws10a{word-spacing:-5.040000px;}
.wscf{word-spacing:-4.992000px;}
.wse1{word-spacing:-4.944000px;}
.ws4c{word-spacing:-4.920000px;}
.ws1e{word-spacing:-4.860000px;}
.wsd3{word-spacing:-4.800000px;}
.ws10f{word-spacing:-4.680000px;}
.wsd7{word-spacing:-4.656000px;}
.ws107{word-spacing:-4.620000px;}
.ws106{word-spacing:-4.560000px;}
.wsd0{word-spacing:-4.512000px;}
.wsb6{word-spacing:-4.500000px;}
.ws69{word-spacing:-4.440000px;}
.ws5c{word-spacing:-4.380000px;}
.ws111{word-spacing:-4.320000px;}
.ws4e{word-spacing:-4.260000px;}
.wsce{word-spacing:-4.224000px;}
.ws46{word-spacing:-4.200000px;}
.ws7f{word-spacing:-4.140000px;}
.ws10b{word-spacing:-4.080000px;}
.ws10c{word-spacing:-4.020000px;}
.ws2b{word-spacing:-3.960000px;}
.wsfe{word-spacing:-3.936000px;}
.wsef{word-spacing:-3.888000px;}
.ws94{word-spacing:-3.840000px;}
.ws110{word-spacing:-3.780000px;}
.wsd6{word-spacing:-3.744000px;}
.ws10d{word-spacing:-3.720000px;}
.ws108{word-spacing:-3.660000px;}
.ws18{word-spacing:-3.600000px;}
.wse9{word-spacing:-3.552000px;}
.ws2e{word-spacing:-3.540000px;}
.wsae{word-spacing:-3.480000px;}
.ws2c{word-spacing:-3.420000px;}
.ws90{word-spacing:-3.360000px;}
.ws32{word-spacing:-3.240000px;}
.wsf1{word-spacing:-3.216000px;}
.ws19{word-spacing:-3.180000px;}
.ws1a{word-spacing:-3.120000px;}
.ws29{word-spacing:-3.060000px;}
.wse2{word-spacing:-3.024000px;}
.ws92{word-spacing:-3.000000px;}
.ws93{word-spacing:-2.940000px;}
.ws61{word-spacing:-2.880000px;}
.ws10e{word-spacing:-2.820000px;}
.wsdb{word-spacing:-2.784000px;}
.wsb4{word-spacing:-2.700000px;}
.wse6{word-spacing:-2.688000px;}
.ws2f{word-spacing:-2.640000px;}
.wsfa{word-spacing:-2.592000px;}
.wsb7{word-spacing:-2.580000px;}
.wsda{word-spacing:-2.544000px;}
.wscd{word-spacing:-2.496000px;}
.ws31{word-spacing:-2.460000px;}
.ws37{word-spacing:-2.400000px;}
.ws2d{word-spacing:-2.340000px;}
.ws5{word-spacing:-2.304000px;}
.ws50{word-spacing:-2.280000px;}
.wsa1{word-spacing:-2.220000px;}
.ws5f{word-spacing:-2.160000px;}
.ws38{word-spacing:-2.100000px;}
.wse3{word-spacing:-2.064000px;}
.wsb1{word-spacing:-2.040000px;}
.wsde{word-spacing:-2.016000px;}
.ws4b{word-spacing:-1.980000px;}
.ws66{word-spacing:-1.920000px;}
.wscb{word-spacing:-1.872000px;}
.ws36{word-spacing:-1.860000px;}
.wse5{word-spacing:-1.824000px;}
.ws27{word-spacing:-1.800000px;}
.wseb{word-spacing:-1.776000px;}
.ws56{word-spacing:-1.740000px;}
.ws39{word-spacing:-1.680000px;}
.wsc8{word-spacing:-1.632000px;}
.ws48{word-spacing:-1.620000px;}
.ws84{word-spacing:-1.560000px;}
.wsd8{word-spacing:-1.536000px;}
.ws20{word-spacing:-1.500000px;}
.ws100{word-spacing:-1.488000px;}
.ws7e{word-spacing:-1.440000px;}
.wsd5{word-spacing:-1.392000px;}
.ws5e{word-spacing:-1.380000px;}
.wsf0{word-spacing:-1.344000px;}
.ws34{word-spacing:-1.320000px;}
.wscc{word-spacing:-1.296000px;}
.ws28{word-spacing:-1.260000px;}
.wsfd{word-spacing:-1.248000px;}
.wsb0{word-spacing:-1.200000px;}
.ws85{word-spacing:-1.140000px;}
.wsd2{word-spacing:-1.104000px;}
.ws1c{word-spacing:-1.080000px;}
.wsea{word-spacing:-1.056000px;}
.wsa7{word-spacing:-1.020000px;}
.ws62{word-spacing:-0.960000px;}
.wsd9{word-spacing:-0.912000px;}
.ws95{word-spacing:-0.900000px;}
.wsfc{word-spacing:-0.864000px;}
.ws57{word-spacing:-0.840000px;}
.wsf9{word-spacing:-0.816000px;}
.ws55{word-spacing:-0.780000px;}
.ws7{word-spacing:-0.768000px;}
.ws63{word-spacing:-0.720000px;}
.wsa3{word-spacing:-0.660000px;}
.wsd{word-spacing:-0.624000px;}
.ws16{word-spacing:-0.600000px;}
.wsd1{word-spacing:-0.576000px;}
.ws33{word-spacing:-0.540000px;}
.ws17{word-spacing:-0.480000px;}
.wse7{word-spacing:-0.432000px;}
.ws3a{word-spacing:-0.420000px;}
.ws9{word-spacing:-0.384000px;}
.ws65{word-spacing:-0.360000px;}
.wse{word-spacing:-0.336000px;}
.ws53{word-spacing:-0.300000px;}
.wsf{word-spacing:-0.288000px;}
.ws54{word-spacing:-0.240000px;}
.ws1d{word-spacing:-0.180000px;}
.wsc{word-spacing:-0.144000px;}
.ws51{word-spacing:-0.120000px;}
.wsbb{word-spacing:-0.096000px;}
.ws5a{word-spacing:-0.061855px;}
.ws30{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.wse4{word-spacing:0.048000px;}
.ws109{word-spacing:0.060000px;}
.ws3{word-spacing:0.084000px;}
.wse8{word-spacing:0.096000px;}
.ws4f{word-spacing:0.120000px;}
.ws101{word-spacing:0.144000px;}
.ws2{word-spacing:0.168000px;}
.ws3c{word-spacing:0.180000px;}
.ws3e{word-spacing:0.240000px;}
.ws9e{word-spacing:0.300000px;}
.wsa8{word-spacing:0.360000px;}
.wsba{word-spacing:0.384000px;}
.ws82{word-spacing:0.540000px;}
.ws9d{word-spacing:0.600000px;}
.wsdf{word-spacing:0.624000px;}
.wsa4{word-spacing:0.780000px;}
.ws11{word-spacing:0.816000px;}
.wsa0{word-spacing:0.840000px;}
.ws52{word-spacing:0.900000px;}
.ws14{word-spacing:0.960000px;}
.wsaf{word-spacing:1.020000px;}
.ws96{word-spacing:1.080000px;}
.ws12{word-spacing:1.104000px;}
.ws80{word-spacing:1.140000px;}
.ws10{word-spacing:1.296000px;}
.ws59{word-spacing:1.380000px;}
.ws91{word-spacing:1.440000px;}
.ws8c{word-spacing:1.500000px;}
.ws5d{word-spacing:1.620000px;}
.ws13{word-spacing:1.680000px;}
.ws8e{word-spacing:1.740000px;}
.ws68{word-spacing:1.800000px;}
.ws8f{word-spacing:1.860000px;}
.ws64{word-spacing:1.920000px;}
.ws98{word-spacing:2.100000px;}
.wsdd{word-spacing:2.112000px;}
.ws3b{word-spacing:2.160000px;}
.ws8d{word-spacing:2.220000px;}
.ws1f{word-spacing:2.640000px;}
.wsb9{word-spacing:2.760000px;}
.wsfb{word-spacing:2.784000px;}
.wsc9{word-spacing:2.880000px;}
.wsee{word-spacing:3.024000px;}
.wsa6{word-spacing:3.120000px;}
.ws58{word-spacing:3.180000px;}
.ws86{word-spacing:3.300000px;}
.wsed{word-spacing:3.360000px;}
.ws97{word-spacing:3.480000px;}
.ws6{word-spacing:3.504000px;}
.ws35{word-spacing:3.540000px;}
.wse0{word-spacing:3.552000px;}
.wsec{word-spacing:3.696000px;}
.wsb{word-spacing:3.888000px;}
.ws3d{word-spacing:4.020000px;}
.wsdc{word-spacing:4.032000px;}
.ws40{word-spacing:4.140000px;}
.wsa9{word-spacing:4.260000px;}
.ws2a{word-spacing:4.320000px;}
.wsa{word-spacing:4.368000px;}
.wsb5{word-spacing:4.380000px;}
.ws8{word-spacing:4.416000px;}
.ws47{word-spacing:4.500000px;}
.ws81{word-spacing:4.620000px;}
.wsaa{word-spacing:4.680000px;}
.wsa2{word-spacing:4.740000px;}
.wsa5{word-spacing:4.800000px;}
.ws67{word-spacing:4.860000px;}
.ws3f{word-spacing:4.980000px;}
.wsb8{word-spacing:5.160000px;}
.wsb3{word-spacing:5.280000px;}
.ws83{word-spacing:5.400000px;}
.ws1b{word-spacing:5.460000px;}
.ws15{word-spacing:5.520000px;}
.ws99{word-spacing:5.580000px;}
.ws9f{word-spacing:6.360000px;}
.ws4d{word-spacing:11.220000px;}
.ws72{word-spacing:233.952000px;}
.ws7a{word-spacing:285.168000px;}
.ws6b{word-spacing:308.640000px;}
.ws6c{word-spacing:317.520000px;}
.ws6d{word-spacing:321.984000px;}
.ws87{word-spacing:339.360000px;}
.ws73{word-spacing:348.144000px;}
.ws89{word-spacing:353.664000px;}
.ws75{word-spacing:357.456000px;}
.ws8b{word-spacing:366.048000px;}
.ws88{word-spacing:366.960000px;}
.ws77{word-spacing:371.808000px;}
.ws74{word-spacing:375.888000px;}
.ws76{word-spacing:460.368000px;}
.ws8a{word-spacing:464.448000px;}
.ws7b{word-spacing:487.056000px;}
.ws78{word-spacing:497.760000px;}
.ws7c{word-spacing:524.448000px;}
.ws43{word-spacing:759.492191px;}
.ws44{word-spacing:794.978201px;}
.ws79{word-spacing:813.648000px;}
.ws7d{word-spacing:880.368000px;}
._f{margin-left:-2898.126000px;}
._18{margin-left:-2874.309000px;}
._14{margin-left:-922.636260px;}
._15{margin-left:-849.786916px;}
._12{margin-left:-839.759256px;}
._16{margin-left:-792.963511px;}
._13{margin-left:-750.975548px;}
._11{margin-left:-53.343486px;}
._10{margin-left:-50.916701px;}
._17{margin-left:-29.836965px;}
._a{margin-left:-7.440000px;}
._d{margin-left:-6.000000px;}
._1{margin-left:-4.884000px;}
._2{margin-left:-3.556800px;}
._3{margin-left:-2.496000px;}
._0{margin-left:-1.008000px;}
._6{width:1.003200px;}
._9{width:2.116800px;}
._8{width:3.259200px;}
._7{width:4.564800px;}
._5{width:5.716800px;}
._4{width:6.912000px;}
._b{width:8.880000px;}
._e{width:9.900000px;}
._c{width:11.040000px;}
._1a{width:12.840000px;}
._1b{width:276.720000px;}
._22{width:293.952000px;}
._1f{width:321.984000px;}
._1e{width:335.328000px;}
._2e{width:340.368000px;}
._26{width:362.976000px;}
._2f{width:367.008000px;}
._28{width:370.800000px;}
._2a{width:371.808000px;}
._2d{width:376.800000px;}
._30{width:380.784000px;}
._27{width:389.664000px;}
._21{width:392.592000px;}
._29{width:402.816000px;}
._25{width:416.160000px;}
._23{width:427.776000px;}
._2c{width:477.792000px;}
._19{width:537.949456px;}
._20{width:548.784000px;}
._2b{width:565.824000px;}
._24{width:588.432000px;}
._1d{width:639.504000px;}
._1c{width:913.824000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:28.800000px;}
.fs2{font-size:39.600000px;}
.fs7{font-size:45.788400px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs8{font-size:51.640800px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:61.854600px;}
.fs1{font-size:66.000000px;}
.fs9{font-size:74.592411px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y156{bottom:82.500300px;}
.y64{bottom:82.913700px;}
.y1ae{bottom:83.363850px;}
.y235{bottom:83.367600px;}
.y17f{bottom:83.382600px;}
.y2b{bottom:83.493900px;}
.y89{bottom:83.775900px;}
.y1d8{bottom:88.654950px;}
.yfe{bottom:90.886200px;}
.y122{bottom:92.821200px;}
.y12d{bottom:93.758400px;}
.y218{bottom:94.938300px;}
.y155{bottom:98.244300px;}
.y63{bottom:98.657700px;}
.y88{bottom:99.519900px;}
.y60{bottom:101.363850px;}
.y234{bottom:101.367600px;}
.y17e{bottom:101.382600px;}
.y1d7{bottom:103.654950px;}
.yfd{bottom:106.282200px;}
.y121{bottom:109.069200px;}
.y217{bottom:109.938300px;}
.y12c{bottom:110.018400px;}
.y62{bottom:114.401700px;}
.y1d6{bottom:118.654950px;}
.y5f{bottom:119.363850px;}
.y233{bottom:119.367600px;}
.y17d{bottom:119.382600px;}
.yfc{bottom:122.110200px;}
.y216{bottom:124.938300px;}
.y120{bottom:125.329200px;}
.y12b{bottom:126.266400px;}
.ya3{bottom:128.376750px;}
.y1d5{bottom:133.654950px;}
.y5e{bottom:137.363850px;}
.y232{bottom:137.367600px;}
.y17c{bottom:137.382600px;}
.yfb{bottom:137.938200px;}
.y215{bottom:139.938300px;}
.y11f{bottom:141.577200px;}
.y12a{bottom:142.514400px;}
.y1c{bottom:146.475900px;}
.y1d4{bottom:148.654950px;}
.yfa{bottom:153.766200px;}
.y69{bottom:153.807300px;}
.y214{bottom:154.938300px;}
.y5d{bottom:155.363850px;}
.y231{bottom:155.367600px;}
.y17b{bottom:155.382600px;}
.y11e{bottom:157.825200px;}
.y129{bottom:158.774400px;}
.y1d3{bottom:163.654950px;}
.yf9{bottom:169.594200px;}
.y213{bottom:169.938300px;}
.yad{bottom:170.932659px;}
.y5c{bottom:173.363850px;}
.y230{bottom:173.367600px;}
.y17a{bottom:173.382600px;}
.y11d{bottom:174.073200px;}
.y128{bottom:175.022400px;}
.y1d2{bottom:178.654950px;}
.y212{bottom:184.938300px;}
.yf8{bottom:185.422200px;}
.yab{bottom:186.891202px;}
.y11c{bottom:190.333200px;}
.y5b{bottom:191.363850px;}
.y22f{bottom:191.367600px;}
.y179{bottom:191.382600px;}
.y1d1{bottom:193.654950px;}
.y27{bottom:198.737700px;}
.y211{bottom:199.938300px;}
.y67{bottom:200.887200px;}
.yf7{bottom:201.250200px;}
.yaa{bottom:205.478509px;}
.y127{bottom:206.534400px;}
.y11b{bottom:206.593200px;}
.y5a{bottom:209.363850px;}
.y22e{bottom:209.367600px;}
.y1ad{bottom:209.382600px;}
.y68{bottom:211.301100px;}
.y210{bottom:214.938300px;}
.y26{bottom:216.737700px;}
.yf6{bottom:217.078200px;}
.y1d0{bottom:227.093850px;}
.y59{bottom:227.363850px;}
.y22d{bottom:227.367600px;}
.y178{bottom:227.382600px;}
.y20f{bottom:229.938300px;}
.yf5{bottom:232.906200px;}
.y25{bottom:234.737700px;}
.y11a{bottom:238.105200px;}
.y126{bottom:241.351800px;}
.y20e{bottom:244.938300px;}
.y58{bottom:245.363850px;}
.y22c{bottom:245.367600px;}
.y1ac{bottom:245.382600px;}
.yf4{bottom:248.734200px;}
.y24{bottom:252.737700px;}
.y20d{bottom:259.938300px;}
.y125{bottom:260.851800px;}
.y57{bottom:263.363850px;}
.y22b{bottom:263.367600px;}
.y1ab{bottom:263.382600px;}
.yf3{bottom:264.562200px;}
.y87{bottom:269.800650px;}
.y23{bottom:270.737700px;}
.y119{bottom:272.933850px;}
.y20c{bottom:274.938300px;}
.yf2{bottom:280.390200px;}
.y1cf{bottom:281.228850px;}
.y56{bottom:281.363850px;}
.y22a{bottom:281.367600px;}
.y1aa{bottom:281.382600px;}
.y177{bottom:281.517600px;}
.y22{bottom:288.737700px;}
.y20b{bottom:289.938300px;}
.y118{bottom:292.433850px;}
.yc4{bottom:296.054250px;}
.yf1{bottom:296.218200px;}
.y1ce{bottom:299.228850px;}
.y55{bottom:299.363850px;}
.y229{bottom:299.367600px;}
.y1a9{bottom:299.382600px;}
.y176{bottom:299.517600px;}
.y20a{bottom:304.938300px;}
.y124{bottom:306.579000px;}
.y21{bottom:306.737700px;}
.yf0{bottom:312.046200px;}
.y1cd{bottom:317.228850px;}
.y54{bottom:317.363850px;}
.y236{bottom:317.367600px;}
.y1a8{bottom:317.382600px;}
.y175{bottom:317.517600px;}
.y209{bottom:319.938300px;}
.y123{bottom:322.323000px;}
.y20{bottom:324.737700px;}
.yef{bottom:327.874200px;}
.yac{bottom:330.996900px;}
.y208{bottom:334.938300px;}
.y1cc{bottom:335.228850px;}
.y53{bottom:335.363850px;}
.y228{bottom:335.367600px;}
.y1a7{bottom:335.382600px;}
.y174{bottom:335.517600px;}
.y1f{bottom:342.737700px;}
.yee{bottom:343.702200px;}
.y207{bottom:349.938300px;}
.y1cb{bottom:353.228850px;}
.y52{bottom:353.363850px;}
.y227{bottom:353.367600px;}
.y117{bottom:353.378850px;}
.y1a6{bottom:353.382600px;}
.y10a{bottom:353.513850px;}
.y173{bottom:353.517600px;}
.y7a{bottom:356.574900px;}
.yaf{bottom:359.331393px;}
.yed{bottom:359.530200px;}
.y1e{bottom:360.737700px;}
.y206{bottom:364.938300px;}
.y79{bottom:369.829800px;}
.y1ca{bottom:371.228850px;}
.y51{bottom:371.363850px;}
.y226{bottom:371.367600px;}
.y116{bottom:371.378850px;}
.y1a5{bottom:371.382600px;}
.y109{bottom:371.513850px;}
.y172{bottom:371.517600px;}
.yec{bottom:375.358200px;}
.yae{bottom:377.918700px;}
.y28{bottom:378.737700px;}
.y205{bottom:379.938300px;}
.y78{bottom:384.115650px;}
.y1c9{bottom:389.228850px;}
.y50{bottom:389.363850px;}
.y225{bottom:389.367600px;}
.y115{bottom:389.378850px;}
.y1a4{bottom:389.382600px;}
.y108{bottom:389.513850px;}
.y171{bottom:389.517600px;}
.y7f{bottom:390.115600px;}
.yeb{bottom:391.186200px;}
.y204{bottom:394.938300px;}
.y1d{bottom:396.737700px;}
.y7e{bottom:396.828904px;}
.y7d{bottom:397.435683px;}
.yea{bottom:407.014200px;}
.y1c8{bottom:407.228850px;}
.y4f{bottom:407.363850px;}
.y224{bottom:407.367600px;}
.y114{bottom:407.378850px;}
.y1a3{bottom:407.382600px;}
.y107{bottom:407.513850px;}
.y170{bottom:407.517600px;}
.y203{bottom:409.938300px;}
.y77{bottom:411.418200px;}
.y76{bottom:411.847048px;}
.y80{bottom:413.702535px;}
.y66{bottom:417.003450px;}
.ye9{bottom:422.842200px;}
.y202{bottom:424.938300px;}
.y1c7{bottom:425.228850px;}
.y4e{bottom:425.363850px;}
.y223{bottom:425.367600px;}
.y113{bottom:425.378850px;}
.y1a2{bottom:425.382600px;}
.y106{bottom:425.513850px;}
.y16f{bottom:425.517600px;}
.y201{bottom:439.938300px;}
.y75{bottom:442.986450px;}
.y1c6{bottom:443.228850px;}
.y4d{bottom:443.363850px;}
.y222{bottom:443.367600px;}
.y112{bottom:443.378850px;}
.y1a1{bottom:443.382600px;}
.y105{bottom:443.513850px;}
.y16e{bottom:443.517600px;}
.ye8{bottom:445.042200px;}
.y7c{bottom:448.263140px;}
.y200{bottom:454.938300px;}
.ye7{bottom:460.870200px;}
.y1c5{bottom:461.228850px;}
.y4c{bottom:461.363850px;}
.y221{bottom:461.367600px;}
.y111{bottom:461.378850px;}
.y1a0{bottom:461.382600px;}
.y104{bottom:461.513850px;}
.y16d{bottom:461.517600px;}
.y74{bottom:463.487250px;}
.y7b{bottom:463.755380px;}
.y1b{bottom:465.555900px;}
.y1ff{bottom:469.938300px;}
.y73{bottom:472.841400px;}
.y71{bottom:474.337241px;}
.ye6{bottom:476.698200px;}
.y1c4{bottom:479.228850px;}
.y4b{bottom:479.363850px;}
.y220{bottom:479.367600px;}
.y110{bottom:479.378850px;}
.y19f{bottom:479.382600px;}
.y103{bottom:479.513850px;}
.y16c{bottom:479.517600px;}
.y1fe{bottom:484.938300px;}
.y6b{bottom:489.579810px;}
.ye5{bottom:492.526200px;}
.y1c3{bottom:497.228850px;}
.y4a{bottom:497.363850px;}
.y21f{bottom:497.367600px;}
.y10f{bottom:497.378850px;}
.y19e{bottom:497.382600px;}
.y102{bottom:497.513850px;}
.y16b{bottom:497.517600px;}
.y1a{bottom:498.411900px;}
.y1fd{bottom:499.938300px;}
.ya9{bottom:503.076453px;}
.y6a{bottom:505.072050px;}
.ye4{bottom:508.354200px;}
.y19{bottom:513.411900px;}
.y1fc{bottom:514.938300px;}
.y1c2{bottom:515.228850px;}
.y49{bottom:515.363850px;}
.y21e{bottom:515.367600px;}
.y10e{bottom:515.378850px;}
.y19d{bottom:515.382600px;}
.y101{bottom:515.513850px;}
.y16a{bottom:515.517600px;}
.yc3{bottom:521.198250px;}
.ya8{bottom:521.663760px;}
.ye3{bottom:524.182200px;}
.y18{bottom:528.411900px;}
.y1fb{bottom:529.938300px;}
.y48{bottom:533.363850px;}
.y21d{bottom:533.367600px;}
.y10d{bottom:533.378850px;}
.y19c{bottom:533.382600px;}
.y100{bottom:533.513850px;}
.y169{bottom:533.517600px;}
.ye2{bottom:540.010200px;}
.ya7{bottom:540.251068px;}
.y17{bottom:543.411900px;}
.y1fa{bottom:544.938300px;}
.y1c1{bottom:551.228850px;}
.y47{bottom:551.363850px;}
.y21c{bottom:551.367600px;}
.y10c{bottom:551.378850px;}
.y19b{bottom:551.382600px;}
.yff{bottom:551.513850px;}
.ye1{bottom:555.838200px;}
.y16{bottom:558.411900px;}
.y1f9{bottom:559.938300px;}
.y70{bottom:566.554800px;}
.y1c0{bottom:569.228850px;}
.y46{bottom:569.363850px;}
.y21b{bottom:569.367600px;}
.yc2{bottom:569.378850px;}
.y19a{bottom:569.382600px;}
.ybb{bottom:569.513850px;}
.y168{bottom:569.517600px;}
.ye0{bottom:571.666200px;}
.y15{bottom:573.411900px;}
.y1f8{bottom:574.938300px;}
.y1bf{bottom:587.228850px;}
.y45{bottom:587.363850px;}
.y21a{bottom:587.367600px;}
.yc1{bottom:587.378850px;}
.y199{bottom:587.382600px;}
.ydf{bottom:587.494200px;}
.yba{bottom:587.513850px;}
.y167{bottom:587.517600px;}
.y14{bottom:588.411900px;}
.y1f7{bottom:589.938300px;}
.ya6{bottom:600.311884px;}
.yde{bottom:603.322200px;}
.y13{bottom:603.411900px;}
.y1f6{bottom:604.938300px;}
.y1be{bottom:605.228850px;}
.y44{bottom:605.363850px;}
.y219{bottom:605.367600px;}
.yc0{bottom:605.378850px;}
.y198{bottom:605.382600px;}
.yb9{bottom:605.513850px;}
.y72{bottom:609.847350px;}
.y12{bottom:618.411900px;}
.ya5{bottom:618.899192px;}
.ydd{bottom:619.150200px;}
.y1f5{bottom:619.938300px;}
.y1bd{bottom:623.228850px;}
.y43{bottom:623.363850px;}
.y166{bottom:623.367600px;}
.ybf{bottom:623.378850px;}
.y197{bottom:623.382600px;}
.yb8{bottom:623.513850px;}
.y11{bottom:633.411900px;}
.y1f4{bottom:634.938300px;}
.ydc{bottom:634.978200px;}
.ya4{bottom:637.486499px;}
.y1bc{bottom:641.228850px;}
.y42{bottom:641.363850px;}
.y165{bottom:641.367600px;}
.ybe{bottom:641.378850px;}
.y196{bottom:641.382600px;}
.yb7{bottom:641.513850px;}
.y6f{bottom:645.123600px;}
.y10{bottom:648.411900px;}
.y1f3{bottom:649.938300px;}
.ydb{bottom:650.806200px;}
.y1bb{bottom:659.228850px;}
.y41{bottom:659.363850px;}
.y14a{bottom:659.364000px;}
.y164{bottom:659.367600px;}
.ybd{bottom:659.378850px;}
.y195{bottom:659.382600px;}
.yb6{bottom:659.513850px;}
.y154{bottom:659.514000px;}
.y6e{bottom:660.173700px;}
.yf{bottom:663.411900px;}
.y1f2{bottom:664.938300px;}
.yda{bottom:666.634200px;}
.y1ba{bottom:677.228850px;}
.y40{bottom:677.363850px;}
.y149{bottom:677.364000px;}
.y163{bottom:677.367600px;}
.ybc{bottom:677.378850px;}
.y194{bottom:677.382600px;}
.yb5{bottom:677.513850px;}
.y153{bottom:677.514000px;}
.ye{bottom:678.411900px;}
.y1f1{bottom:679.938300px;}
.yd9{bottom:682.462200px;}
.yd{bottom:693.411900px;}
.y1f0{bottom:694.938300px;}
.y1b9{bottom:695.228850px;}
.y10b{bottom:695.243850px;}
.y3f{bottom:695.363850px;}
.y148{bottom:695.364000px;}
.y162{bottom:695.367600px;}
.ya2{bottom:695.378850px;}
.y193{bottom:695.382600px;}
.y8e{bottom:695.513850px;}
.y152{bottom:695.514000px;}
.yd8{bottom:698.290200px;}
.yc{bottom:708.411900px;}
.y1ef{bottom:709.938300px;}
.y1b8{bottom:713.228850px;}
.y3e{bottom:713.363850px;}
.y147{bottom:713.364000px;}
.y161{bottom:713.367600px;}
.ya1{bottom:713.378850px;}
.y192{bottom:713.382600px;}
.y8d{bottom:713.513850px;}
.y151{bottom:713.514000px;}
.yd7{bottom:714.118200px;}
.yb{bottom:723.411900px;}
.y1ee{bottom:724.938300px;}
.yd6{bottom:729.946200px;}
.y1b7{bottom:731.228850px;}
.y3d{bottom:731.363850px;}
.y146{bottom:731.364000px;}
.y160{bottom:731.367600px;}
.ya0{bottom:731.378850px;}
.y191{bottom:731.382600px;}
.y8c{bottom:731.513850px;}
.y150{bottom:731.514000px;}
.ya{bottom:738.411900px;}
.y1ed{bottom:739.938300px;}
.yd5{bottom:745.774200px;}
.y1b6{bottom:749.228850px;}
.y3c{bottom:749.363850px;}
.y145{bottom:749.364000px;}
.y15f{bottom:749.367600px;}
.y9f{bottom:749.378850px;}
.y190{bottom:749.382600px;}
.yb4{bottom:749.513850px;}
.y14f{bottom:749.514000px;}
.y9{bottom:753.411900px;}
.y1ec{bottom:754.938300px;}
.yd4{bottom:761.602200px;}
.y1b5{bottom:767.228850px;}
.y3b{bottom:767.363850px;}
.y144{bottom:767.364000px;}
.y15e{bottom:767.367600px;}
.y9e{bottom:767.378850px;}
.y18f{bottom:767.382600px;}
.y8b{bottom:767.513850px;}
.y14e{bottom:767.514000px;}
.y1eb{bottom:769.938300px;}
.yd3{bottom:777.430200px;}
.y6d{bottom:779.124566px;}
.y1ea{bottom:784.938300px;}
.y1b4{bottom:785.228850px;}
.y3a{bottom:785.363850px;}
.y143{bottom:785.364000px;}
.y15d{bottom:785.367600px;}
.y9d{bottom:785.378850px;}
.y18e{bottom:785.382600px;}
.y8a{bottom:785.513850px;}
.y14d{bottom:785.514000px;}
.yd2{bottom:793.258200px;}
.y6c{bottom:793.596900px;}
.y81{bottom:796.986750px;}
.y1e9{bottom:799.938300px;}
.y8{bottom:802.116000px;}
.y1b3{bottom:803.228850px;}
.y39{bottom:803.363850px;}
.y142{bottom:803.364000px;}
.y15c{bottom:803.367600px;}
.y9c{bottom:803.378850px;}
.y18d{bottom:803.382600px;}
.yb3{bottom:803.513850px;}
.yd1{bottom:809.086200px;}
.y1e8{bottom:814.938300px;}
.y1b2{bottom:821.228850px;}
.y38{bottom:821.363850px;}
.y141{bottom:821.364000px;}
.y15b{bottom:821.367600px;}
.y9b{bottom:821.378850px;}
.y18c{bottom:821.382600px;}
.yb2{bottom:821.513850px;}
.y14c{bottom:821.514000px;}
.yd0{bottom:824.914200px;}
.y1e7{bottom:829.938300px;}
.y7{bottom:836.655900px;}
.y1b1{bottom:839.228850px;}
.y37{bottom:839.363850px;}
.y140{bottom:839.364000px;}
.y15a{bottom:839.367600px;}
.y9a{bottom:839.378850px;}
.y18b{bottom:839.382600px;}
.yb1{bottom:839.513850px;}
.y14b{bottom:839.514000px;}
.ycf{bottom:840.742200px;}
.y1e6{bottom:844.938300px;}
.y65{bottom:853.713900px;}
.yce{bottom:856.570200px;}
.y1b0{bottom:857.228850px;}
.y6{bottom:857.273850px;}
.y36{bottom:857.363850px;}
.y13f{bottom:857.364000px;}
.y159{bottom:857.367600px;}
.y99{bottom:857.378850px;}
.y18a{bottom:857.382600px;}
.y1e5{bottom:859.938300px;}
.ycd{bottom:872.398200px;}
.y5{bottom:873.773850px;}
.y1e4{bottom:874.938300px;}
.y35{bottom:875.363850px;}
.y13e{bottom:875.364000px;}
.y158{bottom:875.367600px;}
.y98{bottom:875.378850px;}
.y189{bottom:875.382600px;}
.yb0{bottom:875.513850px;}
.ycc{bottom:888.226200px;}
.y1e3{bottom:889.938300px;}
.y4{bottom:890.273850px;}
.y1af{bottom:893.228850px;}
.y34{bottom:893.363850px;}
.y13d{bottom:893.364000px;}
.y157{bottom:893.367600px;}
.y97{bottom:893.378850px;}
.y188{bottom:893.382600px;}
.ycb{bottom:904.054200px;}
.y1e2{bottom:904.938300px;}
.y3{bottom:905.541300px;}
.y33{bottom:911.363850px;}
.y13c{bottom:911.364000px;}
.y133{bottom:911.367600px;}
.y96{bottom:911.378850px;}
.y187{bottom:911.382600px;}
.y86{bottom:911.498850px;}
.yca{bottom:919.882200px;}
.y1e1{bottom:919.938300px;}
.y32{bottom:929.363850px;}
.y13b{bottom:929.364000px;}
.y132{bottom:929.367600px;}
.y95{bottom:929.378850px;}
.y186{bottom:929.382600px;}
.y85{bottom:929.498850px;}
.y2{bottom:932.930700px;}
.y1e0{bottom:934.938300px;}
.yc9{bottom:935.710200px;}
.y31{bottom:947.363850px;}
.y13a{bottom:947.364000px;}
.y131{bottom:947.367600px;}
.y94{bottom:947.378850px;}
.y185{bottom:947.382600px;}
.y84{bottom:947.498850px;}
.y1df{bottom:949.938300px;}
.yc8{bottom:951.538200px;}
.y1{bottom:959.936700px;}
.y1de{bottom:964.938300px;}
.y30{bottom:965.363850px;}
.y139{bottom:965.364000px;}
.y130{bottom:965.367600px;}
.y93{bottom:965.378850px;}
.y184{bottom:965.382600px;}
.y83{bottom:965.498850px;}
.y1dd{bottom:979.938300px;}
.yc7{bottom:983.050200px;}
.y2f{bottom:983.363850px;}
.y138{bottom:983.364000px;}
.y12f{bottom:983.367600px;}
.y92{bottom:983.378850px;}
.y183{bottom:983.382600px;}
.y1dc{bottom:994.938300px;}
.y2e{bottom:1001.363850px;}
.y137{bottom:1001.364000px;}
.y12e{bottom:1001.367600px;}
.y91{bottom:1001.378850px;}
.y182{bottom:1001.382600px;}
.y82{bottom:1001.498850px;}
.y1db{bottom:1009.938300px;}
.yc6{bottom:1017.867600px;}
.y2d{bottom:1019.363850px;}
.y136{bottom:1019.364000px;}
.y134{bottom:1019.367600px;}
.y90{bottom:1019.378850px;}
.y181{bottom:1019.382600px;}
.y1da{bottom:1024.938300px;}
.y2c{bottom:1037.363850px;}
.y135{bottom:1037.364000px;}
.yc5{bottom:1037.367600px;}
.y8f{bottom:1037.378850px;}
.y180{bottom:1037.382600px;}
.y1d9{bottom:1039.938300px;}
.y2a{bottom:1070.769450px;}
.y61{bottom:1086.066450px;}
.y29{bottom:1086.069450px;}
.h4{height:20.995312px;}
.hb{height:33.335207px;}
.h5{height:34.992188px;}
.hc{height:37.595914px;}
.h6{height:43.031250px;}
.h7{height:43.681641px;}
.h8{height:43.740234px;}
.he{height:45.092245px;}
.ha{height:45.720703px;}
.h3{height:51.523955px;}
.hf{height:52.267379px;}
.h9{height:53.789062px;}
.hd{height:54.305315px;}
.h2{height:61.154297px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:76.535400px;}
.x38{left:78.661350px;}
.x7{left:96.094500px;}
.x1{left:97.795350px;}
.x3c{left:99.921150px;}
.x45{left:106.299150px;}
.xa{left:110.555400px;}
.x10{left:123.267900px;}
.x2{left:125.427600px;}
.x47{left:127.559100px;}
.x5{left:131.816400px;}
.x3{left:161.571600px;}
.x3f{left:198.920400px;}
.x3e{left:201.961350px;}
.x4{left:212.876400px;}
.x3d{left:223.233150px;}
.x2a{left:233.336700px;}
.x37{left:248.208600px;}
.x25{left:254.288636px;}
.x1e{left:259.311600px;}
.x3a{left:261.205350px;}
.x39{left:264.541350px;}
.x24{left:274.596381px;}
.x26{left:283.723892px;}
.x23{left:291.637845px;}
.x27{left:311.437350px;}
.x1f{left:373.852050px;}
.x14{left:385.224150px;}
.x32{left:394.555276px;}
.x15{left:399.709394px;}
.x22{left:412.825892px;}
.x8{left:455.041500px;}
.xb{left:457.085400px;}
.x33{left:462.780900px;}
.x30{left:470.961171px;}
.x35{left:475.293150px;}
.x28{left:478.345350px;}
.x6{left:480.476400px;}
.x2e{left:482.125926px;}
.x46{left:486.819150px;}
.x31{left:488.002113px;}
.xc{left:491.105400px;}
.x2d{left:497.991631px;}
.x36{left:504.906040px;}
.x43{left:508.106400px;}
.x2c{left:509.341950px;}
.x20{left:510.960450px;}
.x29{left:512.365350px;}
.x2f{left:531.485897px;}
.x18{left:544.456050px;}
.x21{left:546.937050px;}
.x19{left:552.529350px;}
.x16{left:558.664200px;}
.x1b{left:563.621250px;}
.x17{left:579.997200px;}
.x1c{left:590.327100px;}
.x41{left:591.940350px;}
.x42{left:596.065350px;}
.x1a{left:603.009000px;}
.x3b{left:612.910350px;}
.x1d{left:626.282007px;}
.x12{left:634.206600px;}
.x13{left:638.518607px;}
.x34{left:696.900373px;}
.xe{left:704.648400px;}
.x11{left:707.142450px;}
.x40{left:717.130200px;}
.xd{left:724.221150px;}
.x44{left:739.336350px;}
.x2b{left:745.480950px;}
.xf{left:790.557600px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:6.377897pt;}
.v1{vertical-align:20.138133pt;}
.ls68{letter-spacing:-3.157333pt;}
.lsa7{letter-spacing:-2.560000pt;}
.ls74{letter-spacing:-1.973333pt;}
.ls73{letter-spacing:-1.333333pt;}
.ls77{letter-spacing:-0.960000pt;}
.ls21{letter-spacing:-0.853333pt;}
.ls6f{letter-spacing:-0.480000pt;}
.ls82{letter-spacing:-0.341333pt;}
.ls7c{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.266667pt;}
.lsbf{letter-spacing:-0.213333pt;}
.ls54{letter-spacing:-0.170667pt;}
.ls4e{letter-spacing:-0.160000pt;}
.ls1e{letter-spacing:-0.149333pt;}
.lsab{letter-spacing:-0.128000pt;}
.ls78{letter-spacing:-0.106667pt;}
.lsad{letter-spacing:-0.085333pt;}
.ls1f{letter-spacing:-0.074667pt;}
.ls4d{letter-spacing:-0.053333pt;}
.lsac{letter-spacing:-0.042667pt;}
.ls20{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004267pt;}
.ls2a{letter-spacing:0.053333pt;}
.ls5b{letter-spacing:0.054982pt;}
.ls81{letter-spacing:0.085333pt;}
.ls4a{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.160000pt;}
.ls31{letter-spacing:0.213333pt;}
.lsb{letter-spacing:0.256000pt;}
.ls57{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.298667pt;}
.ls79{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.341333pt;}
.ls17{letter-spacing:0.373333pt;}
.lsa1{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.469333pt;}
.ls3c{letter-spacing:0.480000pt;}
.ls8d{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.533333pt;}
.ls8{letter-spacing:0.554667pt;}
.ls41{letter-spacing:0.586667pt;}
.lsb1{letter-spacing:0.597333pt;}
.ls61{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.682667pt;}
.ls38{letter-spacing:0.693333pt;}
.ls83{letter-spacing:0.725333pt;}
.ls35{letter-spacing:0.746667pt;}
.ls4{letter-spacing:0.768000pt;}
.ls6d{letter-spacing:0.800000pt;}
.ls96{letter-spacing:0.810667pt;}
.ls60{letter-spacing:0.853333pt;}
.ls95{letter-spacing:0.896000pt;}
.ls39{letter-spacing:0.906667pt;}
.ls9f{letter-spacing:0.938667pt;}
.ls16{letter-spacing:0.960000pt;}
.ls8e{letter-spacing:0.981333pt;}
.ls1b{letter-spacing:1.013333pt;}
.ls36{letter-spacing:1.066667pt;}
.ls2b{letter-spacing:1.120000pt;}
.ls9{letter-spacing:1.152000pt;}
.ls3a{letter-spacing:1.173333pt;}
.lsa6{letter-spacing:1.194667pt;}
.ls5d{letter-spacing:1.226667pt;}
.ls90{letter-spacing:1.237333pt;}
.ls5f{letter-spacing:1.280000pt;}
.lsb4{letter-spacing:1.322667pt;}
.ls1d{letter-spacing:1.333333pt;}
.ls93{letter-spacing:1.365333pt;}
.ls13{letter-spacing:1.386667pt;}
.lsb5{letter-spacing:1.408000pt;}
.ls26{letter-spacing:1.440000pt;}
.ls94{letter-spacing:1.450667pt;}
.ls15{letter-spacing:1.493333pt;}
.ls5a{letter-spacing:1.546667pt;}
.lsa3{letter-spacing:1.578667pt;}
.ls23{letter-spacing:1.600000pt;}
.ls9e{letter-spacing:1.621333pt;}
.ls42{letter-spacing:1.653333pt;}
.ls87{letter-spacing:1.664000pt;}
.ls3d{letter-spacing:1.706667pt;}
.ls29{letter-spacing:1.760000pt;}
.ls9a{letter-spacing:1.792000pt;}
.ls49{letter-spacing:1.813333pt;}
.ls9d{letter-spacing:1.834667pt;}
.ls3e{letter-spacing:1.866667pt;}
.ls34{letter-spacing:1.920000pt;}
.ls14{letter-spacing:1.973333pt;}
.ls1{letter-spacing:2.005333pt;}
.ls53{letter-spacing:2.026667pt;}
.ls2{letter-spacing:2.048000pt;}
.ls30{letter-spacing:2.080000pt;}
.ls32{letter-spacing:2.133333pt;}
.ls24{letter-spacing:2.186667pt;}
.lsa8{letter-spacing:2.218667pt;}
.ls69{letter-spacing:2.240000pt;}
.ls97{letter-spacing:2.261333pt;}
.ls18{letter-spacing:2.293333pt;}
.lsaf{letter-spacing:2.304000pt;}
.ls37{letter-spacing:2.346667pt;}
.lsa0{letter-spacing:2.389333pt;}
.ls6b{letter-spacing:2.400000pt;}
.ls45{letter-spacing:2.453333pt;}
.ls98{letter-spacing:2.474667pt;}
.ls44{letter-spacing:2.506667pt;}
.ls4b{letter-spacing:2.560000pt;}
.lsb0{letter-spacing:2.602667pt;}
.ls58{letter-spacing:2.613333pt;}
.ls43{letter-spacing:2.666667pt;}
.ls9c{letter-spacing:2.688000pt;}
.ls27{letter-spacing:2.720000pt;}
.lsae{letter-spacing:2.730667pt;}
.ls12{letter-spacing:2.773333pt;}
.ls11{letter-spacing:2.826667pt;}
.ls99{letter-spacing:2.858667pt;}
.ls2c{letter-spacing:2.880000pt;}
.lsa4{letter-spacing:2.901333pt;}
.ls84{letter-spacing:2.944000pt;}
.ls76{letter-spacing:2.986667pt;}
.ls2e{letter-spacing:3.040000pt;}
.lsb2{letter-spacing:3.072000pt;}
.ls3b{letter-spacing:3.093333pt;}
.ls33{letter-spacing:3.146667pt;}
.lsa2{letter-spacing:3.157333pt;}
.ls10{letter-spacing:3.200000pt;}
.ls6c{letter-spacing:3.253333pt;}
.ls8b{letter-spacing:3.285333pt;}
.ls7f{letter-spacing:3.306667pt;}
.ls91{letter-spacing:3.328000pt;}
.ls3f{letter-spacing:3.360000pt;}
.ls6a{letter-spacing:3.413333pt;}
.lsa5{letter-spacing:3.456000pt;}
.ls52{letter-spacing:3.466667pt;}
.lsb3{letter-spacing:3.498667pt;}
.ls2d{letter-spacing:3.520000pt;}
.lsba{letter-spacing:3.573333pt;}
.ls4c{letter-spacing:3.626667pt;}
.ls51{letter-spacing:3.680000pt;}
.ls50{letter-spacing:3.733333pt;}
.ls88{letter-spacing:3.754667pt;}
.ls2f{letter-spacing:3.786667pt;}
.ls1c{letter-spacing:3.840000pt;}
.ls47{letter-spacing:3.893333pt;}
.ls5c{letter-spacing:3.946667pt;}
.ls46{letter-spacing:4.000000pt;}
.ls8c{letter-spacing:4.010667pt;}
.lsb9{letter-spacing:4.053333pt;}
.ls89{letter-spacing:4.096000pt;}
.lsbe{letter-spacing:4.106667pt;}
.ls92{letter-spacing:4.138667pt;}
.ls64{letter-spacing:4.160000pt;}
.ls65{letter-spacing:4.213333pt;}
.ls8f{letter-spacing:4.266667pt;}
.ls86{letter-spacing:4.309333pt;}
.ls1a{letter-spacing:4.320000pt;}
.ls55{letter-spacing:4.373333pt;}
.ls9b{letter-spacing:4.394667pt;}
.lsa9{letter-spacing:4.437333pt;}
.ls8a{letter-spacing:4.480000pt;}
.ls7d{letter-spacing:4.640000pt;}
.lsd{letter-spacing:4.693333pt;}
.ls48{letter-spacing:4.746667pt;}
.ls5e{letter-spacing:4.800000pt;}
.lsb8{letter-spacing:4.853333pt;}
.ls85{letter-spacing:4.906667pt;}
.ls80{letter-spacing:4.960000pt;}
.ls7e{letter-spacing:5.013333pt;}
.ls56{letter-spacing:5.120000pt;}
.lsaa{letter-spacing:5.162667pt;}
.ls25{letter-spacing:5.173333pt;}
.ls7b{letter-spacing:5.226667pt;}
.ls59{letter-spacing:5.333333pt;}
.ls72{letter-spacing:5.386667pt;}
.ls62{letter-spacing:5.440000pt;}
.ls7a{letter-spacing:5.653333pt;}
.ls28{letter-spacing:5.706667pt;}
.lsb7{letter-spacing:5.760000pt;}
.ls40{letter-spacing:6.026667pt;}
.ls75{letter-spacing:6.133333pt;}
.ls63{letter-spacing:6.346667pt;}
.ls66{letter-spacing:6.453333pt;}
.lsbd{letter-spacing:6.506667pt;}
.lsb6{letter-spacing:7.381333pt;}
.lsc{letter-spacing:7.466667pt;}
.lsbb{letter-spacing:7.680000pt;}
.lsbc{letter-spacing:8.640000pt;}
.ls4f{letter-spacing:26.521746pt;}
.ls67{letter-spacing:298.069333pt;}
.ls70{letter-spacing:339.498667pt;}
.ls6e{letter-spacing:342.357333pt;}
.ls71{letter-spacing:429.824000pt;}
.ws71{word-spacing:-53.333333pt;}
.wsbd{word-spacing:-42.666667pt;}
.wsab{word-spacing:-20.960000pt;}
.ws6e{word-spacing:-19.946667pt;}
.ws25{word-spacing:-18.720000pt;}
.ws22{word-spacing:-18.186667pt;}
.ws21{word-spacing:-17.973333pt;}
.ws23{word-spacing:-17.866667pt;}
.ws6f{word-spacing:-17.546667pt;}
.wsac{word-spacing:-17.120000pt;}
.wsc0{word-spacing:-16.341333pt;}
.wsc5{word-spacing:-16.256000pt;}
.ws9b{word-spacing:-16.053333pt;}
.wsc4{word-spacing:-16.000000pt;}
.wsc1{word-spacing:-15.872000pt;}
.ws5b{word-spacing:-15.680000pt;}
.ws9c{word-spacing:-15.573333pt;}
.ws26{word-spacing:-15.413333pt;}
.wsf4{word-spacing:-15.360000pt;}
.ws4a{word-spacing:-15.284959pt;}
.wsad{word-spacing:-15.274667pt;}
.ws9a{word-spacing:-15.093333pt;}
.wsc7{word-spacing:-15.061333pt;}
.ws24{word-spacing:-14.880000pt;}
.ws70{word-spacing:-14.826667pt;}
.wsbc{word-spacing:-14.805333pt;}
.wsf3{word-spacing:-14.464000pt;}
.wsf7{word-spacing:-14.250667pt;}
.wsbe{word-spacing:-13.525333pt;}
.wsf2{word-spacing:-13.226667pt;}
.wsc3{word-spacing:-13.141333pt;}
.wsc2{word-spacing:-12.928000pt;}
.ws45{word-spacing:-12.761015pt;}
.wsc6{word-spacing:-12.416000pt;}
.ws49{word-spacing:-12.202667pt;}
.wsf5{word-spacing:-12.160000pt;}
.wsf8{word-spacing:-11.989333pt;}
.wsbf{word-spacing:-11.861333pt;}
.wsf6{word-spacing:-11.733333pt;}
.ws41{word-spacing:-11.690667pt;}
.ws42{word-spacing:-11.314822pt;}
.ws1{word-spacing:-11.008000pt;}
.ws0{word-spacing:-9.785600pt;}
.wsff{word-spacing:-7.381333pt;}
.ws103{word-spacing:-6.506667pt;}
.ws6a{word-spacing:-6.453333pt;}
.wsd4{word-spacing:-5.162667pt;}
.wsb2{word-spacing:-5.013333pt;}
.wsca{word-spacing:-4.906667pt;}
.ws104{word-spacing:-4.853333pt;}
.ws60{word-spacing:-4.800000pt;}
.ws102{word-spacing:-4.746667pt;}
.ws105{word-spacing:-4.693333pt;}
.ws10a{word-spacing:-4.480000pt;}
.wscf{word-spacing:-4.437333pt;}
.wse1{word-spacing:-4.394667pt;}
.ws4c{word-spacing:-4.373333pt;}
.ws1e{word-spacing:-4.320000pt;}
.wsd3{word-spacing:-4.266667pt;}
.ws10f{word-spacing:-4.160000pt;}
.wsd7{word-spacing:-4.138667pt;}
.ws107{word-spacing:-4.106667pt;}
.ws106{word-spacing:-4.053333pt;}
.wsd0{word-spacing:-4.010667pt;}
.wsb6{word-spacing:-4.000000pt;}
.ws69{word-spacing:-3.946667pt;}
.ws5c{word-spacing:-3.893333pt;}
.ws111{word-spacing:-3.840000pt;}
.ws4e{word-spacing:-3.786667pt;}
.wsce{word-spacing:-3.754667pt;}
.ws46{word-spacing:-3.733333pt;}
.ws7f{word-spacing:-3.680000pt;}
.ws10b{word-spacing:-3.626667pt;}
.ws10c{word-spacing:-3.573333pt;}
.ws2b{word-spacing:-3.520000pt;}
.wsfe{word-spacing:-3.498667pt;}
.wsef{word-spacing:-3.456000pt;}
.ws94{word-spacing:-3.413333pt;}
.ws110{word-spacing:-3.360000pt;}
.wsd6{word-spacing:-3.328000pt;}
.ws10d{word-spacing:-3.306667pt;}
.ws108{word-spacing:-3.253333pt;}
.ws18{word-spacing:-3.200000pt;}
.wse9{word-spacing:-3.157333pt;}
.ws2e{word-spacing:-3.146667pt;}
.wsae{word-spacing:-3.093333pt;}
.ws2c{word-spacing:-3.040000pt;}
.ws90{word-spacing:-2.986667pt;}
.ws32{word-spacing:-2.880000pt;}
.wsf1{word-spacing:-2.858667pt;}
.ws19{word-spacing:-2.826667pt;}
.ws1a{word-spacing:-2.773333pt;}
.ws29{word-spacing:-2.720000pt;}
.wse2{word-spacing:-2.688000pt;}
.ws92{word-spacing:-2.666667pt;}
.ws93{word-spacing:-2.613333pt;}
.ws61{word-spacing:-2.560000pt;}
.ws10e{word-spacing:-2.506667pt;}
.wsdb{word-spacing:-2.474667pt;}
.wsb4{word-spacing:-2.400000pt;}
.wse6{word-spacing:-2.389333pt;}
.ws2f{word-spacing:-2.346667pt;}
.wsfa{word-spacing:-2.304000pt;}
.wsb7{word-spacing:-2.293333pt;}
.wsda{word-spacing:-2.261333pt;}
.wscd{word-spacing:-2.218667pt;}
.ws31{word-spacing:-2.186667pt;}
.ws37{word-spacing:-2.133333pt;}
.ws2d{word-spacing:-2.080000pt;}
.ws5{word-spacing:-2.048000pt;}
.ws50{word-spacing:-2.026667pt;}
.wsa1{word-spacing:-1.973333pt;}
.ws5f{word-spacing:-1.920000pt;}
.ws38{word-spacing:-1.866667pt;}
.wse3{word-spacing:-1.834667pt;}
.wsb1{word-spacing:-1.813333pt;}
.wsde{word-spacing:-1.792000pt;}
.ws4b{word-spacing:-1.760000pt;}
.ws66{word-spacing:-1.706667pt;}
.wscb{word-spacing:-1.664000pt;}
.ws36{word-spacing:-1.653333pt;}
.wse5{word-spacing:-1.621333pt;}
.ws27{word-spacing:-1.600000pt;}
.wseb{word-spacing:-1.578667pt;}
.ws56{word-spacing:-1.546667pt;}
.ws39{word-spacing:-1.493333pt;}
.wsc8{word-spacing:-1.450667pt;}
.ws48{word-spacing:-1.440000pt;}
.ws84{word-spacing:-1.386667pt;}
.wsd8{word-spacing:-1.365333pt;}
.ws20{word-spacing:-1.333333pt;}
.ws100{word-spacing:-1.322667pt;}
.ws7e{word-spacing:-1.280000pt;}
.wsd5{word-spacing:-1.237333pt;}
.ws5e{word-spacing:-1.226667pt;}
.wsf0{word-spacing:-1.194667pt;}
.ws34{word-spacing:-1.173333pt;}
.wscc{word-spacing:-1.152000pt;}
.ws28{word-spacing:-1.120000pt;}
.wsfd{word-spacing:-1.109333pt;}
.wsb0{word-spacing:-1.066667pt;}
.ws85{word-spacing:-1.013333pt;}
.wsd2{word-spacing:-0.981333pt;}
.ws1c{word-spacing:-0.960000pt;}
.wsea{word-spacing:-0.938667pt;}
.wsa7{word-spacing:-0.906667pt;}
.ws62{word-spacing:-0.853333pt;}
.wsd9{word-spacing:-0.810667pt;}
.ws95{word-spacing:-0.800000pt;}
.wsfc{word-spacing:-0.768000pt;}
.ws57{word-spacing:-0.746667pt;}
.wsf9{word-spacing:-0.725333pt;}
.ws55{word-spacing:-0.693333pt;}
.ws7{word-spacing:-0.682667pt;}
.ws63{word-spacing:-0.640000pt;}
.wsa3{word-spacing:-0.586667pt;}
.wsd{word-spacing:-0.554667pt;}
.ws16{word-spacing:-0.533333pt;}
.wsd1{word-spacing:-0.512000pt;}
.ws33{word-spacing:-0.480000pt;}
.ws17{word-spacing:-0.426667pt;}
.wse7{word-spacing:-0.384000pt;}
.ws3a{word-spacing:-0.373333pt;}
.ws9{word-spacing:-0.341333pt;}
.ws65{word-spacing:-0.320000pt;}
.wse{word-spacing:-0.298667pt;}
.ws53{word-spacing:-0.266667pt;}
.wsf{word-spacing:-0.256000pt;}
.ws54{word-spacing:-0.213333pt;}
.ws1d{word-spacing:-0.160000pt;}
.wsc{word-spacing:-0.128000pt;}
.ws51{word-spacing:-0.106667pt;}
.wsbb{word-spacing:-0.085333pt;}
.ws5a{word-spacing:-0.054982pt;}
.ws30{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.wse4{word-spacing:0.042667pt;}
.ws109{word-spacing:0.053333pt;}
.ws3{word-spacing:0.074667pt;}
.wse8{word-spacing:0.085333pt;}
.ws4f{word-spacing:0.106667pt;}
.ws101{word-spacing:0.128000pt;}
.ws2{word-spacing:0.149333pt;}
.ws3c{word-spacing:0.160000pt;}
.ws3e{word-spacing:0.213333pt;}
.ws9e{word-spacing:0.266667pt;}
.wsa8{word-spacing:0.320000pt;}
.wsba{word-spacing:0.341333pt;}
.ws82{word-spacing:0.480000pt;}
.ws9d{word-spacing:0.533333pt;}
.wsdf{word-spacing:0.554667pt;}
.wsa4{word-spacing:0.693333pt;}
.ws11{word-spacing:0.725333pt;}
.wsa0{word-spacing:0.746667pt;}
.ws52{word-spacing:0.800000pt;}
.ws14{word-spacing:0.853333pt;}
.wsaf{word-spacing:0.906667pt;}
.ws96{word-spacing:0.960000pt;}
.ws12{word-spacing:0.981333pt;}
.ws80{word-spacing:1.013333pt;}
.ws10{word-spacing:1.152000pt;}
.ws59{word-spacing:1.226667pt;}
.ws91{word-spacing:1.280000pt;}
.ws8c{word-spacing:1.333333pt;}
.ws5d{word-spacing:1.440000pt;}
.ws13{word-spacing:1.493333pt;}
.ws8e{word-spacing:1.546667pt;}
.ws68{word-spacing:1.600000pt;}
.ws8f{word-spacing:1.653333pt;}
.ws64{word-spacing:1.706667pt;}
.ws98{word-spacing:1.866667pt;}
.wsdd{word-spacing:1.877333pt;}
.ws3b{word-spacing:1.920000pt;}
.ws8d{word-spacing:1.973333pt;}
.ws1f{word-spacing:2.346667pt;}
.wsb9{word-spacing:2.453333pt;}
.wsfb{word-spacing:2.474667pt;}
.wsc9{word-spacing:2.560000pt;}
.wsee{word-spacing:2.688000pt;}
.wsa6{word-spacing:2.773333pt;}
.ws58{word-spacing:2.826667pt;}
.ws86{word-spacing:2.933333pt;}
.wsed{word-spacing:2.986667pt;}
.ws97{word-spacing:3.093333pt;}
.ws6{word-spacing:3.114667pt;}
.ws35{word-spacing:3.146667pt;}
.wse0{word-spacing:3.157333pt;}
.wsec{word-spacing:3.285333pt;}
.wsb{word-spacing:3.456000pt;}
.ws3d{word-spacing:3.573333pt;}
.wsdc{word-spacing:3.584000pt;}
.ws40{word-spacing:3.680000pt;}
.wsa9{word-spacing:3.786667pt;}
.ws2a{word-spacing:3.840000pt;}
.wsa{word-spacing:3.882667pt;}
.wsb5{word-spacing:3.893333pt;}
.ws8{word-spacing:3.925333pt;}
.ws47{word-spacing:4.000000pt;}
.ws81{word-spacing:4.106667pt;}
.wsaa{word-spacing:4.160000pt;}
.wsa2{word-spacing:4.213333pt;}
.wsa5{word-spacing:4.266667pt;}
.ws67{word-spacing:4.320000pt;}
.ws3f{word-spacing:4.426667pt;}
.wsb8{word-spacing:4.586667pt;}
.wsb3{word-spacing:4.693333pt;}
.ws83{word-spacing:4.800000pt;}
.ws1b{word-spacing:4.853333pt;}
.ws15{word-spacing:4.906667pt;}
.ws99{word-spacing:4.960000pt;}
.ws9f{word-spacing:5.653333pt;}
.ws4d{word-spacing:9.973333pt;}
.ws72{word-spacing:207.957333pt;}
.ws7a{word-spacing:253.482667pt;}
.ws6b{word-spacing:274.346667pt;}
.ws6c{word-spacing:282.240000pt;}
.ws6d{word-spacing:286.208000pt;}
.ws87{word-spacing:301.653333pt;}
.ws73{word-spacing:309.461333pt;}
.ws89{word-spacing:314.368000pt;}
.ws75{word-spacing:317.738667pt;}
.ws8b{word-spacing:325.376000pt;}
.ws88{word-spacing:326.186667pt;}
.ws77{word-spacing:330.496000pt;}
.ws74{word-spacing:334.122667pt;}
.ws76{word-spacing:409.216000pt;}
.ws8a{word-spacing:412.842667pt;}
.ws7b{word-spacing:432.938667pt;}
.ws78{word-spacing:442.453333pt;}
.ws7c{word-spacing:466.176000pt;}
.ws43{word-spacing:675.104170pt;}
.ws44{word-spacing:706.647290pt;}
.ws79{word-spacing:723.242667pt;}
.ws7d{word-spacing:782.549333pt;}
._f{margin-left:-2576.112000pt;}
._18{margin-left:-2554.941333pt;}
._14{margin-left:-820.121120pt;}
._15{margin-left:-755.366147pt;}
._12{margin-left:-746.452672pt;}
._16{margin-left:-704.856454pt;}
._13{margin-left:-667.533821pt;}
._11{margin-left:-47.416432pt;}
._10{margin-left:-45.259290pt;}
._17{margin-left:-26.521746pt;}
._a{margin-left:-6.613333pt;}
._d{margin-left:-5.333333pt;}
._1{margin-left:-4.341333pt;}
._2{margin-left:-3.161600pt;}
._3{margin-left:-2.218667pt;}
._0{margin-left:-0.896000pt;}
._6{width:0.891733pt;}
._9{width:1.881600pt;}
._8{width:2.897067pt;}
._7{width:4.057600pt;}
._5{width:5.081600pt;}
._4{width:6.144000pt;}
._b{width:7.893333pt;}
._e{width:8.800000pt;}
._c{width:9.813333pt;}
._1a{width:11.413333pt;}
._1b{width:245.973333pt;}
._22{width:261.290667pt;}
._1f{width:286.208000pt;}
._1e{width:298.069333pt;}
._2e{width:302.549333pt;}
._26{width:322.645333pt;}
._2f{width:326.229333pt;}
._28{width:329.600000pt;}
._2a{width:330.496000pt;}
._2d{width:334.933333pt;}
._30{width:338.474667pt;}
._27{width:346.368000pt;}
._21{width:348.970667pt;}
._29{width:358.058667pt;}
._25{width:369.920000pt;}
._23{width:380.245333pt;}
._2c{width:424.704000pt;}
._19{width:478.177294pt;}
._20{width:487.808000pt;}
._2b{width:502.954667pt;}
._24{width:523.050667pt;}
._1d{width:568.448000pt;}
._1c{width:812.288000pt;}
.fs3{font-size:25.600000pt;}
.fs2{font-size:35.200000pt;}
.fs7{font-size:40.700800pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs8{font-size:45.902933pt;}
.fs5{font-size:53.333333pt;}
.fsa{font-size:54.981867pt;}
.fs1{font-size:58.666667pt;}
.fs9{font-size:66.304366pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y156{bottom:73.333600pt;}
.y64{bottom:73.701067pt;}
.y1ae{bottom:74.101200pt;}
.y235{bottom:74.104533pt;}
.y17f{bottom:74.117867pt;}
.y2b{bottom:74.216800pt;}
.y89{bottom:74.467467pt;}
.y1d8{bottom:78.804400pt;}
.yfe{bottom:80.787733pt;}
.y122{bottom:82.507733pt;}
.y12d{bottom:83.340800pt;}
.y218{bottom:84.389600pt;}
.y155{bottom:87.328267pt;}
.y63{bottom:87.695733pt;}
.y88{bottom:88.462133pt;}
.y60{bottom:90.101200pt;}
.y234{bottom:90.104533pt;}
.y17e{bottom:90.117867pt;}
.y1d7{bottom:92.137733pt;}
.yfd{bottom:94.473067pt;}
.y121{bottom:96.950400pt;}
.y217{bottom:97.722933pt;}
.y12c{bottom:97.794133pt;}
.y62{bottom:101.690400pt;}
.y1d6{bottom:105.471067pt;}
.y5f{bottom:106.101200pt;}
.y233{bottom:106.104533pt;}
.y17d{bottom:106.117867pt;}
.yfc{bottom:108.542400pt;}
.y216{bottom:111.056267pt;}
.y120{bottom:111.403733pt;}
.y12b{bottom:112.236800pt;}
.ya3{bottom:114.112667pt;}
.y1d5{bottom:118.804400pt;}
.y5e{bottom:122.101200pt;}
.y232{bottom:122.104533pt;}
.y17c{bottom:122.117867pt;}
.yfb{bottom:122.611733pt;}
.y215{bottom:124.389600pt;}
.y11f{bottom:125.846400pt;}
.y12a{bottom:126.679467pt;}
.y1c{bottom:130.200800pt;}
.y1d4{bottom:132.137733pt;}
.yfa{bottom:136.681067pt;}
.y69{bottom:136.717600pt;}
.y214{bottom:137.722933pt;}
.y5d{bottom:138.101200pt;}
.y231{bottom:138.104533pt;}
.y17b{bottom:138.117867pt;}
.y11e{bottom:140.289067pt;}
.y129{bottom:141.132800pt;}
.y1d3{bottom:145.471067pt;}
.yf9{bottom:150.750400pt;}
.y213{bottom:151.056267pt;}
.yad{bottom:151.940141pt;}
.y5c{bottom:154.101200pt;}
.y230{bottom:154.104533pt;}
.y17a{bottom:154.117867pt;}
.y11d{bottom:154.731733pt;}
.y128{bottom:155.575467pt;}
.y1d2{bottom:158.804400pt;}
.y212{bottom:164.389600pt;}
.yf8{bottom:164.819733pt;}
.yab{bottom:166.125513pt;}
.y11c{bottom:169.185067pt;}
.y5b{bottom:170.101200pt;}
.y22f{bottom:170.104533pt;}
.y179{bottom:170.117867pt;}
.y1d1{bottom:172.137733pt;}
.y27{bottom:176.655733pt;}
.y211{bottom:177.722933pt;}
.y67{bottom:178.566400pt;}
.yf7{bottom:178.889067pt;}
.yaa{bottom:182.647563pt;}
.y127{bottom:183.586133pt;}
.y11b{bottom:183.638400pt;}
.y5a{bottom:186.101200pt;}
.y22e{bottom:186.104533pt;}
.y1ad{bottom:186.117867pt;}
.y68{bottom:187.823200pt;}
.y210{bottom:191.056267pt;}
.y26{bottom:192.655733pt;}
.yf6{bottom:192.958400pt;}
.y1d0{bottom:201.861200pt;}
.y59{bottom:202.101200pt;}
.y22d{bottom:202.104533pt;}
.y178{bottom:202.117867pt;}
.y20f{bottom:204.389600pt;}
.yf5{bottom:207.027733pt;}
.y25{bottom:208.655733pt;}
.y11a{bottom:211.649067pt;}
.y126{bottom:214.534933pt;}
.y20e{bottom:217.722933pt;}
.y58{bottom:218.101200pt;}
.y22c{bottom:218.104533pt;}
.y1ac{bottom:218.117867pt;}
.yf4{bottom:221.097067pt;}
.y24{bottom:224.655733pt;}
.y20d{bottom:231.056267pt;}
.y125{bottom:231.868267pt;}
.y57{bottom:234.101200pt;}
.y22b{bottom:234.104533pt;}
.y1ab{bottom:234.117867pt;}
.yf3{bottom:235.166400pt;}
.y87{bottom:239.822800pt;}
.y23{bottom:240.655733pt;}
.y119{bottom:242.607867pt;}
.y20c{bottom:244.389600pt;}
.yf2{bottom:249.235733pt;}
.y1cf{bottom:249.981200pt;}
.y56{bottom:250.101200pt;}
.y22a{bottom:250.104533pt;}
.y1aa{bottom:250.117867pt;}
.y177{bottom:250.237867pt;}
.y22{bottom:256.655733pt;}
.y20b{bottom:257.722933pt;}
.y118{bottom:259.941200pt;}
.yc4{bottom:263.159333pt;}
.yf1{bottom:263.305067pt;}
.y1ce{bottom:265.981200pt;}
.y55{bottom:266.101200pt;}
.y229{bottom:266.104533pt;}
.y1a9{bottom:266.117867pt;}
.y176{bottom:266.237867pt;}
.y20a{bottom:271.056267pt;}
.y124{bottom:272.514667pt;}
.y21{bottom:272.655733pt;}
.yf0{bottom:277.374400pt;}
.y1cd{bottom:281.981200pt;}
.y54{bottom:282.101200pt;}
.y236{bottom:282.104533pt;}
.y1a8{bottom:282.117867pt;}
.y175{bottom:282.237867pt;}
.y209{bottom:284.389600pt;}
.y123{bottom:286.509333pt;}
.y20{bottom:288.655733pt;}
.yef{bottom:291.443733pt;}
.yac{bottom:294.219467pt;}
.y208{bottom:297.722933pt;}
.y1cc{bottom:297.981200pt;}
.y53{bottom:298.101200pt;}
.y228{bottom:298.104533pt;}
.y1a7{bottom:298.117867pt;}
.y174{bottom:298.237867pt;}
.y1f{bottom:304.655733pt;}
.yee{bottom:305.513067pt;}
.y207{bottom:311.056267pt;}
.y1cb{bottom:313.981200pt;}
.y52{bottom:314.101200pt;}
.y227{bottom:314.104533pt;}
.y117{bottom:314.114533pt;}
.y1a6{bottom:314.117867pt;}
.y10a{bottom:314.234533pt;}
.y173{bottom:314.237867pt;}
.y7a{bottom:316.955467pt;}
.yaf{bottom:319.405682pt;}
.yed{bottom:319.582400pt;}
.y1e{bottom:320.655733pt;}
.y206{bottom:324.389600pt;}
.y79{bottom:328.737600pt;}
.y1ca{bottom:329.981200pt;}
.y51{bottom:330.101200pt;}
.y226{bottom:330.104533pt;}
.y116{bottom:330.114533pt;}
.y1a5{bottom:330.117867pt;}
.y109{bottom:330.234533pt;}
.y172{bottom:330.237867pt;}
.yec{bottom:333.651733pt;}
.yae{bottom:335.927733pt;}
.y28{bottom:336.655733pt;}
.y205{bottom:337.722933pt;}
.y78{bottom:341.436133pt;}
.y1c9{bottom:345.981200pt;}
.y50{bottom:346.101200pt;}
.y225{bottom:346.104533pt;}
.y115{bottom:346.114533pt;}
.y1a4{bottom:346.117867pt;}
.y108{bottom:346.234533pt;}
.y171{bottom:346.237867pt;}
.y7f{bottom:346.769422pt;}
.yeb{bottom:347.721067pt;}
.y204{bottom:351.056267pt;}
.y1d{bottom:352.655733pt;}
.y7e{bottom:352.736803pt;}
.y7d{bottom:353.276163pt;}
.yea{bottom:361.790400pt;}
.y1c8{bottom:361.981200pt;}
.y4f{bottom:362.101200pt;}
.y224{bottom:362.104533pt;}
.y114{bottom:362.114533pt;}
.y1a3{bottom:362.117867pt;}
.y107{bottom:362.234533pt;}
.y170{bottom:362.237867pt;}
.y203{bottom:364.389600pt;}
.y77{bottom:365.705067pt;}
.y76{bottom:366.086265pt;}
.y80{bottom:367.735587pt;}
.y66{bottom:370.669733pt;}
.ye9{bottom:375.859733pt;}
.y202{bottom:377.722933pt;}
.y1c7{bottom:377.981200pt;}
.y4e{bottom:378.101200pt;}
.y223{bottom:378.104533pt;}
.y113{bottom:378.114533pt;}
.y1a2{bottom:378.117867pt;}
.y106{bottom:378.234533pt;}
.y16f{bottom:378.237867pt;}
.y201{bottom:391.056267pt;}
.y75{bottom:393.765733pt;}
.y1c6{bottom:393.981200pt;}
.y4d{bottom:394.101200pt;}
.y222{bottom:394.104533pt;}
.y112{bottom:394.114533pt;}
.y1a1{bottom:394.117867pt;}
.y105{bottom:394.234533pt;}
.y16e{bottom:394.237867pt;}
.ye8{bottom:395.593067pt;}
.y7c{bottom:398.456125pt;}
.y200{bottom:404.389600pt;}
.ye7{bottom:409.662400pt;}
.y1c5{bottom:409.981200pt;}
.y4c{bottom:410.101200pt;}
.y221{bottom:410.104533pt;}
.y111{bottom:410.114533pt;}
.y1a0{bottom:410.117867pt;}
.y104{bottom:410.234533pt;}
.y16d{bottom:410.237867pt;}
.y74{bottom:411.988667pt;}
.y7b{bottom:412.227005pt;}
.y1b{bottom:413.827467pt;}
.y1ff{bottom:417.722933pt;}
.y73{bottom:420.303467pt;}
.y71{bottom:421.633103pt;}
.ye6{bottom:423.731733pt;}
.y1c4{bottom:425.981200pt;}
.y4b{bottom:426.101200pt;}
.y220{bottom:426.104533pt;}
.y110{bottom:426.114533pt;}
.y19f{bottom:426.117867pt;}
.y103{bottom:426.234533pt;}
.y16c{bottom:426.237867pt;}
.y1fe{bottom:431.056267pt;}
.y6b{bottom:435.182053pt;}
.ye5{bottom:437.801067pt;}
.y1c3{bottom:441.981200pt;}
.y4a{bottom:442.101200pt;}
.y21f{bottom:442.104533pt;}
.y10f{bottom:442.114533pt;}
.y19e{bottom:442.117867pt;}
.y102{bottom:442.234533pt;}
.y16b{bottom:442.237867pt;}
.y1a{bottom:443.032800pt;}
.y1fd{bottom:444.389600pt;}
.ya9{bottom:447.179069pt;}
.y6a{bottom:448.952933pt;}
.ye4{bottom:451.870400pt;}
.y19{bottom:456.366133pt;}
.y1fc{bottom:457.722933pt;}
.y1c2{bottom:457.981200pt;}
.y49{bottom:458.101200pt;}
.y21e{bottom:458.104533pt;}
.y10e{bottom:458.114533pt;}
.y19d{bottom:458.117867pt;}
.y101{bottom:458.234533pt;}
.y16a{bottom:458.237867pt;}
.yc3{bottom:463.287333pt;}
.ya8{bottom:463.701120pt;}
.ye3{bottom:465.939733pt;}
.y18{bottom:469.699467pt;}
.y1fb{bottom:471.056267pt;}
.y48{bottom:474.101200pt;}
.y21d{bottom:474.104533pt;}
.y10d{bottom:474.114533pt;}
.y19c{bottom:474.117867pt;}
.y100{bottom:474.234533pt;}
.y169{bottom:474.237867pt;}
.ye2{bottom:480.009067pt;}
.ya7{bottom:480.223171pt;}
.y17{bottom:483.032800pt;}
.y1fa{bottom:484.389600pt;}
.y1c1{bottom:489.981200pt;}
.y47{bottom:490.101200pt;}
.y21c{bottom:490.104533pt;}
.y10c{bottom:490.114533pt;}
.y19b{bottom:490.117867pt;}
.yff{bottom:490.234533pt;}
.ye1{bottom:494.078400pt;}
.y16{bottom:496.366133pt;}
.y1f9{bottom:497.722933pt;}
.y70{bottom:503.604267pt;}
.y1c0{bottom:505.981200pt;}
.y46{bottom:506.101200pt;}
.y21b{bottom:506.104533pt;}
.yc2{bottom:506.114533pt;}
.y19a{bottom:506.117867pt;}
.ybb{bottom:506.234533pt;}
.y168{bottom:506.237867pt;}
.ye0{bottom:508.147733pt;}
.y15{bottom:509.699467pt;}
.y1f8{bottom:511.056267pt;}
.y1bf{bottom:521.981200pt;}
.y45{bottom:522.101200pt;}
.y21a{bottom:522.104533pt;}
.yc1{bottom:522.114533pt;}
.y199{bottom:522.117867pt;}
.ydf{bottom:522.217067pt;}
.yba{bottom:522.234533pt;}
.y167{bottom:522.237867pt;}
.y14{bottom:523.032800pt;}
.y1f7{bottom:524.389600pt;}
.ya6{bottom:533.610564pt;}
.yde{bottom:536.286400pt;}
.y13{bottom:536.366133pt;}
.y1f6{bottom:537.722933pt;}
.y1be{bottom:537.981200pt;}
.y44{bottom:538.101200pt;}
.y219{bottom:538.104533pt;}
.yc0{bottom:538.114533pt;}
.y198{bottom:538.117867pt;}
.yb9{bottom:538.234533pt;}
.y72{bottom:542.086533pt;}
.y12{bottom:549.699467pt;}
.ya5{bottom:550.132615pt;}
.ydd{bottom:550.355733pt;}
.y1f5{bottom:551.056267pt;}
.y1bd{bottom:553.981200pt;}
.y43{bottom:554.101200pt;}
.y166{bottom:554.104533pt;}
.ybf{bottom:554.114533pt;}
.y197{bottom:554.117867pt;}
.yb8{bottom:554.234533pt;}
.y11{bottom:563.032800pt;}
.y1f4{bottom:564.389600pt;}
.ydc{bottom:564.425067pt;}
.ya4{bottom:566.654666pt;}
.y1bc{bottom:569.981200pt;}
.y42{bottom:570.101200pt;}
.y165{bottom:570.104533pt;}
.ybe{bottom:570.114533pt;}
.y196{bottom:570.117867pt;}
.yb7{bottom:570.234533pt;}
.y6f{bottom:573.443200pt;}
.y10{bottom:576.366133pt;}
.y1f3{bottom:577.722933pt;}
.ydb{bottom:578.494400pt;}
.y1bb{bottom:585.981200pt;}
.y41{bottom:586.101200pt;}
.y14a{bottom:586.101333pt;}
.y164{bottom:586.104533pt;}
.ybd{bottom:586.114533pt;}
.y195{bottom:586.117867pt;}
.yb6{bottom:586.234533pt;}
.y154{bottom:586.234667pt;}
.y6e{bottom:586.821067pt;}
.yf{bottom:589.699467pt;}
.y1f2{bottom:591.056267pt;}
.yda{bottom:592.563733pt;}
.y1ba{bottom:601.981200pt;}
.y40{bottom:602.101200pt;}
.y149{bottom:602.101333pt;}
.y163{bottom:602.104533pt;}
.ybc{bottom:602.114533pt;}
.y194{bottom:602.117867pt;}
.yb5{bottom:602.234533pt;}
.y153{bottom:602.234667pt;}
.ye{bottom:603.032800pt;}
.y1f1{bottom:604.389600pt;}
.yd9{bottom:606.633067pt;}
.yd{bottom:616.366133pt;}
.y1f0{bottom:617.722933pt;}
.y1b9{bottom:617.981200pt;}
.y10b{bottom:617.994533pt;}
.y3f{bottom:618.101200pt;}
.y148{bottom:618.101333pt;}
.y162{bottom:618.104533pt;}
.ya2{bottom:618.114533pt;}
.y193{bottom:618.117867pt;}
.y8e{bottom:618.234533pt;}
.y152{bottom:618.234667pt;}
.yd8{bottom:620.702400pt;}
.yc{bottom:629.699467pt;}
.y1ef{bottom:631.056267pt;}
.y1b8{bottom:633.981200pt;}
.y3e{bottom:634.101200pt;}
.y147{bottom:634.101333pt;}
.y161{bottom:634.104533pt;}
.ya1{bottom:634.114533pt;}
.y192{bottom:634.117867pt;}
.y8d{bottom:634.234533pt;}
.y151{bottom:634.234667pt;}
.yd7{bottom:634.771733pt;}
.yb{bottom:643.032800pt;}
.y1ee{bottom:644.389600pt;}
.yd6{bottom:648.841067pt;}
.y1b7{bottom:649.981200pt;}
.y3d{bottom:650.101200pt;}
.y146{bottom:650.101333pt;}
.y160{bottom:650.104533pt;}
.ya0{bottom:650.114533pt;}
.y191{bottom:650.117867pt;}
.y8c{bottom:650.234533pt;}
.y150{bottom:650.234667pt;}
.ya{bottom:656.366133pt;}
.y1ed{bottom:657.722933pt;}
.yd5{bottom:662.910400pt;}
.y1b6{bottom:665.981200pt;}
.y3c{bottom:666.101200pt;}
.y145{bottom:666.101333pt;}
.y15f{bottom:666.104533pt;}
.y9f{bottom:666.114533pt;}
.y190{bottom:666.117867pt;}
.yb4{bottom:666.234533pt;}
.y14f{bottom:666.234667pt;}
.y9{bottom:669.699467pt;}
.y1ec{bottom:671.056267pt;}
.yd4{bottom:676.979733pt;}
.y1b5{bottom:681.981200pt;}
.y3b{bottom:682.101200pt;}
.y144{bottom:682.101333pt;}
.y15e{bottom:682.104533pt;}
.y9e{bottom:682.114533pt;}
.y18f{bottom:682.117867pt;}
.y8b{bottom:682.234533pt;}
.y14e{bottom:682.234667pt;}
.y1eb{bottom:684.389600pt;}
.yd3{bottom:691.049067pt;}
.y6d{bottom:692.555170pt;}
.y1ea{bottom:697.722933pt;}
.y1b4{bottom:697.981200pt;}
.y3a{bottom:698.101200pt;}
.y143{bottom:698.101333pt;}
.y15d{bottom:698.104533pt;}
.y9d{bottom:698.114533pt;}
.y18e{bottom:698.117867pt;}
.y8a{bottom:698.234533pt;}
.y14d{bottom:698.234667pt;}
.yd2{bottom:705.118400pt;}
.y6c{bottom:705.419467pt;}
.y81{bottom:708.432667pt;}
.y1e9{bottom:711.056267pt;}
.y8{bottom:712.992000pt;}
.y1b3{bottom:713.981200pt;}
.y39{bottom:714.101200pt;}
.y142{bottom:714.101333pt;}
.y15c{bottom:714.104533pt;}
.y9c{bottom:714.114533pt;}
.y18d{bottom:714.117867pt;}
.yb3{bottom:714.234533pt;}
.yd1{bottom:719.187733pt;}
.y1e8{bottom:724.389600pt;}
.y1b2{bottom:729.981200pt;}
.y38{bottom:730.101200pt;}
.y141{bottom:730.101333pt;}
.y15b{bottom:730.104533pt;}
.y9b{bottom:730.114533pt;}
.y18c{bottom:730.117867pt;}
.yb2{bottom:730.234533pt;}
.y14c{bottom:730.234667pt;}
.yd0{bottom:733.257067pt;}
.y1e7{bottom:737.722933pt;}
.y7{bottom:743.694133pt;}
.y1b1{bottom:745.981200pt;}
.y37{bottom:746.101200pt;}
.y140{bottom:746.101333pt;}
.y15a{bottom:746.104533pt;}
.y9a{bottom:746.114533pt;}
.y18b{bottom:746.117867pt;}
.yb1{bottom:746.234533pt;}
.y14b{bottom:746.234667pt;}
.ycf{bottom:747.326400pt;}
.y1e6{bottom:751.056267pt;}
.y65{bottom:758.856800pt;}
.yce{bottom:761.395733pt;}
.y1b0{bottom:761.981200pt;}
.y6{bottom:762.021200pt;}
.y36{bottom:762.101200pt;}
.y13f{bottom:762.101333pt;}
.y159{bottom:762.104533pt;}
.y99{bottom:762.114533pt;}
.y18a{bottom:762.117867pt;}
.y1e5{bottom:764.389600pt;}
.ycd{bottom:775.465067pt;}
.y5{bottom:776.687867pt;}
.y1e4{bottom:777.722933pt;}
.y35{bottom:778.101200pt;}
.y13e{bottom:778.101333pt;}
.y158{bottom:778.104533pt;}
.y98{bottom:778.114533pt;}
.y189{bottom:778.117867pt;}
.yb0{bottom:778.234533pt;}
.ycc{bottom:789.534400pt;}
.y1e3{bottom:791.056267pt;}
.y4{bottom:791.354533pt;}
.y1af{bottom:793.981200pt;}
.y34{bottom:794.101200pt;}
.y13d{bottom:794.101333pt;}
.y157{bottom:794.104533pt;}
.y97{bottom:794.114533pt;}
.y188{bottom:794.117867pt;}
.ycb{bottom:803.603733pt;}
.y1e2{bottom:804.389600pt;}
.y3{bottom:804.925600pt;}
.y33{bottom:810.101200pt;}
.y13c{bottom:810.101333pt;}
.y133{bottom:810.104533pt;}
.y96{bottom:810.114533pt;}
.y187{bottom:810.117867pt;}
.y86{bottom:810.221200pt;}
.yca{bottom:817.673067pt;}
.y1e1{bottom:817.722933pt;}
.y32{bottom:826.101200pt;}
.y13b{bottom:826.101333pt;}
.y132{bottom:826.104533pt;}
.y95{bottom:826.114533pt;}
.y186{bottom:826.117867pt;}
.y85{bottom:826.221200pt;}
.y2{bottom:829.271733pt;}
.y1e0{bottom:831.056267pt;}
.yc9{bottom:831.742400pt;}
.y31{bottom:842.101200pt;}
.y13a{bottom:842.101333pt;}
.y131{bottom:842.104533pt;}
.y94{bottom:842.114533pt;}
.y185{bottom:842.117867pt;}
.y84{bottom:842.221200pt;}
.y1df{bottom:844.389600pt;}
.yc8{bottom:845.811733pt;}
.y1{bottom:853.277067pt;}
.y1de{bottom:857.722933pt;}
.y30{bottom:858.101200pt;}
.y139{bottom:858.101333pt;}
.y130{bottom:858.104533pt;}
.y93{bottom:858.114533pt;}
.y184{bottom:858.117867pt;}
.y83{bottom:858.221200pt;}
.y1dd{bottom:871.056267pt;}
.yc7{bottom:873.822400pt;}
.y2f{bottom:874.101200pt;}
.y138{bottom:874.101333pt;}
.y12f{bottom:874.104533pt;}
.y92{bottom:874.114533pt;}
.y183{bottom:874.117867pt;}
.y1dc{bottom:884.389600pt;}
.y2e{bottom:890.101200pt;}
.y137{bottom:890.101333pt;}
.y12e{bottom:890.104533pt;}
.y91{bottom:890.114533pt;}
.y182{bottom:890.117867pt;}
.y82{bottom:890.221200pt;}
.y1db{bottom:897.722933pt;}
.yc6{bottom:904.771200pt;}
.y2d{bottom:906.101200pt;}
.y136{bottom:906.101333pt;}
.y134{bottom:906.104533pt;}
.y90{bottom:906.114533pt;}
.y181{bottom:906.117867pt;}
.y1da{bottom:911.056267pt;}
.y2c{bottom:922.101200pt;}
.y135{bottom:922.101333pt;}
.yc5{bottom:922.104533pt;}
.y8f{bottom:922.114533pt;}
.y180{bottom:922.117867pt;}
.y1d9{bottom:924.389600pt;}
.y2a{bottom:951.795067pt;}
.y61{bottom:965.392400pt;}
.y29{bottom:965.395067pt;}
.h4{height:18.662500pt;}
.hb{height:29.631295pt;}
.h5{height:31.104167pt;}
.hc{height:33.418591pt;}
.h6{height:38.250000pt;}
.h7{height:38.828125pt;}
.h8{height:38.880208pt;}
.he{height:40.081996pt;}
.ha{height:40.640625pt;}
.h3{height:45.799071pt;}
.hf{height:46.459892pt;}
.h9{height:47.812500pt;}
.hd{height:48.271391pt;}
.h2{height:54.359375pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:68.031467pt;}
.x38{left:69.921200pt;}
.x7{left:85.417333pt;}
.x1{left:86.929200pt;}
.x3c{left:88.818800pt;}
.x45{left:94.488133pt;}
.xa{left:98.271467pt;}
.x10{left:109.571467pt;}
.x2{left:111.491200pt;}
.x47{left:113.385867pt;}
.x5{left:117.170133pt;}
.x3{left:143.619200pt;}
.x3f{left:176.818133pt;}
.x3e{left:179.521200pt;}
.x4{left:189.223467pt;}
.x3d{left:198.429467pt;}
.x2a{left:207.410400pt;}
.x37{left:220.629867pt;}
.x25{left:226.034343pt;}
.x1e{left:230.499200pt;}
.x3a{left:232.182533pt;}
.x39{left:235.147867pt;}
.x24{left:244.085672pt;}
.x26{left:252.199015pt;}
.x23{left:259.233640pt;}
.x27{left:276.833200pt;}
.x1f{left:332.312933pt;}
.x14{left:342.421467pt;}
.x32{left:350.715801pt;}
.x15{left:355.297239pt;}
.x22{left:366.956349pt;}
.x8{left:404.481333pt;}
.xb{left:406.298133pt;}
.x33{left:411.360800pt;}
.x30{left:418.632152pt;}
.x35{left:422.482800pt;}
.x28{left:425.195867pt;}
.x6{left:427.090133pt;}
.x2e{left:428.556379pt;}
.x46{left:432.728133pt;}
.x31{left:433.779656pt;}
.xc{left:436.538133pt;}
.x2d{left:442.659227pt;}
.x36{left:448.805369pt;}
.x43{left:451.650133pt;}
.x2c{left:452.748400pt;}
.x20{left:454.187067pt;}
.x29{left:455.435867pt;}
.x2f{left:472.431908pt;}
.x18{left:483.960933pt;}
.x21{left:486.166267pt;}
.x19{left:491.137200pt;}
.x16{left:496.590400pt;}
.x1b{left:500.996667pt;}
.x17{left:515.553067pt;}
.x1c{left:524.735200pt;}
.x41{left:526.169200pt;}
.x42{left:529.835867pt;}
.x1a{left:536.008000pt;}
.x3b{left:544.809200pt;}
.x1d{left:556.695117pt;}
.x12{left:563.739200pt;}
.x13{left:567.572095pt;}
.x34{left:619.466998pt;}
.xe{left:626.354133pt;}
.x11{left:628.571067pt;}
.x40{left:637.449067pt;}
.xd{left:643.752133pt;}
.x44{left:657.187867pt;}
.x2b{left:662.649733pt;}
.xf{left:702.717867pt;}
}




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